123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147 |
- (kicad_sch (version 20211123) (generator eeschema)
- (uuid e08210f2-528b-449a-b2fd-64b09de19386)
- (paper "A4")
- (title_block
- (title "EPROM Replacer")
- (date "2022-09-24")
- (rev "1.01")
- )
- (lib_symbols
- (symbol "74xx:74LS138" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at -7.62 11.43 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "74LS138" (id 1) (at -7.62 -13.97 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS138" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_locked" "" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "ki_keywords" "TTL DECOD DECOD8" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Decoder 3 to 8 active low outputs" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "DIP?16*" (id 7) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "74LS138_1_0"
- (pin input line (at -12.7 7.62 0) (length 5.08)
- (name "A0" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin output output_low (at 12.7 -5.08 180) (length 5.08)
- (name "O5" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin output output_low (at 12.7 -2.54 180) (length 5.08)
- (name "O4" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin output output_low (at 12.7 0 180) (length 5.08)
- (name "O3" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin output output_low (at 12.7 2.54 180) (length 5.08)
- (name "O2" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin output output_low (at 12.7 5.08 180) (length 5.08)
- (name "O1" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin output output_low (at 12.7 7.62 180) (length 5.08)
- (name "O0" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 15.24 270) (length 5.08)
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 5.08 0) (length 5.08)
- (name "A1" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 2.54 0) (length 5.08)
- (name "A2" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input input_low (at -12.7 -10.16 0) (length 5.08)
- (name "E1" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input input_low (at -12.7 -7.62 0) (length 5.08)
- (name "E2" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -12.7 -5.08 0) (length 5.08)
- (name "E3" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin output output_low (at 12.7 -10.16 180) (length 5.08)
- (name "O7" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 -17.78 90) (length 5.08)
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin output output_low (at 12.7 -7.62 180) (length 5.08)
- (name "O6" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "74LS138_1_1"
- (rectangle (start -7.62 10.16) (end 7.62 -12.7)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- )
- (symbol "Connector:Conn_01x05_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "J" (id 0) (at 0 7.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Conn_01x05_Male" (id 1) (at 0 -7.62 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "connector" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Conn_01x05_Male_1_1"
- (polyline
- (pts
- (xy 1.27 -5.08)
- (xy 0.8636 -5.08)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 -2.54)
- (xy 0.8636 -2.54)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 0)
- (xy 0.8636 0)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 2.54)
- (xy 0.8636 2.54)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 5.08)
- (xy 0.8636 5.08)
- )
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 0.8636 -4.953) (end 0 -5.207)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start 0.8636 -2.413) (end 0 -2.667)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start 0.8636 0.127) (end 0 -0.127)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start 0.8636 2.667) (end 0 2.413)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (rectangle (start 0.8636 5.207) (end 0 4.953)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type outline))
- )
- (pin passive line (at 5.08 5.08 180) (length 3.81)
- (name "Pin_1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 2.54 180) (length 3.81)
- (name "Pin_2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 0 180) (length 3.81)
- (name "Pin_3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 -2.54 180) (length 3.81)
- (name "Pin_4" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 5.08 -5.08 180) (length 3.81)
- (name "Pin_5" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Connector_Generic:Conn_02x12_Counter_Clockwise" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "J" (id 0) (at 1.27 15.24 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "Conn_02x12_Counter_Clockwise" (id 1) (at 1.27 -17.78 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "connector" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Generic connector, double row, 02x12, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "Conn_02x12_Counter_Clockwise_1_1"
- (rectangle (start -1.27 -15.113) (end 0 -15.367)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 -12.573) (end 0 -12.827)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 -10.033) (end 0 -10.287)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 -7.493) (end 0 -7.747)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 -4.953) (end 0 -5.207)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 -2.413) (end 0 -2.667)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 0.127) (end 0 -0.127)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 2.667) (end 0 2.413)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 5.207) (end 0 4.953)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 7.747) (end 0 7.493)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 10.287) (end 0 10.033)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 12.827) (end 0 12.573)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start -1.27 13.97) (end 3.81 -16.51)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 0.127) (end 2.54 -0.127)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 2.667) (end 2.54 2.413)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 5.207) (end 2.54 4.953)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 7.747) (end 2.54 7.493)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 10.287) (end 2.54 10.033)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (rectangle (start 3.81 12.827) (end 2.54 12.573)
- (stroke (width 0.1524) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (pin passive line (at -5.08 12.7 0) (length 3.81)
- (name "Pin_1" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -10.16 0) (length 3.81)
- (name "Pin_10" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -12.7 0) (length 3.81)
- (name "Pin_11" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -15.24 0) (length 3.81)
- (name "Pin_12" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -15.24 180) (length 3.81)
- (name "Pin_13" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -12.7 180) (length 3.81)
- (name "Pin_14" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -10.16 180) (length 3.81)
- (name "Pin_15" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -7.62 180) (length 3.81)
- (name "Pin_16" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -5.08 180) (length 3.81)
- (name "Pin_17" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -2.54 180) (length 3.81)
- (name "Pin_18" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 0 180) (length 3.81)
- (name "Pin_19" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 10.16 0) (length 3.81)
- (name "Pin_2" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 2.54 180) (length 3.81)
- (name "Pin_20" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 5.08 180) (length 3.81)
- (name "Pin_21" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 7.62 180) (length 3.81)
- (name "Pin_22" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 10.16 180) (length 3.81)
- (name "Pin_23" (effects (font (size 1.27 1.27))))
- (number "23" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 12.7 180) (length 3.81)
- (name "Pin_24" (effects (font (size 1.27 1.27))))
- (number "24" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 7.62 0) (length 3.81)
- (name "Pin_3" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 5.08 0) (length 3.81)
- (name "Pin_4" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 2.54 0) (length 3.81)
- (name "Pin_5" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 0 0) (length 3.81)
- (name "Pin_6" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -2.54 0) (length 3.81)
- (name "Pin_7" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -5.08 0) (length 3.81)
- (name "Pin_8" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -5.08 -7.62 0) (length 3.81)
- (name "Pin_9" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
- (property "Reference" "C" (id 0) (at 0.254 1.778 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "C_Small_0_1"
- (polyline
- (pts
- (xy -1.524 -0.508)
- (xy 1.524 -0.508)
- )
- (stroke (width 0.3302) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 0.508)
- (xy 1.524 0.508)
- )
- (stroke (width 0.3048) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "C_Small_1_1"
- (pin passive line (at 0 2.54 270) (length 2.032)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -2.54 90) (length 2.032)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
- (property "Reference" "D" (id 0) (at 0 2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "D" (id 1) (at 0 -2.54 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "diode" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Diode" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "D_0_1"
- (polyline
- (pts
- (xy -1.27 1.27)
- (xy -1.27 -1.27)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 0)
- (xy -1.27 0)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 1.27 1.27)
- (xy 1.27 -1.27)
- (xy -1.27 0)
- (xy 1.27 1.27)
- )
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "D_1_1"
- (pin passive line (at -3.81 0 0) (length 2.54)
- (name "K" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 3.81 0 180) (length 2.54)
- (name "A" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
- (property "Reference" "R" (id 0) (at 0.762 0.508 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "R_Small_0_1"
- (rectangle (start -0.762 1.778) (end 0.762 -1.778)
- (stroke (width 0.2032) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "R_Small_1_1"
- (pin passive line (at 0 2.54 270) (length 0.762)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 0 -2.54 90) (length 0.762)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "Switch:SW_DIP_x12" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "SW" (id 0) (at 0 19.05 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "SW_DIP_x12" (id 1) (at 0 -16.51 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "12x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_fp_filters" "SW?DIP?x12*" (id 6) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "SW_DIP_x12_0_0"
- (circle (center -2.032 -12.7) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 -10.16) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 -7.62) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 -5.08) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 -2.54) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 0) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 2.54) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 5.08) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 7.62) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 10.16) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 12.7) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center -2.032 15.24) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 -12.5476)
- (xy 2.3622 -11.5062)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 -10.0076)
- (xy 2.3622 -8.9662)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 -7.4676)
- (xy 2.3622 -6.4262)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 -4.9276)
- (xy 2.3622 -3.8862)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 -2.3876)
- (xy 2.3622 -1.3462)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 0.127)
- (xy 2.3622 1.1684)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 2.667)
- (xy 2.3622 3.7084)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 5.207)
- (xy 2.3622 6.2484)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 7.747)
- (xy 2.3622 8.7884)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 10.287)
- (xy 2.3622 11.3284)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 12.827)
- (xy 2.3622 13.8684)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy -1.524 15.367)
- (xy 2.3622 16.4084)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 -12.7) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 -10.16) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 -7.62) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 -5.08) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 -2.54) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 0) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 2.54) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 5.08) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 7.62) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 10.16) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 12.7) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (circle (center 2.032 15.24) (radius 0.508)
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "SW_DIP_x12_0_1"
- (rectangle (start -3.81 17.78) (end 3.81 -15.24)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- (symbol "SW_DIP_x12_1_1"
- (pin passive line (at -7.62 15.24 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 -7.62 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 -10.16 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 -12.7 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -12.7 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -10.16 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -7.62 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -5.08 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 -2.54 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 0 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 2.54 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 12.7 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 5.08 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 7.62 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 10.16 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 12.7 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "23" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at 7.62 15.24 180) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "24" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 10.16 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 7.62 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 5.08 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 2.54 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 0 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 -2.54 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- (pin passive line (at -7.62 -5.08 0) (length 5.08)
- (name "~" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "eprom_replacer:SST39SF020_tsop" (in_bom yes) (on_board yes)
- (property "Reference" "U" (id 0) (at 2.54 33.02 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Value" "SST39SF020_tsop" (id 1) (at 0 -30.48 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 7.62 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/25022B.pdf" (id 3) (at 0 7.62 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "256k flash rom" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Silicon Storage Technology (SSF) 256k x 8 Flash ROM" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "SST39SF020_tsop_0_0"
- (pin power_in line (at 0 -30.48 90) (length 1.27) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "24" (effects (font (size 1.27 1.27))))
- )
- (pin power_in line (at 0 33.02 270) (length 1.27) hide
- (name "VCC" (effects (font (size 1.27 1.27))))
- (number "8" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "SST39SF020_tsop_0_1"
- (rectangle (start -10.16 31.75) (end 10.16 -29.21)
- (stroke (width 0.254) (type default) (color 0 0 0 0))
- (fill (type background))
- )
- )
- (symbol "SST39SF020_tsop_1_1"
- (pin input line (at -15.24 2.54 0) (length 5.08)
- (name "A11" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 -10.16 0) (length 5.08)
- (name "A16" (effects (font (size 1.27 1.27))))
- (number "10" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 -7.62 0) (length 5.08)
- (name "A15" (effects (font (size 1.27 1.27))))
- (number "11" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 0 0) (length 5.08)
- (name "A12" (effects (font (size 1.27 1.27))))
- (number "12" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 12.7 0) (length 5.08)
- (name "A7" (effects (font (size 1.27 1.27))))
- (number "13" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 15.24 0) (length 5.08)
- (name "A6" (effects (font (size 1.27 1.27))))
- (number "14" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 17.78 0) (length 5.08)
- (name "A5" (effects (font (size 1.27 1.27))))
- (number "15" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 20.32 0) (length 5.08)
- (name "A4" (effects (font (size 1.27 1.27))))
- (number "16" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 22.86 0) (length 5.08)
- (name "A3" (effects (font (size 1.27 1.27))))
- (number "17" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 25.4 0) (length 5.08)
- (name "A2" (effects (font (size 1.27 1.27))))
- (number "18" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 27.94 0) (length 5.08)
- (name "A1" (effects (font (size 1.27 1.27))))
- (number "19" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 7.62 0) (length 5.08)
- (name "A9" (effects (font (size 1.27 1.27))))
- (number "2" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 30.48 0) (length 5.08)
- (name "A0" (effects (font (size 1.27 1.27))))
- (number "20" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 15.24 30.48 180) (length 5.08)
- (name "D0" (effects (font (size 1.27 1.27))))
- (number "21" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 15.24 27.94 180) (length 5.08)
- (name "D1" (effects (font (size 1.27 1.27))))
- (number "22" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 15.24 25.4 180) (length 5.08)
- (name "D2" (effects (font (size 1.27 1.27))))
- (number "23" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 15.24 22.86 180) (length 5.08)
- (name "D3" (effects (font (size 1.27 1.27))))
- (number "25" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 15.24 20.32 180) (length 5.08)
- (name "D4" (effects (font (size 1.27 1.27))))
- (number "26" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 15.24 17.78 180) (length 5.08)
- (name "D5" (effects (font (size 1.27 1.27))))
- (number "27" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 15.24 15.24 180) (length 5.08)
- (name "D6" (effects (font (size 1.27 1.27))))
- (number "28" (effects (font (size 1.27 1.27))))
- )
- (pin tri_state line (at 15.24 12.7 180) (length 5.08)
- (name "D7" (effects (font (size 1.27 1.27))))
- (number "29" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 10.16 0) (length 5.08)
- (name "A8" (effects (font (size 1.27 1.27))))
- (number "3" (effects (font (size 1.27 1.27))))
- )
- (pin input input_low (at -15.24 -25.4 0) (length 5.08)
- (name "CE" (effects (font (size 1.27 1.27))))
- (number "30" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 5.08 0) (length 5.08)
- (name "A10" (effects (font (size 1.27 1.27))))
- (number "31" (effects (font (size 1.27 1.27))))
- )
- (pin input input_low (at -15.24 -27.94 0) (length 5.08)
- (name "~{OE}" (effects (font (size 1.27 1.27))))
- (number "32" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 -2.54 0) (length 5.08)
- (name "A13" (effects (font (size 1.27 1.27))))
- (number "4" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 -5.08 0) (length 5.08)
- (name "A14" (effects (font (size 1.27 1.27))))
- (number "5" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 -12.7 0) (length 5.08)
- (name "A17" (effects (font (size 1.27 1.27))))
- (number "6" (effects (font (size 1.27 1.27))))
- )
- (pin input input_low (at -15.24 -20.32 0) (length 5.08)
- (name "PGM" (effects (font (size 1.27 1.27))))
- (number "7" (effects (font (size 1.27 1.27))))
- )
- (pin input line (at -15.24 -15.24 0) (length 5.08)
- (name "NC" (effects (font (size 1.27 1.27))))
- (number "9" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 0 3.556 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "+5V_0_1"
- (polyline
- (pts
- (xy -0.762 1.27)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 0)
- (xy 0 2.54)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- (polyline
- (pts
- (xy 0 2.54)
- (xy 0.762 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "+5V_1_1"
- (pin power_in line (at 0 0 90) (length 0) hide
- (name "+5V" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
- (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 0 -3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "GND_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 -1.27)
- (xy 1.27 -1.27)
- (xy 0 -2.54)
- (xy -1.27 -1.27)
- (xy 0 -1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- (symbol "GND_1_1"
- (pin power_in line (at 0 0 270) (length 0) hide
- (name "GND" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- )
- (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
- (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
- (effects (font (size 1.27 1.27)))
- )
- (property "Footprint" "" (id 2) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (symbol "PWR_FLAG_0_0"
- (pin power_out line (at 0 0 90) (length 0)
- (name "pwr" (effects (font (size 1.27 1.27))))
- (number "1" (effects (font (size 1.27 1.27))))
- )
- )
- (symbol "PWR_FLAG_0_1"
- (polyline
- (pts
- (xy 0 0)
- (xy 0 1.27)
- (xy -1.016 1.905)
- (xy 0 2.54)
- (xy 1.016 1.905)
- (xy 0 1.27)
- )
- (stroke (width 0) (type default) (color 0 0 0 0))
- (fill (type none))
- )
- )
- )
- )
- (junction (at 185.42 55.245) (diameter 0) (color 0 0 0 0)
- (uuid 000030ab-6e94-41ed-a08d-9318ac01ffff)
- )
- (junction (at 222.885 60.325) (diameter 0) (color 0 0 0 0)
- (uuid 034adcce-ce4d-414e-b050-82ca1780079f)
- )
- (junction (at 58.42 56.515) (diameter 0) (color 0 0 0 0)
- (uuid 15988760-d84e-4387-912a-cfc6ca731796)
- )
- (junction (at 213.36 57.785) (diameter 0) (color 0 0 0 0)
- (uuid 168a1b3e-c956-4d83-a8fb-c5894e9dc679)
- )
- (junction (at 31.75 102.235) (diameter 0) (color 0 0 0 0)
- (uuid 16be1e61-c461-41cf-a74a-77bf0aac3b8b)
- )
- (junction (at 209.55 50.165) (diameter 0) (color 0 0 0 0)
- (uuid 32012870-c443-4d55-bb51-be167be1190f)
- )
- (junction (at 185.42 62.865) (diameter 0) (color 0 0 0 0)
- (uuid 394259f0-b0a1-4d23-895c-0c6f65361c71)
- )
- (junction (at 187.325 60.325) (diameter 0) (color 0 0 0 0)
- (uuid 3f6b1a27-2cbc-4c02-8d07-e9c9c66b9e99)
- )
- (junction (at 185.42 52.705) (diameter 0) (color 0 0 0 0)
- (uuid 42b5c83a-429b-4e63-9b34-2a17ab6e067c)
- )
- (junction (at 215.265 33.02) (diameter 0) (color 0 0 0 0)
- (uuid 45730172-99a7-4119-b94f-27b59373f39a)
- )
- (junction (at 211.455 55.245) (diameter 0) (color 0 0 0 0)
- (uuid 49bc47de-7827-466e-88df-beb3b4aaa048)
- )
- (junction (at 224.79 62.865) (diameter 0) (color 0 0 0 0)
- (uuid 4e96b8ac-cab6-4449-9594-90eda4d8c082)
- )
- (junction (at 185.42 47.625) (diameter 0) (color 0 0 0 0)
- (uuid 53e722c7-864a-46b8-b921-1ba9f3b73040)
- )
- (junction (at 220.98 33.02) (diameter 0) (color 0 0 0 0)
- (uuid 5dc2e6fc-34cc-4237-804f-d3e7fb3b6ad7)
- )
- (junction (at 107.315 20.32) (diameter 0) (color 0 0 0 0)
- (uuid 6248f903-2911-4678-b7ab-421d846acd60)
- )
- (junction (at 213.36 34.29) (diameter 0) (color 0 0 0 0)
- (uuid 62e720e3-c591-470a-8eda-29822d69350b)
- )
- (junction (at 211.455 34.29) (diameter 0) (color 0 0 0 0)
- (uuid 6829b48c-cf6f-4c06-82a2-08da3b0e720f)
- )
- (junction (at 124.46 72.39) (diameter 0) (color 0 0 0 0)
- (uuid 71101670-2afd-4fcf-813c-ee2491fea0b1)
- )
- (junction (at 31.75 112.395) (diameter 0) (color 0 0 0 0)
- (uuid 82bc323a-8ed6-4141-bce4-0d90da26a01a)
- )
- (junction (at 220.98 52.705) (diameter 0) (color 0 0 0 0)
- (uuid 898a04ab-7c00-4ba7-8e44-c5437579e5c0)
- )
- (junction (at 208.915 67.945) (diameter 0) (color 0 0 0 0)
- (uuid 8db12c03-57f2-44e7-8c56-ef28037e4746)
- )
- (junction (at 215.265 67.945) (diameter 0) (color 0 0 0 0)
- (uuid 9152d04e-6358-4426-a3d7-fd6d0635e0b1)
- )
- (junction (at 228.6 35.56) (diameter 0) (color 0 0 0 0)
- (uuid af409484-48a0-40af-8946-0d32daea030d)
- )
- (junction (at 219.075 33.02) (diameter 0) (color 0 0 0 0)
- (uuid c300303b-814c-4767-91f9-56592c2aae83)
- )
- (junction (at 187.325 70.485) (diameter 0) (color 0 0 0 0)
- (uuid df9b8310-9868-4045-a9c2-87065d1cdb9b)
- )
- (junction (at 219.075 47.625) (diameter 0) (color 0 0 0 0)
- (uuid f3b584a4-b8cb-4383-86ef-597cde458930)
- )
- (junction (at 109.22 20.32) (diameter 0) (color 0 0 0 0)
- (uuid f4b7b6d6-6fcf-4cb8-8ca7-edc0f4600f5a)
- )
- (no_connect (at 267.335 55.372) (uuid 2759da36-997f-45cd-833c-0ce0b5e3225c))
- (no_connect (at 267.335 62.992) (uuid 5ec1b9c3-6f41-4c59-ae2d-e924efa39e1d))
- (no_connect (at 267.335 47.752) (uuid 8a1f2e83-28b5-4964-9181-5c890de08104))
- (no_connect (at 267.335 57.912) (uuid 9210fb33-ba02-4c33-a444-0f7fea027d94))
- (no_connect (at 128.905 77.47) (uuid 955b99fe-0abd-4ca5-a9f7-e5b3f4745d21))
- (no_connect (at 267.335 50.292) (uuid 98ecaa8a-7b42-413c-a8af-c60432444289))
- (no_connect (at 267.335 65.532) (uuid b2cce2be-7890-4bb7-b000-5c31267d44b8))
- (no_connect (at 267.335 52.832) (uuid e50ff1c5-8888-4632-8ed1-650d31f91e10))
- (wire (pts (xy 124.46 57.15) (xy 128.905 57.15))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 002038f3-523e-4cd6-a9ad-736909e7843d)
- )
- (wire (pts (xy 58.42 56.515) (xy 58.42 51.435))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 011c691b-7b44-447a-b1d9-c4baf7011ec7)
- )
- (wire (pts (xy 107.315 20.32) (xy 107.315 22.225))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 02acb963-1429-4718-a61a-2c04741d8e81)
- )
- (wire (pts (xy 213.36 34.29) (xy 228.6 34.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 043ed483-f567-4d97-98c7-fb159b954a8b)
- )
- (wire (pts (xy 187.325 70.485) (xy 191.135 70.485))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 05981ec7-73ae-43af-86e6-df87cf3a90e9)
- )
- (wire (pts (xy 159.385 39.37) (xy 163.83 39.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 06d07379-de23-48e2-8263-5f48d5216817)
- )
- (wire (pts (xy 180.34 45.085) (xy 191.135 45.085))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0715b0ec-3df0-4d24-9b1f-7682cd753f4e)
- )
- (wire (pts (xy 60.325 56.515) (xy 58.42 56.515))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 08951030-c51d-43d3-b08e-c66fcaefc1fc)
- )
- (wire (pts (xy 40.005 84.455) (xy 43.815 84.455))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 09450029-e219-48fa-8137-720a1fe47b80)
- )
- (wire (pts (xy 159.385 44.45) (xy 163.83 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0a376e24-1aed-4eb2-8631-cbb7503378de)
- )
- (wire (pts (xy 40.005 71.755) (xy 43.815 71.755))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0ce4ca72-f5a3-47f2-88b3-bd1db8dee2fe)
- )
- (wire (pts (xy 241.935 62.865) (xy 239.395 62.865))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0dd16300-b0e0-408a-a9e7-a215d2a4caa7)
- )
- (wire (pts (xy 124.46 64.77) (xy 128.905 64.77))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0e551ab3-f68e-48fb-bb91-5040d76daf97)
- )
- (wire (pts (xy 40.64 31.75) (xy 43.815 31.75))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 0ecbdf6e-1869-4d5d-9d1c-1c72df9eac8a)
- )
- (wire (pts (xy 180.34 67.945) (xy 191.135 67.945))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 12bbba12-82a1-4f43-92a2-f86cc2bc3677)
- )
- (wire (pts (xy 124.46 69.85) (xy 124.46 72.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 12bc44d1-6b93-4d8e-a56e-8932ad2eb90a)
- )
- (wire (pts (xy 220.98 33.02) (xy 220.98 37.465))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 147398d2-8ae9-40ec-927b-65d1fa72ec5f)
- )
- (wire (pts (xy 180.34 70.485) (xy 187.325 70.485))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 16e4455d-299c-488d-8274-a2e5953d3780)
- )
- (wire (pts (xy 185.42 62.865) (xy 185.42 65.405))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 18f61ac2-5fbe-481e-b16c-a8782d83a980)
- )
- (wire (pts (xy 26.67 109.855) (xy 26.67 112.395))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1983823d-efc6-437f-ab1f-684227b26555)
- )
- (wire (pts (xy 269.875 84.582) (xy 269.875 86.487))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 198b62d8-7184-46db-8fd5-b7a84a66d22e)
- )
- (wire (pts (xy 206.375 65.405) (xy 208.915 65.405))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1ae29fda-c8ae-488c-bb89-fa647764e337)
- )
- (wire (pts (xy 124.46 46.99) (xy 128.905 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1b0c27cb-e660-469d-89fd-96df9b115224)
- )
- (wire (pts (xy 40.005 79.375) (xy 43.815 79.375))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1c660590-e6b1-4a6a-84c9-4385871a9e36)
- )
- (wire (pts (xy 40.005 59.055) (xy 43.815 59.055))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 1cde37dc-ff1d-4c59-aad6-5a66be950f58)
- )
- (wire (pts (xy 215.265 33.02) (xy 213.36 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2050e49c-5995-46bb-b291-4abaa8123a20)
- )
- (wire (pts (xy 40.005 81.915) (xy 43.815 81.915))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 232f9422-d201-46f5-8791-878d3fbdadef)
- )
- (wire (pts (xy 40.64 29.21) (xy 59.69 29.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 23d13881-b8da-4367-99a4-2fe46428baf6)
- )
- (wire (pts (xy 217.17 67.945) (xy 215.265 67.945))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 25f9dfea-cab1-47af-93c1-aa981c4ef2d5)
- )
- (wire (pts (xy 219.075 33.02) (xy 219.075 37.465))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2809fda6-0611-4d96-8bbd-5ad73e2e9e8f)
- )
- (wire (pts (xy 185.42 47.625) (xy 185.42 50.165))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 2dca9c9a-1dd1-4f5b-b323-2c496180cf5e)
- )
- (wire (pts (xy 40.64 34.29) (xy 43.815 34.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 32437e73-3fed-4690-a739-e2e19b767bb2)
- )
- (wire (pts (xy 215.265 42.545) (xy 215.265 67.945))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 32ad1869-a41b-4be9-af29-6fa6d56f8a51)
- )
- (wire (pts (xy 185.42 52.705) (xy 191.135 52.705))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 33177005-ca8d-4c37-9f40-7f61cbd5d3ea)
- )
- (wire (pts (xy 159.385 34.29) (xy 163.83 34.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 33de0edf-562e-4bd6-9136-81521b91204f)
- )
- (wire (pts (xy 124.46 39.37) (xy 128.905 39.37))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3475178f-442a-498b-b65a-f68ec8ee107f)
- )
- (wire (pts (xy 38.1 112.395) (xy 38.1 109.855))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 369a2b3e-352a-449b-8d4c-864e040a3301)
- )
- (wire (pts (xy 31.75 100.965) (xy 31.75 102.235))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 399d84dd-a00e-47e3-9077-7a685250cc28)
- )
- (wire (pts (xy 254.635 39.37) (xy 254.635 40.005))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3ca0e966-b7d2-4e28-a31d-55fe63b735d5)
- )
- (wire (pts (xy 111.125 27.305) (xy 111.125 59.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3d5b14e9-d10a-4fdd-8ad6-1a7cbe0f8a47)
- )
- (wire (pts (xy 159.385 36.83) (xy 163.83 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3d6a5139-620f-4975-8fd7-60753cf4c8b1)
- )
- (wire (pts (xy 191.135 57.785) (xy 187.325 57.785))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 3d99a084-ecbb-4c0a-bf69-ca3ddd9eaf2c)
- )
- (wire (pts (xy 206.375 50.165) (xy 209.55 50.165))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 42a93172-11ad-4a80-aacf-603da31d7ed8)
- )
- (wire (pts (xy 31.75 102.235) (xy 38.1 102.235))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 438c380b-7517-4ca3-96a5-401c571411de)
- )
- (wire (pts (xy 40.005 56.515) (xy 43.815 56.515))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 43f47e96-023c-445b-b40c-dd03983e9a59)
- )
- (wire (pts (xy 180.34 52.705) (xy 185.42 52.705))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 46d67435-a172-44ca-bceb-c727ef0ce7a9)
- )
- (wire (pts (xy 243.84 26.797) (xy 252.095 26.797))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 48303b92-6691-4e7d-9ff3-08438d2dfb6f)
- )
- (wire (pts (xy 31.75 112.395) (xy 38.1 112.395))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4d6a6f43-a90d-417f-af88-fa9ad5d6e7f2)
- )
- (wire (pts (xy 185.42 47.625) (xy 191.135 47.625))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 4fc7d690-44ad-41e2-9bae-7c05d9a45f7f)
- )
- (wire (pts (xy 107.315 27.305) (xy 107.315 67.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 52711ec9-6a5f-4dcd-8670-3f80891e60b8)
- )
- (wire (pts (xy 124.46 87.63) (xy 128.905 87.63))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 52e02c70-440c-4fb1-ae47-5b0f7a605a55)
- )
- (wire (pts (xy 185.42 55.245) (xy 191.135 55.245))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 54466732-6379-41cb-b5e5-b995eaf53391)
- )
- (wire (pts (xy 109.22 19.05) (xy 109.22 20.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 565887cf-e4dd-4017-a8f3-35ca6e3e9c76)
- )
- (wire (pts (xy 109.22 62.23) (xy 128.905 62.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 571dda8a-07dd-4c54-9f9d-a3799b16a243)
- )
- (wire (pts (xy 107.315 67.31) (xy 128.905 67.31))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5742440c-6320-442c-854e-53a69c481765)
- )
- (wire (pts (xy 206.375 52.705) (xy 220.98 52.705))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 57d87db8-f057-493e-b00c-f6e2f1ceb2f8)
- )
- (wire (pts (xy 187.325 60.325) (xy 187.325 70.485))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5990fbf5-d375-4c9b-bcec-23910b3a802c)
- )
- (wire (pts (xy 206.375 40.005) (xy 206.375 42.545))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5a250f76-fedb-4281-9179-5c5e5ea6e11f)
- )
- (wire (pts (xy 58.42 56.515) (xy 56.515 56.515))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 5f9c1b01-29d0-4776-a3d6-06048d4c4026)
- )
- (wire (pts (xy 109.22 27.305) (xy 109.22 62.23))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 62c494c0-2d0b-4c85-835c-302aaf9b8492)
- )
- (wire (pts (xy 220.98 52.705) (xy 241.935 52.705))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 63514943-73ed-4392-a132-23e1a3f61761)
- )
- (wire (pts (xy 60.325 79.375) (xy 56.515 79.375))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 647ced18-e9cd-4399-ac0d-d4f0f11fd91a)
- )
- (wire (pts (xy 213.36 31.75) (xy 213.36 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6b44930b-84cd-49f0-afd3-1a4113e3e8da)
- )
- (wire (pts (xy 211.455 55.245) (xy 236.855 55.245))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6d552a3d-1e5e-467a-8e22-5c47aac3fdd2)
- )
- (wire (pts (xy 206.375 47.625) (xy 219.075 47.625))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6d66c9bf-ffd0-4be0-8e4b-2c5e9d21036a)
- )
- (wire (pts (xy 60.325 71.755) (xy 56.515 71.755))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6dd26675-87dd-40d5-ac5e-71816ebd40ef)
- )
- (wire (pts (xy 38.1 102.235) (xy 38.1 104.775))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 6f39dcf7-925f-4e8c-88f5-c8f366e1bbc0)
- )
- (wire (pts (xy 124.46 54.61) (xy 128.905 54.61))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 707b1841-f032-4142-bd76-9885c75b7359)
- )
- (wire (pts (xy 124.46 36.83) (xy 128.905 36.83))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 71ce2a26-035f-4f71-bf12-4ac89e115ecf)
- )
- (wire (pts (xy 124.46 41.91) (xy 128.905 41.91))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7242c6e6-b038-4cd4-977d-c2cb7e4f5fb2)
- )
- (wire (pts (xy 222.885 33.02) (xy 220.98 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 72fb5abd-5cee-4b6f-9422-e720e9847b8a)
- )
- (wire (pts (xy 254.635 73.025) (xy 254.635 74.295))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 730c4e33-0ba8-4efc-a018-a63d5cda0fda)
- )
- (wire (pts (xy 60.325 66.675) (xy 56.515 66.675))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7356e9a4-1fcf-4414-b3ba-3bb61bcdade4)
- )
- (wire (pts (xy 185.42 65.405) (xy 191.135 65.405))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 73de8086-2f4b-409c-a6a3-1f64bf3f5604)
- )
- (wire (pts (xy 40.005 69.215) (xy 43.815 69.215))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7408901a-527b-4deb-a0e2-3eb2da0c2d36)
- )
- (wire (pts (xy 60.325 59.055) (xy 56.515 59.055))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 772c7bbd-31fc-4af8-9b00-bca4dae1f687)
- )
- (wire (pts (xy 208.915 67.945) (xy 206.375 67.945))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 77e66bc5-705e-47eb-a6ae-95ee7af78db8)
- )
- (wire (pts (xy 60.325 81.915) (xy 56.515 81.915))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 783ff3e4-21ad-4c1c-8f6a-e8c93224271a)
- )
- (wire (pts (xy 206.375 45.085) (xy 207.01 45.085))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 78e32388-2940-4971-b1b2-1d4b3e1293fd)
- )
- (wire (pts (xy 31.75 112.395) (xy 31.75 113.665))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 79e07d1c-5e11-43c6-aafb-5e12d9954bde)
- )
- (wire (pts (xy 209.55 50.165) (xy 241.935 50.165))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7c389220-b729-49ab-b639-f98c01407f66)
- )
- (wire (pts (xy 236.855 65.405) (xy 236.855 55.245))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7d938f42-c0bd-4636-8c86-fc67e81b6f33)
- )
- (wire (pts (xy 144.145 92.71) (xy 144.145 93.345))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 7e2c6d68-e06b-491e-bdf1-1e0e888cd8b5)
- )
- (wire (pts (xy 60.325 76.835) (xy 56.515 76.835))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8064dec6-aca7-4629-bdcc-50ccee03b7d2)
- )
- (wire (pts (xy 224.79 35.56) (xy 224.79 37.465))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8066be8a-836d-4a63-ba96-b950ef463e78)
- )
- (wire (pts (xy 159.385 49.53) (xy 163.83 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8075c756-1a79-4e07-8290-44ca111d0b79)
- )
- (wire (pts (xy 185.42 50.165) (xy 191.135 50.165))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 819d88d8-d708-4a8e-8ac2-699c88b6b71d)
- )
- (wire (pts (xy 215.265 67.945) (xy 208.915 67.945))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 83794537-7d64-4b0e-8fda-a2f5ac8f78d4)
- )
- (wire (pts (xy 209.55 42.545) (xy 209.55 50.165))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8418ad48-7e05-459d-a297-4791b14ff86f)
- )
- (wire (pts (xy 26.67 112.395) (xy 31.75 112.395))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 84caa1ca-d7be-4167-b5a3-f9ebc55538be)
- )
- (wire (pts (xy 59.69 22.86) (xy 59.69 29.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 84dad50d-0878-4202-921c-323760882a44)
- )
- (wire (pts (xy 211.455 34.29) (xy 211.455 37.465))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8507b45f-0891-4054-b6ab-b5c250daa813)
- )
- (wire (pts (xy 206.375 62.865) (xy 224.79 62.865))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 85b62a0c-2424-4a38-92cc-99a147179693)
- )
- (wire (pts (xy 124.46 90.17) (xy 128.905 90.17))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 86dfffd6-57bb-4498-99b8-332ddccbd748)
- )
- (wire (pts (xy 60.325 61.595) (xy 56.515 61.595))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 89fde6da-af71-4b60-86c7-bad5c9968547)
- )
- (wire (pts (xy 224.79 42.545) (xy 224.79 62.865))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8a53eb7a-3417-4c1e-bb00-6174ea429b92)
- )
- (wire (pts (xy 40.005 66.675) (xy 43.815 66.675))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8aea5a81-493e-46ab-bf11-33a53bf800f8)
- )
- (wire (pts (xy 109.22 20.32) (xy 109.22 22.225))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8cae300d-6e58-45bc-a26e-4d9c8071d53a)
- )
- (wire (pts (xy 206.375 60.325) (xy 222.885 60.325))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8e14504f-9d88-4c47-be7a-9fd394cc61b5)
- )
- (wire (pts (xy 76.2 48.895) (xy 76.2 51.435))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 8ef14b75-0192-4b8a-b9b2-293dddf874de)
- )
- (wire (pts (xy 224.79 62.865) (xy 229.235 62.865))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9011c34b-7ad6-4138-b8c7-b7d11388fb4a)
- )
- (wire (pts (xy 159.385 41.91) (xy 163.83 41.91))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 937a052d-3776-49ef-892e-c635dfaddf16)
- )
- (wire (pts (xy 239.395 62.865) (xy 239.395 57.785))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 93f92b6d-9988-45d1-9ac4-2650282b097a)
- )
- (wire (pts (xy 144.145 27.94) (xy 144.145 29.21))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 949453bc-11e3-40e0-ab9c-35fe56dfda92)
- )
- (wire (pts (xy 209.55 34.29) (xy 209.55 37.465))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9655e275-3fab-4c28-93fa-66801cd81924)
- )
- (wire (pts (xy 124.46 72.39) (xy 124.46 74.93))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 979d0b62-7eeb-457f-ac71-9a84c2a6393e)
- )
- (wire (pts (xy 111.125 59.69) (xy 128.905 59.69))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9905e4ff-9af5-4dd3-b240-522eb845db10)
- )
- (wire (pts (xy 159.385 46.99) (xy 163.83 46.99))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9b29a182-7f54-4362-9532-22f3c7f41f8d)
- )
- (wire (pts (xy 105.41 27.305) (xy 105.41 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9b70c950-d36c-424f-8cd2-f61563ffecc5)
- )
- (wire (pts (xy 213.36 57.785) (xy 206.375 57.785))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9c1ba1d3-5332-4667-8cab-36582f231bc2)
- )
- (wire (pts (xy 217.17 70.485) (xy 206.375 70.485))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9e44b570-ccae-4bbf-a631-2d4d23394729)
- )
- (wire (pts (xy 187.325 60.325) (xy 191.135 60.325))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9eba7ecc-ec15-4585-a76a-db77480a9b54)
- )
- (wire (pts (xy 213.36 42.545) (xy 213.36 57.785))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid 9f5184fa-4a61-4ee8-8b14-453fa4e8c866)
- )
- (wire (pts (xy 222.885 42.545) (xy 222.885 60.325))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a08a7a6a-34d7-42b1-acd9-7e3350be6854)
- )
- (wire (pts (xy 239.395 57.785) (xy 213.36 57.785))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a12f5664-299e-4ddd-8d07-98473fe830c9)
- )
- (wire (pts (xy 40.005 61.595) (xy 43.815 61.595))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a1e05334-7ac5-4fd2-9f46-f00adc1da338)
- )
- (wire (pts (xy 124.46 72.39) (xy 128.905 72.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a36f33ab-05b5-47dc-9a39-e5544a34812f)
- )
- (wire (pts (xy 211.455 34.29) (xy 209.55 34.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a3e5dd09-09cc-4083-81d1-abac957e6303)
- )
- (wire (pts (xy 69.215 51.435) (xy 76.2 51.435))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a4a4d9a1-bb05-4a12-a43b-984e98fcb4c4)
- )
- (wire (pts (xy 124.46 69.85) (xy 128.905 69.85))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a6fcf6c0-3e31-4207-86bb-20280301df93)
- )
- (wire (pts (xy 213.36 34.29) (xy 213.36 37.465))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a76f2b8c-f9db-4bdf-96de-52286b6ed942)
- )
- (wire (pts (xy 180.34 47.625) (xy 185.42 47.625))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a7bf179a-4ed1-4926-bbc6-2ba2174a2022)
- )
- (wire (pts (xy 222.885 33.02) (xy 222.885 37.465))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid a97e60bf-6e1f-4229-8c0a-9c168004ff38)
- )
- (wire (pts (xy 105.41 20.32) (xy 105.41 22.225))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid aa8ff026-b0ac-454c-a279-b05341ce849c)
- )
- (wire (pts (xy 124.46 31.75) (xy 128.905 31.75))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ab35511b-0971-41e1-8019-4ef591cbffd1)
- )
- (wire (pts (xy 107.315 20.32) (xy 105.41 20.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ace7116d-bcc5-450d-8a3e-d337b586ada4)
- )
- (wire (pts (xy 224.79 35.56) (xy 228.6 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ad548761-3826-4a48-a50b-33f3eaa35b23)
- )
- (wire (pts (xy 124.46 52.07) (xy 128.905 52.07))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ae6f5374-3870-46a5-b04e-5d95645006b8)
- )
- (wire (pts (xy 26.67 104.775) (xy 26.67 102.235))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b02757c6-0567-4ff4-80b9-e11c3ca802c7)
- )
- (wire (pts (xy 220.98 33.02) (xy 219.075 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b1c72ba4-37a2-43fd-bbdf-39df068b5a0c)
- )
- (wire (pts (xy 97.536 71.12) (xy 97.536 72.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b351c929-2060-4c9a-ba04-4c7e0f71bebf)
- )
- (wire (pts (xy 222.885 60.325) (xy 241.935 60.325))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b6699487-7bc6-469b-a9f4-41ce3afde709)
- )
- (wire (pts (xy 124.46 49.53) (xy 128.905 49.53))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b6d2c618-8acf-4d14-9043-9219c8252ede)
- )
- (wire (pts (xy 243.84 24.257) (xy 243.84 26.797))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b6ea0539-927a-4be5-9c84-775469d0d3fb)
- )
- (wire (pts (xy 26.67 102.235) (xy 31.75 102.235))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b72694e8-e0b8-454a-8c56-897baa760a38)
- )
- (wire (pts (xy 215.265 33.02) (xy 215.265 37.465))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid b82f87bd-3782-45ab-a376-467e1b263bd8)
- )
- (wire (pts (xy 109.22 20.32) (xy 107.315 20.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bbb546e0-7a1f-40d0-9eb5-dafb43b58aa6)
- )
- (wire (pts (xy 207.01 33.02) (xy 207.01 45.085))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid bef7553f-02cc-4f92-a415-202895cd7010)
- )
- (wire (pts (xy 185.42 55.245) (xy 185.42 62.865))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c0c3fd69-c50a-4156-8931-503e750c1b73)
- )
- (wire (pts (xy 124.46 74.93) (xy 128.905 74.93))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c10b844d-1876-49b2-ad37-4bca7e4eea41)
- )
- (wire (pts (xy 60.325 84.455) (xy 56.515 84.455))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c10cf8ec-53ec-4ef4-aa63-871d34257add)
- )
- (wire (pts (xy 97.536 72.39) (xy 124.46 72.39))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c4313487-f843-4246-b026-72a61a99f903)
- )
- (wire (pts (xy 124.46 44.45) (xy 128.905 44.45))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid c49c4868-6da1-4986-a883-caee796504e8)
- )
- (wire (pts (xy 40.005 74.295) (xy 43.815 74.295))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ceb19917-fd42-4745-a0cf-0aa36b4554cf)
- )
- (wire (pts (xy 60.325 74.295) (xy 56.515 74.295))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d1409ade-522a-4b2c-a35c-881f7bf6b11c)
- )
- (wire (pts (xy 219.075 42.545) (xy 219.075 47.625))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d27292bb-1d9a-42da-aa0c-6f34513d5000)
- )
- (wire (pts (xy 40.005 84.455) (xy 40.005 85.725))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d7564d19-936b-4e34-bb7b-3401219aa6fd)
- )
- (wire (pts (xy 159.385 31.75) (xy 163.83 31.75))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid d7faab99-0521-4319-968a-0b4d79809f1d)
- )
- (wire (pts (xy 60.325 64.135) (xy 56.515 64.135))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid db84a3e9-8366-4438-8898-8d674fd7427b)
- )
- (wire (pts (xy 267.335 60.325) (xy 269.24 60.325))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dc11ccc3-5168-4446-b625-9bc221637e96)
- )
- (wire (pts (xy 111.125 20.32) (xy 111.125 22.225))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dcf69f6f-7972-4238-9e11-bbb1cd6dd748)
- )
- (wire (pts (xy 219.075 33.02) (xy 215.265 33.02))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dd0e7c79-80ef-41ac-ab21-21b80b5625df)
- )
- (wire (pts (xy 211.455 42.545) (xy 211.455 55.245))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dd2152b9-2c05-48b8-930c-8385bfccaf8a)
- )
- (wire (pts (xy 187.325 57.785) (xy 187.325 60.325))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid de276f1c-aec6-4c21-9213-63902e9e32f8)
- )
- (wire (pts (xy 40.64 26.67) (xy 43.815 26.67))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid de4213f5-bdea-4696-8609-35df27c21a5b)
- )
- (wire (pts (xy 109.22 20.32) (xy 111.125 20.32))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid dff43a4d-a963-44de-98ba-6790219cbb8d)
- )
- (wire (pts (xy 40.005 64.135) (xy 43.815 64.135))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e5217a71-8199-409f-8610-b334ecaa909a)
- )
- (wire (pts (xy 228.6 35.56) (xy 233.68 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e8325284-b1bf-4a3b-a5b4-a3e57efaae62)
- )
- (wire (pts (xy 180.34 42.545) (xy 191.135 42.545))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e89d97ea-2455-426c-a6ca-261f33fd4f73)
- )
- (wire (pts (xy 241.935 65.405) (xy 236.855 65.405))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid e89db32c-8624-4f14-92c3-b5a8b798e399)
- )
- (wire (pts (xy 233.68 35.56) (xy 233.68 38.735))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ea7200ed-adf2-48f2-9267-f87d4777e754)
- )
- (wire (pts (xy 40.64 24.13) (xy 43.815 24.13))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eba39608-3d18-41d8-901f-652e26aefc67)
- )
- (wire (pts (xy 185.42 52.705) (xy 185.42 55.245))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid ec999c2c-d671-4369-9b94-c84124b8d1f3)
- )
- (wire (pts (xy 60.325 69.215) (xy 56.515 69.215))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid eda65fa7-8434-4d1a-90ac-6a4efcbdef46)
- )
- (wire (pts (xy 105.41 82.55) (xy 128.905 82.55))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f1c44767-5588-490d-879a-66cc4039f080)
- )
- (wire (pts (xy 124.46 34.29) (xy 128.905 34.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f23d8681-4c3d-45d0-b2f9-27d28b7fa96d)
- )
- (wire (pts (xy 58.42 51.435) (xy 61.595 51.435))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f2d7f848-8f07-4028-8ead-667c03719b22)
- )
- (wire (pts (xy 208.915 65.405) (xy 208.915 67.945))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f32937e3-06ac-40fc-91b9-20766445874d)
- )
- (wire (pts (xy 228.6 34.29) (xy 228.6 35.56))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f4027188-5313-4c44-8b10-b8e9eec8e83f)
- )
- (wire (pts (xy 206.375 55.245) (xy 211.455 55.245))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f5717d07-a4fc-4e1e-899b-5d69e8a2e4d0)
- )
- (wire (pts (xy 219.075 47.625) (xy 241.935 47.625))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f75e7093-8afa-40ee-82d5-f12dda90a7ba)
- )
- (wire (pts (xy 220.98 42.545) (xy 220.98 52.705))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f95b0e5b-436e-4271-828f-e717519e3890)
- )
- (wire (pts (xy 252.095 23.622) (xy 252.095 26.797))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid f95d9534-71c1-4cf3-a4a1-538226fdfa2d)
- )
- (wire (pts (xy 185.42 62.865) (xy 191.135 62.865))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid facebef0-97e4-483c-a30b-20bf05f24e49)
- )
- (wire (pts (xy 40.005 76.835) (xy 43.815 76.835))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fb5bce0f-7a94-42f7-9595-6b6f713cc9bc)
- )
- (wire (pts (xy 213.36 34.29) (xy 211.455 34.29))
- (stroke (width 0) (type default) (color 0 0 0 0))
- (uuid fe56399a-5519-4d62-a8e9-0f906d2b8996)
- )
- (label "A13" (at 60.325 56.515 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 0c30f418-28de-416c-87e9-6c7e24940ae0)
- )
- (label "~{WE}" (at 124.46 82.55 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 0e4c493b-7fa5-424f-a8df-b83a6847a93c)
- )
- (label "A4" (at 124.46 41.91 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 136340e8-9ef2-480a-ae8f-37aa224f18fa)
- )
- (label "D3" (at 163.83 39.37 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 15422cb6-c833-4f40-b0cc-3801ddaa16cf)
- )
- (label "A11" (at 124.46 59.69 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 159133a1-ab7d-4045-b160-fceeb35bbd7c)
- )
- (label "D2" (at 163.83 36.83 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 15cd9ff1-a86f-4e67-aca5-a3cc83e13e8f)
- )
- (label "A2" (at 124.46 36.83 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 1afe62c6-d0d1-4595-a691-61ccfff2cff6)
- )
- (label "A13" (at 124.46 64.77 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 1c5cc934-1d59-41da-aa21-ea60c8b3bd04)
- )
- (label "A0" (at 124.46 31.75 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 1f430700-32ef-4206-a132-b98a8aa3ad7e)
- )
- (label "D7" (at 60.325 74.295 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 1fc8f1f8-b927-4d3f-8d50-d71213125ec4)
- )
- (label "~{WE}" (at 43.815 26.67 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 2026b4da-bc1f-4575-815b-84dc660314f3)
- )
- (label "PIN19" (at 180.34 67.945 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 20cea342-5938-457e-bb0d-e5f4158821cf)
- )
- (label "~{CE}" (at 124.46 87.63 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 244f2925-50f8-4b8c-bd59-a8411b454996)
- )
- (label "PIN19" (at 60.325 69.215 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 3a03fe41-4735-454b-8c05-0f194df17884)
- )
- (label "A3" (at 124.46 39.37 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 3b1055dc-799e-4f1c-bf8f-4fa68cc23562)
- )
- (label "D5" (at 163.83 44.45 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 4b269d01-65e3-4f3f-a321-b346af414bea)
- )
- (label "A14" (at 124.46 67.31 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 4c3f4ceb-b849-411b-b175-2f95c6a5d279)
- )
- (label "A1" (at 40.005 71.755 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 4f1fefe6-6eec-4893-9f7a-cc8b79f94e79)
- )
- (label "A0" (at 40.005 74.295 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 51ab7bae-25ac-4bb0-8ac8-3806c9d500af)
- )
- (label "A1" (at 124.46 34.29 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 5384bbc8-64e6-4a20-8932-430c45a8350d)
- )
- (label "A12" (at 43.815 34.29 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 5cf42d24-ee9a-44d0-85da-650055f508ec)
- )
- (label "D4" (at 60.325 81.915 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 5d30746c-153a-46b3-802e-d5d38853532d)
- )
- (label "PIN20" (at 60.325 66.675 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 5e084c8c-d925-48de-9064-e690ab471c67)
- )
- (label "A8" (at 124.46 52.07 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 62108839-62d3-4f70-b8c0-6585f946d6ed)
- )
- (label "A8" (at 60.325 59.055 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 62e991fe-f5cb-4910-8acb-6e20ad42f321)
- )
- (label "D1" (at 163.83 34.29 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 635e6703-dd83-41f1-87ed-2ddeff26106a)
- )
- (label "A4" (at 40.005 64.135 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 67d42b41-7e98-4a71-b2f5-29215cdcade0)
- )
- (label "A12" (at 124.46 62.23 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 6efcf904-c988-4925-9d41-57c12d6b0e45)
- )
- (label "PIN18" (at 180.34 42.545 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 779ceccc-3a06-4034-9644-cbff400ecc6b)
- )
- (label "A9" (at 60.325 61.595 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 79c93aec-97f9-4cf4-8a79-ac167bd0adc7)
- )
- (label "D0" (at 40.005 76.835 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 7cb4e0d0-bb46-4fa7-a127-b07a2b1e57a6)
- )
- (label "A2" (at 40.005 69.215 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 7e371fb9-a199-4d9f-9a03-a89028853206)
- )
- (label "PIN18" (at 180.34 47.625 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 829be39a-a186-4ec4-9266-62c48c77e710)
- )
- (label "D6" (at 163.83 46.99 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 8516b650-aa9c-421d-a5d7-78db2e4e6c40)
- )
- (label "A7" (at 40.005 56.515 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 86c4ef38-88fb-4622-af97-a273131c36eb)
- )
- (label "A3" (at 40.005 66.675 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 87107b39-43da-414f-9a94-718f3a6b3162)
- )
- (label "PIN21" (at 60.325 64.135 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 87cbd5c8-6832-4a17-8f3f-5790f4ea6dc5)
- )
- (label "~{OE}" (at 124.46 90.17 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 91cf1be6-778d-4c2b-8e53-91b79091d175)
- )
- (label "D0" (at 163.83 31.75 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 95b9c5a0-1505-4b2d-948a-3eb6fcccce2d)
- )
- (label "PIN21" (at 180.34 70.485 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid 972b9760-e7d3-4ebe-8c21-8d7b9fe6b1af)
- )
- (label "A11" (at 206.375 40.005 90)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 97b05044-e83a-4dc9-8b68-568e163c61b5)
- )
- (label "PIN18" (at 43.815 31.75 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid 99f98152-69b2-4d44-bd17-619d2f9a53dd)
- )
- (label "PIN18" (at 60.325 71.755 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a1737562-dc8d-4b90-9f6d-770cded3fb9c)
- )
- (label "D2" (at 40.005 81.915 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid a43cf4be-644b-4270-ba78-5925fee7ccc7)
- )
- (label "A12" (at 207.01 33.02 90)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid a67a9223-c5a6-4ee0-9591-0a8a1b12f467)
- )
- (label "A6" (at 124.46 46.99 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid a806c3ec-ccdd-45b8-a3c3-5e1363e062ca)
- )
- (label "A10" (at 217.17 67.945 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid b4da6311-8600-4dc5-9502-79e3c3fd5511)
- )
- (label "D3" (at 60.325 84.455 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ba5ed695-17db-4ccf-93ab-4aa9a2e3a858)
- )
- (label "A11" (at 217.17 70.485 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid bb61308f-0072-4e5d-bc4f-37476d6927ec)
- )
- (label "A7" (at 124.46 49.53 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid bc898ca6-19b1-41f6-912c-04c208efbb11)
- )
- (label "A6" (at 40.005 59.055 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid bdd65dd1-9f79-4dea-95b0-70e6d13d030b)
- )
- (label "D4" (at 163.83 41.91 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid c069f94e-47dc-4e07-846c-f301593ab85e)
- )
- (label "A10" (at 124.46 57.15 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid c63fb979-7dbf-48ba-a9d0-e80a29e47685)
- )
- (label "PIN20" (at 180.34 52.705 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid c900ce98-f909-4ef8-8162-a65583436043)
- )
- (label "~{CE}" (at 269.24 60.325 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid cadbb6e0-e97f-4b51-a86d-ade7a7dc829f)
- )
- (label "D7" (at 163.83 49.53 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid d6f60b04-5c7d-4815-9c8b-c6e589d4152a)
- )
- (label "A14" (at 43.815 24.13 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e4dc7078-2599-43c3-a705-01c266101c19)
- )
- (label "D5" (at 60.325 79.375 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e6ae620b-5d71-4ff5-aad7-4b6fd140a65f)
- )
- (label "D6" (at 60.325 76.835 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid e9c03cb4-6af3-4c40-a85a-cc18c2787bb2)
- )
- (label "~{OE}" (at 229.235 62.865 0)
- (effects (font (size 1.27 1.27)) (justify left bottom))
- (uuid ee4d7f80-9373-4a41-bd52-04a1804ebdaf)
- )
- (label "A5" (at 124.46 44.45 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f05c9808-12d7-4222-93f6-b70a9ad9c1f6)
- )
- (label "PIN21" (at 180.34 45.085 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f2250e10-63f2-4cff-b93d-029c6b18a2d8)
- )
- (label "D1" (at 40.005 79.375 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f404ffe8-cf1d-4450-a1ee-66b74ea7ce76)
- )
- (label "A9" (at 124.46 54.61 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid f56dbf7f-976e-4c2a-bccd-facb10e9e134)
- )
- (label "A5" (at 40.005 61.595 180)
- (effects (font (size 1.27 1.27)) (justify right bottom))
- (uuid ff9bfa9b-0c97-4025-b131-f1a485095d09)
- )
- (symbol (lib_id "Device:D") (at 65.405 51.435 180) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 05568466-85ba-42df-a276-ede09eb51a9f)
- (property "Reference" "D1" (id 0) (at 65.405 44.45 0))
- (property "Value" "1N5819" (id 1) (at 65.405 46.99 0))
- (property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 65.405 51.435 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 65.405 51.435 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C191023" (id 4) (at 65.405 51.435 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 47d0e9a1-1319-4332-b335-db8d2ed9822e))
- (pin "2" (uuid 50238349-133e-4a54-bdd9-0a3803aedb3b))
- )
- (symbol (lib_id "power:+5V") (at 76.2 48.895 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 11bb4d9e-e8dc-4537-b931-d86dd2ee245e)
- (property "Reference" "#PWR0102" (id 0) (at 76.2 52.705 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 76.2 43.18 0))
- (property "Footprint" "" (id 2) (at 76.2 48.895 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 76.2 48.895 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f5c1b237-0f9b-412a-afe8-db05b8ea95b4))
- )
- (symbol (lib_id "Device:R_Small") (at 105.41 24.765 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 169517e4-6bdb-4561-a60d-34b92fbfc370)
- (property "Reference" "R9" (id 0) (at 104.394 34.544 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 104.775 31.115 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 105.41 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 105.41 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 105.41 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid f68c8c23-1dd3-41be-9d10-9f9255481cb7))
- (pin "2" (uuid e98a31c4-397c-4c96-b109-3dd524a77c5d))
- )
- (symbol (lib_id "power:GND") (at 40.005 85.725 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 1911fcfe-7c24-4a76-aee7-51ed059a954d)
- (property "Reference" "#PWR0105" (id 0) (at 40.005 92.075 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 40.005 90.17 0))
- (property "Footprint" "" (id 2) (at 40.005 85.725 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 40.005 85.725 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 15e7f6ea-4ecd-4b11-9e38-53843b1f6818))
- )
- (symbol (lib_id "power:+5V") (at 97.536 71.12 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 19307264-5606-47cf-8cbd-fe7b44f442de)
- (property "Reference" "#PWR0111" (id 0) (at 97.536 74.93 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 97.536 66.04 0))
- (property "Footprint" "" (id 2) (at 97.536 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 97.536 71.12 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 84ba9eeb-385d-4293-a00a-4d6c5e5f2f6d))
- )
- (symbol (lib_id "power:+5V") (at 254.635 39.37 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 2384bef4-8a99-4b6d-846e-6d23d1cfb493)
- (property "Reference" "#PWR0107" (id 0) (at 254.635 43.18 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 254.635 34.29 0))
- (property "Footprint" "" (id 2) (at 254.635 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 254.635 39.37 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6ddf3413-2056-4469-82bc-cfc96aa792f2))
- )
- (symbol (lib_id "power:+5V") (at 59.69 22.86 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 29e13bea-8095-4c60-b3c9-ac6959871e0c)
- (property "Reference" "#PWR0101" (id 0) (at 59.69 26.67 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 59.69 17.145 0))
- (property "Footprint" "" (id 2) (at 59.69 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 59.69 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c4363219-1a8d-4888-97bf-529f6b70a838))
- )
- (symbol (lib_id "Device:C_Small") (at 38.1 107.315 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 2b472a65-e336-45a2-a169-3cd40d5153b8)
- (property "Reference" "C2" (id 0) (at 40.64 106.0512 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 40.64 108.5912 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 38.1 107.315 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 38.1 107.315 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 38.1 107.315 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid fa9c51c2-4227-4795-b2ed-f390baaa400a))
- (pin "2" (uuid 1eee3274-d593-4bef-a13f-20730ffe0da1))
- )
- (symbol (lib_id "Device:R_Small") (at 222.885 40.005 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 48976517-0aaf-4dc7-a809-ecbda5f4172c)
- (property "Reference" "R7" (id 0) (at 222.123 38.1 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 222.25 46.355 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.885 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 222.885 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 222.885 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid afbda828-1dab-4040-90a0-199fba953b7e))
- (pin "2" (uuid 055c3fad-1d9c-4edf-9048-f2e9712a24a7))
- )
- (symbol (lib_id "Device:R_Small") (at 224.79 40.005 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 48a35250-b6ca-4639-9850-0c2e2be45809)
- (property "Reference" "R8" (id 0) (at 223.901 38.354 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 224.155 46.355 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 224.79 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 224.79 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 224.79 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d4b7235b-3d92-440d-b92c-30836f0f00e9))
- (pin "2" (uuid 881feb3f-c634-462b-8ea8-dac4d01d9358))
- )
- (symbol (lib_id "Device:R_Small") (at 107.315 24.765 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 4e9cb3c0-7470-4e9e-9889-2254b5f60514)
- (property "Reference" "R10" (id 0) (at 106.68 34.925 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 106.68 31.115 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 107.315 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 107.315 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 107.315 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid d5cccf96-5da2-4572-883a-960355c68765))
- (pin "2" (uuid 417ff2a4-03fb-46a5-933e-9a1c9646e526))
- )
- (symbol (lib_id "eprom_replacer:SST39SF020_tsop") (at 144.145 62.23 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 5c585914-8cfc-4eb9-a7cd-ecf2a11ee03f)
- (property "Reference" "U2" (id 0) (at 140.335 27.94 0))
- (property "Value" "SST39SF020" (id 1) (at 152.4 27.94 0))
- (property "Footprint" "Package_SO:TSOP-I-32_14.4x8mm_P0.5mm" (id 2) (at 144.145 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/25022B.pdf" (id 3) (at 144.145 54.61 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C8205" (id 4) (at 144.145 62.23 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "24" (uuid ccc06ff2-a788-470c-8555-57ea77caacdd))
- (pin "8" (uuid f5df227e-3c1b-4e28-aa13-48bd256e3665))
- (pin "1" (uuid 2b8d1d6c-2296-4c29-8c0c-a3904e456e95))
- (pin "10" (uuid 0d8f8963-dc71-46c4-ab1e-cba12a0995f1))
- (pin "11" (uuid 045b51df-b9b4-4831-bbb3-525fdc09400b))
- (pin "12" (uuid 18ec34b7-2f93-4018-b33c-32f4ba03ff6c))
- (pin "13" (uuid d9b10c97-111f-4e77-9bbe-f0591d29f0d9))
- (pin "14" (uuid 87f26966-0076-46c4-97d7-367e27de3ab9))
- (pin "15" (uuid 3f3e7e6e-023a-4cf6-b9bc-2edd151df971))
- (pin "16" (uuid 0203814d-ccf5-4462-b5dd-a0778fde4751))
- (pin "17" (uuid 7b8ef105-c0b5-44f1-ab45-8a0b6e2d7d9a))
- (pin "18" (uuid a108f587-eda3-4162-bc57-2e9b7c5c2412))
- (pin "19" (uuid b6578fcf-15c5-4579-83f8-9b8cfddcf617))
- (pin "2" (uuid e6f28631-2b8f-41a3-949f-7ee2cc4e2560))
- (pin "20" (uuid 4e4ee7e8-7121-4f6a-8c1d-1c84a9fd76f9))
- (pin "21" (uuid b9f70588-d885-49e3-8d4e-535b1f34cedd))
- (pin "22" (uuid 28373c14-0c35-4580-8ea1-f949b7587de2))
- (pin "23" (uuid 25c03db8-47bb-4818-bc05-3a17a874dbc8))
- (pin "25" (uuid 9d0314bd-b467-4e36-ba5b-b70cb77a0f09))
- (pin "26" (uuid 92c9cc49-1b02-40ec-9eec-f1d4719479e0))
- (pin "27" (uuid d63cf213-6e09-4429-a89a-96b2d6d23673))
- (pin "28" (uuid 3c8a7819-fcc6-4905-a57e-8efeb644c9a7))
- (pin "29" (uuid a1e2b945-6d01-4d53-a514-26840b03b62f))
- (pin "3" (uuid 8d060d0a-c535-4ede-a7ca-bf5d1862bfc2))
- (pin "30" (uuid 17a1a1c2-354e-46c7-94ca-0e40d6a6f9d8))
- (pin "31" (uuid 27d370f8-bab2-4e96-b544-3e29dfeb9af8))
- (pin "32" (uuid 35866dff-1698-4334-b893-292d841a05a0))
- (pin "4" (uuid 5df18283-a68b-4011-8806-1e7f9a61bc88))
- (pin "5" (uuid 512fb5f7-7be2-4493-b0ea-8e7143b781e7))
- (pin "6" (uuid 58115524-ad05-405f-8e82-16dcd2f87179))
- (pin "7" (uuid c99caec2-4495-46be-ab9e-f268c364e8d5))
- (pin "9" (uuid bca1d98e-ed9c-4015-be1d-808d141cd3cd))
- )
- (symbol (lib_id "power:+5V") (at 213.36 31.75 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 5e8e1e52-4473-4da2-8bec-9fc09f83fb3e)
- (property "Reference" "#PWR0110" (id 0) (at 213.36 35.56 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 213.36 26.67 0))
- (property "Footprint" "" (id 2) (at 213.36 31.75 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 213.36 31.75 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid aa8722f3-a86f-4d5c-b205-05474231ccc6))
- )
- (symbol (lib_id "power:GND") (at 31.75 113.665 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 6c017189-d972-43ab-a64d-84f85c4f7698)
- (property "Reference" "#PWR0112" (id 0) (at 31.75 120.015 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 31.75 118.11 0))
- (property "Footprint" "" (id 2) (at 31.75 113.665 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 31.75 113.665 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid b0a4b860-d047-4f79-8998-5bcc1da90115))
- )
- (symbol (lib_id "power:+5V") (at 109.22 19.05 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 734d5c29-889c-4ea4-b69a-988bbab0d8ad)
- (property "Reference" "#PWR0104" (id 0) (at 109.22 22.86 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 109.22 13.97 0))
- (property "Footprint" "" (id 2) (at 109.22 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 109.22 19.05 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 9f4ac38f-c697-498d-a2f2-e73fc2198496))
- )
- (symbol (lib_id "Device:R_Small") (at 211.455 40.005 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 7a1ba7ec-c39b-423e-9edb-5b856a7d2993)
- (property "Reference" "R2" (id 0) (at 210.439 38.1 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 210.82 46.355 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 211.455 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 211.455 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 211.455 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6f15666f-258f-4ee8-993f-a84c1c93a052))
- (pin "2" (uuid ea055af7-5087-4bbc-bdf9-d876fe58bc8f))
- )
- (symbol (lib_id "Connector:Conn_01x05_Male") (at 35.56 29.21 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 80ad1150-d3f6-47c5-9814-1d34ea225d29)
- (property "Reference" "J1" (id 0) (at 36.195 19.05 0))
- (property "Value" "Conn_01x05_Male" (id 1) (at 36.195 21.59 0))
- (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (id 2) (at 35.56 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 35.56 29.21 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ef9cf2f7-f6ba-473e-b2d4-51a9ba5dcbb4))
- (pin "2" (uuid d34c6470-79fa-40d8-89e2-d3180a8ffeef))
- (pin "3" (uuid 4fa84184-9e2b-44a2-96e2-51e8bcfb2871))
- (pin "4" (uuid 9a0c5aae-99b7-491c-8cad-00884b7384c7))
- (pin "5" (uuid f2357078-12c4-4022-805d-a95cf16c7225))
- )
- (symbol (lib_id "Device:R_Small") (at 109.22 24.765 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 838ebff8-9088-4488-8797-8ea4054d33ef)
- (property "Reference" "R11" (id 0) (at 108.585 34.925 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 108.585 31.115 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 109.22 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 109.22 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 109.22 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid be087f2c-6f75-4c10-880c-1f9d04f55db6))
- (pin "2" (uuid 90039c45-52dc-4cc6-b023-a5198e7dcaad))
- )
- (symbol (lib_id "power:GND") (at 233.68 38.735 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 8b6ac2ad-45f4-4593-98d5-c130aab7a0cc)
- (property "Reference" "#PWR0108" (id 0) (at 233.68 45.085 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 233.68 43.18 0))
- (property "Footprint" "" (id 2) (at 233.68 38.735 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 233.68 38.735 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 59c670ae-77a4-4b44-9cd8-6aa43c622819))
- )
- (symbol (lib_id "power:+5V") (at 31.75 100.965 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 8bde7330-a3f8-415e-8cbd-36175c4f7f53)
- (property "Reference" "#PWR0113" (id 0) (at 31.75 104.775 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 31.75 95.25 0))
- (property "Footprint" "" (id 2) (at 31.75 100.965 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 31.75 100.965 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 15a34135-fdaa-48f6-84af-823bfad3fc9e))
- )
- (symbol (lib_id "power:PWR_FLAG") (at 243.84 24.257 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 941474bd-5264-4c39-b770-87e471436a01)
- (property "Reference" "#FLG0101" (id 0) (at 243.84 22.352 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "PWR_FLAG" (id 1) (at 243.84 19.177 0))
- (property "Footprint" "" (id 2) (at 243.84 24.257 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 243.84 24.257 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 060d83eb-464d-48dd-88ff-65b9083a7d70))
- )
- (symbol (lib_id "Device:R_Small") (at 220.98 40.005 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid 997a0b42-aab4-4ba3-9182-0929a2f3a00c)
- (property "Reference" "R6" (id 0) (at 220.091 38.1 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 220.345 46.355 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 220.98 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 220.98 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 220.98 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 0ecc7640-2856-4d55-86db-9f54fcbf91c4))
- (pin "2" (uuid 0218fe85-3b3f-40e8-9dad-22ef2dc94a63))
- )
- (symbol (lib_id "power:GND") (at 269.875 86.487 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid 9ad4e3e8-18fd-4870-98a4-63da243e85b7)
- (property "Reference" "#PWR0115" (id 0) (at 269.875 92.837 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 269.875 90.932 0))
- (property "Footprint" "" (id 2) (at 269.875 86.487 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 269.875 86.487 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 6efc74ea-c150-4ba7-8f55-a2349ac95368))
- )
- (symbol (lib_id "Switch:SW_DIP_x12") (at 198.755 57.785 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid a1fe3c47-fc4e-4194-b05a-0c42f095c141)
- (property "Reference" "SW1" (id 0) (at 198.755 36.83 0))
- (property "Value" "SW_DIP_x10" (id 1) (at 198.755 39.37 0))
- (property "Footprint" "eprom_replacer:SW_DIP_SPSTx12_Slide_CTS_12LPSTJR_W5.8mm_P1.27mm_JPin" (id 2) (at 198.755 57.785 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 198.755 57.785 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 54a4297f-8499-4176-8690-2030bf8503fb))
- (pin "10" (uuid b440fb92-4be4-4046-b4ee-30415865f0fa))
- (pin "11" (uuid 159409bc-bcf7-48ee-aa68-f3169ed52141))
- (pin "12" (uuid a17c7a04-07be-4589-b242-8db6dfea861a))
- (pin "13" (uuid 44905dd6-7f54-4e49-97c3-2141eaaec204))
- (pin "14" (uuid bc60641c-dbcb-4fc4-9da0-ea0757d97191))
- (pin "15" (uuid c037cb06-e751-4d33-a3a5-d09ee02fa656))
- (pin "16" (uuid c9f80bc0-6133-4a2f-bcb9-685f16f11575))
- (pin "17" (uuid f08e60ea-2b8b-42b9-8c00-c5ea74dd2f99))
- (pin "18" (uuid e8aaf416-5ac4-4fc1-a74a-acd67a131ee7))
- (pin "19" (uuid 1dc177c2-b8fd-4c59-aedc-8e4eb892302d))
- (pin "2" (uuid d4acc02a-be37-4d76-8445-621425e4f0b6))
- (pin "20" (uuid 16e5a0d0-7f46-4f96-8e9d-6780d2c3e967))
- (pin "21" (uuid e97f4397-d0d2-4894-9777-e68a22ec6f82))
- (pin "22" (uuid 716e592e-cfd3-48ef-9fa2-691787fdd9a1))
- (pin "23" (uuid 70866347-04dc-4db7-b4f4-ec0d5143fa22))
- (pin "24" (uuid 01561814-4027-4afe-81aa-3c5ce4dddcbf))
- (pin "3" (uuid 5c652015-bb33-475a-a1e9-9504b1d6aa3c))
- (pin "4" (uuid 60ed8f97-ffde-4d27-9487-1a53c95db830))
- (pin "5" (uuid db4dce93-6368-4537-b5c3-510e63b03eb8))
- (pin "6" (uuid b6776045-89d2-4009-adba-2093f451c9e5))
- (pin "7" (uuid 2624ee06-7045-419c-8208-b4bb4e71447f))
- (pin "8" (uuid 2aa1010f-ec77-4f71-bed1-c3b5a91e6a17))
- (pin "9" (uuid 6420ae19-80a4-4e80-a1b8-f8afc0f5deec))
- )
- (symbol (lib_id "74xx:74LS138") (at 254.635 55.245 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid a8e608a3-bfff-4bbd-872e-4d7f20cc0b2e)
- (property "Reference" "U1" (id 0) (at 256.6544 40.005 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "74AHCT138PW" (id 1) (at 256.6544 42.545 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Package_SO:TSSOP-16_4.4x5mm_P0.65mm" (id 2) (at 254.635 55.245 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS138" (id 3) (at 254.635 55.245 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 73c53378-19ac-4f0b-bde0-cb7589c5ea49))
- (pin "10" (uuid 5f0091c4-aac4-4b52-913e-eab4d176f908))
- (pin "11" (uuid 2850b6b8-229b-43bd-8f26-c87926e9f0af))
- (pin "12" (uuid 10f139e9-e758-4e6e-a948-d0ac4ea88eae))
- (pin "13" (uuid 4e0ddee6-e61a-45ed-99f4-7362f93edbe8))
- (pin "14" (uuid 2c6349d9-ac42-4d50-a8e3-ea68da4d0bda))
- (pin "15" (uuid 84bf5d7f-ea0a-4a73-b7c3-19907a973455))
- (pin "16" (uuid 40beaae6-2eee-49be-8284-1d271f2878a1))
- (pin "2" (uuid 0d73a972-90fa-4e5a-a06b-281728a382b4))
- (pin "3" (uuid 67f55622-e78d-41b9-8d86-e4705531ba01))
- (pin "4" (uuid 68383988-1ef5-4e9b-b430-1fca93bd3bb7))
- (pin "5" (uuid a3fddd46-f0d3-46b5-86ed-9a8bfabee76e))
- (pin "6" (uuid cfa477ac-88da-4565-85e7-cb85ad1b5a4b))
- (pin "7" (uuid 9b7f1651-8ecf-41f4-9526-4e25a7355373))
- (pin "8" (uuid 109acf44-8431-4497-b539-f48b7261b72d))
- (pin "9" (uuid 7596f93b-f948-408a-8117-b3bcc51cefc5))
- )
- (symbol (lib_id "power:+5V") (at 252.095 23.622 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid acb6d453-4ac8-4fcc-8411-20dfe1a40c9c)
- (property "Reference" "#PWR0114" (id 0) (at 252.095 27.432 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 252.095 18.542 0))
- (property "Footprint" "" (id 2) (at 252.095 23.622 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 252.095 23.622 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c8d9343e-cb77-43b9-809f-bcc6f3344823))
- )
- (symbol (lib_id "power:PWR_FLAG") (at 269.875 84.582 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid af3a35f6-fa06-4d7f-9d21-139818892501)
- (property "Reference" "#FLG0102" (id 0) (at 269.875 82.677 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "PWR_FLAG" (id 1) (at 269.875 79.502 0))
- (property "Footprint" "" (id 2) (at 269.875 84.582 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 269.875 84.582 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ad8640b0-b945-45ea-8f47-a08daa4793f7))
- )
- (symbol (lib_id "Device:R_Small") (at 213.36 40.005 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid b81c3c90-e7f1-4c0e-8bac-412870ee22fc)
- (property "Reference" "R3" (id 0) (at 212.471 38.354 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 212.725 46.355 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 213.36 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 213.36 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 213.36 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid ddb486a1-00ff-4e95-aacc-db9f7d3bb6c7))
- (pin "2" (uuid d432ad35-855a-49f7-9395-f4d6118f524f))
- )
- (symbol (lib_id "Connector_Generic:Conn_02x12_Counter_Clockwise") (at 48.895 69.215 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid d2332246-dea9-4cad-8e06-8098a53ecf1c)
- (property "Reference" "J2" (id 0) (at 50.165 49.53 0))
- (property "Value" "Conn_02x12_Counter_Clockwise" (id 1) (at 31.115 45.72 0))
- (property "Footprint" "Package_DIP:DIP-24_W15.24mm_Socket" (id 2) (at 48.895 69.215 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 48.895 69.215 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 1f64c2dd-3643-420e-9b24-6a70ba241dd9))
- (pin "10" (uuid 167000ec-e78f-461f-a553-b4d74c576506))
- (pin "11" (uuid 414aa5f3-f658-4753-a082-003b9324378d))
- (pin "12" (uuid a964727f-17c2-4af2-a867-018f8bc7a312))
- (pin "13" (uuid d5b41b82-7f75-43d2-90d3-76f70b993ce0))
- (pin "14" (uuid d6b07107-f192-4d95-aebc-01071f92a108))
- (pin "15" (uuid 030c3fa9-cebd-4e33-a207-bc2dab797b0c))
- (pin "16" (uuid 5f36d6c6-ed58-4bce-b1d4-1cfa80d5f06e))
- (pin "17" (uuid f48d53e2-9b6d-44e9-81a2-75258640ce22))
- (pin "18" (uuid a6bdc4d5-ccf6-46c8-8a62-4982a75b5f37))
- (pin "19" (uuid bf83dc83-1ea3-49f9-81cf-51bd68b05216))
- (pin "2" (uuid 57fd6451-db9f-4afd-9e61-e83f3878b932))
- (pin "20" (uuid afcce374-b166-4759-b30d-4e8b19b2975c))
- (pin "21" (uuid 01ca5424-8ca1-4a4a-a85c-888481309656))
- (pin "22" (uuid fa640d63-3853-4c60-9118-9b8c9bbc6868))
- (pin "23" (uuid c078dc0f-0741-46dd-ab5f-d6e2ef303246))
- (pin "24" (uuid 3919c555-9b24-4dab-80bb-67359edfd227))
- (pin "3" (uuid 95dabd70-34db-4abc-af41-d96968d3802c))
- (pin "4" (uuid b43413b6-2a7a-4649-ab18-265877eee162))
- (pin "5" (uuid 84a359ec-4811-4da5-a70e-e8e73f4a6a6e))
- (pin "6" (uuid f737fe4c-7bdb-415b-a4cc-ea085a7da81c))
- (pin "7" (uuid 71f76d1c-4f9a-49a4-9af5-c5e54ad56d49))
- (pin "8" (uuid 3d01f859-90fd-4f3f-a596-27b361f18f93))
- (pin "9" (uuid 3986d204-1dd5-42a3-8766-94ca4dd4fa12))
- )
- (symbol (lib_id "Device:R_Small") (at 209.55 40.005 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid d7860db2-8430-4739-913f-4586aba4a4f2)
- (property "Reference" "R1" (id 0) (at 208.28 38.1 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 208.915 46.355 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 209.55 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 209.55 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 209.55 40.005 90)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 53a6d0f2-3809-44ef-a49e-4f0c8e661d96))
- (pin "2" (uuid 2d3eee90-9038-4be9-a59e-d331ed740638))
- )
- (symbol (lib_id "power:GND") (at 144.145 93.345 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid d9917163-1cc9-4987-ac2a-93800fc90ea1)
- (property "Reference" "#PWR0106" (id 0) (at 144.145 99.695 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 144.145 97.79 0))
- (property "Footprint" "" (id 2) (at 144.145 93.345 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 144.145 93.345 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 7aa8f60b-ea0a-4ca1-9f4a-6e4c429e0d7b))
- )
- (symbol (lib_id "Device:R_Small") (at 111.125 24.765 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid daa15b7e-ab04-418e-b612-a549158e72a3)
- (property "Reference" "R12" (id 0) (at 110.49 34.925 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 110.49 31.115 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 111.125 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 111.125 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 111.125 24.765 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid c5c42e5d-f48a-4c83-ac02-01473b26bc6e))
- (pin "2" (uuid 5592a6c5-98b1-414d-a533-2fbe15dd1b49))
- )
- (symbol (lib_id "Device:R_Small") (at 215.265 40.005 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid dc81feb1-c402-44b0-af86-eed12b7ab9d2)
- (property "Reference" "R4" (id 0) (at 214.503 38.1 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 214.63 46.355 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 215.265 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 215.265 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 215.265 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 31d1dad2-eda5-4809-bc21-eda594d42f22))
- (pin "2" (uuid de40c6a9-247e-4305-a887-6d19e9457464))
- )
- (symbol (lib_id "power:GND") (at 254.635 74.295 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid de308556-6066-4df2-b2f1-11a04ae85651)
- (property "Reference" "#PWR0109" (id 0) (at 254.635 80.645 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "GND" (id 1) (at 254.635 78.74 0))
- (property "Footprint" "" (id 2) (at 254.635 74.295 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 254.635 74.295 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 3260e44f-1431-46df-bb0b-0384d76e5145))
- )
- (symbol (lib_id "Device:R_Small") (at 219.075 40.005 0) (unit 1)
- (in_bom yes) (on_board yes)
- (uuid e59f81f1-4386-493e-a150-f5d7c5dd0c5d)
- (property "Reference" "R5" (id 0) (at 218.059 38.1 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100k" (id 1) (at 218.44 46.355 90)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 219.075 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 219.075 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C25741" (id 4) (at 219.075 40.005 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 05d9fe18-e936-4553-8bf3-f0aebfd311ba))
- (pin "2" (uuid 125ce249-d950-459e-826d-4e24483a4b00))
- )
- (symbol (lib_id "power:+5V") (at 144.145 27.94 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid efe01849-1bae-4f95-b560-ac8b55dde0a8)
- (property "Reference" "#PWR0103" (id 0) (at 144.145 31.75 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Value" "+5V" (id 1) (at 144.145 22.86 0))
- (property "Footprint" "" (id 2) (at 144.145 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "" (id 3) (at 144.145 27.94 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid 71136f30-d603-4590-baa5-7619068e2b82))
- )
- (symbol (lib_id "Device:C_Small") (at 26.67 107.315 0) (unit 1)
- (in_bom yes) (on_board yes) (fields_autoplaced)
- (uuid fd32d61c-c9d6-4f2b-9879-dcd10ee84e00)
- (property "Reference" "C1" (id 0) (at 29.21 106.0512 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Value" "100nF" (id 1) (at 29.21 108.5912 0)
- (effects (font (size 1.27 1.27)) (justify left))
- )
- (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 26.67 107.315 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "Datasheet" "~" (id 3) (at 26.67 107.315 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (property "LCSC" "C1525" (id 4) (at 26.67 107.315 0)
- (effects (font (size 1.27 1.27)) hide)
- )
- (pin "1" (uuid be4f69e5-7e2e-417b-ace4-fa29e1ddefa3))
- (pin "2" (uuid b588c093-c6a5-40ad-8625-4c03c709ee87))
- )
- (sheet_instances
- (path "/" (page "1"))
- )
- (symbol_instances
- (path "/941474bd-5264-4c39-b770-87e471436a01"
- (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
- )
- (path "/af3a35f6-fa06-4d7f-9d21-139818892501"
- (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
- )
- (path "/29e13bea-8095-4c60-b3c9-ac6959871e0c"
- (reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
- )
- (path "/11bb4d9e-e8dc-4537-b931-d86dd2ee245e"
- (reference "#PWR0102") (unit 1) (value "+5V") (footprint "")
- )
- (path "/efe01849-1bae-4f95-b560-ac8b55dde0a8"
- (reference "#PWR0103") (unit 1) (value "+5V") (footprint "")
- )
- (path "/734d5c29-889c-4ea4-b69a-988bbab0d8ad"
- (reference "#PWR0104") (unit 1) (value "+5V") (footprint "")
- )
- (path "/1911fcfe-7c24-4a76-aee7-51ed059a954d"
- (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
- )
- (path "/d9917163-1cc9-4987-ac2a-93800fc90ea1"
- (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
- )
- (path "/2384bef4-8a99-4b6d-846e-6d23d1cfb493"
- (reference "#PWR0107") (unit 1) (value "+5V") (footprint "")
- )
- (path "/8b6ac2ad-45f4-4593-98d5-c130aab7a0cc"
- (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
- )
- (path "/de308556-6066-4df2-b2f1-11a04ae85651"
- (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
- )
- (path "/5e8e1e52-4473-4da2-8bec-9fc09f83fb3e"
- (reference "#PWR0110") (unit 1) (value "+5V") (footprint "")
- )
- (path "/19307264-5606-47cf-8cbd-fe7b44f442de"
- (reference "#PWR0111") (unit 1) (value "+5V") (footprint "")
- )
- (path "/6c017189-d972-43ab-a64d-84f85c4f7698"
- (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
- )
- (path "/8bde7330-a3f8-415e-8cbd-36175c4f7f53"
- (reference "#PWR0113") (unit 1) (value "+5V") (footprint "")
- )
- (path "/acb6d453-4ac8-4fcc-8411-20dfe1a40c9c"
- (reference "#PWR0114") (unit 1) (value "+5V") (footprint "")
- )
- (path "/9ad4e3e8-18fd-4870-98a4-63da243e85b7"
- (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
- )
- (path "/fd32d61c-c9d6-4f2b-9879-dcd10ee84e00"
- (reference "C1") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
- )
- (path "/2b472a65-e336-45a2-a169-3cd40d5153b8"
- (reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0402_1005Metric")
- )
- (path "/05568466-85ba-42df-a276-ede09eb51a9f"
- (reference "D1") (unit 1) (value "1N5819") (footprint "Diode_SMD:D_SOD-323")
- )
- (path "/80ad1150-d3f6-47c5-9814-1d34ea225d29"
- (reference "J1") (unit 1) (value "Conn_01x05_Male") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical")
- )
- (path "/d2332246-dea9-4cad-8e06-8098a53ecf1c"
- (reference "J2") (unit 1) (value "Conn_02x12_Counter_Clockwise") (footprint "Package_DIP:DIP-24_W15.24mm_Socket")
- )
- (path "/d7860db2-8430-4739-913f-4586aba4a4f2"
- (reference "R1") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/7a1ba7ec-c39b-423e-9edb-5b856a7d2993"
- (reference "R2") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/b81c3c90-e7f1-4c0e-8bac-412870ee22fc"
- (reference "R3") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/dc81feb1-c402-44b0-af86-eed12b7ab9d2"
- (reference "R4") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/e59f81f1-4386-493e-a150-f5d7c5dd0c5d"
- (reference "R5") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/997a0b42-aab4-4ba3-9182-0929a2f3a00c"
- (reference "R6") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/48976517-0aaf-4dc7-a809-ecbda5f4172c"
- (reference "R7") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/48a35250-b6ca-4639-9850-0c2e2be45809"
- (reference "R8") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/169517e4-6bdb-4561-a60d-34b92fbfc370"
- (reference "R9") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/4e9cb3c0-7470-4e9e-9889-2254b5f60514"
- (reference "R10") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/838ebff8-9088-4488-8797-8ea4054d33ef"
- (reference "R11") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/daa15b7e-ab04-418e-b612-a549158e72a3"
- (reference "R12") (unit 1) (value "100k") (footprint "Resistor_SMD:R_0402_1005Metric")
- )
- (path "/a1fe3c47-fc4e-4194-b05a-0c42f095c141"
- (reference "SW1") (unit 1) (value "SW_DIP_x10") (footprint "eprom_replacer:SW_DIP_SPSTx12_Slide_CTS_12LPSTJR_W5.8mm_P1.27mm_JPin")
- )
- (path "/a8e608a3-bfff-4bbd-872e-4d7f20cc0b2e"
- (reference "U1") (unit 1) (value "74AHCT138PW") (footprint "Package_SO:TSSOP-16_4.4x5mm_P0.65mm")
- )
- (path "/5c585914-8cfc-4eb9-a7cd-ecf2a11ee03f"
- (reference "U2") (unit 1) (value "SST39SF020") (footprint "Package_SO:TSOP-I-32_14.4x8mm_P0.5mm")
- )
- )
- )
|