ad_usb.kicad_sch 187 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232
  1. (kicad_sch (version 20230121) (generator eeschema)
  2. (uuid 579a29a8-cb44-486c-bb96-051580b27281)
  3. (paper "A4")
  4. (title_block
  5. (title "Greaseweazle F7 Lighting, USB PD")
  6. (date "2023-08-27")
  7. (rev "2.04")
  8. (company "SweProj.com")
  9. )
  10. (lib_symbols
  11. (symbol "74xGxx:74LVC2G04" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  12. (property "Reference" "U" (at -2.54 3.81 0)
  13. (effects (font (size 1.27 1.27)))
  14. )
  15. (property "Value" "74LVC2G04" (at 0 -3.81 0)
  16. (effects (font (size 1.27 1.27)))
  17. )
  18. (property "Footprint" "" (at 0 0 0)
  19. (effects (font (size 1.27 1.27)) hide)
  20. )
  21. (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_keywords" "Dual Gate NOT LVC CMOS" (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_description" "Dual NOT Gate, Low-Voltage CMOS" (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (property "ki_fp_filters" "SG-* SOT*" (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (symbol "74LVC2G04_0_1"
  34. (polyline
  35. (pts
  36. (xy -3.81 2.54)
  37. (xy -3.81 -2.54)
  38. (xy 2.54 0)
  39. (xy -3.81 2.54)
  40. )
  41. (stroke (width 0.254) (type default))
  42. (fill (type none))
  43. )
  44. (pin power_in line (at 0 -2.54 270) (length 0) hide
  45. (name "GND" (effects (font (size 1.016 1.016))))
  46. (number "2" (effects (font (size 1.016 1.016))))
  47. )
  48. (pin power_in line (at 0 2.54 90) (length 0) hide
  49. (name "VCC" (effects (font (size 1.016 1.016))))
  50. (number "5" (effects (font (size 1.016 1.016))))
  51. )
  52. )
  53. (symbol "74LVC2G04_1_1"
  54. (pin input line (at -7.62 0 0) (length 3.81)
  55. (name "~" (effects (font (size 1.016 1.016))))
  56. (number "1" (effects (font (size 1.016 1.016))))
  57. )
  58. (pin output inverted (at 6.35 0 180) (length 3.81)
  59. (name "~" (effects (font (size 1.016 1.016))))
  60. (number "6" (effects (font (size 1.016 1.016))))
  61. )
  62. )
  63. (symbol "74LVC2G04_2_1"
  64. (pin input line (at -7.62 0 0) (length 3.81)
  65. (name "~" (effects (font (size 1.016 1.016))))
  66. (number "3" (effects (font (size 1.016 1.016))))
  67. )
  68. (pin output inverted (at 6.35 0 180) (length 3.81)
  69. (name "~" (effects (font (size 1.016 1.016))))
  70. (number "4" (effects (font (size 1.016 1.016))))
  71. )
  72. )
  73. )
  74. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  75. (property "Reference" "J" (at 0 5.08 0)
  76. (effects (font (size 1.27 1.27)))
  77. )
  78. (property "Value" "Conn_01x03_Male" (at 0 -5.08 0)
  79. (effects (font (size 1.27 1.27)))
  80. )
  81. (property "Footprint" "" (at 0 0 0)
  82. (effects (font (size 1.27 1.27)) hide)
  83. )
  84. (property "Datasheet" "~" (at 0 0 0)
  85. (effects (font (size 1.27 1.27)) hide)
  86. )
  87. (property "ki_keywords" "connector" (at 0 0 0)
  88. (effects (font (size 1.27 1.27)) hide)
  89. )
  90. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  91. (effects (font (size 1.27 1.27)) hide)
  92. )
  93. (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
  94. (effects (font (size 1.27 1.27)) hide)
  95. )
  96. (symbol "Conn_01x03_Male_1_1"
  97. (polyline
  98. (pts
  99. (xy 1.27 -2.54)
  100. (xy 0.8636 -2.54)
  101. )
  102. (stroke (width 0.1524) (type default))
  103. (fill (type none))
  104. )
  105. (polyline
  106. (pts
  107. (xy 1.27 0)
  108. (xy 0.8636 0)
  109. )
  110. (stroke (width 0.1524) (type default))
  111. (fill (type none))
  112. )
  113. (polyline
  114. (pts
  115. (xy 1.27 2.54)
  116. (xy 0.8636 2.54)
  117. )
  118. (stroke (width 0.1524) (type default))
  119. (fill (type none))
  120. )
  121. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  122. (stroke (width 0.1524) (type default))
  123. (fill (type outline))
  124. )
  125. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  126. (stroke (width 0.1524) (type default))
  127. (fill (type outline))
  128. )
  129. (rectangle (start 0.8636 2.667) (end 0 2.413)
  130. (stroke (width 0.1524) (type default))
  131. (fill (type outline))
  132. )
  133. (pin passive line (at 5.08 2.54 180) (length 3.81)
  134. (name "Pin_1" (effects (font (size 1.27 1.27))))
  135. (number "1" (effects (font (size 1.27 1.27))))
  136. )
  137. (pin passive line (at 5.08 0 180) (length 3.81)
  138. (name "Pin_2" (effects (font (size 1.27 1.27))))
  139. (number "2" (effects (font (size 1.27 1.27))))
  140. )
  141. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  142. (name "Pin_3" (effects (font (size 1.27 1.27))))
  143. (number "3" (effects (font (size 1.27 1.27))))
  144. )
  145. )
  146. )
  147. (symbol "Connector:USB_C_Receptacle" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  148. (property "Reference" "J" (at -10.16 29.21 0)
  149. (effects (font (size 1.27 1.27)) (justify left))
  150. )
  151. (property "Value" "USB_C_Receptacle" (at 10.16 29.21 0)
  152. (effects (font (size 1.27 1.27)) (justify right))
  153. )
  154. (property "Footprint" "" (at 3.81 0 0)
  155. (effects (font (size 1.27 1.27)) hide)
  156. )
  157. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at 3.81 0 0)
  158. (effects (font (size 1.27 1.27)) hide)
  159. )
  160. (property "ki_keywords" "usb universal serial bus type-C full-featured" (at 0 0 0)
  161. (effects (font (size 1.27 1.27)) hide)
  162. )
  163. (property "ki_description" "USB Full-Featured Type-C Receptacle connector" (at 0 0 0)
  164. (effects (font (size 1.27 1.27)) hide)
  165. )
  166. (property "ki_fp_filters" "USB*C*Receptacle*" (at 0 0 0)
  167. (effects (font (size 1.27 1.27)) hide)
  168. )
  169. (symbol "USB_C_Receptacle_0_0"
  170. (rectangle (start -0.254 -35.56) (end 0.254 -34.544)
  171. (stroke (width 0) (type default))
  172. (fill (type none))
  173. )
  174. (rectangle (start 10.16 -32.766) (end 9.144 -33.274)
  175. (stroke (width 0) (type default))
  176. (fill (type none))
  177. )
  178. (rectangle (start 10.16 -30.226) (end 9.144 -30.734)
  179. (stroke (width 0) (type default))
  180. (fill (type none))
  181. )
  182. (rectangle (start 10.16 -25.146) (end 9.144 -25.654)
  183. (stroke (width 0) (type default))
  184. (fill (type none))
  185. )
  186. (rectangle (start 10.16 -22.606) (end 9.144 -23.114)
  187. (stroke (width 0) (type default))
  188. (fill (type none))
  189. )
  190. (rectangle (start 10.16 -17.526) (end 9.144 -18.034)
  191. (stroke (width 0) (type default))
  192. (fill (type none))
  193. )
  194. (rectangle (start 10.16 -14.986) (end 9.144 -15.494)
  195. (stroke (width 0) (type default))
  196. (fill (type none))
  197. )
  198. (rectangle (start 10.16 -9.906) (end 9.144 -10.414)
  199. (stroke (width 0) (type default))
  200. (fill (type none))
  201. )
  202. (rectangle (start 10.16 -7.366) (end 9.144 -7.874)
  203. (stroke (width 0) (type default))
  204. (fill (type none))
  205. )
  206. (rectangle (start 10.16 -2.286) (end 9.144 -2.794)
  207. (stroke (width 0) (type default))
  208. (fill (type none))
  209. )
  210. (rectangle (start 10.16 0.254) (end 9.144 -0.254)
  211. (stroke (width 0) (type default))
  212. (fill (type none))
  213. )
  214. (rectangle (start 10.16 5.334) (end 9.144 4.826)
  215. (stroke (width 0) (type default))
  216. (fill (type none))
  217. )
  218. (rectangle (start 10.16 7.874) (end 9.144 7.366)
  219. (stroke (width 0) (type default))
  220. (fill (type none))
  221. )
  222. (rectangle (start 10.16 10.414) (end 9.144 9.906)
  223. (stroke (width 0) (type default))
  224. (fill (type none))
  225. )
  226. (rectangle (start 10.16 12.954) (end 9.144 12.446)
  227. (stroke (width 0) (type default))
  228. (fill (type none))
  229. )
  230. (rectangle (start 10.16 18.034) (end 9.144 17.526)
  231. (stroke (width 0) (type default))
  232. (fill (type none))
  233. )
  234. (rectangle (start 10.16 20.574) (end 9.144 20.066)
  235. (stroke (width 0) (type default))
  236. (fill (type none))
  237. )
  238. (rectangle (start 10.16 25.654) (end 9.144 25.146)
  239. (stroke (width 0) (type default))
  240. (fill (type none))
  241. )
  242. )
  243. (symbol "USB_C_Receptacle_0_1"
  244. (rectangle (start -10.16 27.94) (end 10.16 -35.56)
  245. (stroke (width 0.254) (type default))
  246. (fill (type background))
  247. )
  248. (arc (start -8.89 -3.81) (mid -6.985 -5.7067) (end -5.08 -3.81)
  249. (stroke (width 0.508) (type default))
  250. (fill (type none))
  251. )
  252. (arc (start -7.62 -3.81) (mid -6.985 -4.4423) (end -6.35 -3.81)
  253. (stroke (width 0.254) (type default))
  254. (fill (type none))
  255. )
  256. (arc (start -7.62 -3.81) (mid -6.985 -4.4423) (end -6.35 -3.81)
  257. (stroke (width 0.254) (type default))
  258. (fill (type outline))
  259. )
  260. (rectangle (start -7.62 -3.81) (end -6.35 3.81)
  261. (stroke (width 0.254) (type default))
  262. (fill (type outline))
  263. )
  264. (arc (start -6.35 3.81) (mid -6.985 4.4423) (end -7.62 3.81)
  265. (stroke (width 0.254) (type default))
  266. (fill (type none))
  267. )
  268. (arc (start -6.35 3.81) (mid -6.985 4.4423) (end -7.62 3.81)
  269. (stroke (width 0.254) (type default))
  270. (fill (type outline))
  271. )
  272. (arc (start -5.08 3.81) (mid -6.985 5.7067) (end -8.89 3.81)
  273. (stroke (width 0.508) (type default))
  274. (fill (type none))
  275. )
  276. (polyline
  277. (pts
  278. (xy -8.89 -3.81)
  279. (xy -8.89 3.81)
  280. )
  281. (stroke (width 0.508) (type default))
  282. (fill (type none))
  283. )
  284. (polyline
  285. (pts
  286. (xy -5.08 3.81)
  287. (xy -5.08 -3.81)
  288. )
  289. (stroke (width 0.508) (type default))
  290. (fill (type none))
  291. )
  292. )
  293. (symbol "USB_C_Receptacle_1_1"
  294. (circle (center -2.54 1.143) (radius 0.635)
  295. (stroke (width 0.254) (type default))
  296. (fill (type outline))
  297. )
  298. (circle (center 0 -5.842) (radius 1.27)
  299. (stroke (width 0) (type default))
  300. (fill (type outline))
  301. )
  302. (polyline
  303. (pts
  304. (xy 0 -5.842)
  305. (xy 0 4.318)
  306. )
  307. (stroke (width 0.508) (type default))
  308. (fill (type none))
  309. )
  310. (polyline
  311. (pts
  312. (xy 0 -3.302)
  313. (xy -2.54 -0.762)
  314. (xy -2.54 0.508)
  315. )
  316. (stroke (width 0.508) (type default))
  317. (fill (type none))
  318. )
  319. (polyline
  320. (pts
  321. (xy 0 -2.032)
  322. (xy 2.54 0.508)
  323. (xy 2.54 1.778)
  324. )
  325. (stroke (width 0.508) (type default))
  326. (fill (type none))
  327. )
  328. (polyline
  329. (pts
  330. (xy -1.27 4.318)
  331. (xy 0 6.858)
  332. (xy 1.27 4.318)
  333. (xy -1.27 4.318)
  334. )
  335. (stroke (width 0.254) (type default))
  336. (fill (type outline))
  337. )
  338. (rectangle (start 1.905 1.778) (end 3.175 3.048)
  339. (stroke (width 0.254) (type default))
  340. (fill (type outline))
  341. )
  342. (pin passive line (at 0 -40.64 90) (length 5.08)
  343. (name "GND" (effects (font (size 1.27 1.27))))
  344. (number "A1" (effects (font (size 1.27 1.27))))
  345. )
  346. (pin bidirectional line (at 15.24 -15.24 180) (length 5.08)
  347. (name "RX2-" (effects (font (size 1.27 1.27))))
  348. (number "A10" (effects (font (size 1.27 1.27))))
  349. )
  350. (pin bidirectional line (at 15.24 -17.78 180) (length 5.08)
  351. (name "RX2+" (effects (font (size 1.27 1.27))))
  352. (number "A11" (effects (font (size 1.27 1.27))))
  353. )
  354. (pin passive line (at 0 -40.64 90) (length 5.08) hide
  355. (name "GND" (effects (font (size 1.27 1.27))))
  356. (number "A12" (effects (font (size 1.27 1.27))))
  357. )
  358. (pin bidirectional line (at 15.24 -10.16 180) (length 5.08)
  359. (name "TX1+" (effects (font (size 1.27 1.27))))
  360. (number "A2" (effects (font (size 1.27 1.27))))
  361. )
  362. (pin bidirectional line (at 15.24 -7.62 180) (length 5.08)
  363. (name "TX1-" (effects (font (size 1.27 1.27))))
  364. (number "A3" (effects (font (size 1.27 1.27))))
  365. )
  366. (pin passive line (at 15.24 25.4 180) (length 5.08)
  367. (name "VBUS" (effects (font (size 1.27 1.27))))
  368. (number "A4" (effects (font (size 1.27 1.27))))
  369. )
  370. (pin bidirectional line (at 15.24 20.32 180) (length 5.08)
  371. (name "CC1" (effects (font (size 1.27 1.27))))
  372. (number "A5" (effects (font (size 1.27 1.27))))
  373. )
  374. (pin bidirectional line (at 15.24 7.62 180) (length 5.08)
  375. (name "D+" (effects (font (size 1.27 1.27))))
  376. (number "A6" (effects (font (size 1.27 1.27))))
  377. )
  378. (pin bidirectional line (at 15.24 12.7 180) (length 5.08)
  379. (name "D-" (effects (font (size 1.27 1.27))))
  380. (number "A7" (effects (font (size 1.27 1.27))))
  381. )
  382. (pin bidirectional line (at 15.24 -30.48 180) (length 5.08)
  383. (name "SBU1" (effects (font (size 1.27 1.27))))
  384. (number "A8" (effects (font (size 1.27 1.27))))
  385. )
  386. (pin passive line (at 15.24 25.4 180) (length 5.08) hide
  387. (name "VBUS" (effects (font (size 1.27 1.27))))
  388. (number "A9" (effects (font (size 1.27 1.27))))
  389. )
  390. (pin passive line (at 0 -40.64 90) (length 5.08) hide
  391. (name "GND" (effects (font (size 1.27 1.27))))
  392. (number "B1" (effects (font (size 1.27 1.27))))
  393. )
  394. (pin bidirectional line (at 15.24 0 180) (length 5.08)
  395. (name "RX1-" (effects (font (size 1.27 1.27))))
  396. (number "B10" (effects (font (size 1.27 1.27))))
  397. )
  398. (pin bidirectional line (at 15.24 -2.54 180) (length 5.08)
  399. (name "RX1+" (effects (font (size 1.27 1.27))))
  400. (number "B11" (effects (font (size 1.27 1.27))))
  401. )
  402. (pin passive line (at 0 -40.64 90) (length 5.08) hide
  403. (name "GND" (effects (font (size 1.27 1.27))))
  404. (number "B12" (effects (font (size 1.27 1.27))))
  405. )
  406. (pin bidirectional line (at 15.24 -25.4 180) (length 5.08)
  407. (name "TX2+" (effects (font (size 1.27 1.27))))
  408. (number "B2" (effects (font (size 1.27 1.27))))
  409. )
  410. (pin bidirectional line (at 15.24 -22.86 180) (length 5.08)
  411. (name "TX2-" (effects (font (size 1.27 1.27))))
  412. (number "B3" (effects (font (size 1.27 1.27))))
  413. )
  414. (pin passive line (at 15.24 25.4 180) (length 5.08) hide
  415. (name "VBUS" (effects (font (size 1.27 1.27))))
  416. (number "B4" (effects (font (size 1.27 1.27))))
  417. )
  418. (pin bidirectional line (at 15.24 17.78 180) (length 5.08)
  419. (name "CC2" (effects (font (size 1.27 1.27))))
  420. (number "B5" (effects (font (size 1.27 1.27))))
  421. )
  422. (pin bidirectional line (at 15.24 5.08 180) (length 5.08)
  423. (name "D+" (effects (font (size 1.27 1.27))))
  424. (number "B6" (effects (font (size 1.27 1.27))))
  425. )
  426. (pin bidirectional line (at 15.24 10.16 180) (length 5.08)
  427. (name "D-" (effects (font (size 1.27 1.27))))
  428. (number "B7" (effects (font (size 1.27 1.27))))
  429. )
  430. (pin bidirectional line (at 15.24 -33.02 180) (length 5.08)
  431. (name "SBU2" (effects (font (size 1.27 1.27))))
  432. (number "B8" (effects (font (size 1.27 1.27))))
  433. )
  434. (pin passive line (at 15.24 25.4 180) (length 5.08) hide
  435. (name "VBUS" (effects (font (size 1.27 1.27))))
  436. (number "B9" (effects (font (size 1.27 1.27))))
  437. )
  438. (pin passive line (at -7.62 -40.64 90) (length 5.08)
  439. (name "SHIELD" (effects (font (size 1.27 1.27))))
  440. (number "S1" (effects (font (size 1.27 1.27))))
  441. )
  442. )
  443. )
  444. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  445. (property "Reference" "C" (at 0.254 1.778 0)
  446. (effects (font (size 1.27 1.27)) (justify left))
  447. )
  448. (property "Value" "C_Small" (at 0.254 -2.032 0)
  449. (effects (font (size 1.27 1.27)) (justify left))
  450. )
  451. (property "Footprint" "" (at 0 0 0)
  452. (effects (font (size 1.27 1.27)) hide)
  453. )
  454. (property "Datasheet" "~" (at 0 0 0)
  455. (effects (font (size 1.27 1.27)) hide)
  456. )
  457. (property "ki_keywords" "capacitor cap" (at 0 0 0)
  458. (effects (font (size 1.27 1.27)) hide)
  459. )
  460. (property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
  461. (effects (font (size 1.27 1.27)) hide)
  462. )
  463. (property "ki_fp_filters" "C_*" (at 0 0 0)
  464. (effects (font (size 1.27 1.27)) hide)
  465. )
  466. (symbol "C_Small_0_1"
  467. (polyline
  468. (pts
  469. (xy -1.524 -0.508)
  470. (xy 1.524 -0.508)
  471. )
  472. (stroke (width 0.3302) (type default))
  473. (fill (type none))
  474. )
  475. (polyline
  476. (pts
  477. (xy -1.524 0.508)
  478. (xy 1.524 0.508)
  479. )
  480. (stroke (width 0.3048) (type default))
  481. (fill (type none))
  482. )
  483. )
  484. (symbol "C_Small_1_1"
  485. (pin passive line (at 0 2.54 270) (length 2.032)
  486. (name "~" (effects (font (size 1.27 1.27))))
  487. (number "1" (effects (font (size 1.27 1.27))))
  488. )
  489. (pin passive line (at 0 -2.54 90) (length 2.032)
  490. (name "~" (effects (font (size 1.27 1.27))))
  491. (number "2" (effects (font (size 1.27 1.27))))
  492. )
  493. )
  494. )
  495. (symbol "Device:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  496. (property "Reference" "Y" (at 3.175 5.08 0)
  497. (effects (font (size 1.27 1.27)) (justify left))
  498. )
  499. (property "Value" "Crystal_GND24" (at 3.175 3.175 0)
  500. (effects (font (size 1.27 1.27)) (justify left))
  501. )
  502. (property "Footprint" "" (at 0 0 0)
  503. (effects (font (size 1.27 1.27)) hide)
  504. )
  505. (property "Datasheet" "~" (at 0 0 0)
  506. (effects (font (size 1.27 1.27)) hide)
  507. )
  508. (property "ki_keywords" "quartz ceramic resonator oscillator" (at 0 0 0)
  509. (effects (font (size 1.27 1.27)) hide)
  510. )
  511. (property "ki_description" "Four pin crystal, GND on pins 2 and 4" (at 0 0 0)
  512. (effects (font (size 1.27 1.27)) hide)
  513. )
  514. (property "ki_fp_filters" "Crystal*" (at 0 0 0)
  515. (effects (font (size 1.27 1.27)) hide)
  516. )
  517. (symbol "Crystal_GND24_0_1"
  518. (rectangle (start -1.143 2.54) (end 1.143 -2.54)
  519. (stroke (width 0.3048) (type default))
  520. (fill (type none))
  521. )
  522. (polyline
  523. (pts
  524. (xy -2.54 0)
  525. (xy -2.032 0)
  526. )
  527. (stroke (width 0) (type default))
  528. (fill (type none))
  529. )
  530. (polyline
  531. (pts
  532. (xy -2.032 -1.27)
  533. (xy -2.032 1.27)
  534. )
  535. (stroke (width 0.508) (type default))
  536. (fill (type none))
  537. )
  538. (polyline
  539. (pts
  540. (xy 0 -3.81)
  541. (xy 0 -3.556)
  542. )
  543. (stroke (width 0) (type default))
  544. (fill (type none))
  545. )
  546. (polyline
  547. (pts
  548. (xy 0 3.556)
  549. (xy 0 3.81)
  550. )
  551. (stroke (width 0) (type default))
  552. (fill (type none))
  553. )
  554. (polyline
  555. (pts
  556. (xy 2.032 -1.27)
  557. (xy 2.032 1.27)
  558. )
  559. (stroke (width 0.508) (type default))
  560. (fill (type none))
  561. )
  562. (polyline
  563. (pts
  564. (xy 2.032 0)
  565. (xy 2.54 0)
  566. )
  567. (stroke (width 0) (type default))
  568. (fill (type none))
  569. )
  570. (polyline
  571. (pts
  572. (xy -2.54 -2.286)
  573. (xy -2.54 -3.556)
  574. (xy 2.54 -3.556)
  575. (xy 2.54 -2.286)
  576. )
  577. (stroke (width 0) (type default))
  578. (fill (type none))
  579. )
  580. (polyline
  581. (pts
  582. (xy -2.54 2.286)
  583. (xy -2.54 3.556)
  584. (xy 2.54 3.556)
  585. (xy 2.54 2.286)
  586. )
  587. (stroke (width 0) (type default))
  588. (fill (type none))
  589. )
  590. )
  591. (symbol "Crystal_GND24_1_1"
  592. (pin passive line (at -3.81 0 0) (length 1.27)
  593. (name "1" (effects (font (size 1.27 1.27))))
  594. (number "1" (effects (font (size 1.27 1.27))))
  595. )
  596. (pin passive line (at 0 5.08 270) (length 1.27)
  597. (name "2" (effects (font (size 1.27 1.27))))
  598. (number "2" (effects (font (size 1.27 1.27))))
  599. )
  600. (pin passive line (at 3.81 0 180) (length 1.27)
  601. (name "3" (effects (font (size 1.27 1.27))))
  602. (number "3" (effects (font (size 1.27 1.27))))
  603. )
  604. (pin passive line (at 0 -5.08 90) (length 1.27)
  605. (name "4" (effects (font (size 1.27 1.27))))
  606. (number "4" (effects (font (size 1.27 1.27))))
  607. )
  608. )
  609. )
  610. (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  611. (property "Reference" "D" (at 0 2.54 0)
  612. (effects (font (size 1.27 1.27)))
  613. )
  614. (property "Value" "D_Schottky" (at 0 -2.54 0)
  615. (effects (font (size 1.27 1.27)))
  616. )
  617. (property "Footprint" "" (at 0 0 0)
  618. (effects (font (size 1.27 1.27)) hide)
  619. )
  620. (property "Datasheet" "~" (at 0 0 0)
  621. (effects (font (size 1.27 1.27)) hide)
  622. )
  623. (property "ki_keywords" "diode Schottky" (at 0 0 0)
  624. (effects (font (size 1.27 1.27)) hide)
  625. )
  626. (property "ki_description" "Schottky diode" (at 0 0 0)
  627. (effects (font (size 1.27 1.27)) hide)
  628. )
  629. (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
  630. (effects (font (size 1.27 1.27)) hide)
  631. )
  632. (symbol "D_Schottky_0_1"
  633. (polyline
  634. (pts
  635. (xy 1.27 0)
  636. (xy -1.27 0)
  637. )
  638. (stroke (width 0) (type default))
  639. (fill (type none))
  640. )
  641. (polyline
  642. (pts
  643. (xy 1.27 1.27)
  644. (xy 1.27 -1.27)
  645. (xy -1.27 0)
  646. (xy 1.27 1.27)
  647. )
  648. (stroke (width 0.254) (type default))
  649. (fill (type none))
  650. )
  651. (polyline
  652. (pts
  653. (xy -1.905 0.635)
  654. (xy -1.905 1.27)
  655. (xy -1.27 1.27)
  656. (xy -1.27 -1.27)
  657. (xy -0.635 -1.27)
  658. (xy -0.635 -0.635)
  659. )
  660. (stroke (width 0.254) (type default))
  661. (fill (type none))
  662. )
  663. )
  664. (symbol "D_Schottky_1_1"
  665. (pin passive line (at -3.81 0 0) (length 2.54)
  666. (name "K" (effects (font (size 1.27 1.27))))
  667. (number "1" (effects (font (size 1.27 1.27))))
  668. )
  669. (pin passive line (at 3.81 0 180) (length 2.54)
  670. (name "A" (effects (font (size 1.27 1.27))))
  671. (number "2" (effects (font (size 1.27 1.27))))
  672. )
  673. )
  674. )
  675. (symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  676. (property "Reference" "L" (at -1.27 0 90)
  677. (effects (font (size 1.27 1.27)))
  678. )
  679. (property "Value" "L" (at 1.905 0 90)
  680. (effects (font (size 1.27 1.27)))
  681. )
  682. (property "Footprint" "" (at 0 0 0)
  683. (effects (font (size 1.27 1.27)) hide)
  684. )
  685. (property "Datasheet" "~" (at 0 0 0)
  686. (effects (font (size 1.27 1.27)) hide)
  687. )
  688. (property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
  689. (effects (font (size 1.27 1.27)) hide)
  690. )
  691. (property "ki_description" "Inductor" (at 0 0 0)
  692. (effects (font (size 1.27 1.27)) hide)
  693. )
  694. (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
  695. (effects (font (size 1.27 1.27)) hide)
  696. )
  697. (symbol "L_0_1"
  698. (arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
  699. (stroke (width 0) (type default))
  700. (fill (type none))
  701. )
  702. (arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
  703. (stroke (width 0) (type default))
  704. (fill (type none))
  705. )
  706. (arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
  707. (stroke (width 0) (type default))
  708. (fill (type none))
  709. )
  710. (arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
  711. (stroke (width 0) (type default))
  712. (fill (type none))
  713. )
  714. )
  715. (symbol "L_1_1"
  716. (pin passive line (at 0 3.81 270) (length 1.27)
  717. (name "1" (effects (font (size 1.27 1.27))))
  718. (number "1" (effects (font (size 1.27 1.27))))
  719. )
  720. (pin passive line (at 0 -3.81 90) (length 1.27)
  721. (name "2" (effects (font (size 1.27 1.27))))
  722. (number "2" (effects (font (size 1.27 1.27))))
  723. )
  724. )
  725. )
  726. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  727. (property "Reference" "R" (at 0.762 0.508 0)
  728. (effects (font (size 1.27 1.27)) (justify left))
  729. )
  730. (property "Value" "R_Small" (at 0.762 -1.016 0)
  731. (effects (font (size 1.27 1.27)) (justify left))
  732. )
  733. (property "Footprint" "" (at 0 0 0)
  734. (effects (font (size 1.27 1.27)) hide)
  735. )
  736. (property "Datasheet" "~" (at 0 0 0)
  737. (effects (font (size 1.27 1.27)) hide)
  738. )
  739. (property "ki_keywords" "R resistor" (at 0 0 0)
  740. (effects (font (size 1.27 1.27)) hide)
  741. )
  742. (property "ki_description" "Resistor, small symbol" (at 0 0 0)
  743. (effects (font (size 1.27 1.27)) hide)
  744. )
  745. (property "ki_fp_filters" "R_*" (at 0 0 0)
  746. (effects (font (size 1.27 1.27)) hide)
  747. )
  748. (symbol "R_Small_0_1"
  749. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  750. (stroke (width 0.2032) (type default))
  751. (fill (type none))
  752. )
  753. )
  754. (symbol "R_Small_1_1"
  755. (pin passive line (at 0 2.54 270) (length 0.762)
  756. (name "~" (effects (font (size 1.27 1.27))))
  757. (number "1" (effects (font (size 1.27 1.27))))
  758. )
  759. (pin passive line (at 0 -2.54 90) (length 0.762)
  760. (name "~" (effects (font (size 1.27 1.27))))
  761. (number "2" (effects (font (size 1.27 1.27))))
  762. )
  763. )
  764. )
  765. (symbol "Greaseweazle:FT601Q-B-T" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  766. (property "Reference" "U" (at -15.24 60.9854 0)
  767. (effects (font (size 1.27 1.27)) (justify left bottom))
  768. )
  769. (property "Value" "FT601Q-B-T" (at -15.2654 -61.0362 0)
  770. (effects (font (size 1.27 1.27)) (justify left bottom))
  771. )
  772. (property "Footprint" "QFN40P900X900X100-77N" (at 0 0 0)
  773. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  774. )
  775. (property "Datasheet" "" (at 0 0 0)
  776. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  777. )
  778. (property "STANDARD" "IPC7351B" (at 0 0 0)
  779. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  780. )
  781. (property "SNAPEDA_PACKAGE_ID" "11921" (at 0 0 0)
  782. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  783. )
  784. (property "MANUFACTURER" "FTDI Chip" (at 0 0 0)
  785. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  786. )
  787. (property "PARTREV" "1.05" (at 0 0 0)
  788. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  789. )
  790. (property "ki_locked" "" (at 0 0 0)
  791. (effects (font (size 1.27 1.27)))
  792. )
  793. (symbol "FT601Q-B-T_0_0"
  794. (rectangle (start -15.24 -58.42) (end 15.24 60.96)
  795. (stroke (width 0.254) (type default))
  796. (fill (type background))
  797. )
  798. (pin power_in line (at 20.32 -53.34 180) (length 5.08)
  799. (name "GND" (effects (font (size 1.016 1.016))))
  800. (number "1" (effects (font (size 1.016 1.016))))
  801. )
  802. (pin input line (at -20.32 35.56 0) (length 5.08)
  803. (name "SIWU_N" (effects (font (size 1.016 1.016))))
  804. (number "10" (effects (font (size 1.016 1.016))))
  805. )
  806. (pin input line (at -20.32 30.48 0) (length 5.08)
  807. (name "WR_N" (effects (font (size 1.016 1.016))))
  808. (number "11" (effects (font (size 1.016 1.016))))
  809. )
  810. (pin input line (at -20.32 27.94 0) (length 5.08)
  811. (name "RD_N" (effects (font (size 1.016 1.016))))
  812. (number "12" (effects (font (size 1.016 1.016))))
  813. )
  814. (pin input line (at -20.32 43.18 0) (length 5.08)
  815. (name "OE_N" (effects (font (size 1.016 1.016))))
  816. (number "13" (effects (font (size 1.016 1.016))))
  817. )
  818. (pin power_in line (at 20.32 55.88 180) (length 5.08)
  819. (name "VCCIO" (effects (font (size 1.016 1.016))))
  820. (number "14" (effects (font (size 1.016 1.016))))
  821. )
  822. (pin input line (at -20.32 40.64 0) (length 5.08)
  823. (name "RESET_N" (effects (font (size 1.016 1.016))))
  824. (number "15" (effects (font (size 1.016 1.016))))
  825. )
  826. (pin bidirectional line (at -20.32 -40.64 0) (length 5.08)
  827. (name "WAKEUP_N" (effects (font (size 1.016 1.016))))
  828. (number "16" (effects (font (size 1.016 1.016))))
  829. )
  830. (pin bidirectional line (at -20.32 -33.02 0) (length 5.08)
  831. (name "GPIO0" (effects (font (size 1.016 1.016))))
  832. (number "17" (effects (font (size 1.016 1.016))))
  833. )
  834. (pin bidirectional line (at -20.32 -35.56 0) (length 5.08)
  835. (name "GPIO1" (effects (font (size 1.016 1.016))))
  836. (number "18" (effects (font (size 1.016 1.016))))
  837. )
  838. (pin power_in line (at 20.32 50.8 180) (length 5.08)
  839. (name "AVDD" (effects (font (size 1.016 1.016))))
  840. (number "2" (effects (font (size 1.016 1.016))))
  841. )
  842. (pin power_in line (at 20.32 53.34 180) (length 5.08)
  843. (name "VCC33" (effects (font (size 1.016 1.016))))
  844. (number "20" (effects (font (size 1.016 1.016))))
  845. )
  846. (pin input line (at -20.32 -25.4 0) (length 5.08)
  847. (name "XI" (effects (font (size 1.016 1.016))))
  848. (number "21" (effects (font (size 1.016 1.016))))
  849. )
  850. (pin output line (at -20.32 -27.94 0) (length 5.08)
  851. (name "XO" (effects (font (size 1.016 1.016))))
  852. (number "22" (effects (font (size 1.016 1.016))))
  853. )
  854. (pin bidirectional line (at -20.32 17.78 0) (length 5.08)
  855. (name "DP" (effects (font (size 1.016 1.016))))
  856. (number "23" (effects (font (size 1.016 1.016))))
  857. )
  858. (pin power_in line (at 20.32 53.34 180) (length 5.08)
  859. (name "VCC33" (effects (font (size 1.016 1.016))))
  860. (number "24" (effects (font (size 1.016 1.016))))
  861. )
  862. (pin bidirectional line (at -20.32 15.24 0) (length 5.08)
  863. (name "DM" (effects (font (size 1.016 1.016))))
  864. (number "25" (effects (font (size 1.016 1.016))))
  865. )
  866. (pin power_in line (at 20.32 -53.34 180) (length 5.08)
  867. (name "GND" (effects (font (size 1.016 1.016))))
  868. (number "26" (effects (font (size 1.016 1.016))))
  869. )
  870. (pin input line (at -20.32 10.16 0) (length 5.08)
  871. (name "RREF" (effects (font (size 1.016 1.016))))
  872. (number "27" (effects (font (size 1.016 1.016))))
  873. )
  874. (pin power_in line (at 20.32 48.26 180) (length 5.08)
  875. (name "VDDA" (effects (font (size 1.016 1.016))))
  876. (number "28" (effects (font (size 1.016 1.016))))
  877. )
  878. (pin power_in line (at 20.32 -53.34 180) (length 5.08)
  879. (name "GND" (effects (font (size 1.016 1.016))))
  880. (number "29" (effects (font (size 1.016 1.016))))
  881. )
  882. (pin power_in line (at 20.32 58.42 180) (length 5.08)
  883. (name "VD10" (effects (font (size 1.016 1.016))))
  884. (number "3" (effects (font (size 1.016 1.016))))
  885. )
  886. (pin power_in line (at 20.32 58.42 180) (length 5.08)
  887. (name "VD10" (effects (font (size 1.016 1.016))))
  888. (number "30" (effects (font (size 1.016 1.016))))
  889. )
  890. (pin output line (at -20.32 5.08 0) (length 5.08)
  891. (name "T0DN" (effects (font (size 1.016 1.016))))
  892. (number "31" (effects (font (size 1.016 1.016))))
  893. )
  894. (pin output line (at -20.32 2.54 0) (length 5.08)
  895. (name "T0DP" (effects (font (size 1.016 1.016))))
  896. (number "32" (effects (font (size 1.016 1.016))))
  897. )
  898. (pin power_in line (at 20.32 58.42 180) (length 5.08)
  899. (name "VD10" (effects (font (size 1.016 1.016))))
  900. (number "33" (effects (font (size 1.016 1.016))))
  901. )
  902. (pin input line (at -20.32 0 0) (length 5.08)
  903. (name "RIDN" (effects (font (size 1.016 1.016))))
  904. (number "34" (effects (font (size 1.016 1.016))))
  905. )
  906. (pin input line (at -20.32 -2.54 0) (length 5.08)
  907. (name "RIDP" (effects (font (size 1.016 1.016))))
  908. (number "35" (effects (font (size 1.016 1.016))))
  909. )
  910. (pin power_in line (at 20.32 -53.34 180) (length 5.08)
  911. (name "GND" (effects (font (size 1.016 1.016))))
  912. (number "36" (effects (font (size 1.016 1.016))))
  913. )
  914. (pin input line (at -20.32 22.86 0) (length 5.08)
  915. (name "VBUS" (effects (font (size 1.016 1.016))))
  916. (number "37" (effects (font (size 1.016 1.016))))
  917. )
  918. (pin power_in line (at 20.32 53.34 180) (length 5.08)
  919. (name "VCC33" (effects (font (size 1.016 1.016))))
  920. (number "38" (effects (font (size 1.016 1.016))))
  921. )
  922. (pin output line (at -20.32 -20.32 0) (length 5.08)
  923. (name "DV10" (effects (font (size 1.016 1.016))))
  924. (number "39" (effects (font (size 1.016 1.016))))
  925. )
  926. (pin bidirectional line (at 20.32 -40.64 180) (length 5.08)
  927. (name "BE_0" (effects (font (size 1.016 1.016))))
  928. (number "4" (effects (font (size 1.016 1.016))))
  929. )
  930. (pin bidirectional line (at 20.32 43.18 180) (length 5.08)
  931. (name "DATA_0" (effects (font (size 1.016 1.016))))
  932. (number "40" (effects (font (size 1.016 1.016))))
  933. )
  934. (pin bidirectional line (at 20.32 40.64 180) (length 5.08)
  935. (name "DATA_1" (effects (font (size 1.016 1.016))))
  936. (number "41" (effects (font (size 1.016 1.016))))
  937. )
  938. (pin bidirectional line (at 20.32 38.1 180) (length 5.08)
  939. (name "DATA_2" (effects (font (size 1.016 1.016))))
  940. (number "42" (effects (font (size 1.016 1.016))))
  941. )
  942. (pin bidirectional line (at 20.32 35.56 180) (length 5.08)
  943. (name "DATA_3" (effects (font (size 1.016 1.016))))
  944. (number "43" (effects (font (size 1.016 1.016))))
  945. )
  946. (pin bidirectional line (at 20.32 33.02 180) (length 5.08)
  947. (name "DATA_4" (effects (font (size 1.016 1.016))))
  948. (number "44" (effects (font (size 1.016 1.016))))
  949. )
  950. (pin bidirectional line (at 20.32 30.48 180) (length 5.08)
  951. (name "DATA_5" (effects (font (size 1.016 1.016))))
  952. (number "45" (effects (font (size 1.016 1.016))))
  953. )
  954. (pin bidirectional line (at 20.32 27.94 180) (length 5.08)
  955. (name "DATA_6" (effects (font (size 1.016 1.016))))
  956. (number "46" (effects (font (size 1.016 1.016))))
  957. )
  958. (pin bidirectional line (at 20.32 25.4 180) (length 5.08)
  959. (name "DATA_7" (effects (font (size 1.016 1.016))))
  960. (number "47" (effects (font (size 1.016 1.016))))
  961. )
  962. (pin power_in line (at 20.32 58.42 180) (length 5.08)
  963. (name "VD10" (effects (font (size 1.016 1.016))))
  964. (number "48" (effects (font (size 1.016 1.016))))
  965. )
  966. (pin power_in line (at 20.32 55.88 180) (length 5.08)
  967. (name "VCCIO" (effects (font (size 1.016 1.016))))
  968. (number "49" (effects (font (size 1.016 1.016))))
  969. )
  970. (pin bidirectional line (at 20.32 -43.18 180) (length 5.08)
  971. (name "BE_1" (effects (font (size 1.016 1.016))))
  972. (number "5" (effects (font (size 1.016 1.016))))
  973. )
  974. (pin bidirectional line (at 20.32 22.86 180) (length 5.08)
  975. (name "DATA_8" (effects (font (size 1.016 1.016))))
  976. (number "50" (effects (font (size 1.016 1.016))))
  977. )
  978. (pin bidirectional line (at 20.32 20.32 180) (length 5.08)
  979. (name "DATA_9" (effects (font (size 1.016 1.016))))
  980. (number "51" (effects (font (size 1.016 1.016))))
  981. )
  982. (pin bidirectional line (at 20.32 17.78 180) (length 5.08)
  983. (name "DATA_10" (effects (font (size 1.016 1.016))))
  984. (number "52" (effects (font (size 1.016 1.016))))
  985. )
  986. (pin bidirectional line (at 20.32 15.24 180) (length 5.08)
  987. (name "DATA_11" (effects (font (size 1.016 1.016))))
  988. (number "53" (effects (font (size 1.016 1.016))))
  989. )
  990. (pin bidirectional line (at 20.32 12.7 180) (length 5.08)
  991. (name "DATA_12" (effects (font (size 1.016 1.016))))
  992. (number "54" (effects (font (size 1.016 1.016))))
  993. )
  994. (pin bidirectional line (at 20.32 10.16 180) (length 5.08)
  995. (name "DATA_13" (effects (font (size 1.016 1.016))))
  996. (number "55" (effects (font (size 1.016 1.016))))
  997. )
  998. (pin bidirectional line (at 20.32 7.62 180) (length 5.08)
  999. (name "DATA_14" (effects (font (size 1.016 1.016))))
  1000. (number "56" (effects (font (size 1.016 1.016))))
  1001. )
  1002. (pin bidirectional line (at 20.32 5.08 180) (length 5.08)
  1003. (name "DATA_15" (effects (font (size 1.016 1.016))))
  1004. (number "57" (effects (font (size 1.016 1.016))))
  1005. )
  1006. (pin output line (at -20.32 -7.62 0) (length 5.08)
  1007. (name "CLK" (effects (font (size 1.016 1.016))))
  1008. (number "58" (effects (font (size 1.016 1.016))))
  1009. )
  1010. (pin power_in line (at 20.32 55.88 180) (length 5.08)
  1011. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1012. (number "59" (effects (font (size 1.016 1.016))))
  1013. )
  1014. (pin bidirectional line (at 20.32 -45.72 180) (length 5.08)
  1015. (name "BE_2" (effects (font (size 1.016 1.016))))
  1016. (number "6" (effects (font (size 1.016 1.016))))
  1017. )
  1018. (pin bidirectional line (at 20.32 2.54 180) (length 5.08)
  1019. (name "DATA_16" (effects (font (size 1.016 1.016))))
  1020. (number "60" (effects (font (size 1.016 1.016))))
  1021. )
  1022. (pin bidirectional line (at 20.32 0 180) (length 5.08)
  1023. (name "DATA_17" (effects (font (size 1.016 1.016))))
  1024. (number "61" (effects (font (size 1.016 1.016))))
  1025. )
  1026. (pin bidirectional line (at 20.32 -2.54 180) (length 5.08)
  1027. (name "DATA_18" (effects (font (size 1.016 1.016))))
  1028. (number "62" (effects (font (size 1.016 1.016))))
  1029. )
  1030. (pin bidirectional line (at 20.32 -5.08 180) (length 5.08)
  1031. (name "DATA_19" (effects (font (size 1.016 1.016))))
  1032. (number "63" (effects (font (size 1.016 1.016))))
  1033. )
  1034. (pin bidirectional line (at 20.32 -7.62 180) (length 5.08)
  1035. (name "DATA_20" (effects (font (size 1.016 1.016))))
  1036. (number "64" (effects (font (size 1.016 1.016))))
  1037. )
  1038. (pin bidirectional line (at 20.32 -10.16 180) (length 5.08)
  1039. (name "DATA_21" (effects (font (size 1.016 1.016))))
  1040. (number "65" (effects (font (size 1.016 1.016))))
  1041. )
  1042. (pin bidirectional line (at 20.32 -12.7 180) (length 5.08)
  1043. (name "DATA_22" (effects (font (size 1.016 1.016))))
  1044. (number "66" (effects (font (size 1.016 1.016))))
  1045. )
  1046. (pin bidirectional line (at 20.32 -15.24 180) (length 5.08)
  1047. (name "DATA_23" (effects (font (size 1.016 1.016))))
  1048. (number "67" (effects (font (size 1.016 1.016))))
  1049. )
  1050. (pin power_in line (at 20.32 55.88 180) (length 5.08)
  1051. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1052. (number "68" (effects (font (size 1.016 1.016))))
  1053. )
  1054. (pin bidirectional line (at 20.32 -17.78 180) (length 5.08)
  1055. (name "DATA_24" (effects (font (size 1.016 1.016))))
  1056. (number "69" (effects (font (size 1.016 1.016))))
  1057. )
  1058. (pin bidirectional line (at 20.32 -48.26 180) (length 5.08)
  1059. (name "BE_3" (effects (font (size 1.016 1.016))))
  1060. (number "7" (effects (font (size 1.016 1.016))))
  1061. )
  1062. (pin bidirectional line (at 20.32 -20.32 180) (length 5.08)
  1063. (name "DATA_25" (effects (font (size 1.016 1.016))))
  1064. (number "70" (effects (font (size 1.016 1.016))))
  1065. )
  1066. (pin bidirectional line (at 20.32 -22.86 180) (length 5.08)
  1067. (name "DATA_26" (effects (font (size 1.016 1.016))))
  1068. (number "71" (effects (font (size 1.016 1.016))))
  1069. )
  1070. (pin bidirectional line (at 20.32 -25.4 180) (length 5.08)
  1071. (name "DATA_27" (effects (font (size 1.016 1.016))))
  1072. (number "72" (effects (font (size 1.016 1.016))))
  1073. )
  1074. (pin bidirectional line (at 20.32 -27.94 180) (length 5.08)
  1075. (name "DATA_28" (effects (font (size 1.016 1.016))))
  1076. (number "73" (effects (font (size 1.016 1.016))))
  1077. )
  1078. (pin bidirectional line (at 20.32 -30.48 180) (length 5.08)
  1079. (name "DATA_29" (effects (font (size 1.016 1.016))))
  1080. (number "74" (effects (font (size 1.016 1.016))))
  1081. )
  1082. (pin bidirectional line (at 20.32 -33.02 180) (length 5.08)
  1083. (name "DATA_30" (effects (font (size 1.016 1.016))))
  1084. (number "75" (effects (font (size 1.016 1.016))))
  1085. )
  1086. (pin bidirectional line (at 20.32 -35.56 180) (length 5.08)
  1087. (name "DATA_31" (effects (font (size 1.016 1.016))))
  1088. (number "76" (effects (font (size 1.016 1.016))))
  1089. )
  1090. (pin power_in line (at 20.32 -55.88 180) (length 5.08)
  1091. (name "EXP" (effects (font (size 1.016 1.016))))
  1092. (number "77" (effects (font (size 1.016 1.016))))
  1093. )
  1094. (pin output line (at -20.32 -12.7 0) (length 5.08)
  1095. (name "TXE_N" (effects (font (size 1.016 1.016))))
  1096. (number "8" (effects (font (size 1.016 1.016))))
  1097. )
  1098. (pin output line (at -20.32 -15.24 0) (length 5.08)
  1099. (name "RXF_N" (effects (font (size 1.016 1.016))))
  1100. (number "9" (effects (font (size 1.016 1.016))))
  1101. )
  1102. )
  1103. )
  1104. (symbol "Switch:SW_SPST" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1105. (property "Reference" "SW" (at 0 3.175 0)
  1106. (effects (font (size 1.27 1.27)))
  1107. )
  1108. (property "Value" "SW_SPST" (at 0 -2.54 0)
  1109. (effects (font (size 1.27 1.27)))
  1110. )
  1111. (property "Footprint" "" (at 0 0 0)
  1112. (effects (font (size 1.27 1.27)) hide)
  1113. )
  1114. (property "Datasheet" "~" (at 0 0 0)
  1115. (effects (font (size 1.27 1.27)) hide)
  1116. )
  1117. (property "ki_keywords" "switch lever" (at 0 0 0)
  1118. (effects (font (size 1.27 1.27)) hide)
  1119. )
  1120. (property "ki_description" "Single Pole Single Throw (SPST) switch" (at 0 0 0)
  1121. (effects (font (size 1.27 1.27)) hide)
  1122. )
  1123. (symbol "SW_SPST_0_0"
  1124. (circle (center -2.032 0) (radius 0.508)
  1125. (stroke (width 0) (type default))
  1126. (fill (type none))
  1127. )
  1128. (polyline
  1129. (pts
  1130. (xy -1.524 0.254)
  1131. (xy 1.524 1.778)
  1132. )
  1133. (stroke (width 0) (type default))
  1134. (fill (type none))
  1135. )
  1136. (circle (center 2.032 0) (radius 0.508)
  1137. (stroke (width 0) (type default))
  1138. (fill (type none))
  1139. )
  1140. )
  1141. (symbol "SW_SPST_1_1"
  1142. (pin passive line (at -5.08 0 0) (length 2.54)
  1143. (name "A" (effects (font (size 1.27 1.27))))
  1144. (number "1" (effects (font (size 1.27 1.27))))
  1145. )
  1146. (pin passive line (at 5.08 0 180) (length 2.54)
  1147. (name "B" (effects (font (size 1.27 1.27))))
  1148. (number "2" (effects (font (size 1.27 1.27))))
  1149. )
  1150. )
  1151. )
  1152. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1153. (property "Reference" "#PWR" (at 0 -3.81 0)
  1154. (effects (font (size 1.27 1.27)) hide)
  1155. )
  1156. (property "Value" "+3V3" (at 0 3.556 0)
  1157. (effects (font (size 1.27 1.27)))
  1158. )
  1159. (property "Footprint" "" (at 0 0 0)
  1160. (effects (font (size 1.27 1.27)) hide)
  1161. )
  1162. (property "Datasheet" "" (at 0 0 0)
  1163. (effects (font (size 1.27 1.27)) hide)
  1164. )
  1165. (property "ki_keywords" "power-flag" (at 0 0 0)
  1166. (effects (font (size 1.27 1.27)) hide)
  1167. )
  1168. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
  1169. (effects (font (size 1.27 1.27)) hide)
  1170. )
  1171. (symbol "+3V3_0_1"
  1172. (polyline
  1173. (pts
  1174. (xy -0.762 1.27)
  1175. (xy 0 2.54)
  1176. )
  1177. (stroke (width 0) (type default))
  1178. (fill (type none))
  1179. )
  1180. (polyline
  1181. (pts
  1182. (xy 0 0)
  1183. (xy 0 2.54)
  1184. )
  1185. (stroke (width 0) (type default))
  1186. (fill (type none))
  1187. )
  1188. (polyline
  1189. (pts
  1190. (xy 0 2.54)
  1191. (xy 0.762 1.27)
  1192. )
  1193. (stroke (width 0) (type default))
  1194. (fill (type none))
  1195. )
  1196. )
  1197. (symbol "+3V3_1_1"
  1198. (pin power_in line (at 0 0 90) (length 0) hide
  1199. (name "+3V3" (effects (font (size 1.27 1.27))))
  1200. (number "1" (effects (font (size 1.27 1.27))))
  1201. )
  1202. )
  1203. )
  1204. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1205. (property "Reference" "#PWR" (at 0 -6.35 0)
  1206. (effects (font (size 1.27 1.27)) hide)
  1207. )
  1208. (property "Value" "GND" (at 0 -3.81 0)
  1209. (effects (font (size 1.27 1.27)))
  1210. )
  1211. (property "Footprint" "" (at 0 0 0)
  1212. (effects (font (size 1.27 1.27)) hide)
  1213. )
  1214. (property "Datasheet" "" (at 0 0 0)
  1215. (effects (font (size 1.27 1.27)) hide)
  1216. )
  1217. (property "ki_keywords" "power-flag" (at 0 0 0)
  1218. (effects (font (size 1.27 1.27)) hide)
  1219. )
  1220. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
  1221. (effects (font (size 1.27 1.27)) hide)
  1222. )
  1223. (symbol "GND_0_1"
  1224. (polyline
  1225. (pts
  1226. (xy 0 0)
  1227. (xy 0 -1.27)
  1228. (xy 1.27 -1.27)
  1229. (xy 0 -2.54)
  1230. (xy -1.27 -1.27)
  1231. (xy 0 -1.27)
  1232. )
  1233. (stroke (width 0) (type default))
  1234. (fill (type none))
  1235. )
  1236. )
  1237. (symbol "GND_1_1"
  1238. (pin power_in line (at 0 0 270) (length 0) hide
  1239. (name "GND" (effects (font (size 1.27 1.27))))
  1240. (number "1" (effects (font (size 1.27 1.27))))
  1241. )
  1242. )
  1243. )
  1244. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  1245. (property "Reference" "#FLG" (at 0 1.905 0)
  1246. (effects (font (size 1.27 1.27)) hide)
  1247. )
  1248. (property "Value" "PWR_FLAG" (at 0 3.81 0)
  1249. (effects (font (size 1.27 1.27)))
  1250. )
  1251. (property "Footprint" "" (at 0 0 0)
  1252. (effects (font (size 1.27 1.27)) hide)
  1253. )
  1254. (property "Datasheet" "~" (at 0 0 0)
  1255. (effects (font (size 1.27 1.27)) hide)
  1256. )
  1257. (property "ki_keywords" "power-flag" (at 0 0 0)
  1258. (effects (font (size 1.27 1.27)) hide)
  1259. )
  1260. (property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0)
  1261. (effects (font (size 1.27 1.27)) hide)
  1262. )
  1263. (symbol "PWR_FLAG_0_0"
  1264. (pin power_out line (at 0 0 90) (length 0)
  1265. (name "pwr" (effects (font (size 1.27 1.27))))
  1266. (number "1" (effects (font (size 1.27 1.27))))
  1267. )
  1268. )
  1269. (symbol "PWR_FLAG_0_1"
  1270. (polyline
  1271. (pts
  1272. (xy 0 0)
  1273. (xy 0 1.27)
  1274. (xy -1.016 1.905)
  1275. (xy 0 2.54)
  1276. (xy 1.016 1.905)
  1277. (xy 0 1.27)
  1278. )
  1279. (stroke (width 0) (type default))
  1280. (fill (type none))
  1281. )
  1282. )
  1283. )
  1284. )
  1285. (junction (at 130.81 30.48) (diameter 0) (color 0 0 0 0)
  1286. (uuid 052b4ae1-93f5-45eb-87ac-4c56161422af)
  1287. )
  1288. (junction (at 50.8 30.48) (diameter 0) (color 0 0 0 0)
  1289. (uuid 0a1f8969-5393-4efe-b458-1bcd2d7a4b07)
  1290. )
  1291. (junction (at 83.82 73.66) (diameter 0) (color 0 0 0 0)
  1292. (uuid 0b55d3c0-46c6-4797-b13d-d1267e2011fd)
  1293. )
  1294. (junction (at 153.67 43.18) (diameter 0) (color 0 0 0 0)
  1295. (uuid 0b5c11d1-6ccf-4378-b53a-26c27ca1b71d)
  1296. )
  1297. (junction (at 66.04 86.36) (diameter 0) (color 0 0 0 0)
  1298. (uuid 13e006e9-2abf-4969-a8ad-099016bdcf77)
  1299. )
  1300. (junction (at 54.61 44.45) (diameter 0) (color 0 0 0 0)
  1301. (uuid 151049aa-fdf9-46ad-8a50-bdadaaa40ff9)
  1302. )
  1303. (junction (at 40.64 30.48) (diameter 0) (color 0 0 0 0)
  1304. (uuid 1561ca2d-5b93-4615-8d3c-258ccb43ad58)
  1305. )
  1306. (junction (at 118.11 163.83) (diameter 0) (color 0 0 0 0)
  1307. (uuid 179f5b89-e95d-4394-a44a-333a15a41581)
  1308. )
  1309. (junction (at 201.93 40.64) (diameter 0) (color 0 0 0 0)
  1310. (uuid 1e068df5-59cf-4c3a-9c9c-a51390e80bb4)
  1311. )
  1312. (junction (at 121.92 158.75) (diameter 0) (color 0 0 0 0)
  1313. (uuid 2e3cfd3f-acae-409f-b966-a7cd5cae622f)
  1314. )
  1315. (junction (at 66.04 81.28) (diameter 0) (color 0 0 0 0)
  1316. (uuid 316a66f5-2b50-4133-8e07-9e7948bf8d69)
  1317. )
  1318. (junction (at 77.47 104.14) (diameter 0) (color 0 0 0 0)
  1319. (uuid 32923bdf-5b28-491e-8abc-a77917cfc40d)
  1320. )
  1321. (junction (at 129.54 121.92) (diameter 0) (color 0 0 0 0)
  1322. (uuid 3f4a91bf-cc01-42e3-b50f-8e4bd5dfbff6)
  1323. )
  1324. (junction (at 74.93 22.86) (diameter 0) (color 0 0 0 0)
  1325. (uuid 3fce75a8-0fd8-47a8-882a-94c674141749)
  1326. )
  1327. (junction (at 113.03 22.86) (diameter 0) (color 0 0 0 0)
  1328. (uuid 40b601b0-51ac-4eec-8dd9-aa827e8d1491)
  1329. )
  1330. (junction (at 83.82 22.86) (diameter 0) (color 0 0 0 0)
  1331. (uuid 49e67421-4d0e-47ea-af6f-0049fc0d5b11)
  1332. )
  1333. (junction (at 102.87 22.86) (diameter 0) (color 0 0 0 0)
  1334. (uuid 5308b8db-d9ba-4d54-b893-835a89e19fbc)
  1335. )
  1336. (junction (at 44.45 173.99) (diameter 0) (color 0 0 0 0)
  1337. (uuid 53839854-f108-426d-9352-22a295b30aa1)
  1338. )
  1339. (junction (at 102.87 30.48) (diameter 0) (color 0 0 0 0)
  1340. (uuid 5636cf35-9b6a-4c98-bcf2-e82ecf6aa3ec)
  1341. )
  1342. (junction (at 124.46 161.29) (diameter 0) (color 0 0 0 0)
  1343. (uuid 578f4a37-a00b-4e05-a20f-a81415679341)
  1344. )
  1345. (junction (at 45.72 30.48) (diameter 0) (color 0 0 0 0)
  1346. (uuid 57b44f34-3193-4e1d-97eb-244d9e0ebf96)
  1347. )
  1348. (junction (at 147.32 43.18) (diameter 0) (color 0 0 0 0)
  1349. (uuid 5ce4f6af-f813-41c4-9e8b-f180a5c3926e)
  1350. )
  1351. (junction (at 130.81 22.86) (diameter 0) (color 0 0 0 0)
  1352. (uuid 5fa96c59-8474-49c8-b700-e27c61265ae6)
  1353. )
  1354. (junction (at 88.9 30.48) (diameter 0) (color 0 0 0 0)
  1355. (uuid 6b408135-4f10-4702-a62b-9fe062829518)
  1356. )
  1357. (junction (at 35.56 22.86) (diameter 0) (color 0 0 0 0)
  1358. (uuid 6dea86d7-0fd0-4adf-9dcb-02dd8682fd04)
  1359. )
  1360. (junction (at 140.97 22.86) (diameter 0) (color 0 0 0 0)
  1361. (uuid 7157be28-5003-4bcc-8e8f-0ad14eb58f57)
  1362. )
  1363. (junction (at 115.57 148.59) (diameter 0) (color 0 0 0 0)
  1364. (uuid 7219f03f-2afe-4b43-be4c-16998692e5b6)
  1365. )
  1366. (junction (at 113.03 30.48) (diameter 0) (color 0 0 0 0)
  1367. (uuid 782d53a1-46f1-43c9-9a45-24bfe9fa4249)
  1368. )
  1369. (junction (at 124.46 151.13) (diameter 0) (color 0 0 0 0)
  1370. (uuid 7fa603a2-aed9-46fb-ae5c-98143b17cc81)
  1371. )
  1372. (junction (at 125.73 22.86) (diameter 0) (color 0 0 0 0)
  1373. (uuid 8422b388-e79f-4ee5-997d-e987732bebcb)
  1374. )
  1375. (junction (at 142.24 121.92) (diameter 0) (color 0 0 0 0)
  1376. (uuid 893003f4-9eb9-4d8b-b395-5c918b4aec6b)
  1377. )
  1378. (junction (at 49.53 52.07) (diameter 0) (color 0 0 0 0)
  1379. (uuid 90e2fa2f-52d0-43e4-9c7e-3bc37f080e34)
  1380. )
  1381. (junction (at 118.11 22.86) (diameter 0) (color 0 0 0 0)
  1382. (uuid 913fe846-8688-4c8e-ad74-3fd4cb652905)
  1383. )
  1384. (junction (at 74.93 101.6) (diameter 0) (color 0 0 0 0)
  1385. (uuid 92889b3d-c064-47fb-a5fe-b2bfc76ccbcd)
  1386. )
  1387. (junction (at 107.95 22.86) (diameter 0) (color 0 0 0 0)
  1388. (uuid 9be1ec72-3a24-43ab-98f5-0862b65c7f74)
  1389. )
  1390. (junction (at 57.15 30.48) (diameter 0) (color 0 0 0 0)
  1391. (uuid a3fea079-4e54-42f0-bb87-03f1bcbf3d92)
  1392. )
  1393. (junction (at 71.12 96.52) (diameter 0) (color 0 0 0 0)
  1394. (uuid a7baeb3f-f43a-43df-9f63-1c1ec1cda60b)
  1395. )
  1396. (junction (at 107.95 30.48) (diameter 0) (color 0 0 0 0)
  1397. (uuid aab9de51-9bc2-4f6a-8b61-a0b8b871bba4)
  1398. )
  1399. (junction (at 135.89 22.86) (diameter 0) (color 0 0 0 0)
  1400. (uuid bbcc533d-c061-4e1a-bf55-94ec6d14094d)
  1401. )
  1402. (junction (at 44.45 137.16) (diameter 0) (color 0 0 0 0)
  1403. (uuid be97c69b-c912-4384-a658-a5f17604006e)
  1404. )
  1405. (junction (at 49.53 44.45) (diameter 0) (color 0 0 0 0)
  1406. (uuid c54d4540-bb94-458d-b481-b214612e2bee)
  1407. )
  1408. (junction (at 40.64 22.86) (diameter 0) (color 0 0 0 0)
  1409. (uuid c9088174-1ad7-4865-a98f-3378414f7529)
  1410. )
  1411. (junction (at 57.15 22.86) (diameter 0) (color 0 0 0 0)
  1412. (uuid d1449cb5-28a8-4693-baeb-c40d0929d460)
  1413. )
  1414. (junction (at 83.82 30.48) (diameter 0) (color 0 0 0 0)
  1415. (uuid d9cee027-1a68-4ef1-83cc-49f59adda1a3)
  1416. )
  1417. (junction (at 50.8 22.86) (diameter 0) (color 0 0 0 0)
  1418. (uuid d9ff65dd-48f9-4f59-b2b5-9519ee04fb32)
  1419. )
  1420. (junction (at 57.15 44.45) (diameter 0) (color 0 0 0 0)
  1421. (uuid dfecb94c-a403-4e82-aa22-b37148e5fe60)
  1422. )
  1423. (junction (at 135.89 30.48) (diameter 0) (color 0 0 0 0)
  1424. (uuid e43114a4-ba52-4520-8c32-18cd64d35766)
  1425. )
  1426. (junction (at 68.58 93.98) (diameter 0) (color 0 0 0 0)
  1427. (uuid eba55999-a795-4a58-8105-b30bf7aae47a)
  1428. )
  1429. (junction (at 45.72 22.86) (diameter 0) (color 0 0 0 0)
  1430. (uuid ee7680fe-3e98-4a0f-b73e-035eeb25f68b)
  1431. )
  1432. (junction (at 125.73 30.48) (diameter 0) (color 0 0 0 0)
  1433. (uuid f10de094-4469-4dbe-858d-0abeae0b672b)
  1434. )
  1435. (junction (at 35.56 30.48) (diameter 0) (color 0 0 0 0)
  1436. (uuid f47a08cd-2bfe-43fe-bbcb-39fa5f8f9a3b)
  1437. )
  1438. (junction (at 88.9 22.86) (diameter 0) (color 0 0 0 0)
  1439. (uuid fabbb283-0f4e-4399-a583-cea10827c875)
  1440. )
  1441. (no_connect (at 198.12 96.52) (uuid 09eb0607-4fb0-438b-8e83-634e245afe84))
  1442. (no_connect (at 135.89 127) (uuid 1ad24d62-d545-4b84-986d-bb7e84888f2e))
  1443. (no_connect (at 198.12 129.54) (uuid 29b6cedf-5197-4a04-aec4-1c908dce535c))
  1444. (no_connect (at 198.12 119.38) (uuid 33de0f6c-0923-47f5-96ad-aac4f6705ea7))
  1445. (no_connect (at 198.12 106.68) (uuid 36d87fa2-09af-4f0c-a71d-93f2bbe67a3a))
  1446. (no_connect (at 198.12 99.06) (uuid 3da51f9a-7930-4409-a36d-0a40ae4548c8))
  1447. (no_connect (at 198.12 93.98) (uuid 4640c082-6245-496e-85d2-d2a51b1b0b71))
  1448. (no_connect (at 198.12 109.22) (uuid 53034895-b808-4a25-94a2-68aee13251d2))
  1449. (no_connect (at 198.12 149.86) (uuid 6eb9a23d-ef14-452f-a1d9-77ce41664d9f))
  1450. (no_connect (at 198.12 91.44) (uuid 6fdc755b-8c4e-4967-a158-23069fb9c124))
  1451. (no_connect (at 135.89 116.84) (uuid 701ab135-9c88-4e09-a3c5-af8a8ccd734f))
  1452. (no_connect (at 198.12 116.84) (uuid 7fb9637f-98b6-4948-a907-f4c84181ed34))
  1453. (no_connect (at 63.5 124.46) (uuid 89fce686-df46-40b9-b252-4ffe7255f2d8))
  1454. (no_connect (at 63.5 127) (uuid a7297121-96b8-448f-8458-c41202b24614))
  1455. (no_connect (at 198.12 111.76) (uuid b35c40f8-dc31-49f3-8e98-3c0bb64ea557))
  1456. (no_connect (at 198.12 101.6) (uuid b8ea52c8-a798-4b50-bce0-a99046a9d545))
  1457. (no_connect (at 198.12 104.14) (uuid d5868a47-dd45-4fad-a801-7833035c0a7e))
  1458. (no_connect (at 93.98 129.54) (uuid e127deb0-4ac9-4666-adf4-74790ab73962))
  1459. (no_connect (at 198.12 114.3) (uuid f9d86c53-f03e-40a2-aa7a-2f9db7e7bd7b))
  1460. (bus_entry (at 226.06 60.96) (size 2.54 2.54)
  1461. (stroke (width 0) (type default))
  1462. (uuid 1c994396-a92e-4694-9fab-9f4566c455e5)
  1463. )
  1464. (bus_entry (at 226.06 76.2) (size 2.54 2.54)
  1465. (stroke (width 0) (type default))
  1466. (uuid 210b9650-57ed-421c-98c6-10ab26f38fd1)
  1467. )
  1468. (bus_entry (at 226.06 71.12) (size 2.54 2.54)
  1469. (stroke (width 0) (type default))
  1470. (uuid 36603517-03a5-4122-8f76-88d7e3430d8b)
  1471. )
  1472. (bus_entry (at 226.06 66.04) (size 2.54 2.54)
  1473. (stroke (width 0) (type default))
  1474. (uuid 36816851-c74c-40c7-8a56-7df17eb978f3)
  1475. )
  1476. (bus_entry (at 226.06 68.58) (size 2.54 2.54)
  1477. (stroke (width 0) (type default))
  1478. (uuid 38845139-f485-47dc-822f-778ce9663191)
  1479. )
  1480. (bus_entry (at 226.06 78.74) (size 2.54 2.54)
  1481. (stroke (width 0) (type default))
  1482. (uuid 45da16a6-6b81-4d58-be5a-83c4f2e6a3eb)
  1483. )
  1484. (bus_entry (at 226.06 73.66) (size 2.54 2.54)
  1485. (stroke (width 0) (type default))
  1486. (uuid 46d4f54a-9dc8-40a5-97e3-a15b4bcc151d)
  1487. )
  1488. (bus_entry (at 226.06 55.88) (size 2.54 2.54)
  1489. (stroke (width 0) (type default))
  1490. (uuid 6c3db74f-22bd-4141-93ed-e609a77ebf6f)
  1491. )
  1492. (bus_entry (at 226.06 50.8) (size 2.54 2.54)
  1493. (stroke (width 0) (type default))
  1494. (uuid d3ab2813-23d8-4e92-83f1-722c1774c502)
  1495. )
  1496. (bus_entry (at 226.06 53.34) (size 2.54 2.54)
  1497. (stroke (width 0) (type default))
  1498. (uuid e430793e-7deb-41c0-a9a9-c7dd40b57bda)
  1499. )
  1500. (bus_entry (at 226.06 58.42) (size 2.54 2.54)
  1501. (stroke (width 0) (type default))
  1502. (uuid e62c918e-2ba5-4e14-91bf-451dab14bdf2)
  1503. )
  1504. (bus_entry (at 226.06 63.5) (size 2.54 2.54)
  1505. (stroke (width 0) (type default))
  1506. (uuid ef863ed8-e98f-4857-9990-1268a0e76a5a)
  1507. )
  1508. (bus (pts (xy 228.6 53.34) (xy 228.6 55.88))
  1509. (stroke (width 0) (type default))
  1510. (uuid 00050a5e-aced-4f19-92a1-146170a1c684)
  1511. )
  1512. (wire (pts (xy 102.87 21.59) (xy 102.87 22.86))
  1513. (stroke (width 0) (type default))
  1514. (uuid 024fea57-aca7-40e6-ba90-2af0188372f8)
  1515. )
  1516. (wire (pts (xy 210.82 73.66) (xy 226.06 73.66))
  1517. (stroke (width 0) (type default))
  1518. (uuid 061c6546-7a7e-4d39-a6ec-ab4563426b23)
  1519. )
  1520. (wire (pts (xy 198.12 78.74) (xy 205.74 78.74))
  1521. (stroke (width 0) (type default))
  1522. (uuid 063c6630-1b1b-423d-a718-bad1ef4a1569)
  1523. )
  1524. (wire (pts (xy 88.9 22.86) (xy 93.98 22.86))
  1525. (stroke (width 0) (type default))
  1526. (uuid 0762f890-310e-4b7b-b102-c66052577053)
  1527. )
  1528. (wire (pts (xy 198.12 83.82) (xy 213.36 83.82))
  1529. (stroke (width 0) (type default))
  1530. (uuid 08e34e08-069a-44f2-bb8d-8b27e698ab32)
  1531. )
  1532. (wire (pts (xy 62.23 30.48) (xy 62.23 29.21))
  1533. (stroke (width 0) (type default))
  1534. (uuid 09b561bc-9a6b-410a-82d2-90265c29fdf0)
  1535. )
  1536. (wire (pts (xy 151.13 127) (xy 151.13 151.13))
  1537. (stroke (width 0) (type default))
  1538. (uuid 0a1b2e9a-74c4-4462-bbf4-519c34d247bc)
  1539. )
  1540. (wire (pts (xy 55.88 173.99) (xy 58.42 173.99))
  1541. (stroke (width 0) (type default))
  1542. (uuid 0d951b9d-1ca9-4f22-a042-d0026ee92c3f)
  1543. )
  1544. (bus (pts (xy 228.6 50.8) (xy 228.6 53.34))
  1545. (stroke (width 0) (type default))
  1546. (uuid 0e3ccd74-0216-4d5c-87b8-e623042c9985)
  1547. )
  1548. (wire (pts (xy 40.64 30.48) (xy 40.64 29.21))
  1549. (stroke (width 0) (type default))
  1550. (uuid 0ff21d18-3404-406d-8053-857cb6030200)
  1551. )
  1552. (wire (pts (xy 44.45 162.56) (xy 44.45 165.1))
  1553. (stroke (width 0) (type default))
  1554. (uuid 0ffec143-82ff-4023-8dda-01312ce1da0a)
  1555. )
  1556. (wire (pts (xy 44.45 170.18) (xy 44.45 173.99))
  1557. (stroke (width 0) (type default))
  1558. (uuid 10a0bcfb-55f4-4c5b-85f5-5d77f0dc6b79)
  1559. )
  1560. (wire (pts (xy 88.9 22.86) (xy 88.9 24.13))
  1561. (stroke (width 0) (type default))
  1562. (uuid 1194cfc6-744f-4d96-af48-95d2a2b281fe)
  1563. )
  1564. (bus (pts (xy 228.6 71.12) (xy 228.6 73.66))
  1565. (stroke (width 0) (type default))
  1566. (uuid 121c554e-6ee4-4e3e-a82b-49ebb9f3a9a8)
  1567. )
  1568. (wire (pts (xy 57.15 22.86) (xy 62.23 22.86))
  1569. (stroke (width 0) (type default))
  1570. (uuid 12681bbd-31af-4f2c-9569-caa23ae8a8ce)
  1571. )
  1572. (wire (pts (xy 67.31 44.45) (xy 69.85 44.45))
  1573. (stroke (width 0) (type default))
  1574. (uuid 12e483f4-2c35-4ec2-b969-16a8cb1257de)
  1575. )
  1576. (wire (pts (xy 50.8 22.86) (xy 50.8 24.13))
  1577. (stroke (width 0) (type default))
  1578. (uuid 12e96ade-fd67-484b-aca5-54824a155d10)
  1579. )
  1580. (wire (pts (xy 140.97 22.86) (xy 140.97 24.13))
  1581. (stroke (width 0) (type default))
  1582. (uuid 14c75a79-031e-4663-905a-996467e0d654)
  1583. )
  1584. (wire (pts (xy 113.03 153.67) (xy 118.11 153.67))
  1585. (stroke (width 0) (type default))
  1586. (uuid 14f35a96-1f55-4f38-b316-0816c33a2776)
  1587. )
  1588. (wire (pts (xy 95.885 118.745) (xy 95.885 121.285))
  1589. (stroke (width 0) (type default))
  1590. (uuid 15335492-1abe-4888-88ea-5ae73fc34ebb)
  1591. )
  1592. (bus (pts (xy 228.6 60.96) (xy 228.6 63.5))
  1593. (stroke (width 0) (type default))
  1594. (uuid 17100788-d42e-4556-980e-864c236ae922)
  1595. )
  1596. (wire (pts (xy 124.46 148.59) (xy 124.46 151.13))
  1597. (stroke (width 0) (type default))
  1598. (uuid 181d497a-7b28-42d9-88a1-e58a56a9087d)
  1599. )
  1600. (wire (pts (xy 35.56 21.59) (xy 35.56 22.86))
  1601. (stroke (width 0) (type default))
  1602. (uuid 188d6c42-0752-4171-94c8-9bededf6ebc5)
  1603. )
  1604. (wire (pts (xy 107.95 30.48) (xy 107.95 29.21))
  1605. (stroke (width 0) (type default))
  1606. (uuid 19c25703-99fb-4acb-936e-e1f94517f43d)
  1607. )
  1608. (wire (pts (xy 83.82 22.86) (xy 83.82 24.13))
  1609. (stroke (width 0) (type default))
  1610. (uuid 1aa08ded-40e5-4846-85c4-c054c99818a2)
  1611. )
  1612. (wire (pts (xy 115.57 148.59) (xy 124.46 148.59))
  1613. (stroke (width 0) (type default))
  1614. (uuid 1b670ca0-a317-4524-8903-cab705f0958a)
  1615. )
  1616. (wire (pts (xy 74.93 116.84) (xy 74.93 101.6))
  1617. (stroke (width 0) (type default))
  1618. (uuid 1bbe7219-b59f-41e6-8d5f-79342a6d9e46)
  1619. )
  1620. (wire (pts (xy 35.56 22.86) (xy 40.64 22.86))
  1621. (stroke (width 0) (type default))
  1622. (uuid 1c6bcaee-f3b0-4cff-b9f8-7b54e7a9dfc5)
  1623. )
  1624. (wire (pts (xy 40.64 22.86) (xy 40.64 24.13))
  1625. (stroke (width 0) (type default))
  1626. (uuid 1db9b279-c7be-4da1-9506-a8868a060aad)
  1627. )
  1628. (wire (pts (xy 198.12 71.12) (xy 205.74 71.12))
  1629. (stroke (width 0) (type default))
  1630. (uuid 21202f37-37d9-4346-a3ce-fb9cdc003354)
  1631. )
  1632. (wire (pts (xy 86.995 116.205) (xy 89.535 116.205))
  1633. (stroke (width 0) (type default))
  1634. (uuid 214b0873-883a-4b49-9379-11e80ca83758)
  1635. )
  1636. (wire (pts (xy 154.94 114.3) (xy 157.48 114.3))
  1637. (stroke (width 0) (type default))
  1638. (uuid 2231fffe-87a2-4a05-9df9-0dce718cee48)
  1639. )
  1640. (wire (pts (xy 153.67 41.91) (xy 153.67 43.18))
  1641. (stroke (width 0) (type default))
  1642. (uuid 23361300-d8ad-4b39-96f0-431d13eb997e)
  1643. )
  1644. (wire (pts (xy 35.56 30.48) (xy 40.64 30.48))
  1645. (stroke (width 0) (type default))
  1646. (uuid 234463fd-68d9-4da2-9a96-fb23735f7678)
  1647. )
  1648. (wire (pts (xy 140.97 30.48) (xy 140.97 29.21))
  1649. (stroke (width 0) (type default))
  1650. (uuid 23dc05de-1873-415d-9917-d84f1a314f21)
  1651. )
  1652. (wire (pts (xy 74.93 22.86) (xy 83.82 22.86))
  1653. (stroke (width 0) (type default))
  1654. (uuid 2615a44b-d70f-4099-89af-36f9b591df0e)
  1655. )
  1656. (wire (pts (xy 95.25 86.36) (xy 95.25 76.2))
  1657. (stroke (width 0) (type default))
  1658. (uuid 27fa4445-4cae-443b-a87e-b0d420415c33)
  1659. )
  1660. (wire (pts (xy 63.5 81.28) (xy 66.04 81.28))
  1661. (stroke (width 0) (type default))
  1662. (uuid 2a6beb37-6b49-4da6-a186-7a8466026d1d)
  1663. )
  1664. (wire (pts (xy 63.5 116.84) (xy 74.93 116.84))
  1665. (stroke (width 0) (type default))
  1666. (uuid 2aa039a2-ad47-4887-bb27-25235a68b421)
  1667. )
  1668. (wire (pts (xy 107.95 30.48) (xy 113.03 30.48))
  1669. (stroke (width 0) (type default))
  1670. (uuid 2b8e9083-59af-44de-9aa9-235a1ff19b67)
  1671. )
  1672. (bus (pts (xy 228.6 68.58) (xy 228.6 71.12))
  1673. (stroke (width 0) (type default))
  1674. (uuid 2c3f144e-c23d-47a9-a607-854446700598)
  1675. )
  1676. (wire (pts (xy 198.12 55.88) (xy 205.74 55.88))
  1677. (stroke (width 0) (type default))
  1678. (uuid 2cf76403-7bfe-4b67-a5d3-168d408263c2)
  1679. )
  1680. (bus (pts (xy 228.6 63.5) (xy 228.6 66.04))
  1681. (stroke (width 0) (type default))
  1682. (uuid 2d233097-2409-483e-a1be-83939dca7520)
  1683. )
  1684. (wire (pts (xy 88.9 30.48) (xy 88.9 29.21))
  1685. (stroke (width 0) (type default))
  1686. (uuid 2da4280a-2009-4ca8-b2aa-df973e5ae395)
  1687. )
  1688. (wire (pts (xy 58.42 173.99) (xy 58.42 175.26))
  1689. (stroke (width 0) (type default))
  1690. (uuid 2e5ec534-5d8b-4381-aad9-6541dd6f55d4)
  1691. )
  1692. (wire (pts (xy 125.73 21.59) (xy 125.73 22.86))
  1693. (stroke (width 0) (type default))
  1694. (uuid 2edb0e6c-0d45-4811-ab68-2901f95904ed)
  1695. )
  1696. (wire (pts (xy 156.21 109.22) (xy 157.48 109.22))
  1697. (stroke (width 0) (type default))
  1698. (uuid 2fdbb244-f697-4554-9c92-3600fc8c2c24)
  1699. )
  1700. (wire (pts (xy 125.73 29.21) (xy 125.73 30.48))
  1701. (stroke (width 0) (type default))
  1702. (uuid 32327dce-22f5-4393-a2a1-8418336486e2)
  1703. )
  1704. (wire (pts (xy 198.12 86.36) (xy 213.36 86.36))
  1705. (stroke (width 0) (type default))
  1706. (uuid 32880cbf-b1f8-48c6-a561-90f78269e955)
  1707. )
  1708. (wire (pts (xy 129.54 115.57) (xy 129.54 121.92))
  1709. (stroke (width 0) (type default))
  1710. (uuid 32b5a6f3-2419-4f35-ac2a-552a6dbbf99e)
  1711. )
  1712. (wire (pts (xy 121.92 133.35) (xy 121.92 134.62))
  1713. (stroke (width 0) (type default))
  1714. (uuid 33d93b48-92bd-4e48-9049-6782ddfd9568)
  1715. )
  1716. (wire (pts (xy 142.24 121.92) (xy 157.48 121.92))
  1717. (stroke (width 0) (type default))
  1718. (uuid 340ff101-fe5d-48c1-8c67-a0fed101d076)
  1719. )
  1720. (wire (pts (xy 66.04 81.28) (xy 66.04 83.82))
  1721. (stroke (width 0) (type default))
  1722. (uuid 3956f06b-e365-4c19-83bd-fff843636f4c)
  1723. )
  1724. (wire (pts (xy 45.72 30.48) (xy 45.72 29.21))
  1725. (stroke (width 0) (type default))
  1726. (uuid 3a2fbf9e-53ac-446a-b26d-7bc9fd47579d)
  1727. )
  1728. (wire (pts (xy 66.04 78.74) (xy 66.04 81.28))
  1729. (stroke (width 0) (type default))
  1730. (uuid 3a3646d4-d404-495c-81bc-6181dd424a93)
  1731. )
  1732. (wire (pts (xy 129.54 43.18) (xy 129.54 58.42))
  1733. (stroke (width 0) (type default))
  1734. (uuid 3b066f5f-126b-4778-8407-f174d482603b)
  1735. )
  1736. (wire (pts (xy 74.93 88.9) (xy 74.93 101.6))
  1737. (stroke (width 0) (type default))
  1738. (uuid 3b633ab5-f039-4374-9961-0aec6a6b2980)
  1739. )
  1740. (wire (pts (xy 57.15 44.45) (xy 54.61 44.45))
  1741. (stroke (width 0) (type default))
  1742. (uuid 3c520dd0-ffe2-4475-8fec-54a786105c53)
  1743. )
  1744. (wire (pts (xy 120.65 91.44) (xy 157.48 91.44))
  1745. (stroke (width 0) (type default))
  1746. (uuid 3d55b0c4-481d-4b5d-af41-b7b7c3911e55)
  1747. )
  1748. (wire (pts (xy 154.94 53.34) (xy 157.48 53.34))
  1749. (stroke (width 0) (type default))
  1750. (uuid 3d63e58b-6e1a-4644-93a9-5ba4188b9eba)
  1751. )
  1752. (wire (pts (xy 49.53 44.45) (xy 49.53 45.72))
  1753. (stroke (width 0) (type default))
  1754. (uuid 3d9694bc-cd68-464e-ac22-7e781fa508e8)
  1755. )
  1756. (wire (pts (xy 66.04 86.36) (xy 95.25 86.36))
  1757. (stroke (width 0) (type default))
  1758. (uuid 3ded4d6b-4da2-41e9-9a37-5ba2ae4381ad)
  1759. )
  1760. (wire (pts (xy 50.8 22.86) (xy 57.15 22.86))
  1761. (stroke (width 0) (type default))
  1762. (uuid 3e85f5f2-0a60-403f-bdf2-3dc0ee51c599)
  1763. )
  1764. (wire (pts (xy 129.54 63.5) (xy 129.54 66.04))
  1765. (stroke (width 0) (type default))
  1766. (uuid 405119f6-64b2-4020-9fac-fde1a7bcaef8)
  1767. )
  1768. (wire (pts (xy 48.26 137.16) (xy 48.26 134.62))
  1769. (stroke (width 0) (type default))
  1770. (uuid 4107ac83-14a7-40fa-9e00-e382d03f3156)
  1771. )
  1772. (wire (pts (xy 153.67 50.8) (xy 157.48 50.8))
  1773. (stroke (width 0) (type default))
  1774. (uuid 424da688-dbe2-4862-8ee7-92e5276e802c)
  1775. )
  1776. (wire (pts (xy 210.82 53.34) (xy 226.06 53.34))
  1777. (stroke (width 0) (type default))
  1778. (uuid 42d4674f-c297-48d8-802f-05adefd9f990)
  1779. )
  1780. (wire (pts (xy 124.46 151.13) (xy 127 151.13))
  1781. (stroke (width 0) (type default))
  1782. (uuid 43958010-fa01-4be1-9255-33ce27c61ba2)
  1783. )
  1784. (wire (pts (xy 198.12 50.8) (xy 205.74 50.8))
  1785. (stroke (width 0) (type default))
  1786. (uuid 4529b35e-5ed4-4a31-a11d-51399dfe2a60)
  1787. )
  1788. (wire (pts (xy 152.4 161.29) (xy 132.08 161.29))
  1789. (stroke (width 0) (type default))
  1790. (uuid 4540dcf7-4cee-49cc-a7b1-0b8a4d2e629f)
  1791. )
  1792. (wire (pts (xy 43.18 173.99) (xy 44.45 173.99))
  1793. (stroke (width 0) (type default))
  1794. (uuid 4572adac-282e-49eb-8da5-0c046e71107a)
  1795. )
  1796. (wire (pts (xy 198.12 68.58) (xy 205.74 68.58))
  1797. (stroke (width 0) (type default))
  1798. (uuid 47522a23-4252-48e3-8388-155de5ac5af8)
  1799. )
  1800. (wire (pts (xy 88.9 30.48) (xy 93.98 30.48))
  1801. (stroke (width 0) (type default))
  1802. (uuid 481f6f71-9618-49a3-8705-379ae5a36368)
  1803. )
  1804. (wire (pts (xy 118.11 163.83) (xy 113.03 163.83))
  1805. (stroke (width 0) (type default))
  1806. (uuid 48670141-e748-4135-b00b-b64748e0bd7f)
  1807. )
  1808. (wire (pts (xy 135.89 30.48) (xy 135.89 29.21))
  1809. (stroke (width 0) (type default))
  1810. (uuid 48f4e0e1-a70d-4beb-86b2-b8ad6da16858)
  1811. )
  1812. (bus (pts (xy 228.6 73.66) (xy 228.6 76.2))
  1813. (stroke (width 0) (type default))
  1814. (uuid 496c2e7e-4f6d-422c-916a-2404fdd8d873)
  1815. )
  1816. (wire (pts (xy 71.12 96.52) (xy 157.48 96.52))
  1817. (stroke (width 0) (type default))
  1818. (uuid 49b7a93b-0c45-4f54-82d8-c73fca8e9a2f)
  1819. )
  1820. (wire (pts (xy 63.5 109.22) (xy 68.58 109.22))
  1821. (stroke (width 0) (type default))
  1822. (uuid 49fb1b93-ef2c-4c13-8861-864d83ebc2ed)
  1823. )
  1824. (wire (pts (xy 157.48 129.54) (xy 152.4 129.54))
  1825. (stroke (width 0) (type default))
  1826. (uuid 4af6888f-1fe0-4d56-b94e-22b4d50bbd89)
  1827. )
  1828. (wire (pts (xy 83.82 21.59) (xy 83.82 22.86))
  1829. (stroke (width 0) (type default))
  1830. (uuid 4bce17f0-6326-4645-b7b6-ca724ce9d2cb)
  1831. )
  1832. (wire (pts (xy 83.82 30.48) (xy 88.9 30.48))
  1833. (stroke (width 0) (type default))
  1834. (uuid 4d3bb3a0-673f-413b-8812-2f1e44fe7b23)
  1835. )
  1836. (bus (pts (xy 228.6 66.04) (xy 228.6 68.58))
  1837. (stroke (width 0) (type default))
  1838. (uuid 4fb7975d-dc94-4146-8f85-99e8a9b45ede)
  1839. )
  1840. (wire (pts (xy 198.12 121.92) (xy 213.995 121.92))
  1841. (stroke (width 0) (type default))
  1842. (uuid 501146be-0ed3-4fb0-8a59-687d52f177ee)
  1843. )
  1844. (wire (pts (xy 198.12 81.28) (xy 213.36 81.28))
  1845. (stroke (width 0) (type default))
  1846. (uuid 508ffb63-f5c2-45fe-a36e-e437f091afa9)
  1847. )
  1848. (wire (pts (xy 63.5 104.14) (xy 77.47 104.14))
  1849. (stroke (width 0) (type default))
  1850. (uuid 50a8583a-4726-410b-8992-b77a315245a3)
  1851. )
  1852. (wire (pts (xy 35.56 22.86) (xy 35.56 24.13))
  1853. (stroke (width 0) (type default))
  1854. (uuid 510c6bc5-af5c-4c44-ac29-b04833dd0f95)
  1855. )
  1856. (wire (pts (xy 153.67 49.53) (xy 153.67 50.8))
  1857. (stroke (width 0) (type default))
  1858. (uuid 51c901d7-ed0d-4e2d-9a1c-668470867d75)
  1859. )
  1860. (wire (pts (xy 132.08 121.92) (xy 129.54 121.92))
  1861. (stroke (width 0) (type default))
  1862. (uuid 52187ba3-9619-4e36-a79a-18eadbcbc0d0)
  1863. )
  1864. (wire (pts (xy 129.54 43.18) (xy 147.32 43.18))
  1865. (stroke (width 0) (type default))
  1866. (uuid 52b73b57-6011-442e-8a39-5a26e9438856)
  1867. )
  1868. (wire (pts (xy 125.73 22.86) (xy 130.81 22.86))
  1869. (stroke (width 0) (type default))
  1870. (uuid 5500826b-565d-493e-bae6-b2a2ea4c465e)
  1871. )
  1872. (wire (pts (xy 210.82 66.04) (xy 226.06 66.04))
  1873. (stroke (width 0) (type default))
  1874. (uuid 556efe03-dead-4cfa-97cb-8f0ef95d00f8)
  1875. )
  1876. (wire (pts (xy 102.87 30.48) (xy 107.95 30.48))
  1877. (stroke (width 0) (type default))
  1878. (uuid 55ba0ce1-7803-4ee2-9a69-79af658eceb9)
  1879. )
  1880. (wire (pts (xy 156.21 142.24) (xy 156.21 143.51))
  1881. (stroke (width 0) (type default))
  1882. (uuid 55d9e8e1-4029-41fa-bbbc-dbf0a3c69493)
  1883. )
  1884. (wire (pts (xy 57.15 30.48) (xy 57.15 29.21))
  1885. (stroke (width 0) (type default))
  1886. (uuid 56a08669-a5d8-4bdd-813c-4a364a976e98)
  1887. )
  1888. (wire (pts (xy 130.81 22.86) (xy 135.89 22.86))
  1889. (stroke (width 0) (type default))
  1890. (uuid 5b398c3d-fe37-44ce-a3ad-4339805624cc)
  1891. )
  1892. (wire (pts (xy 142.875 83.82) (xy 147.32 83.82))
  1893. (stroke (width 0) (type default))
  1894. (uuid 5bc11437-8c2e-426a-960d-d47a2ae15992)
  1895. )
  1896. (wire (pts (xy 83.82 29.21) (xy 83.82 30.48))
  1897. (stroke (width 0) (type default))
  1898. (uuid 5cd4918e-8dcc-4103-93e4-90d9eb4f4812)
  1899. )
  1900. (wire (pts (xy 113.03 88.9) (xy 157.48 88.9))
  1901. (stroke (width 0) (type default))
  1902. (uuid 5d061b70-022b-4717-b2da-4346db5706a0)
  1903. )
  1904. (wire (pts (xy 210.82 50.8) (xy 226.06 50.8))
  1905. (stroke (width 0) (type default))
  1906. (uuid 5dac6330-ecbb-492a-af35-f883e2eca151)
  1907. )
  1908. (wire (pts (xy 103.505 116.205) (xy 117.475 116.205))
  1909. (stroke (width 0) (type default))
  1910. (uuid 5f25fda2-8085-43fc-90aa-141a32df721e)
  1911. )
  1912. (wire (pts (xy 44.45 173.99) (xy 45.72 173.99))
  1913. (stroke (width 0) (type default))
  1914. (uuid 5f676cce-6c2b-483f-96a2-a7cd4f6a20b3)
  1915. )
  1916. (wire (pts (xy 153.67 43.18) (xy 153.67 44.45))
  1917. (stroke (width 0) (type default))
  1918. (uuid 6078ca9f-9037-45ce-8aaf-2118966b7f72)
  1919. )
  1920. (wire (pts (xy 152.4 83.82) (xy 157.48 83.82))
  1921. (stroke (width 0) (type default))
  1922. (uuid 60e818cd-508e-451d-b243-fb53dc09ad31)
  1923. )
  1924. (bus (pts (xy 228.6 78.74) (xy 228.6 81.28))
  1925. (stroke (width 0) (type default))
  1926. (uuid 61a44562-c9d3-422d-a7c2-ce164ba0e11b)
  1927. )
  1928. (wire (pts (xy 71.12 111.76) (xy 63.5 111.76))
  1929. (stroke (width 0) (type default))
  1930. (uuid 61eb8908-e0a9-4412-8019-9b641be45a3c)
  1931. )
  1932. (wire (pts (xy 77.47 119.38) (xy 77.47 104.14))
  1933. (stroke (width 0) (type default))
  1934. (uuid 6221513d-7e3e-420d-89cd-6319c106f0f1)
  1935. )
  1936. (wire (pts (xy 210.82 76.2) (xy 226.06 76.2))
  1937. (stroke (width 0) (type default))
  1938. (uuid 627b30b8-4b97-4124-952e-a3cd30f7d99c)
  1939. )
  1940. (wire (pts (xy 118.11 22.86) (xy 118.11 24.13))
  1941. (stroke (width 0) (type default))
  1942. (uuid 62971692-d2cf-4650-b7d8-d4c31715dd72)
  1943. )
  1944. (wire (pts (xy 63.5 101.6) (xy 74.93 101.6))
  1945. (stroke (width 0) (type default))
  1946. (uuid 62af5bbd-3b56-439c-9fdd-db15772af9b8)
  1947. )
  1948. (wire (pts (xy 135.89 30.48) (xy 140.97 30.48))
  1949. (stroke (width 0) (type default))
  1950. (uuid 62c381bf-82d0-4fb8-8fc8-51f82061b732)
  1951. )
  1952. (wire (pts (xy 125.73 22.86) (xy 125.73 24.13))
  1953. (stroke (width 0) (type default))
  1954. (uuid 62f069dd-bd2e-4efa-8765-8edb249a588e)
  1955. )
  1956. (wire (pts (xy 118.11 30.48) (xy 118.11 29.21))
  1957. (stroke (width 0) (type default))
  1958. (uuid 63f11a24-1236-43bf-abcd-e48140821982)
  1959. )
  1960. (wire (pts (xy 146.05 71.12) (xy 157.48 71.12))
  1961. (stroke (width 0) (type default))
  1962. (uuid 66116ae2-0a9e-4780-8e3f-894c71be53f6)
  1963. )
  1964. (wire (pts (xy 198.12 137.16) (xy 200.66 137.16))
  1965. (stroke (width 0) (type default))
  1966. (uuid 68178000-422e-438b-95f9-197a4c481e2b)
  1967. )
  1968. (wire (pts (xy 198.12 73.66) (xy 205.74 73.66))
  1969. (stroke (width 0) (type default))
  1970. (uuid 68318d78-b09f-443b-8d69-bf0291757d0c)
  1971. )
  1972. (wire (pts (xy 54.61 52.07) (xy 54.61 50.8))
  1973. (stroke (width 0) (type default))
  1974. (uuid 69c65ee2-ceeb-4c2e-aa72-02722100bcee)
  1975. )
  1976. (wire (pts (xy 198.12 88.9) (xy 213.36 88.9))
  1977. (stroke (width 0) (type default))
  1978. (uuid 6a9c76f3-ef9e-4bef-8b7b-bb3b04aa6057)
  1979. )
  1980. (wire (pts (xy 74.93 88.9) (xy 107.95 88.9))
  1981. (stroke (width 0) (type default))
  1982. (uuid 6c7e9be2-64ef-4ed6-bfb3-4c107a788049)
  1983. )
  1984. (wire (pts (xy 95.25 76.2) (xy 157.48 76.2))
  1985. (stroke (width 0) (type default))
  1986. (uuid 6d4ff248-d460-468b-858e-feb37f2c9c9e)
  1987. )
  1988. (wire (pts (xy 50.8 30.48) (xy 50.8 29.21))
  1989. (stroke (width 0) (type default))
  1990. (uuid 6e130a71-15ed-4ac8-8908-d8b4ad793029)
  1991. )
  1992. (wire (pts (xy 113.03 22.86) (xy 113.03 24.13))
  1993. (stroke (width 0) (type default))
  1994. (uuid 6e844671-7ebf-4564-b737-57030750cafd)
  1995. )
  1996. (wire (pts (xy 49.53 41.91) (xy 49.53 44.45))
  1997. (stroke (width 0) (type default))
  1998. (uuid 6fafdb34-d92b-4f14-a056-869f111d06da)
  1999. )
  2000. (wire (pts (xy 129.54 129.54) (xy 129.54 130.81))
  2001. (stroke (width 0) (type default))
  2002. (uuid 70603670-d235-4f6c-bc12-3da760b1a1d8)
  2003. )
  2004. (wire (pts (xy 45.72 22.86) (xy 45.72 24.13))
  2005. (stroke (width 0) (type default))
  2006. (uuid 7366ec70-2b9f-417a-8bdf-50cd19a487c4)
  2007. )
  2008. (wire (pts (xy 83.82 71.12) (xy 90.17 71.12))
  2009. (stroke (width 0) (type default))
  2010. (uuid 742a38ae-3d9c-43fb-aa07-44adefb5c02a)
  2011. )
  2012. (wire (pts (xy 57.15 22.86) (xy 57.15 24.13))
  2013. (stroke (width 0) (type default))
  2014. (uuid 75673abc-4b18-408d-bee3-fd08aab97925)
  2015. )
  2016. (wire (pts (xy 59.69 44.45) (xy 57.15 44.45))
  2017. (stroke (width 0) (type default))
  2018. (uuid 775a697c-817d-47c2-8b5b-937a3954a171)
  2019. )
  2020. (wire (pts (xy 63.5 96.52) (xy 71.12 96.52))
  2021. (stroke (width 0) (type default))
  2022. (uuid 7b1293ec-fd36-4d54-942d-b2ceb3880e14)
  2023. )
  2024. (wire (pts (xy 76.2 129.54) (xy 80.01 129.54))
  2025. (stroke (width 0) (type default))
  2026. (uuid 7dd62b76-dfa5-4808-b8bc-ba0a8f8e01eb)
  2027. )
  2028. (wire (pts (xy 210.82 63.5) (xy 226.06 63.5))
  2029. (stroke (width 0) (type default))
  2030. (uuid 7eb3476a-c436-45f5-885a-9d0959792e1d)
  2031. )
  2032. (wire (pts (xy 54.61 44.45) (xy 54.61 45.72))
  2033. (stroke (width 0) (type default))
  2034. (uuid 7f494585-72c9-458b-b67d-02a1401e253b)
  2035. )
  2036. (wire (pts (xy 93.98 30.48) (xy 93.98 29.21))
  2037. (stroke (width 0) (type default))
  2038. (uuid 7f672a4e-2feb-40cd-8877-41206b3432ef)
  2039. )
  2040. (wire (pts (xy 83.82 30.48) (xy 83.82 31.75))
  2041. (stroke (width 0) (type default))
  2042. (uuid 82c77558-ce82-4376-96e8-4f4c0e8d40d0)
  2043. )
  2044. (wire (pts (xy 210.82 78.74) (xy 226.06 78.74))
  2045. (stroke (width 0) (type default))
  2046. (uuid 8304ba98-2922-4917-94c8-3e0576aaeacd)
  2047. )
  2048. (wire (pts (xy 49.53 52.07) (xy 49.53 50.8))
  2049. (stroke (width 0) (type default))
  2050. (uuid 85bb5643-5f2e-4da2-a20b-66a556d3824f)
  2051. )
  2052. (bus (pts (xy 228.6 76.2) (xy 228.6 78.74))
  2053. (stroke (width 0) (type default))
  2054. (uuid 85f3f8bf-b7db-498f-8f1f-618e6b21bcd2)
  2055. )
  2056. (wire (pts (xy 137.16 50.165) (xy 143.51 50.165))
  2057. (stroke (width 0) (type default))
  2058. (uuid 87c97b29-f9df-46c0-bbc0-b42c53bfd2b7)
  2059. )
  2060. (wire (pts (xy 124.46 161.29) (xy 127 161.29))
  2061. (stroke (width 0) (type default))
  2062. (uuid 89ebb453-f373-4185-bd4c-ea00c9f8582a)
  2063. )
  2064. (wire (pts (xy 63.5 73.66) (xy 66.04 73.66))
  2065. (stroke (width 0) (type default))
  2066. (uuid 8a52eabc-415e-4906-b457-9286637990fc)
  2067. )
  2068. (wire (pts (xy 156.21 137.16) (xy 156.21 134.62))
  2069. (stroke (width 0) (type default))
  2070. (uuid 8ab3c44a-d8ac-4750-92eb-cbfcb73f65c4)
  2071. )
  2072. (wire (pts (xy 152.4 119.38) (xy 157.48 119.38))
  2073. (stroke (width 0) (type default))
  2074. (uuid 8b413049-65e1-42f9-80e2-5e637281eed4)
  2075. )
  2076. (wire (pts (xy 198.12 35.56) (xy 205.74 35.56))
  2077. (stroke (width 0) (type default))
  2078. (uuid 8b4d61ab-d84d-4d5f-97c5-17d649720c43)
  2079. )
  2080. (wire (pts (xy 50.8 30.48) (xy 57.15 30.48))
  2081. (stroke (width 0) (type default))
  2082. (uuid 8ba62203-469b-49e3-9d24-bdeab469b658)
  2083. )
  2084. (wire (pts (xy 115.57 139.7) (xy 115.57 148.59))
  2085. (stroke (width 0) (type default))
  2086. (uuid 8bbdb902-d72b-4ac3-9c03-a0d6b3b29cba)
  2087. )
  2088. (wire (pts (xy 76.2 132.08) (xy 76.2 129.54))
  2089. (stroke (width 0) (type default))
  2090. (uuid 8cd5c61a-9d98-4c30-a0d7-1be599dd2607)
  2091. )
  2092. (wire (pts (xy 210.82 60.96) (xy 226.06 60.96))
  2093. (stroke (width 0) (type default))
  2094. (uuid 8d8be836-afba-4749-bb96-bf9de1313bd8)
  2095. )
  2096. (wire (pts (xy 198.12 139.7) (xy 200.66 139.7))
  2097. (stroke (width 0) (type default))
  2098. (uuid 8e3fc14e-51a3-4de6-9002-a981209cd472)
  2099. )
  2100. (wire (pts (xy 156.21 106.68) (xy 157.48 106.68))
  2101. (stroke (width 0) (type default))
  2102. (uuid 8e72f531-ef89-40ce-8124-56cdb734afe3)
  2103. )
  2104. (wire (pts (xy 135.89 22.86) (xy 135.89 24.13))
  2105. (stroke (width 0) (type default))
  2106. (uuid 8ea1c107-677b-442e-992e-1dfd9e947d33)
  2107. )
  2108. (wire (pts (xy 71.12 96.52) (xy 71.12 111.76))
  2109. (stroke (width 0) (type default))
  2110. (uuid 8f19934a-bb2c-4cd6-9b7c-3e9f68ca569b)
  2111. )
  2112. (wire (pts (xy 198.12 134.62) (xy 200.66 134.62))
  2113. (stroke (width 0) (type default))
  2114. (uuid 904e98d4-d437-4de4-ad9e-4909a1382e7c)
  2115. )
  2116. (wire (pts (xy 44.45 137.16) (xy 44.45 139.7))
  2117. (stroke (width 0) (type default))
  2118. (uuid 9115feb3-f3b4-411e-9507-ea985035e4d2)
  2119. )
  2120. (wire (pts (xy 62.23 22.86) (xy 62.23 24.13))
  2121. (stroke (width 0) (type default))
  2122. (uuid 93352040-6dd7-4b22-b750-030986a95bda)
  2123. )
  2124. (wire (pts (xy 201.93 45.72) (xy 201.93 40.64))
  2125. (stroke (width 0) (type default))
  2126. (uuid 94072f0e-a4d7-48ad-bc03-111c65d0d412)
  2127. )
  2128. (wire (pts (xy 198.12 38.1) (xy 205.74 38.1))
  2129. (stroke (width 0) (type default))
  2130. (uuid 9563f12a-65d7-4c66-a4df-f8fdfb1a7147)
  2131. )
  2132. (wire (pts (xy 117.475 116.205) (xy 117.475 101.6))
  2133. (stroke (width 0) (type default))
  2134. (uuid 95797304-88fc-44a5-a2c8-54a534c4edc8)
  2135. )
  2136. (wire (pts (xy 40.64 30.48) (xy 45.72 30.48))
  2137. (stroke (width 0) (type default))
  2138. (uuid 9588535d-ebff-4e8e-87d7-bcf85f0febdc)
  2139. )
  2140. (wire (pts (xy 129.54 115.57) (xy 152.4 115.57))
  2141. (stroke (width 0) (type default))
  2142. (uuid 96025306-03a8-4bcf-9ef8-6cdc38da750f)
  2143. )
  2144. (wire (pts (xy 40.64 22.86) (xy 45.72 22.86))
  2145. (stroke (width 0) (type default))
  2146. (uuid 962e47b2-417e-4961-a632-953851b7ae7a)
  2147. )
  2148. (wire (pts (xy 139.7 121.92) (xy 142.24 121.92))
  2149. (stroke (width 0) (type default))
  2150. (uuid 977550df-05d4-407e-b220-36c5a6aaa533)
  2151. )
  2152. (bus (pts (xy 228.6 58.42) (xy 228.6 60.96))
  2153. (stroke (width 0) (type default))
  2154. (uuid 98de1692-82ef-4787-847a-2f7e50f80cea)
  2155. )
  2156. (wire (pts (xy 83.82 73.66) (xy 83.82 71.12))
  2157. (stroke (width 0) (type default))
  2158. (uuid 9914b193-17d0-48ad-b79e-3550ef1dd397)
  2159. )
  2160. (wire (pts (xy 35.56 29.21) (xy 35.56 30.48))
  2161. (stroke (width 0) (type default))
  2162. (uuid 9938bbb2-0568-4fd4-bdd3-3624da6e9c00)
  2163. )
  2164. (wire (pts (xy 73.66 73.66) (xy 83.82 73.66))
  2165. (stroke (width 0) (type default))
  2166. (uuid 9a3e5e71-90d9-4dd2-8d4f-a61a51ee7847)
  2167. )
  2168. (wire (pts (xy 118.11 153.67) (xy 118.11 163.83))
  2169. (stroke (width 0) (type default))
  2170. (uuid 9a779ef2-fd9f-443b-b63c-93b5d8e47b1a)
  2171. )
  2172. (wire (pts (xy 68.58 109.22) (xy 68.58 93.98))
  2173. (stroke (width 0) (type default))
  2174. (uuid 9a940373-e783-4827-89d8-8391c90af5c8)
  2175. )
  2176. (wire (pts (xy 113.03 30.48) (xy 118.11 30.48))
  2177. (stroke (width 0) (type default))
  2178. (uuid 9cfd1870-5c77-42f9-8549-9ab173dda3c1)
  2179. )
  2180. (wire (pts (xy 147.32 58.42) (xy 157.48 58.42))
  2181. (stroke (width 0) (type default))
  2182. (uuid a0ec5b8f-5cbc-45d4-8c64-aa42e86c6eab)
  2183. )
  2184. (wire (pts (xy 45.72 22.86) (xy 50.8 22.86))
  2185. (stroke (width 0) (type default))
  2186. (uuid a1ec0980-fc94-4c8f-86d4-12de44bb9b41)
  2187. )
  2188. (wire (pts (xy 152.4 115.57) (xy 152.4 119.38))
  2189. (stroke (width 0) (type default))
  2190. (uuid a2700c1e-5d00-4732-859d-3ca8e22a97ab)
  2191. )
  2192. (wire (pts (xy 142.24 129.54) (xy 142.24 130.81))
  2193. (stroke (width 0) (type default))
  2194. (uuid a2d0c2c7-7cf4-4aca-8738-04d8a52a8002)
  2195. )
  2196. (wire (pts (xy 74.93 24.13) (xy 74.93 22.86))
  2197. (stroke (width 0) (type default))
  2198. (uuid a3363357-ff28-46e8-9071-c310cb2ac7c8)
  2199. )
  2200. (wire (pts (xy 147.32 49.53) (xy 147.32 58.42))
  2201. (stroke (width 0) (type default))
  2202. (uuid a60837d0-03ef-4059-b0bd-bc8f443b1d75)
  2203. )
  2204. (wire (pts (xy 198.12 124.46) (xy 213.995 124.46))
  2205. (stroke (width 0) (type default))
  2206. (uuid a67e46a3-2ca6-400f-81cb-5eff324611a8)
  2207. )
  2208. (wire (pts (xy 147.32 44.45) (xy 147.32 43.18))
  2209. (stroke (width 0) (type default))
  2210. (uuid a746d27f-d861-433d-8df4-2bdba87f7b24)
  2211. )
  2212. (wire (pts (xy 198.12 63.5) (xy 205.74 63.5))
  2213. (stroke (width 0) (type default))
  2214. (uuid a77b66d5-06f8-43e5-b7b0-de50a72a7f7f)
  2215. )
  2216. (wire (pts (xy 152.4 129.54) (xy 152.4 161.29))
  2217. (stroke (width 0) (type default))
  2218. (uuid a857144c-00a3-45d8-b13a-238bd7c4a942)
  2219. )
  2220. (wire (pts (xy 210.82 58.42) (xy 226.06 58.42))
  2221. (stroke (width 0) (type default))
  2222. (uuid a89c6e23-aa9d-40db-bf38-de761234662c)
  2223. )
  2224. (wire (pts (xy 57.15 30.48) (xy 62.23 30.48))
  2225. (stroke (width 0) (type default))
  2226. (uuid aa839829-118f-48ab-a835-b544bd5a9a5e)
  2227. )
  2228. (wire (pts (xy 198.12 127) (xy 213.995 127))
  2229. (stroke (width 0) (type default))
  2230. (uuid ab2e0ecc-0af3-49c3-8524-8aebb361a5c7)
  2231. )
  2232. (wire (pts (xy 137.16 50.165) (xy 137.16 60.96))
  2233. (stroke (width 0) (type default))
  2234. (uuid abe66ced-6890-4e7f-8da4-a1a447168baf)
  2235. )
  2236. (wire (pts (xy 143.51 59.055) (xy 143.51 63.5))
  2237. (stroke (width 0) (type default))
  2238. (uuid ac9a4868-0880-4b55-8dff-a5953f7fb20f)
  2239. )
  2240. (wire (pts (xy 74.93 30.48) (xy 83.82 30.48))
  2241. (stroke (width 0) (type default))
  2242. (uuid ae273e25-12ff-4007-b42d-10a81a5fa921)
  2243. )
  2244. (wire (pts (xy 113.03 22.86) (xy 118.11 22.86))
  2245. (stroke (width 0) (type default))
  2246. (uuid afbfb27b-6212-4645-8d8a-02fafc71cd52)
  2247. )
  2248. (wire (pts (xy 157.48 78.74) (xy 66.04 78.74))
  2249. (stroke (width 0) (type default))
  2250. (uuid afc0295c-b427-4b5e-b234-eea2876cba9b)
  2251. )
  2252. (wire (pts (xy 113.03 158.75) (xy 121.92 158.75))
  2253. (stroke (width 0) (type default))
  2254. (uuid afc2e7aa-3614-4246-91f9-fc2f877cc432)
  2255. )
  2256. (wire (pts (xy 113.03 151.13) (xy 124.46 151.13))
  2257. (stroke (width 0) (type default))
  2258. (uuid b0866c15-20de-419d-8c3c-f4764c96dc4d)
  2259. )
  2260. (wire (pts (xy 121.92 139.7) (xy 121.92 158.75))
  2261. (stroke (width 0) (type default))
  2262. (uuid b1285241-489c-454b-a629-4cda49be8d30)
  2263. )
  2264. (wire (pts (xy 66.04 86.36) (xy 63.5 86.36))
  2265. (stroke (width 0) (type default))
  2266. (uuid b1d4c709-7d8c-49aa-98e0-609887198b75)
  2267. )
  2268. (wire (pts (xy 209.55 147.32) (xy 209.55 151.13))
  2269. (stroke (width 0) (type default))
  2270. (uuid b1e82707-4f94-4e55-85a4-977e36049062)
  2271. )
  2272. (wire (pts (xy 113.03 30.48) (xy 113.03 29.21))
  2273. (stroke (width 0) (type default))
  2274. (uuid b4e76719-a564-46ed-8c65-3d8784b1cea9)
  2275. )
  2276. (wire (pts (xy 102.87 22.86) (xy 102.87 24.13))
  2277. (stroke (width 0) (type default))
  2278. (uuid b695bd57-3584-448d-8d01-5dbcc7f8d5b6)
  2279. )
  2280. (wire (pts (xy 40.64 134.62) (xy 40.64 137.16))
  2281. (stroke (width 0) (type default))
  2282. (uuid b7427625-502d-41a7-b98c-241a82b6aec8)
  2283. )
  2284. (wire (pts (xy 143.51 63.5) (xy 157.48 63.5))
  2285. (stroke (width 0) (type default))
  2286. (uuid b7f04330-b667-40f4-842d-0b8b4990a868)
  2287. )
  2288. (wire (pts (xy 63.5 93.98) (xy 68.58 93.98))
  2289. (stroke (width 0) (type default))
  2290. (uuid b868d386-d2b0-4cda-a7b4-d89657ed325d)
  2291. )
  2292. (wire (pts (xy 143.51 50.165) (xy 143.51 53.975))
  2293. (stroke (width 0) (type default))
  2294. (uuid b9076832-86b0-4a2e-ab26-82ffe440c795)
  2295. )
  2296. (wire (pts (xy 142.24 121.92) (xy 142.24 124.46))
  2297. (stroke (width 0) (type default))
  2298. (uuid b9dec395-cba3-4a72-a087-aa4deb88a605)
  2299. )
  2300. (wire (pts (xy 63.5 68.58) (xy 146.05 68.58))
  2301. (stroke (width 0) (type default))
  2302. (uuid ba38e8a5-67d5-474d-8ffc-57239ba5ed87)
  2303. )
  2304. (wire (pts (xy 77.47 104.14) (xy 77.47 91.44))
  2305. (stroke (width 0) (type default))
  2306. (uuid c157d72a-9058-4d2c-a239-c24f6b0b203a)
  2307. )
  2308. (wire (pts (xy 107.95 22.86) (xy 107.95 24.13))
  2309. (stroke (width 0) (type default))
  2310. (uuid c158ad6e-7d3d-41fd-861b-2e3cf75a9e95)
  2311. )
  2312. (wire (pts (xy 63.5 119.38) (xy 77.47 119.38))
  2313. (stroke (width 0) (type default))
  2314. (uuid c26340a4-106e-4fa6-975c-4861a8d2e5e9)
  2315. )
  2316. (bus (pts (xy 228.6 55.88) (xy 228.6 58.42))
  2317. (stroke (width 0) (type default))
  2318. (uuid c316045b-3543-4823-9729-cb38b7604b2c)
  2319. )
  2320. (wire (pts (xy 129.54 66.04) (xy 157.48 66.04))
  2321. (stroke (width 0) (type default))
  2322. (uuid c3293d30-25b7-4557-9535-e15945e53165)
  2323. )
  2324. (wire (pts (xy 44.45 137.16) (xy 48.26 137.16))
  2325. (stroke (width 0) (type default))
  2326. (uuid c3c5ced4-84ca-4401-8780-2fd0ad166b28)
  2327. )
  2328. (wire (pts (xy 198.12 43.18) (xy 205.74 43.18))
  2329. (stroke (width 0) (type default))
  2330. (uuid c4096030-4fca-483a-b308-b4ecb4630f3e)
  2331. )
  2332. (wire (pts (xy 129.54 121.92) (xy 129.54 124.46))
  2333. (stroke (width 0) (type default))
  2334. (uuid c4364fac-91e7-48ea-97b8-d3635acfd165)
  2335. )
  2336. (wire (pts (xy 132.08 151.13) (xy 151.13 151.13))
  2337. (stroke (width 0) (type default))
  2338. (uuid c5c04cb9-608a-4c0b-9254-56193a5a0b0b)
  2339. )
  2340. (wire (pts (xy 40.64 137.16) (xy 44.45 137.16))
  2341. (stroke (width 0) (type default))
  2342. (uuid cacb9e7b-55b4-4698-b1f7-96932536429f)
  2343. )
  2344. (wire (pts (xy 93.98 22.86) (xy 93.98 24.13))
  2345. (stroke (width 0) (type default))
  2346. (uuid cc62cb90-20c4-44f8-9d03-8bd754190e37)
  2347. )
  2348. (wire (pts (xy 113.03 148.59) (xy 115.57 148.59))
  2349. (stroke (width 0) (type default))
  2350. (uuid cd4e468d-0343-4302-9280-ab8d8178f80b)
  2351. )
  2352. (wire (pts (xy 63.5 76.2) (xy 76.2 76.2))
  2353. (stroke (width 0) (type default))
  2354. (uuid ce6ca7fc-ccfb-4336-87e5-2fd16b3b233d)
  2355. )
  2356. (wire (pts (xy 54.61 52.07) (xy 49.53 52.07))
  2357. (stroke (width 0) (type default))
  2358. (uuid d0060011-159c-4ef4-aa78-f4d85abee50f)
  2359. )
  2360. (wire (pts (xy 198.12 142.24) (xy 200.66 142.24))
  2361. (stroke (width 0) (type default))
  2362. (uuid d1756c3f-ac31-485f-ac5e-e8239a2ba88a)
  2363. )
  2364. (wire (pts (xy 125.73 30.48) (xy 125.73 31.75))
  2365. (stroke (width 0) (type default))
  2366. (uuid d5dc1258-0c24-442e-80de-1c86322da3eb)
  2367. )
  2368. (wire (pts (xy 210.82 68.58) (xy 226.06 68.58))
  2369. (stroke (width 0) (type default))
  2370. (uuid d613ce4e-01ff-421c-ac49-24ef1bd66970)
  2371. )
  2372. (wire (pts (xy 113.03 161.29) (xy 124.46 161.29))
  2373. (stroke (width 0) (type default))
  2374. (uuid d8b66e3e-3b77-4a08-a24d-4df3a26ce3cb)
  2375. )
  2376. (wire (pts (xy 198.12 76.2) (xy 205.74 76.2))
  2377. (stroke (width 0) (type default))
  2378. (uuid d8d326da-f330-4624-aca4-441ba3e6f050)
  2379. )
  2380. (wire (pts (xy 198.12 40.64) (xy 201.93 40.64))
  2381. (stroke (width 0) (type default))
  2382. (uuid d8f192b2-02f2-449f-a254-02c1a66ea293)
  2383. )
  2384. (wire (pts (xy 95.885 106.68) (xy 95.885 113.665))
  2385. (stroke (width 0) (type default))
  2386. (uuid dab283f2-5fdb-458f-834d-524ac97250fc)
  2387. )
  2388. (wire (pts (xy 198.12 66.04) (xy 205.74 66.04))
  2389. (stroke (width 0) (type default))
  2390. (uuid db551ea7-113e-4690-89a3-af01a982aa14)
  2391. )
  2392. (wire (pts (xy 156.21 134.62) (xy 157.48 134.62))
  2393. (stroke (width 0) (type default))
  2394. (uuid dc433763-45c1-4e22-ac99-8c3683fe53c6)
  2395. )
  2396. (wire (pts (xy 107.95 22.86) (xy 113.03 22.86))
  2397. (stroke (width 0) (type default))
  2398. (uuid dd5eb54f-4327-4abf-916e-6eecb43ea5f8)
  2399. )
  2400. (wire (pts (xy 102.87 22.86) (xy 107.95 22.86))
  2401. (stroke (width 0) (type default))
  2402. (uuid dddb1d73-932f-47b1-a661-d891a40b839b)
  2403. )
  2404. (wire (pts (xy 135.89 22.86) (xy 140.97 22.86))
  2405. (stroke (width 0) (type default))
  2406. (uuid ddec6951-2f5b-4fd7-b4d2-e3c309778b77)
  2407. )
  2408. (wire (pts (xy 66.04 88.9) (xy 66.04 86.36))
  2409. (stroke (width 0) (type default))
  2410. (uuid deb79c54-bdf6-40d0-8e43-a9c1e0e5de20)
  2411. )
  2412. (wire (pts (xy 121.92 158.75) (xy 124.46 158.75))
  2413. (stroke (width 0) (type default))
  2414. (uuid e046192d-009e-46b1-a80d-aeb2a3ad8c86)
  2415. )
  2416. (wire (pts (xy 130.81 30.48) (xy 135.89 30.48))
  2417. (stroke (width 0) (type default))
  2418. (uuid e0cf575b-8328-4946-ad62-968fa6620158)
  2419. )
  2420. (wire (pts (xy 102.87 29.21) (xy 102.87 30.48))
  2421. (stroke (width 0) (type default))
  2422. (uuid e0ff28d8-5eb5-4f7a-aef3-40a792d032ba)
  2423. )
  2424. (wire (pts (xy 210.82 71.12) (xy 226.06 71.12))
  2425. (stroke (width 0) (type default))
  2426. (uuid e19bf2a5-5d9e-4889-9b3c-748c6ba69784)
  2427. )
  2428. (wire (pts (xy 198.12 60.96) (xy 205.74 60.96))
  2429. (stroke (width 0) (type default))
  2430. (uuid e1c05b52-a640-4d89-87d3-74f77f859be5)
  2431. )
  2432. (wire (pts (xy 198.12 53.34) (xy 205.74 53.34))
  2433. (stroke (width 0) (type default))
  2434. (uuid e38a819b-8ea9-48e9-87fd-9798d19c5880)
  2435. )
  2436. (wire (pts (xy 210.82 55.88) (xy 226.06 55.88))
  2437. (stroke (width 0) (type default))
  2438. (uuid e5bc9385-f717-44cf-9070-7248f3cfb68f)
  2439. )
  2440. (wire (pts (xy 74.93 29.21) (xy 74.93 30.48))
  2441. (stroke (width 0) (type default))
  2442. (uuid e616559a-ba0f-4c9e-96b6-8714e91254a3)
  2443. )
  2444. (wire (pts (xy 124.46 158.75) (xy 124.46 161.29))
  2445. (stroke (width 0) (type default))
  2446. (uuid e79dfd65-6880-4ec9-80da-624cd42060b4)
  2447. )
  2448. (wire (pts (xy 68.58 93.98) (xy 157.48 93.98))
  2449. (stroke (width 0) (type default))
  2450. (uuid e8ba3327-2a5b-4e96-b503-6f9e6ba83460)
  2451. )
  2452. (wire (pts (xy 83.82 22.86) (xy 88.9 22.86))
  2453. (stroke (width 0) (type default))
  2454. (uuid e956fe8d-c956-4c4d-9e99-90bd0af3ee2f)
  2455. )
  2456. (wire (pts (xy 198.12 147.32) (xy 209.55 147.32))
  2457. (stroke (width 0) (type default))
  2458. (uuid e9eeb478-2025-4b4f-aa5a-24151667484a)
  2459. )
  2460. (wire (pts (xy 77.47 91.44) (xy 115.57 91.44))
  2461. (stroke (width 0) (type default))
  2462. (uuid eaa5214a-6741-4efa-b6d3-b99076a93a39)
  2463. )
  2464. (wire (pts (xy 198.12 45.72) (xy 201.93 45.72))
  2465. (stroke (width 0) (type default))
  2466. (uuid eb2fbe0d-f885-44a2-a07a-462071cf61ae)
  2467. )
  2468. (wire (pts (xy 115.57 133.35) (xy 115.57 134.62))
  2469. (stroke (width 0) (type default))
  2470. (uuid edce2c4b-2a14-45e4-8f1c-92ce87289b98)
  2471. )
  2472. (wire (pts (xy 147.32 43.18) (xy 153.67 43.18))
  2473. (stroke (width 0) (type default))
  2474. (uuid ee6900b9-db4f-4e30-ad30-2ff3144a1d3b)
  2475. )
  2476. (wire (pts (xy 45.72 30.48) (xy 50.8 30.48))
  2477. (stroke (width 0) (type default))
  2478. (uuid f1097f37-183a-4b6d-ba99-b0ec097da2c6)
  2479. )
  2480. (wire (pts (xy 66.04 83.82) (xy 63.5 83.82))
  2481. (stroke (width 0) (type default))
  2482. (uuid f1156e09-4c38-4f6b-aaaa-48f6acf87190)
  2483. )
  2484. (wire (pts (xy 90.17 71.12) (xy 90.17 72.39))
  2485. (stroke (width 0) (type default))
  2486. (uuid f2f8c430-2f27-4a12-bce3-60de52fc9d68)
  2487. )
  2488. (wire (pts (xy 125.73 30.48) (xy 130.81 30.48))
  2489. (stroke (width 0) (type default))
  2490. (uuid f2fdd747-ef03-4620-af41-3467857e0623)
  2491. )
  2492. (wire (pts (xy 83.82 73.66) (xy 83.82 76.2))
  2493. (stroke (width 0) (type default))
  2494. (uuid f3119cd7-c265-407b-8ffb-cb6e3e912d44)
  2495. )
  2496. (wire (pts (xy 102.87 30.48) (xy 102.87 31.75))
  2497. (stroke (width 0) (type default))
  2498. (uuid f3bacdda-1216-41ca-8a53-ffe9676555de)
  2499. )
  2500. (wire (pts (xy 130.81 30.48) (xy 130.81 29.21))
  2501. (stroke (width 0) (type default))
  2502. (uuid f4300f09-b462-4bc8-9cb1-4698ff4f56b1)
  2503. )
  2504. (wire (pts (xy 198.12 58.42) (xy 205.74 58.42))
  2505. (stroke (width 0) (type default))
  2506. (uuid f49b7265-c74c-45fa-bfbf-f6483a1e135f)
  2507. )
  2508. (wire (pts (xy 118.11 163.83) (xy 118.11 167.64))
  2509. (stroke (width 0) (type default))
  2510. (uuid f542f378-238e-4b5c-9f35-4a6301820bb0)
  2511. )
  2512. (wire (pts (xy 130.81 22.86) (xy 130.81 24.13))
  2513. (stroke (width 0) (type default))
  2514. (uuid f5d897f9-cc8d-4286-91f0-b3452a9aeb60)
  2515. )
  2516. (wire (pts (xy 146.05 68.58) (xy 146.05 71.12))
  2517. (stroke (width 0) (type default))
  2518. (uuid fa38e983-8c8e-4e1f-8c13-c9e596fa8d02)
  2519. )
  2520. (wire (pts (xy 157.48 127) (xy 151.13 127))
  2521. (stroke (width 0) (type default))
  2522. (uuid fa451b29-3ff9-412a-9c88-d94bcf41c82c)
  2523. )
  2524. (wire (pts (xy 35.56 30.48) (xy 35.56 31.75))
  2525. (stroke (width 0) (type default))
  2526. (uuid fb35a62a-c5f0-4bac-a74e-e95d9cec34f4)
  2527. )
  2528. (wire (pts (xy 201.93 30.48) (xy 201.93 40.64))
  2529. (stroke (width 0) (type default))
  2530. (uuid fdd05adf-99a4-4da3-93c3-df890415b4bd)
  2531. )
  2532. (wire (pts (xy 117.475 101.6) (xy 157.48 101.6))
  2533. (stroke (width 0) (type default))
  2534. (uuid ff178b6c-54ec-4d6c-99bc-eed6a18ea1d0)
  2535. )
  2536. (wire (pts (xy 54.61 44.45) (xy 49.53 44.45))
  2537. (stroke (width 0) (type default))
  2538. (uuid ff2148d6-e6d8-4c6e-9285-dce52814fa3f)
  2539. )
  2540. (wire (pts (xy 63.5 88.9) (xy 66.04 88.9))
  2541. (stroke (width 0) (type default))
  2542. (uuid ffd14834-2b79-4793-b6a7-cf98fa5ae3fc)
  2543. )
  2544. (label "VBUS" (at 67.945 68.58 0) (fields_autoplaced)
  2545. (effects (font (size 1.27 1.27)) (justify left bottom))
  2546. (uuid 011d2ada-0ea4-4ef5-8c09-30cb6c3a74ec)
  2547. )
  2548. (label "VD10" (at 154.94 114.3 180) (fields_autoplaced)
  2549. (effects (font (size 1.27 1.27)) (justify right bottom))
  2550. (uuid 0727109e-b7da-4fb1-832d-0c7f9b236afc)
  2551. )
  2552. (label "AVDD" (at 205.74 43.18 0) (fields_autoplaced)
  2553. (effects (font (size 1.27 1.27)) (justify left bottom))
  2554. (uuid 124d63c5-1857-4753-b1dc-256e96133095)
  2555. )
  2556. (label "PA8" (at 222.25 58.42 0) (fields_autoplaced)
  2557. (effects (font (size 1.27 1.27)) (justify left bottom))
  2558. (uuid 138ef9a8-abd7-4798-88a1-96a60090bd92)
  2559. )
  2560. (label "FT_RST" (at 154.94 53.34 180) (fields_autoplaced)
  2561. (effects (font (size 1.27 1.27)) (justify right bottom))
  2562. (uuid 13b1330c-cd36-4f55-981e-106a765c400c)
  2563. )
  2564. (label "RX+" (at 80.645 96.52 0) (fields_autoplaced)
  2565. (effects (font (size 1.27 1.27)) (justify left bottom))
  2566. (uuid 349d6294-8496-4058-b6b8-9559bd09f467)
  2567. )
  2568. (label "PA5" (at 222.25 66.04 0) (fields_autoplaced)
  2569. (effects (font (size 1.27 1.27)) (justify left bottom))
  2570. (uuid 38ce2684-2aef-4ae9-b05c-812c00eb5006)
  2571. )
  2572. (label "PA3" (at 222.25 71.12 0) (fields_autoplaced)
  2573. (effects (font (size 1.27 1.27)) (justify left bottom))
  2574. (uuid 460b3916-5384-4611-9096-55b7f9d79d66)
  2575. )
  2576. (label "VCCIO" (at 125.73 21.59 180) (fields_autoplaced)
  2577. (effects (font (size 1.27 1.27)) (justify right bottom))
  2578. (uuid 47a1e641-3c4e-4c24-a484-9c16b1fe3c45)
  2579. )
  2580. (label "AVDD" (at 49.53 41.91 0) (fields_autoplaced)
  2581. (effects (font (size 1.27 1.27)) (justify left bottom))
  2582. (uuid 4a82af66-6637-497d-bc17-c51023b3359b)
  2583. )
  2584. (label "PA9" (at 222.25 55.88 0) (fields_autoplaced)
  2585. (effects (font (size 1.27 1.27)) (justify left bottom))
  2586. (uuid 4fbe099b-085c-4b96-a7d3-6b5241f10bed)
  2587. )
  2588. (label "PA0" (at 222.25 78.74 0) (fields_autoplaced)
  2589. (effects (font (size 1.27 1.27)) (justify left bottom))
  2590. (uuid 6565b433-daa0-49b9-accf-4543f59605ec)
  2591. )
  2592. (label "VD10" (at 83.82 21.59 180) (fields_autoplaced)
  2593. (effects (font (size 1.27 1.27)) (justify right bottom))
  2594. (uuid 66318a7c-7580-4702-a628-b33a6b6d3e56)
  2595. )
  2596. (label "RX-" (at 80.645 93.98 0) (fields_autoplaced)
  2597. (effects (font (size 1.27 1.27)) (justify left bottom))
  2598. (uuid 6a31d2af-8e08-4df5-bc3b-a62374af7a82)
  2599. )
  2600. (label "TX+" (at 80.645 91.44 0) (fields_autoplaced)
  2601. (effects (font (size 1.27 1.27)) (justify left bottom))
  2602. (uuid 6f057245-5209-4fda-9ce2-c99dd902acc6)
  2603. )
  2604. (label "PA1" (at 222.25 76.2 0) (fields_autoplaced)
  2605. (effects (font (size 1.27 1.27)) (justify left bottom))
  2606. (uuid 734234f2-d4a8-4f52-ab0d-0ac9a69707a6)
  2607. )
  2608. (label "VD10" (at 205.74 35.56 0) (fields_autoplaced)
  2609. (effects (font (size 1.27 1.27)) (justify left bottom))
  2610. (uuid 75ab5d50-910e-423f-8db3-927e5b5da825)
  2611. )
  2612. (label "PA4" (at 222.25 68.58 0) (fields_autoplaced)
  2613. (effects (font (size 1.27 1.27)) (justify left bottom))
  2614. (uuid 7b878b89-1b3b-4800-82ef-cc1d09af1647)
  2615. )
  2616. (label "VD10" (at 102.87 21.59 180) (fields_autoplaced)
  2617. (effects (font (size 1.27 1.27)) (justify right bottom))
  2618. (uuid 818b1737-286b-4970-8cc0-45ba90938153)
  2619. )
  2620. (label "VCCIO" (at 205.74 38.1 0) (fields_autoplaced)
  2621. (effects (font (size 1.27 1.27)) (justify left bottom))
  2622. (uuid 8af82b9a-9297-4c17-87ae-e182d16d0e46)
  2623. )
  2624. (label "PA11" (at 222.25 50.8 0) (fields_autoplaced)
  2625. (effects (font (size 1.27 1.27)) (justify left bottom))
  2626. (uuid 96d2389a-c558-44f5-91c0-6424be3c69ad)
  2627. )
  2628. (label "PA2" (at 222.25 73.66 0) (fields_autoplaced)
  2629. (effects (font (size 1.27 1.27)) (justify left bottom))
  2630. (uuid 99a67508-0a4e-4c7c-9582-7bc2d9154677)
  2631. )
  2632. (label "D-" (at 66.04 83.82 0) (fields_autoplaced)
  2633. (effects (font (size 1.27 1.27)) (justify left bottom))
  2634. (uuid b5320594-a4d1-4dc4-a12b-4f0b8cc42e73)
  2635. )
  2636. (label "TX-" (at 80.645 88.9 0) (fields_autoplaced)
  2637. (effects (font (size 1.27 1.27)) (justify left bottom))
  2638. (uuid bc554260-5017-4c7e-8a3f-557828a62638)
  2639. )
  2640. (label "PA[0..11]" (at 228.6 50.8 0) (fields_autoplaced)
  2641. (effects (font (size 1.27 1.27)) (justify left bottom))
  2642. (uuid e3840199-af1c-427e-b632-48b847fca01d)
  2643. )
  2644. (label "PA10" (at 222.25 53.34 0) (fields_autoplaced)
  2645. (effects (font (size 1.27 1.27)) (justify left bottom))
  2646. (uuid e6b5a726-dc38-4991-a95b-3639628e685c)
  2647. )
  2648. (label "PA6" (at 222.25 63.5 0) (fields_autoplaced)
  2649. (effects (font (size 1.27 1.27)) (justify left bottom))
  2650. (uuid e8f5c30d-708b-4dc2-96c7-e42f5bf8b7df)
  2651. )
  2652. (label "D+" (at 66.04 88.9 0) (fields_autoplaced)
  2653. (effects (font (size 1.27 1.27)) (justify left bottom))
  2654. (uuid ed8936e6-0b8d-461f-92cc-58749976607b)
  2655. )
  2656. (label "VD10" (at 69.85 44.45 0) (fields_autoplaced)
  2657. (effects (font (size 1.27 1.27)) (justify left bottom))
  2658. (uuid f3db14b0-9f12-4932-89da-6bb4405a1ff1)
  2659. )
  2660. (label "FT_RST" (at 43.18 173.99 180) (fields_autoplaced)
  2661. (effects (font (size 1.27 1.27)) (justify right bottom))
  2662. (uuid fc57b223-9f09-4ec1-a842-5d71ae6d2eaa)
  2663. )
  2664. (label "PA7" (at 222.25 60.96 0) (fields_autoplaced)
  2665. (effects (font (size 1.27 1.27)) (justify left bottom))
  2666. (uuid fd981e26-49bd-409f-a4af-3bc4d213493d)
  2667. )
  2668. (hierarchical_label "BE_3" (shape input) (at 200.66 142.24 0) (fields_autoplaced)
  2669. (effects (font (size 1.27 1.27)) (justify left))
  2670. (uuid 01a35b15-8dc9-4ad9-ba6d-4cc2649c56fc)
  2671. )
  2672. (hierarchical_label "PA[0..11]" (shape input) (at 228.6 53.34 0) (fields_autoplaced)
  2673. (effects (font (size 1.27 1.27)) (justify left))
  2674. (uuid 0b9bf8d5-206d-4097-9a62-37f5599f4c14)
  2675. )
  2676. (hierarchical_label "DIR" (shape input) (at 213.36 86.36 0) (fields_autoplaced)
  2677. (effects (font (size 1.27 1.27)) (justify left))
  2678. (uuid 11e1d1eb-4808-4e65-afbd-011ff19caa5d)
  2679. )
  2680. (hierarchical_label "BE_1" (shape input) (at 200.66 137.16 0) (fields_autoplaced)
  2681. (effects (font (size 1.27 1.27)) (justify left))
  2682. (uuid 2fcb6dd5-cf36-41ef-9bbb-a2bc45cf9908)
  2683. )
  2684. (hierarchical_label "STEP" (shape input) (at 213.36 83.82 0) (fields_autoplaced)
  2685. (effects (font (size 1.27 1.27)) (justify left))
  2686. (uuid 332ab297-260d-4358-82d4-428623af320a)
  2687. )
  2688. (hierarchical_label "RXE_N" (shape input) (at 156.21 109.22 180) (fields_autoplaced)
  2689. (effects (font (size 1.27 1.27)) (justify right))
  2690. (uuid 3749461e-fabb-4099-a086-a52dca033778)
  2691. )
  2692. (hierarchical_label "CLK" (shape input) (at 86.995 116.205 180) (fields_autoplaced)
  2693. (effects (font (size 1.27 1.27)) (justify right))
  2694. (uuid 6028c6e5-8f7a-49a5-96d6-756cda349648)
  2695. )
  2696. (hierarchical_label "BE_0" (shape input) (at 200.66 134.62 0) (fields_autoplaced)
  2697. (effects (font (size 1.27 1.27)) (justify left))
  2698. (uuid 612d0ba7-90ac-413d-8fc8-140c946d5997)
  2699. )
  2700. (hierarchical_label "SIDE_SEL" (shape input) (at 213.995 127 0) (fields_autoplaced)
  2701. (effects (font (size 1.27 1.27)) (justify left))
  2702. (uuid 6c1889de-16e0-4d38-a59c-3ba110d3dd5a)
  2703. )
  2704. (hierarchical_label "BE_2" (shape input) (at 200.66 139.7 0) (fields_autoplaced)
  2705. (effects (font (size 1.27 1.27)) (justify left))
  2706. (uuid 71399b76-3be3-4ec1-aadf-3fec33eebca1)
  2707. )
  2708. (hierarchical_label "R_DATA" (shape input) (at 213.36 81.28 0) (fields_autoplaced)
  2709. (effects (font (size 1.27 1.27)) (justify left))
  2710. (uuid 77c6a7f4-9cb2-4e3f-b962-b7a42d05b234)
  2711. )
  2712. (hierarchical_label "TRK_00" (shape input) (at 213.36 88.9 0) (fields_autoplaced)
  2713. (effects (font (size 1.27 1.27)) (justify left))
  2714. (uuid 7844395a-c792-4201-be47-7655154fe118)
  2715. )
  2716. (hierarchical_label "TXE_N" (shape input) (at 156.21 106.68 180) (fields_autoplaced)
  2717. (effects (font (size 1.27 1.27)) (justify right))
  2718. (uuid 82766b2b-3173-4968-9191-d117cb05b77e)
  2719. )
  2720. (hierarchical_label "READY" (shape input) (at 213.995 124.46 0) (fields_autoplaced)
  2721. (effects (font (size 1.27 1.27)) (justify left))
  2722. (uuid 932c2688-447a-4dd1-8cc0-93b0bf612b22)
  2723. )
  2724. (hierarchical_label "INDEX" (shape input) (at 213.995 121.92 0) (fields_autoplaced)
  2725. (effects (font (size 1.27 1.27)) (justify left))
  2726. (uuid ca93c623-6063-4912-bf06-61747b479031)
  2727. )
  2728. (symbol (lib_id "power:GND") (at 142.875 83.82 0) (unit 1)
  2729. (in_bom yes) (on_board yes) (dnp no)
  2730. (uuid 0b681b1f-253f-4c60-af8d-74274e9173d5)
  2731. (property "Reference" "#PWR0257" (at 142.875 90.17 0)
  2732. (effects (font (size 1.27 1.27)) hide)
  2733. )
  2734. (property "Value" "GND" (at 138.43 85.725 0)
  2735. (effects (font (size 1.27 1.27)))
  2736. )
  2737. (property "Footprint" "" (at 142.875 83.82 0)
  2738. (effects (font (size 1.27 1.27)) hide)
  2739. )
  2740. (property "Datasheet" "" (at 142.875 83.82 0)
  2741. (effects (font (size 1.27 1.27)) hide)
  2742. )
  2743. (pin "1" (uuid 8389fceb-3277-4c7e-83dd-834b5882d49a))
  2744. (instances
  2745. (project "Greaseweazle"
  2746. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2747. (reference "#PWR0257") (unit 1)
  2748. )
  2749. )
  2750. )
  2751. )
  2752. (symbol (lib_id "Device:C_Small") (at 49.53 48.26 0) (mirror y) (unit 1)
  2753. (in_bom yes) (on_board yes) (dnp no)
  2754. (uuid 0c2f62ea-dbda-4ec0-b7e6-ec80c3dba194)
  2755. (property "Reference" "C95" (at 47.1932 47.0916 0)
  2756. (effects (font (size 1.27 1.27)) (justify left))
  2757. )
  2758. (property "Value" "1uF" (at 47.1932 49.403 0)
  2759. (effects (font (size 1.27 1.27)) (justify left))
  2760. )
  2761. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 49.53 48.26 0)
  2762. (effects (font (size 1.27 1.27)) hide)
  2763. )
  2764. (property "Datasheet" "~" (at 49.53 48.26 0)
  2765. (effects (font (size 1.27 1.27)) hide)
  2766. )
  2767. (property "LCSC" "C15849" (at 49.53 48.26 0)
  2768. (effects (font (size 1.27 1.27)) hide)
  2769. )
  2770. (pin "1" (uuid 36752716-519f-4f4a-aa80-1684fa45207a))
  2771. (pin "2" (uuid a007f73c-c54b-4373-87bd-025a8739d9e6))
  2772. (instances
  2773. (project "Greaseweazle"
  2774. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2775. (reference "C95") (unit 1)
  2776. )
  2777. )
  2778. )
  2779. )
  2780. (symbol (lib_id "Device:R_Small") (at 129.54 151.13 90) (unit 1)
  2781. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2782. (uuid 0c63677b-8ab6-4db8-89dd-30bf81a99fed)
  2783. (property "Reference" "R73" (at 129.54 144.78 90)
  2784. (effects (font (size 1.27 1.27)))
  2785. )
  2786. (property "Value" "100" (at 129.54 147.32 90)
  2787. (effects (font (size 1.27 1.27)))
  2788. )
  2789. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 129.54 151.13 0)
  2790. (effects (font (size 1.27 1.27)) hide)
  2791. )
  2792. (property "Datasheet" "~" (at 129.54 151.13 0)
  2793. (effects (font (size 1.27 1.27)) hide)
  2794. )
  2795. (property "LCSC" "C25076" (at 129.54 151.13 0)
  2796. (effects (font (size 1.27 1.27)) hide)
  2797. )
  2798. (pin "1" (uuid 1aed8ac1-c2ba-4c3b-ad68-050e3304d69f))
  2799. (pin "2" (uuid 1ebcc1ac-4244-4cbc-83fa-e2ca02fe406f))
  2800. (instances
  2801. (project "Greaseweazle"
  2802. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2803. (reference "R73") (unit 1)
  2804. )
  2805. )
  2806. )
  2807. )
  2808. (symbol (lib_id "Device:C_Small") (at 118.11 26.67 180) (unit 1)
  2809. (in_bom yes) (on_board yes) (dnp no)
  2810. (uuid 0d7357e4-355a-4aa4-841a-03851fab5f63)
  2811. (property "Reference" "C89" (at 118.11 24.13 0)
  2812. (effects (font (size 1.27 1.27)) (justify left))
  2813. )
  2814. (property "Value" "6800pF" (at 118.11 31.75 90)
  2815. (effects (font (size 1.27 1.27)) (justify left))
  2816. )
  2817. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 118.11 26.67 0)
  2818. (effects (font (size 1.27 1.27)) hide)
  2819. )
  2820. (property "Datasheet" "~" (at 118.11 26.67 0)
  2821. (effects (font (size 1.27 1.27)) hide)
  2822. )
  2823. (property "LCSC" "C1542" (at 118.11 26.67 0)
  2824. (effects (font (size 1.27 1.27)) hide)
  2825. )
  2826. (pin "1" (uuid 95423297-13b3-43c7-9289-94cd4bbb07c5))
  2827. (pin "2" (uuid 79906008-0eb1-4e73-8cc8-7ce49c1dd25c))
  2828. (instances
  2829. (project "Greaseweazle"
  2830. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2831. (reference "C89") (unit 1)
  2832. )
  2833. )
  2834. )
  2835. )
  2836. (symbol (lib_id "power:GND") (at 83.82 31.75 0) (unit 1)
  2837. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2838. (uuid 0e3bde92-83bc-461a-ad8a-2334e46d5a4a)
  2839. (property "Reference" "#PWR0232" (at 83.82 38.1 0)
  2840. (effects (font (size 1.27 1.27)) hide)
  2841. )
  2842. (property "Value" "GND" (at 83.82 36.83 0)
  2843. (effects (font (size 1.27 1.27)))
  2844. )
  2845. (property "Footprint" "" (at 83.82 31.75 0)
  2846. (effects (font (size 1.27 1.27)) hide)
  2847. )
  2848. (property "Datasheet" "" (at 83.82 31.75 0)
  2849. (effects (font (size 1.27 1.27)) hide)
  2850. )
  2851. (pin "1" (uuid db188826-88f7-45fe-aa5b-2913a88192f5))
  2852. (instances
  2853. (project "Greaseweazle"
  2854. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2855. (reference "#PWR0232") (unit 1)
  2856. )
  2857. )
  2858. )
  2859. )
  2860. (symbol (lib_id "Device:C_Small") (at 45.72 26.67 180) (unit 1)
  2861. (in_bom yes) (on_board yes) (dnp no)
  2862. (uuid 0fd699b6-51d7-4501-a3dd-19916dac77b3)
  2863. (property "Reference" "C79" (at 45.72 24.13 0)
  2864. (effects (font (size 1.27 1.27)) (justify left))
  2865. )
  2866. (property "Value" "100nF" (at 45.72 31.75 90)
  2867. (effects (font (size 1.27 1.27)) (justify left))
  2868. )
  2869. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 45.72 26.67 0)
  2870. (effects (font (size 1.27 1.27)) hide)
  2871. )
  2872. (property "Datasheet" "~" (at 45.72 26.67 0)
  2873. (effects (font (size 1.27 1.27)) hide)
  2874. )
  2875. (property "LCSC" "C1525" (at 45.72 26.67 0)
  2876. (effects (font (size 1.27 1.27)) hide)
  2877. )
  2878. (pin "1" (uuid 32ba05a2-9b2e-46d2-b181-d528e120781f))
  2879. (pin "2" (uuid 7a6e8e5b-293c-4e46-b0c4-7c29f0d5a967))
  2880. (instances
  2881. (project "Greaseweazle"
  2882. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2883. (reference "C79") (unit 1)
  2884. )
  2885. )
  2886. )
  2887. )
  2888. (symbol (lib_id "Device:R_Small") (at 208.28 55.88 270) (unit 1)
  2889. (in_bom yes) (on_board yes) (dnp no)
  2890. (uuid 1130f7d7-ff37-44ed-8434-d5eeae594084)
  2891. (property "Reference" "R86" (at 205.74 54.61 90)
  2892. (effects (font (size 1.27 1.27)) (justify right))
  2893. )
  2894. (property "Value" "33" (at 213.36 54.61 90)
  2895. (effects (font (size 1.27 1.27)) (justify right))
  2896. )
  2897. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 55.88 0)
  2898. (effects (font (size 1.27 1.27)) hide)
  2899. )
  2900. (property "Datasheet" "~" (at 208.28 55.88 0)
  2901. (effects (font (size 1.27 1.27)) hide)
  2902. )
  2903. (property "LCSC" "C25105" (at 208.28 55.88 0)
  2904. (effects (font (size 1.27 1.27)) hide)
  2905. )
  2906. (pin "1" (uuid e1b78bac-707e-4af7-be4c-f7df36bf3b55))
  2907. (pin "2" (uuid d13854f9-c7ff-41f3-8984-34b0b2b73d2a))
  2908. (instances
  2909. (project "Greaseweazle"
  2910. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2911. (reference "R86") (unit 1)
  2912. )
  2913. )
  2914. )
  2915. )
  2916. (symbol (lib_id "Device:R_Small") (at 208.28 53.34 270) (unit 1)
  2917. (in_bom yes) (on_board yes) (dnp no)
  2918. (uuid 17aaf0b1-1af0-4b06-822a-679dc5b3f7a6)
  2919. (property "Reference" "R85" (at 205.74 52.07 90)
  2920. (effects (font (size 1.27 1.27)) (justify right))
  2921. )
  2922. (property "Value" "33" (at 213.36 52.07 90)
  2923. (effects (font (size 1.27 1.27)) (justify right))
  2924. )
  2925. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 53.34 0)
  2926. (effects (font (size 1.27 1.27)) hide)
  2927. )
  2928. (property "Datasheet" "~" (at 208.28 53.34 0)
  2929. (effects (font (size 1.27 1.27)) hide)
  2930. )
  2931. (property "LCSC" "C25105" (at 208.28 53.34 0)
  2932. (effects (font (size 1.27 1.27)) hide)
  2933. )
  2934. (pin "1" (uuid c12933e5-955a-4998-8d84-19bed2f380ad))
  2935. (pin "2" (uuid ffbc3b5b-f1a1-4fdd-b55d-5e1d0bd89621))
  2936. (instances
  2937. (project "Greaseweazle"
  2938. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2939. (reference "R85") (unit 1)
  2940. )
  2941. )
  2942. )
  2943. )
  2944. (symbol (lib_id "Connector:Conn_01x03_Male") (at 107.95 151.13 0) (unit 1)
  2945. (in_bom yes) (on_board yes) (dnp no)
  2946. (uuid 18f3be4d-442e-4446-b8d8-42499a6418cc)
  2947. (property "Reference" "J15" (at 106.68 147.32 0)
  2948. (effects (font (size 1.27 1.27)))
  2949. )
  2950. (property "Value" "GPIO0" (at 104.14 151.13 0)
  2951. (effects (font (size 1.27 1.27)))
  2952. )
  2953. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (at 107.95 151.13 0)
  2954. (effects (font (size 1.27 1.27)) hide)
  2955. )
  2956. (property "Datasheet" "~" (at 107.95 151.13 0)
  2957. (effects (font (size 1.27 1.27)) hide)
  2958. )
  2959. (pin "1" (uuid 54f0c858-9b87-4165-99ff-5eb42fa6ac1e))
  2960. (pin "2" (uuid 091dbfd0-00df-4dae-987f-e943d8176c92))
  2961. (pin "3" (uuid 9eb68c18-d7db-45ac-b651-45da63b8ef25))
  2962. (instances
  2963. (project "Greaseweazle"
  2964. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2965. (reference "J15") (unit 1)
  2966. )
  2967. )
  2968. )
  2969. )
  2970. (symbol (lib_id "power:PWR_FLAG") (at 57.15 44.45 0) (unit 1)
  2971. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  2972. (uuid 1a2f49e0-d170-44d3-8b11-709402d66ce5)
  2973. (property "Reference" "#FLG0103" (at 57.15 42.545 0)
  2974. (effects (font (size 1.27 1.27)) hide)
  2975. )
  2976. (property "Value" "PWR_FLAG" (at 57.15 39.37 0)
  2977. (effects (font (size 1.27 1.27)))
  2978. )
  2979. (property "Footprint" "" (at 57.15 44.45 0)
  2980. (effects (font (size 1.27 1.27)) hide)
  2981. )
  2982. (property "Datasheet" "~" (at 57.15 44.45 0)
  2983. (effects (font (size 1.27 1.27)) hide)
  2984. )
  2985. (pin "1" (uuid 5bf251c1-bdcf-4d85-a254-e50e4f7c8ef8))
  2986. (instances
  2987. (project "Greaseweazle"
  2988. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  2989. (reference "#FLG0103") (unit 1)
  2990. )
  2991. )
  2992. )
  2993. )
  2994. (symbol (lib_id "Device:C_Small") (at 83.82 26.67 180) (unit 1)
  2995. (in_bom yes) (on_board yes) (dnp no)
  2996. (uuid 1e3c736e-05e0-4820-bd06-ab8e8ff874df)
  2997. (property "Reference" "C83" (at 83.82 24.13 0)
  2998. (effects (font (size 1.27 1.27)) (justify left))
  2999. )
  3000. (property "Value" "1uF" (at 82.55 29.21 0)
  3001. (effects (font (size 1.27 1.27)) (justify left))
  3002. )
  3003. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 83.82 26.67 0)
  3004. (effects (font (size 1.27 1.27)) hide)
  3005. )
  3006. (property "Datasheet" "~" (at 83.82 26.67 0)
  3007. (effects (font (size 1.27 1.27)) hide)
  3008. )
  3009. (property "LCSC" "C15849" (at 83.82 26.67 0)
  3010. (effects (font (size 1.27 1.27)) hide)
  3011. )
  3012. (pin "1" (uuid 6c896d2f-0ef4-47e0-9da5-ab801998df4e))
  3013. (pin "2" (uuid a241f86d-ca72-4b6b-8d82-e4951c1d1386))
  3014. (instances
  3015. (project "Greaseweazle"
  3016. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3017. (reference "C83") (unit 1)
  3018. )
  3019. )
  3020. )
  3021. )
  3022. (symbol (lib_id "Device:C_Small") (at 125.73 26.67 180) (unit 1)
  3023. (in_bom yes) (on_board yes) (dnp no)
  3024. (uuid 24823d32-efb6-46a1-98da-c30d8db5d1a4)
  3025. (property "Reference" "C90" (at 125.73 24.13 0)
  3026. (effects (font (size 1.27 1.27)) (justify left))
  3027. )
  3028. (property "Value" "1uF" (at 125.73 29.21 0)
  3029. (effects (font (size 1.27 1.27)) (justify left))
  3030. )
  3031. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 125.73 26.67 0)
  3032. (effects (font (size 1.27 1.27)) hide)
  3033. )
  3034. (property "Datasheet" "~" (at 125.73 26.67 0)
  3035. (effects (font (size 1.27 1.27)) hide)
  3036. )
  3037. (property "LCSC" "C15849" (at 125.73 26.67 0)
  3038. (effects (font (size 1.27 1.27)) hide)
  3039. )
  3040. (pin "1" (uuid 142b9918-dd38-41f3-b61c-210ce99e08eb))
  3041. (pin "2" (uuid b3a2574e-b544-49d3-a46c-c8877f13afb8))
  3042. (instances
  3043. (project "Greaseweazle"
  3044. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3045. (reference "C90") (unit 1)
  3046. )
  3047. )
  3048. )
  3049. )
  3050. (symbol (lib_id "Device:C_Small") (at 135.89 26.67 0) (mirror x) (unit 1)
  3051. (in_bom yes) (on_board yes) (dnp no)
  3052. (uuid 26cb46f8-8a8c-4873-a0ff-7d7542f1b5af)
  3053. (property "Reference" "C92" (at 132.08 24.13 0)
  3054. (effects (font (size 1.27 1.27)) (justify left))
  3055. )
  3056. (property "Value" "100nF" (at 135.89 31.75 90)
  3057. (effects (font (size 1.27 1.27)) (justify left))
  3058. )
  3059. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 135.89 26.67 0)
  3060. (effects (font (size 1.27 1.27)) hide)
  3061. )
  3062. (property "Datasheet" "~" (at 135.89 26.67 0)
  3063. (effects (font (size 1.27 1.27)) hide)
  3064. )
  3065. (property "LCSC" "C1525" (at 135.89 26.67 0)
  3066. (effects (font (size 1.27 1.27)) hide)
  3067. )
  3068. (pin "1" (uuid 09c034d9-7edb-46fe-a01e-9cd003a2da61))
  3069. (pin "2" (uuid 9d030548-d555-45f8-8ba0-06a0f2480afc))
  3070. (instances
  3071. (project "Greaseweazle"
  3072. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3073. (reference "C92") (unit 1)
  3074. )
  3075. )
  3076. )
  3077. )
  3078. (symbol (lib_id "Device:R_Small") (at 121.92 137.16 0) (unit 1)
  3079. (in_bom yes) (on_board yes) (dnp no)
  3080. (uuid 29c3c356-515f-4654-9bd9-f28bf8dedd06)
  3081. (property "Reference" "R75" (at 123.19 135.89 0)
  3082. (effects (font (size 1.27 1.27)) (justify left))
  3083. )
  3084. (property "Value" "3.24k" (at 123.19 138.43 0)
  3085. (effects (font (size 1.27 1.27)) (justify left))
  3086. )
  3087. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 121.92 137.16 0)
  3088. (effects (font (size 1.27 1.27)) hide)
  3089. )
  3090. (property "Datasheet" "~" (at 121.92 137.16 0)
  3091. (effects (font (size 1.27 1.27)) hide)
  3092. )
  3093. (property "LCSC" "C11457" (at 121.92 137.16 0)
  3094. (effects (font (size 1.27 1.27)) hide)
  3095. )
  3096. (pin "1" (uuid 1a30bdde-150d-4ae6-8d8e-1fafcc75c94b))
  3097. (pin "2" (uuid f34717c0-771e-4e99-a28d-7ecf5151ec98))
  3098. (instances
  3099. (project "Greaseweazle"
  3100. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3101. (reference "R75") (unit 1)
  3102. )
  3103. )
  3104. )
  3105. )
  3106. (symbol (lib_id "power:PWR_FLAG") (at 74.93 22.86 0) (unit 1)
  3107. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3108. (uuid 2be7e7bd-d5ba-4c78-9e38-9ff398a01218)
  3109. (property "Reference" "#FLG0105" (at 74.93 20.955 0)
  3110. (effects (font (size 1.27 1.27)) hide)
  3111. )
  3112. (property "Value" "PWR_FLAG" (at 74.93 17.78 0)
  3113. (effects (font (size 1.27 1.27)))
  3114. )
  3115. (property "Footprint" "" (at 74.93 22.86 0)
  3116. (effects (font (size 1.27 1.27)) hide)
  3117. )
  3118. (property "Datasheet" "~" (at 74.93 22.86 0)
  3119. (effects (font (size 1.27 1.27)) hide)
  3120. )
  3121. (pin "1" (uuid 2b943ee0-e082-425a-9c2c-4f6006684b5c))
  3122. (instances
  3123. (project "Greaseweazle"
  3124. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3125. (reference "#FLG0105") (unit 1)
  3126. )
  3127. )
  3128. )
  3129. )
  3130. (symbol (lib_id "power:GND") (at 102.87 31.75 0) (unit 1)
  3131. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3132. (uuid 2c6db664-62f7-4acc-9702-c6cca00ac65c)
  3133. (property "Reference" "#PWR0241" (at 102.87 38.1 0)
  3134. (effects (font (size 1.27 1.27)) hide)
  3135. )
  3136. (property "Value" "GND" (at 102.87 36.83 0)
  3137. (effects (font (size 1.27 1.27)))
  3138. )
  3139. (property "Footprint" "" (at 102.87 31.75 0)
  3140. (effects (font (size 1.27 1.27)) hide)
  3141. )
  3142. (property "Datasheet" "" (at 102.87 31.75 0)
  3143. (effects (font (size 1.27 1.27)) hide)
  3144. )
  3145. (pin "1" (uuid 53870b3c-b384-45ca-8cad-785cdb8c3125))
  3146. (instances
  3147. (project "Greaseweazle"
  3148. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3149. (reference "#PWR0241") (unit 1)
  3150. )
  3151. )
  3152. )
  3153. )
  3154. (symbol (lib_id "74xGxx:74LVC2G04") (at 87.63 129.54 0) (unit 2)
  3155. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3156. (uuid 367c56f6-510c-4539-b2da-88ba506d8283)
  3157. (property "Reference" "U13" (at 86.995 121.285 0)
  3158. (effects (font (size 1.27 1.27)))
  3159. )
  3160. (property "Value" "74LVC2G04" (at 86.995 123.825 0)
  3161. (effects (font (size 1.27 1.27)))
  3162. )
  3163. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 87.63 129.54 0)
  3164. (effects (font (size 1.27 1.27)) hide)
  3165. )
  3166. (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (at 87.63 129.54 0)
  3167. (effects (font (size 1.27 1.27)) hide)
  3168. )
  3169. (property "LCSC" "C460538" (at 87.63 129.54 0)
  3170. (effects (font (size 1.27 1.27)) hide)
  3171. )
  3172. (pin "2" (uuid 762863ec-7289-479c-aff7-227b385591df))
  3173. (pin "5" (uuid 320acd92-7ad8-4994-a658-85d4c80bf2cf))
  3174. (pin "1" (uuid 6cec941f-4917-43b8-9a6b-1cc96708633b))
  3175. (pin "6" (uuid 7905cb2c-c5eb-4a96-bd21-1e1db8c77970))
  3176. (pin "3" (uuid 4099aef7-068c-428d-9eef-0e1dec2319e8))
  3177. (pin "4" (uuid 0116862e-7aac-4bcc-a22a-14c2527624b6))
  3178. (instances
  3179. (project "Greaseweazle"
  3180. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3181. (reference "U13") (unit 2)
  3182. )
  3183. )
  3184. )
  3185. )
  3186. (symbol (lib_id "Device:C_Small") (at 57.15 26.67 180) (unit 1)
  3187. (in_bom yes) (on_board yes) (dnp no)
  3188. (uuid 3e0c574b-35f2-46e3-9aac-c11407c0bc18)
  3189. (property "Reference" "C81" (at 57.15 24.13 0)
  3190. (effects (font (size 1.27 1.27)) (justify left))
  3191. )
  3192. (property "Value" "1uF" (at 57.15 31.75 90)
  3193. (effects (font (size 1.27 1.27)) (justify left))
  3194. )
  3195. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 57.15 26.67 0)
  3196. (effects (font (size 1.27 1.27)) hide)
  3197. )
  3198. (property "Datasheet" "~" (at 57.15 26.67 0)
  3199. (effects (font (size 1.27 1.27)) hide)
  3200. )
  3201. (property "LCSC" "C15849" (at 57.15 26.67 0)
  3202. (effects (font (size 1.27 1.27)) hide)
  3203. )
  3204. (pin "1" (uuid 7b6335b4-d886-4cbb-9e2f-43f45ad75341))
  3205. (pin "2" (uuid 25a18819-d59f-4bd5-bebb-5300aef05c23))
  3206. (instances
  3207. (project "Greaseweazle"
  3208. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3209. (reference "C81") (unit 1)
  3210. )
  3211. )
  3212. )
  3213. )
  3214. (symbol (lib_id "Device:C_Small") (at 35.56 26.67 180) (unit 1)
  3215. (in_bom yes) (on_board yes) (dnp no)
  3216. (uuid 415154e3-0b4d-4395-985d-8408ba5ca3d5)
  3217. (property "Reference" "C77" (at 35.56 24.13 0)
  3218. (effects (font (size 1.27 1.27)) (justify left))
  3219. )
  3220. (property "Value" "100nF" (at 34.29 29.21 0)
  3221. (effects (font (size 1.27 1.27)) (justify left))
  3222. )
  3223. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 35.56 26.67 0)
  3224. (effects (font (size 1.27 1.27)) hide)
  3225. )
  3226. (property "Datasheet" "~" (at 35.56 26.67 0)
  3227. (effects (font (size 1.27 1.27)) hide)
  3228. )
  3229. (property "LCSC" "C1525" (at 35.56 26.67 0)
  3230. (effects (font (size 1.27 1.27)) hide)
  3231. )
  3232. (pin "1" (uuid 6bb3ac34-9a2f-481a-8f70-3bfe24e5c9e6))
  3233. (pin "2" (uuid ff30ea58-80f3-40e0-b89c-357ddc7a69ef))
  3234. (instances
  3235. (project "Greaseweazle"
  3236. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3237. (reference "C77") (unit 1)
  3238. )
  3239. )
  3240. )
  3241. )
  3242. (symbol (lib_id "Device:C_Small") (at 50.8 26.67 180) (unit 1)
  3243. (in_bom yes) (on_board yes) (dnp no)
  3244. (uuid 41a9d0f7-b660-448e-bfdb-826542775cd5)
  3245. (property "Reference" "C80" (at 50.8 24.13 0)
  3246. (effects (font (size 1.27 1.27)) (justify left))
  3247. )
  3248. (property "Value" "1uF" (at 50.8 31.75 90)
  3249. (effects (font (size 1.27 1.27)) (justify left))
  3250. )
  3251. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 50.8 26.67 0)
  3252. (effects (font (size 1.27 1.27)) hide)
  3253. )
  3254. (property "Datasheet" "~" (at 50.8 26.67 0)
  3255. (effects (font (size 1.27 1.27)) hide)
  3256. )
  3257. (property "LCSC" "C15849" (at 50.8 26.67 0)
  3258. (effects (font (size 1.27 1.27)) hide)
  3259. )
  3260. (pin "1" (uuid 1deaa61e-3273-4c13-af5e-5148fdc28c77))
  3261. (pin "2" (uuid d4ed563e-29e0-44f5-90a1-fc5e68c4efa4))
  3262. (instances
  3263. (project "Greaseweazle"
  3264. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3265. (reference "C80") (unit 1)
  3266. )
  3267. )
  3268. )
  3269. )
  3270. (symbol (lib_id "power:GND") (at 58.42 175.26 0) (unit 1)
  3271. (in_bom yes) (on_board yes) (dnp no)
  3272. (uuid 436f66d0-8540-456a-8d95-6afa125f4ad6)
  3273. (property "Reference" "#PWR0255" (at 58.42 181.61 0)
  3274. (effects (font (size 1.27 1.27)) hide)
  3275. )
  3276. (property "Value" "GND" (at 58.547 179.6542 0)
  3277. (effects (font (size 1.27 1.27)))
  3278. )
  3279. (property "Footprint" "" (at 58.42 175.26 0)
  3280. (effects (font (size 1.27 1.27)) hide)
  3281. )
  3282. (property "Datasheet" "" (at 58.42 175.26 0)
  3283. (effects (font (size 1.27 1.27)) hide)
  3284. )
  3285. (pin "1" (uuid 55f42b88-cc91-459c-97d6-dfc287af35a7))
  3286. (instances
  3287. (project "Greaseweazle"
  3288. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3289. (reference "#PWR0255") (unit 1)
  3290. )
  3291. )
  3292. )
  3293. )
  3294. (symbol (lib_id "power:GND") (at 142.24 130.81 0) (unit 1)
  3295. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3296. (uuid 45481b81-958c-402d-91eb-6b05620f4dce)
  3297. (property "Reference" "#PWR0221" (at 142.24 137.16 0)
  3298. (effects (font (size 1.27 1.27)) hide)
  3299. )
  3300. (property "Value" "GND" (at 142.24 135.89 0)
  3301. (effects (font (size 1.27 1.27)))
  3302. )
  3303. (property "Footprint" "" (at 142.24 130.81 0)
  3304. (effects (font (size 1.27 1.27)) hide)
  3305. )
  3306. (property "Datasheet" "" (at 142.24 130.81 0)
  3307. (effects (font (size 1.27 1.27)) hide)
  3308. )
  3309. (pin "1" (uuid 00e87a7e-de0b-4855-a6cb-b5b1ecddedaf))
  3310. (instances
  3311. (project "Greaseweazle"
  3312. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3313. (reference "#PWR0221") (unit 1)
  3314. )
  3315. )
  3316. )
  3317. )
  3318. (symbol (lib_id "power:GND") (at 125.73 31.75 0) (unit 1)
  3319. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3320. (uuid 4ca8148d-9c7e-41fc-aebf-4361f143746c)
  3321. (property "Reference" "#PWR0242" (at 125.73 38.1 0)
  3322. (effects (font (size 1.27 1.27)) hide)
  3323. )
  3324. (property "Value" "GND" (at 125.73 36.83 0)
  3325. (effects (font (size 1.27 1.27)))
  3326. )
  3327. (property "Footprint" "" (at 125.73 31.75 0)
  3328. (effects (font (size 1.27 1.27)) hide)
  3329. )
  3330. (property "Datasheet" "" (at 125.73 31.75 0)
  3331. (effects (font (size 1.27 1.27)) hide)
  3332. )
  3333. (pin "1" (uuid 273ef5d0-6eab-4f5f-9cff-b97a3200e64b))
  3334. (instances
  3335. (project "Greaseweazle"
  3336. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3337. (reference "#PWR0242") (unit 1)
  3338. )
  3339. )
  3340. )
  3341. )
  3342. (symbol (lib_id "Device:C_Small") (at 93.98 26.67 180) (unit 1)
  3343. (in_bom yes) (on_board yes) (dnp no)
  3344. (uuid 4d088351-f858-4705-8851-088dbf6ebc8d)
  3345. (property "Reference" "C85" (at 93.98 24.13 0)
  3346. (effects (font (size 1.27 1.27)) (justify left))
  3347. )
  3348. (property "Value" "6800pF" (at 93.98 31.75 90)
  3349. (effects (font (size 1.27 1.27)) (justify left))
  3350. )
  3351. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 93.98 26.67 0)
  3352. (effects (font (size 1.27 1.27)) hide)
  3353. )
  3354. (property "Datasheet" "~" (at 93.98 26.67 0)
  3355. (effects (font (size 1.27 1.27)) hide)
  3356. )
  3357. (property "LCSC" "C1542" (at 93.98 26.67 0)
  3358. (effects (font (size 1.27 1.27)) hide)
  3359. )
  3360. (pin "1" (uuid 8d02811d-d0b2-4651-a2db-1d3a48f19234))
  3361. (pin "2" (uuid adf61c07-641c-4716-9d49-4911a944fa48))
  3362. (instances
  3363. (project "Greaseweazle"
  3364. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3365. (reference "C85") (unit 1)
  3366. )
  3367. )
  3368. )
  3369. )
  3370. (symbol (lib_id "power:GND") (at 95.885 121.285 0) (unit 1)
  3371. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3372. (uuid 4d731e4f-ca60-4d17-b9ef-1fddddbf0d4c)
  3373. (property "Reference" "#PWR0260" (at 95.885 127.635 0)
  3374. (effects (font (size 1.27 1.27)) hide)
  3375. )
  3376. (property "Value" "GND" (at 95.885 125.73 0)
  3377. (effects (font (size 1.27 1.27)))
  3378. )
  3379. (property "Footprint" "" (at 95.885 121.285 0)
  3380. (effects (font (size 1.27 1.27)) hide)
  3381. )
  3382. (property "Datasheet" "" (at 95.885 121.285 0)
  3383. (effects (font (size 1.27 1.27)) hide)
  3384. )
  3385. (pin "1" (uuid c5c4ada3-b741-4b03-9b3d-1cfc97161ce2))
  3386. (instances
  3387. (project "Greaseweazle"
  3388. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3389. (reference "#PWR0260") (unit 1)
  3390. )
  3391. )
  3392. )
  3393. )
  3394. (symbol (lib_id "Device:C_Small") (at 140.97 26.67 0) (mirror x) (unit 1)
  3395. (in_bom yes) (on_board yes) (dnp no)
  3396. (uuid 4d9a9552-cfd6-498b-b548-ce5e6e4a1592)
  3397. (property "Reference" "C93" (at 137.16 24.13 0)
  3398. (effects (font (size 1.27 1.27)) (justify left))
  3399. )
  3400. (property "Value" "1uF" (at 140.97 31.75 90)
  3401. (effects (font (size 1.27 1.27)) (justify left))
  3402. )
  3403. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 140.97 26.67 0)
  3404. (effects (font (size 1.27 1.27)) hide)
  3405. )
  3406. (property "Datasheet" "~" (at 140.97 26.67 0)
  3407. (effects (font (size 1.27 1.27)) hide)
  3408. )
  3409. (property "LCSC" "C15849" (at 140.97 26.67 0)
  3410. (effects (font (size 1.27 1.27)) hide)
  3411. )
  3412. (pin "1" (uuid 996cbc27-2e83-4daa-a4d8-44719e3a4f25))
  3413. (pin "2" (uuid af3c39e9-f3fc-4b7a-b698-e1987181e9e3))
  3414. (instances
  3415. (project "Greaseweazle"
  3416. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3417. (reference "C93") (unit 1)
  3418. )
  3419. )
  3420. )
  3421. )
  3422. (symbol (lib_id "Device:R_Small") (at 208.28 78.74 270) (unit 1)
  3423. (in_bom yes) (on_board yes) (dnp no)
  3424. (uuid 4e231a97-8b64-41b1-8ccf-ea7da127c2e1)
  3425. (property "Reference" "R95" (at 205.994 77.47 90)
  3426. (effects (font (size 1.27 1.27)) (justify right))
  3427. )
  3428. (property "Value" "33" (at 213.36 77.47 90)
  3429. (effects (font (size 1.27 1.27)) (justify right))
  3430. )
  3431. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 78.74 0)
  3432. (effects (font (size 1.27 1.27)) hide)
  3433. )
  3434. (property "Datasheet" "~" (at 208.28 78.74 0)
  3435. (effects (font (size 1.27 1.27)) hide)
  3436. )
  3437. (property "LCSC" "C25105" (at 208.28 78.74 0)
  3438. (effects (font (size 1.27 1.27)) hide)
  3439. )
  3440. (pin "1" (uuid cf4aeeac-3e10-4a7a-8a94-8cb0e5fcdde3))
  3441. (pin "2" (uuid 6d209a94-0a57-451c-8275-a1c9d577d208))
  3442. (instances
  3443. (project "Greaseweazle"
  3444. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3445. (reference "R95") (unit 1)
  3446. )
  3447. )
  3448. )
  3449. )
  3450. (symbol (lib_id "power:GND") (at 209.55 151.13 0) (unit 1)
  3451. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3452. (uuid 4ecffab0-fd63-4249-9eaf-9c17f9c8dfa7)
  3453. (property "Reference" "#PWR0227" (at 209.55 157.48 0)
  3454. (effects (font (size 1.27 1.27)) hide)
  3455. )
  3456. (property "Value" "GND" (at 209.55 156.21 0)
  3457. (effects (font (size 1.27 1.27)))
  3458. )
  3459. (property "Footprint" "" (at 209.55 151.13 0)
  3460. (effects (font (size 1.27 1.27)) hide)
  3461. )
  3462. (property "Datasheet" "" (at 209.55 151.13 0)
  3463. (effects (font (size 1.27 1.27)) hide)
  3464. )
  3465. (pin "1" (uuid 964369ab-d23a-4dbe-8940-9458bff3e0bc))
  3466. (instances
  3467. (project "Greaseweazle"
  3468. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3469. (reference "#PWR0227") (unit 1)
  3470. )
  3471. )
  3472. )
  3473. )
  3474. (symbol (lib_id "Device:R_Small") (at 129.54 60.96 180) (unit 1)
  3475. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3476. (uuid 51247e4d-64f3-4cc9-8851-1cb58496eecd)
  3477. (property "Reference" "R79" (at 132.08 59.6899 0)
  3478. (effects (font (size 1.27 1.27)) (justify right))
  3479. )
  3480. (property "Value" "10k" (at 132.08 62.2299 0)
  3481. (effects (font (size 1.27 1.27)) (justify right))
  3482. )
  3483. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 129.54 60.96 0)
  3484. (effects (font (size 1.27 1.27)) hide)
  3485. )
  3486. (property "Datasheet" "~" (at 129.54 60.96 0)
  3487. (effects (font (size 1.27 1.27)) hide)
  3488. )
  3489. (property "LCSC" "C25744" (at 129.54 60.96 0)
  3490. (effects (font (size 1.27 1.27)) hide)
  3491. )
  3492. (pin "1" (uuid 1d45fbc9-9250-4be7-9ba6-06c4c21daf90))
  3493. (pin "2" (uuid 2f797aeb-2962-4722-8839-166b90b41bb4))
  3494. (instances
  3495. (project "Greaseweazle"
  3496. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3497. (reference "R79") (unit 1)
  3498. )
  3499. )
  3500. )
  3501. )
  3502. (symbol (lib_id "Device:Crystal_GND24") (at 135.89 121.92 180) (unit 1)
  3503. (in_bom yes) (on_board yes) (dnp no)
  3504. (uuid 534d131b-fa77-404d-a3be-44fb0807597e)
  3505. (property "Reference" "Y1" (at 132.08 116.84 0)
  3506. (effects (font (size 1.27 1.27)))
  3507. )
  3508. (property "Value" "30 MHz" (at 142.24 116.84 0)
  3509. (effects (font (size 1.27 1.27)))
  3510. )
  3511. (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm" (at 135.89 121.92 0)
  3512. (effects (font (size 1.27 1.27)) hide)
  3513. )
  3514. (property "Datasheet" "~" (at 135.89 121.92 0)
  3515. (effects (font (size 1.27 1.27)) hide)
  3516. )
  3517. (property "LCSC" "C252267" (at 135.89 121.92 0)
  3518. (effects (font (size 1.27 1.27)) hide)
  3519. )
  3520. (pin "1" (uuid fd5b893b-201b-4909-ad63-7075c0434de3))
  3521. (pin "2" (uuid 13e62dbe-4e1e-4596-898d-a9a83c41f443))
  3522. (pin "3" (uuid db5026b5-e31a-4958-a926-0eeb764190dd))
  3523. (pin "4" (uuid ab22813c-9201-440c-b340-5b49d15a405b))
  3524. (instances
  3525. (project "Greaseweazle"
  3526. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3527. (reference "Y1") (unit 1)
  3528. )
  3529. )
  3530. )
  3531. )
  3532. (symbol (lib_id "Switch:SW_SPST") (at 50.8 173.99 0) (unit 1)
  3533. (in_bom yes) (on_board yes) (dnp no)
  3534. (uuid 54df2ba8-5bb7-4320-a2d4-f98aeb31a817)
  3535. (property "Reference" "SW3" (at 50.8 168.021 0)
  3536. (effects (font (size 1.27 1.27)))
  3537. )
  3538. (property "Value" "RESET" (at 50.8 170.3324 0)
  3539. (effects (font (size 1.27 1.27)))
  3540. )
  3541. (property "Footprint" "Greaseweazle:SW_Push_1P1T_NO_CK_K2-1102SP-C4SC-04" (at 50.8 173.99 0)
  3542. (effects (font (size 1.27 1.27)) hide)
  3543. )
  3544. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811082113_Korean-Hroparts-Elec-K2-1102SP-C4SC-04_C127509.pdf" (at 50.8 173.99 0)
  3545. (effects (font (size 1.27 1.27)) hide)
  3546. )
  3547. (property "LCSC" "C127509" (at 50.8 173.99 0)
  3548. (effects (font (size 1.27 1.27)) hide)
  3549. )
  3550. (pin "1" (uuid a0213136-9e9d-43a0-a0ba-67d46814ec29))
  3551. (pin "2" (uuid 0fd2a1bd-2124-40b7-9457-02180c3ea74f))
  3552. (instances
  3553. (project "Greaseweazle"
  3554. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3555. (reference "SW3") (unit 1)
  3556. )
  3557. )
  3558. )
  3559. )
  3560. (symbol (lib_id "power:+3V3") (at 121.92 133.35 0) (unit 1)
  3561. (in_bom yes) (on_board yes) (dnp no)
  3562. (uuid 5cfc5aa4-5938-4912-a168-63dcbd43fd24)
  3563. (property "Reference" "#PWR0228" (at 121.92 137.16 0)
  3564. (effects (font (size 1.27 1.27)) hide)
  3565. )
  3566. (property "Value" "+3V3" (at 118.11 130.81 0)
  3567. (effects (font (size 1.27 1.27)))
  3568. )
  3569. (property "Footprint" "" (at 121.92 133.35 0)
  3570. (effects (font (size 1.27 1.27)) hide)
  3571. )
  3572. (property "Datasheet" "" (at 121.92 133.35 0)
  3573. (effects (font (size 1.27 1.27)) hide)
  3574. )
  3575. (pin "1" (uuid ee121e32-5ea0-48c7-a171-a437b54565ea))
  3576. (instances
  3577. (project "Greaseweazle"
  3578. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3579. (reference "#PWR0228") (unit 1)
  3580. )
  3581. )
  3582. )
  3583. )
  3584. (symbol (lib_id "power:GND") (at 156.21 143.51 0) (unit 1)
  3585. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3586. (uuid 6258cfdd-be98-4049-94da-6c84ef897344)
  3587. (property "Reference" "#PWR0246" (at 156.21 149.86 0)
  3588. (effects (font (size 1.27 1.27)) hide)
  3589. )
  3590. (property "Value" "GND" (at 156.21 148.59 0)
  3591. (effects (font (size 1.27 1.27)))
  3592. )
  3593. (property "Footprint" "" (at 156.21 143.51 0)
  3594. (effects (font (size 1.27 1.27)) hide)
  3595. )
  3596. (property "Datasheet" "" (at 156.21 143.51 0)
  3597. (effects (font (size 1.27 1.27)) hide)
  3598. )
  3599. (pin "1" (uuid c5b584a3-be2d-4631-a2c3-ba2f1617b9c6))
  3600. (instances
  3601. (project "Greaseweazle"
  3602. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3603. (reference "#PWR0246") (unit 1)
  3604. )
  3605. )
  3606. )
  3607. )
  3608. (symbol (lib_id "power:+3V3") (at 201.93 30.48 0) (unit 1)
  3609. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3610. (uuid 67ff579f-1797-45a2-97ef-2719922260b6)
  3611. (property "Reference" "#PWR0217" (at 201.93 34.29 0)
  3612. (effects (font (size 1.27 1.27)) hide)
  3613. )
  3614. (property "Value" "+3V3" (at 201.93 25.4 0)
  3615. (effects (font (size 1.27 1.27)))
  3616. )
  3617. (property "Footprint" "" (at 201.93 30.48 0)
  3618. (effects (font (size 1.27 1.27)) hide)
  3619. )
  3620. (property "Datasheet" "" (at 201.93 30.48 0)
  3621. (effects (font (size 1.27 1.27)) hide)
  3622. )
  3623. (pin "1" (uuid 0d31186d-5144-495b-8912-c85acbd0a23f))
  3624. (instances
  3625. (project "Greaseweazle"
  3626. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3627. (reference "#PWR0217") (unit 1)
  3628. )
  3629. )
  3630. )
  3631. )
  3632. (symbol (lib_id "Device:R_Small") (at 143.51 56.515 180) (unit 1)
  3633. (in_bom yes) (on_board yes) (dnp no)
  3634. (uuid 68c972c1-d236-44d7-ba5d-fc564029f0e5)
  3635. (property "Reference" "R80" (at 138.43 53.975 0)
  3636. (effects (font (size 1.27 1.27)) (justify right))
  3637. )
  3638. (property "Value" "10k" (at 138.43 57.785 0)
  3639. (effects (font (size 1.27 1.27)) (justify right))
  3640. )
  3641. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 143.51 56.515 0)
  3642. (effects (font (size 1.27 1.27)) hide)
  3643. )
  3644. (property "Datasheet" "~" (at 143.51 56.515 0)
  3645. (effects (font (size 1.27 1.27)) hide)
  3646. )
  3647. (property "LCSC" "C25744" (at 143.51 56.515 0)
  3648. (effects (font (size 1.27 1.27)) hide)
  3649. )
  3650. (pin "1" (uuid 6816e346-739f-4394-bf2e-0f4d2f589a9f))
  3651. (pin "2" (uuid c3edc436-c270-4b27-a32c-0e406d6896e0))
  3652. (instances
  3653. (project "Greaseweazle"
  3654. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3655. (reference "R80") (unit 1)
  3656. )
  3657. )
  3658. )
  3659. )
  3660. (symbol (lib_id "Device:R_Small") (at 208.28 68.58 270) (unit 1)
  3661. (in_bom yes) (on_board yes) (dnp no)
  3662. (uuid 6c72395a-5432-4c20-a5d5-daea076c49e2)
  3663. (property "Reference" "R91" (at 205.74 67.31 90)
  3664. (effects (font (size 1.27 1.27)) (justify right))
  3665. )
  3666. (property "Value" "33" (at 213.36 67.31 90)
  3667. (effects (font (size 1.27 1.27)) (justify right))
  3668. )
  3669. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 68.58 0)
  3670. (effects (font (size 1.27 1.27)) hide)
  3671. )
  3672. (property "Datasheet" "~" (at 208.28 68.58 0)
  3673. (effects (font (size 1.27 1.27)) hide)
  3674. )
  3675. (property "LCSC" "C25105" (at 208.28 68.58 0)
  3676. (effects (font (size 1.27 1.27)) hide)
  3677. )
  3678. (pin "1" (uuid e2d0e113-c602-427b-9537-200441c746bd))
  3679. (pin "2" (uuid f0a340c9-b422-4db2-aba8-3ee7c19556a2))
  3680. (instances
  3681. (project "Greaseweazle"
  3682. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3683. (reference "R91") (unit 1)
  3684. )
  3685. )
  3686. )
  3687. )
  3688. (symbol (lib_id "Device:R_Small") (at 115.57 137.16 0) (unit 1)
  3689. (in_bom yes) (on_board yes) (dnp no)
  3690. (uuid 70509a60-a861-47e4-b268-49df395d9006)
  3691. (property "Reference" "R81" (at 110.49 135.89 0)
  3692. (effects (font (size 1.27 1.27)) (justify left))
  3693. )
  3694. (property "Value" "3.24k" (at 109.22 138.43 0)
  3695. (effects (font (size 1.27 1.27)) (justify left))
  3696. )
  3697. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 115.57 137.16 0)
  3698. (effects (font (size 1.27 1.27)) hide)
  3699. )
  3700. (property "Datasheet" "~" (at 115.57 137.16 0)
  3701. (effects (font (size 1.27 1.27)) hide)
  3702. )
  3703. (property "LCSC" "C11457" (at 115.57 137.16 0)
  3704. (effects (font (size 1.27 1.27)) hide)
  3705. )
  3706. (pin "1" (uuid a55c59e2-307e-4ae0-b766-25386a40f053))
  3707. (pin "2" (uuid bdabf060-25c1-4dd1-8045-a40ddc2321b8))
  3708. (instances
  3709. (project "Greaseweazle"
  3710. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3711. (reference "R81") (unit 1)
  3712. )
  3713. )
  3714. )
  3715. )
  3716. (symbol (lib_id "Device:R_Small") (at 44.45 167.64 180) (unit 1)
  3717. (in_bom yes) (on_board yes) (dnp no)
  3718. (uuid 717766a6-f88f-481f-9de7-c5fc5df0c2ba)
  3719. (property "Reference" "R82" (at 39.37 165.1 0)
  3720. (effects (font (size 1.27 1.27)) (justify right))
  3721. )
  3722. (property "Value" "10k" (at 39.37 168.91 0)
  3723. (effects (font (size 1.27 1.27)) (justify right))
  3724. )
  3725. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 44.45 167.64 0)
  3726. (effects (font (size 1.27 1.27)) hide)
  3727. )
  3728. (property "Datasheet" "~" (at 44.45 167.64 0)
  3729. (effects (font (size 1.27 1.27)) hide)
  3730. )
  3731. (property "LCSC" "C25744" (at 44.45 167.64 0)
  3732. (effects (font (size 1.27 1.27)) hide)
  3733. )
  3734. (pin "1" (uuid 340f9dd6-6205-4c4a-b451-866a1b4294a5))
  3735. (pin "2" (uuid ffaf90f1-f1a2-4e5e-b0ae-b917dafff1f1))
  3736. (instances
  3737. (project "Greaseweazle"
  3738. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3739. (reference "R82") (unit 1)
  3740. )
  3741. )
  3742. )
  3743. )
  3744. (symbol (lib_id "Device:C_Small") (at 40.64 26.67 180) (unit 1)
  3745. (in_bom yes) (on_board yes) (dnp no)
  3746. (uuid 719c630a-63ee-4403-be6b-abcb945c1232)
  3747. (property "Reference" "C78" (at 40.64 24.13 0)
  3748. (effects (font (size 1.27 1.27)) (justify left))
  3749. )
  3750. (property "Value" "100nF" (at 40.64 31.75 90)
  3751. (effects (font (size 1.27 1.27)) (justify left))
  3752. )
  3753. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 40.64 26.67 0)
  3754. (effects (font (size 1.27 1.27)) hide)
  3755. )
  3756. (property "Datasheet" "~" (at 40.64 26.67 0)
  3757. (effects (font (size 1.27 1.27)) hide)
  3758. )
  3759. (property "LCSC" "C1525" (at 40.64 26.67 0)
  3760. (effects (font (size 1.27 1.27)) hide)
  3761. )
  3762. (pin "1" (uuid b56cef24-aa98-471f-bd8e-4df453616b5b))
  3763. (pin "2" (uuid f7cb1f45-eaae-4722-b29a-9b750638e0f1))
  3764. (instances
  3765. (project "Greaseweazle"
  3766. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3767. (reference "C78") (unit 1)
  3768. )
  3769. )
  3770. )
  3771. )
  3772. (symbol (lib_id "Device:R_Small") (at 208.28 73.66 270) (unit 1)
  3773. (in_bom yes) (on_board yes) (dnp no)
  3774. (uuid 760ee491-0234-4c56-8c7c-df5c142a853f)
  3775. (property "Reference" "R93" (at 205.74 72.644 90)
  3776. (effects (font (size 1.27 1.27)) (justify right))
  3777. )
  3778. (property "Value" "33" (at 213.36 72.644 90)
  3779. (effects (font (size 1.27 1.27)) (justify right))
  3780. )
  3781. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 73.66 0)
  3782. (effects (font (size 1.27 1.27)) hide)
  3783. )
  3784. (property "Datasheet" "~" (at 208.28 73.66 0)
  3785. (effects (font (size 1.27 1.27)) hide)
  3786. )
  3787. (property "LCSC" "C25105" (at 208.28 73.66 0)
  3788. (effects (font (size 1.27 1.27)) hide)
  3789. )
  3790. (pin "1" (uuid a2bc0c34-4f53-428b-bed3-7fb23eddb40e))
  3791. (pin "2" (uuid 8fc34155-300b-41a8-ad45-3c0314acd23b))
  3792. (instances
  3793. (project "Greaseweazle"
  3794. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3795. (reference "R93") (unit 1)
  3796. )
  3797. )
  3798. )
  3799. )
  3800. (symbol (lib_id "Device:R_Small") (at 208.28 60.96 270) (unit 1)
  3801. (in_bom yes) (on_board yes) (dnp no)
  3802. (uuid 774d6f1c-4dd6-4970-bc0d-73d590f92396)
  3803. (property "Reference" "R88" (at 205.74 59.69 90)
  3804. (effects (font (size 1.27 1.27)) (justify right))
  3805. )
  3806. (property "Value" "33" (at 213.36 59.69 90)
  3807. (effects (font (size 1.27 1.27)) (justify right))
  3808. )
  3809. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 60.96 0)
  3810. (effects (font (size 1.27 1.27)) hide)
  3811. )
  3812. (property "Datasheet" "~" (at 208.28 60.96 0)
  3813. (effects (font (size 1.27 1.27)) hide)
  3814. )
  3815. (property "LCSC" "C25105" (at 208.28 60.96 0)
  3816. (effects (font (size 1.27 1.27)) hide)
  3817. )
  3818. (pin "1" (uuid a881b4eb-a9d1-4e3e-ba56-fedeb9b9a86b))
  3819. (pin "2" (uuid 76cfae43-b7b4-4197-9b4f-687b872f25c8))
  3820. (instances
  3821. (project "Greaseweazle"
  3822. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3823. (reference "R88") (unit 1)
  3824. )
  3825. )
  3826. )
  3827. )
  3828. (symbol (lib_id "Device:D_Schottky") (at 80.01 76.2 0) (unit 1)
  3829. (in_bom yes) (on_board yes) (dnp no)
  3830. (uuid 77c8ecad-2afb-4efe-9ccd-5517d87ebe40)
  3831. (property "Reference" "D17" (at 77.47 72.39 0)
  3832. (effects (font (size 1.27 1.27)) (justify left))
  3833. )
  3834. (property "Value" "1N5819W" (at 76.2 80.01 0)
  3835. (effects (font (size 1.27 1.27)) (justify left))
  3836. )
  3837. (property "Footprint" "Diode_SMD:D_SOD-123" (at 80.01 76.2 0)
  3838. (effects (font (size 1.27 1.27)) hide)
  3839. )
  3840. (property "Datasheet" "~" (at 80.01 76.2 0)
  3841. (effects (font (size 1.27 1.27)) hide)
  3842. )
  3843. (property "LCSC" "C963381" (at 80.01 76.2 90)
  3844. (effects (font (size 1.27 1.27)) hide)
  3845. )
  3846. (pin "1" (uuid bb1bb82b-12d3-478c-ab4b-fc4c10596906))
  3847. (pin "2" (uuid a3d1f9d6-cb20-48de-9e6a-2b09166327ef))
  3848. (instances
  3849. (project "Greaseweazle"
  3850. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3851. (reference "D17") (unit 1)
  3852. )
  3853. )
  3854. )
  3855. )
  3856. (symbol (lib_id "Device:R_Small") (at 208.28 58.42 270) (unit 1)
  3857. (in_bom yes) (on_board yes) (dnp no)
  3858. (uuid 79ab4f67-a09e-4106-bbd3-c81b95beefc0)
  3859. (property "Reference" "R87" (at 205.74 57.15 90)
  3860. (effects (font (size 1.27 1.27)) (justify right))
  3861. )
  3862. (property "Value" "33" (at 213.36 57.15 90)
  3863. (effects (font (size 1.27 1.27)) (justify right))
  3864. )
  3865. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 58.42 0)
  3866. (effects (font (size 1.27 1.27)) hide)
  3867. )
  3868. (property "Datasheet" "~" (at 208.28 58.42 0)
  3869. (effects (font (size 1.27 1.27)) hide)
  3870. )
  3871. (property "LCSC" "C25105" (at 208.28 58.42 0)
  3872. (effects (font (size 1.27 1.27)) hide)
  3873. )
  3874. (pin "1" (uuid 3eb20a21-c45e-4637-b326-864a3e8a7056))
  3875. (pin "2" (uuid edc9f17b-d668-4d6b-87c2-e982486a976d))
  3876. (instances
  3877. (project "Greaseweazle"
  3878. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3879. (reference "R87") (unit 1)
  3880. )
  3881. )
  3882. )
  3883. )
  3884. (symbol (lib_id "Device:C_Small") (at 110.49 88.9 90) (unit 1)
  3885. (in_bom yes) (on_board yes) (dnp no)
  3886. (uuid 7b91f57c-cb55-4826-abf2-3818754597d9)
  3887. (property "Reference" "C73" (at 109.3216 86.5632 90)
  3888. (effects (font (size 1.27 1.27)) (justify left))
  3889. )
  3890. (property "Value" "100nF" (at 118.11 86.36 90)
  3891. (effects (font (size 1.27 1.27)) (justify left))
  3892. )
  3893. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 110.49 88.9 0)
  3894. (effects (font (size 1.27 1.27)) hide)
  3895. )
  3896. (property "Datasheet" "~" (at 110.49 88.9 0)
  3897. (effects (font (size 1.27 1.27)) hide)
  3898. )
  3899. (property "LCSC" "C1525" (at 110.49 88.9 0)
  3900. (effects (font (size 1.27 1.27)) hide)
  3901. )
  3902. (pin "1" (uuid 0b8516f7-74c0-470c-ac94-55e9e070cab8))
  3903. (pin "2" (uuid 01205be1-00e2-4937-856d-c1021ac09a58))
  3904. (instances
  3905. (project "Greaseweazle"
  3906. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3907. (reference "C73") (unit 1)
  3908. )
  3909. )
  3910. )
  3911. )
  3912. (symbol (lib_id "Device:R_Small") (at 208.28 50.8 270) (unit 1)
  3913. (in_bom yes) (on_board yes) (dnp no)
  3914. (uuid 8301f38d-c178-492c-bf4b-301332f291f8)
  3915. (property "Reference" "R84" (at 205.74 49.53 90)
  3916. (effects (font (size 1.27 1.27)) (justify right))
  3917. )
  3918. (property "Value" "33" (at 213.36 49.53 90)
  3919. (effects (font (size 1.27 1.27)) (justify right))
  3920. )
  3921. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 50.8 0)
  3922. (effects (font (size 1.27 1.27)) hide)
  3923. )
  3924. (property "Datasheet" "~" (at 208.28 50.8 0)
  3925. (effects (font (size 1.27 1.27)) hide)
  3926. )
  3927. (property "LCSC" "C25105" (at 208.28 50.8 0)
  3928. (effects (font (size 1.27 1.27)) hide)
  3929. )
  3930. (pin "1" (uuid 1a254ed8-94db-485e-ab02-d5f9bc1a815a))
  3931. (pin "2" (uuid 40160b13-f596-443a-8dd6-513227aefd1c))
  3932. (instances
  3933. (project "Greaseweazle"
  3934. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3935. (reference "R84") (unit 1)
  3936. )
  3937. )
  3938. )
  3939. )
  3940. (symbol (lib_id "power:GND") (at 129.54 130.81 0) (unit 1)
  3941. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3942. (uuid 84bdff7a-5f16-44cb-bcd0-c7a0a2a826b3)
  3943. (property "Reference" "#PWR0220" (at 129.54 137.16 0)
  3944. (effects (font (size 1.27 1.27)) hide)
  3945. )
  3946. (property "Value" "GND" (at 129.54 135.89 0)
  3947. (effects (font (size 1.27 1.27)))
  3948. )
  3949. (property "Footprint" "" (at 129.54 130.81 0)
  3950. (effects (font (size 1.27 1.27)) hide)
  3951. )
  3952. (property "Datasheet" "" (at 129.54 130.81 0)
  3953. (effects (font (size 1.27 1.27)) hide)
  3954. )
  3955. (pin "1" (uuid 2af5da51-108f-423c-b812-af143639716b))
  3956. (instances
  3957. (project "Greaseweazle"
  3958. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3959. (reference "#PWR0220") (unit 1)
  3960. )
  3961. )
  3962. )
  3963. )
  3964. (symbol (lib_id "Device:R_Small") (at 156.21 139.7 180) (unit 1)
  3965. (in_bom yes) (on_board yes) (dnp no)
  3966. (uuid 85b2e19e-b45a-40ca-b4ab-a142e19b1bb5)
  3967. (property "Reference" "R76" (at 157.48 138.43 0)
  3968. (effects (font (size 1.27 1.27)) (justify right))
  3969. )
  3970. (property "Value" "10k" (at 157.48 140.97 0)
  3971. (effects (font (size 1.27 1.27)) (justify right))
  3972. )
  3973. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 156.21 139.7 0)
  3974. (effects (font (size 1.27 1.27)) hide)
  3975. )
  3976. (property "Datasheet" "~" (at 156.21 139.7 0)
  3977. (effects (font (size 1.27 1.27)) hide)
  3978. )
  3979. (property "LCSC" "C25744" (at 156.21 139.7 0)
  3980. (effects (font (size 1.27 1.27)) hide)
  3981. )
  3982. (pin "1" (uuid 49bd5577-d6ca-4757-9497-a738576488a8))
  3983. (pin "2" (uuid 83a09c15-3425-4a8e-b677-c2f5fb5a43b0))
  3984. (instances
  3985. (project "Greaseweazle"
  3986. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  3987. (reference "R76") (unit 1)
  3988. )
  3989. )
  3990. )
  3991. )
  3992. (symbol (lib_id "Device:C_Small") (at 142.24 127 0) (unit 1)
  3993. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  3994. (uuid 87c067ed-7584-46ea-a4ea-b71ec597ad3f)
  3995. (property "Reference" "C76" (at 144.78 125.7362 0)
  3996. (effects (font (size 1.27 1.27)) (justify left))
  3997. )
  3998. (property "Value" "18pF" (at 144.78 128.2762 0)
  3999. (effects (font (size 1.27 1.27)) (justify left))
  4000. )
  4001. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 142.24 127 0)
  4002. (effects (font (size 1.27 1.27)) hide)
  4003. )
  4004. (property "Datasheet" "~" (at 142.24 127 0)
  4005. (effects (font (size 1.27 1.27)) hide)
  4006. )
  4007. (property "LCSC" "C1549" (at 142.24 127 0)
  4008. (effects (font (size 1.27 1.27)) hide)
  4009. )
  4010. (pin "1" (uuid a9bd4c43-9fd5-438f-903c-62a058ee5694))
  4011. (pin "2" (uuid 7d5099ec-c28e-4ae5-93c3-585f35a8600e))
  4012. (instances
  4013. (project "Greaseweazle"
  4014. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4015. (reference "C76") (unit 1)
  4016. )
  4017. )
  4018. )
  4019. )
  4020. (symbol (lib_id "power:GND") (at 44.45 139.7 0) (unit 1)
  4021. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4022. (uuid 88431cd8-35c8-4f27-a56c-98e34ac94dee)
  4023. (property "Reference" "#PWR0218" (at 44.45 146.05 0)
  4024. (effects (font (size 1.27 1.27)) hide)
  4025. )
  4026. (property "Value" "GND" (at 44.45 144.78 0)
  4027. (effects (font (size 1.27 1.27)))
  4028. )
  4029. (property "Footprint" "" (at 44.45 139.7 0)
  4030. (effects (font (size 1.27 1.27)) hide)
  4031. )
  4032. (property "Datasheet" "" (at 44.45 139.7 0)
  4033. (effects (font (size 1.27 1.27)) hide)
  4034. )
  4035. (pin "1" (uuid e038a785-3dcd-4c0e-8cd1-14376d89e66d))
  4036. (instances
  4037. (project "Greaseweazle"
  4038. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4039. (reference "#PWR0218") (unit 1)
  4040. )
  4041. )
  4042. )
  4043. )
  4044. (symbol (lib_id "Device:R_Small") (at 208.28 66.04 270) (unit 1)
  4045. (in_bom yes) (on_board yes) (dnp no)
  4046. (uuid 885ad2b9-c10b-41ea-87a9-2ac1b602d3d1)
  4047. (property "Reference" "R90" (at 205.74 64.77 90)
  4048. (effects (font (size 1.27 1.27)) (justify right))
  4049. )
  4050. (property "Value" "33" (at 213.36 64.77 90)
  4051. (effects (font (size 1.27 1.27)) (justify right))
  4052. )
  4053. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 66.04 0)
  4054. (effects (font (size 1.27 1.27)) hide)
  4055. )
  4056. (property "Datasheet" "~" (at 208.28 66.04 0)
  4057. (effects (font (size 1.27 1.27)) hide)
  4058. )
  4059. (property "LCSC" "C25105" (at 208.28 66.04 0)
  4060. (effects (font (size 1.27 1.27)) hide)
  4061. )
  4062. (pin "1" (uuid b2a3a711-67b5-48fb-bafd-7458d099290e))
  4063. (pin "2" (uuid a4e307fa-c304-49c1-a7e2-c5609d27a549))
  4064. (instances
  4065. (project "Greaseweazle"
  4066. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4067. (reference "R90") (unit 1)
  4068. )
  4069. )
  4070. )
  4071. )
  4072. (symbol (lib_id "power:+3V3") (at 44.45 162.56 0) (unit 1)
  4073. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4074. (uuid 8b543612-7469-4968-8cce-8071e2619531)
  4075. (property "Reference" "#PWR0256" (at 44.45 166.37 0)
  4076. (effects (font (size 1.27 1.27)) hide)
  4077. )
  4078. (property "Value" "+3V3" (at 44.45 157.48 0)
  4079. (effects (font (size 1.27 1.27)))
  4080. )
  4081. (property "Footprint" "" (at 44.45 162.56 0)
  4082. (effects (font (size 1.27 1.27)) hide)
  4083. )
  4084. (property "Datasheet" "" (at 44.45 162.56 0)
  4085. (effects (font (size 1.27 1.27)) hide)
  4086. )
  4087. (pin "1" (uuid 96fb0b51-e8d8-4357-8421-5c0d829f6cc3))
  4088. (instances
  4089. (project "Greaseweazle"
  4090. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4091. (reference "#PWR0256") (unit 1)
  4092. )
  4093. )
  4094. )
  4095. )
  4096. (symbol (lib_id "Device:C_Small") (at 74.93 26.67 180) (unit 1)
  4097. (in_bom yes) (on_board yes) (dnp no)
  4098. (uuid 8c921dfd-9f2a-4b32-aee8-653411ecdb4e)
  4099. (property "Reference" "C94" (at 74.93 24.13 0)
  4100. (effects (font (size 1.27 1.27)) (justify left))
  4101. )
  4102. (property "Value" "4.7uF" (at 74.93 31.75 90)
  4103. (effects (font (size 1.27 1.27)) (justify left))
  4104. )
  4105. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 74.93 26.67 0)
  4106. (effects (font (size 1.27 1.27)) hide)
  4107. )
  4108. (property "Datasheet" "~" (at 74.93 26.67 0)
  4109. (effects (font (size 1.27 1.27)) hide)
  4110. )
  4111. (property "LCSC" "C99229" (at 74.93 26.67 0)
  4112. (effects (font (size 1.27 1.27)) hide)
  4113. )
  4114. (pin "1" (uuid 5393f585-b8f1-4969-b078-8e571ed6e8bd))
  4115. (pin "2" (uuid 2c4df746-b502-41e5-81c2-61e9ddc788c1))
  4116. (instances
  4117. (project "Greaseweazle"
  4118. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4119. (reference "C94") (unit 1)
  4120. )
  4121. )
  4122. )
  4123. )
  4124. (symbol (lib_id "Device:R_Small") (at 208.28 63.5 270) (unit 1)
  4125. (in_bom yes) (on_board yes) (dnp no)
  4126. (uuid 9b94bf1e-2e29-4ce9-aff6-87f613c116f7)
  4127. (property "Reference" "R89" (at 205.74 62.23 90)
  4128. (effects (font (size 1.27 1.27)) (justify right))
  4129. )
  4130. (property "Value" "33" (at 213.36 62.23 90)
  4131. (effects (font (size 1.27 1.27)) (justify right))
  4132. )
  4133. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 63.5 0)
  4134. (effects (font (size 1.27 1.27)) hide)
  4135. )
  4136. (property "Datasheet" "~" (at 208.28 63.5 0)
  4137. (effects (font (size 1.27 1.27)) hide)
  4138. )
  4139. (property "LCSC" "C25105" (at 208.28 63.5 0)
  4140. (effects (font (size 1.27 1.27)) hide)
  4141. )
  4142. (pin "1" (uuid b6449527-8990-4319-a51e-6b5e7845fd50))
  4143. (pin "2" (uuid de30c810-e2ba-436d-bdc8-9aebedab3de5))
  4144. (instances
  4145. (project "Greaseweazle"
  4146. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4147. (reference "R89") (unit 1)
  4148. )
  4149. )
  4150. )
  4151. )
  4152. (symbol (lib_id "Device:C_Small") (at 113.03 26.67 180) (unit 1)
  4153. (in_bom yes) (on_board yes) (dnp no)
  4154. (uuid 9f89b039-e78e-4fd5-89ea-1ff4780ae441)
  4155. (property "Reference" "C88" (at 113.03 24.13 0)
  4156. (effects (font (size 1.27 1.27)) (justify left))
  4157. )
  4158. (property "Value" "100nF" (at 113.03 31.75 90)
  4159. (effects (font (size 1.27 1.27)) (justify left))
  4160. )
  4161. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 113.03 26.67 0)
  4162. (effects (font (size 1.27 1.27)) hide)
  4163. )
  4164. (property "Datasheet" "~" (at 113.03 26.67 0)
  4165. (effects (font (size 1.27 1.27)) hide)
  4166. )
  4167. (property "LCSC" "C1525" (at 113.03 26.67 0)
  4168. (effects (font (size 1.27 1.27)) hide)
  4169. )
  4170. (pin "1" (uuid 41c04f1a-48a0-4bba-8c35-a1d28b51ffcb))
  4171. (pin "2" (uuid a8501d8e-ea13-440a-a225-d114c6476c27))
  4172. (instances
  4173. (project "Greaseweazle"
  4174. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4175. (reference "C88") (unit 1)
  4176. )
  4177. )
  4178. )
  4179. )
  4180. (symbol (lib_id "power:GND") (at 90.17 72.39 0) (unit 1)
  4181. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4182. (uuid a16bd792-2baf-4e92-844c-a5fbf8086093)
  4183. (property "Reference" "#PWR0219" (at 90.17 78.74 0)
  4184. (effects (font (size 1.27 1.27)) hide)
  4185. )
  4186. (property "Value" "GND" (at 90.17 77.47 0)
  4187. (effects (font (size 1.27 1.27)))
  4188. )
  4189. (property "Footprint" "" (at 90.17 72.39 0)
  4190. (effects (font (size 1.27 1.27)) hide)
  4191. )
  4192. (property "Datasheet" "" (at 90.17 72.39 0)
  4193. (effects (font (size 1.27 1.27)) hide)
  4194. )
  4195. (pin "1" (uuid 48991d50-6ac0-4dbd-8420-ad00ddeb0e89))
  4196. (instances
  4197. (project "Greaseweazle"
  4198. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4199. (reference "#PWR0219") (unit 1)
  4200. )
  4201. )
  4202. )
  4203. )
  4204. (symbol (lib_id "Device:C_Small") (at 62.23 26.67 180) (unit 1)
  4205. (in_bom yes) (on_board yes) (dnp no)
  4206. (uuid a38c58da-a242-4a84-9f98-4a7788f47e09)
  4207. (property "Reference" "C82" (at 62.23 24.13 0)
  4208. (effects (font (size 1.27 1.27)) (justify left))
  4209. )
  4210. (property "Value" "1uF" (at 62.23 31.75 90)
  4211. (effects (font (size 1.27 1.27)) (justify left))
  4212. )
  4213. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 62.23 26.67 0)
  4214. (effects (font (size 1.27 1.27)) hide)
  4215. )
  4216. (property "Datasheet" "~" (at 62.23 26.67 0)
  4217. (effects (font (size 1.27 1.27)) hide)
  4218. )
  4219. (property "LCSC" "C15849" (at 62.23 26.67 0)
  4220. (effects (font (size 1.27 1.27)) hide)
  4221. )
  4222. (pin "1" (uuid a570f9a6-1540-4224-bd0a-137ced3b92ca))
  4223. (pin "2" (uuid 5aef224f-624f-4743-997d-b63bafd86d24))
  4224. (instances
  4225. (project "Greaseweazle"
  4226. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4227. (reference "C82") (unit 1)
  4228. )
  4229. )
  4230. )
  4231. )
  4232. (symbol (lib_id "Device:R_Small") (at 208.28 76.2 270) (unit 1)
  4233. (in_bom yes) (on_board yes) (dnp no)
  4234. (uuid a6033b31-5726-42ca-a95e-15b7e97f36ae)
  4235. (property "Reference" "R94" (at 205.994 75.184 90)
  4236. (effects (font (size 1.27 1.27)) (justify right))
  4237. )
  4238. (property "Value" "33" (at 213.36 74.93 90)
  4239. (effects (font (size 1.27 1.27)) (justify right))
  4240. )
  4241. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 76.2 0)
  4242. (effects (font (size 1.27 1.27)) hide)
  4243. )
  4244. (property "Datasheet" "~" (at 208.28 76.2 0)
  4245. (effects (font (size 1.27 1.27)) hide)
  4246. )
  4247. (property "LCSC" "C25105" (at 208.28 76.2 0)
  4248. (effects (font (size 1.27 1.27)) hide)
  4249. )
  4250. (pin "1" (uuid cdca1f14-35ef-4370-acbe-1139563ab842))
  4251. (pin "2" (uuid c1da9498-9c40-42d6-84ef-06e5dde8c86c))
  4252. (instances
  4253. (project "Greaseweazle"
  4254. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4255. (reference "R94") (unit 1)
  4256. )
  4257. )
  4258. )
  4259. )
  4260. (symbol (lib_id "Device:R_Small") (at 208.28 71.12 270) (unit 1)
  4261. (in_bom yes) (on_board yes) (dnp no)
  4262. (uuid a787ca91-baaa-4893-ab57-4b6ed1cac1ff)
  4263. (property "Reference" "R92" (at 205.74 69.85 90)
  4264. (effects (font (size 1.27 1.27)) (justify right))
  4265. )
  4266. (property "Value" "33" (at 213.36 69.85 90)
  4267. (effects (font (size 1.27 1.27)) (justify right))
  4268. )
  4269. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 208.28 71.12 0)
  4270. (effects (font (size 1.27 1.27)) hide)
  4271. )
  4272. (property "Datasheet" "~" (at 208.28 71.12 0)
  4273. (effects (font (size 1.27 1.27)) hide)
  4274. )
  4275. (property "LCSC" "C25105" (at 208.28 71.12 0)
  4276. (effects (font (size 1.27 1.27)) hide)
  4277. )
  4278. (pin "1" (uuid 36af1e37-14e7-4ca3-bec5-3490b234f51d))
  4279. (pin "2" (uuid e62cc9d0-601f-4dae-b7ac-92ccd61c1b52))
  4280. (instances
  4281. (project "Greaseweazle"
  4282. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4283. (reference "R92") (unit 1)
  4284. )
  4285. )
  4286. )
  4287. )
  4288. (symbol (lib_id "Device:C_Small") (at 88.9 26.67 180) (unit 1)
  4289. (in_bom yes) (on_board yes) (dnp no)
  4290. (uuid aa48e07f-186b-45e6-9f82-394b42456b80)
  4291. (property "Reference" "C84" (at 88.9 24.13 0)
  4292. (effects (font (size 1.27 1.27)) (justify left))
  4293. )
  4294. (property "Value" "100nF" (at 88.9 31.75 90)
  4295. (effects (font (size 1.27 1.27)) (justify left))
  4296. )
  4297. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 88.9 26.67 0)
  4298. (effects (font (size 1.27 1.27)) hide)
  4299. )
  4300. (property "Datasheet" "~" (at 88.9 26.67 0)
  4301. (effects (font (size 1.27 1.27)) hide)
  4302. )
  4303. (property "LCSC" "C1525" (at 88.9 26.67 0)
  4304. (effects (font (size 1.27 1.27)) hide)
  4305. )
  4306. (pin "1" (uuid 8c73d9e1-3c0f-4300-81d1-cf8d427fb145))
  4307. (pin "2" (uuid 258e6627-1aad-4487-ae69-3cd02c738ad5))
  4308. (instances
  4309. (project "Greaseweazle"
  4310. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4311. (reference "C84") (unit 1)
  4312. )
  4313. )
  4314. )
  4315. )
  4316. (symbol (lib_id "power:GND") (at 35.56 31.75 0) (unit 1)
  4317. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4318. (uuid aa64d0a8-ded1-4c24-a1bd-623f73676f5a)
  4319. (property "Reference" "#PWR0231" (at 35.56 38.1 0)
  4320. (effects (font (size 1.27 1.27)) hide)
  4321. )
  4322. (property "Value" "GND" (at 35.56 36.83 0)
  4323. (effects (font (size 1.27 1.27)))
  4324. )
  4325. (property "Footprint" "" (at 35.56 31.75 0)
  4326. (effects (font (size 1.27 1.27)) hide)
  4327. )
  4328. (property "Datasheet" "" (at 35.56 31.75 0)
  4329. (effects (font (size 1.27 1.27)) hide)
  4330. )
  4331. (pin "1" (uuid d45d1825-ab1c-4037-bce8-152106c79c5e))
  4332. (instances
  4333. (project "Greaseweazle"
  4334. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4335. (reference "#PWR0231") (unit 1)
  4336. )
  4337. )
  4338. )
  4339. )
  4340. (symbol (lib_id "Device:D_Schottky") (at 69.85 73.66 0) (unit 1)
  4341. (in_bom yes) (on_board yes) (dnp no)
  4342. (uuid ae20d466-ac82-43b4-abc2-122d1c5f9b1c)
  4343. (property "Reference" "D16" (at 64.77 71.12 0)
  4344. (effects (font (size 1.27 1.27)) (justify left))
  4345. )
  4346. (property "Value" "1N5819W" (at 66.04 77.47 0)
  4347. (effects (font (size 1.27 1.27)) (justify left))
  4348. )
  4349. (property "Footprint" "Diode_SMD:D_SOD-123" (at 69.85 73.66 0)
  4350. (effects (font (size 1.27 1.27)) hide)
  4351. )
  4352. (property "Datasheet" "~" (at 69.85 73.66 0)
  4353. (effects (font (size 1.27 1.27)) hide)
  4354. )
  4355. (property "LCSC" "C963381" (at 69.85 73.66 90)
  4356. (effects (font (size 1.27 1.27)) hide)
  4357. )
  4358. (pin "1" (uuid ea175124-0c3d-4d4c-ac3a-f521c2951c71))
  4359. (pin "2" (uuid 4b5d7989-95cb-47df-950b-c34f19011e90))
  4360. (instances
  4361. (project "Greaseweazle"
  4362. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4363. (reference "D16") (unit 1)
  4364. )
  4365. )
  4366. )
  4367. )
  4368. (symbol (lib_id "power:GND") (at 76.2 132.08 0) (unit 1)
  4369. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4370. (uuid afa73031-ad9b-4633-a3de-1f8710a74d74)
  4371. (property "Reference" "#PWR0262" (at 76.2 138.43 0)
  4372. (effects (font (size 1.27 1.27)) hide)
  4373. )
  4374. (property "Value" "GND" (at 76.2 136.525 0)
  4375. (effects (font (size 1.27 1.27)))
  4376. )
  4377. (property "Footprint" "" (at 76.2 132.08 0)
  4378. (effects (font (size 1.27 1.27)) hide)
  4379. )
  4380. (property "Datasheet" "" (at 76.2 132.08 0)
  4381. (effects (font (size 1.27 1.27)) hide)
  4382. )
  4383. (pin "1" (uuid 74d15c2a-d8b9-483c-a07c-8d89202429e0))
  4384. (instances
  4385. (project "Greaseweazle"
  4386. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4387. (reference "#PWR0262") (unit 1)
  4388. )
  4389. )
  4390. )
  4391. )
  4392. (symbol (lib_id "Device:R_Small") (at 153.67 46.99 180) (unit 1)
  4393. (in_bom yes) (on_board yes) (dnp no)
  4394. (uuid b1fbba1e-518f-41f9-9ab2-18a766350f5e)
  4395. (property "Reference" "R78" (at 154.94 44.45 0)
  4396. (effects (font (size 1.27 1.27)) (justify right))
  4397. )
  4398. (property "Value" "10k" (at 154.94 48.26 0)
  4399. (effects (font (size 1.27 1.27)) (justify right))
  4400. )
  4401. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 153.67 46.99 0)
  4402. (effects (font (size 1.27 1.27)) hide)
  4403. )
  4404. (property "Datasheet" "~" (at 153.67 46.99 0)
  4405. (effects (font (size 1.27 1.27)) hide)
  4406. )
  4407. (property "LCSC" "C25744" (at 153.67 46.99 0)
  4408. (effects (font (size 1.27 1.27)) hide)
  4409. )
  4410. (pin "1" (uuid f0c46827-fbf5-4191-9e7d-e57021f4ba51))
  4411. (pin "2" (uuid 24c38e5a-9092-439f-af6c-d2f7fb7ad9ae))
  4412. (instances
  4413. (project "Greaseweazle"
  4414. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4415. (reference "R78") (unit 1)
  4416. )
  4417. )
  4418. )
  4419. )
  4420. (symbol (lib_id "Device:C_Small") (at 54.61 48.26 0) (mirror y) (unit 1)
  4421. (in_bom yes) (on_board yes) (dnp no)
  4422. (uuid b87cbef9-857c-4347-ad70-6bdd0df21822)
  4423. (property "Reference" "C96" (at 59.69 46.99 0)
  4424. (effects (font (size 1.27 1.27)) (justify left))
  4425. )
  4426. (property "Value" "100nF" (at 62.23 49.53 0)
  4427. (effects (font (size 1.27 1.27)) (justify left))
  4428. )
  4429. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 54.61 48.26 0)
  4430. (effects (font (size 1.27 1.27)) hide)
  4431. )
  4432. (property "Datasheet" "~" (at 54.61 48.26 0)
  4433. (effects (font (size 1.27 1.27)) hide)
  4434. )
  4435. (property "LCSC" "C1525" (at 54.61 48.26 0)
  4436. (effects (font (size 1.27 1.27)) hide)
  4437. )
  4438. (pin "1" (uuid bd0f6f21-388d-4148-a0ba-ed9f1909e35a))
  4439. (pin "2" (uuid ecd96479-f0fb-48d4-8fe8-162b431230ce))
  4440. (instances
  4441. (project "Greaseweazle"
  4442. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4443. (reference "C96") (unit 1)
  4444. )
  4445. )
  4446. )
  4447. )
  4448. (symbol (lib_id "power:PWR_FLAG") (at 118.11 22.86 0) (unit 1)
  4449. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4450. (uuid b9a9e427-e1af-4f15-8dfa-7e6722964a32)
  4451. (property "Reference" "#FLG0106" (at 118.11 20.955 0)
  4452. (effects (font (size 1.27 1.27)) hide)
  4453. )
  4454. (property "Value" "PWR_FLAG" (at 118.11 17.78 0)
  4455. (effects (font (size 1.27 1.27)))
  4456. )
  4457. (property "Footprint" "" (at 118.11 22.86 0)
  4458. (effects (font (size 1.27 1.27)) hide)
  4459. )
  4460. (property "Datasheet" "~" (at 118.11 22.86 0)
  4461. (effects (font (size 1.27 1.27)) hide)
  4462. )
  4463. (pin "1" (uuid edbb4c9c-0bb9-4c95-b112-8d702896e3cb))
  4464. (instances
  4465. (project "Greaseweazle"
  4466. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4467. (reference "#FLG0106") (unit 1)
  4468. )
  4469. )
  4470. )
  4471. )
  4472. (symbol (lib_id "power:+3V3") (at 115.57 133.35 0) (unit 1)
  4473. (in_bom yes) (on_board yes) (dnp no)
  4474. (uuid c31335b1-4eb3-4b22-ada7-ccf91437570c)
  4475. (property "Reference" "#PWR0254" (at 115.57 137.16 0)
  4476. (effects (font (size 1.27 1.27)) hide)
  4477. )
  4478. (property "Value" "+3V3" (at 111.76 130.81 0)
  4479. (effects (font (size 1.27 1.27)))
  4480. )
  4481. (property "Footprint" "" (at 115.57 133.35 0)
  4482. (effects (font (size 1.27 1.27)) hide)
  4483. )
  4484. (property "Datasheet" "" (at 115.57 133.35 0)
  4485. (effects (font (size 1.27 1.27)) hide)
  4486. )
  4487. (pin "1" (uuid 1edaeb66-6e3e-4a45-ae4d-df074d7d23fc))
  4488. (instances
  4489. (project "Greaseweazle"
  4490. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4491. (reference "#PWR0254") (unit 1)
  4492. )
  4493. )
  4494. )
  4495. )
  4496. (symbol (lib_id "power:GND") (at 118.11 167.64 0) (unit 1)
  4497. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4498. (uuid c519dd4f-a22b-4a03-b94c-46a9e39348df)
  4499. (property "Reference" "#PWR0229" (at 118.11 173.99 0)
  4500. (effects (font (size 1.27 1.27)) hide)
  4501. )
  4502. (property "Value" "GND" (at 118.11 172.72 0)
  4503. (effects (font (size 1.27 1.27)))
  4504. )
  4505. (property "Footprint" "" (at 118.11 167.64 0)
  4506. (effects (font (size 1.27 1.27)) hide)
  4507. )
  4508. (property "Datasheet" "" (at 118.11 167.64 0)
  4509. (effects (font (size 1.27 1.27)) hide)
  4510. )
  4511. (pin "1" (uuid 3d69e7b0-6a57-463d-ac71-2f83b55d36ae))
  4512. (instances
  4513. (project "Greaseweazle"
  4514. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4515. (reference "#PWR0229") (unit 1)
  4516. )
  4517. )
  4518. )
  4519. )
  4520. (symbol (lib_id "Device:R_Small") (at 149.86 83.82 270) (unit 1)
  4521. (in_bom yes) (on_board yes) (dnp no)
  4522. (uuid c7fc8421-8850-487e-9b4e-587fa22df1ca)
  4523. (property "Reference" "R83" (at 147.32 81.28 90)
  4524. (effects (font (size 1.27 1.27)))
  4525. )
  4526. (property "Value" "1.6k" (at 153.67 81.28 90)
  4527. (effects (font (size 1.27 1.27)))
  4528. )
  4529. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 149.86 83.82 0)
  4530. (effects (font (size 1.27 1.27)) hide)
  4531. )
  4532. (property "Datasheet" "~" (at 149.86 83.82 0)
  4533. (effects (font (size 1.27 1.27)) hide)
  4534. )
  4535. (property "LCSC" "C25931" (at 149.86 83.82 0)
  4536. (effects (font (size 1.27 1.27)) hide)
  4537. )
  4538. (pin "1" (uuid 6d70101b-99b0-49c2-a8e3-8333618f1aa0))
  4539. (pin "2" (uuid f1ddcd7b-590d-4ae0-aeac-58f32fdbefd4))
  4540. (instances
  4541. (project "Greaseweazle"
  4542. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4543. (reference "R83") (unit 1)
  4544. )
  4545. )
  4546. )
  4547. )
  4548. (symbol (lib_id "power:GND") (at 137.16 60.96 0) (unit 1)
  4549. (in_bom yes) (on_board yes) (dnp no)
  4550. (uuid ce0dd184-9f48-4058-80cb-ffbf993a7037)
  4551. (property "Reference" "#PWR0251" (at 137.16 67.31 0)
  4552. (effects (font (size 1.27 1.27)) hide)
  4553. )
  4554. (property "Value" "GND" (at 139.7 64.135 0)
  4555. (effects (font (size 1.27 1.27)))
  4556. )
  4557. (property "Footprint" "" (at 137.16 60.96 0)
  4558. (effects (font (size 1.27 1.27)) hide)
  4559. )
  4560. (property "Datasheet" "" (at 137.16 60.96 0)
  4561. (effects (font (size 1.27 1.27)) hide)
  4562. )
  4563. (pin "1" (uuid 0f6ceb67-3f58-40b1-a7da-79aba3cbb463))
  4564. (instances
  4565. (project "Greaseweazle"
  4566. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4567. (reference "#PWR0251") (unit 1)
  4568. )
  4569. )
  4570. )
  4571. )
  4572. (symbol (lib_id "Device:R_Small") (at 147.32 46.99 180) (unit 1)
  4573. (in_bom yes) (on_board yes) (dnp no)
  4574. (uuid cf6a1f13-5c3d-41fb-8d52-cc90c89efccb)
  4575. (property "Reference" "R77" (at 147.32 44.45 0)
  4576. (effects (font (size 1.27 1.27)) (justify right))
  4577. )
  4578. (property "Value" "10k" (at 148.59 48.26 0)
  4579. (effects (font (size 1.27 1.27)) (justify right))
  4580. )
  4581. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 147.32 46.99 0)
  4582. (effects (font (size 1.27 1.27)) hide)
  4583. )
  4584. (property "Datasheet" "~" (at 147.32 46.99 0)
  4585. (effects (font (size 1.27 1.27)) hide)
  4586. )
  4587. (property "LCSC" "C25744" (at 147.32 46.99 0)
  4588. (effects (font (size 1.27 1.27)) hide)
  4589. )
  4590. (pin "1" (uuid a74b3c25-1a8e-4ce4-9959-a11acf152607))
  4591. (pin "2" (uuid 16fc2f4f-0d49-49f9-9a9d-177d289cf625))
  4592. (instances
  4593. (project "Greaseweazle"
  4594. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4595. (reference "R77") (unit 1)
  4596. )
  4597. )
  4598. )
  4599. )
  4600. (symbol (lib_id "Device:L") (at 63.5 44.45 90) (unit 1)
  4601. (in_bom yes) (on_board yes) (dnp no)
  4602. (uuid d1f5be86-af55-48c4-bbeb-9815fbccdf78)
  4603. (property "Reference" "L5" (at 63.5 39.624 90)
  4604. (effects (font (size 1.27 1.27)))
  4605. )
  4606. (property "Value" "100uH" (at 63.5 41.9354 90)
  4607. (effects (font (size 1.27 1.27)))
  4608. )
  4609. (property "Footprint" "Greaseweazle:L_6.3x6.3_H3" (at 63.5 44.45 0)
  4610. (effects (font (size 1.27 1.27)) hide)
  4611. )
  4612. (property "Datasheet" "~" (at 63.5 44.45 0)
  4613. (effects (font (size 1.27 1.27)) hide)
  4614. )
  4615. (property "LCSC" "C434839" (at 63.5 44.45 0)
  4616. (effects (font (size 1.27 1.27)) hide)
  4617. )
  4618. (pin "1" (uuid 97ce97c4-d8fe-461f-ae81-ba325c6dc767))
  4619. (pin "2" (uuid 807a1698-27d8-48c5-81b0-aaa779e7d7f3))
  4620. (instances
  4621. (project "Greaseweazle"
  4622. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4623. (reference "L5") (unit 1)
  4624. )
  4625. )
  4626. )
  4627. )
  4628. (symbol (lib_id "Device:C_Small") (at 130.81 26.67 180) (unit 1)
  4629. (in_bom yes) (on_board yes) (dnp no)
  4630. (uuid d6d2cb1a-f3d2-41fb-98d9-7a135a63ed1c)
  4631. (property "Reference" "C91" (at 130.81 24.13 0)
  4632. (effects (font (size 1.27 1.27)) (justify left))
  4633. )
  4634. (property "Value" "100nF" (at 130.81 31.75 90)
  4635. (effects (font (size 1.27 1.27)) (justify left))
  4636. )
  4637. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 130.81 26.67 0)
  4638. (effects (font (size 1.27 1.27)) hide)
  4639. )
  4640. (property "Datasheet" "~" (at 130.81 26.67 0)
  4641. (effects (font (size 1.27 1.27)) hide)
  4642. )
  4643. (property "LCSC" "C1525" (at 130.81 26.67 0)
  4644. (effects (font (size 1.27 1.27)) hide)
  4645. )
  4646. (pin "1" (uuid 8b3288a2-099f-4b81-b573-4485e4584689))
  4647. (pin "2" (uuid c29113d2-9957-4531-bf74-0112e6dfb739))
  4648. (instances
  4649. (project "Greaseweazle"
  4650. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4651. (reference "C91") (unit 1)
  4652. )
  4653. )
  4654. )
  4655. )
  4656. (symbol (lib_id "power:+3V3") (at 153.67 41.91 0) (unit 1)
  4657. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4658. (uuid d7b84b2f-7a32-4554-a4a0-2b4a73d91479)
  4659. (property "Reference" "#PWR0250" (at 153.67 45.72 0)
  4660. (effects (font (size 1.27 1.27)) hide)
  4661. )
  4662. (property "Value" "+3V3" (at 153.67 36.83 0)
  4663. (effects (font (size 1.27 1.27)))
  4664. )
  4665. (property "Footprint" "" (at 153.67 41.91 0)
  4666. (effects (font (size 1.27 1.27)) hide)
  4667. )
  4668. (property "Datasheet" "" (at 153.67 41.91 0)
  4669. (effects (font (size 1.27 1.27)) hide)
  4670. )
  4671. (pin "1" (uuid f8317e08-ac8d-4f92-9b50-30017e795fde))
  4672. (instances
  4673. (project "Greaseweazle"
  4674. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4675. (reference "#PWR0250") (unit 1)
  4676. )
  4677. )
  4678. )
  4679. )
  4680. (symbol (lib_id "Device:C_Small") (at 107.95 26.67 180) (unit 1)
  4681. (in_bom yes) (on_board yes) (dnp no)
  4682. (uuid d97a29f1-3127-4474-8e0b-83537eca46a3)
  4683. (property "Reference" "C87" (at 107.95 24.13 0)
  4684. (effects (font (size 1.27 1.27)) (justify left))
  4685. )
  4686. (property "Value" "6800pF" (at 107.95 31.75 90)
  4687. (effects (font (size 1.27 1.27)) (justify left))
  4688. )
  4689. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 107.95 26.67 0)
  4690. (effects (font (size 1.27 1.27)) hide)
  4691. )
  4692. (property "Datasheet" "~" (at 107.95 26.67 0)
  4693. (effects (font (size 1.27 1.27)) hide)
  4694. )
  4695. (property "LCSC" "C1542" (at 107.95 26.67 0)
  4696. (effects (font (size 1.27 1.27)) hide)
  4697. )
  4698. (pin "1" (uuid e360c518-a288-4759-b4ae-632512ce9140))
  4699. (pin "2" (uuid 13a057bc-37b1-46de-afb4-fa7f130d2e46))
  4700. (instances
  4701. (project "Greaseweazle"
  4702. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4703. (reference "C87") (unit 1)
  4704. )
  4705. )
  4706. )
  4707. )
  4708. (symbol (lib_id "74xGxx:74LVC2G04") (at 95.885 116.205 0) (mirror y) (unit 1)
  4709. (in_bom yes) (on_board yes) (dnp no)
  4710. (uuid dced2418-a24c-43d3-8166-e6512ca54b8b)
  4711. (property "Reference" "U13" (at 100.33 111.125 0)
  4712. (effects (font (size 1.27 1.27)))
  4713. )
  4714. (property "Value" "74LVC2G04" (at 88.9 112.395 0)
  4715. (effects (font (size 1.27 1.27)))
  4716. )
  4717. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 95.885 116.205 0)
  4718. (effects (font (size 1.27 1.27)) hide)
  4719. )
  4720. (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (at 95.885 116.205 0)
  4721. (effects (font (size 1.27 1.27)) hide)
  4722. )
  4723. (property "LCSC" "C460538" (at 95.885 116.205 0)
  4724. (effects (font (size 1.27 1.27)) hide)
  4725. )
  4726. (pin "2" (uuid 699b7c60-2b14-411c-adc4-11911b037087))
  4727. (pin "5" (uuid 6e755fe2-772b-4be1-9030-d0612482a82c))
  4728. (pin "1" (uuid bf2b7f09-efdd-4f8b-9cd9-c7fc439e7509))
  4729. (pin "6" (uuid 27e51829-514e-447b-99ac-23d2ddc99892))
  4730. (pin "3" (uuid 4099aef7-068c-428d-9eef-0e1dec2319e9))
  4731. (pin "4" (uuid 0116862e-7aac-4bcc-a22a-14c2527624b7))
  4732. (instances
  4733. (project "Greaseweazle"
  4734. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4735. (reference "U13") (unit 1)
  4736. )
  4737. )
  4738. )
  4739. )
  4740. (symbol (lib_id "Device:R_Small") (at 129.54 161.29 90) (unit 1)
  4741. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4742. (uuid dde54e0d-3a65-4882-925e-9a1e80d910e1)
  4743. (property "Reference" "R74" (at 129.54 154.94 90)
  4744. (effects (font (size 1.27 1.27)))
  4745. )
  4746. (property "Value" "100" (at 129.54 157.48 90)
  4747. (effects (font (size 1.27 1.27)))
  4748. )
  4749. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 129.54 161.29 0)
  4750. (effects (font (size 1.27 1.27)) hide)
  4751. )
  4752. (property "Datasheet" "~" (at 129.54 161.29 0)
  4753. (effects (font (size 1.27 1.27)) hide)
  4754. )
  4755. (property "LCSC" "C25076" (at 129.54 161.29 0)
  4756. (effects (font (size 1.27 1.27)) hide)
  4757. )
  4758. (pin "1" (uuid 9438df98-2481-4921-a568-c7cf59fa6020))
  4759. (pin "2" (uuid 0d091673-1cc7-4d5d-aeaa-c3170f21453f))
  4760. (instances
  4761. (project "Greaseweazle"
  4762. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4763. (reference "R74") (unit 1)
  4764. )
  4765. )
  4766. )
  4767. )
  4768. (symbol (lib_id "Device:C_Small") (at 102.87 26.67 180) (unit 1)
  4769. (in_bom yes) (on_board yes) (dnp no)
  4770. (uuid e0c0fd97-0ef2-4aff-b4f5-598570ce6474)
  4771. (property "Reference" "C86" (at 102.87 24.13 0)
  4772. (effects (font (size 1.27 1.27)) (justify left))
  4773. )
  4774. (property "Value" "100nF" (at 102.87 29.21 0)
  4775. (effects (font (size 1.27 1.27)) (justify left))
  4776. )
  4777. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 102.87 26.67 0)
  4778. (effects (font (size 1.27 1.27)) hide)
  4779. )
  4780. (property "Datasheet" "~" (at 102.87 26.67 0)
  4781. (effects (font (size 1.27 1.27)) hide)
  4782. )
  4783. (property "LCSC" "C1525" (at 102.87 26.67 0)
  4784. (effects (font (size 1.27 1.27)) hide)
  4785. )
  4786. (pin "1" (uuid aaf4f11b-28f3-4620-aced-9638f22f2a1b))
  4787. (pin "2" (uuid f476208c-eb73-49c9-8458-6143a117bbbd))
  4788. (instances
  4789. (project "Greaseweazle"
  4790. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4791. (reference "C86") (unit 1)
  4792. )
  4793. )
  4794. )
  4795. )
  4796. (symbol (lib_id "Device:C_Small") (at 129.54 127 0) (unit 1)
  4797. (in_bom yes) (on_board yes) (dnp no)
  4798. (uuid e388f1ff-7709-4cec-a523-4bf1afec8889)
  4799. (property "Reference" "C75" (at 124.46 124.46 0)
  4800. (effects (font (size 1.27 1.27)) (justify left))
  4801. )
  4802. (property "Value" "18pF" (at 124.46 129.54 0)
  4803. (effects (font (size 1.27 1.27)) (justify left))
  4804. )
  4805. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 129.54 127 0)
  4806. (effects (font (size 1.27 1.27)) hide)
  4807. )
  4808. (property "Datasheet" "~" (at 129.54 127 0)
  4809. (effects (font (size 1.27 1.27)) hide)
  4810. )
  4811. (property "LCSC" "C1549" (at 129.54 127 0)
  4812. (effects (font (size 1.27 1.27)) hide)
  4813. )
  4814. (pin "1" (uuid fc6fc2af-8389-48a6-905b-35939516c202))
  4815. (pin "2" (uuid b1536ff5-6418-407c-9448-a286a45dc18b))
  4816. (instances
  4817. (project "Greaseweazle"
  4818. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4819. (reference "C75") (unit 1)
  4820. )
  4821. )
  4822. )
  4823. )
  4824. (symbol (lib_id "power:PWR_FLAG") (at 140.97 22.86 0) (unit 1)
  4825. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4826. (uuid e5ea224b-0e76-44c2-a5e6-4b4190be2a8e)
  4827. (property "Reference" "#FLG0104" (at 140.97 20.955 0)
  4828. (effects (font (size 1.27 1.27)) hide)
  4829. )
  4830. (property "Value" "PWR_FLAG" (at 140.97 17.78 0)
  4831. (effects (font (size 1.27 1.27)))
  4832. )
  4833. (property "Footprint" "" (at 140.97 22.86 0)
  4834. (effects (font (size 1.27 1.27)) hide)
  4835. )
  4836. (property "Datasheet" "~" (at 140.97 22.86 0)
  4837. (effects (font (size 1.27 1.27)) hide)
  4838. )
  4839. (pin "1" (uuid 6b031ae3-a33d-44ea-9df7-a157b5a98a87))
  4840. (instances
  4841. (project "Greaseweazle"
  4842. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4843. (reference "#FLG0104") (unit 1)
  4844. )
  4845. )
  4846. )
  4847. )
  4848. (symbol (lib_id "power:+3V3") (at 95.885 106.68 0) (unit 1)
  4849. (in_bom yes) (on_board yes) (dnp no)
  4850. (uuid ea0b4153-b639-445d-bc04-dccc5d549a5c)
  4851. (property "Reference" "#PWR0261" (at 95.885 110.49 0)
  4852. (effects (font (size 1.27 1.27)) hide)
  4853. )
  4854. (property "Value" "+3V3" (at 96.266 102.2858 0)
  4855. (effects (font (size 1.27 1.27)))
  4856. )
  4857. (property "Footprint" "" (at 95.885 106.68 0)
  4858. (effects (font (size 1.27 1.27)) hide)
  4859. )
  4860. (property "Datasheet" "" (at 95.885 106.68 0)
  4861. (effects (font (size 1.27 1.27)) hide)
  4862. )
  4863. (pin "1" (uuid ab23f298-c6be-4f5a-bd8b-6edf1f4a762f))
  4864. (instances
  4865. (project "Greaseweazle"
  4866. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4867. (reference "#PWR0261") (unit 1)
  4868. )
  4869. )
  4870. )
  4871. )
  4872. (symbol (lib_id "power:+3V3") (at 35.56 21.59 0) (unit 1)
  4873. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4874. (uuid ee09ac27-035c-4790-babe-b409ddd85d55)
  4875. (property "Reference" "#PWR0230" (at 35.56 25.4 0)
  4876. (effects (font (size 1.27 1.27)) hide)
  4877. )
  4878. (property "Value" "+3V3" (at 35.56 16.51 0)
  4879. (effects (font (size 1.27 1.27)))
  4880. )
  4881. (property "Footprint" "" (at 35.56 21.59 0)
  4882. (effects (font (size 1.27 1.27)) hide)
  4883. )
  4884. (property "Datasheet" "" (at 35.56 21.59 0)
  4885. (effects (font (size 1.27 1.27)) hide)
  4886. )
  4887. (pin "1" (uuid f723ef92-1e1e-42d8-84cc-e610aee03975))
  4888. (instances
  4889. (project "Greaseweazle"
  4890. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4891. (reference "#PWR0230") (unit 1)
  4892. )
  4893. )
  4894. )
  4895. )
  4896. (symbol (lib_id "Greaseweazle:FT601Q-B-T") (at 177.8 93.98 0) (unit 1)
  4897. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4898. (uuid eeab0e80-e6e5-44e5-8328-097faabb11ab)
  4899. (property "Reference" "U11" (at 177.8 27.94 0)
  4900. (effects (font (size 1.27 1.27)))
  4901. )
  4902. (property "Value" "FT601Q-B-T" (at 177.8 30.48 0)
  4903. (effects (font (size 1.27 1.27)))
  4904. )
  4905. (property "Footprint" "Package_DFN_QFN:QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm" (at 177.8 93.98 0)
  4906. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  4907. )
  4908. (property "Datasheet" "" (at 177.8 93.98 0)
  4909. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  4910. )
  4911. (pin "1" (uuid f4a67e73-2a9b-49ef-be2e-b339ad722c5e))
  4912. (pin "10" (uuid 0f60083e-c27d-4227-9caf-ca8b5e512f3b))
  4913. (pin "11" (uuid 3b1e4b77-2622-4bb1-801e-305ccedc728c))
  4914. (pin "12" (uuid 89786abc-0eef-49e7-8124-445e1bd79ea8))
  4915. (pin "13" (uuid 03901c86-1dea-405e-896d-c83260b6845b))
  4916. (pin "14" (uuid e7b28c7c-6c51-4481-ae6a-198341f9a3d2))
  4917. (pin "15" (uuid 152d39c6-1dd2-4ad5-a597-3d06bf26f6a4))
  4918. (pin "16" (uuid 17e0b660-c4de-4305-8058-b47bd71b1ee2))
  4919. (pin "17" (uuid b2f9bbaa-1c06-40dc-80cb-8e841759bc39))
  4920. (pin "18" (uuid 7ae30f08-19c1-4f5e-9bdd-9c276ec4fbe0))
  4921. (pin "2" (uuid e1f05b0f-7352-412b-9cd4-eed20554d561))
  4922. (pin "20" (uuid 5bf9d128-0b77-45e6-9e71-c66f189694e6))
  4923. (pin "21" (uuid 0217dbe2-313f-4fce-b0dd-ef625c130653))
  4924. (pin "22" (uuid 342c8377-0df1-406f-8f3a-0b97f4fca268))
  4925. (pin "23" (uuid 132114e1-f37a-4114-abb2-3c9c597dc485))
  4926. (pin "24" (uuid e92a0c80-bbcc-480f-af17-a6a31d0c8b7f))
  4927. (pin "25" (uuid 26279b35-0870-442d-ad1d-a9ecee761138))
  4928. (pin "26" (uuid a6091aea-e5b1-4e59-8280-6cdff156d15e))
  4929. (pin "27" (uuid c234eaf3-1d8f-45e3-bbb9-6fa81709e713))
  4930. (pin "28" (uuid 00df3299-502e-41d4-8ba7-8200639e38cc))
  4931. (pin "29" (uuid ba515b01-8e8b-4be6-8aa2-398df15673a8))
  4932. (pin "3" (uuid aa1a874e-c3be-4dc7-812d-81ce8fe21b24))
  4933. (pin "30" (uuid 794b47b6-3740-41e3-a2cc-84938a418a4c))
  4934. (pin "31" (uuid 2a5d22aa-8ce7-4268-b24c-1c80043f9c25))
  4935. (pin "32" (uuid 6444d47d-8d98-4253-a0ee-ecc7328ab8a8))
  4936. (pin "33" (uuid 858a697a-9c25-4fb3-913c-2fd8b7786239))
  4937. (pin "34" (uuid acf04657-db06-4da1-b726-6d1623592e23))
  4938. (pin "35" (uuid 373d5d7d-705e-4cfe-a9e6-7b992e2e10db))
  4939. (pin "36" (uuid 24345689-c52f-48b7-989a-66c44dbf3b92))
  4940. (pin "37" (uuid 2e1ba940-b008-4725-81b3-df09c2675c04))
  4941. (pin "38" (uuid cda07a42-f683-4734-9b83-e4d63010579d))
  4942. (pin "39" (uuid 52b56a00-59dc-4faf-bcc9-4c822f925a4a))
  4943. (pin "4" (uuid 11f59ffd-e2c9-4d63-9ce0-d04d00cd8e9a))
  4944. (pin "40" (uuid 077f7fd3-da2a-47b2-a4a0-f505c0c14964))
  4945. (pin "41" (uuid 2283ebb3-62aa-4142-b3d9-e821aa3a0ddd))
  4946. (pin "42" (uuid dca701fa-2aed-4d7c-bb52-3637f84702fb))
  4947. (pin "43" (uuid 77045a63-292d-42eb-b25e-5ba30585619f))
  4948. (pin "44" (uuid 908b1aaa-2122-4f83-86ca-fc9b5fe3237c))
  4949. (pin "45" (uuid 81d1cd32-4ec4-4710-bff5-54ed13356e41))
  4950. (pin "46" (uuid 93f67708-b4b3-4783-a540-20b5864af8e5))
  4951. (pin "47" (uuid 90120227-93fe-4b2c-a160-cfef7a31c233))
  4952. (pin "48" (uuid a67e884b-3fe3-4338-8042-b1ed40fe5545))
  4953. (pin "49" (uuid c06261ad-fa85-48bb-bfb5-7213130e4822))
  4954. (pin "5" (uuid 12633a38-6301-4e71-bd4f-e289c1c528db))
  4955. (pin "50" (uuid 06637a1f-50c1-43b6-a27e-702f2fd76f8d))
  4956. (pin "51" (uuid 06a5736b-4b50-4069-94e7-fbb4f5fa6726))
  4957. (pin "52" (uuid 9186f595-64e2-46a9-afaf-19a82a0ab32b))
  4958. (pin "53" (uuid 6cf334b2-ce9b-4700-9270-14044fcfa6a6))
  4959. (pin "54" (uuid 25bfa923-fdff-4249-a841-bc82b77871c2))
  4960. (pin "55" (uuid 0cc86bd0-a229-4ed3-9276-6a5e0206ef6b))
  4961. (pin "56" (uuid 1a4120ca-d512-4649-9f04-1e54dc2fbc6d))
  4962. (pin "57" (uuid 1194adad-c02f-419f-95f2-a8215b9c9ecb))
  4963. (pin "58" (uuid 08cef58f-b88b-452a-8b22-7cb6741ba9c1))
  4964. (pin "59" (uuid df7546f1-eada-41bd-94a1-ac58d7d26b2e))
  4965. (pin "6" (uuid f24a5dbc-85f1-44ee-a5f4-fea672796482))
  4966. (pin "60" (uuid c5992a43-8c58-4b7b-b751-c3b129e0c4ea))
  4967. (pin "61" (uuid bee263c9-254d-489a-9fb8-70b048681752))
  4968. (pin "62" (uuid a4f7c5c5-c6c8-458e-8f21-f52a91573926))
  4969. (pin "63" (uuid 87bcf79e-5760-4718-bef7-cac93b09ec6a))
  4970. (pin "64" (uuid 7fb1954a-f019-4f93-ac9d-10db1542fff6))
  4971. (pin "65" (uuid f6bdb4d7-4867-40d2-ab32-852cbcbf7ec7))
  4972. (pin "66" (uuid 0ee38f8c-ed07-4f8b-9909-bc0fef142694))
  4973. (pin "67" (uuid 85587ec7-9088-4073-bd9b-de1c446d7ed2))
  4974. (pin "68" (uuid 9f234d5a-3d93-48ba-bc3b-2ae6b6f0823f))
  4975. (pin "69" (uuid 08e56123-1c44-4f0e-8463-198d253c3ee4))
  4976. (pin "7" (uuid 1eae750a-12fa-4a0f-8953-7753bfeee027))
  4977. (pin "70" (uuid f706ffed-d5fe-4325-b983-ba204ef44895))
  4978. (pin "71" (uuid 10ed41f5-74ee-4d19-b11f-5fcab80631a8))
  4979. (pin "72" (uuid 6470217a-9db5-4c86-a290-464a4fc33d8b))
  4980. (pin "73" (uuid 61ff3893-361f-469e-bbcc-938c50c85786))
  4981. (pin "74" (uuid b7d32adb-12b7-4afb-bdc6-30348e0d15d7))
  4982. (pin "75" (uuid 9b8cbe97-26eb-4b88-91cd-2a61ef3783fa))
  4983. (pin "76" (uuid 61f35e42-700a-44ab-89ed-a6c9c0d5bc7d))
  4984. (pin "77" (uuid 2d52eb27-0c58-4a35-8f77-ed6f9f4a6dc7))
  4985. (pin "8" (uuid 20bca66b-dc79-4034-95ce-7bedef1cc83a))
  4986. (pin "9" (uuid 83558273-94c3-4d3a-818a-13b5b17df022))
  4987. (instances
  4988. (project "Greaseweazle"
  4989. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  4990. (reference "U11") (unit 1)
  4991. )
  4992. )
  4993. )
  4994. )
  4995. (symbol (lib_id "power:GND") (at 49.53 52.07 0) (unit 1)
  4996. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  4997. (uuid f7086363-842e-4f81-871d-20d4f23719d0)
  4998. (property "Reference" "#PWR0245" (at 49.53 58.42 0)
  4999. (effects (font (size 1.27 1.27)) hide)
  5000. )
  5001. (property "Value" "GND" (at 49.53 57.15 0)
  5002. (effects (font (size 1.27 1.27)))
  5003. )
  5004. (property "Footprint" "" (at 49.53 52.07 0)
  5005. (effects (font (size 1.27 1.27)) hide)
  5006. )
  5007. (property "Datasheet" "" (at 49.53 52.07 0)
  5008. (effects (font (size 1.27 1.27)) hide)
  5009. )
  5010. (pin "1" (uuid 466a50a3-2cab-4b24-8828-b89a53408500))
  5011. (instances
  5012. (project "Greaseweazle"
  5013. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  5014. (reference "#PWR0245") (unit 1)
  5015. )
  5016. )
  5017. )
  5018. )
  5019. (symbol (lib_id "Device:C_Small") (at 118.11 91.44 90) (unit 1)
  5020. (in_bom yes) (on_board yes) (dnp no)
  5021. (uuid f9a295b3-49bd-4542-bce7-702ac63e14ed)
  5022. (property "Reference" "C74" (at 116.84 90.17 90)
  5023. (effects (font (size 1.27 1.27)) (justify left))
  5024. )
  5025. (property "Value" "100nF" (at 125.73 90.17 90)
  5026. (effects (font (size 1.27 1.27)) (justify left))
  5027. )
  5028. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 118.11 91.44 0)
  5029. (effects (font (size 1.27 1.27)) hide)
  5030. )
  5031. (property "Datasheet" "~" (at 118.11 91.44 0)
  5032. (effects (font (size 1.27 1.27)) hide)
  5033. )
  5034. (property "LCSC" "C1525" (at 118.11 91.44 0)
  5035. (effects (font (size 1.27 1.27)) hide)
  5036. )
  5037. (pin "1" (uuid 478e9ace-e09b-41a5-bfe4-48565e916a0f))
  5038. (pin "2" (uuid 97e52466-0774-4a6d-85ed-bb1f9a592b1e))
  5039. (instances
  5040. (project "Greaseweazle"
  5041. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  5042. (reference "C74") (unit 1)
  5043. )
  5044. )
  5045. )
  5046. )
  5047. (symbol (lib_id "Connector:Conn_01x03_Male") (at 107.95 161.29 0) (unit 1)
  5048. (in_bom yes) (on_board yes) (dnp no)
  5049. (uuid fb9ce2a9-1dc3-4813-ab09-573cfd0b87a4)
  5050. (property "Reference" "J16" (at 106.68 157.48 0)
  5051. (effects (font (size 1.27 1.27)))
  5052. )
  5053. (property "Value" "GPIO1" (at 102.87 161.29 0)
  5054. (effects (font (size 1.27 1.27)))
  5055. )
  5056. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (at 107.95 161.29 0)
  5057. (effects (font (size 1.27 1.27)) hide)
  5058. )
  5059. (property "Datasheet" "~" (at 107.95 161.29 0)
  5060. (effects (font (size 1.27 1.27)) hide)
  5061. )
  5062. (pin "1" (uuid f91f4d3c-2451-43c5-b255-edc8068a93bd))
  5063. (pin "2" (uuid 586f1540-e1c9-4133-aae4-46161e8e6b53))
  5064. (pin "3" (uuid a26eab31-93b0-48d2-8da0-6b540c797e80))
  5065. (instances
  5066. (project "Greaseweazle"
  5067. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  5068. (reference "J16") (unit 1)
  5069. )
  5070. )
  5071. )
  5072. )
  5073. (symbol (lib_id "Connector:USB_C_Receptacle") (at 48.26 93.98 0) (unit 1)
  5074. (in_bom yes) (on_board yes) (dnp no)
  5075. (uuid ff2bd700-3acd-4ff9-91eb-6c52d2dde82a)
  5076. (property "Reference" "USB3" (at 39.37 58.3438 0)
  5077. (effects (font (size 1.524 1.524)))
  5078. )
  5079. (property "Value" "HRO-TYPE-C-31-M-12" (at 48.26 64.77 0)
  5080. (effects (font (size 1.524 1.524)))
  5081. )
  5082. (property "Footprint" "Greaseweazle:USB_C_Receptacle_Amphenol_12401548E4-2A" (at 52.07 93.98 0)
  5083. (effects (font (size 1.27 1.27)) hide)
  5084. )
  5085. (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at 52.07 93.98 0)
  5086. (effects (font (size 1.27 1.27)) hide)
  5087. )
  5088. (property "LCSC" "C165948" (at 48.26 93.98 0)
  5089. (effects (font (size 1.27 1.27)) hide)
  5090. )
  5091. (pin "A1" (uuid 30d85f0d-9335-457a-bd50-678b172d87ce))
  5092. (pin "A10" (uuid 40c8bf8c-3968-4d67-a8b5-3d7a52364555))
  5093. (pin "A11" (uuid 9292b9cc-642c-446e-901d-a7be2bd7e804))
  5094. (pin "A12" (uuid dd057b43-61bf-428e-86d4-f62ac291f253))
  5095. (pin "A2" (uuid 175f5f66-8201-4390-a4e7-ce620d66ef1d))
  5096. (pin "A3" (uuid 72b298f3-c57c-43a7-9e45-3f80d21fd18b))
  5097. (pin "A4" (uuid aaf5d8cd-3ad6-41a5-a882-7219617b5fa7))
  5098. (pin "A5" (uuid b02c778b-c0b7-4a1d-9ac7-adb302be0ea8))
  5099. (pin "A6" (uuid 968801f4-17bf-44a6-ae05-3d8e2dd26adf))
  5100. (pin "A7" (uuid 52748024-a74d-49c3-bd36-0940b2472ac9))
  5101. (pin "A8" (uuid ef58421e-2a93-48d5-a1a3-e65ad47c8ecf))
  5102. (pin "A9" (uuid 37afe372-abf1-4d57-9a76-0da3d496310c))
  5103. (pin "B1" (uuid 30a849a4-3f67-4bae-b6e5-e672fe6f1e8a))
  5104. (pin "B10" (uuid 253c5a63-567a-4da0-9a8f-e979a11f6098))
  5105. (pin "B11" (uuid d2dacae4-102c-4bde-b81a-51c34f137dc9))
  5106. (pin "B12" (uuid f639a48b-0074-41ec-9a9f-af31ca7886df))
  5107. (pin "B2" (uuid 768bb677-59c1-44f0-9875-2e2de1b6997f))
  5108. (pin "B3" (uuid fd8a3a52-765f-46f0-9cbb-9c1e9c87f8c5))
  5109. (pin "B4" (uuid b928d27b-906a-4a66-9390-46b1ff38281d))
  5110. (pin "B5" (uuid 51d685d5-c532-49e7-8e77-f5157aa3ddf8))
  5111. (pin "B6" (uuid 4dca5b37-6503-4816-a06f-1da95140ee42))
  5112. (pin "B7" (uuid 9a286acd-433d-4c75-ba34-9354fe1c4507))
  5113. (pin "B8" (uuid 7d3406c4-4b01-44ed-9945-0293a5d6e9c7))
  5114. (pin "B9" (uuid 901938eb-3045-47f0-8199-2aeeca98a84f))
  5115. (pin "S1" (uuid 926b9543-d8b5-4be8-8d71-8dea369ecc1e))
  5116. (instances
  5117. (project "Greaseweazle"
  5118. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09/39d9aca3-c269-4acc-b200-a28fd3c81717"
  5119. (reference "USB3") (unit 1)
  5120. )
  5121. )
  5122. )
  5123. )
  5124. )