Z80ICE.kicad_sch 293 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 4e6e23b6-3bf8-413a-9fba-d159d11738f7)
  3. (paper "A3")
  4. (title_block
  5. (title "Z80ICE")
  6. (date "2022-10-21")
  7. (rev "0.01")
  8. )
  9. (lib_symbols
  10. (symbol "CPU:Z80CPU" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  11. (property "Reference" "U" (id 0) (at -13.97 35.56 0)
  12. (effects (font (size 1.27 1.27)) (justify left))
  13. )
  14. (property "Value" "Z80CPU" (id 1) (at 6.35 35.56 0)
  15. (effects (font (size 1.27 1.27)) (justify left))
  16. )
  17. (property "Footprint" "" (id 2) (at 0 10.16 0)
  18. (effects (font (size 1.27 1.27)) hide)
  19. )
  20. (property "Datasheet" "www.zilog.com/manage_directlink.php?filepath=docs/z80/um0080" (id 3) (at 0 10.16 0)
  21. (effects (font (size 1.27 1.27)) hide)
  22. )
  23. (property "ki_keywords" "Z80 CPU uP" (id 4) (at 0 0 0)
  24. (effects (font (size 1.27 1.27)) hide)
  25. )
  26. (property "ki_description" "8-bit General Purpose Microprocessor, DIP-40" (id 5) (at 0 0 0)
  27. (effects (font (size 1.27 1.27)) hide)
  28. )
  29. (property "ki_fp_filters" "DIP* PDIP*" (id 6) (at 0 0 0)
  30. (effects (font (size 1.27 1.27)) hide)
  31. )
  32. (symbol "Z80CPU_0_1"
  33. (rectangle (start -13.97 34.29) (end 13.97 -34.29)
  34. (stroke (width 0.254) (type default) (color 0 0 0 0))
  35. (fill (type background))
  36. )
  37. )
  38. (symbol "Z80CPU_1_1"
  39. (pin output line (at 17.78 2.54 180) (length 3.81)
  40. (name "A11" (effects (font (size 1.27 1.27))))
  41. (number "1" (effects (font (size 1.27 1.27))))
  42. )
  43. (pin bidirectional line (at 17.78 -27.94 180) (length 3.81)
  44. (name "D6" (effects (font (size 1.27 1.27))))
  45. (number "10" (effects (font (size 1.27 1.27))))
  46. )
  47. (pin power_in line (at 0 38.1 270) (length 3.81)
  48. (name "VCC" (effects (font (size 1.27 1.27))))
  49. (number "11" (effects (font (size 1.27 1.27))))
  50. )
  51. (pin bidirectional line (at 17.78 -17.78 180) (length 3.81)
  52. (name "D2" (effects (font (size 1.27 1.27))))
  53. (number "12" (effects (font (size 1.27 1.27))))
  54. )
  55. (pin bidirectional line (at 17.78 -30.48 180) (length 3.81)
  56. (name "D7" (effects (font (size 1.27 1.27))))
  57. (number "13" (effects (font (size 1.27 1.27))))
  58. )
  59. (pin bidirectional line (at 17.78 -12.7 180) (length 3.81)
  60. (name "D0" (effects (font (size 1.27 1.27))))
  61. (number "14" (effects (font (size 1.27 1.27))))
  62. )
  63. (pin bidirectional line (at 17.78 -15.24 180) (length 3.81)
  64. (name "D1" (effects (font (size 1.27 1.27))))
  65. (number "15" (effects (font (size 1.27 1.27))))
  66. )
  67. (pin input line (at -17.78 12.7 0) (length 3.81)
  68. (name "~{INT}" (effects (font (size 1.27 1.27))))
  69. (number "16" (effects (font (size 1.27 1.27))))
  70. )
  71. (pin input line (at -17.78 15.24 0) (length 3.81)
  72. (name "~{NMI}" (effects (font (size 1.27 1.27))))
  73. (number "17" (effects (font (size 1.27 1.27))))
  74. )
  75. (pin output line (at -17.78 -2.54 0) (length 3.81)
  76. (name "~{HALT}" (effects (font (size 1.27 1.27))))
  77. (number "18" (effects (font (size 1.27 1.27))))
  78. )
  79. (pin output line (at -17.78 -17.78 0) (length 3.81)
  80. (name "~{MREQ}" (effects (font (size 1.27 1.27))))
  81. (number "19" (effects (font (size 1.27 1.27))))
  82. )
  83. (pin output line (at 17.78 0 180) (length 3.81)
  84. (name "A12" (effects (font (size 1.27 1.27))))
  85. (number "2" (effects (font (size 1.27 1.27))))
  86. )
  87. (pin output line (at -17.78 -20.32 0) (length 3.81)
  88. (name "~{IORQ}" (effects (font (size 1.27 1.27))))
  89. (number "20" (effects (font (size 1.27 1.27))))
  90. )
  91. (pin output line (at -17.78 -12.7 0) (length 3.81)
  92. (name "~{RD}" (effects (font (size 1.27 1.27))))
  93. (number "21" (effects (font (size 1.27 1.27))))
  94. )
  95. (pin output line (at -17.78 -15.24 0) (length 3.81)
  96. (name "~{WR}" (effects (font (size 1.27 1.27))))
  97. (number "22" (effects (font (size 1.27 1.27))))
  98. )
  99. (pin output line (at -17.78 -30.48 0) (length 3.81)
  100. (name "~{BUSACK}" (effects (font (size 1.27 1.27))))
  101. (number "23" (effects (font (size 1.27 1.27))))
  102. )
  103. (pin input line (at -17.78 0 0) (length 3.81)
  104. (name "~{WAIT}" (effects (font (size 1.27 1.27))))
  105. (number "24" (effects (font (size 1.27 1.27))))
  106. )
  107. (pin input line (at -17.78 -27.94 0) (length 3.81)
  108. (name "~{BUSRQ}" (effects (font (size 1.27 1.27))))
  109. (number "25" (effects (font (size 1.27 1.27))))
  110. )
  111. (pin input line (at -17.78 30.48 0) (length 3.81)
  112. (name "~{RESET}" (effects (font (size 1.27 1.27))))
  113. (number "26" (effects (font (size 1.27 1.27))))
  114. )
  115. (pin output line (at -17.78 5.08 0) (length 3.81)
  116. (name "~{M1}" (effects (font (size 1.27 1.27))))
  117. (number "27" (effects (font (size 1.27 1.27))))
  118. )
  119. (pin output line (at -17.78 2.54 0) (length 3.81)
  120. (name "~{RFSH}" (effects (font (size 1.27 1.27))))
  121. (number "28" (effects (font (size 1.27 1.27))))
  122. )
  123. (pin power_in line (at 0 -38.1 90) (length 3.81)
  124. (name "GND" (effects (font (size 1.27 1.27))))
  125. (number "29" (effects (font (size 1.27 1.27))))
  126. )
  127. (pin output line (at 17.78 -2.54 180) (length 3.81)
  128. (name "A13" (effects (font (size 1.27 1.27))))
  129. (number "3" (effects (font (size 1.27 1.27))))
  130. )
  131. (pin output line (at 17.78 30.48 180) (length 3.81)
  132. (name "A0" (effects (font (size 1.27 1.27))))
  133. (number "30" (effects (font (size 1.27 1.27))))
  134. )
  135. (pin output line (at 17.78 27.94 180) (length 3.81)
  136. (name "A1" (effects (font (size 1.27 1.27))))
  137. (number "31" (effects (font (size 1.27 1.27))))
  138. )
  139. (pin output line (at 17.78 25.4 180) (length 3.81)
  140. (name "A2" (effects (font (size 1.27 1.27))))
  141. (number "32" (effects (font (size 1.27 1.27))))
  142. )
  143. (pin output line (at 17.78 22.86 180) (length 3.81)
  144. (name "A3" (effects (font (size 1.27 1.27))))
  145. (number "33" (effects (font (size 1.27 1.27))))
  146. )
  147. (pin output line (at 17.78 20.32 180) (length 3.81)
  148. (name "A4" (effects (font (size 1.27 1.27))))
  149. (number "34" (effects (font (size 1.27 1.27))))
  150. )
  151. (pin output line (at 17.78 17.78 180) (length 3.81)
  152. (name "A5" (effects (font (size 1.27 1.27))))
  153. (number "35" (effects (font (size 1.27 1.27))))
  154. )
  155. (pin output line (at 17.78 15.24 180) (length 3.81)
  156. (name "A6" (effects (font (size 1.27 1.27))))
  157. (number "36" (effects (font (size 1.27 1.27))))
  158. )
  159. (pin output line (at 17.78 12.7 180) (length 3.81)
  160. (name "A7" (effects (font (size 1.27 1.27))))
  161. (number "37" (effects (font (size 1.27 1.27))))
  162. )
  163. (pin output line (at 17.78 10.16 180) (length 3.81)
  164. (name "A8" (effects (font (size 1.27 1.27))))
  165. (number "38" (effects (font (size 1.27 1.27))))
  166. )
  167. (pin output line (at 17.78 7.62 180) (length 3.81)
  168. (name "A9" (effects (font (size 1.27 1.27))))
  169. (number "39" (effects (font (size 1.27 1.27))))
  170. )
  171. (pin output line (at 17.78 -5.08 180) (length 3.81)
  172. (name "A14" (effects (font (size 1.27 1.27))))
  173. (number "4" (effects (font (size 1.27 1.27))))
  174. )
  175. (pin output line (at 17.78 5.08 180) (length 3.81)
  176. (name "A10" (effects (font (size 1.27 1.27))))
  177. (number "40" (effects (font (size 1.27 1.27))))
  178. )
  179. (pin output line (at 17.78 -7.62 180) (length 3.81)
  180. (name "A15" (effects (font (size 1.27 1.27))))
  181. (number "5" (effects (font (size 1.27 1.27))))
  182. )
  183. (pin input clock (at -17.78 22.86 0) (length 3.81)
  184. (name "~{CLK}" (effects (font (size 1.27 1.27))))
  185. (number "6" (effects (font (size 1.27 1.27))))
  186. )
  187. (pin bidirectional line (at 17.78 -22.86 180) (length 3.81)
  188. (name "D4" (effects (font (size 1.27 1.27))))
  189. (number "7" (effects (font (size 1.27 1.27))))
  190. )
  191. (pin bidirectional line (at 17.78 -20.32 180) (length 3.81)
  192. (name "D3" (effects (font (size 1.27 1.27))))
  193. (number "8" (effects (font (size 1.27 1.27))))
  194. )
  195. (pin bidirectional line (at 17.78 -25.4 180) (length 3.81)
  196. (name "D5" (effects (font (size 1.27 1.27))))
  197. (number "9" (effects (font (size 1.27 1.27))))
  198. )
  199. )
  200. )
  201. (symbol "Connector_Generic:Conn_02x20_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  202. (property "Reference" "J" (id 0) (at 1.27 25.4 0)
  203. (effects (font (size 1.27 1.27)))
  204. )
  205. (property "Value" "Conn_02x20_Odd_Even" (id 1) (at 1.27 -27.94 0)
  206. (effects (font (size 1.27 1.27)))
  207. )
  208. (property "Footprint" "" (id 2) (at 0 0 0)
  209. (effects (font (size 1.27 1.27)) hide)
  210. )
  211. (property "Datasheet" "~" (id 3) (at 0 0 0)
  212. (effects (font (size 1.27 1.27)) hide)
  213. )
  214. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  215. (effects (font (size 1.27 1.27)) hide)
  216. )
  217. (property "ki_description" "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  218. (effects (font (size 1.27 1.27)) hide)
  219. )
  220. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  221. (effects (font (size 1.27 1.27)) hide)
  222. )
  223. (symbol "Conn_02x20_Odd_Even_1_1"
  224. (rectangle (start -1.27 -25.273) (end 0 -25.527)
  225. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  226. (fill (type none))
  227. )
  228. (rectangle (start -1.27 -22.733) (end 0 -22.987)
  229. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  230. (fill (type none))
  231. )
  232. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  233. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  234. (fill (type none))
  235. )
  236. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  237. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  238. (fill (type none))
  239. )
  240. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  241. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  242. (fill (type none))
  243. )
  244. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  245. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  246. (fill (type none))
  247. )
  248. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  249. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  250. (fill (type none))
  251. )
  252. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  253. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  254. (fill (type none))
  255. )
  256. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  257. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  258. (fill (type none))
  259. )
  260. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  261. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  262. (fill (type none))
  263. )
  264. (rectangle (start -1.27 0.127) (end 0 -0.127)
  265. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  266. (fill (type none))
  267. )
  268. (rectangle (start -1.27 2.667) (end 0 2.413)
  269. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  270. (fill (type none))
  271. )
  272. (rectangle (start -1.27 5.207) (end 0 4.953)
  273. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  274. (fill (type none))
  275. )
  276. (rectangle (start -1.27 7.747) (end 0 7.493)
  277. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  278. (fill (type none))
  279. )
  280. (rectangle (start -1.27 10.287) (end 0 10.033)
  281. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  282. (fill (type none))
  283. )
  284. (rectangle (start -1.27 12.827) (end 0 12.573)
  285. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  286. (fill (type none))
  287. )
  288. (rectangle (start -1.27 15.367) (end 0 15.113)
  289. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  290. (fill (type none))
  291. )
  292. (rectangle (start -1.27 17.907) (end 0 17.653)
  293. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  294. (fill (type none))
  295. )
  296. (rectangle (start -1.27 20.447) (end 0 20.193)
  297. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  298. (fill (type none))
  299. )
  300. (rectangle (start -1.27 22.987) (end 0 22.733)
  301. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  302. (fill (type none))
  303. )
  304. (rectangle (start -1.27 24.13) (end 3.81 -26.67)
  305. (stroke (width 0.254) (type default) (color 0 0 0 0))
  306. (fill (type background))
  307. )
  308. (rectangle (start 3.81 -25.273) (end 2.54 -25.527)
  309. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  310. (fill (type none))
  311. )
  312. (rectangle (start 3.81 -22.733) (end 2.54 -22.987)
  313. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  314. (fill (type none))
  315. )
  316. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  317. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  318. (fill (type none))
  319. )
  320. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  321. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  322. (fill (type none))
  323. )
  324. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  325. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  326. (fill (type none))
  327. )
  328. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  329. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  330. (fill (type none))
  331. )
  332. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  333. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  334. (fill (type none))
  335. )
  336. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  337. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  338. (fill (type none))
  339. )
  340. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  341. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  342. (fill (type none))
  343. )
  344. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  345. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  346. (fill (type none))
  347. )
  348. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  349. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  350. (fill (type none))
  351. )
  352. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  353. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  354. (fill (type none))
  355. )
  356. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  357. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  358. (fill (type none))
  359. )
  360. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  361. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  362. (fill (type none))
  363. )
  364. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  365. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  366. (fill (type none))
  367. )
  368. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  369. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  370. (fill (type none))
  371. )
  372. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  373. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  374. (fill (type none))
  375. )
  376. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  377. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  378. (fill (type none))
  379. )
  380. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  381. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  382. (fill (type none))
  383. )
  384. (rectangle (start 3.81 22.987) (end 2.54 22.733)
  385. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  386. (fill (type none))
  387. )
  388. (pin passive line (at -5.08 22.86 0) (length 3.81)
  389. (name "Pin_1" (effects (font (size 1.27 1.27))))
  390. (number "1" (effects (font (size 1.27 1.27))))
  391. )
  392. (pin passive line (at 7.62 12.7 180) (length 3.81)
  393. (name "Pin_10" (effects (font (size 1.27 1.27))))
  394. (number "10" (effects (font (size 1.27 1.27))))
  395. )
  396. (pin passive line (at -5.08 10.16 0) (length 3.81)
  397. (name "Pin_11" (effects (font (size 1.27 1.27))))
  398. (number "11" (effects (font (size 1.27 1.27))))
  399. )
  400. (pin passive line (at 7.62 10.16 180) (length 3.81)
  401. (name "Pin_12" (effects (font (size 1.27 1.27))))
  402. (number "12" (effects (font (size 1.27 1.27))))
  403. )
  404. (pin passive line (at -5.08 7.62 0) (length 3.81)
  405. (name "Pin_13" (effects (font (size 1.27 1.27))))
  406. (number "13" (effects (font (size 1.27 1.27))))
  407. )
  408. (pin passive line (at 7.62 7.62 180) (length 3.81)
  409. (name "Pin_14" (effects (font (size 1.27 1.27))))
  410. (number "14" (effects (font (size 1.27 1.27))))
  411. )
  412. (pin passive line (at -5.08 5.08 0) (length 3.81)
  413. (name "Pin_15" (effects (font (size 1.27 1.27))))
  414. (number "15" (effects (font (size 1.27 1.27))))
  415. )
  416. (pin passive line (at 7.62 5.08 180) (length 3.81)
  417. (name "Pin_16" (effects (font (size 1.27 1.27))))
  418. (number "16" (effects (font (size 1.27 1.27))))
  419. )
  420. (pin passive line (at -5.08 2.54 0) (length 3.81)
  421. (name "Pin_17" (effects (font (size 1.27 1.27))))
  422. (number "17" (effects (font (size 1.27 1.27))))
  423. )
  424. (pin passive line (at 7.62 2.54 180) (length 3.81)
  425. (name "Pin_18" (effects (font (size 1.27 1.27))))
  426. (number "18" (effects (font (size 1.27 1.27))))
  427. )
  428. (pin passive line (at -5.08 0 0) (length 3.81)
  429. (name "Pin_19" (effects (font (size 1.27 1.27))))
  430. (number "19" (effects (font (size 1.27 1.27))))
  431. )
  432. (pin passive line (at 7.62 22.86 180) (length 3.81)
  433. (name "Pin_2" (effects (font (size 1.27 1.27))))
  434. (number "2" (effects (font (size 1.27 1.27))))
  435. )
  436. (pin passive line (at 7.62 0 180) (length 3.81)
  437. (name "Pin_20" (effects (font (size 1.27 1.27))))
  438. (number "20" (effects (font (size 1.27 1.27))))
  439. )
  440. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  441. (name "Pin_21" (effects (font (size 1.27 1.27))))
  442. (number "21" (effects (font (size 1.27 1.27))))
  443. )
  444. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  445. (name "Pin_22" (effects (font (size 1.27 1.27))))
  446. (number "22" (effects (font (size 1.27 1.27))))
  447. )
  448. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  449. (name "Pin_23" (effects (font (size 1.27 1.27))))
  450. (number "23" (effects (font (size 1.27 1.27))))
  451. )
  452. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  453. (name "Pin_24" (effects (font (size 1.27 1.27))))
  454. (number "24" (effects (font (size 1.27 1.27))))
  455. )
  456. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  457. (name "Pin_25" (effects (font (size 1.27 1.27))))
  458. (number "25" (effects (font (size 1.27 1.27))))
  459. )
  460. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  461. (name "Pin_26" (effects (font (size 1.27 1.27))))
  462. (number "26" (effects (font (size 1.27 1.27))))
  463. )
  464. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  465. (name "Pin_27" (effects (font (size 1.27 1.27))))
  466. (number "27" (effects (font (size 1.27 1.27))))
  467. )
  468. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  469. (name "Pin_28" (effects (font (size 1.27 1.27))))
  470. (number "28" (effects (font (size 1.27 1.27))))
  471. )
  472. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  473. (name "Pin_29" (effects (font (size 1.27 1.27))))
  474. (number "29" (effects (font (size 1.27 1.27))))
  475. )
  476. (pin passive line (at -5.08 20.32 0) (length 3.81)
  477. (name "Pin_3" (effects (font (size 1.27 1.27))))
  478. (number "3" (effects (font (size 1.27 1.27))))
  479. )
  480. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  481. (name "Pin_30" (effects (font (size 1.27 1.27))))
  482. (number "30" (effects (font (size 1.27 1.27))))
  483. )
  484. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  485. (name "Pin_31" (effects (font (size 1.27 1.27))))
  486. (number "31" (effects (font (size 1.27 1.27))))
  487. )
  488. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  489. (name "Pin_32" (effects (font (size 1.27 1.27))))
  490. (number "32" (effects (font (size 1.27 1.27))))
  491. )
  492. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  493. (name "Pin_33" (effects (font (size 1.27 1.27))))
  494. (number "33" (effects (font (size 1.27 1.27))))
  495. )
  496. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  497. (name "Pin_34" (effects (font (size 1.27 1.27))))
  498. (number "34" (effects (font (size 1.27 1.27))))
  499. )
  500. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  501. (name "Pin_35" (effects (font (size 1.27 1.27))))
  502. (number "35" (effects (font (size 1.27 1.27))))
  503. )
  504. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  505. (name "Pin_36" (effects (font (size 1.27 1.27))))
  506. (number "36" (effects (font (size 1.27 1.27))))
  507. )
  508. (pin passive line (at -5.08 -22.86 0) (length 3.81)
  509. (name "Pin_37" (effects (font (size 1.27 1.27))))
  510. (number "37" (effects (font (size 1.27 1.27))))
  511. )
  512. (pin passive line (at 7.62 -22.86 180) (length 3.81)
  513. (name "Pin_38" (effects (font (size 1.27 1.27))))
  514. (number "38" (effects (font (size 1.27 1.27))))
  515. )
  516. (pin passive line (at -5.08 -25.4 0) (length 3.81)
  517. (name "Pin_39" (effects (font (size 1.27 1.27))))
  518. (number "39" (effects (font (size 1.27 1.27))))
  519. )
  520. (pin passive line (at 7.62 20.32 180) (length 3.81)
  521. (name "Pin_4" (effects (font (size 1.27 1.27))))
  522. (number "4" (effects (font (size 1.27 1.27))))
  523. )
  524. (pin passive line (at 7.62 -25.4 180) (length 3.81)
  525. (name "Pin_40" (effects (font (size 1.27 1.27))))
  526. (number "40" (effects (font (size 1.27 1.27))))
  527. )
  528. (pin passive line (at -5.08 17.78 0) (length 3.81)
  529. (name "Pin_5" (effects (font (size 1.27 1.27))))
  530. (number "5" (effects (font (size 1.27 1.27))))
  531. )
  532. (pin passive line (at 7.62 17.78 180) (length 3.81)
  533. (name "Pin_6" (effects (font (size 1.27 1.27))))
  534. (number "6" (effects (font (size 1.27 1.27))))
  535. )
  536. (pin passive line (at -5.08 15.24 0) (length 3.81)
  537. (name "Pin_7" (effects (font (size 1.27 1.27))))
  538. (number "7" (effects (font (size 1.27 1.27))))
  539. )
  540. (pin passive line (at 7.62 15.24 180) (length 3.81)
  541. (name "Pin_8" (effects (font (size 1.27 1.27))))
  542. (number "8" (effects (font (size 1.27 1.27))))
  543. )
  544. (pin passive line (at -5.08 12.7 0) (length 3.81)
  545. (name "Pin_9" (effects (font (size 1.27 1.27))))
  546. (number "9" (effects (font (size 1.27 1.27))))
  547. )
  548. )
  549. )
  550. (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  551. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  552. (effects (font (size 1.27 1.27)) (justify left))
  553. )
  554. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  555. (effects (font (size 1.27 1.27)) (justify left))
  556. )
  557. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  558. (effects (font (size 1.27 1.27)) hide)
  559. )
  560. (property "Datasheet" "~" (id 3) (at 0 0 0)
  561. (effects (font (size 1.27 1.27)) hide)
  562. )
  563. (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
  564. (effects (font (size 1.27 1.27)) hide)
  565. )
  566. (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
  567. (effects (font (size 1.27 1.27)) hide)
  568. )
  569. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  570. (effects (font (size 1.27 1.27)) hide)
  571. )
  572. (symbol "C_0_1"
  573. (polyline
  574. (pts
  575. (xy -2.032 -0.762)
  576. (xy 2.032 -0.762)
  577. )
  578. (stroke (width 0.508) (type default) (color 0 0 0 0))
  579. (fill (type none))
  580. )
  581. (polyline
  582. (pts
  583. (xy -2.032 0.762)
  584. (xy 2.032 0.762)
  585. )
  586. (stroke (width 0.508) (type default) (color 0 0 0 0))
  587. (fill (type none))
  588. )
  589. )
  590. (symbol "C_1_1"
  591. (pin passive line (at 0 3.81 270) (length 2.794)
  592. (name "~" (effects (font (size 1.27 1.27))))
  593. (number "1" (effects (font (size 1.27 1.27))))
  594. )
  595. (pin passive line (at 0 -3.81 90) (length 2.794)
  596. (name "~" (effects (font (size 1.27 1.27))))
  597. (number "2" (effects (font (size 1.27 1.27))))
  598. )
  599. )
  600. )
  601. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  602. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  603. (effects (font (size 1.27 1.27)) (justify left))
  604. )
  605. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  606. (effects (font (size 1.27 1.27)) (justify left))
  607. )
  608. (property "Footprint" "" (id 2) (at 0 0 0)
  609. (effects (font (size 1.27 1.27)) hide)
  610. )
  611. (property "Datasheet" "~" (id 3) (at 0 0 0)
  612. (effects (font (size 1.27 1.27)) hide)
  613. )
  614. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  615. (effects (font (size 1.27 1.27)) hide)
  616. )
  617. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  618. (effects (font (size 1.27 1.27)) hide)
  619. )
  620. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  621. (effects (font (size 1.27 1.27)) hide)
  622. )
  623. (symbol "C_Small_0_1"
  624. (polyline
  625. (pts
  626. (xy -1.524 -0.508)
  627. (xy 1.524 -0.508)
  628. )
  629. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  630. (fill (type none))
  631. )
  632. (polyline
  633. (pts
  634. (xy -1.524 0.508)
  635. (xy 1.524 0.508)
  636. )
  637. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  638. (fill (type none))
  639. )
  640. )
  641. (symbol "C_Small_1_1"
  642. (pin passive line (at 0 2.54 270) (length 2.032)
  643. (name "~" (effects (font (size 1.27 1.27))))
  644. (number "1" (effects (font (size 1.27 1.27))))
  645. )
  646. (pin passive line (at 0 -2.54 90) (length 2.032)
  647. (name "~" (effects (font (size 1.27 1.27))))
  648. (number "2" (effects (font (size 1.27 1.27))))
  649. )
  650. )
  651. )
  652. (symbol "Device:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  653. (property "Reference" "Y" (id 0) (at 3.175 5.08 0)
  654. (effects (font (size 1.27 1.27)) (justify left))
  655. )
  656. (property "Value" "Crystal_GND24" (id 1) (at 3.175 3.175 0)
  657. (effects (font (size 1.27 1.27)) (justify left))
  658. )
  659. (property "Footprint" "" (id 2) (at 0 0 0)
  660. (effects (font (size 1.27 1.27)) hide)
  661. )
  662. (property "Datasheet" "~" (id 3) (at 0 0 0)
  663. (effects (font (size 1.27 1.27)) hide)
  664. )
  665. (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
  666. (effects (font (size 1.27 1.27)) hide)
  667. )
  668. (property "ki_description" "Four pin crystal, GND on pins 2 and 4" (id 5) (at 0 0 0)
  669. (effects (font (size 1.27 1.27)) hide)
  670. )
  671. (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
  672. (effects (font (size 1.27 1.27)) hide)
  673. )
  674. (symbol "Crystal_GND24_0_1"
  675. (rectangle (start -1.143 2.54) (end 1.143 -2.54)
  676. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  677. (fill (type none))
  678. )
  679. (polyline
  680. (pts
  681. (xy -2.54 0)
  682. (xy -2.032 0)
  683. )
  684. (stroke (width 0) (type default) (color 0 0 0 0))
  685. (fill (type none))
  686. )
  687. (polyline
  688. (pts
  689. (xy -2.032 -1.27)
  690. (xy -2.032 1.27)
  691. )
  692. (stroke (width 0.508) (type default) (color 0 0 0 0))
  693. (fill (type none))
  694. )
  695. (polyline
  696. (pts
  697. (xy 0 -3.81)
  698. (xy 0 -3.556)
  699. )
  700. (stroke (width 0) (type default) (color 0 0 0 0))
  701. (fill (type none))
  702. )
  703. (polyline
  704. (pts
  705. (xy 0 3.556)
  706. (xy 0 3.81)
  707. )
  708. (stroke (width 0) (type default) (color 0 0 0 0))
  709. (fill (type none))
  710. )
  711. (polyline
  712. (pts
  713. (xy 2.032 -1.27)
  714. (xy 2.032 1.27)
  715. )
  716. (stroke (width 0.508) (type default) (color 0 0 0 0))
  717. (fill (type none))
  718. )
  719. (polyline
  720. (pts
  721. (xy 2.032 0)
  722. (xy 2.54 0)
  723. )
  724. (stroke (width 0) (type default) (color 0 0 0 0))
  725. (fill (type none))
  726. )
  727. (polyline
  728. (pts
  729. (xy -2.54 -2.286)
  730. (xy -2.54 -3.556)
  731. (xy 2.54 -3.556)
  732. (xy 2.54 -2.286)
  733. )
  734. (stroke (width 0) (type default) (color 0 0 0 0))
  735. (fill (type none))
  736. )
  737. (polyline
  738. (pts
  739. (xy -2.54 2.286)
  740. (xy -2.54 3.556)
  741. (xy 2.54 3.556)
  742. (xy 2.54 2.286)
  743. )
  744. (stroke (width 0) (type default) (color 0 0 0 0))
  745. (fill (type none))
  746. )
  747. )
  748. (symbol "Crystal_GND24_1_1"
  749. (pin passive line (at -3.81 0 0) (length 1.27)
  750. (name "1" (effects (font (size 1.27 1.27))))
  751. (number "1" (effects (font (size 1.27 1.27))))
  752. )
  753. (pin passive line (at 0 5.08 270) (length 1.27)
  754. (name "2" (effects (font (size 1.27 1.27))))
  755. (number "2" (effects (font (size 1.27 1.27))))
  756. )
  757. (pin passive line (at 3.81 0 180) (length 1.27)
  758. (name "3" (effects (font (size 1.27 1.27))))
  759. (number "3" (effects (font (size 1.27 1.27))))
  760. )
  761. (pin passive line (at 0 -5.08 90) (length 1.27)
  762. (name "4" (effects (font (size 1.27 1.27))))
  763. (number "4" (effects (font (size 1.27 1.27))))
  764. )
  765. )
  766. )
  767. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  768. (property "Reference" "D" (id 0) (at 0 2.54 0)
  769. (effects (font (size 1.27 1.27)))
  770. )
  771. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  772. (effects (font (size 1.27 1.27)))
  773. )
  774. (property "Footprint" "" (id 2) (at 0 0 0)
  775. (effects (font (size 1.27 1.27)) hide)
  776. )
  777. (property "Datasheet" "~" (id 3) (at 0 0 0)
  778. (effects (font (size 1.27 1.27)) hide)
  779. )
  780. (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
  781. (effects (font (size 1.27 1.27)) hide)
  782. )
  783. (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
  784. (effects (font (size 1.27 1.27)) hide)
  785. )
  786. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  787. (effects (font (size 1.27 1.27)) hide)
  788. )
  789. (symbol "LED_0_1"
  790. (polyline
  791. (pts
  792. (xy -1.27 -1.27)
  793. (xy -1.27 1.27)
  794. )
  795. (stroke (width 0.254) (type default) (color 0 0 0 0))
  796. (fill (type none))
  797. )
  798. (polyline
  799. (pts
  800. (xy -1.27 0)
  801. (xy 1.27 0)
  802. )
  803. (stroke (width 0) (type default) (color 0 0 0 0))
  804. (fill (type none))
  805. )
  806. (polyline
  807. (pts
  808. (xy 1.27 -1.27)
  809. (xy 1.27 1.27)
  810. (xy -1.27 0)
  811. (xy 1.27 -1.27)
  812. )
  813. (stroke (width 0.254) (type default) (color 0 0 0 0))
  814. (fill (type none))
  815. )
  816. (polyline
  817. (pts
  818. (xy -3.048 -0.762)
  819. (xy -4.572 -2.286)
  820. (xy -3.81 -2.286)
  821. (xy -4.572 -2.286)
  822. (xy -4.572 -1.524)
  823. )
  824. (stroke (width 0) (type default) (color 0 0 0 0))
  825. (fill (type none))
  826. )
  827. (polyline
  828. (pts
  829. (xy -1.778 -0.762)
  830. (xy -3.302 -2.286)
  831. (xy -2.54 -2.286)
  832. (xy -3.302 -2.286)
  833. (xy -3.302 -1.524)
  834. )
  835. (stroke (width 0) (type default) (color 0 0 0 0))
  836. (fill (type none))
  837. )
  838. )
  839. (symbol "LED_1_1"
  840. (pin passive line (at -3.81 0 0) (length 2.54)
  841. (name "K" (effects (font (size 1.27 1.27))))
  842. (number "1" (effects (font (size 1.27 1.27))))
  843. )
  844. (pin passive line (at 3.81 0 180) (length 2.54)
  845. (name "A" (effects (font (size 1.27 1.27))))
  846. (number "2" (effects (font (size 1.27 1.27))))
  847. )
  848. )
  849. )
  850. (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  851. (property "Reference" "F" (id 0) (at -2.54 0 90)
  852. (effects (font (size 1.27 1.27)))
  853. )
  854. (property "Value" "Polyfuse" (id 1) (at 2.54 0 90)
  855. (effects (font (size 1.27 1.27)))
  856. )
  857. (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
  858. (effects (font (size 1.27 1.27)) (justify left) hide)
  859. )
  860. (property "Datasheet" "~" (id 3) (at 0 0 0)
  861. (effects (font (size 1.27 1.27)) hide)
  862. )
  863. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
  864. (effects (font (size 1.27 1.27)) hide)
  865. )
  866. (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (id 5) (at 0 0 0)
  867. (effects (font (size 1.27 1.27)) hide)
  868. )
  869. (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
  870. (effects (font (size 1.27 1.27)) hide)
  871. )
  872. (symbol "Polyfuse_0_1"
  873. (rectangle (start -0.762 2.54) (end 0.762 -2.54)
  874. (stroke (width 0.254) (type default) (color 0 0 0 0))
  875. (fill (type none))
  876. )
  877. (polyline
  878. (pts
  879. (xy 0 2.54)
  880. (xy 0 -2.54)
  881. )
  882. (stroke (width 0) (type default) (color 0 0 0 0))
  883. (fill (type none))
  884. )
  885. (polyline
  886. (pts
  887. (xy -1.524 2.54)
  888. (xy -1.524 1.524)
  889. (xy 1.524 -1.524)
  890. (xy 1.524 -2.54)
  891. )
  892. (stroke (width 0) (type default) (color 0 0 0 0))
  893. (fill (type none))
  894. )
  895. )
  896. (symbol "Polyfuse_1_1"
  897. (pin passive line (at 0 3.81 270) (length 1.27)
  898. (name "~" (effects (font (size 1.27 1.27))))
  899. (number "1" (effects (font (size 1.27 1.27))))
  900. )
  901. (pin passive line (at 0 -3.81 90) (length 1.27)
  902. (name "~" (effects (font (size 1.27 1.27))))
  903. (number "2" (effects (font (size 1.27 1.27))))
  904. )
  905. )
  906. )
  907. (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  908. (property "Reference" "R" (id 0) (at 2.032 0 90)
  909. (effects (font (size 1.27 1.27)))
  910. )
  911. (property "Value" "R" (id 1) (at 0 0 90)
  912. (effects (font (size 1.27 1.27)))
  913. )
  914. (property "Footprint" "" (id 2) (at -1.778 0 90)
  915. (effects (font (size 1.27 1.27)) hide)
  916. )
  917. (property "Datasheet" "~" (id 3) (at 0 0 0)
  918. (effects (font (size 1.27 1.27)) hide)
  919. )
  920. (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
  921. (effects (font (size 1.27 1.27)) hide)
  922. )
  923. (property "ki_description" "Resistor" (id 5) (at 0 0 0)
  924. (effects (font (size 1.27 1.27)) hide)
  925. )
  926. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  927. (effects (font (size 1.27 1.27)) hide)
  928. )
  929. (symbol "R_0_1"
  930. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  931. (stroke (width 0.254) (type default) (color 0 0 0 0))
  932. (fill (type none))
  933. )
  934. )
  935. (symbol "R_1_1"
  936. (pin passive line (at 0 3.81 270) (length 1.27)
  937. (name "~" (effects (font (size 1.27 1.27))))
  938. (number "1" (effects (font (size 1.27 1.27))))
  939. )
  940. (pin passive line (at 0 -3.81 90) (length 1.27)
  941. (name "~" (effects (font (size 1.27 1.27))))
  942. (number "2" (effects (font (size 1.27 1.27))))
  943. )
  944. )
  945. )
  946. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  947. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  948. (effects (font (size 1.27 1.27)) (justify left))
  949. )
  950. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  951. (effects (font (size 1.27 1.27)) (justify left))
  952. )
  953. (property "Footprint" "" (id 2) (at 0 0 0)
  954. (effects (font (size 1.27 1.27)) hide)
  955. )
  956. (property "Datasheet" "~" (id 3) (at 0 0 0)
  957. (effects (font (size 1.27 1.27)) hide)
  958. )
  959. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  960. (effects (font (size 1.27 1.27)) hide)
  961. )
  962. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  963. (effects (font (size 1.27 1.27)) hide)
  964. )
  965. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  966. (effects (font (size 1.27 1.27)) hide)
  967. )
  968. (symbol "R_Small_0_1"
  969. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  970. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  971. (fill (type none))
  972. )
  973. )
  974. (symbol "R_Small_1_1"
  975. (pin passive line (at 0 2.54 270) (length 0.762)
  976. (name "~" (effects (font (size 1.27 1.27))))
  977. (number "1" (effects (font (size 1.27 1.27))))
  978. )
  979. (pin passive line (at 0 -2.54 90) (length 0.762)
  980. (name "~" (effects (font (size 1.27 1.27))))
  981. (number "2" (effects (font (size 1.27 1.27))))
  982. )
  983. )
  984. )
  985. (symbol "Power_Protection:USBLC6-2SC6" (pin_names hide) (in_bom yes) (on_board yes)
  986. (property "Reference" "U" (id 0) (at 2.54 8.89 0)
  987. (effects (font (size 1.27 1.27)) (justify left))
  988. )
  989. (property "Value" "USBLC6-2SC6" (id 1) (at 2.54 -8.89 0)
  990. (effects (font (size 1.27 1.27)) (justify left))
  991. )
  992. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 0 -12.7 0)
  993. (effects (font (size 1.27 1.27)) hide)
  994. )
  995. (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (id 3) (at 5.08 8.89 0)
  996. (effects (font (size 1.27 1.27)) hide)
  997. )
  998. (property "ki_keywords" "usb ethernet video" (id 4) (at 0 0 0)
  999. (effects (font (size 1.27 1.27)) hide)
  1000. )
  1001. (property "ki_description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6" (id 5) (at 0 0 0)
  1002. (effects (font (size 1.27 1.27)) hide)
  1003. )
  1004. (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
  1005. (effects (font (size 1.27 1.27)) hide)
  1006. )
  1007. (symbol "USBLC6-2SC6_0_1"
  1008. (rectangle (start -7.62 -7.62) (end 7.62 7.62)
  1009. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1010. (fill (type background))
  1011. )
  1012. (circle (center -5.08 0) (radius 0.254)
  1013. (stroke (width 0) (type default) (color 0 0 0 0))
  1014. (fill (type outline))
  1015. )
  1016. (circle (center -2.54 0) (radius 0.254)
  1017. (stroke (width 0) (type default) (color 0 0 0 0))
  1018. (fill (type outline))
  1019. )
  1020. (rectangle (start -2.54 6.35) (end 2.54 -6.35)
  1021. (stroke (width 0) (type default) (color 0 0 0 0))
  1022. (fill (type none))
  1023. )
  1024. (circle (center 0 -6.35) (radius 0.254)
  1025. (stroke (width 0) (type default) (color 0 0 0 0))
  1026. (fill (type outline))
  1027. )
  1028. (polyline
  1029. (pts
  1030. (xy -5.08 -2.54)
  1031. (xy -7.62 -2.54)
  1032. )
  1033. (stroke (width 0) (type default) (color 0 0 0 0))
  1034. (fill (type none))
  1035. )
  1036. (polyline
  1037. (pts
  1038. (xy -5.08 0)
  1039. (xy -5.08 -2.54)
  1040. )
  1041. (stroke (width 0) (type default) (color 0 0 0 0))
  1042. (fill (type none))
  1043. )
  1044. (polyline
  1045. (pts
  1046. (xy -5.08 2.54)
  1047. (xy -7.62 2.54)
  1048. )
  1049. (stroke (width 0) (type default) (color 0 0 0 0))
  1050. (fill (type none))
  1051. )
  1052. (polyline
  1053. (pts
  1054. (xy -1.524 -2.794)
  1055. (xy -3.556 -2.794)
  1056. )
  1057. (stroke (width 0) (type default) (color 0 0 0 0))
  1058. (fill (type none))
  1059. )
  1060. (polyline
  1061. (pts
  1062. (xy -1.524 4.826)
  1063. (xy -3.556 4.826)
  1064. )
  1065. (stroke (width 0) (type default) (color 0 0 0 0))
  1066. (fill (type none))
  1067. )
  1068. (polyline
  1069. (pts
  1070. (xy 0 -7.62)
  1071. (xy 0 -6.35)
  1072. )
  1073. (stroke (width 0) (type default) (color 0 0 0 0))
  1074. (fill (type none))
  1075. )
  1076. (polyline
  1077. (pts
  1078. (xy 0 -6.35)
  1079. (xy 0 1.27)
  1080. )
  1081. (stroke (width 0) (type default) (color 0 0 0 0))
  1082. (fill (type none))
  1083. )
  1084. (polyline
  1085. (pts
  1086. (xy 0 1.27)
  1087. (xy 0 6.35)
  1088. )
  1089. (stroke (width 0) (type default) (color 0 0 0 0))
  1090. (fill (type none))
  1091. )
  1092. (polyline
  1093. (pts
  1094. (xy 0 6.35)
  1095. (xy 0 7.62)
  1096. )
  1097. (stroke (width 0) (type default) (color 0 0 0 0))
  1098. (fill (type none))
  1099. )
  1100. (polyline
  1101. (pts
  1102. (xy 1.524 -2.794)
  1103. (xy 3.556 -2.794)
  1104. )
  1105. (stroke (width 0) (type default) (color 0 0 0 0))
  1106. (fill (type none))
  1107. )
  1108. (polyline
  1109. (pts
  1110. (xy 1.524 4.826)
  1111. (xy 3.556 4.826)
  1112. )
  1113. (stroke (width 0) (type default) (color 0 0 0 0))
  1114. (fill (type none))
  1115. )
  1116. (polyline
  1117. (pts
  1118. (xy 5.08 -2.54)
  1119. (xy 7.62 -2.54)
  1120. )
  1121. (stroke (width 0) (type default) (color 0 0 0 0))
  1122. (fill (type none))
  1123. )
  1124. (polyline
  1125. (pts
  1126. (xy 5.08 0)
  1127. (xy 5.08 -2.54)
  1128. )
  1129. (stroke (width 0) (type default) (color 0 0 0 0))
  1130. (fill (type none))
  1131. )
  1132. (polyline
  1133. (pts
  1134. (xy 5.08 2.54)
  1135. (xy 7.62 2.54)
  1136. )
  1137. (stroke (width 0) (type default) (color 0 0 0 0))
  1138. (fill (type none))
  1139. )
  1140. (polyline
  1141. (pts
  1142. (xy -2.54 0)
  1143. (xy -5.08 0)
  1144. (xy -5.08 2.54)
  1145. )
  1146. (stroke (width 0) (type default) (color 0 0 0 0))
  1147. (fill (type none))
  1148. )
  1149. (polyline
  1150. (pts
  1151. (xy 2.54 0)
  1152. (xy 5.08 0)
  1153. (xy 5.08 2.54)
  1154. )
  1155. (stroke (width 0) (type default) (color 0 0 0 0))
  1156. (fill (type none))
  1157. )
  1158. (polyline
  1159. (pts
  1160. (xy -3.556 -4.826)
  1161. (xy -1.524 -4.826)
  1162. (xy -2.54 -2.794)
  1163. (xy -3.556 -4.826)
  1164. )
  1165. (stroke (width 0) (type default) (color 0 0 0 0))
  1166. (fill (type none))
  1167. )
  1168. (polyline
  1169. (pts
  1170. (xy -3.556 2.794)
  1171. (xy -1.524 2.794)
  1172. (xy -2.54 4.826)
  1173. (xy -3.556 2.794)
  1174. )
  1175. (stroke (width 0) (type default) (color 0 0 0 0))
  1176. (fill (type none))
  1177. )
  1178. (polyline
  1179. (pts
  1180. (xy -1.016 -1.016)
  1181. (xy 1.016 -1.016)
  1182. (xy 0 1.016)
  1183. (xy -1.016 -1.016)
  1184. )
  1185. (stroke (width 0) (type default) (color 0 0 0 0))
  1186. (fill (type none))
  1187. )
  1188. (polyline
  1189. (pts
  1190. (xy 1.016 1.016)
  1191. (xy 0.762 1.016)
  1192. (xy -1.016 1.016)
  1193. (xy -1.016 0.508)
  1194. )
  1195. (stroke (width 0) (type default) (color 0 0 0 0))
  1196. (fill (type none))
  1197. )
  1198. (polyline
  1199. (pts
  1200. (xy 3.556 -4.826)
  1201. (xy 1.524 -4.826)
  1202. (xy 2.54 -2.794)
  1203. (xy 3.556 -4.826)
  1204. )
  1205. (stroke (width 0) (type default) (color 0 0 0 0))
  1206. (fill (type none))
  1207. )
  1208. (polyline
  1209. (pts
  1210. (xy 3.556 2.794)
  1211. (xy 1.524 2.794)
  1212. (xy 2.54 4.826)
  1213. (xy 3.556 2.794)
  1214. )
  1215. (stroke (width 0) (type default) (color 0 0 0 0))
  1216. (fill (type none))
  1217. )
  1218. (circle (center 0 6.35) (radius 0.254)
  1219. (stroke (width 0) (type default) (color 0 0 0 0))
  1220. (fill (type outline))
  1221. )
  1222. (circle (center 2.54 0) (radius 0.254)
  1223. (stroke (width 0) (type default) (color 0 0 0 0))
  1224. (fill (type outline))
  1225. )
  1226. (circle (center 5.08 0) (radius 0.254)
  1227. (stroke (width 0) (type default) (color 0 0 0 0))
  1228. (fill (type outline))
  1229. )
  1230. )
  1231. (symbol "USBLC6-2SC6_1_1"
  1232. (pin passive line (at -10.16 -2.54 0) (length 2.54)
  1233. (name "I/O1" (effects (font (size 1.27 1.27))))
  1234. (number "1" (effects (font (size 1.27 1.27))))
  1235. )
  1236. (pin passive line (at 0 -10.16 90) (length 2.54)
  1237. (name "GND" (effects (font (size 1.27 1.27))))
  1238. (number "2" (effects (font (size 1.27 1.27))))
  1239. )
  1240. (pin passive line (at 10.16 -2.54 180) (length 2.54)
  1241. (name "I/O2" (effects (font (size 1.27 1.27))))
  1242. (number "3" (effects (font (size 1.27 1.27))))
  1243. )
  1244. (pin passive line (at 10.16 2.54 180) (length 2.54)
  1245. (name "I/O2" (effects (font (size 1.27 1.27))))
  1246. (number "4" (effects (font (size 1.27 1.27))))
  1247. )
  1248. (pin passive line (at 0 10.16 270) (length 2.54)
  1249. (name "VBUS" (effects (font (size 1.27 1.27))))
  1250. (number "5" (effects (font (size 1.27 1.27))))
  1251. )
  1252. (pin passive line (at -10.16 2.54 0) (length 2.54)
  1253. (name "I/O1" (effects (font (size 1.27 1.27))))
  1254. (number "6" (effects (font (size 1.27 1.27))))
  1255. )
  1256. )
  1257. )
  1258. (symbol "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1259. (property "Reference" "U" (id 0) (at -3.81 3.175 0)
  1260. (effects (font (size 1.27 1.27)))
  1261. )
  1262. (property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0)
  1263. (effects (font (size 1.27 1.27)) (justify left))
  1264. )
  1265. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
  1266. (effects (font (size 1.27 1.27)) hide)
  1267. )
  1268. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
  1269. (effects (font (size 1.27 1.27)) hide)
  1270. )
  1271. (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
  1272. (effects (font (size 1.27 1.27)) hide)
  1273. )
  1274. (property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
  1275. (effects (font (size 1.27 1.27)) hide)
  1276. )
  1277. (property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
  1278. (effects (font (size 1.27 1.27)) hide)
  1279. )
  1280. (symbol "AMS1117-3.3_0_1"
  1281. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  1282. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1283. (fill (type background))
  1284. )
  1285. )
  1286. (symbol "AMS1117-3.3_1_1"
  1287. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1288. (name "GND" (effects (font (size 1.27 1.27))))
  1289. (number "1" (effects (font (size 1.27 1.27))))
  1290. )
  1291. (pin power_out line (at 7.62 0 180) (length 2.54)
  1292. (name "VO" (effects (font (size 1.27 1.27))))
  1293. (number "2" (effects (font (size 1.27 1.27))))
  1294. )
  1295. (pin power_in line (at -7.62 0 0) (length 2.54)
  1296. (name "VI" (effects (font (size 1.27 1.27))))
  1297. (number "3" (effects (font (size 1.27 1.27))))
  1298. )
  1299. )
  1300. )
  1301. (symbol "Z80ICE:ATF1508ASL-25AU100" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1302. (property "Reference" "U" (id 0) (at -17.78 71.12 0)
  1303. (effects (font (size 1.27 1.27)) (justify left bottom))
  1304. )
  1305. (property "Value" "ATF1508ASL-25AU100" (id 1) (at -17.145 -28.575 0)
  1306. (effects (font (size 1.27 1.27)) (justify left bottom))
  1307. )
  1308. (property "Footprint" "Package_LCC:PLCC-84_SMD-Socket" (id 2) (at 1.905 29.21 90)
  1309. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  1310. )
  1311. (property "Datasheet" "" (id 3) (at 0 0 0)
  1312. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  1313. )
  1314. (property "MANUFACTURER" "Microchip" (id 4) (at -3.81 3.175 0)
  1315. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  1316. )
  1317. (symbol "ATF1508ASL-25AU100_0_0"
  1318. (rectangle (start -17.78 71.12) (end 17.78 -26.035)
  1319. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1320. (fill (type background))
  1321. )
  1322. (pin bidirectional line (at -22.86 63.5 0) (length 5.08)
  1323. (name "I/1/GCLR" (effects (font (size 1.016 1.016))))
  1324. (number "1" (effects (font (size 1.016 1.016))))
  1325. )
  1326. (pin bidirectional line (at -22.86 45.72 0) (length 5.08)
  1327. (name "I/O/10" (effects (font (size 1.016 1.016))))
  1328. (number "10" (effects (font (size 1.016 1.016))))
  1329. )
  1330. (pin bidirectional line (at -22.86 43.18 0) (length 5.08)
  1331. (name "I/O/11" (effects (font (size 1.016 1.016))))
  1332. (number "11" (effects (font (size 1.016 1.016))))
  1333. )
  1334. (pin bidirectional line (at -22.86 40.64 0) (length 5.08)
  1335. (name "I/O/12/PD1" (effects (font (size 1.016 1.016))))
  1336. (number "12" (effects (font (size 1.016 1.016))))
  1337. )
  1338. (pin power_in line (at 0 76.2 270) (length 5.08)
  1339. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1340. (number "13" (effects (font (size 1.016 1.016))))
  1341. )
  1342. (pin bidirectional line (at -22.86 38.1 0) (length 5.08)
  1343. (name "I/O/14/TDI" (effects (font (size 1.016 1.016))))
  1344. (number "14" (effects (font (size 1.016 1.016))))
  1345. )
  1346. (pin bidirectional line (at -22.86 35.56 0) (length 5.08)
  1347. (name "I/O/15" (effects (font (size 1.016 1.016))))
  1348. (number "15" (effects (font (size 1.016 1.016))))
  1349. )
  1350. (pin bidirectional line (at -22.86 33.02 0) (length 5.08)
  1351. (name "I/O/16" (effects (font (size 1.016 1.016))))
  1352. (number "16" (effects (font (size 1.016 1.016))))
  1353. )
  1354. (pin bidirectional line (at -22.86 30.48 0) (length 5.08)
  1355. (name "I/O/17" (effects (font (size 1.016 1.016))))
  1356. (number "17" (effects (font (size 1.016 1.016))))
  1357. )
  1358. (pin bidirectional line (at -22.86 27.94 0) (length 5.08)
  1359. (name "I/O/18" (effects (font (size 1.016 1.016))))
  1360. (number "18" (effects (font (size 1.016 1.016))))
  1361. )
  1362. (pin power_in line (at -6.985 -31.115 90) (length 5.08)
  1363. (name "GND" (effects (font (size 1.016 1.016))))
  1364. (number "19" (effects (font (size 1.016 1.016))))
  1365. )
  1366. (pin bidirectional line (at -22.86 60.96 0) (length 5.08)
  1367. (name "I/2/OE2/GCLK2" (effects (font (size 1.016 1.016))))
  1368. (number "2" (effects (font (size 1.016 1.016))))
  1369. )
  1370. (pin bidirectional line (at -22.86 25.4 0) (length 5.08)
  1371. (name "I/O/20" (effects (font (size 1.016 1.016))))
  1372. (number "20" (effects (font (size 1.016 1.016))))
  1373. )
  1374. (pin bidirectional line (at -22.86 22.86 0) (length 5.08)
  1375. (name "I/O/21" (effects (font (size 1.016 1.016))))
  1376. (number "21" (effects (font (size 1.016 1.016))))
  1377. )
  1378. (pin bidirectional line (at -22.86 20.32 0) (length 5.08)
  1379. (name "I/O/22" (effects (font (size 1.016 1.016))))
  1380. (number "22" (effects (font (size 1.016 1.016))))
  1381. )
  1382. (pin bidirectional line (at -22.86 17.78 0) (length 5.08)
  1383. (name "I/O/23/TMS" (effects (font (size 1.016 1.016))))
  1384. (number "23" (effects (font (size 1.016 1.016))))
  1385. )
  1386. (pin bidirectional line (at -22.86 15.24 0) (length 5.08)
  1387. (name "I/O/24" (effects (font (size 1.016 1.016))))
  1388. (number "24" (effects (font (size 1.016 1.016))))
  1389. )
  1390. (pin bidirectional line (at -22.86 12.7 0) (length 5.08)
  1391. (name "I/O/25" (effects (font (size 1.016 1.016))))
  1392. (number "25" (effects (font (size 1.016 1.016))))
  1393. )
  1394. (pin power_in line (at -7.62 76.2 270) (length 5.08)
  1395. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1396. (number "26" (effects (font (size 1.016 1.016))))
  1397. )
  1398. (pin bidirectional line (at -22.86 10.16 0) (length 5.08)
  1399. (name "I/O/27" (effects (font (size 1.016 1.016))))
  1400. (number "27" (effects (font (size 1.016 1.016))))
  1401. )
  1402. (pin bidirectional line (at -22.86 7.62 0) (length 5.08)
  1403. (name "I/O/28" (effects (font (size 1.016 1.016))))
  1404. (number "28" (effects (font (size 1.016 1.016))))
  1405. )
  1406. (pin bidirectional line (at -22.86 5.08 0) (length 5.08)
  1407. (name "I/O/29" (effects (font (size 1.016 1.016))))
  1408. (number "29" (effects (font (size 1.016 1.016))))
  1409. )
  1410. (pin power_in line (at 8.89 76.2 270) (length 5.08)
  1411. (name "VCCINT" (effects (font (size 1.016 1.016))))
  1412. (number "3" (effects (font (size 1.016 1.016))))
  1413. )
  1414. (pin bidirectional line (at -22.86 2.54 0) (length 5.08)
  1415. (name "I/O/30" (effects (font (size 1.016 1.016))))
  1416. (number "30" (effects (font (size 1.016 1.016))))
  1417. )
  1418. (pin bidirectional line (at -22.86 0 0) (length 5.08)
  1419. (name "I/O/31" (effects (font (size 1.016 1.016))))
  1420. (number "31" (effects (font (size 1.016 1.016))))
  1421. )
  1422. (pin power_in line (at -5.08 -31.115 90) (length 5.08)
  1423. (name "GND" (effects (font (size 1.016 1.016))))
  1424. (number "32" (effects (font (size 1.016 1.016))))
  1425. )
  1426. (pin bidirectional line (at -22.86 -2.54 0) (length 5.08)
  1427. (name "I/O/33" (effects (font (size 1.016 1.016))))
  1428. (number "33" (effects (font (size 1.016 1.016))))
  1429. )
  1430. (pin bidirectional line (at -22.86 -5.08 0) (length 5.08)
  1431. (name "I/O/34" (effects (font (size 1.016 1.016))))
  1432. (number "34" (effects (font (size 1.016 1.016))))
  1433. )
  1434. (pin bidirectional line (at -22.86 -7.62 0) (length 5.08)
  1435. (name "I/O/35" (effects (font (size 1.016 1.016))))
  1436. (number "35" (effects (font (size 1.016 1.016))))
  1437. )
  1438. (pin bidirectional line (at -22.86 -10.16 0) (length 5.08)
  1439. (name "I/O/36" (effects (font (size 1.016 1.016))))
  1440. (number "36" (effects (font (size 1.016 1.016))))
  1441. )
  1442. (pin bidirectional line (at -22.86 -12.7 0) (length 5.08)
  1443. (name "I/O/37" (effects (font (size 1.016 1.016))))
  1444. (number "37" (effects (font (size 1.016 1.016))))
  1445. )
  1446. (pin power_in line (at -5.715 76.2 270) (length 5.08)
  1447. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1448. (number "38" (effects (font (size 1.016 1.016))))
  1449. )
  1450. (pin bidirectional line (at -22.86 -15.24 0) (length 5.08)
  1451. (name "I/O/39" (effects (font (size 1.016 1.016))))
  1452. (number "39" (effects (font (size 1.016 1.016))))
  1453. )
  1454. (pin bidirectional line (at -22.86 58.42 0) (length 5.08)
  1455. (name "I/O/4" (effects (font (size 1.016 1.016))))
  1456. (number "4" (effects (font (size 1.016 1.016))))
  1457. )
  1458. (pin bidirectional line (at -22.86 -17.78 0) (length 5.08)
  1459. (name "I/O/40" (effects (font (size 1.016 1.016))))
  1460. (number "40" (effects (font (size 1.016 1.016))))
  1461. )
  1462. (pin bidirectional line (at -22.86 -20.32 0) (length 5.08)
  1463. (name "I/O/41" (effects (font (size 1.016 1.016))))
  1464. (number "41" (effects (font (size 1.016 1.016))))
  1465. )
  1466. (pin power_in line (at -3.175 -31.115 90) (length 5.08)
  1467. (name "GND" (effects (font (size 1.016 1.016))))
  1468. (number "42" (effects (font (size 1.016 1.016))))
  1469. )
  1470. (pin power_in line (at 6.985 76.2 270) (length 5.08)
  1471. (name "VCCINT" (effects (font (size 1.016 1.016))))
  1472. (number "43" (effects (font (size 1.016 1.016))))
  1473. )
  1474. (pin bidirectional line (at 22.86 -20.32 180) (length 5.08)
  1475. (name "I/O/44" (effects (font (size 1.016 1.016))))
  1476. (number "44" (effects (font (size 1.016 1.016))))
  1477. )
  1478. (pin bidirectional line (at 22.86 -17.78 180) (length 5.08)
  1479. (name "I/O/45/PD2" (effects (font (size 1.016 1.016))))
  1480. (number "45" (effects (font (size 1.016 1.016))))
  1481. )
  1482. (pin bidirectional line (at 22.86 -15.24 180) (length 5.08)
  1483. (name "I/O/46" (effects (font (size 1.016 1.016))))
  1484. (number "46" (effects (font (size 1.016 1.016))))
  1485. )
  1486. (pin power_in line (at 6.35 -31.115 90) (length 5.08)
  1487. (name "GND" (effects (font (size 1.016 1.016))))
  1488. (number "47" (effects (font (size 1.016 1.016))))
  1489. )
  1490. (pin bidirectional line (at 22.86 -12.7 180) (length 5.08)
  1491. (name "I/O/48" (effects (font (size 1.016 1.016))))
  1492. (number "48" (effects (font (size 1.016 1.016))))
  1493. )
  1494. (pin bidirectional line (at 22.86 -10.16 180) (length 5.08)
  1495. (name "I/O/49" (effects (font (size 1.016 1.016))))
  1496. (number "49" (effects (font (size 1.016 1.016))))
  1497. )
  1498. (pin bidirectional line (at -22.86 55.88 0) (length 5.08)
  1499. (name "I/O/5" (effects (font (size 1.016 1.016))))
  1500. (number "5" (effects (font (size 1.016 1.016))))
  1501. )
  1502. (pin bidirectional line (at 22.86 -7.62 180) (length 5.08)
  1503. (name "I/O/50" (effects (font (size 1.016 1.016))))
  1504. (number "50" (effects (font (size 1.016 1.016))))
  1505. )
  1506. (pin bidirectional line (at 22.86 -5.08 180) (length 5.08)
  1507. (name "I/O/51" (effects (font (size 1.016 1.016))))
  1508. (number "51" (effects (font (size 1.016 1.016))))
  1509. )
  1510. (pin bidirectional line (at 22.86 -2.54 180) (length 5.08)
  1511. (name "I/O/52" (effects (font (size 1.016 1.016))))
  1512. (number "52" (effects (font (size 1.016 1.016))))
  1513. )
  1514. (pin power_in line (at -3.81 76.2 270) (length 5.08)
  1515. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1516. (number "53" (effects (font (size 1.016 1.016))))
  1517. )
  1518. (pin bidirectional line (at 22.86 0 180) (length 5.08)
  1519. (name "I/O/54" (effects (font (size 1.016 1.016))))
  1520. (number "54" (effects (font (size 1.016 1.016))))
  1521. )
  1522. (pin bidirectional line (at 22.86 2.54 180) (length 5.08)
  1523. (name "I/O/55" (effects (font (size 1.016 1.016))))
  1524. (number "55" (effects (font (size 1.016 1.016))))
  1525. )
  1526. (pin bidirectional line (at 22.86 5.08 180) (length 5.08)
  1527. (name "I/O/56" (effects (font (size 1.016 1.016))))
  1528. (number "56" (effects (font (size 1.016 1.016))))
  1529. )
  1530. (pin bidirectional line (at 22.86 7.62 180) (length 5.08)
  1531. (name "I/O/57" (effects (font (size 1.016 1.016))))
  1532. (number "57" (effects (font (size 1.016 1.016))))
  1533. )
  1534. (pin bidirectional line (at 22.86 10.16 180) (length 5.08)
  1535. (name "I/O/58" (effects (font (size 1.016 1.016))))
  1536. (number "58" (effects (font (size 1.016 1.016))))
  1537. )
  1538. (pin power_in line (at 0.635 -31.115 90) (length 5.08)
  1539. (name "GND" (effects (font (size 1.016 1.016))))
  1540. (number "59" (effects (font (size 1.016 1.016))))
  1541. )
  1542. (pin bidirectional line (at -22.86 53.34 0) (length 5.08)
  1543. (name "I/O/6" (effects (font (size 1.016 1.016))))
  1544. (number "6" (effects (font (size 1.016 1.016))))
  1545. )
  1546. (pin bidirectional line (at 22.86 12.7 180) (length 5.08)
  1547. (name "I/O/60" (effects (font (size 1.016 1.016))))
  1548. (number "60" (effects (font (size 1.016 1.016))))
  1549. )
  1550. (pin bidirectional line (at 22.86 15.24 180) (length 5.08)
  1551. (name "I/O/61" (effects (font (size 1.016 1.016))))
  1552. (number "61" (effects (font (size 1.016 1.016))))
  1553. )
  1554. (pin bidirectional clock (at 22.86 17.78 180) (length 5.08)
  1555. (name "I/O/62/TCK" (effects (font (size 1.016 1.016))))
  1556. (number "62" (effects (font (size 1.016 1.016))))
  1557. )
  1558. (pin bidirectional line (at 22.86 20.32 180) (length 5.08)
  1559. (name "I/O/63" (effects (font (size 1.016 1.016))))
  1560. (number "63" (effects (font (size 1.016 1.016))))
  1561. )
  1562. (pin bidirectional line (at 22.86 22.86 180) (length 5.08)
  1563. (name "I/O/64" (effects (font (size 1.016 1.016))))
  1564. (number "64" (effects (font (size 1.016 1.016))))
  1565. )
  1566. (pin bidirectional line (at 22.86 25.4 180) (length 5.08)
  1567. (name "I/O/65" (effects (font (size 1.016 1.016))))
  1568. (number "65" (effects (font (size 1.016 1.016))))
  1569. )
  1570. (pin power_in line (at -1.905 76.2 270) (length 5.08)
  1571. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1572. (number "66" (effects (font (size 1.016 1.016))))
  1573. )
  1574. (pin bidirectional line (at 22.86 27.94 180) (length 5.08)
  1575. (name "I/O/67" (effects (font (size 1.016 1.016))))
  1576. (number "67" (effects (font (size 1.016 1.016))))
  1577. )
  1578. (pin bidirectional line (at 22.86 30.48 180) (length 5.08)
  1579. (name "I/O/68" (effects (font (size 1.016 1.016))))
  1580. (number "68" (effects (font (size 1.016 1.016))))
  1581. )
  1582. (pin bidirectional line (at 22.86 33.02 180) (length 5.08)
  1583. (name "I/O/69" (effects (font (size 1.016 1.016))))
  1584. (number "69" (effects (font (size 1.016 1.016))))
  1585. )
  1586. (pin power_in line (at 4.445 -31.115 90) (length 5.08)
  1587. (name "GND" (effects (font (size 1.016 1.016))))
  1588. (number "7" (effects (font (size 1.016 1.016))))
  1589. )
  1590. (pin bidirectional line (at 22.86 35.56 180) (length 5.08)
  1591. (name "I/O/70" (effects (font (size 1.016 1.016))))
  1592. (number "70" (effects (font (size 1.016 1.016))))
  1593. )
  1594. (pin bidirectional line (at 22.86 38.1 180) (length 5.08)
  1595. (name "I/O/71/TDO" (effects (font (size 1.016 1.016))))
  1596. (number "71" (effects (font (size 1.016 1.016))))
  1597. )
  1598. (pin power_in line (at 2.54 -31.115 90) (length 5.08)
  1599. (name "GND" (effects (font (size 1.016 1.016))))
  1600. (number "72" (effects (font (size 1.016 1.016))))
  1601. )
  1602. (pin bidirectional line (at 22.86 40.64 180) (length 5.08)
  1603. (name "I/O/73" (effects (font (size 1.016 1.016))))
  1604. (number "73" (effects (font (size 1.016 1.016))))
  1605. )
  1606. (pin bidirectional line (at 22.86 43.18 180) (length 5.08)
  1607. (name "I/O/74" (effects (font (size 1.016 1.016))))
  1608. (number "74" (effects (font (size 1.016 1.016))))
  1609. )
  1610. (pin bidirectional line (at 22.86 45.72 180) (length 5.08)
  1611. (name "I/O/75" (effects (font (size 1.016 1.016))))
  1612. (number "75" (effects (font (size 1.016 1.016))))
  1613. )
  1614. (pin bidirectional line (at 22.86 48.26 180) (length 5.08)
  1615. (name "I/O/76" (effects (font (size 1.016 1.016))))
  1616. (number "76" (effects (font (size 1.016 1.016))))
  1617. )
  1618. (pin bidirectional line (at 22.86 50.8 180) (length 5.08)
  1619. (name "I/O/77" (effects (font (size 1.016 1.016))))
  1620. (number "77" (effects (font (size 1.016 1.016))))
  1621. )
  1622. (pin power_in line (at 1.905 76.2 270) (length 5.08)
  1623. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1624. (number "78" (effects (font (size 1.016 1.016))))
  1625. )
  1626. (pin bidirectional line (at 22.86 53.34 180) (length 5.08)
  1627. (name "I/O/79" (effects (font (size 1.016 1.016))))
  1628. (number "79" (effects (font (size 1.016 1.016))))
  1629. )
  1630. (pin bidirectional line (at -22.86 50.8 0) (length 5.08)
  1631. (name "I/O/8" (effects (font (size 1.016 1.016))))
  1632. (number "8" (effects (font (size 1.016 1.016))))
  1633. )
  1634. (pin bidirectional line (at 22.86 55.88 180) (length 5.08)
  1635. (name "I/O/80" (effects (font (size 1.016 1.016))))
  1636. (number "80" (effects (font (size 1.016 1.016))))
  1637. )
  1638. (pin bidirectional line (at 22.86 58.42 180) (length 5.08)
  1639. (name "I/O/81/GCLK3" (effects (font (size 1.016 1.016))))
  1640. (number "81" (effects (font (size 1.016 1.016))))
  1641. )
  1642. (pin power_in line (at -1.27 -31.115 90) (length 5.08)
  1643. (name "GND" (effects (font (size 1.016 1.016))))
  1644. (number "82" (effects (font (size 1.016 1.016))))
  1645. )
  1646. (pin bidirectional line (at 22.86 60.96 180) (length 5.08)
  1647. (name "I/83/GCLK1" (effects (font (size 1.016 1.016))))
  1648. (number "83" (effects (font (size 1.016 1.016))))
  1649. )
  1650. (pin bidirectional line (at 22.86 63.5 180) (length 5.08)
  1651. (name "I/84/OE1" (effects (font (size 1.016 1.016))))
  1652. (number "84" (effects (font (size 1.016 1.016))))
  1653. )
  1654. (pin bidirectional line (at -22.86 48.26 0) (length 5.08)
  1655. (name "I/O/9" (effects (font (size 1.016 1.016))))
  1656. (number "9" (effects (font (size 1.016 1.016))))
  1657. )
  1658. )
  1659. )
  1660. (symbol "Z80ICE:CY7C1019D-10VXIT" (in_bom yes) (on_board yes)
  1661. (property "Reference" "U" (id 0) (at -10.16 31.75 0)
  1662. (effects (font (size 1.27 1.27)))
  1663. )
  1664. (property "Value" "CY7C1019D-10VXIT" (id 1) (at 12.7 31.75 0)
  1665. (effects (font (size 1.27 1.27)))
  1666. )
  1667. (property "Footprint" "Package_SO:SOJ-36_10.16x23.49mm_P1.27mm" (id 2) (at -12.7 29.21 0)
  1668. (effects (font (size 1.27 1.27)) hide)
  1669. )
  1670. (property "Datasheet" "https://www.mouser.se/datasheet/2/196/CYPRS13494_1-3003573.pdf" (id 3) (at 0 0 0)
  1671. (effects (font (size 1.27 1.27)) hide)
  1672. )
  1673. (property "ki_keywords" "SRAM MEMORY" (id 4) (at 0 0 0)
  1674. (effects (font (size 1.27 1.27)) hide)
  1675. )
  1676. (property "ki_description" "1Mb 10ns 128K x 8 Fast Async SRAM,SOJ32" (id 5) (at 0 0 0)
  1677. (effects (font (size 1.27 1.27)) hide)
  1678. )
  1679. (property "ki_fp_filters" "TSOP*10.16x18.41mm*P0.8mm*" (id 6) (at 0 0 0)
  1680. (effects (font (size 1.27 1.27)) hide)
  1681. )
  1682. (symbol "CY7C1019D-10VXIT_0_1"
  1683. (rectangle (start -12.7 30.48) (end 12.7 -30.48)
  1684. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1685. (fill (type background))
  1686. )
  1687. )
  1688. (symbol "CY7C1019D-10VXIT_1_1"
  1689. (pin input line (at -15.24 27.305 0) (length 2.54)
  1690. (name "A0" (effects (font (size 1.27 1.27))))
  1691. (number "1" (effects (font (size 1.27 1.27))))
  1692. )
  1693. (pin bidirectional line (at 15.24 22.86 180) (length 2.54)
  1694. (name "IO2" (effects (font (size 1.27 1.27))))
  1695. (number "10" (effects (font (size 1.27 1.27))))
  1696. )
  1697. (pin bidirectional line (at 15.24 20.32 180) (length 2.54)
  1698. (name "IO3" (effects (font (size 1.27 1.27))))
  1699. (number "11" (effects (font (size 1.27 1.27))))
  1700. )
  1701. (pin input line (at -15.24 -22.225 0) (length 2.54)
  1702. (name "~{WE}" (effects (font (size 1.27 1.27))))
  1703. (number "12" (effects (font (size 1.27 1.27))))
  1704. )
  1705. (pin input line (at -15.24 17.145 0) (length 2.54)
  1706. (name "A4" (effects (font (size 1.27 1.27))))
  1707. (number "13" (effects (font (size 1.27 1.27))))
  1708. )
  1709. (pin input line (at -15.24 14.605 0) (length 2.54)
  1710. (name "A5" (effects (font (size 1.27 1.27))))
  1711. (number "14" (effects (font (size 1.27 1.27))))
  1712. )
  1713. (pin input line (at -15.24 12.065 0) (length 2.54)
  1714. (name "A6" (effects (font (size 1.27 1.27))))
  1715. (number "15" (effects (font (size 1.27 1.27))))
  1716. )
  1717. (pin input line (at -15.24 9.525 0) (length 2.54)
  1718. (name "A7" (effects (font (size 1.27 1.27))))
  1719. (number "16" (effects (font (size 1.27 1.27))))
  1720. )
  1721. (pin input line (at -15.24 6.985 0) (length 2.54)
  1722. (name "A8" (effects (font (size 1.27 1.27))))
  1723. (number "17" (effects (font (size 1.27 1.27))))
  1724. )
  1725. (pin input line (at -15.24 4.445 0) (length 2.54)
  1726. (name "A9" (effects (font (size 1.27 1.27))))
  1727. (number "18" (effects (font (size 1.27 1.27))))
  1728. )
  1729. (pin input line (at -15.24 1.905 0) (length 2.54)
  1730. (name "A10" (effects (font (size 1.27 1.27))))
  1731. (number "19" (effects (font (size 1.27 1.27))))
  1732. )
  1733. (pin input line (at -15.24 24.765 0) (length 2.54)
  1734. (name "A1" (effects (font (size 1.27 1.27))))
  1735. (number "2" (effects (font (size 1.27 1.27))))
  1736. )
  1737. (pin input line (at -15.24 -0.635 0) (length 2.54)
  1738. (name "A11" (effects (font (size 1.27 1.27))))
  1739. (number "20" (effects (font (size 1.27 1.27))))
  1740. )
  1741. (pin input line (at -15.24 -3.175 0) (length 2.54)
  1742. (name "A12" (effects (font (size 1.27 1.27))))
  1743. (number "21" (effects (font (size 1.27 1.27))))
  1744. )
  1745. (pin bidirectional line (at 15.24 17.78 180) (length 2.54)
  1746. (name "IO4" (effects (font (size 1.27 1.27))))
  1747. (number "22" (effects (font (size 1.27 1.27))))
  1748. )
  1749. (pin bidirectional line (at 15.24 15.24 180) (length 2.54)
  1750. (name "IO5" (effects (font (size 1.27 1.27))))
  1751. (number "23" (effects (font (size 1.27 1.27))))
  1752. )
  1753. (pin power_in line (at -1.27 33.02 270) (length 2.54)
  1754. (name "VCC" (effects (font (size 1.27 1.27))))
  1755. (number "24" (effects (font (size 1.27 1.27))))
  1756. )
  1757. (pin power_in line (at 1.27 -33.02 90) (length 2.54)
  1758. (name "VSS" (effects (font (size 1.27 1.27))))
  1759. (number "25" (effects (font (size 1.27 1.27))))
  1760. )
  1761. (pin bidirectional line (at 15.24 12.7 180) (length 2.54)
  1762. (name "IO6" (effects (font (size 1.27 1.27))))
  1763. (number "26" (effects (font (size 1.27 1.27))))
  1764. )
  1765. (pin bidirectional line (at 15.24 10.16 180) (length 2.54)
  1766. (name "IO7" (effects (font (size 1.27 1.27))))
  1767. (number "27" (effects (font (size 1.27 1.27))))
  1768. )
  1769. (pin input line (at -15.24 -24.765 0) (length 2.54)
  1770. (name "~{OE}" (effects (font (size 1.27 1.27))))
  1771. (number "28" (effects (font (size 1.27 1.27))))
  1772. )
  1773. (pin input line (at -15.24 -5.715 0) (length 2.54)
  1774. (name "A13" (effects (font (size 1.27 1.27))))
  1775. (number "29" (effects (font (size 1.27 1.27))))
  1776. )
  1777. (pin input line (at -15.24 22.225 0) (length 2.54)
  1778. (name "A2" (effects (font (size 1.27 1.27))))
  1779. (number "3" (effects (font (size 1.27 1.27))))
  1780. )
  1781. (pin input line (at -15.24 -8.255 0) (length 2.54)
  1782. (name "A14" (effects (font (size 1.27 1.27))))
  1783. (number "30" (effects (font (size 1.27 1.27))))
  1784. )
  1785. (pin bidirectional line (at -15.24 -10.795 0) (length 2.54)
  1786. (name "A15" (effects (font (size 1.27 1.27))))
  1787. (number "31" (effects (font (size 1.27 1.27))))
  1788. )
  1789. (pin bidirectional line (at -15.24 -13.335 0) (length 2.54)
  1790. (name "A16" (effects (font (size 1.27 1.27))))
  1791. (number "32" (effects (font (size 1.27 1.27))))
  1792. )
  1793. (pin input line (at -15.24 19.685 0) (length 2.54)
  1794. (name "A3" (effects (font (size 1.27 1.27))))
  1795. (number "4" (effects (font (size 1.27 1.27))))
  1796. )
  1797. (pin input line (at -15.24 -27.305 0) (length 2.54)
  1798. (name "~{CE}" (effects (font (size 1.27 1.27))))
  1799. (number "5" (effects (font (size 1.27 1.27))))
  1800. )
  1801. (pin bidirectional line (at 15.24 27.94 180) (length 2.54)
  1802. (name "IO0" (effects (font (size 1.27 1.27))))
  1803. (number "6" (effects (font (size 1.27 1.27))))
  1804. )
  1805. (pin bidirectional line (at 15.24 25.4 180) (length 2.54)
  1806. (name "IO1" (effects (font (size 1.27 1.27))))
  1807. (number "7" (effects (font (size 1.27 1.27))))
  1808. )
  1809. (pin power_in line (at 1.27 33.02 270) (length 2.54)
  1810. (name "VCC" (effects (font (size 1.27 1.27))))
  1811. (number "8" (effects (font (size 1.27 1.27))))
  1812. )
  1813. (pin power_in line (at -1.905 -33.02 90) (length 2.54)
  1814. (name "VSS" (effects (font (size 1.27 1.27))))
  1815. (number "9" (effects (font (size 1.27 1.27))))
  1816. )
  1817. )
  1818. )
  1819. (symbol "Z80ICE:HRO-TYPE-C-31-M-12" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1820. (property "Reference" "USB1" (id 0) (at 0 30.5562 0)
  1821. (effects (font (size 1.524 1.524)))
  1822. )
  1823. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at 0 27.8638 0)
  1824. (effects (font (size 1.524 1.524)))
  1825. )
  1826. (property "Footprint" "Greaseweazle:HRO-TYPE-C-31-M-12" (id 2) (at 0 25.1714 0)
  1827. (effects (font (size 1.524 1.524)))
  1828. )
  1829. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at -17.78 1.27 0)
  1830. (effects (font (size 1.524 1.524)) hide)
  1831. )
  1832. (property "LCSC" "C165948" (id 4) (at 0 0 0)
  1833. (effects (font (size 1.27 1.27)) hide)
  1834. )
  1835. (symbol "HRO-TYPE-C-31-M-12_0_1"
  1836. (rectangle (start -11.43 15.24) (end -8.89 -17.78)
  1837. (stroke (width 0) (type default) (color 0 0 0 0))
  1838. (fill (type background))
  1839. )
  1840. (rectangle (start 0 -17.78) (end -8.89 15.24)
  1841. (stroke (width 0) (type default) (color 0 0 0 0))
  1842. (fill (type background))
  1843. )
  1844. )
  1845. (symbol "HRO-TYPE-C-31-M-12_1_1"
  1846. (pin input line (at 2.54 13.97 180) (length 2.54)
  1847. (name "GND" (effects (font (size 1.27 1.27))))
  1848. (number "1" (effects (font (size 1.27 1.27))))
  1849. )
  1850. (pin input line (at 2.54 -8.89 180) (length 2.54)
  1851. (name "CC2" (effects (font (size 1.27 1.27))))
  1852. (number "10" (effects (font (size 1.27 1.27))))
  1853. )
  1854. (pin input line (at 2.54 -11.43 180) (length 2.54)
  1855. (name "VBUS" (effects (font (size 1.27 1.27))))
  1856. (number "11" (effects (font (size 1.27 1.27))))
  1857. )
  1858. (pin input line (at 2.54 -13.97 180) (length 2.54)
  1859. (name "GND" (effects (font (size 1.27 1.27))))
  1860. (number "12" (effects (font (size 1.27 1.27))))
  1861. )
  1862. (pin input line (at 2.54 -16.51 180) (length 2.54)
  1863. (name "SHIELD" (effects (font (size 1.27 1.27))))
  1864. (number "13" (effects (font (size 1.27 1.27))))
  1865. )
  1866. (pin input line (at 2.54 11.43 180) (length 2.54)
  1867. (name "VBUS" (effects (font (size 1.27 1.27))))
  1868. (number "2" (effects (font (size 1.27 1.27))))
  1869. )
  1870. (pin input line (at 2.54 8.89 180) (length 2.54)
  1871. (name "SBU2" (effects (font (size 1.27 1.27))))
  1872. (number "3" (effects (font (size 1.27 1.27))))
  1873. )
  1874. (pin input line (at 2.54 6.35 180) (length 2.54)
  1875. (name "CC1" (effects (font (size 1.27 1.27))))
  1876. (number "4" (effects (font (size 1.27 1.27))))
  1877. )
  1878. (pin input line (at 2.54 3.81 180) (length 2.54)
  1879. (name "DN2" (effects (font (size 1.27 1.27))))
  1880. (number "5" (effects (font (size 1.27 1.27))))
  1881. )
  1882. (pin input line (at 2.54 1.27 180) (length 2.54)
  1883. (name "DP1" (effects (font (size 1.27 1.27))))
  1884. (number "6" (effects (font (size 1.27 1.27))))
  1885. )
  1886. (pin input line (at 2.54 -1.27 180) (length 2.54)
  1887. (name "DN1" (effects (font (size 1.27 1.27))))
  1888. (number "7" (effects (font (size 1.27 1.27))))
  1889. )
  1890. (pin input line (at 2.54 -3.81 180) (length 2.54)
  1891. (name "DP2" (effects (font (size 1.27 1.27))))
  1892. (number "8" (effects (font (size 1.27 1.27))))
  1893. )
  1894. (pin input line (at 2.54 -6.35 180) (length 2.54)
  1895. (name "SBU1" (effects (font (size 1.27 1.27))))
  1896. (number "9" (effects (font (size 1.27 1.27))))
  1897. )
  1898. )
  1899. )
  1900. (symbol "esp-jtag-rescue:FT2232H-Interface_USB" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1901. (property "Reference" "U" (id 0) (at -26.67 53.34 0)
  1902. (effects (font (size 1.27 1.27)) (justify left))
  1903. )
  1904. (property "Value" "FT2232H-Interface_USB" (id 1) (at 19.05 53.34 0)
  1905. (effects (font (size 1.27 1.27)) (justify left))
  1906. )
  1907. (property "Footprint" "" (id 2) (at 0 0 0)
  1908. (effects (font (size 1.27 1.27)) hide)
  1909. )
  1910. (property "Datasheet" "" (id 3) (at 0 0 0)
  1911. (effects (font (size 1.27 1.27)) hide)
  1912. )
  1913. (property "ki_fp_filters" "QFN* LQFP*" (id 4) (at 0 0 0)
  1914. (effects (font (size 1.27 1.27)) hide)
  1915. )
  1916. (symbol "FT2232H-Interface_USB_0_1"
  1917. (rectangle (start -26.67 -52.07) (end 26.67 52.07)
  1918. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1919. (fill (type background))
  1920. )
  1921. )
  1922. (symbol "FT2232H-Interface_USB_1_1"
  1923. (pin power_in line (at -10.16 -55.88 90) (length 3.81)
  1924. (name "GND" (effects (font (size 1.27 1.27))))
  1925. (number "1" (effects (font (size 1.27 1.27))))
  1926. )
  1927. (pin power_in line (at -15.24 -55.88 90) (length 3.81)
  1928. (name "AGND" (effects (font (size 1.27 1.27))))
  1929. (number "10" (effects (font (size 1.27 1.27))))
  1930. )
  1931. (pin power_in line (at -5.08 -55.88 90) (length 3.81)
  1932. (name "GND" (effects (font (size 1.27 1.27))))
  1933. (number "11" (effects (font (size 1.27 1.27))))
  1934. )
  1935. (pin power_in line (at -5.08 55.88 270) (length 3.81)
  1936. (name "VCORE" (effects (font (size 1.27 1.27))))
  1937. (number "12" (effects (font (size 1.27 1.27))))
  1938. )
  1939. (pin input line (at -30.48 -45.72 0) (length 3.81)
  1940. (name "TEST" (effects (font (size 1.27 1.27))))
  1941. (number "13" (effects (font (size 1.27 1.27))))
  1942. )
  1943. (pin input line (at -30.48 10.16 0) (length 3.81)
  1944. (name "~{RESET}" (effects (font (size 1.27 1.27))))
  1945. (number "14" (effects (font (size 1.27 1.27))))
  1946. )
  1947. (pin power_in line (at -2.54 -55.88 90) (length 3.81)
  1948. (name "GND" (effects (font (size 1.27 1.27))))
  1949. (number "15" (effects (font (size 1.27 1.27))))
  1950. )
  1951. (pin bidirectional line (at 30.48 48.26 180) (length 3.81)
  1952. (name "ADBUS0" (effects (font (size 1.27 1.27))))
  1953. (number "16" (effects (font (size 1.27 1.27))))
  1954. )
  1955. (pin bidirectional line (at 30.48 45.72 180) (length 3.81)
  1956. (name "ADBUS1" (effects (font (size 1.27 1.27))))
  1957. (number "17" (effects (font (size 1.27 1.27))))
  1958. )
  1959. (pin bidirectional line (at 30.48 43.18 180) (length 3.81)
  1960. (name "ADBUS2" (effects (font (size 1.27 1.27))))
  1961. (number "18" (effects (font (size 1.27 1.27))))
  1962. )
  1963. (pin bidirectional line (at 30.48 40.64 180) (length 3.81)
  1964. (name "ADBUS3" (effects (font (size 1.27 1.27))))
  1965. (number "19" (effects (font (size 1.27 1.27))))
  1966. )
  1967. (pin input line (at -30.48 -30.48 0) (length 3.81)
  1968. (name "OSCI" (effects (font (size 1.27 1.27))))
  1969. (number "2" (effects (font (size 1.27 1.27))))
  1970. )
  1971. (pin power_in line (at 5.08 55.88 270) (length 3.81)
  1972. (name "VCCIO" (effects (font (size 1.27 1.27))))
  1973. (number "20" (effects (font (size 1.27 1.27))))
  1974. )
  1975. (pin bidirectional line (at 30.48 38.1 180) (length 3.81)
  1976. (name "ADBUS4" (effects (font (size 1.27 1.27))))
  1977. (number "21" (effects (font (size 1.27 1.27))))
  1978. )
  1979. (pin bidirectional line (at 30.48 35.56 180) (length 3.81)
  1980. (name "ADBUS5" (effects (font (size 1.27 1.27))))
  1981. (number "22" (effects (font (size 1.27 1.27))))
  1982. )
  1983. (pin bidirectional line (at 30.48 33.02 180) (length 3.81)
  1984. (name "ADBUS6" (effects (font (size 1.27 1.27))))
  1985. (number "23" (effects (font (size 1.27 1.27))))
  1986. )
  1987. (pin bidirectional line (at 30.48 30.48 180) (length 3.81)
  1988. (name "ADBUS7" (effects (font (size 1.27 1.27))))
  1989. (number "24" (effects (font (size 1.27 1.27))))
  1990. )
  1991. (pin power_in line (at 0 -55.88 90) (length 3.81)
  1992. (name "GND" (effects (font (size 1.27 1.27))))
  1993. (number "25" (effects (font (size 1.27 1.27))))
  1994. )
  1995. (pin bidirectional line (at 30.48 25.4 180) (length 3.81)
  1996. (name "ACBUS0" (effects (font (size 1.27 1.27))))
  1997. (number "26" (effects (font (size 1.27 1.27))))
  1998. )
  1999. (pin bidirectional line (at 30.48 22.86 180) (length 3.81)
  2000. (name "ACBUS1" (effects (font (size 1.27 1.27))))
  2001. (number "27" (effects (font (size 1.27 1.27))))
  2002. )
  2003. (pin bidirectional line (at 30.48 20.32 180) (length 3.81)
  2004. (name "ACBUS2" (effects (font (size 1.27 1.27))))
  2005. (number "28" (effects (font (size 1.27 1.27))))
  2006. )
  2007. (pin bidirectional line (at 30.48 17.78 180) (length 3.81)
  2008. (name "ACBUS3" (effects (font (size 1.27 1.27))))
  2009. (number "29" (effects (font (size 1.27 1.27))))
  2010. )
  2011. (pin output line (at -30.48 -40.64 0) (length 3.81)
  2012. (name "OSCO" (effects (font (size 1.27 1.27))))
  2013. (number "3" (effects (font (size 1.27 1.27))))
  2014. )
  2015. (pin bidirectional line (at 30.48 15.24 180) (length 3.81)
  2016. (name "ACBUS4" (effects (font (size 1.27 1.27))))
  2017. (number "30" (effects (font (size 1.27 1.27))))
  2018. )
  2019. (pin power_in line (at 7.62 55.88 270) (length 3.81)
  2020. (name "VCCIO" (effects (font (size 1.27 1.27))))
  2021. (number "31" (effects (font (size 1.27 1.27))))
  2022. )
  2023. (pin bidirectional line (at 30.48 12.7 180) (length 3.81)
  2024. (name "ACBUS5" (effects (font (size 1.27 1.27))))
  2025. (number "32" (effects (font (size 1.27 1.27))))
  2026. )
  2027. (pin bidirectional line (at 30.48 10.16 180) (length 3.81)
  2028. (name "ACBUS6" (effects (font (size 1.27 1.27))))
  2029. (number "33" (effects (font (size 1.27 1.27))))
  2030. )
  2031. (pin bidirectional line (at 30.48 7.62 180) (length 3.81)
  2032. (name "ACBUS7" (effects (font (size 1.27 1.27))))
  2033. (number "34" (effects (font (size 1.27 1.27))))
  2034. )
  2035. (pin power_in line (at 2.54 -55.88 90) (length 3.81)
  2036. (name "GND" (effects (font (size 1.27 1.27))))
  2037. (number "35" (effects (font (size 1.27 1.27))))
  2038. )
  2039. (pin output line (at 30.48 -45.72 180) (length 3.81)
  2040. (name "~{SUSPEND}" (effects (font (size 1.27 1.27))))
  2041. (number "36" (effects (font (size 1.27 1.27))))
  2042. )
  2043. (pin power_in line (at -2.54 55.88 270) (length 3.81)
  2044. (name "VCORE" (effects (font (size 1.27 1.27))))
  2045. (number "37" (effects (font (size 1.27 1.27))))
  2046. )
  2047. (pin bidirectional line (at 30.48 2.54 180) (length 3.81)
  2048. (name "BDBUS0" (effects (font (size 1.27 1.27))))
  2049. (number "38" (effects (font (size 1.27 1.27))))
  2050. )
  2051. (pin bidirectional line (at 30.48 0 180) (length 3.81)
  2052. (name "BDBUS1" (effects (font (size 1.27 1.27))))
  2053. (number "39" (effects (font (size 1.27 1.27))))
  2054. )
  2055. (pin power_in line (at -12.7 55.88 270) (length 3.81)
  2056. (name "VPHY" (effects (font (size 1.27 1.27))))
  2057. (number "4" (effects (font (size 1.27 1.27))))
  2058. )
  2059. (pin bidirectional line (at 30.48 -2.54 180) (length 3.81)
  2060. (name "BDBUS2" (effects (font (size 1.27 1.27))))
  2061. (number "40" (effects (font (size 1.27 1.27))))
  2062. )
  2063. (pin bidirectional line (at 30.48 -5.08 180) (length 3.81)
  2064. (name "BDBUS3" (effects (font (size 1.27 1.27))))
  2065. (number "41" (effects (font (size 1.27 1.27))))
  2066. )
  2067. (pin power_in line (at 10.16 55.88 270) (length 3.81)
  2068. (name "VCCIO" (effects (font (size 1.27 1.27))))
  2069. (number "42" (effects (font (size 1.27 1.27))))
  2070. )
  2071. (pin bidirectional line (at 30.48 -7.62 180) (length 3.81)
  2072. (name "BDBUS4" (effects (font (size 1.27 1.27))))
  2073. (number "43" (effects (font (size 1.27 1.27))))
  2074. )
  2075. (pin bidirectional line (at 30.48 -10.16 180) (length 3.81)
  2076. (name "BDBUS5" (effects (font (size 1.27 1.27))))
  2077. (number "44" (effects (font (size 1.27 1.27))))
  2078. )
  2079. (pin bidirectional line (at 30.48 -12.7 180) (length 3.81)
  2080. (name "BDBUS6" (effects (font (size 1.27 1.27))))
  2081. (number "45" (effects (font (size 1.27 1.27))))
  2082. )
  2083. (pin bidirectional line (at 30.48 -15.24 180) (length 3.81)
  2084. (name "BDBUS7" (effects (font (size 1.27 1.27))))
  2085. (number "46" (effects (font (size 1.27 1.27))))
  2086. )
  2087. (pin power_in line (at 5.08 -55.88 90) (length 3.81)
  2088. (name "GND" (effects (font (size 1.27 1.27))))
  2089. (number "47" (effects (font (size 1.27 1.27))))
  2090. )
  2091. (pin bidirectional line (at 30.48 -20.32 180) (length 3.81)
  2092. (name "BCBUS0" (effects (font (size 1.27 1.27))))
  2093. (number "48" (effects (font (size 1.27 1.27))))
  2094. )
  2095. (pin power_out line (at -30.48 43.18 0) (length 3.81)
  2096. (name "VREGOUT" (effects (font (size 1.27 1.27))))
  2097. (number "49" (effects (font (size 1.27 1.27))))
  2098. )
  2099. (pin power_in line (at -7.62 -55.88 90) (length 3.81)
  2100. (name "GND" (effects (font (size 1.27 1.27))))
  2101. (number "5" (effects (font (size 1.27 1.27))))
  2102. )
  2103. (pin power_in line (at -30.48 48.26 0) (length 3.81)
  2104. (name "VREGIN" (effects (font (size 1.27 1.27))))
  2105. (number "50" (effects (font (size 1.27 1.27))))
  2106. )
  2107. (pin power_in line (at 7.62 -55.88 90) (length 3.81)
  2108. (name "GND" (effects (font (size 1.27 1.27))))
  2109. (number "51" (effects (font (size 1.27 1.27))))
  2110. )
  2111. (pin bidirectional line (at 30.48 -22.86 180) (length 3.81)
  2112. (name "BCBUS1" (effects (font (size 1.27 1.27))))
  2113. (number "52" (effects (font (size 1.27 1.27))))
  2114. )
  2115. (pin bidirectional line (at 30.48 -25.4 180) (length 3.81)
  2116. (name "BCBUS2" (effects (font (size 1.27 1.27))))
  2117. (number "53" (effects (font (size 1.27 1.27))))
  2118. )
  2119. (pin bidirectional line (at 30.48 -27.94 180) (length 3.81)
  2120. (name "BCBUS3" (effects (font (size 1.27 1.27))))
  2121. (number "54" (effects (font (size 1.27 1.27))))
  2122. )
  2123. (pin bidirectional line (at 30.48 -30.48 180) (length 3.81)
  2124. (name "BCBUS4" (effects (font (size 1.27 1.27))))
  2125. (number "55" (effects (font (size 1.27 1.27))))
  2126. )
  2127. (pin power_in line (at 12.7 55.88 270) (length 3.81)
  2128. (name "VCCIO" (effects (font (size 1.27 1.27))))
  2129. (number "56" (effects (font (size 1.27 1.27))))
  2130. )
  2131. (pin bidirectional line (at 30.48 -33.02 180) (length 3.81)
  2132. (name "BCBUS5" (effects (font (size 1.27 1.27))))
  2133. (number "57" (effects (font (size 1.27 1.27))))
  2134. )
  2135. (pin bidirectional line (at 30.48 -35.56 180) (length 3.81)
  2136. (name "BCBUS6" (effects (font (size 1.27 1.27))))
  2137. (number "58" (effects (font (size 1.27 1.27))))
  2138. )
  2139. (pin bidirectional line (at 30.48 -38.1 180) (length 3.81)
  2140. (name "BCBUS7" (effects (font (size 1.27 1.27))))
  2141. (number "59" (effects (font (size 1.27 1.27))))
  2142. )
  2143. (pin output line (at -30.48 15.24 0) (length 3.81)
  2144. (name "REF" (effects (font (size 1.27 1.27))))
  2145. (number "6" (effects (font (size 1.27 1.27))))
  2146. )
  2147. (pin output line (at 30.48 -43.18 180) (length 3.81)
  2148. (name "~{PWREN}" (effects (font (size 1.27 1.27))))
  2149. (number "60" (effects (font (size 1.27 1.27))))
  2150. )
  2151. (pin bidirectional line (at -30.48 -22.86 0) (length 3.81)
  2152. (name "EEDATA" (effects (font (size 1.27 1.27))))
  2153. (number "61" (effects (font (size 1.27 1.27))))
  2154. )
  2155. (pin output line (at -30.48 -20.32 0) (length 3.81)
  2156. (name "EECLK" (effects (font (size 1.27 1.27))))
  2157. (number "62" (effects (font (size 1.27 1.27))))
  2158. )
  2159. (pin output line (at -30.48 -17.78 0) (length 3.81)
  2160. (name "EECS" (effects (font (size 1.27 1.27))))
  2161. (number "63" (effects (font (size 1.27 1.27))))
  2162. )
  2163. (pin power_in line (at 0 55.88 270) (length 3.81)
  2164. (name "VCORE" (effects (font (size 1.27 1.27))))
  2165. (number "64" (effects (font (size 1.27 1.27))))
  2166. )
  2167. (pin bidirectional line (at -30.48 22.86 0) (length 3.81)
  2168. (name "DM" (effects (font (size 1.27 1.27))))
  2169. (number "7" (effects (font (size 1.27 1.27))))
  2170. )
  2171. (pin bidirectional line (at -30.48 20.32 0) (length 3.81)
  2172. (name "DP" (effects (font (size 1.27 1.27))))
  2173. (number "8" (effects (font (size 1.27 1.27))))
  2174. )
  2175. (pin input line (at -10.16 55.88 270) (length 3.81)
  2176. (name "VPLL" (effects (font (size 1.27 1.27))))
  2177. (number "9" (effects (font (size 1.27 1.27))))
  2178. )
  2179. )
  2180. )
  2181. (symbol "esp-jtag-rescue:bead-myRF" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2182. (property "Reference" "FB" (id 0) (at 1.905 1.27 0)
  2183. (effects (font (size 1.27 1.27)) (justify left))
  2184. )
  2185. (property "Value" "bead-myRF" (id 1) (at 1.905 -1.27 0)
  2186. (effects (font (size 1.27 1.27)) (justify left))
  2187. )
  2188. (property "Footprint" "" (id 2) (at -1.778 0 90)
  2189. (effects (font (size 1.27 1.27)) hide)
  2190. )
  2191. (property "Datasheet" "" (id 3) (at 0 0 0)
  2192. (effects (font (size 1.27 1.27)) hide)
  2193. )
  2194. (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 4) (at 0 0 0)
  2195. (effects (font (size 1.27 1.27)) hide)
  2196. )
  2197. (symbol "bead-myRF_0_1"
  2198. (rectangle (start -0.381 1.27) (end 0.381 -1.143)
  2199. (stroke (width 0) (type default) (color 0 0 0 0))
  2200. (fill (type outline))
  2201. )
  2202. (polyline
  2203. (pts
  2204. (xy 0 -1.27)
  2205. (xy 0 -0.7874)
  2206. )
  2207. (stroke (width 0) (type default) (color 0 0 0 0))
  2208. (fill (type none))
  2209. )
  2210. (polyline
  2211. (pts
  2212. (xy 0 0.889)
  2213. (xy 0 1.2954)
  2214. )
  2215. (stroke (width 0) (type default) (color 0 0 0 0))
  2216. (fill (type none))
  2217. )
  2218. )
  2219. (symbol "bead-myRF_1_1"
  2220. (pin passive line (at 0 2.54 270) (length 1.27)
  2221. (name "~" (effects (font (size 1.27 1.27))))
  2222. (number "1" (effects (font (size 1.27 1.27))))
  2223. )
  2224. (pin passive line (at 0 -2.54 90) (length 1.27)
  2225. (name "~" (effects (font (size 1.27 1.27))))
  2226. (number "2" (effects (font (size 1.27 1.27))))
  2227. )
  2228. )
  2229. )
  2230. (symbol "power:+1V8" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2231. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2232. (effects (font (size 1.27 1.27)) hide)
  2233. )
  2234. (property "Value" "+1V8" (id 1) (at 0 3.556 0)
  2235. (effects (font (size 1.27 1.27)))
  2236. )
  2237. (property "Footprint" "" (id 2) (at 0 0 0)
  2238. (effects (font (size 1.27 1.27)) hide)
  2239. )
  2240. (property "Datasheet" "" (id 3) (at 0 0 0)
  2241. (effects (font (size 1.27 1.27)) hide)
  2242. )
  2243. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2244. (effects (font (size 1.27 1.27)) hide)
  2245. )
  2246. (property "ki_description" "Power symbol creates a global label with name \"+1V8\"" (id 5) (at 0 0 0)
  2247. (effects (font (size 1.27 1.27)) hide)
  2248. )
  2249. (symbol "+1V8_0_1"
  2250. (polyline
  2251. (pts
  2252. (xy -0.762 1.27)
  2253. (xy 0 2.54)
  2254. )
  2255. (stroke (width 0) (type default) (color 0 0 0 0))
  2256. (fill (type none))
  2257. )
  2258. (polyline
  2259. (pts
  2260. (xy 0 0)
  2261. (xy 0 2.54)
  2262. )
  2263. (stroke (width 0) (type default) (color 0 0 0 0))
  2264. (fill (type none))
  2265. )
  2266. (polyline
  2267. (pts
  2268. (xy 0 2.54)
  2269. (xy 0.762 1.27)
  2270. )
  2271. (stroke (width 0) (type default) (color 0 0 0 0))
  2272. (fill (type none))
  2273. )
  2274. )
  2275. (symbol "+1V8_1_1"
  2276. (pin power_in line (at 0 0 90) (length 0) hide
  2277. (name "+1V8" (effects (font (size 1.27 1.27))))
  2278. (number "1" (effects (font (size 1.27 1.27))))
  2279. )
  2280. )
  2281. )
  2282. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2283. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2284. (effects (font (size 1.27 1.27)) hide)
  2285. )
  2286. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  2287. (effects (font (size 1.27 1.27)))
  2288. )
  2289. (property "Footprint" "" (id 2) (at 0 0 0)
  2290. (effects (font (size 1.27 1.27)) hide)
  2291. )
  2292. (property "Datasheet" "" (id 3) (at 0 0 0)
  2293. (effects (font (size 1.27 1.27)) hide)
  2294. )
  2295. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2296. (effects (font (size 1.27 1.27)) hide)
  2297. )
  2298. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  2299. (effects (font (size 1.27 1.27)) hide)
  2300. )
  2301. (symbol "+3V3_0_1"
  2302. (polyline
  2303. (pts
  2304. (xy -0.762 1.27)
  2305. (xy 0 2.54)
  2306. )
  2307. (stroke (width 0) (type default) (color 0 0 0 0))
  2308. (fill (type none))
  2309. )
  2310. (polyline
  2311. (pts
  2312. (xy 0 0)
  2313. (xy 0 2.54)
  2314. )
  2315. (stroke (width 0) (type default) (color 0 0 0 0))
  2316. (fill (type none))
  2317. )
  2318. (polyline
  2319. (pts
  2320. (xy 0 2.54)
  2321. (xy 0.762 1.27)
  2322. )
  2323. (stroke (width 0) (type default) (color 0 0 0 0))
  2324. (fill (type none))
  2325. )
  2326. )
  2327. (symbol "+3V3_1_1"
  2328. (pin power_in line (at 0 0 90) (length 0) hide
  2329. (name "+3V3" (effects (font (size 1.27 1.27))))
  2330. (number "1" (effects (font (size 1.27 1.27))))
  2331. )
  2332. )
  2333. )
  2334. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2335. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2336. (effects (font (size 1.27 1.27)) hide)
  2337. )
  2338. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  2339. (effects (font (size 1.27 1.27)))
  2340. )
  2341. (property "Footprint" "" (id 2) (at 0 0 0)
  2342. (effects (font (size 1.27 1.27)) hide)
  2343. )
  2344. (property "Datasheet" "" (id 3) (at 0 0 0)
  2345. (effects (font (size 1.27 1.27)) hide)
  2346. )
  2347. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2348. (effects (font (size 1.27 1.27)) hide)
  2349. )
  2350. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  2351. (effects (font (size 1.27 1.27)) hide)
  2352. )
  2353. (symbol "+5V_0_1"
  2354. (polyline
  2355. (pts
  2356. (xy -0.762 1.27)
  2357. (xy 0 2.54)
  2358. )
  2359. (stroke (width 0) (type default) (color 0 0 0 0))
  2360. (fill (type none))
  2361. )
  2362. (polyline
  2363. (pts
  2364. (xy 0 0)
  2365. (xy 0 2.54)
  2366. )
  2367. (stroke (width 0) (type default) (color 0 0 0 0))
  2368. (fill (type none))
  2369. )
  2370. (polyline
  2371. (pts
  2372. (xy 0 2.54)
  2373. (xy 0.762 1.27)
  2374. )
  2375. (stroke (width 0) (type default) (color 0 0 0 0))
  2376. (fill (type none))
  2377. )
  2378. )
  2379. (symbol "+5V_1_1"
  2380. (pin power_in line (at 0 0 90) (length 0) hide
  2381. (name "+5V" (effects (font (size 1.27 1.27))))
  2382. (number "1" (effects (font (size 1.27 1.27))))
  2383. )
  2384. )
  2385. )
  2386. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2387. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  2388. (effects (font (size 1.27 1.27)) hide)
  2389. )
  2390. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  2391. (effects (font (size 1.27 1.27)))
  2392. )
  2393. (property "Footprint" "" (id 2) (at 0 0 0)
  2394. (effects (font (size 1.27 1.27)) hide)
  2395. )
  2396. (property "Datasheet" "" (id 3) (at 0 0 0)
  2397. (effects (font (size 1.27 1.27)) hide)
  2398. )
  2399. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2400. (effects (font (size 1.27 1.27)) hide)
  2401. )
  2402. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  2403. (effects (font (size 1.27 1.27)) hide)
  2404. )
  2405. (symbol "GND_0_1"
  2406. (polyline
  2407. (pts
  2408. (xy 0 0)
  2409. (xy 0 -1.27)
  2410. (xy 1.27 -1.27)
  2411. (xy 0 -2.54)
  2412. (xy -1.27 -1.27)
  2413. (xy 0 -1.27)
  2414. )
  2415. (stroke (width 0) (type default) (color 0 0 0 0))
  2416. (fill (type none))
  2417. )
  2418. )
  2419. (symbol "GND_1_1"
  2420. (pin power_in line (at 0 0 270) (length 0) hide
  2421. (name "GND" (effects (font (size 1.27 1.27))))
  2422. (number "1" (effects (font (size 1.27 1.27))))
  2423. )
  2424. )
  2425. )
  2426. )
  2427. (junction (at 340.36 67.945) (diameter 0) (color 0 0 0 0)
  2428. (uuid 010bf7ad-cf42-4fa9-a1de-d640f094fdc2)
  2429. )
  2430. (junction (at 167.64 125.73) (diameter 0) (color 0 0 0 0)
  2431. (uuid 07e27eaa-6bc0-4520-80d8-058d19961b10)
  2432. )
  2433. (junction (at 292.1 48.895) (diameter 0) (color 0 0 0 0)
  2434. (uuid 0f3c5a44-b532-4c67-b708-30a461507c69)
  2435. )
  2436. (junction (at 322.58 183.515) (diameter 0) (color 0 0 0 0)
  2437. (uuid 16581902-1a46-4bbb-bab7-9214ed6529df)
  2438. )
  2439. (junction (at 320.04 183.515) (diameter 0) (color 0 0 0 0)
  2440. (uuid 2016670d-5c99-476d-94fb-685a0dbea8a0)
  2441. )
  2442. (junction (at 24.13 229.87) (diameter 0) (color 0 0 0 0)
  2443. (uuid 212d9545-0dae-4087-8d4a-fafe5bdf76bd)
  2444. )
  2445. (junction (at 244.475 252.73) (diameter 0) (color 0 0 0 0)
  2446. (uuid 21a889b7-fd2e-4ad2-b7a1-0dd0e192e2a2)
  2447. )
  2448. (junction (at 31.75 257.81) (diameter 0) (color 0 0 0 0)
  2449. (uuid 26e5620e-a69b-4ec5-820e-609153c0f718)
  2450. )
  2451. (junction (at 335.28 67.945) (diameter 0) (color 0 0 0 0)
  2452. (uuid 324d8ca8-8ac2-4c7d-9a4d-9bf39fa52ad4)
  2453. )
  2454. (junction (at 327.66 67.945) (diameter 0) (color 0 0 0 0)
  2455. (uuid 3577dbc6-71ca-45e4-ac75-6f44695be154)
  2456. )
  2457. (junction (at 278.13 83.185) (diameter 0) (color 0 0 0 0)
  2458. (uuid 3c8e6a25-c279-4135-957c-4ebd00b00950)
  2459. )
  2460. (junction (at 332.74 183.515) (diameter 0) (color 0 0 0 0)
  2461. (uuid 3e37b5eb-6439-422b-ac1c-36fbd5f4964f)
  2462. )
  2463. (junction (at 170.18 236.22) (diameter 0) (color 0 0 0 0)
  2464. (uuid 3f25318c-c6c9-4464-8bf2-bbb48f244738)
  2465. )
  2466. (junction (at 172.72 125.73) (diameter 0) (color 0 0 0 0)
  2467. (uuid 40f0ea81-8dbe-455a-b57d-ed82285f33c6)
  2468. )
  2469. (junction (at 160.02 125.73) (diameter 0) (color 0 0 0 0)
  2470. (uuid 42fda249-78fd-48d8-b0ad-e75c65f6f4ef)
  2471. )
  2472. (junction (at 308.61 51.435) (diameter 0) (color 0 0 0 0)
  2473. (uuid 4dea5252-43c8-4258-aa2c-ac3d089a8b48)
  2474. )
  2475. (junction (at 271.78 78.105) (diameter 0) (color 0 0 0 0)
  2476. (uuid 4f315dba-09e4-4df4-bf54-3e4fdc104fe4)
  2477. )
  2478. (junction (at 317.5 183.515) (diameter 0) (color 0 0 0 0)
  2479. (uuid 5c00a468-8ca5-4b86-a0cc-467530cb8cf0)
  2480. )
  2481. (junction (at 333.375 231.14) (diameter 0) (color 0 0 0 0)
  2482. (uuid 5d5838fe-f6a8-4294-a08c-0aca89b9a6a8)
  2483. )
  2484. (junction (at 165.735 236.22) (diameter 0) (color 0 0 0 0)
  2485. (uuid 5d8c4bfe-44e0-4953-8839-d6b4c1d0317b)
  2486. )
  2487. (junction (at 335.28 183.515) (diameter 0) (color 0 0 0 0)
  2488. (uuid 63c11eb5-2e28-4d5f-ad98-1b43dd473c43)
  2489. )
  2490. (junction (at 166.37 236.22) (diameter 0) (color 0 0 0 0)
  2491. (uuid 660450b2-ea57-4479-a2ea-3515455122fc)
  2492. )
  2493. (junction (at 25.4 257.81) (diameter 0) (color 0 0 0 0)
  2494. (uuid 7c2b9ef9-6cb5-42ab-87b5-2756d65f44ad)
  2495. )
  2496. (junction (at 303.53 51.435) (diameter 0) (color 0 0 0 0)
  2497. (uuid 7e43841e-8163-4b49-82da-fa13ea6375f5)
  2498. )
  2499. (junction (at 333.375 215.9) (diameter 0) (color 0 0 0 0)
  2500. (uuid 7f9068ee-ffc9-4071-bd44-ed2e8746972d)
  2501. )
  2502. (junction (at 386.715 210.82) (diameter 0) (color 0 0 0 0)
  2503. (uuid 8e4849bd-320e-406b-a02d-f52f450f1f0b)
  2504. )
  2505. (junction (at 274.955 252.73) (diameter 0) (color 0 0 0 0)
  2506. (uuid 90cfa6be-e369-452e-b0f5-3da868b01976)
  2507. )
  2508. (junction (at 162.56 236.22) (diameter 0) (color 0 0 0 0)
  2509. (uuid 924c1b07-3647-4420-a4b5-644e6f4d4aa8)
  2510. )
  2511. (junction (at 163.83 125.73) (diameter 0) (color 0 0 0 0)
  2512. (uuid 948ea756-ac87-48be-9fc8-3f42f6d15798)
  2513. )
  2514. (junction (at 164.465 236.22) (diameter 0) (color 0 0 0 0)
  2515. (uuid 9a12b756-a7c9-4252-9ac2-7a41c3f35fdf)
  2516. )
  2517. (junction (at 508 139.065) (diameter 0) (color 0 0 0 0)
  2518. (uuid 9bfcf0a2-1aaf-43c6-95d8-1262e8d4c7cf)
  2519. )
  2520. (junction (at 160.655 236.22) (diameter 0) (color 0 0 0 0)
  2521. (uuid 9dc0a5f2-bea1-49e2-b1a8-0bcaf4e62e7b)
  2522. )
  2523. (junction (at 333.375 236.22) (diameter 0) (color 0 0 0 0)
  2524. (uuid 9ddc8518-52b4-4740-b67d-90e11e3cd350)
  2525. )
  2526. (junction (at 273.05 167.005) (diameter 0) (color 0 0 0 0)
  2527. (uuid a160d663-fb36-49e0-aeae-66bac6c1f558)
  2528. )
  2529. (junction (at 330.2 183.515) (diameter 0) (color 0 0 0 0)
  2530. (uuid a16365f6-69df-4557-96f2-e00fdc2b8722)
  2531. )
  2532. (junction (at 30.48 229.87) (diameter 0) (color 0 0 0 0)
  2533. (uuid a5e8c9c4-3841-4c6c-9916-736001a0a110)
  2534. )
  2535. (junction (at 161.925 125.73) (diameter 0) (color 0 0 0 0)
  2536. (uuid a5f3d6f1-7afe-4e6e-b1d7-3cc62cc6ad01)
  2537. )
  2538. (junction (at 266.065 252.73) (diameter 0) (color 0 0 0 0)
  2539. (uuid aa8f3c0c-d034-4463-b24c-dbf3965802ad)
  2540. )
  2541. (junction (at 168.275 236.22) (diameter 0) (color 0 0 0 0)
  2542. (uuid b7c48211-d70b-4ff8-b04e-a6d330dcb32c)
  2543. )
  2544. (junction (at 281.94 48.895) (diameter 0) (color 0 0 0 0)
  2545. (uuid cc95ebbe-b0d7-4f32-bb9d-0650f6c297cc)
  2546. )
  2547. (junction (at 325.12 67.945) (diameter 0) (color 0 0 0 0)
  2548. (uuid d08827cd-f558-46ff-b12d-11613e58689b)
  2549. )
  2550. (junction (at 297.18 48.895) (diameter 0) (color 0 0 0 0)
  2551. (uuid d2902f8b-80bd-434c-be18-da4823946f29)
  2552. )
  2553. (junction (at 327.66 183.515) (diameter 0) (color 0 0 0 0)
  2554. (uuid e5875461-8a12-431d-99e0-036034545569)
  2555. )
  2556. (junction (at 330.835 210.82) (diameter 0) (color 0 0 0 0)
  2557. (uuid e5b730d2-b9c5-4a3c-847e-091c2b51370d)
  2558. )
  2559. (junction (at 285.75 167.005) (diameter 0) (color 0 0 0 0)
  2560. (uuid e74b1e3d-1ffb-4425-9af3-d5561c3c5eaf)
  2561. )
  2562. (junction (at 165.735 125.73) (diameter 0) (color 0 0 0 0)
  2563. (uuid ea92fd5f-3c96-4f08-91fe-6988dae2cef1)
  2564. )
  2565. (junction (at 325.12 183.515) (diameter 0) (color 0 0 0 0)
  2566. (uuid ebfd523c-bc56-4147-83c2-755d0bdd60bc)
  2567. )
  2568. (junction (at 337.82 67.945) (diameter 0) (color 0 0 0 0)
  2569. (uuid f0273c62-017b-4719-b79c-a6eeed9777f1)
  2570. )
  2571. (junction (at 323.215 223.52) (diameter 0) (color 0 0 0 0)
  2572. (uuid f12a92a8-61cb-47ba-b271-126e3c2d59bd)
  2573. )
  2574. (junction (at 324.485 220.98) (diameter 0) (color 0 0 0 0)
  2575. (uuid f20f7628-874f-41de-8575-b8d8cf12ed5f)
  2576. )
  2577. (junction (at 36.83 229.87) (diameter 0) (color 0 0 0 0)
  2578. (uuid f5f7ef1a-2272-4b3b-b73a-0293eda1a623)
  2579. )
  2580. (junction (at 339.725 210.82) (diameter 0) (color 0 0 0 0)
  2581. (uuid f695ee6f-ad95-41ee-b7a9-d1aa22d07b53)
  2582. )
  2583. (junction (at 312.42 183.515) (diameter 0) (color 0 0 0 0)
  2584. (uuid f7eab157-d5e7-4311-943c-775f62249980)
  2585. )
  2586. (junction (at 167.005 125.73) (diameter 0) (color 0 0 0 0)
  2587. (uuid f95e03e7-eee6-4242-ab5f-5e5b3443acf8)
  2588. )
  2589. (junction (at 165.735 114.3) (diameter 0) (color 0 0 0 0)
  2590. (uuid fe1138c7-fc2b-4595-89ac-8ce0ba6ec17f)
  2591. )
  2592. (no_connect (at 358.14 172.085) (uuid 1c9d77a9-cefc-47c5-90a3-beb708599e0e))
  2593. (no_connect (at 320.675 213.36) (uuid 4f157f5f-75eb-4aa2-a623-196732046d89))
  2594. (no_connect (at 358.14 169.545) (uuid b9d749b5-7a27-4f36-85e2-9281df8fe4f8))
  2595. (no_connect (at 320.675 228.6) (uuid c164d5a4-eb71-4b08-87f5-65d5dee1c1c8))
  2596. (no_connect (at 320.675 238.76) (uuid ceee6ddc-e0dc-42a1-99b2-2b1bba47a722))
  2597. (wire (pts (xy 127 178.435) (xy 142.875 178.435))
  2598. (stroke (width 0) (type default) (color 0 0 0 0))
  2599. (uuid 01b5edf0-d541-48f7-a221-bb113152dd6e)
  2600. )
  2601. (wire (pts (xy 358.14 108.585) (xy 365.76 108.585))
  2602. (stroke (width 0) (type default) (color 0 0 0 0))
  2603. (uuid 022d8681-3c0a-4dc7-9434-e65534a86a56)
  2604. )
  2605. (wire (pts (xy 69.85 48.26) (xy 77.47 48.26))
  2606. (stroke (width 0) (type default) (color 0 0 0 0))
  2607. (uuid 02af41c4-3af3-443f-b5af-4ca1b1d04119)
  2608. )
  2609. (wire (pts (xy 165.735 236.22) (xy 165.735 238.125))
  2610. (stroke (width 0) (type default) (color 0 0 0 0))
  2611. (uuid 03260b11-7e6e-40e2-981f-266b1fad87a1)
  2612. )
  2613. (wire (pts (xy 297.18 78.105) (xy 271.78 78.105))
  2614. (stroke (width 0) (type default) (color 0 0 0 0))
  2615. (uuid 042bb877-013a-404c-b6ec-b7361f33064d)
  2616. )
  2617. (wire (pts (xy 69.85 93.98) (xy 77.47 93.98))
  2618. (stroke (width 0) (type default) (color 0 0 0 0))
  2619. (uuid 0449723b-944d-437c-81c8-9a2199e7e37b)
  2620. )
  2621. (wire (pts (xy 266.065 259.08) (xy 266.065 269.24))
  2622. (stroke (width 0) (type default) (color 0 0 0 0))
  2623. (uuid 04fa2ec2-6dde-4fad-a50b-e4dc82ca5735)
  2624. )
  2625. (wire (pts (xy 297.18 57.785) (xy 297.18 66.675))
  2626. (stroke (width 0) (type default) (color 0 0 0 0))
  2627. (uuid 04fd1ca2-40a4-4698-9bce-71a30c6207eb)
  2628. )
  2629. (wire (pts (xy 158.75 234.95) (xy 158.75 236.22))
  2630. (stroke (width 0) (type default) (color 0 0 0 0))
  2631. (uuid 0530cfa3-62ac-40f8-b2df-bfb5620f59c9)
  2632. )
  2633. (wire (pts (xy 142.875 191.135) (xy 135.255 191.135))
  2634. (stroke (width 0) (type default) (color 0 0 0 0))
  2635. (uuid 06860273-7766-4ee0-a924-e7909c10e4e6)
  2636. )
  2637. (wire (pts (xy 274.955 252.73) (xy 282.575 252.73))
  2638. (stroke (width 0) (type default) (color 0 0 0 0))
  2639. (uuid 076f4da4-8094-4118-85cc-4f645160adc5)
  2640. )
  2641. (wire (pts (xy 69.85 73.66) (xy 77.47 73.66))
  2642. (stroke (width 0) (type default) (color 0 0 0 0))
  2643. (uuid 07b908db-0877-4da5-8753-0829d740a08f)
  2644. )
  2645. (wire (pts (xy 292.1 48.895) (xy 288.29 48.895))
  2646. (stroke (width 0) (type default) (color 0 0 0 0))
  2647. (uuid 07ce76b8-7a1f-4fa7-a9a0-054af67ef67d)
  2648. )
  2649. (wire (pts (xy 358.14 100.965) (xy 365.76 100.965))
  2650. (stroke (width 0) (type default) (color 0 0 0 0))
  2651. (uuid 07ed3029-08d7-494a-a7c2-bd3cfa010765)
  2652. )
  2653. (wire (pts (xy 188.595 213.995) (xy 196.215 213.995))
  2654. (stroke (width 0) (type default) (color 0 0 0 0))
  2655. (uuid 08f71736-1394-4842-a3d9-0e2f66e73030)
  2656. )
  2657. (wire (pts (xy 158.75 236.22) (xy 160.655 236.22))
  2658. (stroke (width 0) (type default) (color 0 0 0 0))
  2659. (uuid 0936f72a-4d9d-4f2b-b65c-3359b15a7f44)
  2660. )
  2661. (wire (pts (xy 127 155.575) (xy 142.875 155.575))
  2662. (stroke (width 0) (type default) (color 0 0 0 0))
  2663. (uuid 099eaca5-fa64-4808-9026-2053593598db)
  2664. )
  2665. (wire (pts (xy 276.86 144.145) (xy 285.75 144.145))
  2666. (stroke (width 0) (type default) (color 0 0 0 0))
  2667. (uuid 09c5c313-de0f-44bd-ad89-a71f3af5538b)
  2668. )
  2669. (wire (pts (xy 18.415 93.98) (xy 34.29 93.98))
  2670. (stroke (width 0) (type default) (color 0 0 0 0))
  2671. (uuid 0a56d2b0-168e-44e7-92b6-61edf2f5382a)
  2672. )
  2673. (wire (pts (xy 69.85 78.74) (xy 77.47 78.74))
  2674. (stroke (width 0) (type default) (color 0 0 0 0))
  2675. (uuid 0aa35e20-d193-4635-9382-ec71ec69a61e)
  2676. )
  2677. (wire (pts (xy 150.495 81.28) (xy 142.875 81.28))
  2678. (stroke (width 0) (type default) (color 0 0 0 0))
  2679. (uuid 0b06d8da-af38-40be-944d-a4a6523a51bb)
  2680. )
  2681. (wire (pts (xy 386.715 222.25) (xy 386.715 223.52))
  2682. (stroke (width 0) (type default) (color 0 0 0 0))
  2683. (uuid 0b6fca9c-43c9-4374-bd7d-e3b63c04ad08)
  2684. )
  2685. (wire (pts (xy 292.1 52.705) (xy 292.1 48.895))
  2686. (stroke (width 0) (type default) (color 0 0 0 0))
  2687. (uuid 0c33e0b4-4e5d-4263-99f5-4f5e65a6f5c7)
  2688. )
  2689. (wire (pts (xy 354.965 248.92) (xy 354.965 246.38))
  2690. (stroke (width 0) (type default) (color 0 0 0 0))
  2691. (uuid 0c8919ea-7087-43af-b282-e007198172b3)
  2692. )
  2693. (wire (pts (xy 127 158.115) (xy 142.875 158.115))
  2694. (stroke (width 0) (type default) (color 0 0 0 0))
  2695. (uuid 0c9beed0-d68b-4cef-96bd-5131b7f6a9ca)
  2696. )
  2697. (wire (pts (xy 167.005 125.73) (xy 167.005 125.095))
  2698. (stroke (width 0) (type default) (color 0 0 0 0))
  2699. (uuid 0cf0eb54-d0a0-47fe-9cce-d1a408815a34)
  2700. )
  2701. (wire (pts (xy 244.475 254) (xy 244.475 252.73))
  2702. (stroke (width 0) (type default) (color 0 0 0 0))
  2703. (uuid 0d733be0-476a-4a82-98c9-df0fbdf81872)
  2704. )
  2705. (wire (pts (xy 36.83 229.87) (xy 43.18 229.87))
  2706. (stroke (width 0) (type default) (color 0 0 0 0))
  2707. (uuid 0da286c8-022f-4230-967a-1f2da8e23c2b)
  2708. )
  2709. (wire (pts (xy 358.14 116.205) (xy 365.76 116.205))
  2710. (stroke (width 0) (type default) (color 0 0 0 0))
  2711. (uuid 0de29e6d-59dc-4199-9e2b-b82af7d10069)
  2712. )
  2713. (wire (pts (xy 150.495 55.88) (xy 142.875 55.88))
  2714. (stroke (width 0) (type default) (color 0 0 0 0))
  2715. (uuid 0e3c7407-18cd-4b7f-aebe-df4457bf860d)
  2716. )
  2717. (wire (pts (xy 167.005 125.73) (xy 167.64 125.73))
  2718. (stroke (width 0) (type default) (color 0 0 0 0))
  2719. (uuid 0e9e534e-1a0b-4210-a9ed-b501d8f6b1bd)
  2720. )
  2721. (wire (pts (xy 167.005 114.3) (xy 167.005 113.665))
  2722. (stroke (width 0) (type default) (color 0 0 0 0))
  2723. (uuid 0ed90e55-1f5d-421b-973a-d051bc60e3b4)
  2724. )
  2725. (wire (pts (xy 180.975 57.785) (xy 188.595 57.785))
  2726. (stroke (width 0) (type default) (color 0 0 0 0))
  2727. (uuid 0fd864d8-663d-4ba5-b6a8-e6bc894b0e06)
  2728. )
  2729. (wire (pts (xy 31.75 257.81) (xy 25.4 257.81))
  2730. (stroke (width 0) (type default) (color 0 0 0 0))
  2731. (uuid 1084caa1-94a5-45c0-9692-e54b404595ba)
  2732. )
  2733. (wire (pts (xy 69.85 86.36) (xy 77.47 86.36))
  2734. (stroke (width 0) (type default) (color 0 0 0 0))
  2735. (uuid 113965a9-71b5-4249-876f-5a936aed42ef)
  2736. )
  2737. (wire (pts (xy 140.97 224.155) (xy 142.875 224.155))
  2738. (stroke (width 0) (type default) (color 0 0 0 0))
  2739. (uuid 1223a349-9001-4b8a-b697-80bb04784418)
  2740. )
  2741. (wire (pts (xy 150.495 66.04) (xy 142.875 66.04))
  2742. (stroke (width 0) (type default) (color 0 0 0 0))
  2743. (uuid 15aa23af-090b-44ab-b54f-313de2771801)
  2744. )
  2745. (wire (pts (xy 31.75 265.43) (xy 31.75 274.32))
  2746. (stroke (width 0) (type default) (color 0 0 0 0))
  2747. (uuid 15cb9746-c380-4c39-88f2-b1c473c56355)
  2748. )
  2749. (wire (pts (xy 292.1 111.125) (xy 297.18 111.125))
  2750. (stroke (width 0) (type default) (color 0 0 0 0))
  2751. (uuid 1630d5c9-f2f3-481a-8649-74f4c93b95c5)
  2752. )
  2753. (wire (pts (xy 290.83 146.685) (xy 297.18 146.685))
  2754. (stroke (width 0) (type default) (color 0 0 0 0))
  2755. (uuid 16ad8640-e24a-45eb-9660-87db62d2fcfa)
  2756. )
  2757. (wire (pts (xy 142.875 188.595) (xy 135.255 188.595))
  2758. (stroke (width 0) (type default) (color 0 0 0 0))
  2759. (uuid 1984dd40-f070-4db2-bb76-d98ae0f1d877)
  2760. )
  2761. (wire (pts (xy 188.595 224.155) (xy 196.215 224.155))
  2762. (stroke (width 0) (type default) (color 0 0 0 0))
  2763. (uuid 1a075e6e-f30b-4e6b-9fd6-87236acd2eb7)
  2764. )
  2765. (wire (pts (xy 325.12 183.515) (xy 322.58 183.515))
  2766. (stroke (width 0) (type default) (color 0 0 0 0))
  2767. (uuid 1b770034-344d-43fb-a588-15b1852816b2)
  2768. )
  2769. (wire (pts (xy 57.785 156.845) (xy 65.405 156.845))
  2770. (stroke (width 0) (type default) (color 0 0 0 0))
  2771. (uuid 1ba83c43-ce1c-4709-ba72-365d6631fb05)
  2772. )
  2773. (wire (pts (xy 18.415 68.58) (xy 34.29 68.58))
  2774. (stroke (width 0) (type default) (color 0 0 0 0))
  2775. (uuid 1da3d606-14c9-441f-b029-47c82060dae1)
  2776. )
  2777. (wire (pts (xy 333.375 236.22) (xy 333.375 241.3))
  2778. (stroke (width 0) (type default) (color 0 0 0 0))
  2779. (uuid 1e25ea82-4629-4aab-9099-ad801dbeb53c)
  2780. )
  2781. (wire (pts (xy 279.4 172.085) (xy 279.4 183.515))
  2782. (stroke (width 0) (type default) (color 0 0 0 0))
  2783. (uuid 1e55f8b4-41a4-49dd-a618-9c7ec23d76f3)
  2784. )
  2785. (wire (pts (xy 308.61 57.785) (xy 308.61 66.675))
  2786. (stroke (width 0) (type default) (color 0 0 0 0))
  2787. (uuid 1e5f3f38-abbd-4985-8f7b-4ffed42b5c1f)
  2788. )
  2789. (wire (pts (xy 73.66 184.785) (xy 57.785 184.785))
  2790. (stroke (width 0) (type default) (color 0 0 0 0))
  2791. (uuid 1e80fb1d-9160-4fbc-8da8-90f9e27431ae)
  2792. )
  2793. (wire (pts (xy 150.495 91.44) (xy 142.875 91.44))
  2794. (stroke (width 0) (type default) (color 0 0 0 0))
  2795. (uuid 202245dd-846b-4035-9efa-a1e14726196f)
  2796. )
  2797. (wire (pts (xy 325.12 67.945) (xy 327.66 67.945))
  2798. (stroke (width 0) (type default) (color 0 0 0 0))
  2799. (uuid 204be471-b9be-477d-9424-276776588f26)
  2800. )
  2801. (wire (pts (xy 273.05 156.845) (xy 297.18 156.845))
  2802. (stroke (width 0) (type default) (color 0 0 0 0))
  2803. (uuid 2122ffaf-4711-4399-bf80-1992b2ddeadb)
  2804. )
  2805. (wire (pts (xy 18.415 86.36) (xy 34.29 86.36))
  2806. (stroke (width 0) (type default) (color 0 0 0 0))
  2807. (uuid 22476ba2-caf0-4796-9263-56c88b828a4d)
  2808. )
  2809. (wire (pts (xy 508 142.875) (xy 508 139.065))
  2810. (stroke (width 0) (type default) (color 0 0 0 0))
  2811. (uuid 23397b4f-f6d8-4ddd-8de2-bb880870603a)
  2812. )
  2813. (wire (pts (xy 358.14 131.445) (xy 365.76 131.445))
  2814. (stroke (width 0) (type default) (color 0 0 0 0))
  2815. (uuid 24cd967b-5ff8-45ce-8ea1-0111a1190a8d)
  2816. )
  2817. (wire (pts (xy 150.495 88.9) (xy 142.875 88.9))
  2818. (stroke (width 0) (type default) (color 0 0 0 0))
  2819. (uuid 254e68a6-fa31-4a5b-a0f1-10cb0fdf2358)
  2820. )
  2821. (wire (pts (xy 150.495 68.58) (xy 142.875 68.58))
  2822. (stroke (width 0) (type default) (color 0 0 0 0))
  2823. (uuid 26b534c9-6603-4792-a956-a6cf47c77945)
  2824. )
  2825. (wire (pts (xy 257.175 260.35) (xy 257.175 269.24))
  2826. (stroke (width 0) (type default) (color 0 0 0 0))
  2827. (uuid 29f1e8ff-c4f3-4ac1-b96e-385ad3c3ecc4)
  2828. )
  2829. (wire (pts (xy 17.78 257.81) (xy 25.4 257.81))
  2830. (stroke (width 0) (type default) (color 0 0 0 0))
  2831. (uuid 2a0ecdd0-6a83-4aa9-9045-6ca2502f851f)
  2832. )
  2833. (wire (pts (xy 241.935 250.825) (xy 241.935 252.73))
  2834. (stroke (width 0) (type default) (color 0 0 0 0))
  2835. (uuid 2afdba6a-2b67-4268-915e-22aa411eda16)
  2836. )
  2837. (wire (pts (xy 271.78 78.105) (xy 271.78 84.455))
  2838. (stroke (width 0) (type default) (color 0 0 0 0))
  2839. (uuid 2b4dc6b4-0249-4cfb-95e1-1c1fb85a1b63)
  2840. )
  2841. (wire (pts (xy 335.28 182.245) (xy 335.28 183.515))
  2842. (stroke (width 0) (type default) (color 0 0 0 0))
  2843. (uuid 2bc81b59-1a3f-40f6-b982-f2a4bcae19c6)
  2844. )
  2845. (wire (pts (xy 386.715 198.12) (xy 386.715 210.82))
  2846. (stroke (width 0) (type default) (color 0 0 0 0))
  2847. (uuid 2bf2419d-6b6c-40c3-993b-35b7ad33021f)
  2848. )
  2849. (wire (pts (xy 303.53 57.785) (xy 303.53 66.675))
  2850. (stroke (width 0) (type default) (color 0 0 0 0))
  2851. (uuid 2c0cb760-8286-40fb-8d8b-6574af49345b)
  2852. )
  2853. (wire (pts (xy 340.36 64.135) (xy 340.36 67.945))
  2854. (stroke (width 0) (type default) (color 0 0 0 0))
  2855. (uuid 2c71f755-da33-467d-8b2e-e370342adbf6)
  2856. )
  2857. (wire (pts (xy 158.115 127.635) (xy 158.115 125.73))
  2858. (stroke (width 0) (type default) (color 0 0 0 0))
  2859. (uuid 2d393559-2007-444c-af00-24548c7f0169)
  2860. )
  2861. (wire (pts (xy 57.785 146.685) (xy 65.405 146.685))
  2862. (stroke (width 0) (type default) (color 0 0 0 0))
  2863. (uuid 2fc5d3b6-feb6-4492-adbc-309e403fe980)
  2864. )
  2865. (wire (pts (xy 325.12 70.485) (xy 325.12 67.945))
  2866. (stroke (width 0) (type default) (color 0 0 0 0))
  2867. (uuid 309c7451-b1d3-48f3-bd68-c90583ef710c)
  2868. )
  2869. (wire (pts (xy 332.74 183.515) (xy 330.2 183.515))
  2870. (stroke (width 0) (type default) (color 0 0 0 0))
  2871. (uuid 31b2cccf-31fa-459a-b0c2-3679f48236a0)
  2872. )
  2873. (wire (pts (xy 164.465 234.95) (xy 164.465 236.22))
  2874. (stroke (width 0) (type default) (color 0 0 0 0))
  2875. (uuid 31c542f5-6640-43d6-8f93-5d69a0f510bc)
  2876. )
  2877. (wire (pts (xy 188.595 198.755) (xy 196.215 198.755))
  2878. (stroke (width 0) (type default) (color 0 0 0 0))
  2879. (uuid 31f88d11-5d2e-4f13-ac5a-ebda81bb44d4)
  2880. )
  2881. (wire (pts (xy 127 183.515) (xy 142.875 183.515))
  2882. (stroke (width 0) (type default) (color 0 0 0 0))
  2883. (uuid 3243c7d4-c327-4a2f-921e-2c013441fb3d)
  2884. )
  2885. (wire (pts (xy 45.085 167.005) (xy 37.465 167.005))
  2886. (stroke (width 0) (type default) (color 0 0 0 0))
  2887. (uuid 32e81b2c-ad8a-434b-8813-9f8c6eb722df)
  2888. )
  2889. (wire (pts (xy 142.875 201.295) (xy 135.255 201.295))
  2890. (stroke (width 0) (type default) (color 0 0 0 0))
  2891. (uuid 33bd9b51-76d6-4de4-9e42-0db25a097335)
  2892. )
  2893. (wire (pts (xy 317.5 182.245) (xy 317.5 183.515))
  2894. (stroke (width 0) (type default) (color 0 0 0 0))
  2895. (uuid 3496886c-9420-4660-99de-ea248fea3347)
  2896. )
  2897. (wire (pts (xy 127 160.655) (xy 142.875 160.655))
  2898. (stroke (width 0) (type default) (color 0 0 0 0))
  2899. (uuid 352b8a55-53f4-401c-9f3b-b21a18730fa1)
  2900. )
  2901. (wire (pts (xy 320.675 210.82) (xy 330.835 210.82))
  2902. (stroke (width 0) (type default) (color 0 0 0 0))
  2903. (uuid 36d92fc8-4bcb-4e0e-8c2d-65f66d2fffc7)
  2904. )
  2905. (wire (pts (xy 158.115 125.73) (xy 160.02 125.73))
  2906. (stroke (width 0) (type default) (color 0 0 0 0))
  2907. (uuid 378aec69-bcb0-460e-b528-48490c9e3aaf)
  2908. )
  2909. (wire (pts (xy 188.595 178.435) (xy 196.215 178.435))
  2910. (stroke (width 0) (type default) (color 0 0 0 0))
  2911. (uuid 3850b570-33a3-41fb-87c8-6da936f46794)
  2912. )
  2913. (wire (pts (xy 322.58 182.245) (xy 322.58 183.515))
  2914. (stroke (width 0) (type default) (color 0 0 0 0))
  2915. (uuid 39304cb5-dc30-4d13-98d3-b1aefd894b89)
  2916. )
  2917. (wire (pts (xy 36.83 232.41) (xy 36.83 229.87))
  2918. (stroke (width 0) (type default) (color 0 0 0 0))
  2919. (uuid 39341948-87dd-47dd-a735-473afa7b9006)
  2920. )
  2921. (wire (pts (xy 25.4 257.81) (xy 25.4 260.35))
  2922. (stroke (width 0) (type default) (color 0 0 0 0))
  2923. (uuid 3a64b0bd-6adc-44d5-ac5f-a6ba08a6449d)
  2924. )
  2925. (wire (pts (xy 320.04 183.515) (xy 317.5 183.515))
  2926. (stroke (width 0) (type default) (color 0 0 0 0))
  2927. (uuid 3b4e315c-af5f-4b37-898a-74f95fe669ca)
  2928. )
  2929. (wire (pts (xy 150.495 76.2) (xy 142.875 76.2))
  2930. (stroke (width 0) (type default) (color 0 0 0 0))
  2931. (uuid 3bbb89e5-5fb0-4634-b39c-a59b8acde12c)
  2932. )
  2933. (wire (pts (xy 327.66 67.945) (xy 327.66 64.135))
  2934. (stroke (width 0) (type default) (color 0 0 0 0))
  2935. (uuid 3ce5e201-3e89-4189-8b64-53aef0874387)
  2936. )
  2937. (wire (pts (xy 24.13 232.41) (xy 24.13 229.87))
  2938. (stroke (width 0) (type default) (color 0 0 0 0))
  2939. (uuid 3d248af1-eb9c-49a0-99f5-5edfb87479e2)
  2940. )
  2941. (wire (pts (xy 57.785 141.605) (xy 65.405 141.605))
  2942. (stroke (width 0) (type default) (color 0 0 0 0))
  2943. (uuid 3d2d437b-a3c1-4c11-9645-030e91c33f24)
  2944. )
  2945. (wire (pts (xy 358.14 95.885) (xy 365.76 95.885))
  2946. (stroke (width 0) (type default) (color 0 0 0 0))
  2947. (uuid 40e2330c-bbf5-49c4-9344-5b74d92fc5a8)
  2948. )
  2949. (wire (pts (xy 160.655 234.95) (xy 160.655 236.22))
  2950. (stroke (width 0) (type default) (color 0 0 0 0))
  2951. (uuid 41a5819c-b449-4ba0-94b4-8e17b6b02b46)
  2952. )
  2953. (wire (pts (xy 188.595 208.915) (xy 196.215 208.915))
  2954. (stroke (width 0) (type default) (color 0 0 0 0))
  2955. (uuid 4303564c-fb25-4f39-899b-527cf02d3522)
  2956. )
  2957. (wire (pts (xy 167.64 125.73) (xy 167.64 127.635))
  2958. (stroke (width 0) (type default) (color 0 0 0 0))
  2959. (uuid 43ea99c8-e978-45de-81ed-f6558a0df871)
  2960. )
  2961. (wire (pts (xy 18.415 88.9) (xy 34.29 88.9))
  2962. (stroke (width 0) (type default) (color 0 0 0 0))
  2963. (uuid 44663391-cf44-473e-90b7-e64ea758b290)
  2964. )
  2965. (wire (pts (xy 317.5 183.515) (xy 312.42 183.515))
  2966. (stroke (width 0) (type default) (color 0 0 0 0))
  2967. (uuid 448aafce-3135-4272-8966-f1c9d0068471)
  2968. )
  2969. (wire (pts (xy 29.21 179.705) (xy 45.085 179.705))
  2970. (stroke (width 0) (type default) (color 0 0 0 0))
  2971. (uuid 44be440a-3388-425e-988a-9accd41f4b2d)
  2972. )
  2973. (wire (pts (xy 135.255 211.455) (xy 142.875 211.455))
  2974. (stroke (width 0) (type default) (color 0 0 0 0))
  2975. (uuid 45546fb2-2041-4fbe-bd91-ffc9888375fb)
  2976. )
  2977. (wire (pts (xy 281.94 51.435) (xy 281.94 48.895))
  2978. (stroke (width 0) (type default) (color 0 0 0 0))
  2979. (uuid 45b63c0e-fcc1-4cbd-82ca-a01f1d9fb411)
  2980. )
  2981. (wire (pts (xy 172.72 125.73) (xy 172.72 127.635))
  2982. (stroke (width 0) (type default) (color 0 0 0 0))
  2983. (uuid 45eac1e2-dd4d-4dba-8b53-72abac61c401)
  2984. )
  2985. (wire (pts (xy 140.97 180.975) (xy 142.875 180.975))
  2986. (stroke (width 0) (type default) (color 0 0 0 0))
  2987. (uuid 46125fdd-d39a-4a25-8e68-ca7c164836ce)
  2988. )
  2989. (wire (pts (xy 244.475 259.08) (xy 244.475 269.24))
  2990. (stroke (width 0) (type default) (color 0 0 0 0))
  2991. (uuid 4657539d-c5aa-4589-bf41-dfb789786fa8)
  2992. )
  2993. (wire (pts (xy 162.56 236.22) (xy 164.465 236.22))
  2994. (stroke (width 0) (type default) (color 0 0 0 0))
  2995. (uuid 466fab38-48dc-422b-bad7-7602d0828eee)
  2996. )
  2997. (wire (pts (xy 45.085 144.145) (xy 37.465 144.145))
  2998. (stroke (width 0) (type default) (color 0 0 0 0))
  2999. (uuid 46a20695-d45d-45b5-88be-68553dba1aff)
  3000. )
  3001. (wire (pts (xy 188.595 203.835) (xy 196.215 203.835))
  3002. (stroke (width 0) (type default) (color 0 0 0 0))
  3003. (uuid 46b6cf5f-dee0-4cfd-83a2-a26c59cd8488)
  3004. )
  3005. (wire (pts (xy 320.675 226.06) (xy 324.485 226.06))
  3006. (stroke (width 0) (type default) (color 0 0 0 0))
  3007. (uuid 475ffc36-e4b1-4c98-b947-096aa5289533)
  3008. )
  3009. (wire (pts (xy 358.14 141.605) (xy 365.76 141.605))
  3010. (stroke (width 0) (type default) (color 0 0 0 0))
  3011. (uuid 4773a689-b7d4-4fcc-b645-b4ca632229e2)
  3012. )
  3013. (wire (pts (xy 25.4 265.43) (xy 25.4 274.32))
  3014. (stroke (width 0) (type default) (color 0 0 0 0))
  3015. (uuid 48384f99-5662-45fc-8117-01cd621499c5)
  3016. )
  3017. (wire (pts (xy 504.19 142.875) (xy 508 142.875))
  3018. (stroke (width 0) (type default) (color 0 0 0 0))
  3019. (uuid 487d5b45-b7b0-46e3-89ec-bcbffcd1f02b)
  3020. )
  3021. (wire (pts (xy 30.48 237.49) (xy 30.48 246.38))
  3022. (stroke (width 0) (type default) (color 0 0 0 0))
  3023. (uuid 497f2953-3754-4427-ba49-55488e4d8fbe)
  3024. )
  3025. (wire (pts (xy 180.975 52.705) (xy 188.595 52.705))
  3026. (stroke (width 0) (type default) (color 0 0 0 0))
  3027. (uuid 4a25788d-aaf5-461b-82a3-cf3b54a3316b)
  3028. )
  3029. (wire (pts (xy 275.59 167.005) (xy 273.05 167.005))
  3030. (stroke (width 0) (type default) (color 0 0 0 0))
  3031. (uuid 4a6f8e05-7b90-4438-8d3a-524f9f6d9120)
  3032. )
  3033. (wire (pts (xy 358.14 93.345) (xy 365.76 93.345))
  3034. (stroke (width 0) (type default) (color 0 0 0 0))
  3035. (uuid 4a76b100-980a-41e9-96fe-5501c05c05cd)
  3036. )
  3037. (wire (pts (xy 327.66 183.515) (xy 325.12 183.515))
  3038. (stroke (width 0) (type default) (color 0 0 0 0))
  3039. (uuid 4a94d001-3f02-457f-93fe-0cecc425b872)
  3040. )
  3041. (wire (pts (xy 332.74 182.245) (xy 332.74 183.515))
  3042. (stroke (width 0) (type default) (color 0 0 0 0))
  3043. (uuid 4b552dfa-8dd2-48be-85b0-5f50b8bc3877)
  3044. )
  3045. (wire (pts (xy 266.7 78.105) (xy 271.78 78.105))
  3046. (stroke (width 0) (type default) (color 0 0 0 0))
  3047. (uuid 4b89ff78-0916-47f6-8999-b6b0fabe1255)
  3048. )
  3049. (wire (pts (xy 278.13 83.185) (xy 278.13 84.455))
  3050. (stroke (width 0) (type default) (color 0 0 0 0))
  3051. (uuid 4ba1b934-814a-405e-852c-9870ae4cbadd)
  3052. )
  3053. (wire (pts (xy 57.785 164.465) (xy 80.645 164.465))
  3054. (stroke (width 0) (type default) (color 0 0 0 0))
  3055. (uuid 4c0185d5-c5fc-4d85-b350-412333ba87df)
  3056. )
  3057. (wire (pts (xy 69.85 88.9) (xy 77.47 88.9))
  3058. (stroke (width 0) (type default) (color 0 0 0 0))
  3059. (uuid 4ca56063-ceb1-4ad3-9640-550f80f3fc1b)
  3060. )
  3061. (wire (pts (xy 271.78 89.535) (xy 271.78 98.425))
  3062. (stroke (width 0) (type default) (color 0 0 0 0))
  3063. (uuid 4d7b8309-e981-4f2d-9995-3174ff8bf4f1)
  3064. )
  3065. (wire (pts (xy 490.22 139.065) (xy 491.49 139.065))
  3066. (stroke (width 0) (type default) (color 0 0 0 0))
  3067. (uuid 4e1a5c9c-61e1-4358-962d-3c64e15c0e1d)
  3068. )
  3069. (wire (pts (xy 327.66 182.245) (xy 327.66 183.515))
  3070. (stroke (width 0) (type default) (color 0 0 0 0))
  3071. (uuid 4eb7f9f2-22a0-44eb-8226-2aa95c332007)
  3072. )
  3073. (wire (pts (xy 32.385 50.8) (xy 34.29 50.8))
  3074. (stroke (width 0) (type default) (color 0 0 0 0))
  3075. (uuid 4f232855-b6ad-4765-87e7-59f74bec3f06)
  3076. )
  3077. (wire (pts (xy 358.14 85.725) (xy 365.76 85.725))
  3078. (stroke (width 0) (type default) (color 0 0 0 0))
  3079. (uuid 4f3970a3-aebc-47fe-9f66-49d3a2f5340c)
  3080. )
  3081. (wire (pts (xy 69.85 104.14) (xy 77.47 104.14))
  3082. (stroke (width 0) (type default) (color 0 0 0 0))
  3083. (uuid 50b3e8e4-c658-4894-b20b-bbca760eaad5)
  3084. )
  3085. (wire (pts (xy 358.14 123.825) (xy 365.76 123.825))
  3086. (stroke (width 0) (type default) (color 0 0 0 0))
  3087. (uuid 51f40015-df93-4008-9f27-e01a154134ad)
  3088. )
  3089. (wire (pts (xy 308.61 51.435) (xy 303.53 51.435))
  3090. (stroke (width 0) (type default) (color 0 0 0 0))
  3091. (uuid 5291e82c-48fc-44df-b3c4-55f248d267f8)
  3092. )
  3093. (wire (pts (xy 180.975 62.865) (xy 188.595 62.865))
  3094. (stroke (width 0) (type default) (color 0 0 0 0))
  3095. (uuid 5292bc4c-5baa-4246-a4cb-80242181d946)
  3096. )
  3097. (wire (pts (xy 160.655 236.22) (xy 162.56 236.22))
  3098. (stroke (width 0) (type default) (color 0 0 0 0))
  3099. (uuid 52efa380-5ff3-44ff-92cf-da0ebad10acb)
  3100. )
  3101. (wire (pts (xy 188.595 153.035) (xy 196.215 153.035))
  3102. (stroke (width 0) (type default) (color 0 0 0 0))
  3103. (uuid 53677c99-47a3-462b-bf03-859cefa8457d)
  3104. )
  3105. (wire (pts (xy 273.05 167.005) (xy 273.05 169.545))
  3106. (stroke (width 0) (type default) (color 0 0 0 0))
  3107. (uuid 53a56642-8f61-43fb-af3c-7b0217de1e5c)
  3108. )
  3109. (wire (pts (xy 278.13 89.535) (xy 278.13 98.425))
  3110. (stroke (width 0) (type default) (color 0 0 0 0))
  3111. (uuid 53c6af67-db27-445c-9a72-8978b286aaf1)
  3112. )
  3113. (wire (pts (xy 69.85 45.72) (xy 77.47 45.72))
  3114. (stroke (width 0) (type default) (color 0 0 0 0))
  3115. (uuid 547f4c03-64c7-43b9-bc47-d4c54132bc67)
  3116. )
  3117. (wire (pts (xy 140.97 145.415) (xy 142.875 145.415))
  3118. (stroke (width 0) (type default) (color 0 0 0 0))
  3119. (uuid 54be1580-cbd7-496e-9971-6a1385f8bb73)
  3120. )
  3121. (wire (pts (xy 279.4 159.385) (xy 279.4 161.925))
  3122. (stroke (width 0) (type default) (color 0 0 0 0))
  3123. (uuid 5567e6c8-125a-47c0-9607-23792be3de61)
  3124. )
  3125. (wire (pts (xy 273.05 174.625) (xy 273.05 183.515))
  3126. (stroke (width 0) (type default) (color 0 0 0 0))
  3127. (uuid 55d2e87d-9683-4f9f-b9f2-adcd08ae181d)
  3128. )
  3129. (wire (pts (xy 188.595 163.195) (xy 196.215 163.195))
  3130. (stroke (width 0) (type default) (color 0 0 0 0))
  3131. (uuid 56938638-017f-4cc6-916d-8153cc5ae811)
  3132. )
  3133. (wire (pts (xy 137.16 142.875) (xy 142.875 142.875))
  3134. (stroke (width 0) (type default) (color 0 0 0 0))
  3135. (uuid 56b5e32f-c828-4c30-8f7b-e94dfc52ce76)
  3136. )
  3137. (wire (pts (xy 73.66 169.545) (xy 57.785 169.545))
  3138. (stroke (width 0) (type default) (color 0 0 0 0))
  3139. (uuid 574c0dac-a0e0-4d82-83e7-48650d4046a5)
  3140. )
  3141. (wire (pts (xy 279.4 48.895) (xy 281.94 48.895))
  3142. (stroke (width 0) (type default) (color 0 0 0 0))
  3143. (uuid 57e43de3-cf8a-4325-abab-6f55f98465aa)
  3144. )
  3145. (wire (pts (xy 57.785 149.225) (xy 65.405 149.225))
  3146. (stroke (width 0) (type default) (color 0 0 0 0))
  3147. (uuid 5bc0e173-83a5-4728-855d-f5f368092571)
  3148. )
  3149. (wire (pts (xy 335.28 183.515) (xy 332.74 183.515))
  3150. (stroke (width 0) (type default) (color 0 0 0 0))
  3151. (uuid 5bda0506-fe02-4937-850a-e28a841287ac)
  3152. )
  3153. (wire (pts (xy 180.975 60.325) (xy 188.595 60.325))
  3154. (stroke (width 0) (type default) (color 0 0 0 0))
  3155. (uuid 5c11c751-ddab-4a7d-97a0-0f383694621c)
  3156. )
  3157. (wire (pts (xy 166.37 236.22) (xy 166.37 234.95))
  3158. (stroke (width 0) (type default) (color 0 0 0 0))
  3159. (uuid 5cac935f-bed5-4826-b74a-acd2beda4e8e)
  3160. )
  3161. (wire (pts (xy 27.94 161.925) (xy 45.085 161.925))
  3162. (stroke (width 0) (type default) (color 0 0 0 0))
  3163. (uuid 5d531df2-f187-4a65-9c5c-d5c445b27305)
  3164. )
  3165. (wire (pts (xy 57.785 159.385) (xy 65.405 159.385))
  3166. (stroke (width 0) (type default) (color 0 0 0 0))
  3167. (uuid 5dcb064f-b8cc-4b78-9ce2-fa7ed744d52f)
  3168. )
  3169. (wire (pts (xy 43.18 149.225) (xy 45.085 149.225))
  3170. (stroke (width 0) (type default) (color 0 0 0 0))
  3171. (uuid 5ea5a050-09c2-45b9-a4a7-2693da47d229)
  3172. )
  3173. (wire (pts (xy 358.14 80.645) (xy 365.76 80.645))
  3174. (stroke (width 0) (type default) (color 0 0 0 0))
  3175. (uuid 5edf64e2-0a56-454d-9e31-17d538c509b0)
  3176. )
  3177. (wire (pts (xy 59.69 179.705) (xy 57.785 179.705))
  3178. (stroke (width 0) (type default) (color 0 0 0 0))
  3179. (uuid 5fd094db-b646-4282-8f33-1439f6e31110)
  3180. )
  3181. (wire (pts (xy 303.53 51.435) (xy 288.29 51.435))
  3182. (stroke (width 0) (type default) (color 0 0 0 0))
  3183. (uuid 60becf28-2760-442a-a2da-126ee2f5f830)
  3184. )
  3185. (wire (pts (xy 188.595 206.375) (xy 196.215 206.375))
  3186. (stroke (width 0) (type default) (color 0 0 0 0))
  3187. (uuid 60d3af16-241c-4783-8510-9b297e462874)
  3188. )
  3189. (wire (pts (xy 320.675 208.28) (xy 333.375 208.28))
  3190. (stroke (width 0) (type default) (color 0 0 0 0))
  3191. (uuid 60dbcf18-dbca-4b2a-8ee5-b1c53c1cc7b7)
  3192. )
  3193. (wire (pts (xy 142.875 193.675) (xy 135.255 193.675))
  3194. (stroke (width 0) (type default) (color 0 0 0 0))
  3195. (uuid 610f36fe-16af-4592-bdd4-d3f3ee940bcb)
  3196. )
  3197. (wire (pts (xy 142.875 203.835) (xy 135.255 203.835))
  3198. (stroke (width 0) (type default) (color 0 0 0 0))
  3199. (uuid 6156e238-85a0-4ebe-ab68-da718f9ec68c)
  3200. )
  3201. (wire (pts (xy 21.59 229.87) (xy 24.13 229.87))
  3202. (stroke (width 0) (type default) (color 0 0 0 0))
  3203. (uuid 617014ea-fceb-4e5f-b8b5-136158093520)
  3204. )
  3205. (wire (pts (xy 52.07 111.76) (xy 52.07 113.03))
  3206. (stroke (width 0) (type default) (color 0 0 0 0))
  3207. (uuid 62d1adc3-65d1-4b3b-a4d6-c259b111efee)
  3208. )
  3209. (wire (pts (xy 69.85 81.28) (xy 77.47 81.28))
  3210. (stroke (width 0) (type default) (color 0 0 0 0))
  3211. (uuid 62f9eaf4-01ad-4723-88aa-ddcbd7da3373)
  3212. )
  3213. (wire (pts (xy 335.28 67.945) (xy 335.28 70.485))
  3214. (stroke (width 0) (type default) (color 0 0 0 0))
  3215. (uuid 64407306-1a1c-4c9a-95a1-382daeb1ccf1)
  3216. )
  3217. (wire (pts (xy 297.18 48.895) (xy 317.5 48.895))
  3218. (stroke (width 0) (type default) (color 0 0 0 0))
  3219. (uuid 644e086f-74a6-4bbf-844c-fce350781586)
  3220. )
  3221. (wire (pts (xy 166.37 236.22) (xy 168.275 236.22))
  3222. (stroke (width 0) (type default) (color 0 0 0 0))
  3223. (uuid 647b24b4-956a-4dc7-b698-9d331f9dc51d)
  3224. )
  3225. (wire (pts (xy 188.595 219.075) (xy 196.215 219.075))
  3226. (stroke (width 0) (type default) (color 0 0 0 0))
  3227. (uuid 65332378-6c61-4210-93b4-b6666b56c383)
  3228. )
  3229. (wire (pts (xy 52.07 34.29) (xy 52.07 35.56))
  3230. (stroke (width 0) (type default) (color 0 0 0 0))
  3231. (uuid 65d3ba4b-6186-4bf4-92bc-015d2a926141)
  3232. )
  3233. (wire (pts (xy 188.595 211.455) (xy 196.215 211.455))
  3234. (stroke (width 0) (type default) (color 0 0 0 0))
  3235. (uuid 674e0a98-318f-4711-8ab4-c95641f5b151)
  3236. )
  3237. (wire (pts (xy 73.66 182.245) (xy 57.785 182.245))
  3238. (stroke (width 0) (type default) (color 0 0 0 0))
  3239. (uuid 675efbfb-4593-4fc7-9bb8-94132e9fd9d0)
  3240. )
  3241. (wire (pts (xy 140.97 173.355) (xy 142.875 173.355))
  3242. (stroke (width 0) (type default) (color 0 0 0 0))
  3243. (uuid 677f8fea-4fd0-49d3-bdeb-8655529f9cef)
  3244. )
  3245. (wire (pts (xy 18.415 73.66) (xy 34.29 73.66))
  3246. (stroke (width 0) (type default) (color 0 0 0 0))
  3247. (uuid 67c30834-6655-49f6-9812-c7b5bd28404e)
  3248. )
  3249. (wire (pts (xy 188.595 191.135) (xy 196.215 191.135))
  3250. (stroke (width 0) (type default) (color 0 0 0 0))
  3251. (uuid 67c4cfae-e0c7-4a9c-96ae-7b05bdf38825)
  3252. )
  3253. (wire (pts (xy 339.725 236.22) (xy 339.725 210.82))
  3254. (stroke (width 0) (type default) (color 0 0 0 0))
  3255. (uuid 6828da31-d523-4450-95c5-89409aeeb198)
  3256. )
  3257. (wire (pts (xy 330.835 210.82) (xy 330.835 233.68))
  3258. (stroke (width 0) (type default) (color 0 0 0 0))
  3259. (uuid 696234d6-bb73-47b1-a647-77a7a886c3b9)
  3260. )
  3261. (wire (pts (xy 358.14 78.105) (xy 365.76 78.105))
  3262. (stroke (width 0) (type default) (color 0 0 0 0))
  3263. (uuid 69920220-1154-448b-8642-faa6cb011a98)
  3264. )
  3265. (wire (pts (xy 358.14 103.505) (xy 365.76 103.505))
  3266. (stroke (width 0) (type default) (color 0 0 0 0))
  3267. (uuid 6a2ed688-1f78-40c2-9448-36cb08aac9ff)
  3268. )
  3269. (wire (pts (xy 69.85 66.04) (xy 77.47 66.04))
  3270. (stroke (width 0) (type default) (color 0 0 0 0))
  3271. (uuid 6ac0048e-ab2c-48c1-b602-e7189dbc4837)
  3272. )
  3273. (wire (pts (xy 172.085 236.22) (xy 172.085 234.95))
  3274. (stroke (width 0) (type default) (color 0 0 0 0))
  3275. (uuid 6b235e2a-6d68-4d00-808b-5520fd484d91)
  3276. )
  3277. (wire (pts (xy 168.275 236.22) (xy 168.275 234.95))
  3278. (stroke (width 0) (type default) (color 0 0 0 0))
  3279. (uuid 6bbfc329-c9c1-4551-9c8a-8930cdeb75bc)
  3280. )
  3281. (wire (pts (xy 330.2 182.245) (xy 330.2 183.515))
  3282. (stroke (width 0) (type default) (color 0 0 0 0))
  3283. (uuid 6bd09109-0149-4c8d-bdfa-e25432bb81fe)
  3284. )
  3285. (wire (pts (xy 477.52 137.795) (xy 490.22 137.795))
  3286. (stroke (width 0) (type default) (color 0 0 0 0))
  3287. (uuid 6c07755a-6909-46d9-ad49-2608817cdf88)
  3288. )
  3289. (wire (pts (xy 358.14 133.985) (xy 365.76 133.985))
  3290. (stroke (width 0) (type default) (color 0 0 0 0))
  3291. (uuid 6c1f6258-b33b-4974-a385-f8d7d7d78113)
  3292. )
  3293. (wire (pts (xy 160.02 125.73) (xy 161.925 125.73))
  3294. (stroke (width 0) (type default) (color 0 0 0 0))
  3295. (uuid 6c66bd17-eb67-40aa-baa2-427ac9849d6a)
  3296. )
  3297. (wire (pts (xy 312.42 183.515) (xy 297.18 183.515))
  3298. (stroke (width 0) (type default) (color 0 0 0 0))
  3299. (uuid 6ca2526b-8cde-4129-827b-e7a22cd40f39)
  3300. )
  3301. (wire (pts (xy 45.085 169.545) (xy 37.465 169.545))
  3302. (stroke (width 0) (type default) (color 0 0 0 0))
  3303. (uuid 6cb0d48b-cc4d-4f1a-b60a-8edab0302f5d)
  3304. )
  3305. (wire (pts (xy 180.975 55.245) (xy 188.595 55.245))
  3306. (stroke (width 0) (type default) (color 0 0 0 0))
  3307. (uuid 6d7e7c21-ac3e-4ab4-851f-81ae47d283db)
  3308. )
  3309. (wire (pts (xy 264.795 252.73) (xy 266.065 252.73))
  3310. (stroke (width 0) (type default) (color 0 0 0 0))
  3311. (uuid 6f2a8f9c-afd1-48c5-b1e2-a9ff2f30fc2f)
  3312. )
  3313. (wire (pts (xy 322.58 70.485) (xy 322.58 67.945))
  3314. (stroke (width 0) (type default) (color 0 0 0 0))
  3315. (uuid 711f238c-779f-46e3-901e-44043655f3e0)
  3316. )
  3317. (wire (pts (xy 140.97 170.815) (xy 142.875 170.815))
  3318. (stroke (width 0) (type default) (color 0 0 0 0))
  3319. (uuid 716a5e61-0007-4b41-9c38-d6c4d8a2a2ee)
  3320. )
  3321. (wire (pts (xy 31.75 260.35) (xy 31.75 257.81))
  3322. (stroke (width 0) (type default) (color 0 0 0 0))
  3323. (uuid 71f29097-65b6-4d81-bd75-08abec15a63e)
  3324. )
  3325. (wire (pts (xy 174.625 125.73) (xy 174.625 127.635))
  3326. (stroke (width 0) (type default) (color 0 0 0 0))
  3327. (uuid 72a3a78c-50e6-4054-ae06-a6f73ce5ebf4)
  3328. )
  3329. (wire (pts (xy 142.875 102.87) (xy 150.495 102.87))
  3330. (stroke (width 0) (type default) (color 0 0 0 0))
  3331. (uuid 7366c128-11f4-4dcb-a4d8-13981027e1a8)
  3332. )
  3333. (wire (pts (xy 57.785 151.765) (xy 65.405 151.765))
  3334. (stroke (width 0) (type default) (color 0 0 0 0))
  3335. (uuid 74e85b92-27aa-4705-a17c-5dc6a4c10a38)
  3336. )
  3337. (wire (pts (xy 43.18 177.165) (xy 45.085 177.165))
  3338. (stroke (width 0) (type default) (color 0 0 0 0))
  3339. (uuid 74f9722e-aecc-40fb-9714-aafc891895e4)
  3340. )
  3341. (wire (pts (xy 340.36 70.485) (xy 340.36 67.945))
  3342. (stroke (width 0) (type default) (color 0 0 0 0))
  3343. (uuid 750f8145-f716-4af5-82da-b869866626f0)
  3344. )
  3345. (wire (pts (xy 260.35 76.835) (xy 260.35 83.185))
  3346. (stroke (width 0) (type default) (color 0 0 0 0))
  3347. (uuid 7528f173-538a-4a13-a499-5bf233aab165)
  3348. )
  3349. (wire (pts (xy 320.675 223.52) (xy 323.215 223.52))
  3350. (stroke (width 0) (type default) (color 0 0 0 0))
  3351. (uuid 7595f206-69dc-423f-a5a7-bb67916b018c)
  3352. )
  3353. (wire (pts (xy 188.595 196.215) (xy 196.215 196.215))
  3354. (stroke (width 0) (type default) (color 0 0 0 0))
  3355. (uuid 769fe323-b3f6-486f-b33b-51d3d6cf805f)
  3356. )
  3357. (wire (pts (xy 292.1 116.205) (xy 297.18 116.205))
  3358. (stroke (width 0) (type default) (color 0 0 0 0))
  3359. (uuid 784af994-0055-45c6-9d6b-5edabae71cd6)
  3360. )
  3361. (wire (pts (xy 339.725 236.22) (xy 342.265 236.22))
  3362. (stroke (width 0) (type default) (color 0 0 0 0))
  3363. (uuid 7877dec2-40fd-47fb-ad3f-b90c61e1c8fc)
  3364. )
  3365. (wire (pts (xy 477.52 140.335) (xy 488.95 140.335))
  3366. (stroke (width 0) (type default) (color 0 0 0 0))
  3367. (uuid 78d953ff-9c91-47a3-b114-c1ca3d98486c)
  3368. )
  3369. (wire (pts (xy 165.735 114.3) (xy 165.735 115.57))
  3370. (stroke (width 0) (type default) (color 0 0 0 0))
  3371. (uuid 7a45b38b-47a8-429a-9ddd-20410b987ce8)
  3372. )
  3373. (wire (pts (xy 140.97 175.895) (xy 142.875 175.895))
  3374. (stroke (width 0) (type default) (color 0 0 0 0))
  3375. (uuid 7a797e76-ff99-4a87-aeb7-193d995da1eb)
  3376. )
  3377. (wire (pts (xy 142.875 196.215) (xy 135.255 196.215))
  3378. (stroke (width 0) (type default) (color 0 0 0 0))
  3379. (uuid 7ad8334f-dba2-4968-ae1c-73ae836c41f3)
  3380. )
  3381. (wire (pts (xy 329.565 231.14) (xy 333.375 231.14))
  3382. (stroke (width 0) (type default) (color 0 0 0 0))
  3383. (uuid 7aedea84-ba3d-4321-a3c0-812e4683f225)
  3384. )
  3385. (wire (pts (xy 323.215 223.52) (xy 337.185 223.52))
  3386. (stroke (width 0) (type default) (color 0 0 0 0))
  3387. (uuid 7baf1ecf-14de-453a-a00d-346a3f5c1ed6)
  3388. )
  3389. (wire (pts (xy 196.215 150.495) (xy 188.595 150.495))
  3390. (stroke (width 0) (type default) (color 0 0 0 0))
  3391. (uuid 7c4dcaf4-369e-4c4b-a928-41e3e19bf32c)
  3392. )
  3393. (wire (pts (xy 333.375 208.28) (xy 333.375 215.9))
  3394. (stroke (width 0) (type default) (color 0 0 0 0))
  3395. (uuid 7c6b282d-8b1a-413f-878d-5fedcdc77897)
  3396. )
  3397. (wire (pts (xy 358.14 111.125) (xy 365.76 111.125))
  3398. (stroke (width 0) (type default) (color 0 0 0 0))
  3399. (uuid 7d897928-4d2c-4f3a-80c4-e4e156435049)
  3400. )
  3401. (wire (pts (xy 168.275 236.22) (xy 170.18 236.22))
  3402. (stroke (width 0) (type default) (color 0 0 0 0))
  3403. (uuid 7dc91550-284d-4b8e-81a2-a6e4397cbd49)
  3404. )
  3405. (wire (pts (xy 188.595 168.275) (xy 196.215 168.275))
  3406. (stroke (width 0) (type default) (color 0 0 0 0))
  3407. (uuid 7e58c351-ced9-4c3d-9341-e4d96c34304c)
  3408. )
  3409. (wire (pts (xy 358.14 113.665) (xy 365.76 113.665))
  3410. (stroke (width 0) (type default) (color 0 0 0 0))
  3411. (uuid 7f3ba9da-6919-46bb-9fbd-f0775cc5f4ae)
  3412. )
  3413. (wire (pts (xy 354.965 220.98) (xy 354.965 226.06))
  3414. (stroke (width 0) (type default) (color 0 0 0 0))
  3415. (uuid 7f44a6bf-4421-4078-8436-1729c68e9104)
  3416. )
  3417. (wire (pts (xy 324.485 220.98) (xy 349.885 220.98))
  3418. (stroke (width 0) (type default) (color 0 0 0 0))
  3419. (uuid 7fc232a3-e1c5-4895-b92d-dae88209412a)
  3420. )
  3421. (wire (pts (xy 162.56 234.95) (xy 162.56 236.22))
  3422. (stroke (width 0) (type default) (color 0 0 0 0))
  3423. (uuid 82915c21-881e-4be1-9afd-1b36f59c84fe)
  3424. )
  3425. (wire (pts (xy 266.065 252.73) (xy 266.065 254))
  3426. (stroke (width 0) (type default) (color 0 0 0 0))
  3427. (uuid 83068d9e-9e55-4f91-8f57-d8293a3e8280)
  3428. )
  3429. (wire (pts (xy 188.595 160.655) (xy 196.215 160.655))
  3430. (stroke (width 0) (type default) (color 0 0 0 0))
  3431. (uuid 84d0bb8b-e524-47b6-be5c-f564d42e06d3)
  3432. )
  3433. (wire (pts (xy 45.085 156.845) (xy 37.465 156.845))
  3434. (stroke (width 0) (type default) (color 0 0 0 0))
  3435. (uuid 84d24a5f-1898-46b3-941b-39cf8c4e997f)
  3436. )
  3437. (wire (pts (xy 358.14 118.745) (xy 365.76 118.745))
  3438. (stroke (width 0) (type default) (color 0 0 0 0))
  3439. (uuid 84d359f9-67f5-4ac6-9278-01a057961afd)
  3440. )
  3441. (wire (pts (xy 241.935 252.73) (xy 244.475 252.73))
  3442. (stroke (width 0) (type default) (color 0 0 0 0))
  3443. (uuid 85e1bb52-a6ff-414d-95f5-8be60e4af55b)
  3444. )
  3445. (wire (pts (xy 80.645 164.465) (xy 80.645 165.1))
  3446. (stroke (width 0) (type default) (color 0 0 0 0))
  3447. (uuid 8691a8c9-f14e-4c6b-aa1a-dd3b069e59e3)
  3448. )
  3449. (wire (pts (xy 24.13 229.87) (xy 30.48 229.87))
  3450. (stroke (width 0) (type default) (color 0 0 0 0))
  3451. (uuid 86c4ea5e-e5e0-42f3-a385-e47992f1a0ca)
  3452. )
  3453. (wire (pts (xy 69.85 68.58) (xy 77.47 68.58))
  3454. (stroke (width 0) (type default) (color 0 0 0 0))
  3455. (uuid 886477ae-92b8-43e6-afb5-5624b4ae7ef7)
  3456. )
  3457. (wire (pts (xy 285.75 167.005) (xy 285.75 169.545))
  3458. (stroke (width 0) (type default) (color 0 0 0 0))
  3459. (uuid 88803f5a-6081-45e2-9f6d-2e478b8a2b28)
  3460. )
  3461. (wire (pts (xy 308.61 51.435) (xy 314.96 51.435))
  3462. (stroke (width 0) (type default) (color 0 0 0 0))
  3463. (uuid 88a6949b-a25e-424f-85d9-efb1f61eca68)
  3464. )
  3465. (wire (pts (xy 386.715 210.82) (xy 386.715 214.63))
  3466. (stroke (width 0) (type default) (color 0 0 0 0))
  3467. (uuid 893cf2f8-9c8a-4429-b20e-471d0a3ec037)
  3468. )
  3469. (wire (pts (xy 260.35 83.185) (xy 278.13 83.185))
  3470. (stroke (width 0) (type default) (color 0 0 0 0))
  3471. (uuid 89647d2a-81df-402e-8067-941f5de833d6)
  3472. )
  3473. (wire (pts (xy 150.495 83.82) (xy 142.875 83.82))
  3474. (stroke (width 0) (type default) (color 0 0 0 0))
  3475. (uuid 8ba3777e-1ead-4ad6-978c-bb8c8e01a7bf)
  3476. )
  3477. (wire (pts (xy 188.595 175.895) (xy 196.215 175.895))
  3478. (stroke (width 0) (type default) (color 0 0 0 0))
  3479. (uuid 8c1cf1c6-0b4f-48cf-92e8-fae55e515129)
  3480. )
  3481. (wire (pts (xy 274.955 256.54) (xy 274.955 252.73))
  3482. (stroke (width 0) (type default) (color 0 0 0 0))
  3483. (uuid 8c33c491-8835-4974-a5c5-58f72d77e789)
  3484. )
  3485. (wire (pts (xy 170.18 236.22) (xy 172.085 236.22))
  3486. (stroke (width 0) (type default) (color 0 0 0 0))
  3487. (uuid 8f23a84f-fa26-45aa-adc6-6dd7d46124f6)
  3488. )
  3489. (wire (pts (xy 358.14 139.065) (xy 365.76 139.065))
  3490. (stroke (width 0) (type default) (color 0 0 0 0))
  3491. (uuid 8f583fea-c1c6-4e8c-9353-c3fafef795df)
  3492. )
  3493. (wire (pts (xy 73.66 172.085) (xy 57.785 172.085))
  3494. (stroke (width 0) (type default) (color 0 0 0 0))
  3495. (uuid 920833bc-6a45-422c-9817-bdc6a6fb7783)
  3496. )
  3497. (wire (pts (xy 140.97 147.955) (xy 142.875 147.955))
  3498. (stroke (width 0) (type default) (color 0 0 0 0))
  3499. (uuid 925ecc0a-7511-410f-b7aa-addf62ef0bb5)
  3500. )
  3501. (wire (pts (xy 188.595 155.575) (xy 196.215 155.575))
  3502. (stroke (width 0) (type default) (color 0 0 0 0))
  3503. (uuid 930bbd1d-f220-46ca-8bd5-8af570500dd3)
  3504. )
  3505. (wire (pts (xy 188.595 221.615) (xy 196.215 221.615))
  3506. (stroke (width 0) (type default) (color 0 0 0 0))
  3507. (uuid 93edceb1-4fd6-4c7f-8431-961e2c7ca2a1)
  3508. )
  3509. (wire (pts (xy 57.785 161.925) (xy 65.405 161.925))
  3510. (stroke (width 0) (type default) (color 0 0 0 0))
  3511. (uuid 943387fe-a53a-4258-ba9d-ddceac1728ef)
  3512. )
  3513. (wire (pts (xy 327.66 70.485) (xy 327.66 67.945))
  3514. (stroke (width 0) (type default) (color 0 0 0 0))
  3515. (uuid 94511824-6d6e-4b0e-9f9d-d08bada94981)
  3516. )
  3517. (wire (pts (xy 164.465 236.22) (xy 165.735 236.22))
  3518. (stroke (width 0) (type default) (color 0 0 0 0))
  3519. (uuid 954ca4ff-da7b-41ba-9aec-ec89ec9f1144)
  3520. )
  3521. (wire (pts (xy 358.14 136.525) (xy 365.76 136.525))
  3522. (stroke (width 0) (type default) (color 0 0 0 0))
  3523. (uuid 95a11343-e71a-4e21-af18-a0b9e8027759)
  3524. )
  3525. (wire (pts (xy 282.575 248.92) (xy 282.575 252.73))
  3526. (stroke (width 0) (type default) (color 0 0 0 0))
  3527. (uuid 95dfeba3-759e-4761-abdf-7ebe19597cef)
  3528. )
  3529. (wire (pts (xy 150.495 58.42) (xy 142.875 58.42))
  3530. (stroke (width 0) (type default) (color 0 0 0 0))
  3531. (uuid 96527bfc-4784-49c1-9346-45ab8883aa2e)
  3532. )
  3533. (wire (pts (xy 284.48 116.205) (xy 287.02 116.205))
  3534. (stroke (width 0) (type default) (color 0 0 0 0))
  3535. (uuid 967e946c-a31d-447c-b50f-44711e8e8d95)
  3536. )
  3537. (wire (pts (xy 127 153.035) (xy 142.875 153.035))
  3538. (stroke (width 0) (type default) (color 0 0 0 0))
  3539. (uuid 96b8e3fe-2791-4000-a6dc-59002f163561)
  3540. )
  3541. (wire (pts (xy 349.885 248.92) (xy 349.885 246.38))
  3542. (stroke (width 0) (type default) (color 0 0 0 0))
  3543. (uuid 971fb725-05f6-4212-92fb-a380a31105eb)
  3544. )
  3545. (wire (pts (xy 320.675 233.68) (xy 330.835 233.68))
  3546. (stroke (width 0) (type default) (color 0 0 0 0))
  3547. (uuid 974844ad-3256-4268-9f35-e2dc490d1727)
  3548. )
  3549. (wire (pts (xy 29.21 184.785) (xy 45.085 184.785))
  3550. (stroke (width 0) (type default) (color 0 0 0 0))
  3551. (uuid 97b12248-7eb7-487f-bb75-bb7e5a04b09c)
  3552. )
  3553. (wire (pts (xy 329.565 215.9) (xy 333.375 215.9))
  3554. (stroke (width 0) (type default) (color 0 0 0 0))
  3555. (uuid 97df9895-08bd-4b59-9017-db122617e68b)
  3556. )
  3557. (wire (pts (xy 69.85 60.96) (xy 77.47 60.96))
  3558. (stroke (width 0) (type default) (color 0 0 0 0))
  3559. (uuid 984ba17b-c325-4cfb-baa0-8df2ef0c0af9)
  3560. )
  3561. (wire (pts (xy 332.74 67.945) (xy 335.28 67.945))
  3562. (stroke (width 0) (type default) (color 0 0 0 0))
  3563. (uuid 98fd41d1-2881-4a31-9561-ecc657b40b84)
  3564. )
  3565. (wire (pts (xy 358.14 126.365) (xy 365.76 126.365))
  3566. (stroke (width 0) (type default) (color 0 0 0 0))
  3567. (uuid 99236368-aa89-47f6-ab12-6ee21b73382c)
  3568. )
  3569. (wire (pts (xy 165.735 125.73) (xy 165.735 127.635))
  3570. (stroke (width 0) (type default) (color 0 0 0 0))
  3571. (uuid 9925422c-090d-4277-80f7-326c7259ac97)
  3572. )
  3573. (wire (pts (xy 160.02 125.73) (xy 160.02 127.635))
  3574. (stroke (width 0) (type default) (color 0 0 0 0))
  3575. (uuid 9a2494a2-e51f-4f32-9f6a-3735fd868e0f)
  3576. )
  3577. (wire (pts (xy 283.21 167.005) (xy 285.75 167.005))
  3578. (stroke (width 0) (type default) (color 0 0 0 0))
  3579. (uuid 9a6a9616-332c-43e7-b3c1-6ad16cfca4d7)
  3580. )
  3581. (wire (pts (xy 188.595 173.355) (xy 196.215 173.355))
  3582. (stroke (width 0) (type default) (color 0 0 0 0))
  3583. (uuid 9a97ba0b-f372-482f-9091-a46065a5bfe7)
  3584. )
  3585. (wire (pts (xy 172.72 125.73) (xy 174.625 125.73))
  3586. (stroke (width 0) (type default) (color 0 0 0 0))
  3587. (uuid 9addad72-61d4-46ec-ace4-3afbdb42a581)
  3588. )
  3589. (wire (pts (xy 273.05 167.005) (xy 273.05 156.845))
  3590. (stroke (width 0) (type default) (color 0 0 0 0))
  3591. (uuid 9b95261c-8709-4afb-bb4f-8e824a02e02e)
  3592. )
  3593. (wire (pts (xy 127 168.275) (xy 142.875 168.275))
  3594. (stroke (width 0) (type default) (color 0 0 0 0))
  3595. (uuid 9ce00f21-cb89-4f68-bcd0-bc4274c7906a)
  3596. )
  3597. (wire (pts (xy 320.675 236.22) (xy 333.375 236.22))
  3598. (stroke (width 0) (type default) (color 0 0 0 0))
  3599. (uuid 9df456f7-ab5c-46e8-ba0e-02355b66a595)
  3600. )
  3601. (wire (pts (xy 69.85 55.88) (xy 77.47 55.88))
  3602. (stroke (width 0) (type default) (color 0 0 0 0))
  3603. (uuid 9dffea22-0413-41d2-b1c6-184e1e1cfea8)
  3604. )
  3605. (wire (pts (xy 167.64 125.73) (xy 172.72 125.73))
  3606. (stroke (width 0) (type default) (color 0 0 0 0))
  3607. (uuid 9e7413be-7425-4e0b-88f0-9d1706353d64)
  3608. )
  3609. (wire (pts (xy 285.75 167.005) (xy 297.18 167.005))
  3610. (stroke (width 0) (type default) (color 0 0 0 0))
  3611. (uuid 9ee3f16a-abf8-47a2-9ab4-12b4235f1f83)
  3612. )
  3613. (wire (pts (xy 163.83 113.665) (xy 163.83 114.3))
  3614. (stroke (width 0) (type default) (color 0 0 0 0))
  3615. (uuid a0e535ad-02db-47e4-a497-460594478662)
  3616. )
  3617. (wire (pts (xy 358.14 83.185) (xy 365.76 83.185))
  3618. (stroke (width 0) (type default) (color 0 0 0 0))
  3619. (uuid a18520f2-851e-4914-af51-2ef54dfdd02d)
  3620. )
  3621. (wire (pts (xy 69.85 53.34) (xy 77.47 53.34))
  3622. (stroke (width 0) (type default) (color 0 0 0 0))
  3623. (uuid a2238367-fa97-40e6-9c58-4f73c08aab2a)
  3624. )
  3625. (wire (pts (xy 488.95 142.875) (xy 491.49 142.875))
  3626. (stroke (width 0) (type default) (color 0 0 0 0))
  3627. (uuid a2b12275-8129-4dd0-823d-a7069897afcc)
  3628. )
  3629. (wire (pts (xy 142.875 107.95) (xy 150.495 107.95))
  3630. (stroke (width 0) (type default) (color 0 0 0 0))
  3631. (uuid a406959c-8232-4b56-bcc1-bbc0db04e4ce)
  3632. )
  3633. (wire (pts (xy 283.21 111.125) (xy 287.02 111.125))
  3634. (stroke (width 0) (type default) (color 0 0 0 0))
  3635. (uuid a4822e49-359c-4bb3-8bf9-672af83b0e32)
  3636. )
  3637. (wire (pts (xy 320.675 220.98) (xy 324.485 220.98))
  3638. (stroke (width 0) (type default) (color 0 0 0 0))
  3639. (uuid a4afc350-b3f6-4f25-960a-b8c12e50c4ef)
  3640. )
  3641. (wire (pts (xy 283.21 51.435) (xy 281.94 51.435))
  3642. (stroke (width 0) (type default) (color 0 0 0 0))
  3643. (uuid a4e733a6-aa30-4110-ab81-db742c34b176)
  3644. )
  3645. (wire (pts (xy 69.85 99.06) (xy 77.47 99.06))
  3646. (stroke (width 0) (type default) (color 0 0 0 0))
  3647. (uuid a601248f-7b6a-400d-a17d-6680be7a277a)
  3648. )
  3649. (wire (pts (xy 57.785 154.305) (xy 65.405 154.305))
  3650. (stroke (width 0) (type default) (color 0 0 0 0))
  3651. (uuid a626e972-f041-4d91-9a57-6bc9cdb62791)
  3652. )
  3653. (wire (pts (xy 180.975 65.405) (xy 188.595 65.405))
  3654. (stroke (width 0) (type default) (color 0 0 0 0))
  3655. (uuid a843e9a0-5b9b-4f11-8a50-0fc9af6e6344)
  3656. )
  3657. (wire (pts (xy 45.085 164.465) (xy 37.465 164.465))
  3658. (stroke (width 0) (type default) (color 0 0 0 0))
  3659. (uuid a91cd32a-2717-45e9-a7fe-d98ecd59ed9a)
  3660. )
  3661. (wire (pts (xy 180.975 70.485) (xy 188.595 70.485))
  3662. (stroke (width 0) (type default) (color 0 0 0 0))
  3663. (uuid a9258704-815a-4bfc-9002-c256d0e1af49)
  3664. )
  3665. (wire (pts (xy 45.085 141.605) (xy 37.465 141.605))
  3666. (stroke (width 0) (type default) (color 0 0 0 0))
  3667. (uuid a94f4347-11aa-4f38-a686-6f1751ffea67)
  3668. )
  3669. (wire (pts (xy 188.595 216.535) (xy 196.215 216.535))
  3670. (stroke (width 0) (type default) (color 0 0 0 0))
  3671. (uuid aa3ff082-feb4-43b8-aa6a-ddbe57ce5613)
  3672. )
  3673. (wire (pts (xy 150.495 73.66) (xy 142.875 73.66))
  3674. (stroke (width 0) (type default) (color 0 0 0 0))
  3675. (uuid aaacee2f-a512-47ae-9fcd-8f16c166b61a)
  3676. )
  3677. (wire (pts (xy 38.1 257.81) (xy 31.75 257.81))
  3678. (stroke (width 0) (type default) (color 0 0 0 0))
  3679. (uuid aabb36f6-200c-452f-b08f-a7146dbe2a83)
  3680. )
  3681. (wire (pts (xy 332.74 70.485) (xy 332.74 67.945))
  3682. (stroke (width 0) (type default) (color 0 0 0 0))
  3683. (uuid ab9f1b55-ed97-4db1-b57b-6aa7784720cc)
  3684. )
  3685. (wire (pts (xy 57.785 144.145) (xy 65.405 144.145))
  3686. (stroke (width 0) (type default) (color 0 0 0 0))
  3687. (uuid ac3d6e6e-04c1-4f47-9b66-84d633efafc9)
  3688. )
  3689. (wire (pts (xy 297.18 149.225) (xy 290.83 149.225))
  3690. (stroke (width 0) (type default) (color 0 0 0 0))
  3691. (uuid ac3e7699-1ad9-4d6a-b2e9-2648f11a4d3b)
  3692. )
  3693. (wire (pts (xy 266.7 76.835) (xy 266.7 78.105))
  3694. (stroke (width 0) (type default) (color 0 0 0 0))
  3695. (uuid aca63365-4cd0-4b2a-870c-3b25a9a608ae)
  3696. )
  3697. (wire (pts (xy 32.385 101.6) (xy 34.29 101.6))
  3698. (stroke (width 0) (type default) (color 0 0 0 0))
  3699. (uuid ae89d740-326f-40f1-a5c4-ec7232ae1554)
  3700. )
  3701. (wire (pts (xy 170.18 236.22) (xy 170.18 234.95))
  3702. (stroke (width 0) (type default) (color 0 0 0 0))
  3703. (uuid aecec480-398b-40e3-bbb2-1f0566769f3d)
  3704. )
  3705. (wire (pts (xy 188.595 170.815) (xy 196.215 170.815))
  3706. (stroke (width 0) (type default) (color 0 0 0 0))
  3707. (uuid aed5f74c-0786-4d61-b7b0-d5f0971641b1)
  3708. )
  3709. (wire (pts (xy 150.495 63.5) (xy 142.875 63.5))
  3710. (stroke (width 0) (type default) (color 0 0 0 0))
  3711. (uuid aefa5a9a-07d5-4da4-8aab-b22da8c01d55)
  3712. )
  3713. (wire (pts (xy 358.14 88.265) (xy 365.76 88.265))
  3714. (stroke (width 0) (type default) (color 0 0 0 0))
  3715. (uuid af96aa88-852d-47ec-b743-1cde23cc7c02)
  3716. )
  3717. (wire (pts (xy 32.385 91.44) (xy 34.29 91.44))
  3718. (stroke (width 0) (type default) (color 0 0 0 0))
  3719. (uuid b04d027e-3417-4116-9d35-6173f5b818fd)
  3720. )
  3721. (wire (pts (xy 244.475 252.73) (xy 249.555 252.73))
  3722. (stroke (width 0) (type default) (color 0 0 0 0))
  3723. (uuid b09032ab-50da-4fd5-8f99-df6aa4c3bd9d)
  3724. )
  3725. (wire (pts (xy 43.18 182.245) (xy 45.085 182.245))
  3726. (stroke (width 0) (type default) (color 0 0 0 0))
  3727. (uuid b0cc76ff-9fe0-484e-9936-bd423c3b05d2)
  3728. )
  3729. (wire (pts (xy 188.595 201.295) (xy 196.215 201.295))
  3730. (stroke (width 0) (type default) (color 0 0 0 0))
  3731. (uuid b11ba7ae-c904-4859-87f6-c5daa00b2fb2)
  3732. )
  3733. (wire (pts (xy 38.1 265.43) (xy 38.1 274.32))
  3734. (stroke (width 0) (type default) (color 0 0 0 0))
  3735. (uuid b2a434c2-b12c-4a34-840a-b53b5dc85566)
  3736. )
  3737. (wire (pts (xy 164.465 46.355) (xy 164.465 47.625))
  3738. (stroke (width 0) (type default) (color 0 0 0 0))
  3739. (uuid b2d151b2-9145-4041-8afc-a0d024a5fe6e)
  3740. )
  3741. (wire (pts (xy 314.96 51.435) (xy 314.96 70.485))
  3742. (stroke (width 0) (type default) (color 0 0 0 0))
  3743. (uuid b2d1520d-37e1-402a-9744-24f06cea5849)
  3744. )
  3745. (wire (pts (xy 69.85 76.2) (xy 77.47 76.2))
  3746. (stroke (width 0) (type default) (color 0 0 0 0))
  3747. (uuid b3866171-3af9-42c7-a834-2bb9d51b9763)
  3748. )
  3749. (wire (pts (xy 358.14 106.045) (xy 365.76 106.045))
  3750. (stroke (width 0) (type default) (color 0 0 0 0))
  3751. (uuid b55c8469-12a6-4576-b30f-513ca5f8a278)
  3752. )
  3753. (wire (pts (xy 324.485 220.98) (xy 324.485 226.06))
  3754. (stroke (width 0) (type default) (color 0 0 0 0))
  3755. (uuid b6263b3c-62b6-4052-afd1-2a0edd141611)
  3756. )
  3757. (wire (pts (xy 333.375 231.14) (xy 333.375 236.22))
  3758. (stroke (width 0) (type default) (color 0 0 0 0))
  3759. (uuid b6ce6547-5ec1-40a5-b113-31f77f25d356)
  3760. )
  3761. (wire (pts (xy 69.85 71.12) (xy 77.47 71.12))
  3762. (stroke (width 0) (type default) (color 0 0 0 0))
  3763. (uuid b7561863-185c-4c0a-95f9-75c3a01334db)
  3764. )
  3765. (wire (pts (xy 167.005 46.355) (xy 167.005 47.625))
  3766. (stroke (width 0) (type default) (color 0 0 0 0))
  3767. (uuid b7737631-697c-4004-865d-520a96063ddd)
  3768. )
  3769. (wire (pts (xy 488.95 140.335) (xy 488.95 142.875))
  3770. (stroke (width 0) (type default) (color 0 0 0 0))
  3771. (uuid b8009cb4-c1e7-4165-98da-26286fc94973)
  3772. )
  3773. (wire (pts (xy 165.735 125.73) (xy 167.005 125.73))
  3774. (stroke (width 0) (type default) (color 0 0 0 0))
  3775. (uuid b8825994-0a5f-48c2-af1d-c4ab4c7c6d8f)
  3776. )
  3777. (wire (pts (xy 490.22 139.065) (xy 490.22 137.795))
  3778. (stroke (width 0) (type default) (color 0 0 0 0))
  3779. (uuid b8b85187-8d5d-4872-ad4a-4be11b9259ea)
  3780. )
  3781. (wire (pts (xy 312.42 182.245) (xy 312.42 183.515))
  3782. (stroke (width 0) (type default) (color 0 0 0 0))
  3783. (uuid b90d9f73-d7a3-447d-bc9d-fa8306c2c785)
  3784. )
  3785. (wire (pts (xy 142.875 93.98) (xy 150.495 93.98))
  3786. (stroke (width 0) (type default) (color 0 0 0 0))
  3787. (uuid b9b360a6-fff2-4467-83ed-1e6baf6eccd6)
  3788. )
  3789. (wire (pts (xy 73.66 167.005) (xy 57.785 167.005))
  3790. (stroke (width 0) (type default) (color 0 0 0 0))
  3791. (uuid b9fc4864-89c7-43db-bf76-d00cd7748ac0)
  3792. )
  3793. (wire (pts (xy 45.085 159.385) (xy 37.465 159.385))
  3794. (stroke (width 0) (type default) (color 0 0 0 0))
  3795. (uuid babd07bf-48c8-4227-83aa-ee48b4ac45da)
  3796. )
  3797. (wire (pts (xy 297.18 183.515) (xy 297.18 172.085))
  3798. (stroke (width 0) (type default) (color 0 0 0 0))
  3799. (uuid bd41b8b1-429e-4fbf-94f9-f498b870e73b)
  3800. )
  3801. (wire (pts (xy 69.85 91.44) (xy 77.47 91.44))
  3802. (stroke (width 0) (type default) (color 0 0 0 0))
  3803. (uuid bd48640f-5563-4eeb-9641-7bf98bdbcc82)
  3804. )
  3805. (wire (pts (xy 266.065 252.73) (xy 274.955 252.73))
  3806. (stroke (width 0) (type default) (color 0 0 0 0))
  3807. (uuid be1ed6bc-b122-4963-afd6-7ad2f1980f10)
  3808. )
  3809. (wire (pts (xy 43.18 229.87) (xy 43.18 232.41))
  3810. (stroke (width 0) (type default) (color 0 0 0 0))
  3811. (uuid be315d47-a806-453b-b72f-07a7a63c4564)
  3812. )
  3813. (wire (pts (xy 161.925 125.73) (xy 161.925 127.635))
  3814. (stroke (width 0) (type default) (color 0 0 0 0))
  3815. (uuid be43e311-a169-4a91-b083-daac9b255c2a)
  3816. )
  3817. (wire (pts (xy 508 137.16) (xy 508 139.065))
  3818. (stroke (width 0) (type default) (color 0 0 0 0))
  3819. (uuid bee31f41-8eab-450f-845c-52d046ceb5c1)
  3820. )
  3821. (wire (pts (xy 279.4 47.625) (xy 279.4 48.895))
  3822. (stroke (width 0) (type default) (color 0 0 0 0))
  3823. (uuid bf9929f7-a3b4-4af8-bdc3-208882e9f93e)
  3824. )
  3825. (wire (pts (xy 140.97 221.615) (xy 142.875 221.615))
  3826. (stroke (width 0) (type default) (color 0 0 0 0))
  3827. (uuid bffae3da-7d9f-492a-9f8a-38e6fc89536a)
  3828. )
  3829. (wire (pts (xy 18.415 76.2) (xy 34.29 76.2))
  3830. (stroke (width 0) (type default) (color 0 0 0 0))
  3831. (uuid c07fcde0-373f-431b-9d55-6b2e6e2b4760)
  3832. )
  3833. (wire (pts (xy 337.82 67.945) (xy 337.82 70.485))
  3834. (stroke (width 0) (type default) (color 0 0 0 0))
  3835. (uuid c08beba3-8d06-4c6f-b34b-728814931f75)
  3836. )
  3837. (wire (pts (xy 69.85 96.52) (xy 77.47 96.52))
  3838. (stroke (width 0) (type default) (color 0 0 0 0))
  3839. (uuid c0fb5dc9-631a-4b1e-9ccb-13761b592108)
  3840. )
  3841. (wire (pts (xy 18.415 71.12) (xy 34.29 71.12))
  3842. (stroke (width 0) (type default) (color 0 0 0 0))
  3843. (uuid c1345c02-7ce4-4f8d-974a-e494b3ad2557)
  3844. )
  3845. (wire (pts (xy 358.14 90.805) (xy 365.76 90.805))
  3846. (stroke (width 0) (type default) (color 0 0 0 0))
  3847. (uuid c1755c1c-9ae8-4345-9491-ce0d55d40377)
  3848. )
  3849. (wire (pts (xy 322.58 183.515) (xy 320.04 183.515))
  3850. (stroke (width 0) (type default) (color 0 0 0 0))
  3851. (uuid c1da8549-12e2-4ad7-b9fd-ee37e48a9b58)
  3852. )
  3853. (wire (pts (xy 59.69 174.625) (xy 57.785 174.625))
  3854. (stroke (width 0) (type default) (color 0 0 0 0))
  3855. (uuid c1ffe1a1-c48d-48d2-bdfd-087261fa88d4)
  3856. )
  3857. (wire (pts (xy 18.415 43.18) (xy 34.29 43.18))
  3858. (stroke (width 0) (type default) (color 0 0 0 0))
  3859. (uuid c285b3bc-3c3a-4ce4-8700-cc3efc39d310)
  3860. )
  3861. (wire (pts (xy 69.85 50.8) (xy 77.47 50.8))
  3862. (stroke (width 0) (type default) (color 0 0 0 0))
  3863. (uuid c4a29034-9523-4542-895a-2b27893a7375)
  3864. )
  3865. (wire (pts (xy 165.735 114.3) (xy 167.005 114.3))
  3866. (stroke (width 0) (type default) (color 0 0 0 0))
  3867. (uuid c553a682-5511-4170-ae33-95135e5a1bd3)
  3868. )
  3869. (wire (pts (xy 165.735 236.22) (xy 166.37 236.22))
  3870. (stroke (width 0) (type default) (color 0 0 0 0))
  3871. (uuid c67df346-6499-4da5-b03b-5472f3aeca2b)
  3872. )
  3873. (wire (pts (xy 45.085 172.085) (xy 37.465 172.085))
  3874. (stroke (width 0) (type default) (color 0 0 0 0))
  3875. (uuid c7f84b4a-a4bc-408a-a8b8-0919de6ffc81)
  3876. )
  3877. (wire (pts (xy 330.835 210.82) (xy 339.725 210.82))
  3878. (stroke (width 0) (type default) (color 0 0 0 0))
  3879. (uuid c8474878-394d-4fcc-9e07-d2fdf286dd4d)
  3880. )
  3881. (wire (pts (xy 504.19 139.065) (xy 508 139.065))
  3882. (stroke (width 0) (type default) (color 0 0 0 0))
  3883. (uuid c86d7ead-75e7-40eb-b221-85d35e74fd87)
  3884. )
  3885. (wire (pts (xy 150.495 53.34) (xy 142.875 53.34))
  3886. (stroke (width 0) (type default) (color 0 0 0 0))
  3887. (uuid c94c4550-c9d3-4194-9dae-53b2d6308c95)
  3888. )
  3889. (wire (pts (xy 330.2 183.515) (xy 327.66 183.515))
  3890. (stroke (width 0) (type default) (color 0 0 0 0))
  3891. (uuid c96a74f8-72af-41a3-9007-e0a3218b2725)
  3892. )
  3893. (wire (pts (xy 320.675 231.14) (xy 321.945 231.14))
  3894. (stroke (width 0) (type default) (color 0 0 0 0))
  3895. (uuid c9acf4bf-8fd4-49ce-8e0f-c77ac63fe95a)
  3896. )
  3897. (wire (pts (xy 163.83 125.73) (xy 163.83 127.635))
  3898. (stroke (width 0) (type default) (color 0 0 0 0))
  3899. (uuid c9ae49a9-f1c6-487b-92d1-6e5fd4603157)
  3900. )
  3901. (wire (pts (xy 32.385 58.42) (xy 34.29 58.42))
  3902. (stroke (width 0) (type default) (color 0 0 0 0))
  3903. (uuid ca0440ae-f76e-4333-9fa1-88f735615cb4)
  3904. )
  3905. (wire (pts (xy 30.48 229.87) (xy 36.83 229.87))
  3906. (stroke (width 0) (type default) (color 0 0 0 0))
  3907. (uuid cb89000d-4e88-4ef3-8c92-fcfb23c3b0fa)
  3908. )
  3909. (wire (pts (xy 36.83 237.49) (xy 36.83 246.38))
  3910. (stroke (width 0) (type default) (color 0 0 0 0))
  3911. (uuid cc6a0a6d-af27-44ea-8319-150fab0ea653)
  3912. )
  3913. (wire (pts (xy 335.28 67.945) (xy 337.82 67.945))
  3914. (stroke (width 0) (type default) (color 0 0 0 0))
  3915. (uuid ccab8742-5b17-42f4-9d68-2337782d6b07)
  3916. )
  3917. (wire (pts (xy 127 150.495) (xy 142.875 150.495))
  3918. (stroke (width 0) (type default) (color 0 0 0 0))
  3919. (uuid cd5d5f4f-a951-43c8-97ee-722776080d4e)
  3920. )
  3921. (wire (pts (xy 320.675 215.9) (xy 321.945 215.9))
  3922. (stroke (width 0) (type default) (color 0 0 0 0))
  3923. (uuid cdbb251d-21cb-4116-b31a-104045fa2a1a)
  3924. )
  3925. (wire (pts (xy 285.75 174.625) (xy 285.75 183.515))
  3926. (stroke (width 0) (type default) (color 0 0 0 0))
  3927. (uuid cdded961-1c7b-45f1-a631-b8f8fb541767)
  3928. )
  3929. (wire (pts (xy 163.83 125.73) (xy 165.735 125.73))
  3930. (stroke (width 0) (type default) (color 0 0 0 0))
  3931. (uuid cf0bc1d4-5f7f-4276-af1f-df5539be5312)
  3932. )
  3933. (wire (pts (xy 43.18 237.49) (xy 43.18 246.38))
  3934. (stroke (width 0) (type default) (color 0 0 0 0))
  3935. (uuid cf26ac3f-68d7-46fd-aa2d-f1f26c5be289)
  3936. )
  3937. (wire (pts (xy 142.875 105.41) (xy 150.495 105.41))
  3938. (stroke (width 0) (type default) (color 0 0 0 0))
  3939. (uuid cffc61af-917f-4271-8497-242ca24327d2)
  3940. )
  3941. (wire (pts (xy 337.185 223.52) (xy 337.185 248.92))
  3942. (stroke (width 0) (type default) (color 0 0 0 0))
  3943. (uuid d022e8f3-ddb3-429f-94d4-7b64262f407d)
  3944. )
  3945. (wire (pts (xy 333.375 215.9) (xy 333.375 231.14))
  3946. (stroke (width 0) (type default) (color 0 0 0 0))
  3947. (uuid d0920aba-6877-42fa-935e-e12d1c0ca9bc)
  3948. )
  3949. (wire (pts (xy 188.595 158.115) (xy 196.215 158.115))
  3950. (stroke (width 0) (type default) (color 0 0 0 0))
  3951. (uuid d2793106-d900-40a6-b03a-63c2c1c60fbe)
  3952. )
  3953. (wire (pts (xy 322.58 67.945) (xy 325.12 67.945))
  3954. (stroke (width 0) (type default) (color 0 0 0 0))
  3955. (uuid d2ae9cdb-a2ec-4305-8c59-1c8a8106831c)
  3956. )
  3957. (wire (pts (xy 127 219.075) (xy 142.875 219.075))
  3958. (stroke (width 0) (type default) (color 0 0 0 0))
  3959. (uuid d2cf2ac6-5e91-452e-a13f-6108315e023e)
  3960. )
  3961. (wire (pts (xy 45.085 151.765) (xy 37.465 151.765))
  3962. (stroke (width 0) (type default) (color 0 0 0 0))
  3963. (uuid d2fa8277-5490-44b6-a237-28913802589b)
  3964. )
  3965. (wire (pts (xy 297.18 144.145) (xy 290.83 144.145))
  3966. (stroke (width 0) (type default) (color 0 0 0 0))
  3967. (uuid d38f755b-5810-48f1-bfd0-9833519329b5)
  3968. )
  3969. (wire (pts (xy 24.13 237.49) (xy 24.13 246.38))
  3970. (stroke (width 0) (type default) (color 0 0 0 0))
  3971. (uuid d3c292bf-f038-41ef-aed0-2922415410cd)
  3972. )
  3973. (wire (pts (xy 188.595 180.975) (xy 196.215 180.975))
  3974. (stroke (width 0) (type default) (color 0 0 0 0))
  3975. (uuid d3e6a354-7982-48a0-9f11-004367841b5c)
  3976. )
  3977. (wire (pts (xy 325.12 182.245) (xy 325.12 183.515))
  3978. (stroke (width 0) (type default) (color 0 0 0 0))
  3979. (uuid d3edc09a-8bec-4ba6-9c97-c797c2d08e3a)
  3980. )
  3981. (wire (pts (xy 140.97 208.915) (xy 142.875 208.915))
  3982. (stroke (width 0) (type default) (color 0 0 0 0))
  3983. (uuid d48313b3-b591-49b5-88ff-ef0e3e5e4021)
  3984. )
  3985. (wire (pts (xy 320.04 182.245) (xy 320.04 183.515))
  3986. (stroke (width 0) (type default) (color 0 0 0 0))
  3987. (uuid d54391e0-f5d6-4c46-a1d1-7011fd90b74c)
  3988. )
  3989. (wire (pts (xy 188.595 183.515) (xy 196.215 183.515))
  3990. (stroke (width 0) (type default) (color 0 0 0 0))
  3991. (uuid d64339ec-1b57-4e41-9370-620614a5d850)
  3992. )
  3993. (wire (pts (xy 188.595 193.675) (xy 196.215 193.675))
  3994. (stroke (width 0) (type default) (color 0 0 0 0))
  3995. (uuid d6e924f0-aa48-48a8-8b02-3b1a2a9365c6)
  3996. )
  3997. (wire (pts (xy 284.48 114.935) (xy 284.48 116.205))
  3998. (stroke (width 0) (type default) (color 0 0 0 0))
  3999. (uuid d9f18af7-b32f-426f-9972-4079a7358969)
  4000. )
  4001. (wire (pts (xy 161.925 125.73) (xy 163.83 125.73))
  4002. (stroke (width 0) (type default) (color 0 0 0 0))
  4003. (uuid da636096-501f-48c5-bd51-d198ae974a06)
  4004. )
  4005. (wire (pts (xy 38.1 260.35) (xy 38.1 257.81))
  4006. (stroke (width 0) (type default) (color 0 0 0 0))
  4007. (uuid dd391683-5fe6-4dd0-98cc-b4de1dd7d804)
  4008. )
  4009. (wire (pts (xy 292.1 57.785) (xy 292.1 66.675))
  4010. (stroke (width 0) (type default) (color 0 0 0 0))
  4011. (uuid dd4b8ebf-93bd-4bb3-a7f2-de845bc33aad)
  4012. )
  4013. (wire (pts (xy 142.875 198.755) (xy 135.255 198.755))
  4014. (stroke (width 0) (type default) (color 0 0 0 0))
  4015. (uuid ddb95327-ee09-4ea8-9ce6-d43e5c41b750)
  4016. )
  4017. (wire (pts (xy 281.94 48.895) (xy 283.21 48.895))
  4018. (stroke (width 0) (type default) (color 0 0 0 0))
  4019. (uuid de2903ef-0e4e-4865-b193-605db3ac7eef)
  4020. )
  4021. (wire (pts (xy 362.585 236.22) (xy 365.125 236.22))
  4022. (stroke (width 0) (type default) (color 0 0 0 0))
  4023. (uuid deeeedcd-949a-4e6e-a540-011f8b9d2028)
  4024. )
  4025. (wire (pts (xy 30.48 232.41) (xy 30.48 229.87))
  4026. (stroke (width 0) (type default) (color 0 0 0 0))
  4027. (uuid df808960-3ca2-449a-8c89-8a0d1d1a8de6)
  4028. )
  4029. (wire (pts (xy 45.085 139.065) (xy 37.465 139.065))
  4030. (stroke (width 0) (type default) (color 0 0 0 0))
  4031. (uuid e3613985-a58b-49c9-b657-1a78373435c1)
  4032. )
  4033. (wire (pts (xy 188.595 188.595) (xy 196.215 188.595))
  4034. (stroke (width 0) (type default) (color 0 0 0 0))
  4035. (uuid e38a39fd-244a-42f1-bd56-6eafdac90994)
  4036. )
  4037. (wire (pts (xy 69.85 63.5) (xy 77.47 63.5))
  4038. (stroke (width 0) (type default) (color 0 0 0 0))
  4039. (uuid e56b6c12-f7f9-481d-a3d6-64d47f9d3d41)
  4040. )
  4041. (wire (pts (xy 150.495 60.96) (xy 142.875 60.96))
  4042. (stroke (width 0) (type default) (color 0 0 0 0))
  4043. (uuid e61cb94e-e84f-431c-baa4-754e35d43b74)
  4044. )
  4045. (wire (pts (xy 297.18 52.705) (xy 297.18 48.895))
  4046. (stroke (width 0) (type default) (color 0 0 0 0))
  4047. (uuid e755d55d-b3e6-449e-a10c-20ffe0c227bc)
  4048. )
  4049. (wire (pts (xy 317.5 48.895) (xy 317.5 70.485))
  4050. (stroke (width 0) (type default) (color 0 0 0 0))
  4051. (uuid e86d178a-65e0-404a-a7eb-02205e7c13cb)
  4052. )
  4053. (wire (pts (xy 73.66 177.165) (xy 57.785 177.165))
  4054. (stroke (width 0) (type default) (color 0 0 0 0))
  4055. (uuid e878d513-ad25-4b1b-8f42-99df86f465f2)
  4056. )
  4057. (wire (pts (xy 18.415 60.96) (xy 34.29 60.96))
  4058. (stroke (width 0) (type default) (color 0 0 0 0))
  4059. (uuid e8dd0f87-8654-4428-a807-566a908e1bbc)
  4060. )
  4061. (wire (pts (xy 308.61 52.705) (xy 308.61 51.435))
  4062. (stroke (width 0) (type default) (color 0 0 0 0))
  4063. (uuid e98133aa-179f-4f49-b398-e5dd29c35fba)
  4064. )
  4065. (wire (pts (xy 297.18 48.895) (xy 292.1 48.895))
  4066. (stroke (width 0) (type default) (color 0 0 0 0))
  4067. (uuid e9f5a3ad-01a1-4540-ae9d-4c2cef9a72bb)
  4068. )
  4069. (wire (pts (xy 375.285 210.82) (xy 386.715 210.82))
  4070. (stroke (width 0) (type default) (color 0 0 0 0))
  4071. (uuid ea7dd117-1f16-45b4-803e-e196bc0463f4)
  4072. )
  4073. (wire (pts (xy 21.59 228.6) (xy 21.59 229.87))
  4074. (stroke (width 0) (type default) (color 0 0 0 0))
  4075. (uuid eafc1d23-f89f-4e34-a1ce-3715020fa17a)
  4076. )
  4077. (wire (pts (xy 358.14 128.905) (xy 365.76 128.905))
  4078. (stroke (width 0) (type default) (color 0 0 0 0))
  4079. (uuid eb06f16f-f28d-445a-8458-5dc3b2729619)
  4080. )
  4081. (wire (pts (xy 320.675 218.44) (xy 323.215 218.44))
  4082. (stroke (width 0) (type default) (color 0 0 0 0))
  4083. (uuid eb92f5ae-bf42-49af-8418-a46513413e47)
  4084. )
  4085. (wire (pts (xy 303.53 52.705) (xy 303.53 51.435))
  4086. (stroke (width 0) (type default) (color 0 0 0 0))
  4087. (uuid ebbd777d-af5c-45ab-9f80-9fd42f552a01)
  4088. )
  4089. (wire (pts (xy 69.85 58.42) (xy 77.47 58.42))
  4090. (stroke (width 0) (type default) (color 0 0 0 0))
  4091. (uuid ecdcad33-ec9f-46fc-87d5-c7139fde9bba)
  4092. )
  4093. (wire (pts (xy 349.885 220.98) (xy 349.885 226.06))
  4094. (stroke (width 0) (type default) (color 0 0 0 0))
  4095. (uuid ed06c6c1-001d-4aab-b73c-d5a9a0e7d4c1)
  4096. )
  4097. (wire (pts (xy 188.595 145.415) (xy 190.5 145.415))
  4098. (stroke (width 0) (type default) (color 0 0 0 0))
  4099. (uuid ed779af0-ac29-48e3-a6f3-deff36acc0c9)
  4100. )
  4101. (wire (pts (xy 45.085 136.525) (xy 37.465 136.525))
  4102. (stroke (width 0) (type default) (color 0 0 0 0))
  4103. (uuid eeba4974-2821-4900-b550-926fca8257b4)
  4104. )
  4105. (wire (pts (xy 57.785 136.525) (xy 65.405 136.525))
  4106. (stroke (width 0) (type default) (color 0 0 0 0))
  4107. (uuid eed94392-95cb-4ddc-8185-78a5bfb4848c)
  4108. )
  4109. (wire (pts (xy 27.94 157.48) (xy 27.94 161.925))
  4110. (stroke (width 0) (type default) (color 0 0 0 0))
  4111. (uuid ef6abec8-a532-47ac-9f80-caf770416a14)
  4112. )
  4113. (wire (pts (xy 150.495 71.12) (xy 142.875 71.12))
  4114. (stroke (width 0) (type default) (color 0 0 0 0))
  4115. (uuid efe3efe4-9c10-42be-981e-e8a644f48249)
  4116. )
  4117. (wire (pts (xy 339.725 210.82) (xy 367.665 210.82))
  4118. (stroke (width 0) (type default) (color 0 0 0 0))
  4119. (uuid f180737b-3529-4321-9cea-d22ca7e2fe8c)
  4120. )
  4121. (wire (pts (xy 150.495 86.36) (xy 142.875 86.36))
  4122. (stroke (width 0) (type default) (color 0 0 0 0))
  4123. (uuid f1862b3d-decc-4668-9ebd-fd11bf18ff7f)
  4124. )
  4125. (wire (pts (xy 150.495 78.74) (xy 142.875 78.74))
  4126. (stroke (width 0) (type default) (color 0 0 0 0))
  4127. (uuid f1af45bc-7143-4d5c-b0a6-b50643723f73)
  4128. )
  4129. (wire (pts (xy 45.085 154.305) (xy 37.465 154.305))
  4130. (stroke (width 0) (type default) (color 0 0 0 0))
  4131. (uuid f1be1beb-6d89-4955-b5b5-e2d8ea2c1ab4)
  4132. )
  4133. (wire (pts (xy 276.86 149.225) (xy 285.75 149.225))
  4134. (stroke (width 0) (type default) (color 0 0 0 0))
  4135. (uuid f249a95a-3ab4-44e4-accb-c1c3c661dcc1)
  4136. )
  4137. (wire (pts (xy 323.215 218.44) (xy 323.215 223.52))
  4138. (stroke (width 0) (type default) (color 0 0 0 0))
  4139. (uuid f3122752-8447-4b9c-96dc-1148e82dca3f)
  4140. )
  4141. (wire (pts (xy 142.875 206.375) (xy 135.255 206.375))
  4142. (stroke (width 0) (type default) (color 0 0 0 0))
  4143. (uuid f432150c-22f6-496a-b8fb-e0957a9cd985)
  4144. )
  4145. (wire (pts (xy 69.85 101.6) (xy 77.47 101.6))
  4146. (stroke (width 0) (type default) (color 0 0 0 0))
  4147. (uuid f5aad740-4e2b-499a-9c5d-648e6e699d8d)
  4148. )
  4149. (wire (pts (xy 163.83 114.3) (xy 165.735 114.3))
  4150. (stroke (width 0) (type default) (color 0 0 0 0))
  4151. (uuid f5f9b766-9d8b-40a3-8c0d-0e3e3f4d14e7)
  4152. )
  4153. (wire (pts (xy 365.125 236.22) (xy 365.125 238.76))
  4154. (stroke (width 0) (type default) (color 0 0 0 0))
  4155. (uuid f606860b-c285-4462-8fd0-a3c1c496db3b)
  4156. )
  4157. (wire (pts (xy 196.215 147.955) (xy 188.595 147.955))
  4158. (stroke (width 0) (type default) (color 0 0 0 0))
  4159. (uuid f64a70a6-d76a-4c1c-afe9-f49894615a18)
  4160. )
  4161. (wire (pts (xy 335.28 183.515) (xy 335.28 184.785))
  4162. (stroke (width 0) (type default) (color 0 0 0 0))
  4163. (uuid f6f80138-a24c-47cf-b450-a891f7e4a860)
  4164. )
  4165. (wire (pts (xy 45.085 146.685) (xy 37.465 146.685))
  4166. (stroke (width 0) (type default) (color 0 0 0 0))
  4167. (uuid f747f2ed-cfb0-464a-b533-0322e422200a)
  4168. )
  4169. (wire (pts (xy 57.785 139.065) (xy 65.405 139.065))
  4170. (stroke (width 0) (type default) (color 0 0 0 0))
  4171. (uuid f75843a0-9321-4b43-9e8c-3f2fd2b7510d)
  4172. )
  4173. (wire (pts (xy 276.86 146.685) (xy 285.75 146.685))
  4174. (stroke (width 0) (type default) (color 0 0 0 0))
  4175. (uuid f8566e4a-282b-43a4-b62d-5ced953802b1)
  4176. )
  4177. (wire (pts (xy 180.975 67.945) (xy 188.595 67.945))
  4178. (stroke (width 0) (type default) (color 0 0 0 0))
  4179. (uuid f9b46731-92fa-4bdb-b016-f628334a22ce)
  4180. )
  4181. (wire (pts (xy 297.18 83.185) (xy 278.13 83.185))
  4182. (stroke (width 0) (type default) (color 0 0 0 0))
  4183. (uuid fb52cffd-f056-48fb-bf59-6280a641676c)
  4184. )
  4185. (wire (pts (xy 69.85 43.18) (xy 77.47 43.18))
  4186. (stroke (width 0) (type default) (color 0 0 0 0))
  4187. (uuid fbeba94d-e910-4234-9d08-1501df4b96a4)
  4188. )
  4189. (wire (pts (xy 29.21 174.625) (xy 45.085 174.625))
  4190. (stroke (width 0) (type default) (color 0 0 0 0))
  4191. (uuid fced9e88-e510-4497-a6b7-820f9a332bea)
  4192. )
  4193. (wire (pts (xy 188.595 142.875) (xy 190.5 142.875))
  4194. (stroke (width 0) (type default) (color 0 0 0 0))
  4195. (uuid fd1741ad-c196-46a3-a28b-d584223c322d)
  4196. )
  4197. (wire (pts (xy 32.385 104.14) (xy 34.29 104.14))
  4198. (stroke (width 0) (type default) (color 0 0 0 0))
  4199. (uuid fd3f5f91-a942-49a2-a01c-9ec5db9fb63a)
  4200. )
  4201. (wire (pts (xy 337.82 67.945) (xy 340.36 67.945))
  4202. (stroke (width 0) (type default) (color 0 0 0 0))
  4203. (uuid fd989a54-0a7d-4b84-92bb-f019ac6ff0bc)
  4204. )
  4205. (wire (pts (xy 337.185 248.92) (xy 349.885 248.92))
  4206. (stroke (width 0) (type default) (color 0 0 0 0))
  4207. (uuid fdaf3855-0edd-46b4-b789-78901291f9ff)
  4208. )
  4209. (text "3V3 REGULATOR" (at 248.158 278.765 0)
  4210. (effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left bottom))
  4211. (uuid be27adc3-55ef-4412-920d-d4d67023372c)
  4212. )
  4213. (label "MD1" (at 135.255 191.135 0)
  4214. (effects (font (size 1.27 1.27)) (justify left bottom))
  4215. (uuid 016c077f-8217-4ddd-b3c8-c6423f515441)
  4216. )
  4217. (label "~{RESET" (at 127 168.275 0)
  4218. (effects (font (size 1.27 1.27)) (justify left bottom))
  4219. (uuid 017c1785-c780-4be6-aec3-890485e8fbf1)
  4220. )
  4221. (label "A0" (at 142.875 53.34 0)
  4222. (effects (font (size 1.27 1.27)) (justify left bottom))
  4223. (uuid 01c6d6d6-13d7-4f89-9418-c73bdbcb6c03)
  4224. )
  4225. (label "A1" (at 196.215 170.815 180)
  4226. (effects (font (size 1.27 1.27)) (justify right bottom))
  4227. (uuid 02703669-3337-4064-9b3e-e6ddf6b383d9)
  4228. )
  4229. (label "A9" (at 365.76 103.505 180)
  4230. (effects (font (size 1.27 1.27)) (justify right bottom))
  4231. (uuid 037295a2-95d1-4ba8-8957-51f19045debd)
  4232. )
  4233. (label "D6" (at 37.465 159.385 0)
  4234. (effects (font (size 1.27 1.27)) (justify left bottom))
  4235. (uuid 044a2399-d1ad-46c9-bbb8-9046f1122bea)
  4236. )
  4237. (label "A3" (at 142.875 60.96 0)
  4238. (effects (font (size 1.27 1.27)) (justify left bottom))
  4239. (uuid 04c52fb4-3387-4f2e-8847-ee98df5437fe)
  4240. )
  4241. (label "~{RD" (at 127 160.655 0)
  4242. (effects (font (size 1.27 1.27)) (justify left bottom))
  4243. (uuid 055b1dae-b822-4623-b8f6-cec02d26dc8b)
  4244. )
  4245. (label "A10" (at 142.875 78.74 0)
  4246. (effects (font (size 1.27 1.27)) (justify left bottom))
  4247. (uuid 0686bc95-5818-4795-9da5-634383c89c17)
  4248. )
  4249. (label "~{HALT" (at 29.21 179.705 0)
  4250. (effects (font (size 1.27 1.27)) (justify left bottom))
  4251. (uuid 06b0c600-13c6-4858-b74c-505968e80253)
  4252. )
  4253. (label "~{RESET" (at 73.66 172.085 180)
  4254. (effects (font (size 1.27 1.27)) (justify right bottom))
  4255. (uuid 06c5c130-4cd5-42e5-adad-7b4a72bcbce3)
  4256. )
  4257. (label "FT_nTXLED" (at 478.79 140.335 0)
  4258. (effects (font (size 1.27 1.27)) (justify left bottom))
  4259. (uuid 0cb49f47-e78f-4632-94ff-31252bc2828c)
  4260. )
  4261. (label "A13" (at 196.215 208.915 180)
  4262. (effects (font (size 1.27 1.27)) (justify right bottom))
  4263. (uuid 0efa5b4a-5eb3-4f9b-9273-65ed5c70d1da)
  4264. )
  4265. (label "D1" (at 77.47 88.9 180)
  4266. (effects (font (size 1.27 1.27)) (justify right bottom))
  4267. (uuid 0efadc8c-534e-4886-9f0e-e86db32265bd)
  4268. )
  4269. (label "A6" (at 77.47 58.42 180)
  4270. (effects (font (size 1.27 1.27)) (justify right bottom))
  4271. (uuid 10291e07-d81c-461e-be2c-a711b2f97122)
  4272. )
  4273. (label "D3" (at 196.215 183.515 180)
  4274. (effects (font (size 1.27 1.27)) (justify right bottom))
  4275. (uuid 10a7e473-3579-4622-99c1-ae5bfbd66236)
  4276. )
  4277. (label "A2" (at 77.47 48.26 180)
  4278. (effects (font (size 1.27 1.27)) (justify right bottom))
  4279. (uuid 1140b843-182a-4b8d-8729-16cb24eafbc6)
  4280. )
  4281. (label "OSCI" (at 289.56 156.845 0)
  4282. (effects (font (size 1.27 1.27)) (justify left bottom))
  4283. (uuid 11f83c63-6919-451f-b9be-bf51ab3850ba)
  4284. )
  4285. (label "MD6" (at 135.255 203.835 0)
  4286. (effects (font (size 1.27 1.27)) (justify left bottom))
  4287. (uuid 12636ccc-6d70-4bcd-9f81-e8bc2a0bac54)
  4288. )
  4289. (label "D3" (at 77.47 93.98 180)
  4290. (effects (font (size 1.27 1.27)) (justify right bottom))
  4291. (uuid 12d7f677-e0ba-4fbc-9be0-7ca6ff44d32d)
  4292. )
  4293. (label "~{M_OE}" (at 196.215 147.955 180)
  4294. (effects (font (size 1.27 1.27)) (justify right bottom))
  4295. (uuid 1413dee5-c1b0-4d84-90c9-1e85328adcc8)
  4296. )
  4297. (label "A13" (at 77.47 76.2 180)
  4298. (effects (font (size 1.27 1.27)) (justify right bottom))
  4299. (uuid 14426e19-ed4b-446b-bb74-66849ddcace3)
  4300. )
  4301. (label "MD5" (at 135.255 201.295 0)
  4302. (effects (font (size 1.27 1.27)) (justify left bottom))
  4303. (uuid 15fffed3-2612-4969-81fb-3f16bcd7ac2a)
  4304. )
  4305. (label "A14" (at 37.465 144.145 0)
  4306. (effects (font (size 1.27 1.27)) (justify left bottom))
  4307. (uuid 168ddb65-8a07-464d-855f-4ba9a3c80f97)
  4308. )
  4309. (label "A7" (at 77.47 60.96 180)
  4310. (effects (font (size 1.27 1.27)) (justify right bottom))
  4311. (uuid 17eaa0f6-14c6-4a85-809e-28d867c2f156)
  4312. )
  4313. (label "A5" (at 77.47 55.88 180)
  4314. (effects (font (size 1.27 1.27)) (justify right bottom))
  4315. (uuid 1bb8d55a-aece-41e9-b5ef-1446dc9a1ece)
  4316. )
  4317. (label "MD4" (at 135.255 198.755 0)
  4318. (effects (font (size 1.27 1.27)) (justify left bottom))
  4319. (uuid 1d45723a-3c84-43f9-b06b-fd95c59c08a8)
  4320. )
  4321. (label "A15" (at 37.465 146.685 0)
  4322. (effects (font (size 1.27 1.27)) (justify left bottom))
  4323. (uuid 1fa795b9-a1bd-4475-a120-18b2f2bf0971)
  4324. )
  4325. (label "~{Z_BUSRQ_1}" (at 140.97 180.975 180)
  4326. (effects (font (size 1.27 1.27)) (justify right bottom))
  4327. (uuid 2016d2c6-6ba0-4391-9988-58fe47482eda)
  4328. )
  4329. (label "A0" (at 77.47 43.18 180)
  4330. (effects (font (size 1.27 1.27)) (justify right bottom))
  4331. (uuid 20835f54-b45a-468b-ada6-be0e0e7673e8)
  4332. )
  4333. (label "A3" (at 65.405 154.305 180)
  4334. (effects (font (size 1.27 1.27)) (justify right bottom))
  4335. (uuid 20ab1a5f-0bd6-4d7b-bf7f-8917965afa04)
  4336. )
  4337. (label "A9" (at 65.405 139.065 180)
  4338. (effects (font (size 1.27 1.27)) (justify right bottom))
  4339. (uuid 20bc5485-90ff-4c1e-ac8c-1a8afa803a67)
  4340. )
  4341. (label "A1" (at 142.875 55.88 0)
  4342. (effects (font (size 1.27 1.27)) (justify left bottom))
  4343. (uuid 22df0b8b-eaec-479e-ad95-0492560e5d8f)
  4344. )
  4345. (label "A6" (at 196.215 196.215 180)
  4346. (effects (font (size 1.27 1.27)) (justify right bottom))
  4347. (uuid 22e6bbfc-d92f-4656-8bd9-2d8843ec5f9e)
  4348. )
  4349. (label "A12" (at 142.875 83.82 0)
  4350. (effects (font (size 1.27 1.27)) (justify left bottom))
  4351. (uuid 231666e1-b452-47f6-916c-0a277630eb54)
  4352. )
  4353. (label "D7" (at 365.76 141.605 180)
  4354. (effects (font (size 1.27 1.27)) (justify right bottom))
  4355. (uuid 2575174b-d3d1-4961-990f-4e5c3d659663)
  4356. )
  4357. (label "D6" (at 365.76 139.065 180)
  4358. (effects (font (size 1.27 1.27)) (justify right bottom))
  4359. (uuid 25cd4396-5ba1-4802-a656-88adf31fbc2a)
  4360. )
  4361. (label "~{Z_NMI_2}" (at 43.18 177.165 180)
  4362. (effects (font (size 1.27 1.27)) (justify right bottom))
  4363. (uuid 25e14c1e-9cd9-4195-b6f2-8791a43f6be8)
  4364. )
  4365. (label "A8" (at 365.76 100.965 180)
  4366. (effects (font (size 1.27 1.27)) (justify right bottom))
  4367. (uuid 2670d0b8-270e-4955-ad6a-5ef6491c0dde)
  4368. )
  4369. (label "~{WR" (at 73.66 182.245 180)
  4370. (effects (font (size 1.27 1.27)) (justify right bottom))
  4371. (uuid 288b5de1-c44f-4ca4-b7ed-0a92ae38b1e4)
  4372. )
  4373. (label "~{Z_BUSACK_2}" (at 59.69 179.705 0)
  4374. (effects (font (size 1.27 1.27)) (justify left bottom))
  4375. (uuid 29b55b7f-f621-4d7f-9ae9-9a730eaf562b)
  4376. )
  4377. (label "~{M_WE" (at 196.215 150.495 180)
  4378. (effects (font (size 1.27 1.27)) (justify right bottom))
  4379. (uuid 2bafef9a-7e09-4a54-b085-1c7c00f6d1f9)
  4380. )
  4381. (label "~{INT" (at 18.415 60.96 0)
  4382. (effects (font (size 1.27 1.27)) (justify left bottom))
  4383. (uuid 2d4ee208-c2f9-4f26-8a59-99f06e8252a8)
  4384. )
  4385. (label "A4" (at 65.405 151.765 180)
  4386. (effects (font (size 1.27 1.27)) (justify right bottom))
  4387. (uuid 2ee7fb19-028c-4413-b8a8-e4816a921955)
  4388. )
  4389. (label "A5" (at 65.405 149.225 180)
  4390. (effects (font (size 1.27 1.27)) (justify right bottom))
  4391. (uuid 2fc7c5df-d1bb-40c7-b620-0878c6b13bc2)
  4392. )
  4393. (label "~{M1}" (at 18.415 68.58 0)
  4394. (effects (font (size 1.27 1.27)) (justify left bottom))
  4395. (uuid 30871127-7c72-4ea6-abc1-3edd267af86c)
  4396. )
  4397. (label "~{RD" (at 18.415 86.36 0)
  4398. (effects (font (size 1.27 1.27)) (justify left bottom))
  4399. (uuid 30f90a5e-6ce7-47ae-85b2-8b1ab9c57f30)
  4400. )
  4401. (label "D5" (at 37.465 156.845 0)
  4402. (effects (font (size 1.27 1.27)) (justify left bottom))
  4403. (uuid 31063124-4c1a-4965-8b38-5485fa4ce597)
  4404. )
  4405. (label "A10" (at 77.47 68.58 180)
  4406. (effects (font (size 1.27 1.27)) (justify right bottom))
  4407. (uuid 3328fbc3-44fa-4bbf-9237-d6912956670e)
  4408. )
  4409. (label "~{Z_BUSACK_1}" (at 140.97 173.355 180)
  4410. (effects (font (size 1.27 1.27)) (justify right bottom))
  4411. (uuid 339d7460-1003-4912-a8d4-8d6b1ab54178)
  4412. )
  4413. (label "A13" (at 37.465 141.605 0)
  4414. (effects (font (size 1.27 1.27)) (justify left bottom))
  4415. (uuid 33b6ae03-c20d-4522-b282-24861f8746e6)
  4416. )
  4417. (label "~{IORQ" (at 29.21 184.785 0)
  4418. (effects (font (size 1.27 1.27)) (justify left bottom))
  4419. (uuid 34401112-c582-4a87-9155-8b137a320b3b)
  4420. )
  4421. (label "~{WR" (at 18.415 88.9 0)
  4422. (effects (font (size 1.27 1.27)) (justify left bottom))
  4423. (uuid 346cbbf9-a1b4-4011-96b3-ad8fb9b923b5)
  4424. )
  4425. (label "D6" (at 77.47 101.6 180)
  4426. (effects (font (size 1.27 1.27)) (justify right bottom))
  4427. (uuid 34a74bac-cf8e-465e-9fa8-fd8f7ab67882)
  4428. )
  4429. (label "~{INT" (at 127 178.435 0)
  4430. (effects (font (size 1.27 1.27)) (justify left bottom))
  4431. (uuid 35423bd2-ec71-4371-9795-33415332b582)
  4432. )
  4433. (label "A16" (at 142.875 93.98 0)
  4434. (effects (font (size 1.27 1.27)) (justify left bottom))
  4435. (uuid 373a20e4-2f27-464e-994c-ccb9e748febd)
  4436. )
  4437. (label "D1" (at 365.76 126.365 180)
  4438. (effects (font (size 1.27 1.27)) (justify right bottom))
  4439. (uuid 3742903e-4f3e-4f4f-b5f8-30ce3e5f473a)
  4440. )
  4441. (label "A7" (at 65.405 144.145 180)
  4442. (effects (font (size 1.27 1.27)) (justify right bottom))
  4443. (uuid 37d7fe96-b73e-4177-9cd5-1dccb9866c37)
  4444. )
  4445. (label "~{Z_BUSACK_1}" (at 32.385 104.14 180)
  4446. (effects (font (size 1.27 1.27)) (justify right bottom))
  4447. (uuid 38fb95c7-abf9-4156-9a6a-4daf65515259)
  4448. )
  4449. (label "A8" (at 65.405 141.605 180)
  4450. (effects (font (size 1.27 1.27)) (justify right bottom))
  4451. (uuid 3dda5e48-4410-4823-9359-3ebaedf9f933)
  4452. )
  4453. (label "~{Z_NMI_1}" (at 140.97 147.955 180)
  4454. (effects (font (size 1.27 1.27)) (justify right bottom))
  4455. (uuid 3e0f55da-8841-4845-ab37-ca10ed7d6a67)
  4456. )
  4457. (label "A1" (at 65.405 159.385 180)
  4458. (effects (font (size 1.27 1.27)) (justify right bottom))
  4459. (uuid 4171269c-2db5-4894-9bb9-b897c1c46a5f)
  4460. )
  4461. (label "A13" (at 142.875 86.36 0)
  4462. (effects (font (size 1.27 1.27)) (justify left bottom))
  4463. (uuid 433e8654-44e7-4dd2-b752-0856636777a7)
  4464. )
  4465. (label "~{WAIT" (at 127 155.575 0)
  4466. (effects (font (size 1.27 1.27)) (justify left bottom))
  4467. (uuid 44a5ed4d-dbb2-4c21-80a5-4794f73d8b20)
  4468. )
  4469. (label "OSCO" (at 289.56 167.005 0)
  4470. (effects (font (size 1.27 1.27)) (justify left bottom))
  4471. (uuid 46b23ff6-0b78-4502-ac3c-eef097bc64d3)
  4472. )
  4473. (label "~{RD" (at 73.66 184.785 180)
  4474. (effects (font (size 1.27 1.27)) (justify right bottom))
  4475. (uuid 47bc3016-4cfb-4b92-baef-81376dd5727f)
  4476. )
  4477. (label "A12" (at 37.465 139.065 0)
  4478. (effects (font (size 1.27 1.27)) (justify left bottom))
  4479. (uuid 49a06278-3ebf-4ef8-a0b4-c28f6ab72237)
  4480. )
  4481. (label "~{IORQ" (at 18.415 93.98 0)
  4482. (effects (font (size 1.27 1.27)) (justify left bottom))
  4483. (uuid 4d0155c6-2125-456d-a5c3-55101bce0d6f)
  4484. )
  4485. (label "D5" (at 196.215 178.435 180)
  4486. (effects (font (size 1.27 1.27)) (justify right bottom))
  4487. (uuid 4f2732b4-5ad5-4886-b619-b02b64641dd8)
  4488. )
  4489. (label "A11" (at 37.465 136.525 0)
  4490. (effects (font (size 1.27 1.27)) (justify left bottom))
  4491. (uuid 4f2c1ff0-f71d-433a-b910-9052bfd7751f)
  4492. )
  4493. (label "A6" (at 65.405 146.685 180)
  4494. (effects (font (size 1.27 1.27)) (justify right bottom))
  4495. (uuid 4ff55abc-cb5e-428e-9de0-74b47db13ee4)
  4496. )
  4497. (label "MD5" (at 188.595 65.405 180)
  4498. (effects (font (size 1.27 1.27)) (justify right bottom))
  4499. (uuid 51d9341b-e557-49b1-929c-5ab8da0f5e46)
  4500. )
  4501. (label "A0" (at 196.215 163.195 180)
  4502. (effects (font (size 1.27 1.27)) (justify right bottom))
  4503. (uuid 52b1b988-a7e3-4dbe-8de9-9e2badc5eb9d)
  4504. )
  4505. (label "A14" (at 196.215 203.835 180)
  4506. (effects (font (size 1.27 1.27)) (justify right bottom))
  4507. (uuid 5491f5ad-3fda-4679-ae0c-13a08573f681)
  4508. )
  4509. (label "A4" (at 196.215 188.595 180)
  4510. (effects (font (size 1.27 1.27)) (justify right bottom))
  4511. (uuid 557cbb30-b012-4735-81b4-202ac22a6291)
  4512. )
  4513. (label "A10" (at 365.76 106.045 180)
  4514. (effects (font (size 1.27 1.27)) (justify right bottom))
  4515. (uuid 55bbcc75-5b03-4c0b-b8d1-2182691acafb)
  4516. )
  4517. (label "D0" (at 365.76 123.825 180)
  4518. (effects (font (size 1.27 1.27)) (justify right bottom))
  4519. (uuid 565f539a-f733-408a-ba3c-2f96a91eb875)
  4520. )
  4521. (label "A11" (at 142.875 81.28 0)
  4522. (effects (font (size 1.27 1.27)) (justify left bottom))
  4523. (uuid 58ef887a-4cb9-4326-a0f7-e152e9b61a42)
  4524. )
  4525. (label "EE_CLK" (at 190.5 142.875 0)
  4526. (effects (font (size 1.27 1.27)) (justify left bottom))
  4527. (uuid 5a3066b4-6a32-43af-993b-35e4eafb9dc1)
  4528. )
  4529. (label "A15" (at 142.875 91.44 0)
  4530. (effects (font (size 1.27 1.27)) (justify left bottom))
  4531. (uuid 5c1d3431-fac2-45ea-845e-d9a201cd76e5)
  4532. )
  4533. (label "A16" (at 196.215 153.035 180)
  4534. (effects (font (size 1.27 1.27)) (justify right bottom))
  4535. (uuid 5d9033ff-2f9c-4e3d-b1ff-7a11244d4926)
  4536. )
  4537. (label "A5" (at 142.875 66.04 0)
  4538. (effects (font (size 1.27 1.27)) (justify left bottom))
  4539. (uuid 5dddb0ba-4095-4f9b-a30a-c1a0b70b64b6)
  4540. )
  4541. (label "~{Z_BUSACK_2}" (at 140.97 224.155 180)
  4542. (effects (font (size 1.27 1.27)) (justify right bottom))
  4543. (uuid 5e61852b-26fc-428d-8379-e660a52bfab4)
  4544. )
  4545. (label "A1" (at 77.47 45.72 180)
  4546. (effects (font (size 1.27 1.27)) (justify right bottom))
  4547. (uuid 5f5dd508-6821-433e-adb9-6f20b49336c8)
  4548. )
  4549. (label "A10" (at 196.215 216.535 180)
  4550. (effects (font (size 1.27 1.27)) (justify right bottom))
  4551. (uuid 61b20224-7f81-4a6a-9ae2-cb680dadbdc2)
  4552. )
  4553. (label "~{RFSH" (at 73.66 167.005 180)
  4554. (effects (font (size 1.27 1.27)) (justify right bottom))
  4555. (uuid 62ed8a4f-bc4b-4fde-ac08-17701ab2fd44)
  4556. )
  4557. (label "A7" (at 196.215 201.295 180)
  4558. (effects (font (size 1.27 1.27)) (justify right bottom))
  4559. (uuid 65ede8da-130a-4a81-aed8-5e40f90403b8)
  4560. )
  4561. (label "MD2" (at 135.255 193.675 0)
  4562. (effects (font (size 1.27 1.27)) (justify left bottom))
  4563. (uuid 66235ebb-2113-451c-9eec-70a5753d45d5)
  4564. )
  4565. (label "~{RESET" (at 18.415 43.18 0)
  4566. (effects (font (size 1.27 1.27)) (justify left bottom))
  4567. (uuid 667e6e22-99f9-4cd8-8474-2dbd14fb3bb0)
  4568. )
  4569. (label "A7" (at 142.875 71.12 0)
  4570. (effects (font (size 1.27 1.27)) (justify left bottom))
  4571. (uuid 68a8d33a-ba19-4826-aaee-d329f24fb894)
  4572. )
  4573. (label "D7" (at 37.465 167.005 0)
  4574. (effects (font (size 1.27 1.27)) (justify left bottom))
  4575. (uuid 68c3ada3-81db-4608-8715-4afc01bf5b4d)
  4576. )
  4577. (label "~{M1}" (at 73.66 169.545 180)
  4578. (effects (font (size 1.27 1.27)) (justify right bottom))
  4579. (uuid 6a592925-d5f5-4461-a2a5-eb8ff8c69e89)
  4580. )
  4581. (label "~{Z_CLK_2}" (at 43.18 149.225 180)
  4582. (effects (font (size 1.27 1.27)) (justify right bottom))
  4583. (uuid 6d4cc48f-a213-4ea4-8dab-8c6e6b35cab7)
  4584. )
  4585. (label "MD4" (at 188.595 62.865 180)
  4586. (effects (font (size 1.27 1.27)) (justify right bottom))
  4587. (uuid 6d73ef86-1a7a-44f2-b4f9-304d4b64e414)
  4588. )
  4589. (label "~{Z_NMI_1}" (at 32.385 58.42 180)
  4590. (effects (font (size 1.27 1.27)) (justify right bottom))
  4591. (uuid 6e1dc768-883b-4298-83d9-9a64fbeba880)
  4592. )
  4593. (label "A8" (at 77.47 63.5 180)
  4594. (effects (font (size 1.27 1.27)) (justify right bottom))
  4595. (uuid 6eacfe76-8ad2-4a9d-99c0-1cbba2bb90ff)
  4596. )
  4597. (label "MD6" (at 188.595 67.945 180)
  4598. (effects (font (size 1.27 1.27)) (justify right bottom))
  4599. (uuid 6ffd9236-f463-4419-b901-e10eed7c3242)
  4600. )
  4601. (label "A15" (at 365.76 118.745 180)
  4602. (effects (font (size 1.27 1.27)) (justify right bottom))
  4603. (uuid 71b179ec-a9c5-4334-8a0d-c583c2901559)
  4604. )
  4605. (label "A2" (at 65.405 156.845 180)
  4606. (effects (font (size 1.27 1.27)) (justify right bottom))
  4607. (uuid 744b7f61-ee4e-4513-a2f2-ddf2f26558ed)
  4608. )
  4609. (label "MD2" (at 188.595 57.785 180)
  4610. (effects (font (size 1.27 1.27)) (justify right bottom))
  4611. (uuid 74b9c0a1-ed3a-4bbd-8e1f-94958a6e84da)
  4612. )
  4613. (label "A15" (at 196.215 198.755 180)
  4614. (effects (font (size 1.27 1.27)) (justify right bottom))
  4615. (uuid 7584819d-a907-4326-8921-2020b830a01f)
  4616. )
  4617. (label "A14" (at 142.875 88.9 0)
  4618. (effects (font (size 1.27 1.27)) (justify left bottom))
  4619. (uuid 779be434-574b-40d9-9fa0-8cdc30a97e91)
  4620. )
  4621. (label "~{Z_BUSRQ_1}" (at 32.385 101.6 180)
  4622. (effects (font (size 1.27 1.27)) (justify right bottom))
  4623. (uuid 7a019e3f-f2a2-431b-88a7-9ab271a55883)
  4624. )
  4625. (label "D4" (at 37.465 151.765 0)
  4626. (effects (font (size 1.27 1.27)) (justify left bottom))
  4627. (uuid 7cdc8cff-7453-46d8-bf8f-bfe5fd857d77)
  4628. )
  4629. (label "A13" (at 365.76 113.665 180)
  4630. (effects (font (size 1.27 1.27)) (justify right bottom))
  4631. (uuid 7e38e4c9-3035-48a7-b49b-4ea124fcd0d7)
  4632. )
  4633. (label "A15" (at 77.47 81.28 180)
  4634. (effects (font (size 1.27 1.27)) (justify right bottom))
  4635. (uuid 7e859eb8-045b-422b-9d5c-da272fed1e78)
  4636. )
  4637. (label "A7" (at 365.76 95.885 180)
  4638. (effects (font (size 1.27 1.27)) (justify right bottom))
  4639. (uuid 7f9131be-3b17-463e-9ff7-1c8753b17b85)
  4640. )
  4641. (label "A4" (at 142.875 63.5 0)
  4642. (effects (font (size 1.27 1.27)) (justify left bottom))
  4643. (uuid 813d658f-bdcc-49e0-b47e-0e65c5303186)
  4644. )
  4645. (label "D3" (at 37.465 154.305 0)
  4646. (effects (font (size 1.27 1.27)) (justify left bottom))
  4647. (uuid 825854fe-4c41-4536-9b74-a854c0f7cfa1)
  4648. )
  4649. (label "~{Z_BUSRQ_2}" (at 140.97 221.615 180)
  4650. (effects (font (size 1.27 1.27)) (justify right bottom))
  4651. (uuid 82b88190-0c7d-442d-8221-0f0e60565747)
  4652. )
  4653. (label "A2" (at 365.76 83.185 180)
  4654. (effects (font (size 1.27 1.27)) (justify right bottom))
  4655. (uuid 847d66ef-6e65-43de-b8dc-23a6f0a9c0b5)
  4656. )
  4657. (label "D2" (at 37.465 164.465 0)
  4658. (effects (font (size 1.27 1.27)) (justify left bottom))
  4659. (uuid 86b8abeb-7142-462b-84c5-fabf2d64cf5b)
  4660. )
  4661. (label "~{HALT" (at 18.415 76.2 0)
  4662. (effects (font (size 1.27 1.27)) (justify left bottom))
  4663. (uuid 879b5e91-aaa4-4bf5-ad48-797e31a3f81c)
  4664. )
  4665. (label "A0" (at 365.76 78.105 180)
  4666. (effects (font (size 1.27 1.27)) (justify right bottom))
  4667. (uuid 87de67df-3850-4831-bda5-8c944db70d8a)
  4668. )
  4669. (label "~{M_CE}" (at 135.255 211.455 0)
  4670. (effects (font (size 1.27 1.27)) (justify left bottom))
  4671. (uuid 8bb08a12-c7b3-4b4a-a849-654ccacfc497)
  4672. )
  4673. (label "A10" (at 65.405 136.525 180)
  4674. (effects (font (size 1.27 1.27)) (justify right bottom))
  4675. (uuid 8bc9a64a-7507-46bd-96c2-edf37f36f825)
  4676. )
  4677. (label "D0" (at 77.47 86.36 180)
  4678. (effects (font (size 1.27 1.27)) (justify right bottom))
  4679. (uuid 8c7a4095-70f6-4c3d-9f6f-08ac43818997)
  4680. )
  4681. (label "MD3" (at 188.595 60.325 180)
  4682. (effects (font (size 1.27 1.27)) (justify right bottom))
  4683. (uuid 8de9381d-320e-4782-b83b-046e717bce53)
  4684. )
  4685. (label "MD7" (at 188.595 70.485 180)
  4686. (effects (font (size 1.27 1.27)) (justify right bottom))
  4687. (uuid 8e7d40d4-69f7-47f3-8a3f-1131a5c5bff5)
  4688. )
  4689. (label "D2" (at 77.47 91.44 180)
  4690. (effects (font (size 1.27 1.27)) (justify right bottom))
  4691. (uuid 8e8b5348-61cd-431e-a570-1304532bdb80)
  4692. )
  4693. (label "D2" (at 365.76 128.905 180)
  4694. (effects (font (size 1.27 1.27)) (justify right bottom))
  4695. (uuid 8f769dbb-3d3d-4c50-80c3-f71a0d3fbd3f)
  4696. )
  4697. (label "~{INT" (at 29.21 174.625 0)
  4698. (effects (font (size 1.27 1.27)) (justify left bottom))
  4699. (uuid 8f774183-9e00-42a1-ade8-425551929bec)
  4700. )
  4701. (label "~{M_CE}" (at 142.875 107.95 0)
  4702. (effects (font (size 1.27 1.27)) (justify left bottom))
  4703. (uuid 91a775a3-8af1-466f-844c-0c7f947dfcce)
  4704. )
  4705. (label "~{Z_MREQ_2}" (at 140.97 208.915 180)
  4706. (effects (font (size 1.27 1.27)) (justify right bottom))
  4707. (uuid 92171f5b-54fe-4c8e-ae38-ddc7ffd3121d)
  4708. )
  4709. (label "EE_DATA" (at 196.215 221.615 180)
  4710. (effects (font (size 1.27 1.27)) (justify right bottom))
  4711. (uuid 96424d8c-fca8-4257-ba8a-8195ac73ec88)
  4712. )
  4713. (label "A4" (at 365.76 88.265 180)
  4714. (effects (font (size 1.27 1.27)) (justify right bottom))
  4715. (uuid 9809c1ec-8ba7-451b-8f46-468e1ed81c63)
  4716. )
  4717. (label "~{M_WE" (at 142.875 102.87 0)
  4718. (effects (font (size 1.27 1.27)) (justify left bottom))
  4719. (uuid 9b8f25c2-42de-498d-a68f-713a69642a9e)
  4720. )
  4721. (label "A2" (at 196.215 175.895 180)
  4722. (effects (font (size 1.27 1.27)) (justify right bottom))
  4723. (uuid 9e2bc80d-771b-45ae-bb55-5fc4010624ea)
  4724. )
  4725. (label "~{WR" (at 127 183.515 0)
  4726. (effects (font (size 1.27 1.27)) (justify left bottom))
  4727. (uuid 9e5c0a70-2e6d-449d-88d1-20be3bd17b69)
  4728. )
  4729. (label "~{M1}" (at 127 150.495 0)
  4730. (effects (font (size 1.27 1.27)) (justify left bottom))
  4731. (uuid 9f81be38-4d85-4e65-9c44-8ffee6c5337f)
  4732. )
  4733. (label "EE_CLK" (at 276.86 146.685 180)
  4734. (effects (font (size 1.27 1.27)) (justify right bottom))
  4735. (uuid a16c88ef-20c3-4b46-9ed1-1f2fba60d9fb)
  4736. )
  4737. (label "D3" (at 365.76 131.445 180)
  4738. (effects (font (size 1.27 1.27)) (justify right bottom))
  4739. (uuid a206e6ca-563c-4c62-b506-53726c2fc223)
  4740. )
  4741. (label "D0" (at 37.465 169.545 0)
  4742. (effects (font (size 1.27 1.27)) (justify left bottom))
  4743. (uuid a2ec4027-fa8b-4ee9-8868-3c43e4592dd8)
  4744. )
  4745. (label "A3" (at 196.215 180.975 180)
  4746. (effects (font (size 1.27 1.27)) (justify right bottom))
  4747. (uuid a4389ace-3e1f-43b7-801b-16cfb5533943)
  4748. )
  4749. (label "A9" (at 196.215 211.455 180)
  4750. (effects (font (size 1.27 1.27)) (justify right bottom))
  4751. (uuid a466b32d-667d-4383-8712-674114677eb8)
  4752. )
  4753. (label "D4" (at 196.215 191.135 180)
  4754. (effects (font (size 1.27 1.27)) (justify right bottom))
  4755. (uuid a5085056-9a7f-4966-8c4f-408d37cacb0e)
  4756. )
  4757. (label "~{Z_BUSRQ_2}" (at 59.69 174.625 0)
  4758. (effects (font (size 1.27 1.27)) (justify left bottom))
  4759. (uuid a8291c6a-0990-4390-8188-a21165bff23e)
  4760. )
  4761. (label "~{M_OE}" (at 142.875 105.41 0)
  4762. (effects (font (size 1.27 1.27)) (justify left bottom))
  4763. (uuid a93a5029-0f0a-4932-899b-67b98b858829)
  4764. )
  4765. (label "D7" (at 77.47 104.14 180)
  4766. (effects (font (size 1.27 1.27)) (justify right bottom))
  4767. (uuid aa9e8aa6-b33e-4558-ad1d-9e1ecc0335b7)
  4768. )
  4769. (label "A12" (at 77.47 73.66 180)
  4770. (effects (font (size 1.27 1.27)) (justify right bottom))
  4771. (uuid abffa123-1b91-4da7-8106-2166d46717d8)
  4772. )
  4773. (label "D1" (at 37.465 172.085 0)
  4774. (effects (font (size 1.27 1.27)) (justify left bottom))
  4775. (uuid aca6de47-207a-4289-ab4e-05387c390274)
  4776. )
  4777. (label "MD7" (at 135.255 206.375 0)
  4778. (effects (font (size 1.27 1.27)) (justify left bottom))
  4779. (uuid adc19d0f-1336-4494-87b0-f20ad4ecca23)
  4780. )
  4781. (label "~{Z_MREQ_1}" (at 32.385 91.44 180)
  4782. (effects (font (size 1.27 1.27)) (justify right bottom))
  4783. (uuid aec59fb8-6af7-444f-bcab-3f17cde71af1)
  4784. )
  4785. (label "D5" (at 365.76 136.525 180)
  4786. (effects (font (size 1.27 1.27)) (justify right bottom))
  4787. (uuid b04cc6da-af73-43cb-8a3f-145787a4328e)
  4788. )
  4789. (label "A2" (at 142.875 58.42 0)
  4790. (effects (font (size 1.27 1.27)) (justify left bottom))
  4791. (uuid b1862e7d-cfe6-4c38-ade1-7b5bdba9e490)
  4792. )
  4793. (label "A0" (at 65.405 161.925 180)
  4794. (effects (font (size 1.27 1.27)) (justify right bottom))
  4795. (uuid b336fa7a-b140-46bc-bc08-26467f596b92)
  4796. )
  4797. (label "~{HALT" (at 127 158.115 0)
  4798. (effects (font (size 1.27 1.27)) (justify left bottom))
  4799. (uuid b49b45c9-3b43-4b14-9cf8-3422b0dfdef5)
  4800. )
  4801. (label "~{RFSH" (at 127 153.035 0)
  4802. (effects (font (size 1.27 1.27)) (justify left bottom))
  4803. (uuid b6063256-811c-4242-bc0f-cffb9975ba11)
  4804. )
  4805. (label "D4" (at 365.76 133.985 180)
  4806. (effects (font (size 1.27 1.27)) (justify right bottom))
  4807. (uuid b82f1777-4fbc-493c-9e9d-313a4ca64893)
  4808. )
  4809. (label "A11" (at 196.215 219.075 180)
  4810. (effects (font (size 1.27 1.27)) (justify right bottom))
  4811. (uuid b9b2f055-436c-4a7f-a0e2-95101d8d5b4c)
  4812. )
  4813. (label "D5" (at 77.47 99.06 180)
  4814. (effects (font (size 1.27 1.27)) (justify right bottom))
  4815. (uuid b9e565a7-629e-4551-9593-4a57021fc520)
  4816. )
  4817. (label "D1" (at 196.215 160.655 180)
  4818. (effects (font (size 1.27 1.27)) (justify right bottom))
  4819. (uuid bdd703c4-1d9b-4b76-b430-700bd1dc8d16)
  4820. )
  4821. (label "D2" (at 196.215 168.275 180)
  4822. (effects (font (size 1.27 1.27)) (justify right bottom))
  4823. (uuid bfa6c75b-cb42-42fb-a6d7-5e765470e04e)
  4824. )
  4825. (label "~{Z_MREQ_2}" (at 43.18 182.245 180)
  4826. (effects (font (size 1.27 1.27)) (justify right bottom))
  4827. (uuid c097c9bb-b1c9-411c-908e-bcdb840ce8f8)
  4828. )
  4829. (label "A3" (at 365.76 85.725 180)
  4830. (effects (font (size 1.27 1.27)) (justify right bottom))
  4831. (uuid c1b03ca6-25dc-489d-a683-fef50d0ed989)
  4832. )
  4833. (label "A6" (at 142.875 68.58 0)
  4834. (effects (font (size 1.27 1.27)) (justify left bottom))
  4835. (uuid c4b560fc-d673-43d7-8931-9781cff558a6)
  4836. )
  4837. (label "A3" (at 77.47 50.8 180)
  4838. (effects (font (size 1.27 1.27)) (justify right bottom))
  4839. (uuid c5a3b88b-7dda-4ae5-a78b-74c62dcd106e)
  4840. )
  4841. (label "~{WAIT" (at 18.415 73.66 0)
  4842. (effects (font (size 1.27 1.27)) (justify left bottom))
  4843. (uuid c623a374-c4bb-4d0e-9f6c-91fc321eb113)
  4844. )
  4845. (label "~{Z_CLK_1}" (at 32.385 50.8 180)
  4846. (effects (font (size 1.27 1.27)) (justify right bottom))
  4847. (uuid c6e11bbb-ad16-41c9-8c29-d343abcfde4c)
  4848. )
  4849. (label "A5" (at 196.215 193.675 180)
  4850. (effects (font (size 1.27 1.27)) (justify right bottom))
  4851. (uuid cd303d74-2cc3-4ef3-8243-2041981c9782)
  4852. )
  4853. (label "A11" (at 365.76 108.585 180)
  4854. (effects (font (size 1.27 1.27)) (justify right bottom))
  4855. (uuid cdd91691-e7a5-4a7e-af06-1a51df9293ff)
  4856. )
  4857. (label "A8" (at 142.875 73.66 0)
  4858. (effects (font (size 1.27 1.27)) (justify left bottom))
  4859. (uuid ce26aadb-a05f-4b45-9f51-9ddf7e51a4dd)
  4860. )
  4861. (label "A14" (at 77.47 78.74 180)
  4862. (effects (font (size 1.27 1.27)) (justify right bottom))
  4863. (uuid d05b16da-d04a-45a4-9aa0-31f4178b7280)
  4864. )
  4865. (label "A11" (at 77.47 71.12 180)
  4866. (effects (font (size 1.27 1.27)) (justify right bottom))
  4867. (uuid d0b40821-72c5-4527-85a2-ce1fcd0a5d9a)
  4868. )
  4869. (label "A5" (at 365.76 90.805 180)
  4870. (effects (font (size 1.27 1.27)) (justify right bottom))
  4871. (uuid d247401f-922c-481f-9cd6-2d8604d46439)
  4872. )
  4873. (label "MD3" (at 135.255 196.215 0)
  4874. (effects (font (size 1.27 1.27)) (justify left bottom))
  4875. (uuid d2923d04-4dea-4e61-97b3-12094dc50312)
  4876. )
  4877. (label "~{WAIT" (at 73.66 177.165 180)
  4878. (effects (font (size 1.27 1.27)) (justify right bottom))
  4879. (uuid d6f26e93-120d-40a7-8415-4217205b208e)
  4880. )
  4881. (label "~{RFSH" (at 18.415 71.12 0)
  4882. (effects (font (size 1.27 1.27)) (justify left bottom))
  4883. (uuid d726b6f8-a1df-43f7-a137-53ac2e1abd29)
  4884. )
  4885. (label "A6" (at 365.76 93.345 180)
  4886. (effects (font (size 1.27 1.27)) (justify right bottom))
  4887. (uuid dbe6be7b-854c-4ae6-ac01-b753252902d2)
  4888. )
  4889. (label "EE_CS" (at 196.215 224.155 180)
  4890. (effects (font (size 1.27 1.27)) (justify right bottom))
  4891. (uuid dc2a4a8e-2dc0-4a30-84be-6b62536ba09c)
  4892. )
  4893. (label "A12" (at 365.76 111.125 180)
  4894. (effects (font (size 1.27 1.27)) (justify right bottom))
  4895. (uuid dca73153-da63-4d7e-b852-d7b4ed3c900d)
  4896. )
  4897. (label "A14" (at 365.76 116.205 180)
  4898. (effects (font (size 1.27 1.27)) (justify right bottom))
  4899. (uuid ddc774ae-a2c7-47a5-a3bc-f64c4c95e7f9)
  4900. )
  4901. (label "A12" (at 196.215 213.995 180)
  4902. (effects (font (size 1.27 1.27)) (justify right bottom))
  4903. (uuid e00361cd-73de-4b17-80f5-850b29a67cff)
  4904. )
  4905. (label "A8" (at 196.215 206.375 180)
  4906. (effects (font (size 1.27 1.27)) (justify right bottom))
  4907. (uuid e078e6ef-c89b-42db-8f24-af2fb5bede20)
  4908. )
  4909. (label "~{Z_CLK_1}" (at 140.97 145.415 180)
  4910. (effects (font (size 1.27 1.27)) (justify right bottom))
  4911. (uuid e0bf599d-c7ab-4da0-b521-b95f50637035)
  4912. )
  4913. (label "A4" (at 77.47 53.34 180)
  4914. (effects (font (size 1.27 1.27)) (justify right bottom))
  4915. (uuid e114b46b-a959-40c5-ae81-a4b4b9bc9809)
  4916. )
  4917. (label "D6" (at 196.215 173.355 180)
  4918. (effects (font (size 1.27 1.27)) (justify right bottom))
  4919. (uuid e1a7758e-8124-473f-8834-c2d13d8ddd2a)
  4920. )
  4921. (label "~{Z_MREQ_1}" (at 140.97 170.815 180)
  4922. (effects (font (size 1.27 1.27)) (justify right bottom))
  4923. (uuid e3347264-2757-48b7-9680-b1b72a4b2705)
  4924. )
  4925. (label "A9" (at 142.875 76.2 0)
  4926. (effects (font (size 1.27 1.27)) (justify left bottom))
  4927. (uuid e334e1e0-f181-43f9-9bc7-af32d202937c)
  4928. )
  4929. (label "EE_CS" (at 276.86 144.145 180)
  4930. (effects (font (size 1.27 1.27)) (justify right bottom))
  4931. (uuid e39d0699-3fdc-4ebb-9aa0-ef3160c2333e)
  4932. )
  4933. (label "A9" (at 77.47 66.04 180)
  4934. (effects (font (size 1.27 1.27)) (justify right bottom))
  4935. (uuid e3bce4f3-c90d-40f6-8290-6d3a2c3bdbae)
  4936. )
  4937. (label "MD1" (at 188.595 55.245 180)
  4938. (effects (font (size 1.27 1.27)) (justify right bottom))
  4939. (uuid e54e5b47-4cc0-4baf-b525-23d3af98b39c)
  4940. )
  4941. (label "D7" (at 196.215 155.575 180)
  4942. (effects (font (size 1.27 1.27)) (justify right bottom))
  4943. (uuid e834a77c-c9ef-44fb-8559-0aca0060b02e)
  4944. )
  4945. (label "~{Z_CLK_2}" (at 137.16 142.875 180)
  4946. (effects (font (size 1.27 1.27)) (justify right bottom))
  4947. (uuid e9934e1f-5e47-45e5-a81c-1b0855e42642)
  4948. )
  4949. (label "D4" (at 77.47 96.52 180)
  4950. (effects (font (size 1.27 1.27)) (justify right bottom))
  4951. (uuid e9f84def-bc98-4833-aaf2-2379142272f7)
  4952. )
  4953. (label "~{Z_NMI_2}" (at 140.97 175.895 180)
  4954. (effects (font (size 1.27 1.27)) (justify right bottom))
  4955. (uuid ec7e39e6-d275-4f4d-991c-585691826409)
  4956. )
  4957. (label "EE_DATA" (at 276.86 149.225 180)
  4958. (effects (font (size 1.27 1.27)) (justify right bottom))
  4959. (uuid ec9263df-1a2d-4f7f-9f30-c0a54f118119)
  4960. )
  4961. (label "MD0" (at 188.595 52.705 180)
  4962. (effects (font (size 1.27 1.27)) (justify right bottom))
  4963. (uuid eda00f8b-48de-4df3-b850-5a2ae12d0443)
  4964. )
  4965. (label "A1" (at 365.76 80.645 180)
  4966. (effects (font (size 1.27 1.27)) (justify right bottom))
  4967. (uuid eef491dc-72a5-48f3-a232-d0c0ce66832b)
  4968. )
  4969. (label "D0" (at 196.215 158.115 180)
  4970. (effects (font (size 1.27 1.27)) (justify right bottom))
  4971. (uuid f1350c22-f5d4-4dff-8785-a3d9e663637c)
  4972. )
  4973. (label "FT_nRXLED" (at 478.79 137.795 0)
  4974. (effects (font (size 1.27 1.27)) (justify left bottom))
  4975. (uuid f2fb07a6-7911-4ea4-8d33-00b060df0950)
  4976. )
  4977. (label "MD0" (at 135.255 188.595 0)
  4978. (effects (font (size 1.27 1.27)) (justify left bottom))
  4979. (uuid f9b4fee1-483d-4e50-b945-061a2881b72a)
  4980. )
  4981. (label "~{IORQ" (at 127 219.075 0)
  4982. (effects (font (size 1.27 1.27)) (justify left bottom))
  4983. (uuid ff83bcfe-e865-46cc-ba36-e6b3898ede36)
  4984. )
  4985. (global_label "USB_DM" (shape input) (at 297.18 103.505 180) (fields_autoplaced)
  4986. (effects (font (size 1.27 1.27)) (justify right))
  4987. (uuid 7d57a468-7c27-4ebd-b016-8490f96d2cd9)
  4988. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.38 28.575 0)
  4989. (effects (font (size 1.27 1.27)) hide)
  4990. )
  4991. )
  4992. (global_label "USB_DP" (shape input) (at 297.18 106.045 180) (fields_autoplaced)
  4993. (effects (font (size 1.27 1.27)) (justify right))
  4994. (uuid c200a294-97e7-4aad-a80d-ffb40ddee547)
  4995. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.38 28.575 0)
  4996. (effects (font (size 1.27 1.27)) hide)
  4997. )
  4998. )
  4999. (global_label "USB_DM" (shape input) (at 354.965 248.92 0) (fields_autoplaced)
  5000. (effects (font (size 1.27 1.27)) (justify left))
  5001. (uuid ed4882df-21aa-4bbd-93d1-80ca5dbc52f5)
  5002. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 291.465 78.74 0)
  5003. (effects (font (size 1.27 1.27)) hide)
  5004. )
  5005. )
  5006. (global_label "USB_DP" (shape input) (at 354.965 220.98 0) (fields_autoplaced)
  5007. (effects (font (size 1.27 1.27)) (justify left))
  5008. (uuid fa999a23-15f3-4427-ab2d-0428d3824ec1)
  5009. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 291.465 53.34 0)
  5010. (effects (font (size 1.27 1.27)) hide)
  5011. )
  5012. )
  5013. (symbol (lib_id "Device:C_Small") (at 278.13 86.995 0) (unit 1)
  5014. (in_bom yes) (on_board yes)
  5015. (uuid 057e4a51-9749-4994-b275-015088cf2c45)
  5016. (property "Reference" "C5" (id 0) (at 274.32 89.535 0)
  5017. (effects (font (size 1.27 1.27)) (justify left))
  5018. )
  5019. (property "Value" "4.7uF/25V/10%/0603" (id 1) (at 279.019 98.806 90)
  5020. (effects (font (size 0.635 0.635)) (justify left))
  5021. )
  5022. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 278.13 86.995 0)
  5023. (effects (font (size 1.27 1.27)) hide)
  5024. )
  5025. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1910111742_Murata-Electronics-GRM188R61E475KE15D_C408137.pdf" (id 3) (at 278.13 86.995 0)
  5026. (effects (font (size 1.27 1.27)) hide)
  5027. )
  5028. (property "Mfr #" "GRM188R61E475KE15D" (id 4) (at 278.13 86.995 0)
  5029. (effects (font (size 1.27 1.27)) hide)
  5030. )
  5031. (property "LCSC #" "C408137" (id 5) (at 278.13 86.995 0)
  5032. (effects (font (size 1.27 1.27)) hide)
  5033. )
  5034. (pin "1" (uuid 0b86a5a5-8b2c-45a3-8a37-7a7e4e095f07))
  5035. (pin "2" (uuid 3a02d674-64d9-4247-b165-8a96ebec73f1))
  5036. )
  5037. (symbol (lib_id "power:+5V") (at 167.005 46.355 0) (unit 1)
  5038. (in_bom yes) (on_board yes) (fields_autoplaced)
  5039. (uuid 08d9a933-d909-4769-861a-c4b5ab315cde)
  5040. (property "Reference" "#PWR0138" (id 0) (at 167.005 50.165 0)
  5041. (effects (font (size 1.27 1.27)) hide)
  5042. )
  5043. (property "Value" "+5V" (id 1) (at 167.005 41.275 0))
  5044. (property "Footprint" "" (id 2) (at 167.005 46.355 0)
  5045. (effects (font (size 1.27 1.27)) hide)
  5046. )
  5047. (property "Datasheet" "" (id 3) (at 167.005 46.355 0)
  5048. (effects (font (size 1.27 1.27)) hide)
  5049. )
  5050. (pin "1" (uuid 808f81f9-c639-4e87-b341-1f610a377865))
  5051. )
  5052. (symbol (lib_id "power:GND") (at 30.48 246.38 0) (unit 1)
  5053. (in_bom yes) (on_board yes)
  5054. (uuid 0c73a196-e7d4-45f0-b412-702cf8f01f94)
  5055. (property "Reference" "#PWR0106" (id 0) (at 30.48 252.73 0)
  5056. (effects (font (size 1.27 1.27)) hide)
  5057. )
  5058. (property "Value" "GND" (id 1) (at 30.607 250.7742 0))
  5059. (property "Footprint" "" (id 2) (at 30.48 246.38 0)
  5060. (effects (font (size 1.27 1.27)) hide)
  5061. )
  5062. (property "Datasheet" "" (id 3) (at 30.48 246.38 0)
  5063. (effects (font (size 1.27 1.27)) hide)
  5064. )
  5065. (pin "1" (uuid 5b3c029b-c6f6-40ce-acba-a59f08203b5c))
  5066. )
  5067. (symbol (lib_id "Device:C_Small") (at 271.78 86.995 0) (unit 1)
  5068. (in_bom yes) (on_board yes)
  5069. (uuid 0d9734d7-6b5f-4645-a39d-f6e943cf28b2)
  5070. (property "Reference" "C3" (id 0) (at 267.97 89.535 0)
  5071. (effects (font (size 1.27 1.27)) (justify left))
  5072. )
  5073. (property "Value" "4.7uF/25V/10%/0603" (id 1) (at 272.669 98.806 90)
  5074. (effects (font (size 0.635 0.635)) (justify left))
  5075. )
  5076. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 271.78 86.995 0)
  5077. (effects (font (size 1.27 1.27)) hide)
  5078. )
  5079. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1910111742_Murata-Electronics-GRM188R61E475KE15D_C408137.pdf" (id 3) (at 271.78 86.995 0)
  5080. (effects (font (size 1.27 1.27)) hide)
  5081. )
  5082. (property "Mfr #" "GRM188R61E475KE15D" (id 4) (at 271.78 86.995 0)
  5083. (effects (font (size 1.27 1.27)) hide)
  5084. )
  5085. (property "LCSC #" "C408137" (id 5) (at 271.78 86.995 0)
  5086. (effects (font (size 1.27 1.27)) hide)
  5087. )
  5088. (pin "1" (uuid e15e4b1a-eabe-4d8f-90e1-d9a8ff790b65))
  5089. (pin "2" (uuid f52544f7-9bad-48ce-b8fb-87dc728b1760))
  5090. )
  5091. (symbol (lib_id "power:GND") (at 279.4 159.385 90) (unit 1)
  5092. (in_bom yes) (on_board yes)
  5093. (uuid 0fab5564-99ee-4a7a-9741-e8e2e6b2e8fb)
  5094. (property "Reference" "#PWR0122" (id 0) (at 285.75 159.385 0)
  5095. (effects (font (size 1.27 1.27)) hide)
  5096. )
  5097. (property "Value" "GND" (id 1) (at 282.6512 159.258 90)
  5098. (effects (font (size 1.27 1.27)) (justify right))
  5099. )
  5100. (property "Footprint" "" (id 2) (at 279.4 159.385 0)
  5101. (effects (font (size 1.27 1.27)) hide)
  5102. )
  5103. (property "Datasheet" "" (id 3) (at 279.4 159.385 0)
  5104. (effects (font (size 1.27 1.27)) hide)
  5105. )
  5106. (pin "1" (uuid 36e9c919-4234-4802-b2b5-9ee01e65bd62))
  5107. )
  5108. (symbol (lib_id "CPU:Z80CPU") (at 52.07 73.66 0) (unit 1)
  5109. (in_bom yes) (on_board yes) (fields_autoplaced)
  5110. (uuid 102b5b78-a9ab-4d9f-994b-8c38f1ce166a)
  5111. (property "Reference" "U2" (id 0) (at 54.0894 33.655 0)
  5112. (effects (font (size 1.27 1.27)) (justify left))
  5113. )
  5114. (property "Value" "Z80CPU" (id 1) (at 54.0894 36.195 0)
  5115. (effects (font (size 1.27 1.27)) (justify left))
  5116. )
  5117. (property "Footprint" "Socket:DIP_Socket-40_W22.1_W22.86_W25.4_W27.94_W28.7_3M_240-3639-00-0602J" (id 2) (at 52.07 63.5 0)
  5118. (effects (font (size 1.27 1.27)) hide)
  5119. )
  5120. (property "Datasheet" "www.zilog.com/manage_directlink.php?filepath=docs/z80/um0080" (id 3) (at 52.07 63.5 0)
  5121. (effects (font (size 1.27 1.27)) hide)
  5122. )
  5123. (pin "1" (uuid b6f67f6f-17c2-4956-9a31-307055022dee))
  5124. (pin "10" (uuid 73b29393-9af2-4a0b-ad11-825596bf95d7))
  5125. (pin "11" (uuid d7c15a95-6cc7-4dcc-9d8f-c45e716d91bd))
  5126. (pin "12" (uuid 47f0e628-2d7e-46ac-b49e-7ff9bcb1ebbf))
  5127. (pin "13" (uuid 2141ce4f-2382-41d3-91b5-7f0a961b8156))
  5128. (pin "14" (uuid f9a95cb4-7f4b-49b0-866b-b68f8d92b625))
  5129. (pin "15" (uuid 6a2c1071-6dc3-4286-9363-f36f8c58c2fe))
  5130. (pin "16" (uuid 4254259c-d997-4dd0-b274-69f742017325))
  5131. (pin "17" (uuid 9416bbe5-8815-4fd4-8e2d-1cdab501abe8))
  5132. (pin "18" (uuid 97ae45ab-1540-4676-ad31-209e2a0757d0))
  5133. (pin "19" (uuid 471f5171-06ce-4352-83dd-cf070aef09e7))
  5134. (pin "2" (uuid de3b8fca-839c-43f4-8eb5-1bae2c72bca3))
  5135. (pin "20" (uuid ad8e43f2-5a8f-41d1-9069-61978c9e8684))
  5136. (pin "21" (uuid fc550d20-68a2-4a9e-8cb2-e1fec3c4ca92))
  5137. (pin "22" (uuid bd02a03e-ee80-43f7-8681-922ca833e433))
  5138. (pin "23" (uuid d2d6a813-4c7d-4c82-b627-b65d4216f33d))
  5139. (pin "24" (uuid 6fc4d045-f188-4961-a734-bbb2d021bdbb))
  5140. (pin "25" (uuid f12e1c0a-ad23-4b8c-bdac-a79ccbd8d831))
  5141. (pin "26" (uuid ba40a09a-8aff-4f57-b942-6c8404bbe389))
  5142. (pin "27" (uuid 296a0bc3-bcdc-4952-a6b6-7c4393817598))
  5143. (pin "28" (uuid c1ec0d6e-fbfa-4773-bca5-a3d60e686cb6))
  5144. (pin "29" (uuid 24f01003-3463-486b-b64c-64a75798bf61))
  5145. (pin "3" (uuid 750d13f5-a8c6-48b7-9c6c-54cbda45f4dd))
  5146. (pin "30" (uuid 0de77752-1764-4e10-823a-6a3abf9fca18))
  5147. (pin "31" (uuid 47279ffd-361d-428f-b3e2-33ce084656b7))
  5148. (pin "32" (uuid 2bd95e56-b5dc-4780-a5a2-80454a8e9730))
  5149. (pin "33" (uuid 59033fe4-52ed-41fd-94eb-b415da840c8c))
  5150. (pin "34" (uuid 3e0473ae-80ef-4f4c-9581-703ad30b9264))
  5151. (pin "35" (uuid 4d20b63d-f8fc-41d7-9f32-da1c5b0cdefa))
  5152. (pin "36" (uuid a26f444d-a8e5-4a80-a84a-6c8aa59dd03e))
  5153. (pin "37" (uuid 76eb7006-605a-446e-99c2-795a75413635))
  5154. (pin "38" (uuid a3e8f6fb-0f18-4db7-8a9f-b8c5c2b629df))
  5155. (pin "39" (uuid 31ad2f1c-06fd-4da8-bde2-3f3437aab262))
  5156. (pin "4" (uuid 22df87e5-45dc-4f39-bbb9-47f7ef21cb6d))
  5157. (pin "40" (uuid bb1bf040-af50-44f4-815a-b7c75b4deec6))
  5158. (pin "5" (uuid 733b24c6-f630-4642-b90e-9c64ffe5a92e))
  5159. (pin "6" (uuid 7705e80b-b58f-446b-8145-19192aae4cca))
  5160. (pin "7" (uuid ffc165ee-1232-4494-b94d-e61f5df98379))
  5161. (pin "8" (uuid 07a57d15-8cfb-4b4b-b7a8-b676b8538f54))
  5162. (pin "9" (uuid d672b215-9c8d-4f7c-9eb5-ebf8ae98f214))
  5163. )
  5164. (symbol (lib_id "power:GND") (at 273.05 183.515 0) (unit 1)
  5165. (in_bom yes) (on_board yes)
  5166. (uuid 1295c243-9fef-4826-8fde-e436bbfeedcb)
  5167. (property "Reference" "#PWR0125" (id 0) (at 273.05 189.865 0)
  5168. (effects (font (size 1.27 1.27)) hide)
  5169. )
  5170. (property "Value" "GND" (id 1) (at 273.177 187.9092 0))
  5171. (property "Footprint" "" (id 2) (at 273.05 183.515 0)
  5172. (effects (font (size 1.27 1.27)) hide)
  5173. )
  5174. (property "Datasheet" "" (id 3) (at 273.05 183.515 0)
  5175. (effects (font (size 1.27 1.27)) hide)
  5176. )
  5177. (pin "1" (uuid ce67889e-6ae6-49a1-8544-ccc9bfe18171))
  5178. )
  5179. (symbol (lib_id "power:+1V8") (at 260.35 76.835 0) (unit 1)
  5180. (in_bom yes) (on_board yes) (fields_autoplaced)
  5181. (uuid 19080ab3-d4ed-43f6-983a-1875845e70a0)
  5182. (property "Reference" "#PWR0145" (id 0) (at 260.35 80.645 0)
  5183. (effects (font (size 1.27 1.27)) hide)
  5184. )
  5185. (property "Value" "+1V8" (id 1) (at 260.35 71.12 0))
  5186. (property "Footprint" "" (id 2) (at 260.35 76.835 0)
  5187. (effects (font (size 1.27 1.27)) hide)
  5188. )
  5189. (property "Datasheet" "" (id 3) (at 260.35 76.835 0)
  5190. (effects (font (size 1.27 1.27)) hide)
  5191. )
  5192. (pin "1" (uuid 90861d83-d918-4cf9-8c46-4183c0c426eb))
  5193. )
  5194. (symbol (lib_id "power:GND") (at 165.735 238.125 0) (unit 1)
  5195. (in_bom yes) (on_board yes)
  5196. (uuid 1b22aea5-c14a-45df-ba6b-407c18ebd943)
  5197. (property "Reference" "#PWR0142" (id 0) (at 165.735 244.475 0)
  5198. (effects (font (size 1.27 1.27)) hide)
  5199. )
  5200. (property "Value" "GND" (id 1) (at 161.29 240.03 0))
  5201. (property "Footprint" "" (id 2) (at 165.735 238.125 0)
  5202. (effects (font (size 1.27 1.27)) hide)
  5203. )
  5204. (property "Datasheet" "" (id 3) (at 165.735 238.125 0)
  5205. (effects (font (size 1.27 1.27)) hide)
  5206. )
  5207. (pin "1" (uuid 060e9619-56ef-4583-99d9-01fc2629ce97))
  5208. )
  5209. (symbol (lib_id "power:GND") (at 38.1 274.32 0) (unit 1)
  5210. (in_bom yes) (on_board yes)
  5211. (uuid 1e188cc2-b835-4356-8ae9-fa55c4982306)
  5212. (property "Reference" "#PWR0111" (id 0) (at 38.1 280.67 0)
  5213. (effects (font (size 1.27 1.27)) hide)
  5214. )
  5215. (property "Value" "GND" (id 1) (at 38.227 278.7142 0))
  5216. (property "Footprint" "" (id 2) (at 38.1 274.32 0)
  5217. (effects (font (size 1.27 1.27)) hide)
  5218. )
  5219. (property "Datasheet" "" (id 3) (at 38.1 274.32 0)
  5220. (effects (font (size 1.27 1.27)) hide)
  5221. )
  5222. (pin "1" (uuid 35126ca3-8395-4c31-8206-e7771f0bd974))
  5223. )
  5224. (symbol (lib_id "Device:C_Small") (at 297.18 55.245 0) (unit 1)
  5225. (in_bom yes) (on_board yes)
  5226. (uuid 1eed8d63-bf4b-47bc-8740-c581f0cfd918)
  5227. (property "Reference" "C8" (id 0) (at 293.37 57.785 0)
  5228. (effects (font (size 1.27 1.27)) (justify left))
  5229. )
  5230. (property "Value" "100nF/25V/10%/0402" (id 1) (at 298.069 67.31 90)
  5231. (effects (font (size 0.635 0.635)) (justify left))
  5232. )
  5233. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 297.18 55.245 0)
  5234. (effects (font (size 1.27 1.27)) hide)
  5235. )
  5236. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 297.18 55.245 0)
  5237. (effects (font (size 1.27 1.27)) hide)
  5238. )
  5239. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 297.18 55.245 0)
  5240. (effects (font (size 1.27 1.27)) hide)
  5241. )
  5242. (property "LCSC #" "C77014" (id 5) (at 297.18 55.245 0)
  5243. (effects (font (size 1.27 1.27)) hide)
  5244. )
  5245. (pin "1" (uuid 1ff88e45-ab72-4cd6-b0b5-5dd90902deac))
  5246. (pin "2" (uuid 1d35f074-dfbf-4370-a6c2-3332a5fb4967))
  5247. )
  5248. (symbol (lib_id "power:+3V3") (at 340.36 64.135 0) (unit 1)
  5249. (in_bom yes) (on_board yes) (fields_autoplaced)
  5250. (uuid 2454f770-9ba4-4d59-a0c5-1a043a0be8c9)
  5251. (property "Reference" "#PWR0129" (id 0) (at 340.36 67.945 0)
  5252. (effects (font (size 1.27 1.27)) hide)
  5253. )
  5254. (property "Value" "+3V3" (id 1) (at 340.36 59.055 0))
  5255. (property "Footprint" "" (id 2) (at 340.36 64.135 0)
  5256. (effects (font (size 1.27 1.27)) hide)
  5257. )
  5258. (property "Datasheet" "" (id 3) (at 340.36 64.135 0)
  5259. (effects (font (size 1.27 1.27)) hide)
  5260. )
  5261. (pin "1" (uuid 90ffebf2-2c14-498f-80b1-9b53600e4bde))
  5262. )
  5263. (symbol (lib_id "power:+5V") (at 52.07 34.29 0) (unit 1)
  5264. (in_bom yes) (on_board yes) (fields_autoplaced)
  5265. (uuid 2f5122bf-a7c6-483a-9626-60268a0c2cae)
  5266. (property "Reference" "#PWR0136" (id 0) (at 52.07 38.1 0)
  5267. (effects (font (size 1.27 1.27)) hide)
  5268. )
  5269. (property "Value" "+5V" (id 1) (at 52.07 29.21 0))
  5270. (property "Footprint" "" (id 2) (at 52.07 34.29 0)
  5271. (effects (font (size 1.27 1.27)) hide)
  5272. )
  5273. (property "Datasheet" "" (id 3) (at 52.07 34.29 0)
  5274. (effects (font (size 1.27 1.27)) hide)
  5275. )
  5276. (pin "1" (uuid 74fa3b0a-73d6-416e-934f-400bfc17aadf))
  5277. )
  5278. (symbol (lib_id "Device:R_Small") (at 288.29 149.225 270) (unit 1)
  5279. (in_bom yes) (on_board yes)
  5280. (uuid 35283631-fa6a-43f9-b429-2bfcbc217b04)
  5281. (property "Reference" "R4" (id 0) (at 291.465 147.955 90))
  5282. (property "Value" "33R/1%/0402" (id 1) (at 282.702 148.336 90)
  5283. (effects (font (size 0.635 0.635)))
  5284. )
  5285. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 288.29 149.225 0)
  5286. (effects (font (size 1.27 1.27)) hide)
  5287. )
  5288. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810301314_Uniroyal-Elec-0402WGF330JTCE_C25105.pdf" (id 3) (at 288.29 149.225 0)
  5289. (effects (font (size 1.27 1.27)) hide)
  5290. )
  5291. (property "Mfr #" "0402WGF330JTCE" (id 4) (at 288.29 149.225 90)
  5292. (effects (font (size 1.27 1.27)) hide)
  5293. )
  5294. (property "LCSC #" "C25105" (id 5) (at 288.29 149.225 90)
  5295. (effects (font (size 1.27 1.27)) hide)
  5296. )
  5297. (pin "1" (uuid 0b66bfb6-a791-4ce8-ab0e-964abf7df447))
  5298. (pin "2" (uuid f68ec0a6-045a-4721-bac9-2642ca4810ed))
  5299. )
  5300. (symbol (lib_id "Connector_Generic:Conn_02x20_Odd_Even") (at 50.165 159.385 0) (unit 1)
  5301. (in_bom yes) (on_board yes) (fields_autoplaced)
  5302. (uuid 37130447-8071-4e53-aa26-a47c3640e02c)
  5303. (property "Reference" "J1" (id 0) (at 51.435 129.54 0))
  5304. (property "Value" "Conn_02x20_Counter_Clockwise" (id 1) (at 51.435 132.08 0))
  5305. (property "Footprint" "Connector_IDC:IDC-Header_2x20_P2.54mm_Vertical" (id 2) (at 50.165 159.385 0)
  5306. (effects (font (size 1.27 1.27)) hide)
  5307. )
  5308. (property "Datasheet" "~" (id 3) (at 50.165 159.385 0)
  5309. (effects (font (size 1.27 1.27)) hide)
  5310. )
  5311. (pin "1" (uuid a5c2211c-6894-4d2d-9d12-29f439af7c05))
  5312. (pin "10" (uuid 59d92050-0506-426e-b7b2-4a95ad0cd5e3))
  5313. (pin "11" (uuid f148b82f-e2f0-4085-bf4c-370f63ec50e2))
  5314. (pin "12" (uuid 4868304c-6278-47a1-a12f-6ae38a1caabe))
  5315. (pin "13" (uuid 150c4332-5a7d-4167-817b-c0205a62a1d8))
  5316. (pin "14" (uuid c9821362-f93e-48df-a182-9be7db9444e9))
  5317. (pin "15" (uuid f9609612-9717-4af5-b73a-be3d3941948a))
  5318. (pin "16" (uuid 235f5a0c-aa6b-4802-b3f8-e40d4a87f21e))
  5319. (pin "17" (uuid d333c9a5-1de4-4d46-955b-f38967685639))
  5320. (pin "18" (uuid 1a82de16-249e-4b05-bac5-b4c268f3ce2f))
  5321. (pin "19" (uuid 6cffceef-d9e6-447c-93fb-42fd73aea846))
  5322. (pin "2" (uuid d8359546-794d-4115-8b7f-8fd89180e76c))
  5323. (pin "20" (uuid 6a98b918-ae78-4a1a-87cc-01234b5b293e))
  5324. (pin "21" (uuid 53d850de-742e-46f6-ae2e-c74dc9223d31))
  5325. (pin "22" (uuid 73884ea9-01be-485c-a16b-2caa391be383))
  5326. (pin "23" (uuid 5739819c-1e37-4583-a4fc-5c3872e9008c))
  5327. (pin "24" (uuid b15bba9c-651d-48f5-8132-3fb7e7d56374))
  5328. (pin "25" (uuid f481fbd7-308a-4154-8ff5-2131b5b28857))
  5329. (pin "26" (uuid e3700d39-4746-4b61-81bb-f9e6c98490e8))
  5330. (pin "27" (uuid 421d218a-c5c2-493a-9c57-fc7807021238))
  5331. (pin "28" (uuid d09de6be-44fa-4a30-9bdd-3462a025b5e6))
  5332. (pin "29" (uuid 07fa551e-c853-4228-884a-a7778a0a9a02))
  5333. (pin "3" (uuid f0ec313f-e79b-4f40-bb2f-5d2e59104ecc))
  5334. (pin "30" (uuid 3e78dbb1-869e-4558-ac52-3e6e4902d467))
  5335. (pin "31" (uuid 99966c94-c337-48ec-b0cf-eab324709854))
  5336. (pin "32" (uuid ae44e1c7-72ed-410a-9e9b-4abc885a2b90))
  5337. (pin "33" (uuid 238a9569-95f4-4b99-8248-9619fea809e1))
  5338. (pin "34" (uuid 13ca1deb-18bc-4c23-8eca-f61d6492f342))
  5339. (pin "35" (uuid be90930b-7460-4f2e-a183-faa0d802750f))
  5340. (pin "36" (uuid 5afd3d91-6fa6-4f11-8a2d-9ed5cff6cf56))
  5341. (pin "37" (uuid d76d8d66-52fc-46f0-af0d-aa530ffe171d))
  5342. (pin "38" (uuid 66f908cd-ba4f-42ce-8581-cb11dbbf4147))
  5343. (pin "39" (uuid fe6184c6-ed50-4ad0-928d-6993392d3f18))
  5344. (pin "4" (uuid 24f1fb7b-87a4-4d07-944b-f40e936c31b1))
  5345. (pin "40" (uuid 08ede203-5805-4b0d-a94c-3a2b70516d7d))
  5346. (pin "5" (uuid 68c174b7-711f-4098-b4a8-619db85ee520))
  5347. (pin "6" (uuid d2388add-8102-40a9-82cd-856d81f180ae))
  5348. (pin "7" (uuid c9ca18b2-75a3-4ffe-8563-e353954b9423))
  5349. (pin "8" (uuid 60af999f-4b58-46ba-bc35-f441f541be63))
  5350. (pin "9" (uuid a9561864-a7a3-4465-aa20-39790f138154))
  5351. )
  5352. (symbol (lib_id "Device:LED") (at 495.3 142.875 0) (unit 1)
  5353. (in_bom yes) (on_board yes)
  5354. (uuid 39796c10-6f4e-4a28-a3be-e5b2af3c4b54)
  5355. (property "Reference" "D3" (id 0) (at 495.3 147.447 0))
  5356. (property "Value" "LED" (id 1) (at 495.3 145.415 0))
  5357. (property "Footprint" "LED_SMD:LED_0402_1005Metric" (id 2) (at 495.3 142.875 0)
  5358. (effects (font (size 1.27 1.27)) hide)
  5359. )
  5360. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131221_Bright-LED-Elec-BL-HGE37A-AV-TRB_C165979.pdf" (id 3) (at 495.3 142.875 0)
  5361. (effects (font (size 1.27 1.27)) hide)
  5362. )
  5363. (property "Mfr #" "BL-HGE37A-AV-TRB" (id 4) (at 495.3 142.875 0)
  5364. (effects (font (size 1.27 1.27)) hide)
  5365. )
  5366. (property "LCSC #" "C165979" (id 5) (at 495.3 142.875 0)
  5367. (effects (font (size 1.27 1.27)) hide)
  5368. )
  5369. (pin "1" (uuid fba9fc20-b10c-4bb8-8c38-aeea605a19eb))
  5370. (pin "2" (uuid 669367db-5330-43c8-bc3e-e73d8187e663))
  5371. )
  5372. (symbol (lib_id "Device:C_Small") (at 38.1 262.89 0) (unit 1)
  5373. (in_bom yes) (on_board yes)
  5374. (uuid 3df9bc8e-ff2a-4440-8852-ee1d3b45eef8)
  5375. (property "Reference" "C17" (id 0) (at 34.29 265.43 0)
  5376. (effects (font (size 1.27 1.27)) (justify left))
  5377. )
  5378. (property "Value" "100nF/25V/10%/0402" (id 1) (at 38.989 274.955 90)
  5379. (effects (font (size 0.635 0.635)) (justify left))
  5380. )
  5381. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 38.1 262.89 0)
  5382. (effects (font (size 1.27 1.27)) hide)
  5383. )
  5384. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 38.1 262.89 0)
  5385. (effects (font (size 1.27 1.27)) hide)
  5386. )
  5387. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 38.1 262.89 0)
  5388. (effects (font (size 1.27 1.27)) hide)
  5389. )
  5390. (property "LCSC #" "C77014" (id 5) (at 38.1 262.89 0)
  5391. (effects (font (size 1.27 1.27)) hide)
  5392. )
  5393. (pin "1" (uuid c9d4ae31-100b-474b-ac4c-a7e6b58f4476))
  5394. (pin "2" (uuid 17cbe743-3467-4b1e-8aa7-76545ab0187f))
  5395. )
  5396. (symbol (lib_id "power:+3V3") (at 21.59 228.6 0) (unit 1)
  5397. (in_bom yes) (on_board yes) (fields_autoplaced)
  5398. (uuid 3f35bb26-ced8-4ac3-937d-6858f7586540)
  5399. (property "Reference" "#PWR0132" (id 0) (at 21.59 232.41 0)
  5400. (effects (font (size 1.27 1.27)) hide)
  5401. )
  5402. (property "Value" "+3V3" (id 1) (at 21.59 223.52 0))
  5403. (property "Footprint" "" (id 2) (at 21.59 228.6 0)
  5404. (effects (font (size 1.27 1.27)) hide)
  5405. )
  5406. (property "Datasheet" "" (id 3) (at 21.59 228.6 0)
  5407. (effects (font (size 1.27 1.27)) hide)
  5408. )
  5409. (pin "1" (uuid bb2fdffa-5372-43c1-9b92-aa42f502d550))
  5410. )
  5411. (symbol (lib_id "power:GND") (at 279.4 183.515 0) (unit 1)
  5412. (in_bom yes) (on_board yes)
  5413. (uuid 3fd6940e-4f55-4f44-985b-f95e56a2c906)
  5414. (property "Reference" "#PWR0124" (id 0) (at 279.4 189.865 0)
  5415. (effects (font (size 1.27 1.27)) hide)
  5416. )
  5417. (property "Value" "GND" (id 1) (at 279.527 187.9092 0))
  5418. (property "Footprint" "" (id 2) (at 279.4 183.515 0)
  5419. (effects (font (size 1.27 1.27)) hide)
  5420. )
  5421. (property "Datasheet" "" (id 3) (at 279.4 183.515 0)
  5422. (effects (font (size 1.27 1.27)) hide)
  5423. )
  5424. (pin "1" (uuid 1e710cd4-3bd7-4fef-9683-f2be922cea30))
  5425. )
  5426. (symbol (lib_id "Device:R_Small") (at 289.56 111.125 270) (unit 1)
  5427. (in_bom yes) (on_board yes)
  5428. (uuid 41a2c7f8-9d13-4742-8a6d-d47af6cea9fc)
  5429. (property "Reference" "R5" (id 0) (at 293.37 112.395 90))
  5430. (property "Value" "12K/1%" (id 1) (at 289.56 108.458 90))
  5431. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 289.56 111.125 0)
  5432. (effects (font (size 1.27 1.27)) hide)
  5433. )
  5434. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081726_YAGEO-RC0402FR-0712KL_C114760.pdf" (id 3) (at 289.56 111.125 0)
  5435. (effects (font (size 1.27 1.27)) hide)
  5436. )
  5437. (property "Mfr #" "RC0402FR-0712KL" (id 4) (at 289.56 111.125 90)
  5438. (effects (font (size 1.27 1.27)) hide)
  5439. )
  5440. (property "LCSC #" "C114760" (id 5) (at 289.56 111.125 90)
  5441. (effects (font (size 1.27 1.27)) hide)
  5442. )
  5443. (pin "1" (uuid 4e7baf08-96e2-4e70-8164-23ee64dd4cb3))
  5444. (pin "2" (uuid 31238ba1-e274-41fb-84d4-095c45939f23))
  5445. )
  5446. (symbol (lib_id "power:GND") (at 283.21 111.125 270) (unit 1)
  5447. (in_bom yes) (on_board yes)
  5448. (uuid 43b83906-bee1-4be4-ba40-a58742e814b0)
  5449. (property "Reference" "#PWR0121" (id 0) (at 276.86 111.125 0)
  5450. (effects (font (size 1.27 1.27)) hide)
  5451. )
  5452. (property "Value" "GND" (id 1) (at 279.9588 111.252 90)
  5453. (effects (font (size 1.27 1.27)) (justify right))
  5454. )
  5455. (property "Footprint" "" (id 2) (at 283.21 111.125 0)
  5456. (effects (font (size 1.27 1.27)) hide)
  5457. )
  5458. (property "Datasheet" "" (id 3) (at 283.21 111.125 0)
  5459. (effects (font (size 1.27 1.27)) hide)
  5460. )
  5461. (pin "1" (uuid 6f4817ff-1a3a-4f22-bbca-9d7f33281f60))
  5462. )
  5463. (symbol (lib_id "power:GND") (at 25.4 274.32 0) (unit 1)
  5464. (in_bom yes) (on_board yes)
  5465. (uuid 4965be65-426c-42ea-9249-f8569089b33a)
  5466. (property "Reference" "#PWR0110" (id 0) (at 25.4 280.67 0)
  5467. (effects (font (size 1.27 1.27)) hide)
  5468. )
  5469. (property "Value" "GND" (id 1) (at 25.527 278.7142 0))
  5470. (property "Footprint" "" (id 2) (at 25.4 274.32 0)
  5471. (effects (font (size 1.27 1.27)) hide)
  5472. )
  5473. (property "Datasheet" "" (id 3) (at 25.4 274.32 0)
  5474. (effects (font (size 1.27 1.27)) hide)
  5475. )
  5476. (pin "1" (uuid 39e1d44a-df70-46fd-bc97-9537a1b07448))
  5477. )
  5478. (symbol (lib_id "Device:C_Small") (at 31.75 262.89 0) (unit 1)
  5479. (in_bom yes) (on_board yes)
  5480. (uuid 4994864c-f7d0-4c86-948f-73dc2fec1bd9)
  5481. (property "Reference" "C14" (id 0) (at 27.94 265.43 0)
  5482. (effects (font (size 1.27 1.27)) (justify left))
  5483. )
  5484. (property "Value" "100nF/25V/10%/0402" (id 1) (at 32.639 274.955 90)
  5485. (effects (font (size 0.635 0.635)) (justify left))
  5486. )
  5487. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 31.75 262.89 0)
  5488. (effects (font (size 1.27 1.27)) hide)
  5489. )
  5490. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 31.75 262.89 0)
  5491. (effects (font (size 1.27 1.27)) hide)
  5492. )
  5493. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 31.75 262.89 0)
  5494. (effects (font (size 1.27 1.27)) hide)
  5495. )
  5496. (property "LCSC #" "C77014" (id 5) (at 31.75 262.89 0)
  5497. (effects (font (size 1.27 1.27)) hide)
  5498. )
  5499. (pin "1" (uuid 67001bf3-244e-474b-bb40-6b23a2042078))
  5500. (pin "2" (uuid 02083ef5-6bf2-4b07-afb6-041b00593eb2))
  5501. )
  5502. (symbol (lib_id "esp-jtag-rescue:FT2232H-Interface_USB") (at 327.66 126.365 0) (unit 1)
  5503. (in_bom yes) (on_board yes)
  5504. (uuid 4ab71fca-03b4-4ced-8a48-e8a112536b0d)
  5505. (property "Reference" "U4" (id 0) (at 350.52 73.025 0))
  5506. (property "Value" "FT2232H" (id 1) (at 345.44 180.975 0))
  5507. (property "Footprint" "Package_QFP:LQFP-64_10x10mm_P0.5mm" (id 2) (at 327.66 126.365 0)
  5508. (effects (font (size 1.27 1.27)) hide)
  5509. )
  5510. (property "Datasheet" "http://www.ftdichip.com/Products/ICs/FT2232H.html" (id 3) (at 327.66 126.365 0)
  5511. (effects (font (size 1.27 1.27)) hide)
  5512. )
  5513. (property "Mfr #" "FT2232HL-REEL" (id 4) (at 327.66 126.365 0)
  5514. (effects (font (size 1.27 1.27)) hide)
  5515. )
  5516. (property "LCSC #" "C27882" (id 5) (at 327.66 126.365 0)
  5517. (effects (font (size 1.27 1.27)) hide)
  5518. )
  5519. (pin "1" (uuid ffdbcfd1-a229-4297-925d-7eebdd92399f))
  5520. (pin "10" (uuid 519c1e61-1559-48de-9b3a-319388f26777))
  5521. (pin "11" (uuid b96b99d2-85e4-4d5f-9f54-7bb60e54ad64))
  5522. (pin "12" (uuid 620e9d6c-3688-4e80-acc2-a89cf5c01656))
  5523. (pin "13" (uuid f34179ba-248d-4758-bbb6-211b3e96f43c))
  5524. (pin "14" (uuid 20f0113e-ba8d-4ecc-8b60-b8931ae8c53a))
  5525. (pin "15" (uuid 1a22b44d-5eb3-4209-a2cf-3d7342563608))
  5526. (pin "16" (uuid 9d6d3360-8766-4349-ba2c-aa37e72e245a))
  5527. (pin "17" (uuid 7afb8602-5b82-48ef-a035-431751b36a8d))
  5528. (pin "18" (uuid 760f1930-aa13-415c-8779-572b4ed7b0eb))
  5529. (pin "19" (uuid 2e7da579-16ef-4723-8c90-fdabaa677c27))
  5530. (pin "2" (uuid 5e5e6d94-3b48-4c28-a876-d938fac0827a))
  5531. (pin "20" (uuid 72a0913b-420e-492a-b713-f3d44fd92fc7))
  5532. (pin "21" (uuid 6e33d1da-7c2e-4595-aa91-c5e02e43be2d))
  5533. (pin "22" (uuid 7e9e33ce-3c10-4e26-9a47-e978fe73230a))
  5534. (pin "23" (uuid 21909f6a-9acd-449f-b147-7c29d5b3f986))
  5535. (pin "24" (uuid 9cc02887-047f-4656-8fee-3f1cfded926d))
  5536. (pin "25" (uuid 0e43154f-9f91-43e9-abd2-84b91659ed35))
  5537. (pin "26" (uuid 0248da77-55aa-476f-8f53-2f90073ffbdd))
  5538. (pin "27" (uuid 49623d12-0f2b-4086-8e8a-61af23e7ce99))
  5539. (pin "28" (uuid 53797e23-e5f5-44b9-9679-025f3c09b1b2))
  5540. (pin "29" (uuid 15a007ff-e292-4c42-8ba3-982d6b832cdf))
  5541. (pin "3" (uuid e0abcf1d-2b1c-4a7a-957b-efce4bec4ebf))
  5542. (pin "30" (uuid 3f72bec4-3534-460f-8566-0ff325c34575))
  5543. (pin "31" (uuid 88c7039e-a0f7-49ef-b9f5-36e1b383469a))
  5544. (pin "32" (uuid 7e1bf0fd-d9aa-47ed-92a8-c73225c1ed5a))
  5545. (pin "33" (uuid 46c94c12-2c4d-4cb0-bfb9-cb28d86475ec))
  5546. (pin "34" (uuid 17e09579-27db-424e-b9c5-daac734b8bb9))
  5547. (pin "35" (uuid 20df147d-493b-433c-bd17-c220c069b235))
  5548. (pin "36" (uuid 8422a463-96b2-4a10-a272-db7b23cfef42))
  5549. (pin "37" (uuid f47d855e-0e2c-43fc-9511-a12d2ab42097))
  5550. (pin "38" (uuid 93985920-892a-4a89-9425-a95d76c7d465))
  5551. (pin "39" (uuid 233c2e82-3de1-4aa9-a518-8d91edf7c3cb))
  5552. (pin "4" (uuid 2bfa6c0c-8420-40e7-b83a-5f89f1536148))
  5553. (pin "40" (uuid dfdb19c9-eec6-4bfb-83a4-ce4386fd18f8))
  5554. (pin "41" (uuid 4a2d5ebb-1133-4288-9c39-3f8858a153cd))
  5555. (pin "42" (uuid 29608249-b5ca-43d6-98ec-02a212c9eb83))
  5556. (pin "43" (uuid e5abf929-45b3-493d-a84d-4ce9b5350b3e))
  5557. (pin "44" (uuid a3436575-9d3e-4593-bfcd-e2cae1c6201d))
  5558. (pin "45" (uuid 9fd389a9-1e2d-47f0-a878-4261d3e4a894))
  5559. (pin "46" (uuid 5079d647-00f9-46d8-b10f-ead0d9becd9f))
  5560. (pin "47" (uuid 6cbd1c16-7fea-4b43-a539-21a939168218))
  5561. (pin "48" (uuid d330686b-cf3d-450f-a99a-2e901e0a42b6))
  5562. (pin "49" (uuid 6d7a49ca-a2f8-4f27-b2dc-9cf34f010536))
  5563. (pin "5" (uuid 4cc45224-b75d-47c0-ae54-8a6fde19e49d))
  5564. (pin "50" (uuid a5fa4db9-e012-4eb4-b6fd-5a944c165280))
  5565. (pin "51" (uuid 90c188d7-ee7d-4d67-8053-19d7e498c84b))
  5566. (pin "52" (uuid da98465d-c8c5-455b-a2e0-951e0d522ee5))
  5567. (pin "53" (uuid d2234011-d8f4-4137-acea-491c25b906fd))
  5568. (pin "54" (uuid bc690b4d-81cb-4dbb-9b60-e70bd46d0f69))
  5569. (pin "55" (uuid 0dbc2f2c-c5b2-4d2d-8818-0c06cd75d6e0))
  5570. (pin "56" (uuid 25620f07-3315-40f0-b943-35f588cef4ca))
  5571. (pin "57" (uuid b95bd1de-56dc-4067-a521-fb137b65a05b))
  5572. (pin "58" (uuid 939aa499-f678-47fb-9621-bef8ea1ffe3f))
  5573. (pin "59" (uuid 98db3e5c-7fd3-48d7-ac02-4f6ab5800d23))
  5574. (pin "6" (uuid 479338f3-ddfb-4fe1-bbe3-6deff83e60c1))
  5575. (pin "60" (uuid 935ad145-96ff-45ad-8a36-1b4792dbf3a7))
  5576. (pin "61" (uuid 7e2cf0aa-746c-45af-a5d4-e6a7f085faab))
  5577. (pin "62" (uuid 5538cea1-245d-42fe-a1b8-8bfb0c492e6a))
  5578. (pin "63" (uuid 2b7cf76e-aae8-4782-9251-1b2ee9a7afea))
  5579. (pin "64" (uuid 49b9c320-abe2-495f-87ba-d1302efeec70))
  5580. (pin "7" (uuid 9549aa8f-4f35-421e-9b72-036251b3f8c4))
  5581. (pin "8" (uuid 2f8a3e68-5664-4c89-bee1-735ddf9447d6))
  5582. (pin "9" (uuid a783460e-06f2-4d51-8298-a354f46abe25))
  5583. )
  5584. (symbol (lib_id "Device:C_Small") (at 266.065 256.54 0) (unit 1)
  5585. (in_bom yes) (on_board yes)
  5586. (uuid 4ba1d77c-6d58-4d30-b0a7-c1e54b093936)
  5587. (property "Reference" "C2" (id 0) (at 262.255 259.08 0)
  5588. (effects (font (size 1.27 1.27)) (justify left))
  5589. )
  5590. (property "Value" "22uF/10V/20%/0603" (id 1) (at 267.335 267.97 90)
  5591. (effects (font (size 0.635 0.635)) (justify left))
  5592. )
  5593. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 266.065 256.54 0)
  5594. (effects (font (size 1.27 1.27)) hide)
  5595. )
  5596. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810311140_Murata-Electronics-GRM188R61A226ME15D_C84419.pdf" (id 3) (at 266.065 256.54 0)
  5597. (effects (font (size 1.27 1.27)) hide)
  5598. )
  5599. (property "Mfr #" "GRM188R61A226ME15D" (id 4) (at 266.065 256.54 0)
  5600. (effects (font (size 1.27 1.27)) hide)
  5601. )
  5602. (property "LCSC #" "C84419" (id 5) (at 266.065 256.54 0)
  5603. (effects (font (size 1.27 1.27)) hide)
  5604. )
  5605. (pin "1" (uuid b141287f-ddf4-4737-8e06-f3d439efc73a))
  5606. (pin "2" (uuid 5d79ef63-3e0c-405b-9e31-116777b7a2d4))
  5607. )
  5608. (symbol (lib_id "power:GND") (at 266.065 269.24 0) (unit 1)
  5609. (in_bom yes) (on_board yes)
  5610. (uuid 4f6a9aee-48b7-463a-9d63-9b62fd1c844c)
  5611. (property "Reference" "#PWR0117" (id 0) (at 266.065 275.59 0)
  5612. (effects (font (size 1.27 1.27)) hide)
  5613. )
  5614. (property "Value" "GND" (id 1) (at 266.192 273.6342 0))
  5615. (property "Footprint" "" (id 2) (at 266.065 269.24 0)
  5616. (effects (font (size 1.27 1.27)) hide)
  5617. )
  5618. (property "Datasheet" "" (id 3) (at 266.065 269.24 0)
  5619. (effects (font (size 1.27 1.27)) hide)
  5620. )
  5621. (pin "1" (uuid 25a23320-4e4a-4958-847c-36afda8413c9))
  5622. )
  5623. (symbol (lib_id "Device:C_Small") (at 244.475 256.54 0) (unit 1)
  5624. (in_bom yes) (on_board yes)
  5625. (uuid 4f732699-10ca-49c3-a111-e29bc51387a6)
  5626. (property "Reference" "C1" (id 0) (at 240.665 259.08 0)
  5627. (effects (font (size 1.27 1.27)) (justify left))
  5628. )
  5629. (property "Value" "10uF/25V/20%/0603" (id 1) (at 245.745 267.97 90)
  5630. (effects (font (size 0.635 0.635)) (justify left))
  5631. )
  5632. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 244.475 256.54 0)
  5633. (effects (font (size 1.27 1.27)) hide)
  5634. )
  5635. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131721_Murata-Electronics-GRM188R61E106MA73D_C91606.pdf" (id 3) (at 244.475 256.54 0)
  5636. (effects (font (size 1.27 1.27)) hide)
  5637. )
  5638. (property "Mfr #" "GRM188R61E106MA73D" (id 4) (at 244.475 256.54 0)
  5639. (effects (font (size 1.27 1.27)) hide)
  5640. )
  5641. (property "LCSC #" "C91606" (id 5) (at 244.475 256.54 0)
  5642. (effects (font (size 1.27 1.27)) hide)
  5643. )
  5644. (pin "1" (uuid bdf119c6-404c-422c-88d0-3639539bca16))
  5645. (pin "2" (uuid 72666a57-1446-48b3-9815-c747494a4aa3))
  5646. )
  5647. (symbol (lib_id "Device:R_Small") (at 289.56 116.205 270) (unit 1)
  5648. (in_bom yes) (on_board yes)
  5649. (uuid 52eac967-7d94-4d8b-9b8f-c6859ea9fecb)
  5650. (property "Reference" "R6" (id 0) (at 293.37 114.935 90))
  5651. (property "Value" "1K/1%" (id 1) (at 289.56 118.745 90))
  5652. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 289.56 116.205 0)
  5653. (effects (font (size 1.27 1.27)) hide)
  5654. )
  5655. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809301716_YAGEO-RC0402FR-071KL_C106235.pdf" (id 3) (at 289.56 116.205 0)
  5656. (effects (font (size 1.27 1.27)) hide)
  5657. )
  5658. (property "Mfr #" "RC0402FR-071KL" (id 4) (at 289.56 116.205 90)
  5659. (effects (font (size 1.27 1.27)) hide)
  5660. )
  5661. (property "LCSC #" "C106235" (id 5) (at 289.56 116.205 90)
  5662. (effects (font (size 1.27 1.27)) hide)
  5663. )
  5664. (pin "1" (uuid 0991ae1c-780c-42d5-8adf-8bbf34ec815a))
  5665. (pin "2" (uuid 036c2e1a-ab31-4565-8fd7-76d8e6fe8edf))
  5666. )
  5667. (symbol (lib_id "power:GND") (at 308.61 66.675 0) (unit 1)
  5668. (in_bom yes) (on_board yes)
  5669. (uuid 543d85b9-6956-4d40-adcc-d7eb4894ec9d)
  5670. (property "Reference" "#PWR0103" (id 0) (at 308.61 73.025 0)
  5671. (effects (font (size 1.27 1.27)) hide)
  5672. )
  5673. (property "Value" "GND" (id 1) (at 308.737 71.0692 0))
  5674. (property "Footprint" "" (id 2) (at 308.61 66.675 0)
  5675. (effects (font (size 1.27 1.27)) hide)
  5676. )
  5677. (property "Datasheet" "" (id 3) (at 308.61 66.675 0)
  5678. (effects (font (size 1.27 1.27)) hide)
  5679. )
  5680. (pin "1" (uuid 382b10d5-fe17-46aa-a5ed-87ae8f353b2a))
  5681. )
  5682. (symbol (lib_id "power:GND") (at 285.75 183.515 0) (unit 1)
  5683. (in_bom yes) (on_board yes)
  5684. (uuid 544adac2-3f6a-4486-8f6c-96876e3e8065)
  5685. (property "Reference" "#PWR0123" (id 0) (at 285.75 189.865 0)
  5686. (effects (font (size 1.27 1.27)) hide)
  5687. )
  5688. (property "Value" "GND" (id 1) (at 285.877 187.9092 0))
  5689. (property "Footprint" "" (id 2) (at 285.75 183.515 0)
  5690. (effects (font (size 1.27 1.27)) hide)
  5691. )
  5692. (property "Datasheet" "" (id 3) (at 285.75 183.515 0)
  5693. (effects (font (size 1.27 1.27)) hide)
  5694. )
  5695. (pin "1" (uuid 7183f2ce-c8ee-4c2d-94f9-8186657eede3))
  5696. )
  5697. (symbol (lib_id "power:+3V3") (at 282.575 248.92 0) (unit 1)
  5698. (in_bom yes) (on_board yes) (fields_autoplaced)
  5699. (uuid 5e8f49b0-bc20-4c5a-8256-b584ef1d2905)
  5700. (property "Reference" "#PWR0127" (id 0) (at 282.575 252.73 0)
  5701. (effects (font (size 1.27 1.27)) hide)
  5702. )
  5703. (property "Value" "+3V3" (id 1) (at 282.575 243.84 0))
  5704. (property "Footprint" "" (id 2) (at 282.575 248.92 0)
  5705. (effects (font (size 1.27 1.27)) hide)
  5706. )
  5707. (property "Datasheet" "" (id 3) (at 282.575 248.92 0)
  5708. (effects (font (size 1.27 1.27)) hide)
  5709. )
  5710. (pin "1" (uuid ec5271ae-93e7-4383-92f6-d803685af782))
  5711. )
  5712. (symbol (lib_id "esp-jtag-rescue:bead-myRF") (at 285.75 48.895 270) (unit 1)
  5713. (in_bom yes) (on_board yes)
  5714. (uuid 61291441-aedb-4d0a-a7f9-a9e41f67be02)
  5715. (property "Reference" "FB1" (id 0) (at 283.972 47.117 90)
  5716. (effects (font (size 1.27 1.27)) (justify left))
  5717. )
  5718. (property "Value" "bead" (id 1) (at 283.464 44.958 90)
  5719. (effects (font (size 1.27 1.27)) (justify left))
  5720. )
  5721. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 285.75 47.117 90)
  5722. (effects (font (size 1.27 1.27)) hide)
  5723. )
  5724. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810201211_Murata-Electronics-BLM21AG601SN1D_C85837.pdf" (id 3) (at 285.75 48.895 0)
  5725. (effects (font (size 1.27 1.27)) hide)
  5726. )
  5727. (property "Mfr #" "BLM21AG601SN1D" (id 4) (at 285.75 48.895 90)
  5728. (effects (font (size 1.27 1.27)) hide)
  5729. )
  5730. (property "LCSC #" "C85837" (id 5) (at 285.75 48.895 90)
  5731. (effects (font (size 1.27 1.27)) hide)
  5732. )
  5733. (pin "1" (uuid b6726a21-b2aa-4bce-9a15-4245bed68004))
  5734. (pin "2" (uuid 11688b4d-e900-4a29-8b2d-01787f5094bb))
  5735. )
  5736. (symbol (lib_id "Device:LED") (at 274.955 265.43 90) (unit 1)
  5737. (in_bom yes) (on_board yes)
  5738. (uuid 64faa7b7-400d-423f-ac33-57935ca2e37c)
  5739. (property "Reference" "D1" (id 0) (at 277.9268 264.4394 90)
  5740. (effects (font (size 1.27 1.27)) (justify right))
  5741. )
  5742. (property "Value" "LED" (id 1) (at 277.9268 266.7508 90)
  5743. (effects (font (size 1.27 1.27)) (justify right))
  5744. )
  5745. (property "Footprint" "LED_SMD:LED_0402_1005Metric" (id 2) (at 274.955 265.43 0)
  5746. (effects (font (size 1.27 1.27)) hide)
  5747. )
  5748. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810010223_Foshan-NationStar-Optoelectronics-FC-F1005HRK-620H5_C130719.pdf" (id 3) (at 274.955 265.43 0)
  5749. (effects (font (size 1.27 1.27)) hide)
  5750. )
  5751. (property "Mfr #" "FC-F1005HRK-620H5" (id 4) (at 274.955 265.43 90)
  5752. (effects (font (size 1.27 1.27)) hide)
  5753. )
  5754. (property "LCSC #" "C130719" (id 5) (at 274.955 265.43 90)
  5755. (effects (font (size 1.27 1.27)) hide)
  5756. )
  5757. (pin "1" (uuid b43fc71a-f954-4aae-b9fe-c377c02fe6ea))
  5758. (pin "2" (uuid 79dfd56e-41c8-4f2e-96e9-ac09e5cd2ffe))
  5759. )
  5760. (symbol (lib_id "power:GND") (at 333.375 241.3 0) (unit 1)
  5761. (in_bom yes) (on_board yes)
  5762. (uuid 68d487e2-f1a5-45e6-b4df-2f0c81d53dcf)
  5763. (property "Reference" "#PWR0115" (id 0) (at 333.375 247.65 0)
  5764. (effects (font (size 1.27 1.27)) hide)
  5765. )
  5766. (property "Value" "GND" (id 1) (at 333.502 245.6942 0))
  5767. (property "Footprint" "" (id 2) (at 333.375 241.3 0)
  5768. (effects (font (size 1.27 1.27)) hide)
  5769. )
  5770. (property "Datasheet" "" (id 3) (at 333.375 241.3 0)
  5771. (effects (font (size 1.27 1.27)) hide)
  5772. )
  5773. (pin "1" (uuid 4eb0590c-e0fa-4a89-81b6-8806a3fde82e))
  5774. )
  5775. (symbol (lib_id "Z80ICE:HRO-TYPE-C-31-M-12") (at 318.135 222.25 0) (unit 1)
  5776. (in_bom yes) (on_board yes)
  5777. (uuid 693bf11b-0d1b-4d96-9e48-744408da6046)
  5778. (property "Reference" "USB1" (id 0) (at 318.135 191.6938 0)
  5779. (effects (font (size 1.524 1.524)))
  5780. )
  5781. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at 318.135 194.3862 0)
  5782. (effects (font (size 1.524 1.524)))
  5783. )
  5784. (property "Footprint" "sm6uax:HRO-TYPE-C-31-M-12" (id 2) (at 318.135 197.0786 0)
  5785. (effects (font (size 1.524 1.524)))
  5786. )
  5787. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at 300.355 220.98 0)
  5788. (effects (font (size 1.524 1.524)) hide)
  5789. )
  5790. (property "LCSC" "C165948" (id 4) (at 318.135 222.25 0)
  5791. (effects (font (size 1.27 1.27)) hide)
  5792. )
  5793. (pin "1" (uuid f81bfcdd-3a22-4350-bbb3-17ad778d1602))
  5794. (pin "10" (uuid ed20914d-b0e4-4243-b1ce-ae054e35bafb))
  5795. (pin "11" (uuid 62281ca7-4ed7-48e8-8862-6b2e344b495c))
  5796. (pin "12" (uuid b895ee2e-321c-448e-8333-4b87f458cc35))
  5797. (pin "13" (uuid 0fcbace6-6428-482d-85ba-800f13a839c0))
  5798. (pin "2" (uuid bfc8a999-6e2a-4f1b-bf3c-26ec3bd17b4a))
  5799. (pin "3" (uuid fb88d865-980b-41f5-936d-d4149a7fe630))
  5800. (pin "4" (uuid 3331072f-8196-44aa-9fed-ae925ded5e58))
  5801. (pin "5" (uuid 7aa67c73-e8df-4cba-9bda-691576feb75a))
  5802. (pin "6" (uuid 701d7a89-51fa-40bb-8d31-1bb3083316a9))
  5803. (pin "7" (uuid 3a23b8bc-1284-4adb-98cf-f60d3ae2347a))
  5804. (pin "8" (uuid 27497543-9a66-491b-9e1a-c6747055da0e))
  5805. (pin "9" (uuid 27f157bc-ac5d-4ccd-a255-3593d9d30bfd))
  5806. )
  5807. (symbol (lib_id "power:GND") (at 365.125 238.76 0) (unit 1)
  5808. (in_bom yes) (on_board yes)
  5809. (uuid 694a98d7-e6ec-408f-9bf7-d46935ce37b5)
  5810. (property "Reference" "#PWR0116" (id 0) (at 365.125 245.11 0)
  5811. (effects (font (size 1.27 1.27)) hide)
  5812. )
  5813. (property "Value" "GND" (id 1) (at 365.252 243.1542 0))
  5814. (property "Footprint" "" (id 2) (at 365.125 238.76 0)
  5815. (effects (font (size 1.27 1.27)) hide)
  5816. )
  5817. (property "Datasheet" "" (id 3) (at 365.125 238.76 0)
  5818. (effects (font (size 1.27 1.27)) hide)
  5819. )
  5820. (pin "1" (uuid 6c697cae-111d-4c07-b307-33f37de50188))
  5821. )
  5822. (symbol (lib_id "power:GND") (at 297.18 66.675 0) (unit 1)
  5823. (in_bom yes) (on_board yes)
  5824. (uuid 6b1bfa2c-f66d-4683-99c1-0f6cf8cfde16)
  5825. (property "Reference" "#PWR0101" (id 0) (at 297.18 73.025 0)
  5826. (effects (font (size 1.27 1.27)) hide)
  5827. )
  5828. (property "Value" "GND" (id 1) (at 297.307 71.0692 0))
  5829. (property "Footprint" "" (id 2) (at 297.18 66.675 0)
  5830. (effects (font (size 1.27 1.27)) hide)
  5831. )
  5832. (property "Datasheet" "" (id 3) (at 297.18 66.675 0)
  5833. (effects (font (size 1.27 1.27)) hide)
  5834. )
  5835. (pin "1" (uuid 8383aef1-9a65-447e-9235-c4574290ce5d))
  5836. )
  5837. (symbol (lib_id "power:GND") (at 386.715 223.52 0) (unit 1)
  5838. (in_bom yes) (on_board yes)
  5839. (uuid 6ce05476-e28f-459e-bab0-0fb22972f73f)
  5840. (property "Reference" "#PWR0109" (id 0) (at 386.715 229.87 0)
  5841. (effects (font (size 1.27 1.27)) hide)
  5842. )
  5843. (property "Value" "GND" (id 1) (at 386.842 227.9142 0))
  5844. (property "Footprint" "" (id 2) (at 386.715 223.52 0)
  5845. (effects (font (size 1.27 1.27)) hide)
  5846. )
  5847. (property "Datasheet" "" (id 3) (at 386.715 223.52 0)
  5848. (effects (font (size 1.27 1.27)) hide)
  5849. )
  5850. (pin "1" (uuid 40baed2b-dc5b-43b6-99e0-d8d758e356f7))
  5851. )
  5852. (symbol (lib_id "Device:C_Small") (at 36.83 234.95 0) (unit 1)
  5853. (in_bom yes) (on_board yes)
  5854. (uuid 6e5e4d10-d5f1-4d7b-bc02-f93f1043f025)
  5855. (property "Reference" "C16" (id 0) (at 33.02 237.49 0)
  5856. (effects (font (size 1.27 1.27)) (justify left))
  5857. )
  5858. (property "Value" "100nF/25V/10%/0402" (id 1) (at 37.719 247.015 90)
  5859. (effects (font (size 0.635 0.635)) (justify left))
  5860. )
  5861. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 36.83 234.95 0)
  5862. (effects (font (size 1.27 1.27)) hide)
  5863. )
  5864. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 36.83 234.95 0)
  5865. (effects (font (size 1.27 1.27)) hide)
  5866. )
  5867. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 36.83 234.95 0)
  5868. (effects (font (size 1.27 1.27)) hide)
  5869. )
  5870. (property "LCSC #" "C77014" (id 5) (at 36.83 234.95 0)
  5871. (effects (font (size 1.27 1.27)) hide)
  5872. )
  5873. (pin "1" (uuid ae73f589-68e1-4402-b8d5-9f0103026629))
  5874. (pin "2" (uuid c5772caa-53a9-4742-9f30-a6c0552a476c))
  5875. )
  5876. (symbol (lib_id "power:+3V3") (at 266.7 76.835 0) (unit 1)
  5877. (in_bom yes) (on_board yes) (fields_autoplaced)
  5878. (uuid 6eff8a91-4d82-40e9-909d-6abc1afb2edb)
  5879. (property "Reference" "#PWR0133" (id 0) (at 266.7 80.645 0)
  5880. (effects (font (size 1.27 1.27)) hide)
  5881. )
  5882. (property "Value" "+3V3" (id 1) (at 266.7 71.755 0))
  5883. (property "Footprint" "" (id 2) (at 266.7 76.835 0)
  5884. (effects (font (size 1.27 1.27)) hide)
  5885. )
  5886. (property "Datasheet" "" (id 3) (at 266.7 76.835 0)
  5887. (effects (font (size 1.27 1.27)) hide)
  5888. )
  5889. (pin "1" (uuid fa645303-d7b9-4dfa-b1ef-0f0217486cf6))
  5890. )
  5891. (symbol (lib_id "esp-jtag-rescue:bead-myRF") (at 285.75 51.435 90) (unit 1)
  5892. (in_bom yes) (on_board yes)
  5893. (uuid 6f8a299b-825c-4e8b-86b5-22f83635d696)
  5894. (property "Reference" "FB2" (id 0) (at 287.655 53.213 90)
  5895. (effects (font (size 1.27 1.27)) (justify left))
  5896. )
  5897. (property "Value" "bead" (id 1) (at 288.29 54.991 90)
  5898. (effects (font (size 1.27 1.27)) (justify left))
  5899. )
  5900. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 285.75 53.213 90)
  5901. (effects (font (size 1.27 1.27)) hide)
  5902. )
  5903. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810201211_Murata-Electronics-BLM21AG601SN1D_C85837.pdf" (id 3) (at 285.75 51.435 0)
  5904. (effects (font (size 1.27 1.27)) hide)
  5905. )
  5906. (property "Mfr #" "BLM21AG601SN1D" (id 4) (at 285.75 51.435 90)
  5907. (effects (font (size 1.27 1.27)) hide)
  5908. )
  5909. (property "LCSC #" "C85837" (id 5) (at 285.75 51.435 90)
  5910. (effects (font (size 1.27 1.27)) hide)
  5911. )
  5912. (pin "1" (uuid 64d5f716-89de-4fe5-9fd9-25af8d55016c))
  5913. (pin "2" (uuid ec9f4a0a-43cd-4671-8205-8bc1bf7c9871))
  5914. )
  5915. (symbol (lib_id "Regulator_Linear:AMS1117-3.3") (at 257.175 252.73 0) (unit 1)
  5916. (in_bom yes) (on_board yes)
  5917. (uuid 7049dfae-5363-4f06-bd50-caf296fe785b)
  5918. (property "Reference" "U3" (id 0) (at 257.175 246.5832 0))
  5919. (property "Value" "AMS1117-3.3" (id 1) (at 257.175 248.8946 0))
  5920. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 257.175 247.65 0)
  5921. (effects (font (size 1.27 1.27)) hide)
  5922. )
  5923. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 259.715 259.08 0)
  5924. (effects (font (size 1.27 1.27)) hide)
  5925. )
  5926. (property "Mfr #" "AMS1117-3.3" (id 4) (at 257.175 252.73 0)
  5927. (effects (font (size 1.27 1.27)) hide)
  5928. )
  5929. (property "LCSC #" "C6186" (id 5) (at 257.175 252.73 0)
  5930. (effects (font (size 1.27 1.27)) hide)
  5931. )
  5932. (pin "1" (uuid 640270ec-4feb-4024-810e-ea82e2d91af2))
  5933. (pin "2" (uuid 54b3a07c-9089-476a-8b35-ae28f36b1dd0))
  5934. (pin "3" (uuid d5e57127-85ca-434a-9ba6-4a6dbfbbccb6))
  5935. )
  5936. (symbol (lib_id "power:GND") (at 303.53 66.675 0) (unit 1)
  5937. (in_bom yes) (on_board yes)
  5938. (uuid 764c3897-0039-4e8b-827f-ba7e1c0b435a)
  5939. (property "Reference" "#PWR0104" (id 0) (at 303.53 73.025 0)
  5940. (effects (font (size 1.27 1.27)) hide)
  5941. )
  5942. (property "Value" "GND" (id 1) (at 303.657 71.0692 0))
  5943. (property "Footprint" "" (id 2) (at 303.53 66.675 0)
  5944. (effects (font (size 1.27 1.27)) hide)
  5945. )
  5946. (property "Datasheet" "" (id 3) (at 303.53 66.675 0)
  5947. (effects (font (size 1.27 1.27)) hide)
  5948. )
  5949. (pin "1" (uuid 3c2266d8-a634-468d-bc8a-4754afe19c47))
  5950. )
  5951. (symbol (lib_id "power:+5V") (at 167.005 125.095 0) (unit 1)
  5952. (in_bom yes) (on_board yes)
  5953. (uuid 77281cde-783b-470a-b755-948418415ed5)
  5954. (property "Reference" "#PWR0140" (id 0) (at 167.005 128.905 0)
  5955. (effects (font (size 1.27 1.27)) hide)
  5956. )
  5957. (property "Value" "+5V" (id 1) (at 163.195 121.92 0))
  5958. (property "Footprint" "" (id 2) (at 167.005 125.095 0)
  5959. (effects (font (size 1.27 1.27)) hide)
  5960. )
  5961. (property "Datasheet" "" (id 3) (at 167.005 125.095 0)
  5962. (effects (font (size 1.27 1.27)) hide)
  5963. )
  5964. (pin "1" (uuid 840c6b48-25bd-4ac3-96d9-6934ee49a8cc))
  5965. )
  5966. (symbol (lib_id "Device:C") (at 386.715 218.44 0) (mirror x) (unit 1)
  5967. (in_bom yes) (on_board yes)
  5968. (uuid 7af7cadc-26a6-4b18-b8af-49ac9af1256e)
  5969. (property "Reference" "C15" (id 0) (at 380.3142 218.44 0))
  5970. (property "Value" "1uF" (id 1) (at 381.635 220.98 0))
  5971. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 387.6802 214.63 0)
  5972. (effects (font (size 1.27 1.27)) hide)
  5973. )
  5974. (property "Datasheet" "~" (id 3) (at 386.715 218.44 0)
  5975. (effects (font (size 1.27 1.27)) hide)
  5976. )
  5977. (property "LCSC" "C15849" (id 4) (at 351.155 194.31 0)
  5978. (effects (font (size 1.27 1.27)) hide)
  5979. )
  5980. (property "MOUSER" "" (id 5) (at 351.155 194.31 0)
  5981. (effects (font (size 1.27 1.27)) hide)
  5982. )
  5983. (property "MPN" "" (id 6) (at 351.155 194.31 0)
  5984. (effects (font (size 1.27 1.27)) hide)
  5985. )
  5986. (property "Supplier" "" (id 7) (at 386.715 218.44 0)
  5987. (effects (font (size 1.27 1.27)) hide)
  5988. )
  5989. (pin "1" (uuid d0e877cc-22fc-4de2-be07-61cce397c186))
  5990. (pin "2" (uuid 36ebab4e-68a9-4673-9aef-45bf98ecf048))
  5991. )
  5992. (symbol (lib_id "Device:C_Small") (at 25.4 262.89 0) (unit 1)
  5993. (in_bom yes) (on_board yes)
  5994. (uuid 7b8181fe-5e51-4e10-b3e5-ceb58c7ff6d6)
  5995. (property "Reference" "C12" (id 0) (at 21.59 265.43 0)
  5996. (effects (font (size 1.27 1.27)) (justify left))
  5997. )
  5998. (property "Value" "100nF/25V/10%/0402" (id 1) (at 26.289 274.955 90)
  5999. (effects (font (size 0.635 0.635)) (justify left))
  6000. )
  6001. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 25.4 262.89 0)
  6002. (effects (font (size 1.27 1.27)) hide)
  6003. )
  6004. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 25.4 262.89 0)
  6005. (effects (font (size 1.27 1.27)) hide)
  6006. )
  6007. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 25.4 262.89 0)
  6008. (effects (font (size 1.27 1.27)) hide)
  6009. )
  6010. (property "LCSC #" "C77014" (id 5) (at 25.4 262.89 0)
  6011. (effects (font (size 1.27 1.27)) hide)
  6012. )
  6013. (pin "1" (uuid 5ae3b1b6-4a3e-496d-bda6-2268937db7c6))
  6014. (pin "2" (uuid 4a2f9366-8e7e-4ca4-bc1f-d241b5eab343))
  6015. )
  6016. (symbol (lib_id "Device:LED") (at 495.3 139.065 0) (unit 1)
  6017. (in_bom yes) (on_board yes)
  6018. (uuid 80f97144-6d62-432e-8957-a92143e1d836)
  6019. (property "Reference" "D2" (id 0) (at 495.3 134.112 0))
  6020. (property "Value" "LED" (id 1) (at 495.1222 135.89 0))
  6021. (property "Footprint" "LED_SMD:LED_0402_1005Metric" (id 2) (at 495.3 139.065 0)
  6022. (effects (font (size 1.27 1.27)) hide)
  6023. )
  6024. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809221846_Bright-LED-Elec-BL-HB337A-AV-TRB_C165977.pdf" (id 3) (at 495.3 139.065 0)
  6025. (effects (font (size 1.27 1.27)) hide)
  6026. )
  6027. (property "Mfr #" "BL-HB337A-AV-TRB" (id 4) (at 495.3 139.065 0)
  6028. (effects (font (size 1.27 1.27)) hide)
  6029. )
  6030. (property "LCSC #" "C165977" (id 5) (at 495.3 139.065 0)
  6031. (effects (font (size 1.27 1.27)) hide)
  6032. )
  6033. (pin "1" (uuid 6b65e7a9-0f4c-481a-ac41-1b46ca1a33a7))
  6034. (pin "2" (uuid 0ba068db-8f1e-4a42-a2e4-1fed86df5524))
  6035. )
  6036. (symbol (lib_id "Device:Crystal_GND24") (at 279.4 167.005 0) (unit 1)
  6037. (in_bom yes) (on_board yes)
  6038. (uuid 82c18ee2-61a6-4dc4-9b18-2abfdbe5131d)
  6039. (property "Reference" "Y1" (id 0) (at 284.3276 165.8366 0)
  6040. (effects (font (size 1.27 1.27)) (justify left))
  6041. )
  6042. (property "Value" "7M12000044" (id 1) (at 281.94 163.195 0)
  6043. (effects (font (size 1.27 1.27)) (justify left))
  6044. )
  6045. (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" (id 2) (at 279.4 167.005 0)
  6046. (effects (font (size 1.27 1.27)) hide)
  6047. )
  6048. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/TXC-Corp-7M1204LCSC-EIE4S_C93114.pdf" (id 3) (at 279.4 167.005 0)
  6049. (effects (font (size 1.27 1.27)) hide)
  6050. )
  6051. (property "Mfr #" "7M12000044" (id 4) (at 279.4 167.005 0)
  6052. (effects (font (size 1.27 1.27)) hide)
  6053. )
  6054. (property "LCSC #" "C93114" (id 5) (at 279.4 167.005 0)
  6055. (effects (font (size 1.27 1.27)) hide)
  6056. )
  6057. (pin "1" (uuid e88173f8-6c33-4460-8880-e30b69ac0007))
  6058. (pin "2" (uuid 86020bc2-417c-4703-a8a8-d38949e3c45b))
  6059. (pin "3" (uuid cc6467fd-bfa5-448e-b0e0-0920cf46927f))
  6060. (pin "4" (uuid 39108dba-baef-4be9-bdaf-783588bbadda))
  6061. )
  6062. (symbol (lib_id "Z80ICE:CY7C1019D-10VXIT") (at 165.735 80.645 0) (unit 1)
  6063. (in_bom yes) (on_board yes) (fields_autoplaced)
  6064. (uuid 83a01f69-1c58-4b9b-96a1-104f416212b1)
  6065. (property "Reference" "U6" (id 0) (at 169.0244 44.45 0)
  6066. (effects (font (size 1.27 1.27)) (justify left))
  6067. )
  6068. (property "Value" "CY7C1019D-10VXIT" (id 1) (at 169.0244 46.99 0)
  6069. (effects (font (size 1.27 1.27)) (justify left))
  6070. )
  6071. (property "Footprint" "Package_SO:SOJ-36_10.16x23.49mm_P1.27mm" (id 2) (at 153.035 51.435 0)
  6072. (effects (font (size 1.27 1.27)) hide)
  6073. )
  6074. (property "Datasheet" "https://www.mouser.se/datasheet/2/196/CYPRS13494_1-3003573.pdf" (id 3) (at 165.735 80.645 0)
  6075. (effects (font (size 1.27 1.27)) hide)
  6076. )
  6077. (pin "1" (uuid 92085461-b0a5-49e2-9490-1c08646aa26b))
  6078. (pin "10" (uuid f7b81b62-4065-4dfc-9a66-54fb92b52441))
  6079. (pin "11" (uuid 044b6021-2aed-4b69-b57a-4765d918cc80))
  6080. (pin "12" (uuid 3d626f07-a921-41e1-a30e-0ac7d3db6992))
  6081. (pin "13" (uuid 2369a951-e59c-4033-8b0d-b9508358945a))
  6082. (pin "14" (uuid b78a0e81-b5c9-46b2-a98d-833b85572f2d))
  6083. (pin "15" (uuid 799a559a-1600-42f1-be23-dfdaef6c5b08))
  6084. (pin "16" (uuid d3b8f9af-46bd-41ab-bcb3-f03a99fa6519))
  6085. (pin "17" (uuid c2166694-b778-40ab-aa0a-2603b0267df1))
  6086. (pin "18" (uuid f0ee4a50-39c6-4b1f-a7bd-b5d98097150a))
  6087. (pin "19" (uuid 7161480c-559f-4aa5-a501-cdcf06862a56))
  6088. (pin "2" (uuid 842ed149-6e08-47f1-9754-09c5bb58ca8f))
  6089. (pin "20" (uuid b93e9f90-85e5-41bc-9a4e-78762eae9635))
  6090. (pin "21" (uuid 8d010bc7-23dd-43ef-9ba0-2deb386a2d4c))
  6091. (pin "22" (uuid 4121c251-2773-4262-9436-5187c6f0cebd))
  6092. (pin "23" (uuid 2617da9e-e677-4925-ba4c-c4708688f689))
  6093. (pin "24" (uuid 829abdf4-0271-46dd-847d-4b5be52aa4fb))
  6094. (pin "25" (uuid 23650a51-c6af-4fae-b6a9-a2b4a69015cf))
  6095. (pin "26" (uuid 779f172d-30e2-4f17-a906-5df0f1bd9652))
  6096. (pin "27" (uuid c23dcc48-db6d-4e11-b1f2-fc3f53791a87))
  6097. (pin "28" (uuid 164fa8cf-0c0a-4de8-b3e4-9a70cf7d70ef))
  6098. (pin "29" (uuid 7b8b5b8e-0b4d-405f-bd76-d3d57c7d1e02))
  6099. (pin "3" (uuid d1bdd7d8-5a78-4025-a7fe-57626e0f073e))
  6100. (pin "30" (uuid 55faa1e3-7897-49dc-9d53-46a459ce8d39))
  6101. (pin "31" (uuid 494653b6-54ac-4633-b523-673d4d3aaae5))
  6102. (pin "32" (uuid e19a6980-a5d0-4bce-b529-b8eeb7d1f7aa))
  6103. (pin "4" (uuid c2baeab8-c1ff-4a54-8972-a0c5d8bfbee2))
  6104. (pin "5" (uuid 4a307879-02c4-4352-bab8-30d5ccd27264))
  6105. (pin "6" (uuid e35d123a-7cad-4535-922f-bbc791db564d))
  6106. (pin "7" (uuid 853e5a5f-27fb-4af6-8a95-f088b11ea04b))
  6107. (pin "8" (uuid 5827417c-d50b-4d46-a6fc-8bdc4424bca0))
  6108. (pin "9" (uuid 3e24caf4-e1a1-472d-92bd-dae30c19178f))
  6109. )
  6110. (symbol (lib_id "power:GND") (at 36.83 246.38 0) (unit 1)
  6111. (in_bom yes) (on_board yes)
  6112. (uuid 8ab690ea-b43d-40a3-9f93-57a95c434b58)
  6113. (property "Reference" "#PWR0107" (id 0) (at 36.83 252.73 0)
  6114. (effects (font (size 1.27 1.27)) hide)
  6115. )
  6116. (property "Value" "GND" (id 1) (at 36.957 250.7742 0))
  6117. (property "Footprint" "" (id 2) (at 36.83 246.38 0)
  6118. (effects (font (size 1.27 1.27)) hide)
  6119. )
  6120. (property "Datasheet" "" (id 3) (at 36.83 246.38 0)
  6121. (effects (font (size 1.27 1.27)) hide)
  6122. )
  6123. (pin "1" (uuid d28c13d3-ebb6-483b-bb57-75e6188f3644))
  6124. )
  6125. (symbol (lib_id "power:GND") (at 278.13 98.425 0) (unit 1)
  6126. (in_bom yes) (on_board yes)
  6127. (uuid 92225265-a780-4d4c-b887-155952fecfeb)
  6128. (property "Reference" "#PWR0113" (id 0) (at 278.13 104.775 0)
  6129. (effects (font (size 1.27 1.27)) hide)
  6130. )
  6131. (property "Value" "GND" (id 1) (at 278.257 102.8192 0))
  6132. (property "Footprint" "" (id 2) (at 278.13 98.425 0)
  6133. (effects (font (size 1.27 1.27)) hide)
  6134. )
  6135. (property "Datasheet" "" (id 3) (at 278.13 98.425 0)
  6136. (effects (font (size 1.27 1.27)) hide)
  6137. )
  6138. (pin "1" (uuid b2d2b447-c2a4-4058-b6b3-007ebc7e80b3))
  6139. )
  6140. (symbol (lib_id "power:GND") (at 244.475 269.24 0) (unit 1)
  6141. (in_bom yes) (on_board yes)
  6142. (uuid 97daf5a0-25a3-4f25-94b8-3877c77c3beb)
  6143. (property "Reference" "#PWR0118" (id 0) (at 244.475 275.59 0)
  6144. (effects (font (size 1.27 1.27)) hide)
  6145. )
  6146. (property "Value" "GND" (id 1) (at 244.602 273.6342 0))
  6147. (property "Footprint" "" (id 2) (at 244.475 269.24 0)
  6148. (effects (font (size 1.27 1.27)) hide)
  6149. )
  6150. (property "Datasheet" "" (id 3) (at 244.475 269.24 0)
  6151. (effects (font (size 1.27 1.27)) hide)
  6152. )
  6153. (pin "1" (uuid 25344a5f-0aef-4b47-9391-f9b80056ad60))
  6154. )
  6155. (symbol (lib_id "power:GND") (at 257.175 269.24 0) (unit 1)
  6156. (in_bom yes) (on_board yes)
  6157. (uuid 9bdf1619-aef9-4cee-b279-96ea6a2bdad0)
  6158. (property "Reference" "#PWR0119" (id 0) (at 257.175 275.59 0)
  6159. (effects (font (size 1.27 1.27)) hide)
  6160. )
  6161. (property "Value" "GND" (id 1) (at 257.302 273.6342 0))
  6162. (property "Footprint" "" (id 2) (at 257.175 269.24 0)
  6163. (effects (font (size 1.27 1.27)) hide)
  6164. )
  6165. (property "Datasheet" "" (id 3) (at 257.175 269.24 0)
  6166. (effects (font (size 1.27 1.27)) hide)
  6167. )
  6168. (pin "1" (uuid ad173ed5-a73e-44a0-acca-4182c3f24173))
  6169. )
  6170. (symbol (lib_id "Device:R_Small") (at 501.65 139.065 270) (unit 1)
  6171. (in_bom yes) (on_board yes)
  6172. (uuid 9bea29e5-370e-4174-9b02-826f44e60212)
  6173. (property "Reference" "R9" (id 0) (at 501.65 135.89 90))
  6174. (property "Value" "2.2K/1%/0402" (id 1) (at 501.65 137.414 90)
  6175. (effects (font (size 0.635 0.635)))
  6176. )
  6177. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 501.65 139.065 0)
  6178. (effects (font (size 1.27 1.27)) hide)
  6179. )
  6180. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809201112_YAGEO-RC0402FR-072K2L_C114762.pdf" (id 3) (at 501.65 139.065 0)
  6181. (effects (font (size 1.27 1.27)) hide)
  6182. )
  6183. (property "Mfr #" "RC0402FR-072K2L" (id 4) (at 501.65 139.065 90)
  6184. (effects (font (size 1.27 1.27)) hide)
  6185. )
  6186. (property "LCSC #" "C114762" (id 5) (at 501.65 139.065 90)
  6187. (effects (font (size 1.27 1.27)) hide)
  6188. )
  6189. (pin "1" (uuid cbf4b98b-4d75-4302-b181-723c6774680e))
  6190. (pin "2" (uuid b1aa2bc0-e339-4b77-bbd9-aa1dde8b9acc))
  6191. )
  6192. (symbol (lib_id "power:+5V") (at 386.715 198.12 0) (unit 1)
  6193. (in_bom yes) (on_board yes) (fields_autoplaced)
  6194. (uuid 9e2d7dc4-e340-461a-8ebe-65244b1eab0c)
  6195. (property "Reference" "#PWR0134" (id 0) (at 386.715 201.93 0)
  6196. (effects (font (size 1.27 1.27)) hide)
  6197. )
  6198. (property "Value" "+5V" (id 1) (at 386.715 193.04 0))
  6199. (property "Footprint" "" (id 2) (at 386.715 198.12 0)
  6200. (effects (font (size 1.27 1.27)) hide)
  6201. )
  6202. (property "Datasheet" "" (id 3) (at 386.715 198.12 0)
  6203. (effects (font (size 1.27 1.27)) hide)
  6204. )
  6205. (pin "1" (uuid 370fd781-ba1e-4b27-8d64-36ad2a1d3be8))
  6206. )
  6207. (symbol (lib_id "power:GND") (at 24.13 246.38 0) (unit 1)
  6208. (in_bom yes) (on_board yes)
  6209. (uuid a3036691-b885-4b7f-b58f-a9e30468aa56)
  6210. (property "Reference" "#PWR0108" (id 0) (at 24.13 252.73 0)
  6211. (effects (font (size 1.27 1.27)) hide)
  6212. )
  6213. (property "Value" "GND" (id 1) (at 24.257 250.7742 0))
  6214. (property "Footprint" "" (id 2) (at 24.13 246.38 0)
  6215. (effects (font (size 1.27 1.27)) hide)
  6216. )
  6217. (property "Datasheet" "" (id 3) (at 24.13 246.38 0)
  6218. (effects (font (size 1.27 1.27)) hide)
  6219. )
  6220. (pin "1" (uuid ee2e4804-fabc-4089-b85e-bba237c02e05))
  6221. )
  6222. (symbol (lib_id "power:+1V8") (at 17.78 257.81 0) (unit 1)
  6223. (in_bom yes) (on_board yes) (fields_autoplaced)
  6224. (uuid a70219ca-9f69-42a4-96be-4a1d8faae0f4)
  6225. (property "Reference" "#PWR0147" (id 0) (at 17.78 261.62 0)
  6226. (effects (font (size 1.27 1.27)) hide)
  6227. )
  6228. (property "Value" "+1V8" (id 1) (at 17.78 252.095 0))
  6229. (property "Footprint" "" (id 2) (at 17.78 257.81 0)
  6230. (effects (font (size 1.27 1.27)) hide)
  6231. )
  6232. (property "Datasheet" "" (id 3) (at 17.78 257.81 0)
  6233. (effects (font (size 1.27 1.27)) hide)
  6234. )
  6235. (pin "1" (uuid 8cf23a5a-c660-460e-8ce8-a414fbd2e7d1))
  6236. )
  6237. (symbol (lib_id "power:+5V") (at 27.94 157.48 0) (unit 1)
  6238. (in_bom yes) (on_board yes) (fields_autoplaced)
  6239. (uuid a8b37eb2-425b-42d7-9d15-a46bf4356d9b)
  6240. (property "Reference" "#PWR0137" (id 0) (at 27.94 161.29 0)
  6241. (effects (font (size 1.27 1.27)) hide)
  6242. )
  6243. (property "Value" "+5V" (id 1) (at 27.94 152.4 0))
  6244. (property "Footprint" "" (id 2) (at 27.94 157.48 0)
  6245. (effects (font (size 1.27 1.27)) hide)
  6246. )
  6247. (property "Datasheet" "" (id 3) (at 27.94 157.48 0)
  6248. (effects (font (size 1.27 1.27)) hide)
  6249. )
  6250. (pin "1" (uuid f931cdfa-a027-42ba-a4ac-8e1a2722f200))
  6251. )
  6252. (symbol (lib_id "power:+3V3") (at 508 137.16 0) (unit 1)
  6253. (in_bom yes) (on_board yes) (fields_autoplaced)
  6254. (uuid ab53dca0-bcc3-48f4-b3f0-82ec262800d1)
  6255. (property "Reference" "#PWR0128" (id 0) (at 508 140.97 0)
  6256. (effects (font (size 1.27 1.27)) hide)
  6257. )
  6258. (property "Value" "+3V3" (id 1) (at 508 132.08 0))
  6259. (property "Footprint" "" (id 2) (at 508 137.16 0)
  6260. (effects (font (size 1.27 1.27)) hide)
  6261. )
  6262. (property "Datasheet" "" (id 3) (at 508 137.16 0)
  6263. (effects (font (size 1.27 1.27)) hide)
  6264. )
  6265. (pin "1" (uuid 32526cf5-3fa4-49dc-9602-b665462691a9))
  6266. )
  6267. (symbol (lib_id "power:GND") (at 31.75 274.32 0) (unit 1)
  6268. (in_bom yes) (on_board yes)
  6269. (uuid ad36f7bc-b206-43a3-a759-cd9031730899)
  6270. (property "Reference" "#PWR0112" (id 0) (at 31.75 280.67 0)
  6271. (effects (font (size 1.27 1.27)) hide)
  6272. )
  6273. (property "Value" "GND" (id 1) (at 31.877 278.7142 0))
  6274. (property "Footprint" "" (id 2) (at 31.75 274.32 0)
  6275. (effects (font (size 1.27 1.27)) hide)
  6276. )
  6277. (property "Datasheet" "" (id 3) (at 31.75 274.32 0)
  6278. (effects (font (size 1.27 1.27)) hide)
  6279. )
  6280. (pin "1" (uuid 1a287f1b-3fa6-491c-b1d1-0375116f294b))
  6281. )
  6282. (symbol (lib_id "power:+5V") (at 164.465 46.355 0) (unit 1)
  6283. (in_bom yes) (on_board yes) (fields_autoplaced)
  6284. (uuid af81c81b-a228-4f6a-ae53-d1a2977f27db)
  6285. (property "Reference" "#PWR0139" (id 0) (at 164.465 50.165 0)
  6286. (effects (font (size 1.27 1.27)) hide)
  6287. )
  6288. (property "Value" "+5V" (id 1) (at 164.465 41.275 0))
  6289. (property "Footprint" "" (id 2) (at 164.465 46.355 0)
  6290. (effects (font (size 1.27 1.27)) hide)
  6291. )
  6292. (property "Datasheet" "" (id 3) (at 164.465 46.355 0)
  6293. (effects (font (size 1.27 1.27)) hide)
  6294. )
  6295. (pin "1" (uuid 792a6425-c462-4d81-ae54-f489270e60ba))
  6296. )
  6297. (symbol (lib_id "Device:R_Small") (at 501.65 142.875 270) (unit 1)
  6298. (in_bom yes) (on_board yes)
  6299. (uuid b00547ee-ab49-4c21-b32b-70b65122f7de)
  6300. (property "Reference" "R10" (id 0) (at 501.65 146.304 90))
  6301. (property "Value" "2.2K/1%/0402" (id 1) (at 501.65 144.526 90)
  6302. (effects (font (size 0.635 0.635)))
  6303. )
  6304. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 501.65 142.875 0)
  6305. (effects (font (size 1.27 1.27)) hide)
  6306. )
  6307. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809201112_YAGEO-RC0402FR-072K2L_C114762.pdf" (id 3) (at 501.65 142.875 0)
  6308. (effects (font (size 1.27 1.27)) hide)
  6309. )
  6310. (property "Mfr #" "RC0402FR-072K2L" (id 4) (at 501.65 142.875 90)
  6311. (effects (font (size 1.27 1.27)) hide)
  6312. )
  6313. (property "LCSC #" "C114762" (id 5) (at 501.65 142.875 90)
  6314. (effects (font (size 1.27 1.27)) hide)
  6315. )
  6316. (pin "1" (uuid 469c4a89-0d45-4e0f-b026-ddad36765fc7))
  6317. (pin "2" (uuid 10e354af-660a-45ef-b3e0-a56dbfe27584))
  6318. )
  6319. (symbol (lib_id "power:GND") (at 80.645 165.1 0) (unit 1)
  6320. (in_bom yes) (on_board yes)
  6321. (uuid b15b1955-74db-422d-bd0a-d6dacaea5d51)
  6322. (property "Reference" "#PWR0144" (id 0) (at 80.645 171.45 0)
  6323. (effects (font (size 1.27 1.27)) hide)
  6324. )
  6325. (property "Value" "GND" (id 1) (at 76.2 167.005 0))
  6326. (property "Footprint" "" (id 2) (at 80.645 165.1 0)
  6327. (effects (font (size 1.27 1.27)) hide)
  6328. )
  6329. (property "Datasheet" "" (id 3) (at 80.645 165.1 0)
  6330. (effects (font (size 1.27 1.27)) hide)
  6331. )
  6332. (pin "1" (uuid c1aba8f6-968c-4e77-8214-8161ef06a903))
  6333. )
  6334. (symbol (lib_id "Device:R_Small") (at 288.29 144.145 270) (unit 1)
  6335. (in_bom yes) (on_board yes)
  6336. (uuid b67dbd1b-5757-4345-b9ac-898e6c900ddf)
  6337. (property "Reference" "R2" (id 0) (at 291.338 143.002 90))
  6338. (property "Value" "33R/1%/0402" (id 1) (at 282.702 143.256 90)
  6339. (effects (font (size 0.635 0.635)))
  6340. )
  6341. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 288.29 144.145 0)
  6342. (effects (font (size 1.27 1.27)) hide)
  6343. )
  6344. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810301314_Uniroyal-Elec-0402WGF330JTCE_C25105.pdf" (id 3) (at 288.29 144.145 0)
  6345. (effects (font (size 1.27 1.27)) hide)
  6346. )
  6347. (property "Mfr #" "0402WGF330JTCE" (id 4) (at 288.29 144.145 90)
  6348. (effects (font (size 1.27 1.27)) hide)
  6349. )
  6350. (property "LCSC #" "C25105" (id 5) (at 288.29 144.145 90)
  6351. (effects (font (size 1.27 1.27)) hide)
  6352. )
  6353. (pin "1" (uuid ca84a290-5894-426c-973c-b633659bf1dd))
  6354. (pin "2" (uuid a77dcde5-a9b2-4ecb-8a8c-db8b4ab42c9f))
  6355. )
  6356. (symbol (lib_id "Device:C_Small") (at 285.75 172.085 0) (unit 1)
  6357. (in_bom yes) (on_board yes)
  6358. (uuid b785cf5f-2d24-45c9-b360-35d35a95858b)
  6359. (property "Reference" "C6" (id 0) (at 281.94 174.625 0)
  6360. (effects (font (size 1.27 1.27)) (justify left))
  6361. )
  6362. (property "Value" "12pF/25V/5%/0402" (id 1) (at 287.02 183.515 90)
  6363. (effects (font (size 0.635 0.635)) (justify left))
  6364. )
  6365. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 285.75 172.085 0)
  6366. (effects (font (size 1.27 1.27)) hide)
  6367. )
  6368. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081546_Murata-Electronics-GRM1555C1E120JA01D_C161514.pdf" (id 3) (at 285.75 172.085 0)
  6369. (effects (font (size 1.27 1.27)) hide)
  6370. )
  6371. (property "Mfr #" "GRM1555C1E120JA01D" (id 4) (at 285.75 172.085 0)
  6372. (effects (font (size 1.27 1.27)) hide)
  6373. )
  6374. (property "LCSC #" "C161514" (id 5) (at 285.75 172.085 0)
  6375. (effects (font (size 1.27 1.27)) hide)
  6376. )
  6377. (pin "1" (uuid cb5ef4aa-f3ab-4f91-b06d-91c299e0c6c2))
  6378. (pin "2" (uuid 090982d7-b26d-4c7f-9fd0-eadc803a7a62))
  6379. )
  6380. (symbol (lib_id "power:GND") (at 165.735 115.57 0) (unit 1)
  6381. (in_bom yes) (on_board yes)
  6382. (uuid b7e767fc-f250-4d50-869d-96be8efe0a72)
  6383. (property "Reference" "#PWR0141" (id 0) (at 165.735 121.92 0)
  6384. (effects (font (size 1.27 1.27)) hide)
  6385. )
  6386. (property "Value" "GND" (id 1) (at 161.29 117.475 0))
  6387. (property "Footprint" "" (id 2) (at 165.735 115.57 0)
  6388. (effects (font (size 1.27 1.27)) hide)
  6389. )
  6390. (property "Datasheet" "" (id 3) (at 165.735 115.57 0)
  6391. (effects (font (size 1.27 1.27)) hide)
  6392. )
  6393. (pin "1" (uuid ec76f69f-69ac-456f-b4ef-2fd5495bdbb6))
  6394. )
  6395. (symbol (lib_id "Device:C_Small") (at 292.1 55.245 0) (unit 1)
  6396. (in_bom yes) (on_board yes)
  6397. (uuid becd77e2-b7ed-46c3-b4d3-e976446b2f80)
  6398. (property "Reference" "C7" (id 0) (at 288.29 57.785 0)
  6399. (effects (font (size 1.27 1.27)) (justify left))
  6400. )
  6401. (property "Value" "4.7uF/25V/10%/0603" (id 1) (at 292.989 67.056 90)
  6402. (effects (font (size 0.635 0.635)) (justify left))
  6403. )
  6404. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 292.1 55.245 0)
  6405. (effects (font (size 1.27 1.27)) hide)
  6406. )
  6407. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1910111742_Murata-Electronics-GRM188R61E475KE15D_C408137.pdf" (id 3) (at 292.1 55.245 0)
  6408. (effects (font (size 1.27 1.27)) hide)
  6409. )
  6410. (property "Mfr #" "GRM188R61E475KE15D" (id 4) (at 292.1 55.245 0)
  6411. (effects (font (size 1.27 1.27)) hide)
  6412. )
  6413. (property "LCSC #" "C408137" (id 5) (at 292.1 55.245 0)
  6414. (effects (font (size 1.27 1.27)) hide)
  6415. )
  6416. (pin "1" (uuid 54e57c8f-a415-4fd5-ad30-4333f98f4eaf))
  6417. (pin "2" (uuid c47bc566-9075-4e8f-ac3a-11cc1a79a386))
  6418. )
  6419. (symbol (lib_id "power:+3V3") (at 284.48 114.935 0) (unit 1)
  6420. (in_bom yes) (on_board yes)
  6421. (uuid c43a5b2a-6217-43c9-9e38-bba70fb112e5)
  6422. (property "Reference" "#PWR0131" (id 0) (at 284.48 118.745 0)
  6423. (effects (font (size 1.27 1.27)) hide)
  6424. )
  6425. (property "Value" "+3V3" (id 1) (at 280.67 113.665 0))
  6426. (property "Footprint" "" (id 2) (at 284.48 114.935 0)
  6427. (effects (font (size 1.27 1.27)) hide)
  6428. )
  6429. (property "Datasheet" "" (id 3) (at 284.48 114.935 0)
  6430. (effects (font (size 1.27 1.27)) hide)
  6431. )
  6432. (pin "1" (uuid e7e4c243-b7b6-45ed-9c5b-7dc13d9d9dc4))
  6433. )
  6434. (symbol (lib_id "Power_Protection:USBLC6-2SC6") (at 352.425 236.22 90) (unit 1)
  6435. (in_bom yes) (on_board yes)
  6436. (uuid cb233ecc-ee10-4924-a11e-2585204a55a9)
  6437. (property "Reference" "U5" (id 0) (at 358.775 227.33 90)
  6438. (effects (font (size 1.27 1.27)) (justify right))
  6439. )
  6440. (property "Value" "USBLC6-2SC6" (id 1) (at 357.505 224.79 90)
  6441. (effects (font (size 1.27 1.27)) (justify right))
  6442. )
  6443. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 342.265 255.27 0)
  6444. (effects (font (size 1.27 1.27)) hide)
  6445. )
  6446. (property "Datasheet" "" (id 3) (at 343.535 231.14 0)
  6447. (effects (font (size 1.27 1.27)) hide)
  6448. )
  6449. (property "LCSC" "C7519" (id 4) (at 352.425 236.22 0)
  6450. (effects (font (size 1.27 1.27)) hide)
  6451. )
  6452. (pin "1" (uuid 116db445-0de2-4b71-adbf-2f3638168bf1))
  6453. (pin "2" (uuid d278f62f-3aa1-44f8-9791-38b2558be9f2))
  6454. (pin "3" (uuid 3d212fd4-61bb-443e-ba98-a94c47788808))
  6455. (pin "4" (uuid d7a11df6-cef5-406b-b763-be293e12fab4))
  6456. (pin "5" (uuid 3be2d067-bf62-4eb3-a57c-3a39f6076d0f))
  6457. (pin "6" (uuid 5dbe3553-0b93-46e4-bb49-40f40fce155e))
  6458. )
  6459. (symbol (lib_id "power:GND") (at 335.28 184.785 0) (unit 1)
  6460. (in_bom yes) (on_board yes)
  6461. (uuid cd2b9d23-c14a-4049-a980-b814cece0bcb)
  6462. (property "Reference" "#PWR0126" (id 0) (at 335.28 191.135 0)
  6463. (effects (font (size 1.27 1.27)) hide)
  6464. )
  6465. (property "Value" "GND" (id 1) (at 335.407 189.1792 0))
  6466. (property "Footprint" "" (id 2) (at 335.28 184.785 0)
  6467. (effects (font (size 1.27 1.27)) hide)
  6468. )
  6469. (property "Datasheet" "" (id 3) (at 335.28 184.785 0)
  6470. (effects (font (size 1.27 1.27)) hide)
  6471. )
  6472. (pin "1" (uuid e3dbe12f-48ff-4fc4-a136-bbac0e332d27))
  6473. )
  6474. (symbol (lib_id "Device:C_Small") (at 308.61 55.245 0) (unit 1)
  6475. (in_bom yes) (on_board yes)
  6476. (uuid ceb5ce28-0a19-4a9d-9829-5efc82f79af1)
  6477. (property "Reference" "C10" (id 0) (at 304.8 57.785 0)
  6478. (effects (font (size 1.27 1.27)) (justify left))
  6479. )
  6480. (property "Value" "100nF/25V/10%/0402" (id 1) (at 309.499 67.31 90)
  6481. (effects (font (size 0.635 0.635)) (justify left))
  6482. )
  6483. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 308.61 55.245 0)
  6484. (effects (font (size 1.27 1.27)) hide)
  6485. )
  6486. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 308.61 55.245 0)
  6487. (effects (font (size 1.27 1.27)) hide)
  6488. )
  6489. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 308.61 55.245 0)
  6490. (effects (font (size 1.27 1.27)) hide)
  6491. )
  6492. (property "LCSC #" "C77014" (id 5) (at 308.61 55.245 0)
  6493. (effects (font (size 1.27 1.27)) hide)
  6494. )
  6495. (pin "1" (uuid 38f23179-77a8-494c-af9d-afdea89a85c6))
  6496. (pin "2" (uuid 6b9bfcf3-9fca-442e-80eb-da0009c54af0))
  6497. )
  6498. (symbol (lib_id "Z80ICE:ATF1508ASL-25AU100") (at 165.735 203.835 0) (unit 1)
  6499. (in_bom yes) (on_board yes) (fields_autoplaced)
  6500. (uuid d01cfa5a-bf72-4cdd-9fb9-741f9ede43bb)
  6501. (property "Reference" "U7" (id 0) (at 176.5047 127.635 0)
  6502. (effects (font (size 1.27 1.27)) (justify left))
  6503. )
  6504. (property "Value" "ATF1508ASL-25AU100" (id 1) (at 176.5047 130.175 0)
  6505. (effects (font (size 1.27 1.27)) (justify left))
  6506. )
  6507. (property "Footprint" "Package_LCC:PLCC-84_SMD-Socket" (id 2) (at 167.64 174.625 90)
  6508. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6509. )
  6510. (property "Datasheet" "" (id 3) (at 165.735 203.835 0)
  6511. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6512. )
  6513. (property "MANUFACTURER" "Microchip" (id 4) (at 161.925 200.66 0)
  6514. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  6515. )
  6516. (pin "1" (uuid 5525bf46-2347-41a6-bb8b-f3ccc3384eca))
  6517. (pin "10" (uuid af0990d0-3c87-452c-95e6-8e82be281eec))
  6518. (pin "11" (uuid 6560f862-daff-45ea-a261-46a7c7ca0540))
  6519. (pin "12" (uuid 4da5cded-8b0f-4e75-8380-03395f1bf370))
  6520. (pin "13" (uuid a42221f7-4b26-4df8-8c5d-bdb4fd62f0ef))
  6521. (pin "14" (uuid b0e69ad8-c585-49c3-b0e5-24263ea1181c))
  6522. (pin "15" (uuid 8d003d44-190b-4c38-8ca7-f0ce6ae8c9bf))
  6523. (pin "16" (uuid 148abb09-a88a-454c-9e9e-5aa250d6ebd6))
  6524. (pin "17" (uuid 09d81f55-0616-4b7b-9d2e-2411ce29b4df))
  6525. (pin "18" (uuid 5363c00b-2551-46be-bc20-37b1df250fc1))
  6526. (pin "19" (uuid c4e78a67-1983-4a73-8b89-eb778eb0287b))
  6527. (pin "2" (uuid da9e3297-9d95-4d4a-9a85-d6a525df0e16))
  6528. (pin "20" (uuid 3ef3ef4a-d3b2-4988-ab9f-8670d3d04bcb))
  6529. (pin "21" (uuid c86e64da-9033-479d-8521-ffbab274f4a1))
  6530. (pin "22" (uuid 084e5343-b3b5-4d7f-91e8-b42405aedb1c))
  6531. (pin "23" (uuid 18cedd10-8bd6-4323-98f1-6ca37ece5c8c))
  6532. (pin "24" (uuid ba049baf-705d-41de-a0b1-6f60a89f6a1e))
  6533. (pin "25" (uuid 80a11bca-edcd-4804-9209-01eef31194f6))
  6534. (pin "26" (uuid bc333bc0-d083-4437-b0ac-db83f029f081))
  6535. (pin "27" (uuid 1d10176a-01c6-4569-8b05-30b81e8de284))
  6536. (pin "28" (uuid 927eec8b-3884-4e89-9c21-7c1383c80432))
  6537. (pin "29" (uuid baf59167-09d2-4599-9d36-9a3a5031d582))
  6538. (pin "3" (uuid f6bd3215-c180-4a0b-955d-05d5e2a14590))
  6539. (pin "30" (uuid 9c13f895-7d16-4aac-85cf-5c5dcd1bb971))
  6540. (pin "31" (uuid 05f1ebe0-b30e-43bb-9db7-78534cabe9ac))
  6541. (pin "32" (uuid 57e9f689-ee9e-4e18-a0ba-2d94cd2ae7fa))
  6542. (pin "33" (uuid dcc10cd3-349d-4ec3-81d3-1b3142bd75f4))
  6543. (pin "34" (uuid c2d4faa4-9714-4db7-a75e-8ee44c1b7c4c))
  6544. (pin "35" (uuid c66f1d72-840e-4009-9822-f193b4c5fe6e))
  6545. (pin "36" (uuid 21cb27ed-8e2b-4ef9-bf64-96a84c8184a0))
  6546. (pin "37" (uuid bd08000c-d1bd-436c-8767-e232b6600aa4))
  6547. (pin "38" (uuid bab3f5be-3e55-4e4b-be21-956e11aa43de))
  6548. (pin "39" (uuid 3402ce4e-b02c-450f-b3f0-21d4c9f1b07e))
  6549. (pin "4" (uuid b3a01167-af9b-45bc-9936-bee693e0953a))
  6550. (pin "40" (uuid d5c53403-1128-413c-89d3-383a668739e1))
  6551. (pin "41" (uuid c8800794-7ee6-440a-88eb-1033507019a2))
  6552. (pin "42" (uuid 3844b076-7bda-4d94-819d-3c58f8bfdf49))
  6553. (pin "43" (uuid 6619118d-030b-4b3f-ac58-0af5eb989e80))
  6554. (pin "44" (uuid 6f7d90c1-521f-46db-b250-1ae4ee37b229))
  6555. (pin "45" (uuid e7a6f5c8-e251-4bd8-9812-31b2293db7e1))
  6556. (pin "46" (uuid 3418b39c-f426-4f91-8a9e-a6ab1a915c92))
  6557. (pin "47" (uuid 8d9cd5da-746b-41cc-8ab2-3fd6a5215a40))
  6558. (pin "48" (uuid c24f83a7-34c1-46bb-83f9-dccf746b311c))
  6559. (pin "49" (uuid 9cbdbcb9-d0e0-4342-8891-89ee6f08b409))
  6560. (pin "5" (uuid fac681a2-ba77-4d7e-971d-7411c8287065))
  6561. (pin "50" (uuid ad6ffb7b-6f14-4d9b-9c37-62be47287b47))
  6562. (pin "51" (uuid d85c000a-7309-4d0d-bedc-e4d8d0959bd4))
  6563. (pin "52" (uuid b6680d36-f2fb-408b-a770-1498d213fd38))
  6564. (pin "53" (uuid f889a81e-0f2f-4212-9af0-b69ef7d088b1))
  6565. (pin "54" (uuid 95f102ea-dc18-4a38-8065-f1407dd8da54))
  6566. (pin "55" (uuid ffcc1258-8314-49fa-be9e-10090fc11c5b))
  6567. (pin "56" (uuid ee08e257-fa5c-4470-bac3-38c65899808b))
  6568. (pin "57" (uuid 31425425-2ab4-481c-82da-baf01e9cc855))
  6569. (pin "58" (uuid 11f426fe-540e-4b56-acab-05fc5d2d7529))
  6570. (pin "59" (uuid 406ace6c-cd66-466b-9f2f-7a31422b41a2))
  6571. (pin "6" (uuid 7b468445-ff62-40dd-8bbb-1ce1ba3d2711))
  6572. (pin "60" (uuid b49b3376-8c52-4e2c-acb2-b7132c98c964))
  6573. (pin "61" (uuid 359a24d6-f249-4a55-a0fc-7dba7606cc47))
  6574. (pin "62" (uuid 548124cd-22f2-47fc-9f59-df3c698a3b13))
  6575. (pin "63" (uuid 143bc9b2-a45b-4185-9278-144ea55bea24))
  6576. (pin "64" (uuid ca53b484-205e-4f16-9c96-457fc8a2762c))
  6577. (pin "65" (uuid 7f1eee9e-cb3d-408b-81e5-6d77a3b5c9dd))
  6578. (pin "66" (uuid c054bd77-b92e-48c4-b89c-c60b3debbbed))
  6579. (pin "67" (uuid 39b23b18-238a-4e34-b637-f7a299dd5bca))
  6580. (pin "68" (uuid c43f423f-f6b8-4284-aba6-d690cdd35cb1))
  6581. (pin "69" (uuid 529e8fde-9ea5-41a8-b2cf-413a56ce2f23))
  6582. (pin "7" (uuid bc3813aa-2865-4fa4-8a38-edd2f04b12b4))
  6583. (pin "70" (uuid 676ae8ee-de34-4f3c-a65e-fef8797bba12))
  6584. (pin "71" (uuid 431e86b3-140e-418d-8bb4-95ccc8492152))
  6585. (pin "72" (uuid 9d9210d4-ff7c-4e05-ba86-6e517ba4fd8b))
  6586. (pin "73" (uuid 3cd994bf-6854-4aa5-8b88-3ae56fabf64f))
  6587. (pin "74" (uuid 2c567209-fe4a-4289-b248-71a01ed2854b))
  6588. (pin "75" (uuid 028241af-7150-4066-b45a-723f5d82b790))
  6589. (pin "76" (uuid 497f83c5-bfba-4f10-b705-fb7a9d08ca44))
  6590. (pin "77" (uuid 9ce428c2-3bc5-4beb-828f-cd94d465591b))
  6591. (pin "78" (uuid 19939d0d-ae01-4695-9627-2c2de9533acc))
  6592. (pin "79" (uuid 660dfef4-8a1a-4c22-9c06-2bdaf5a19794))
  6593. (pin "8" (uuid 6eeaaa75-abb0-4b6e-b93a-94cecb28b470))
  6594. (pin "80" (uuid 71f61cdb-0fe0-4acc-8ba4-bfc1fe57f4c3))
  6595. (pin "81" (uuid f3b51519-2798-4e51-b915-92890a9f5ce9))
  6596. (pin "82" (uuid 79ca06a7-ea96-4c9c-9f2f-cd86a04f24b8))
  6597. (pin "83" (uuid 6792a848-a105-4481-bef7-17587d2b40d3))
  6598. (pin "84" (uuid ffa22cdd-f137-4458-a8a5-c012a2c7b481))
  6599. (pin "9" (uuid 83c70f7c-2574-4240-9ada-8d6cebda20bb))
  6600. )
  6601. (symbol (lib_id "Device:C_Small") (at 43.18 234.95 0) (unit 1)
  6602. (in_bom yes) (on_board yes)
  6603. (uuid d40bfccd-3608-4594-bb92-d5c69c173a54)
  6604. (property "Reference" "C18" (id 0) (at 39.37 237.49 0)
  6605. (effects (font (size 1.27 1.27)) (justify left))
  6606. )
  6607. (property "Value" "100nF/25V/10%/0402" (id 1) (at 44.069 247.015 90)
  6608. (effects (font (size 0.635 0.635)) (justify left))
  6609. )
  6610. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 43.18 234.95 0)
  6611. (effects (font (size 1.27 1.27)) hide)
  6612. )
  6613. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 43.18 234.95 0)
  6614. (effects (font (size 1.27 1.27)) hide)
  6615. )
  6616. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 43.18 234.95 0)
  6617. (effects (font (size 1.27 1.27)) hide)
  6618. )
  6619. (property "LCSC #" "C77014" (id 5) (at 43.18 234.95 0)
  6620. (effects (font (size 1.27 1.27)) hide)
  6621. )
  6622. (pin "1" (uuid ced63138-2748-4be3-b6fe-7dc0fd88886d))
  6623. (pin "2" (uuid 9abb6eba-5212-40da-b0fa-18a782ab148e))
  6624. )
  6625. (symbol (lib_id "power:+3V3") (at 279.4 47.625 0) (unit 1)
  6626. (in_bom yes) (on_board yes) (fields_autoplaced)
  6627. (uuid d8db6c96-306f-4e45-89af-8c3a8ffb582d)
  6628. (property "Reference" "#PWR0130" (id 0) (at 279.4 51.435 0)
  6629. (effects (font (size 1.27 1.27)) hide)
  6630. )
  6631. (property "Value" "+3V3" (id 1) (at 279.4 42.545 0))
  6632. (property "Footprint" "" (id 2) (at 279.4 47.625 0)
  6633. (effects (font (size 1.27 1.27)) hide)
  6634. )
  6635. (property "Datasheet" "" (id 3) (at 279.4 47.625 0)
  6636. (effects (font (size 1.27 1.27)) hide)
  6637. )
  6638. (pin "1" (uuid 4337b803-88e6-488f-9388-e4a1ace58796))
  6639. )
  6640. (symbol (lib_id "Device:C_Small") (at 303.53 55.245 0) (unit 1)
  6641. (in_bom yes) (on_board yes)
  6642. (uuid da93a19b-46ea-4c7d-85a4-5096cb0d70a2)
  6643. (property "Reference" "C9" (id 0) (at 299.72 57.785 0)
  6644. (effects (font (size 1.27 1.27)) (justify left))
  6645. )
  6646. (property "Value" "4.7uF/25V/10%/0603" (id 1) (at 304.419 67.056 90)
  6647. (effects (font (size 0.635 0.635)) (justify left))
  6648. )
  6649. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 303.53 55.245 0)
  6650. (effects (font (size 1.27 1.27)) hide)
  6651. )
  6652. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1910111742_Murata-Electronics-GRM188R61E475KE15D_C408137.pdf" (id 3) (at 303.53 55.245 0)
  6653. (effects (font (size 1.27 1.27)) hide)
  6654. )
  6655. (property "Mfr #" "GRM188R61E475KE15D" (id 4) (at 303.53 55.245 0)
  6656. (effects (font (size 1.27 1.27)) hide)
  6657. )
  6658. (property "LCSC #" "C408137" (id 5) (at 303.53 55.245 0)
  6659. (effects (font (size 1.27 1.27)) hide)
  6660. )
  6661. (pin "1" (uuid 30f21e4f-12ea-4135-99e8-cf650a192fe1))
  6662. (pin "2" (uuid 983291a1-3ad9-4d72-b27a-d3161f368895))
  6663. )
  6664. (symbol (lib_id "Device:R") (at 325.755 231.14 270) (unit 1)
  6665. (in_bom yes) (on_board yes)
  6666. (uuid df85ab26-b16d-44a7-b9bc-49d1057758ed)
  6667. (property "Reference" "R8" (id 0) (at 325.755 225.8822 90))
  6668. (property "Value" "5.1k" (id 1) (at 325.755 228.1936 90))
  6669. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 325.755 229.362 90)
  6670. (effects (font (size 1.27 1.27)) hide)
  6671. )
  6672. (property "Datasheet" "~" (id 3) (at 325.755 231.14 0)
  6673. (effects (font (size 1.27 1.27)) hide)
  6674. )
  6675. (property "LCSC" "C25905" (id 4) (at 325.755 231.14 0)
  6676. (effects (font (size 1.27 1.27)) hide)
  6677. )
  6678. (property "Supplier" "" (id 5) (at 325.755 231.14 0)
  6679. (effects (font (size 1.27 1.27)) hide)
  6680. )
  6681. (pin "1" (uuid 3d5b5b9d-b4c4-4936-89ec-a329a0b33895))
  6682. (pin "2" (uuid 54172b3e-dc67-42cc-80bf-a363a6635a70))
  6683. )
  6684. (symbol (lib_id "Device:C_Small") (at 30.48 234.95 0) (unit 1)
  6685. (in_bom yes) (on_board yes)
  6686. (uuid e0a65346-b563-4c5b-b0b1-b66911bb089d)
  6687. (property "Reference" "C13" (id 0) (at 26.67 237.49 0)
  6688. (effects (font (size 1.27 1.27)) (justify left))
  6689. )
  6690. (property "Value" "100nF/25V/10%/0402" (id 1) (at 31.369 247.015 90)
  6691. (effects (font (size 0.635 0.635)) (justify left))
  6692. )
  6693. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 30.48 234.95 0)
  6694. (effects (font (size 1.27 1.27)) hide)
  6695. )
  6696. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 30.48 234.95 0)
  6697. (effects (font (size 1.27 1.27)) hide)
  6698. )
  6699. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 30.48 234.95 0)
  6700. (effects (font (size 1.27 1.27)) hide)
  6701. )
  6702. (property "LCSC #" "C77014" (id 5) (at 30.48 234.95 0)
  6703. (effects (font (size 1.27 1.27)) hide)
  6704. )
  6705. (pin "1" (uuid 7d34cf10-3806-4250-a674-fa4e208d3775))
  6706. (pin "2" (uuid 47ce18ad-fe25-4df6-8be2-f98c7abe5422))
  6707. )
  6708. (symbol (lib_id "power:+5V") (at 241.935 250.825 0) (unit 1)
  6709. (in_bom yes) (on_board yes) (fields_autoplaced)
  6710. (uuid e1233353-28f8-4ba5-af26-748555061e46)
  6711. (property "Reference" "#PWR0135" (id 0) (at 241.935 254.635 0)
  6712. (effects (font (size 1.27 1.27)) hide)
  6713. )
  6714. (property "Value" "+5V" (id 1) (at 241.935 245.745 0))
  6715. (property "Footprint" "" (id 2) (at 241.935 250.825 0)
  6716. (effects (font (size 1.27 1.27)) hide)
  6717. )
  6718. (property "Datasheet" "" (id 3) (at 241.935 250.825 0)
  6719. (effects (font (size 1.27 1.27)) hide)
  6720. )
  6721. (pin "1" (uuid 667b681a-ee85-42f9-8f5c-0d93905a2694))
  6722. )
  6723. (symbol (lib_id "Device:R_Small") (at 288.29 146.685 270) (unit 1)
  6724. (in_bom yes) (on_board yes)
  6725. (uuid e3e786fa-4ed7-4f58-b4e3-0b768b3a0149)
  6726. (property "Reference" "R3" (id 0) (at 291.338 145.542 90))
  6727. (property "Value" "33R/1%/0402" (id 1) (at 282.702 145.796 90)
  6728. (effects (font (size 0.635 0.635)))
  6729. )
  6730. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 288.29 146.685 0)
  6731. (effects (font (size 1.27 1.27)) hide)
  6732. )
  6733. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810301314_Uniroyal-Elec-0402WGF330JTCE_C25105.pdf" (id 3) (at 288.29 146.685 0)
  6734. (effects (font (size 1.27 1.27)) hide)
  6735. )
  6736. (property "Mfr #" "0402WGF330JTCE" (id 4) (at 288.29 146.685 90)
  6737. (effects (font (size 1.27 1.27)) hide)
  6738. )
  6739. (property "LCSC #" "C25105" (id 5) (at 288.29 146.685 90)
  6740. (effects (font (size 1.27 1.27)) hide)
  6741. )
  6742. (pin "1" (uuid 1cbb4658-9352-4a1c-8d5c-8d50021e6681))
  6743. (pin "2" (uuid e9d3abf9-25b9-4de8-a6f8-a6ec732d54f9))
  6744. )
  6745. (symbol (lib_id "power:GND") (at 43.18 246.38 0) (unit 1)
  6746. (in_bom yes) (on_board yes)
  6747. (uuid e507d102-5622-41bd-a93b-7f368be2a763)
  6748. (property "Reference" "#PWR0105" (id 0) (at 43.18 252.73 0)
  6749. (effects (font (size 1.27 1.27)) hide)
  6750. )
  6751. (property "Value" "GND" (id 1) (at 43.307 250.7742 0))
  6752. (property "Footprint" "" (id 2) (at 43.18 246.38 0)
  6753. (effects (font (size 1.27 1.27)) hide)
  6754. )
  6755. (property "Datasheet" "" (id 3) (at 43.18 246.38 0)
  6756. (effects (font (size 1.27 1.27)) hide)
  6757. )
  6758. (pin "1" (uuid 56001e05-6789-4013-89e3-03bd9555b9fa))
  6759. )
  6760. (symbol (lib_id "power:GND") (at 52.07 113.03 0) (unit 1)
  6761. (in_bom yes) (on_board yes)
  6762. (uuid e76f7ebc-2a09-4fad-b7bb-1ef55c02aa8d)
  6763. (property "Reference" "#PWR0143" (id 0) (at 52.07 119.38 0)
  6764. (effects (font (size 1.27 1.27)) hide)
  6765. )
  6766. (property "Value" "GND" (id 1) (at 47.625 114.935 0))
  6767. (property "Footprint" "" (id 2) (at 52.07 113.03 0)
  6768. (effects (font (size 1.27 1.27)) hide)
  6769. )
  6770. (property "Datasheet" "" (id 3) (at 52.07 113.03 0)
  6771. (effects (font (size 1.27 1.27)) hide)
  6772. )
  6773. (pin "1" (uuid 9d1b0dd5-5037-4b8e-8f98-87f9fa960d30))
  6774. )
  6775. (symbol (lib_id "Device:C_Small") (at 24.13 234.95 0) (unit 1)
  6776. (in_bom yes) (on_board yes)
  6777. (uuid eae9693a-eec6-4712-8442-4aeb80ea2ccb)
  6778. (property "Reference" "C11" (id 0) (at 20.32 237.49 0)
  6779. (effects (font (size 1.27 1.27)) (justify left))
  6780. )
  6781. (property "Value" "100nF/25V/10%/0402" (id 1) (at 25.019 247.015 90)
  6782. (effects (font (size 0.635 0.635)) (justify left))
  6783. )
  6784. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 24.13 234.95 0)
  6785. (effects (font (size 1.27 1.27)) hide)
  6786. )
  6787. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 24.13 234.95 0)
  6788. (effects (font (size 1.27 1.27)) hide)
  6789. )
  6790. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 24.13 234.95 0)
  6791. (effects (font (size 1.27 1.27)) hide)
  6792. )
  6793. (property "LCSC #" "C77014" (id 5) (at 24.13 234.95 0)
  6794. (effects (font (size 1.27 1.27)) hide)
  6795. )
  6796. (pin "1" (uuid 9b97dfe6-e2b0-46ef-b781-3f39f37ec22f))
  6797. (pin "2" (uuid 6932ca92-7b31-4193-9115-ca652f244bcd))
  6798. )
  6799. (symbol (lib_id "Device:Polyfuse") (at 371.475 210.82 270) (unit 1)
  6800. (in_bom yes) (on_board yes)
  6801. (uuid ecd177b1-1d05-490a-bc0b-d1bd54a50d39)
  6802. (property "Reference" "F1" (id 0) (at 371.475 208.28 90))
  6803. (property "Value" "Polyfuse 460mA" (id 1) (at 371.475 214.63 90))
  6804. (property "Footprint" "Greaseweazle:Fuse_1206_3216Metric" (id 2) (at 366.395 212.09 0)
  6805. (effects (font (size 1.27 1.27)) (justify left) hide)
  6806. )
  6807. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf" (id 3) (at 371.475 210.82 0)
  6808. (effects (font (size 1.27 1.27)) hide)
  6809. )
  6810. (property "LCSC" "C69680" (id 4) (at 333.375 176.53 0)
  6811. (effects (font (size 1.27 1.27)) hide)
  6812. )
  6813. (property "MOUSER" "" (id 5) (at 333.375 176.53 0)
  6814. (effects (font (size 1.27 1.27)) hide)
  6815. )
  6816. (property "MPN" "" (id 6) (at 333.375 176.53 0)
  6817. (effects (font (size 1.27 1.27)) hide)
  6818. )
  6819. (pin "1" (uuid a8c240a1-d418-43ef-8b5d-772d203f5af8))
  6820. (pin "2" (uuid 0a0fc352-a7d8-4753-b5f2-7a3a31112241))
  6821. )
  6822. (symbol (lib_id "power:GND") (at 271.78 98.425 0) (unit 1)
  6823. (in_bom yes) (on_board yes)
  6824. (uuid ee15600a-8855-4e32-8678-578ca04110b5)
  6825. (property "Reference" "#PWR0114" (id 0) (at 271.78 104.775 0)
  6826. (effects (font (size 1.27 1.27)) hide)
  6827. )
  6828. (property "Value" "GND" (id 1) (at 271.907 102.8192 0))
  6829. (property "Footprint" "" (id 2) (at 271.78 98.425 0)
  6830. (effects (font (size 1.27 1.27)) hide)
  6831. )
  6832. (property "Datasheet" "" (id 3) (at 271.78 98.425 0)
  6833. (effects (font (size 1.27 1.27)) hide)
  6834. )
  6835. (pin "1" (uuid 1d751e16-596f-42fa-b467-2fcf0aea7ec1))
  6836. )
  6837. (symbol (lib_id "Device:R_Small") (at 274.955 259.08 180) (unit 1)
  6838. (in_bom yes) (on_board yes)
  6839. (uuid f1370d94-cf81-4937-9a1b-efa417f60a57)
  6840. (property "Reference" "R1" (id 0) (at 276.4536 258.4196 0)
  6841. (effects (font (size 1.27 1.27)) (justify right))
  6842. )
  6843. (property "Value" "2.2K/1%/0402" (id 1) (at 276.4536 260.2484 0)
  6844. (effects (font (size 0.635 0.635)) (justify right))
  6845. )
  6846. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 274.955 259.08 0)
  6847. (effects (font (size 1.27 1.27)) hide)
  6848. )
  6849. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809201112_YAGEO-RC0402FR-072K2L_C114762.pdf" (id 3) (at 274.955 259.08 0)
  6850. (effects (font (size 1.27 1.27)) hide)
  6851. )
  6852. (property "Mfr #" "RC0402FR-072K2L" (id 4) (at 274.955 259.08 0)
  6853. (effects (font (size 1.27 1.27)) hide)
  6854. )
  6855. (property "LCSC #" "C114762" (id 5) (at 274.955 259.08 0)
  6856. (effects (font (size 1.27 1.27)) hide)
  6857. )
  6858. (pin "1" (uuid 516be0f8-2eed-4b8b-ad3a-232f62e0df0d))
  6859. (pin "2" (uuid 439ff0f4-ad42-4eb7-a414-36f4a1befb8d))
  6860. )
  6861. (symbol (lib_id "Device:R") (at 325.755 215.9 270) (unit 1)
  6862. (in_bom yes) (on_board yes)
  6863. (uuid f34aff8b-9274-4550-a45d-3cc90c503dd6)
  6864. (property "Reference" "R7" (id 0) (at 325.755 213.36 90))
  6865. (property "Value" "5.1k" (id 1) (at 325.755 218.44 90))
  6866. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 325.755 214.122 90)
  6867. (effects (font (size 1.27 1.27)) hide)
  6868. )
  6869. (property "Datasheet" "~" (id 3) (at 325.755 215.9 0)
  6870. (effects (font (size 1.27 1.27)) hide)
  6871. )
  6872. (property "LCSC" "C25905" (id 4) (at 325.755 215.9 0)
  6873. (effects (font (size 1.27 1.27)) hide)
  6874. )
  6875. (property "Supplier" "" (id 5) (at 325.755 215.9 0)
  6876. (effects (font (size 1.27 1.27)) hide)
  6877. )
  6878. (pin "1" (uuid 051cf58c-07e8-4945-adb3-19dd1e7c9ad7))
  6879. (pin "2" (uuid a771f70f-f355-456e-9f96-042d551cd665))
  6880. )
  6881. (symbol (lib_id "power:+1V8") (at 327.66 64.135 0) (unit 1)
  6882. (in_bom yes) (on_board yes) (fields_autoplaced)
  6883. (uuid f43a0663-6e29-4423-bc62-c7e32bcb2cc6)
  6884. (property "Reference" "#PWR0146" (id 0) (at 327.66 67.945 0)
  6885. (effects (font (size 1.27 1.27)) hide)
  6886. )
  6887. (property "Value" "+1V8" (id 1) (at 327.66 58.42 0))
  6888. (property "Footprint" "" (id 2) (at 327.66 64.135 0)
  6889. (effects (font (size 1.27 1.27)) hide)
  6890. )
  6891. (property "Datasheet" "" (id 3) (at 327.66 64.135 0)
  6892. (effects (font (size 1.27 1.27)) hide)
  6893. )
  6894. (pin "1" (uuid 53aff3eb-d274-48f9-ac66-1af88ffbd64d))
  6895. )
  6896. (symbol (lib_id "power:GND") (at 292.1 66.675 0) (unit 1)
  6897. (in_bom yes) (on_board yes)
  6898. (uuid f6344501-b291-48cd-b655-b755b51b8995)
  6899. (property "Reference" "#PWR0102" (id 0) (at 292.1 73.025 0)
  6900. (effects (font (size 1.27 1.27)) hide)
  6901. )
  6902. (property "Value" "GND" (id 1) (at 292.227 71.0692 0))
  6903. (property "Footprint" "" (id 2) (at 292.1 66.675 0)
  6904. (effects (font (size 1.27 1.27)) hide)
  6905. )
  6906. (property "Datasheet" "" (id 3) (at 292.1 66.675 0)
  6907. (effects (font (size 1.27 1.27)) hide)
  6908. )
  6909. (pin "1" (uuid 6eaad618-3462-4bfb-bea4-77add3447c6f))
  6910. )
  6911. (symbol (lib_id "Device:C_Small") (at 273.05 172.085 0) (unit 1)
  6912. (in_bom yes) (on_board yes)
  6913. (uuid ffaa515e-a3a7-4ef0-b7cc-cca082ccd861)
  6914. (property "Reference" "C4" (id 0) (at 269.24 174.625 0)
  6915. (effects (font (size 1.27 1.27)) (justify left))
  6916. )
  6917. (property "Value" "12pF/25V/5%/0402" (id 1) (at 274.32 183.515 90)
  6918. (effects (font (size 0.635 0.635)) (justify left))
  6919. )
  6920. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 273.05 172.085 0)
  6921. (effects (font (size 1.27 1.27)) hide)
  6922. )
  6923. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081546_Murata-Electronics-GRM1555C1E120JA01D_C161514.pdf" (id 3) (at 273.05 172.085 0)
  6924. (effects (font (size 1.27 1.27)) hide)
  6925. )
  6926. (property "Mfr #" "GRM1555C1E120JA01D" (id 4) (at 273.05 172.085 0)
  6927. (effects (font (size 1.27 1.27)) hide)
  6928. )
  6929. (property "LCSC #" "C161514" (id 5) (at 273.05 172.085 0)
  6930. (effects (font (size 1.27 1.27)) hide)
  6931. )
  6932. (pin "1" (uuid 26e1ddc7-6de9-4fad-a9af-ea44b8fb1f13))
  6933. (pin "2" (uuid 29421fd7-f39c-4c55-8565-218749a5f4f7))
  6934. )
  6935. (symbol (lib_id "power:GND") (at 274.955 269.24 0) (unit 1)
  6936. (in_bom yes) (on_board yes)
  6937. (uuid ffe67b36-be57-4645-aecc-ac2442cfc566)
  6938. (property "Reference" "#PWR0120" (id 0) (at 274.955 275.59 0)
  6939. (effects (font (size 1.27 1.27)) hide)
  6940. )
  6941. (property "Value" "GND" (id 1) (at 275.082 273.6342 0))
  6942. (property "Footprint" "" (id 2) (at 274.955 269.24 0)
  6943. (effects (font (size 1.27 1.27)) hide)
  6944. )
  6945. (property "Datasheet" "" (id 3) (at 274.955 269.24 0)
  6946. (effects (font (size 1.27 1.27)) hide)
  6947. )
  6948. (pin "1" (uuid f24e4ceb-778d-4ae4-8c46-a88d118ed07f))
  6949. )
  6950. (sheet_instances
  6951. (path "/" (page "1"))
  6952. )
  6953. (symbol_instances
  6954. (path "/6b1bfa2c-f66d-4683-99c1-0f6cf8cfde16"
  6955. (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
  6956. )
  6957. (path "/f6344501-b291-48cd-b655-b755b51b8995"
  6958. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  6959. )
  6960. (path "/543d85b9-6956-4d40-adcc-d7eb4894ec9d"
  6961. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  6962. )
  6963. (path "/764c3897-0039-4e8b-827f-ba7e1c0b435a"
  6964. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  6965. )
  6966. (path "/e507d102-5622-41bd-a93b-7f368be2a763"
  6967. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  6968. )
  6969. (path "/0c73a196-e7d4-45f0-b412-702cf8f01f94"
  6970. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  6971. )
  6972. (path "/8ab690ea-b43d-40a3-9f93-57a95c434b58"
  6973. (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
  6974. )
  6975. (path "/a3036691-b885-4b7f-b58f-a9e30468aa56"
  6976. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  6977. )
  6978. (path "/6ce05476-e28f-459e-bab0-0fb22972f73f"
  6979. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  6980. )
  6981. (path "/4965be65-426c-42ea-9249-f8569089b33a"
  6982. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  6983. )
  6984. (path "/1e188cc2-b835-4356-8ae9-fa55c4982306"
  6985. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  6986. )
  6987. (path "/ad36f7bc-b206-43a3-a759-cd9031730899"
  6988. (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
  6989. )
  6990. (path "/92225265-a780-4d4c-b887-155952fecfeb"
  6991. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  6992. )
  6993. (path "/ee15600a-8855-4e32-8678-578ca04110b5"
  6994. (reference "#PWR0114") (unit 1) (value "GND") (footprint "")
  6995. )
  6996. (path "/68d487e2-f1a5-45e6-b4df-2f0c81d53dcf"
  6997. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  6998. )
  6999. (path "/694a98d7-e6ec-408f-9bf7-d46935ce37b5"
  7000. (reference "#PWR0116") (unit 1) (value "GND") (footprint "")
  7001. )
  7002. (path "/4f6a9aee-48b7-463a-9d63-9b62fd1c844c"
  7003. (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
  7004. )
  7005. (path "/97daf5a0-25a3-4f25-94b8-3877c77c3beb"
  7006. (reference "#PWR0118") (unit 1) (value "GND") (footprint "")
  7007. )
  7008. (path "/9bdf1619-aef9-4cee-b279-96ea6a2bdad0"
  7009. (reference "#PWR0119") (unit 1) (value "GND") (footprint "")
  7010. )
  7011. (path "/ffe67b36-be57-4645-aecc-ac2442cfc566"
  7012. (reference "#PWR0120") (unit 1) (value "GND") (footprint "")
  7013. )
  7014. (path "/43b83906-bee1-4be4-ba40-a58742e814b0"
  7015. (reference "#PWR0121") (unit 1) (value "GND") (footprint "")
  7016. )
  7017. (path "/0fab5564-99ee-4a7a-9741-e8e2e6b2e8fb"
  7018. (reference "#PWR0122") (unit 1) (value "GND") (footprint "")
  7019. )
  7020. (path "/544adac2-3f6a-4486-8f6c-96876e3e8065"
  7021. (reference "#PWR0123") (unit 1) (value "GND") (footprint "")
  7022. )
  7023. (path "/3fd6940e-4f55-4f44-985b-f95e56a2c906"
  7024. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  7025. )
  7026. (path "/1295c243-9fef-4826-8fde-e436bbfeedcb"
  7027. (reference "#PWR0125") (unit 1) (value "GND") (footprint "")
  7028. )
  7029. (path "/cd2b9d23-c14a-4049-a980-b814cece0bcb"
  7030. (reference "#PWR0126") (unit 1) (value "GND") (footprint "")
  7031. )
  7032. (path "/5e8f49b0-bc20-4c5a-8256-b584ef1d2905"
  7033. (reference "#PWR0127") (unit 1) (value "+3V3") (footprint "")
  7034. )
  7035. (path "/ab53dca0-bcc3-48f4-b3f0-82ec262800d1"
  7036. (reference "#PWR0128") (unit 1) (value "+3V3") (footprint "")
  7037. )
  7038. (path "/2454f770-9ba4-4d59-a0c5-1a043a0be8c9"
  7039. (reference "#PWR0129") (unit 1) (value "+3V3") (footprint "")
  7040. )
  7041. (path "/d8db6c96-306f-4e45-89af-8c3a8ffb582d"
  7042. (reference "#PWR0130") (unit 1) (value "+3V3") (footprint "")
  7043. )
  7044. (path "/c43a5b2a-6217-43c9-9e38-bba70fb112e5"
  7045. (reference "#PWR0131") (unit 1) (value "+3V3") (footprint "")
  7046. )
  7047. (path "/3f35bb26-ced8-4ac3-937d-6858f7586540"
  7048. (reference "#PWR0132") (unit 1) (value "+3V3") (footprint "")
  7049. )
  7050. (path "/6eff8a91-4d82-40e9-909d-6abc1afb2edb"
  7051. (reference "#PWR0133") (unit 1) (value "+3V3") (footprint "")
  7052. )
  7053. (path "/9e2d7dc4-e340-461a-8ebe-65244b1eab0c"
  7054. (reference "#PWR0134") (unit 1) (value "+5V") (footprint "")
  7055. )
  7056. (path "/e1233353-28f8-4ba5-af26-748555061e46"
  7057. (reference "#PWR0135") (unit 1) (value "+5V") (footprint "")
  7058. )
  7059. (path "/2f5122bf-a7c6-483a-9626-60268a0c2cae"
  7060. (reference "#PWR0136") (unit 1) (value "+5V") (footprint "")
  7061. )
  7062. (path "/a8b37eb2-425b-42d7-9d15-a46bf4356d9b"
  7063. (reference "#PWR0137") (unit 1) (value "+5V") (footprint "")
  7064. )
  7065. (path "/08d9a933-d909-4769-861a-c4b5ab315cde"
  7066. (reference "#PWR0138") (unit 1) (value "+5V") (footprint "")
  7067. )
  7068. (path "/af81c81b-a228-4f6a-ae53-d1a2977f27db"
  7069. (reference "#PWR0139") (unit 1) (value "+5V") (footprint "")
  7070. )
  7071. (path "/77281cde-783b-470a-b755-948418415ed5"
  7072. (reference "#PWR0140") (unit 1) (value "+5V") (footprint "")
  7073. )
  7074. (path "/b7e767fc-f250-4d50-869d-96be8efe0a72"
  7075. (reference "#PWR0141") (unit 1) (value "GND") (footprint "")
  7076. )
  7077. (path "/1b22aea5-c14a-45df-ba6b-407c18ebd943"
  7078. (reference "#PWR0142") (unit 1) (value "GND") (footprint "")
  7079. )
  7080. (path "/e76f7ebc-2a09-4fad-b7bb-1ef55c02aa8d"
  7081. (reference "#PWR0143") (unit 1) (value "GND") (footprint "")
  7082. )
  7083. (path "/b15b1955-74db-422d-bd0a-d6dacaea5d51"
  7084. (reference "#PWR0144") (unit 1) (value "GND") (footprint "")
  7085. )
  7086. (path "/19080ab3-d4ed-43f6-983a-1875845e70a0"
  7087. (reference "#PWR0145") (unit 1) (value "+1V8") (footprint "")
  7088. )
  7089. (path "/f43a0663-6e29-4423-bc62-c7e32bcb2cc6"
  7090. (reference "#PWR0146") (unit 1) (value "+1V8") (footprint "")
  7091. )
  7092. (path "/a70219ca-9f69-42a4-96be-4a1d8faae0f4"
  7093. (reference "#PWR0147") (unit 1) (value "+1V8") (footprint "")
  7094. )
  7095. (path "/4f732699-10ca-49c3-a111-e29bc51387a6"
  7096. (reference "C1") (unit 1) (value "10uF/25V/20%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7097. )
  7098. (path "/4ba1d77c-6d58-4d30-b0a7-c1e54b093936"
  7099. (reference "C2") (unit 1) (value "22uF/10V/20%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7100. )
  7101. (path "/0d9734d7-6b5f-4645-a39d-f6e943cf28b2"
  7102. (reference "C3") (unit 1) (value "4.7uF/25V/10%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7103. )
  7104. (path "/ffaa515e-a3a7-4ef0-b7cc-cca082ccd861"
  7105. (reference "C4") (unit 1) (value "12pF/25V/5%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7106. )
  7107. (path "/057e4a51-9749-4994-b275-015088cf2c45"
  7108. (reference "C5") (unit 1) (value "4.7uF/25V/10%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7109. )
  7110. (path "/b785cf5f-2d24-45c9-b360-35d35a95858b"
  7111. (reference "C6") (unit 1) (value "12pF/25V/5%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7112. )
  7113. (path "/becd77e2-b7ed-46c3-b4d3-e976446b2f80"
  7114. (reference "C7") (unit 1) (value "4.7uF/25V/10%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7115. )
  7116. (path "/1eed8d63-bf4b-47bc-8740-c581f0cfd918"
  7117. (reference "C8") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7118. )
  7119. (path "/da93a19b-46ea-4c7d-85a4-5096cb0d70a2"
  7120. (reference "C9") (unit 1) (value "4.7uF/25V/10%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7121. )
  7122. (path "/ceb5ce28-0a19-4a9d-9829-5efc82f79af1"
  7123. (reference "C10") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7124. )
  7125. (path "/eae9693a-eec6-4712-8442-4aeb80ea2ccb"
  7126. (reference "C11") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7127. )
  7128. (path "/7b8181fe-5e51-4e10-b3e5-ceb58c7ff6d6"
  7129. (reference "C12") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7130. )
  7131. (path "/e0a65346-b563-4c5b-b0b1-b66911bb089d"
  7132. (reference "C13") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7133. )
  7134. (path "/4994864c-f7d0-4c86-948f-73dc2fec1bd9"
  7135. (reference "C14") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7136. )
  7137. (path "/7af7cadc-26a6-4b18-b8af-49ac9af1256e"
  7138. (reference "C15") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  7139. )
  7140. (path "/6e5e4d10-d5f1-4d7b-bc02-f93f1043f025"
  7141. (reference "C16") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7142. )
  7143. (path "/3df9bc8e-ff2a-4440-8852-ee1d3b45eef8"
  7144. (reference "C17") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7145. )
  7146. (path "/d40bfccd-3608-4594-bb92-d5c69c173a54"
  7147. (reference "C18") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  7148. )
  7149. (path "/64faa7b7-400d-423f-ac33-57935ca2e37c"
  7150. (reference "D1") (unit 1) (value "LED") (footprint "LED_SMD:LED_0402_1005Metric")
  7151. )
  7152. (path "/80f97144-6d62-432e-8957-a92143e1d836"
  7153. (reference "D2") (unit 1) (value "LED") (footprint "LED_SMD:LED_0402_1005Metric")
  7154. )
  7155. (path "/39796c10-6f4e-4a28-a3be-e5b2af3c4b54"
  7156. (reference "D3") (unit 1) (value "LED") (footprint "LED_SMD:LED_0402_1005Metric")
  7157. )
  7158. (path "/ecd177b1-1d05-490a-bc0b-d1bd54a50d39"
  7159. (reference "F1") (unit 1) (value "Polyfuse 460mA") (footprint "Greaseweazle:Fuse_1206_3216Metric")
  7160. )
  7161. (path "/61291441-aedb-4d0a-a7f9-a9e41f67be02"
  7162. (reference "FB1") (unit 1) (value "bead") (footprint "Inductor_SMD:L_0805_2012Metric")
  7163. )
  7164. (path "/6f8a299b-825c-4e8b-86b5-22f83635d696"
  7165. (reference "FB2") (unit 1) (value "bead") (footprint "Inductor_SMD:L_0805_2012Metric")
  7166. )
  7167. (path "/37130447-8071-4e53-aa26-a47c3640e02c"
  7168. (reference "J1") (unit 1) (value "Conn_02x20_Counter_Clockwise") (footprint "Connector_IDC:IDC-Header_2x20_P2.54mm_Vertical")
  7169. )
  7170. (path "/f1370d94-cf81-4937-9a1b-efa417f60a57"
  7171. (reference "R1") (unit 1) (value "2.2K/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  7172. )
  7173. (path "/b67dbd1b-5757-4345-b9ac-898e6c900ddf"
  7174. (reference "R2") (unit 1) (value "33R/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  7175. )
  7176. (path "/e3e786fa-4ed7-4f58-b4e3-0b768b3a0149"
  7177. (reference "R3") (unit 1) (value "33R/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  7178. )
  7179. (path "/35283631-fa6a-43f9-b429-2bfcbc217b04"
  7180. (reference "R4") (unit 1) (value "33R/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  7181. )
  7182. (path "/41a2c7f8-9d13-4742-8a6d-d47af6cea9fc"
  7183. (reference "R5") (unit 1) (value "12K/1%") (footprint "Resistor_SMD:R_0402_1005Metric")
  7184. )
  7185. (path "/52eac967-7d94-4d8b-9b8f-c6859ea9fecb"
  7186. (reference "R6") (unit 1) (value "1K/1%") (footprint "Resistor_SMD:R_0402_1005Metric")
  7187. )
  7188. (path "/f34aff8b-9274-4550-a45d-3cc90c503dd6"
  7189. (reference "R7") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  7190. )
  7191. (path "/df85ab26-b16d-44a7-b9bc-49d1057758ed"
  7192. (reference "R8") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  7193. )
  7194. (path "/9bea29e5-370e-4174-9b02-826f44e60212"
  7195. (reference "R9") (unit 1) (value "2.2K/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  7196. )
  7197. (path "/b00547ee-ab49-4c21-b32b-70b65122f7de"
  7198. (reference "R10") (unit 1) (value "2.2K/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  7199. )
  7200. (path "/102b5b78-a9ab-4d9f-994b-8c38f1ce166a"
  7201. (reference "U2") (unit 1) (value "Z80CPU") (footprint "Socket:DIP_Socket-40_W22.1_W22.86_W25.4_W27.94_W28.7_3M_240-3639-00-0602J")
  7202. )
  7203. (path "/7049dfae-5363-4f06-bd50-caf296fe785b"
  7204. (reference "U3") (unit 1) (value "AMS1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  7205. )
  7206. (path "/4ab71fca-03b4-4ced-8a48-e8a112536b0d"
  7207. (reference "U4") (unit 1) (value "FT2232H") (footprint "Package_QFP:LQFP-64_10x10mm_P0.5mm")
  7208. )
  7209. (path "/cb233ecc-ee10-4924-a11e-2585204a55a9"
  7210. (reference "U5") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  7211. )
  7212. (path "/83a01f69-1c58-4b9b-96a1-104f416212b1"
  7213. (reference "U6") (unit 1) (value "CY7C1019D-10VXIT") (footprint "Package_SO:SOJ-36_10.16x23.49mm_P1.27mm")
  7214. )
  7215. (path "/d01cfa5a-bf72-4cdd-9fb9-741f9ede43bb"
  7216. (reference "U7") (unit 1) (value "ATF1508ASL-25AU100") (footprint "Package_LCC:PLCC-84_SMD-Socket")
  7217. )
  7218. (path "/693bf11b-0d1b-4d96-9e48-744408da6046"
  7219. (reference "USB1") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "sm6uax:HRO-TYPE-C-31-M-12")
  7220. )
  7221. (path "/82c18ee2-61a6-4dc4-9b18-2abfdbe5131d"
  7222. (reference "Y1") (unit 1) (value "7M12000044") (footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm")
  7223. )
  7224. )
  7225. )