Greaseweazle.kicad_sch 356 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268
  1. (kicad_sch (version 20230121) (generator eeschema)
  2. (uuid c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09)
  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 "74xx:SN74LS07" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  12. (property "Reference" "U" (at 0 1.27 0)
  13. (effects (font (size 1.27 1.27)))
  14. )
  15. (property "Value" "SN74LS07" (at 0 -1.27 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" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_locked" "" (at 0 0 0)
  25. (effects (font (size 1.27 1.27)))
  26. )
  27. (property "ki_keywords" "TTL hex buffer OpenCol" (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (property "ki_description" "Hex Buffers and Drivers With Open Collector High Voltage Outputs" (at 0 0 0)
  31. (effects (font (size 1.27 1.27)) hide)
  32. )
  33. (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm* TSSOP*4.4x5mm*P0.65mm* DIP*W7.62mm*" (at 0 0 0)
  34. (effects (font (size 1.27 1.27)) hide)
  35. )
  36. (symbol "SN74LS07_1_0"
  37. (polyline
  38. (pts
  39. (xy -3.81 3.81)
  40. (xy -3.81 -3.81)
  41. (xy 3.81 0)
  42. (xy -3.81 3.81)
  43. )
  44. (stroke (width 0.254) (type default))
  45. (fill (type background))
  46. )
  47. (pin input line (at -7.62 0 0) (length 3.81)
  48. (name "~" (effects (font (size 1.27 1.27))))
  49. (number "1" (effects (font (size 1.27 1.27))))
  50. )
  51. (pin open_collector line (at 7.62 0 180) (length 3.81)
  52. (name "~" (effects (font (size 1.27 1.27))))
  53. (number "2" (effects (font (size 1.27 1.27))))
  54. )
  55. )
  56. (symbol "SN74LS07_2_0"
  57. (polyline
  58. (pts
  59. (xy -3.81 3.81)
  60. (xy -3.81 -3.81)
  61. (xy 3.81 0)
  62. (xy -3.81 3.81)
  63. )
  64. (stroke (width 0.254) (type default))
  65. (fill (type background))
  66. )
  67. (pin input line (at -7.62 0 0) (length 3.81)
  68. (name "~" (effects (font (size 1.27 1.27))))
  69. (number "3" (effects (font (size 1.27 1.27))))
  70. )
  71. (pin open_collector line (at 7.62 0 180) (length 3.81)
  72. (name "~" (effects (font (size 1.27 1.27))))
  73. (number "4" (effects (font (size 1.27 1.27))))
  74. )
  75. )
  76. (symbol "SN74LS07_3_0"
  77. (polyline
  78. (pts
  79. (xy -3.81 3.81)
  80. (xy -3.81 -3.81)
  81. (xy 3.81 0)
  82. (xy -3.81 3.81)
  83. )
  84. (stroke (width 0.254) (type default))
  85. (fill (type background))
  86. )
  87. (pin input line (at -7.62 0 0) (length 3.81)
  88. (name "~" (effects (font (size 1.27 1.27))))
  89. (number "5" (effects (font (size 1.27 1.27))))
  90. )
  91. (pin open_collector line (at 7.62 0 180) (length 3.81)
  92. (name "~" (effects (font (size 1.27 1.27))))
  93. (number "6" (effects (font (size 1.27 1.27))))
  94. )
  95. )
  96. (symbol "SN74LS07_4_0"
  97. (polyline
  98. (pts
  99. (xy -3.81 3.81)
  100. (xy -3.81 -3.81)
  101. (xy 3.81 0)
  102. (xy -3.81 3.81)
  103. )
  104. (stroke (width 0.254) (type default))
  105. (fill (type background))
  106. )
  107. (pin open_collector line (at 7.62 0 180) (length 3.81)
  108. (name "~" (effects (font (size 1.27 1.27))))
  109. (number "8" (effects (font (size 1.27 1.27))))
  110. )
  111. (pin input line (at -7.62 0 0) (length 3.81)
  112. (name "~" (effects (font (size 1.27 1.27))))
  113. (number "9" (effects (font (size 1.27 1.27))))
  114. )
  115. )
  116. (symbol "SN74LS07_5_0"
  117. (polyline
  118. (pts
  119. (xy -3.81 3.81)
  120. (xy -3.81 -3.81)
  121. (xy 3.81 0)
  122. (xy -3.81 3.81)
  123. )
  124. (stroke (width 0.254) (type default))
  125. (fill (type background))
  126. )
  127. (pin open_collector line (at 7.62 0 180) (length 3.81)
  128. (name "~" (effects (font (size 1.27 1.27))))
  129. (number "10" (effects (font (size 1.27 1.27))))
  130. )
  131. (pin input line (at -7.62 0 0) (length 3.81)
  132. (name "~" (effects (font (size 1.27 1.27))))
  133. (number "11" (effects (font (size 1.27 1.27))))
  134. )
  135. )
  136. (symbol "SN74LS07_6_0"
  137. (polyline
  138. (pts
  139. (xy -3.81 3.81)
  140. (xy -3.81 -3.81)
  141. (xy 3.81 0)
  142. (xy -3.81 3.81)
  143. )
  144. (stroke (width 0.254) (type default))
  145. (fill (type background))
  146. )
  147. (pin open_collector line (at 7.62 0 180) (length 3.81)
  148. (name "~" (effects (font (size 1.27 1.27))))
  149. (number "12" (effects (font (size 1.27 1.27))))
  150. )
  151. (pin input line (at -7.62 0 0) (length 3.81)
  152. (name "~" (effects (font (size 1.27 1.27))))
  153. (number "13" (effects (font (size 1.27 1.27))))
  154. )
  155. )
  156. (symbol "SN74LS07_7_0"
  157. (pin power_in line (at 0 12.7 270) (length 5.08)
  158. (name "VCC" (effects (font (size 1.27 1.27))))
  159. (number "14" (effects (font (size 1.27 1.27))))
  160. )
  161. (pin power_in line (at 0 -12.7 90) (length 5.08)
  162. (name "GND" (effects (font (size 1.27 1.27))))
  163. (number "7" (effects (font (size 1.27 1.27))))
  164. )
  165. )
  166. (symbol "SN74LS07_7_1"
  167. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  168. (stroke (width 0.254) (type default))
  169. (fill (type background))
  170. )
  171. )
  172. )
  173. (symbol "Connector:Conn_01x03_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  174. (property "Reference" "J" (at 0 5.08 0)
  175. (effects (font (size 1.27 1.27)))
  176. )
  177. (property "Value" "Conn_01x03_Male" (at 0 -5.08 0)
  178. (effects (font (size 1.27 1.27)))
  179. )
  180. (property "Footprint" "" (at 0 0 0)
  181. (effects (font (size 1.27 1.27)) hide)
  182. )
  183. (property "Datasheet" "~" (at 0 0 0)
  184. (effects (font (size 1.27 1.27)) hide)
  185. )
  186. (property "ki_keywords" "connector" (at 0 0 0)
  187. (effects (font (size 1.27 1.27)) hide)
  188. )
  189. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  190. (effects (font (size 1.27 1.27)) hide)
  191. )
  192. (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
  193. (effects (font (size 1.27 1.27)) hide)
  194. )
  195. (symbol "Conn_01x03_Male_1_1"
  196. (polyline
  197. (pts
  198. (xy 1.27 -2.54)
  199. (xy 0.8636 -2.54)
  200. )
  201. (stroke (width 0.1524) (type default))
  202. (fill (type none))
  203. )
  204. (polyline
  205. (pts
  206. (xy 1.27 0)
  207. (xy 0.8636 0)
  208. )
  209. (stroke (width 0.1524) (type default))
  210. (fill (type none))
  211. )
  212. (polyline
  213. (pts
  214. (xy 1.27 2.54)
  215. (xy 0.8636 2.54)
  216. )
  217. (stroke (width 0.1524) (type default))
  218. (fill (type none))
  219. )
  220. (rectangle (start 0.8636 -2.413) (end 0 -2.667)
  221. (stroke (width 0.1524) (type default))
  222. (fill (type outline))
  223. )
  224. (rectangle (start 0.8636 0.127) (end 0 -0.127)
  225. (stroke (width 0.1524) (type default))
  226. (fill (type outline))
  227. )
  228. (rectangle (start 0.8636 2.667) (end 0 2.413)
  229. (stroke (width 0.1524) (type default))
  230. (fill (type outline))
  231. )
  232. (pin passive line (at 5.08 2.54 180) (length 3.81)
  233. (name "Pin_1" (effects (font (size 1.27 1.27))))
  234. (number "1" (effects (font (size 1.27 1.27))))
  235. )
  236. (pin passive line (at 5.08 0 180) (length 3.81)
  237. (name "Pin_2" (effects (font (size 1.27 1.27))))
  238. (number "2" (effects (font (size 1.27 1.27))))
  239. )
  240. (pin passive line (at 5.08 -2.54 180) (length 3.81)
  241. (name "Pin_3" (effects (font (size 1.27 1.27))))
  242. (number "3" (effects (font (size 1.27 1.27))))
  243. )
  244. )
  245. )
  246. (symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  247. (property "Reference" "J" (at 0 5.08 0)
  248. (effects (font (size 1.27 1.27)))
  249. )
  250. (property "Value" "Conn_01x03" (at 0 -5.08 0)
  251. (effects (font (size 1.27 1.27)))
  252. )
  253. (property "Footprint" "" (at 0 0 0)
  254. (effects (font (size 1.27 1.27)) hide)
  255. )
  256. (property "Datasheet" "~" (at 0 0 0)
  257. (effects (font (size 1.27 1.27)) hide)
  258. )
  259. (property "ki_keywords" "connector" (at 0 0 0)
  260. (effects (font (size 1.27 1.27)) hide)
  261. )
  262. (property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  263. (effects (font (size 1.27 1.27)) hide)
  264. )
  265. (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
  266. (effects (font (size 1.27 1.27)) hide)
  267. )
  268. (symbol "Conn_01x03_1_1"
  269. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  270. (stroke (width 0.1524) (type default))
  271. (fill (type none))
  272. )
  273. (rectangle (start -1.27 0.127) (end 0 -0.127)
  274. (stroke (width 0.1524) (type default))
  275. (fill (type none))
  276. )
  277. (rectangle (start -1.27 2.667) (end 0 2.413)
  278. (stroke (width 0.1524) (type default))
  279. (fill (type none))
  280. )
  281. (rectangle (start -1.27 3.81) (end 1.27 -3.81)
  282. (stroke (width 0.254) (type default))
  283. (fill (type background))
  284. )
  285. (pin passive line (at -5.08 2.54 0) (length 3.81)
  286. (name "Pin_1" (effects (font (size 1.27 1.27))))
  287. (number "1" (effects (font (size 1.27 1.27))))
  288. )
  289. (pin passive line (at -5.08 0 0) (length 3.81)
  290. (name "Pin_2" (effects (font (size 1.27 1.27))))
  291. (number "2" (effects (font (size 1.27 1.27))))
  292. )
  293. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  294. (name "Pin_3" (effects (font (size 1.27 1.27))))
  295. (number "3" (effects (font (size 1.27 1.27))))
  296. )
  297. )
  298. )
  299. (symbol "Connector_Generic:Conn_02x03_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  300. (property "Reference" "J" (at 1.27 5.08 0)
  301. (effects (font (size 1.27 1.27)))
  302. )
  303. (property "Value" "Conn_02x03_Odd_Even" (at 1.27 -5.08 0)
  304. (effects (font (size 1.27 1.27)))
  305. )
  306. (property "Footprint" "" (at 0 0 0)
  307. (effects (font (size 1.27 1.27)) hide)
  308. )
  309. (property "Datasheet" "~" (at 0 0 0)
  310. (effects (font (size 1.27 1.27)) hide)
  311. )
  312. (property "ki_keywords" "connector" (at 0 0 0)
  313. (effects (font (size 1.27 1.27)) hide)
  314. )
  315. (property "ki_description" "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  316. (effects (font (size 1.27 1.27)) hide)
  317. )
  318. (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
  319. (effects (font (size 1.27 1.27)) hide)
  320. )
  321. (symbol "Conn_02x03_Odd_Even_1_1"
  322. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  323. (stroke (width 0.1524) (type default))
  324. (fill (type none))
  325. )
  326. (rectangle (start -1.27 0.127) (end 0 -0.127)
  327. (stroke (width 0.1524) (type default))
  328. (fill (type none))
  329. )
  330. (rectangle (start -1.27 2.667) (end 0 2.413)
  331. (stroke (width 0.1524) (type default))
  332. (fill (type none))
  333. )
  334. (rectangle (start -1.27 3.81) (end 3.81 -3.81)
  335. (stroke (width 0.254) (type default))
  336. (fill (type background))
  337. )
  338. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  339. (stroke (width 0.1524) (type default))
  340. (fill (type none))
  341. )
  342. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  343. (stroke (width 0.1524) (type default))
  344. (fill (type none))
  345. )
  346. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  347. (stroke (width 0.1524) (type default))
  348. (fill (type none))
  349. )
  350. (pin passive line (at -5.08 2.54 0) (length 3.81)
  351. (name "Pin_1" (effects (font (size 1.27 1.27))))
  352. (number "1" (effects (font (size 1.27 1.27))))
  353. )
  354. (pin passive line (at 7.62 2.54 180) (length 3.81)
  355. (name "Pin_2" (effects (font (size 1.27 1.27))))
  356. (number "2" (effects (font (size 1.27 1.27))))
  357. )
  358. (pin passive line (at -5.08 0 0) (length 3.81)
  359. (name "Pin_3" (effects (font (size 1.27 1.27))))
  360. (number "3" (effects (font (size 1.27 1.27))))
  361. )
  362. (pin passive line (at 7.62 0 180) (length 3.81)
  363. (name "Pin_4" (effects (font (size 1.27 1.27))))
  364. (number "4" (effects (font (size 1.27 1.27))))
  365. )
  366. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  367. (name "Pin_5" (effects (font (size 1.27 1.27))))
  368. (number "5" (effects (font (size 1.27 1.27))))
  369. )
  370. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  371. (name "Pin_6" (effects (font (size 1.27 1.27))))
  372. (number "6" (effects (font (size 1.27 1.27))))
  373. )
  374. )
  375. )
  376. (symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  377. (property "Reference" "J" (at 1.27 7.62 0)
  378. (effects (font (size 1.27 1.27)))
  379. )
  380. (property "Value" "Conn_02x05_Odd_Even" (at 1.27 -7.62 0)
  381. (effects (font (size 1.27 1.27)))
  382. )
  383. (property "Footprint" "" (at 0 0 0)
  384. (effects (font (size 1.27 1.27)) hide)
  385. )
  386. (property "Datasheet" "~" (at 0 0 0)
  387. (effects (font (size 1.27 1.27)) hide)
  388. )
  389. (property "ki_keywords" "connector" (at 0 0 0)
  390. (effects (font (size 1.27 1.27)) hide)
  391. )
  392. (property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  393. (effects (font (size 1.27 1.27)) hide)
  394. )
  395. (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
  396. (effects (font (size 1.27 1.27)) hide)
  397. )
  398. (symbol "Conn_02x05_Odd_Even_1_1"
  399. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  400. (stroke (width 0.1524) (type default))
  401. (fill (type none))
  402. )
  403. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  404. (stroke (width 0.1524) (type default))
  405. (fill (type none))
  406. )
  407. (rectangle (start -1.27 0.127) (end 0 -0.127)
  408. (stroke (width 0.1524) (type default))
  409. (fill (type none))
  410. )
  411. (rectangle (start -1.27 2.667) (end 0 2.413)
  412. (stroke (width 0.1524) (type default))
  413. (fill (type none))
  414. )
  415. (rectangle (start -1.27 5.207) (end 0 4.953)
  416. (stroke (width 0.1524) (type default))
  417. (fill (type none))
  418. )
  419. (rectangle (start -1.27 6.35) (end 3.81 -6.35)
  420. (stroke (width 0.254) (type default))
  421. (fill (type background))
  422. )
  423. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  424. (stroke (width 0.1524) (type default))
  425. (fill (type none))
  426. )
  427. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  428. (stroke (width 0.1524) (type default))
  429. (fill (type none))
  430. )
  431. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  432. (stroke (width 0.1524) (type default))
  433. (fill (type none))
  434. )
  435. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  436. (stroke (width 0.1524) (type default))
  437. (fill (type none))
  438. )
  439. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  440. (stroke (width 0.1524) (type default))
  441. (fill (type none))
  442. )
  443. (pin passive line (at -5.08 5.08 0) (length 3.81)
  444. (name "Pin_1" (effects (font (size 1.27 1.27))))
  445. (number "1" (effects (font (size 1.27 1.27))))
  446. )
  447. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  448. (name "Pin_10" (effects (font (size 1.27 1.27))))
  449. (number "10" (effects (font (size 1.27 1.27))))
  450. )
  451. (pin passive line (at 7.62 5.08 180) (length 3.81)
  452. (name "Pin_2" (effects (font (size 1.27 1.27))))
  453. (number "2" (effects (font (size 1.27 1.27))))
  454. )
  455. (pin passive line (at -5.08 2.54 0) (length 3.81)
  456. (name "Pin_3" (effects (font (size 1.27 1.27))))
  457. (number "3" (effects (font (size 1.27 1.27))))
  458. )
  459. (pin passive line (at 7.62 2.54 180) (length 3.81)
  460. (name "Pin_4" (effects (font (size 1.27 1.27))))
  461. (number "4" (effects (font (size 1.27 1.27))))
  462. )
  463. (pin passive line (at -5.08 0 0) (length 3.81)
  464. (name "Pin_5" (effects (font (size 1.27 1.27))))
  465. (number "5" (effects (font (size 1.27 1.27))))
  466. )
  467. (pin passive line (at 7.62 0 180) (length 3.81)
  468. (name "Pin_6" (effects (font (size 1.27 1.27))))
  469. (number "6" (effects (font (size 1.27 1.27))))
  470. )
  471. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  472. (name "Pin_7" (effects (font (size 1.27 1.27))))
  473. (number "7" (effects (font (size 1.27 1.27))))
  474. )
  475. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  476. (name "Pin_8" (effects (font (size 1.27 1.27))))
  477. (number "8" (effects (font (size 1.27 1.27))))
  478. )
  479. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  480. (name "Pin_9" (effects (font (size 1.27 1.27))))
  481. (number "9" (effects (font (size 1.27 1.27))))
  482. )
  483. )
  484. )
  485. (symbol "Connector_Generic:Conn_02x17_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  486. (property "Reference" "J" (at 1.27 22.86 0)
  487. (effects (font (size 1.27 1.27)))
  488. )
  489. (property "Value" "Conn_02x17_Odd_Even" (at 1.27 -22.86 0)
  490. (effects (font (size 1.27 1.27)))
  491. )
  492. (property "Footprint" "" (at 0 0 0)
  493. (effects (font (size 1.27 1.27)) hide)
  494. )
  495. (property "Datasheet" "~" (at 0 0 0)
  496. (effects (font (size 1.27 1.27)) hide)
  497. )
  498. (property "ki_keywords" "connector" (at 0 0 0)
  499. (effects (font (size 1.27 1.27)) hide)
  500. )
  501. (property "ki_description" "Generic connector, double row, 02x17, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  502. (effects (font (size 1.27 1.27)) hide)
  503. )
  504. (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
  505. (effects (font (size 1.27 1.27)) hide)
  506. )
  507. (symbol "Conn_02x17_Odd_Even_1_1"
  508. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  509. (stroke (width 0.1524) (type default))
  510. (fill (type none))
  511. )
  512. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  513. (stroke (width 0.1524) (type default))
  514. (fill (type none))
  515. )
  516. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  517. (stroke (width 0.1524) (type default))
  518. (fill (type none))
  519. )
  520. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  521. (stroke (width 0.1524) (type default))
  522. (fill (type none))
  523. )
  524. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  525. (stroke (width 0.1524) (type default))
  526. (fill (type none))
  527. )
  528. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  529. (stroke (width 0.1524) (type default))
  530. (fill (type none))
  531. )
  532. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  533. (stroke (width 0.1524) (type default))
  534. (fill (type none))
  535. )
  536. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  537. (stroke (width 0.1524) (type default))
  538. (fill (type none))
  539. )
  540. (rectangle (start -1.27 0.127) (end 0 -0.127)
  541. (stroke (width 0.1524) (type default))
  542. (fill (type none))
  543. )
  544. (rectangle (start -1.27 2.667) (end 0 2.413)
  545. (stroke (width 0.1524) (type default))
  546. (fill (type none))
  547. )
  548. (rectangle (start -1.27 5.207) (end 0 4.953)
  549. (stroke (width 0.1524) (type default))
  550. (fill (type none))
  551. )
  552. (rectangle (start -1.27 7.747) (end 0 7.493)
  553. (stroke (width 0.1524) (type default))
  554. (fill (type none))
  555. )
  556. (rectangle (start -1.27 10.287) (end 0 10.033)
  557. (stroke (width 0.1524) (type default))
  558. (fill (type none))
  559. )
  560. (rectangle (start -1.27 12.827) (end 0 12.573)
  561. (stroke (width 0.1524) (type default))
  562. (fill (type none))
  563. )
  564. (rectangle (start -1.27 15.367) (end 0 15.113)
  565. (stroke (width 0.1524) (type default))
  566. (fill (type none))
  567. )
  568. (rectangle (start -1.27 17.907) (end 0 17.653)
  569. (stroke (width 0.1524) (type default))
  570. (fill (type none))
  571. )
  572. (rectangle (start -1.27 20.447) (end 0 20.193)
  573. (stroke (width 0.1524) (type default))
  574. (fill (type none))
  575. )
  576. (rectangle (start -1.27 21.59) (end 3.81 -21.59)
  577. (stroke (width 0.254) (type default))
  578. (fill (type background))
  579. )
  580. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  581. (stroke (width 0.1524) (type default))
  582. (fill (type none))
  583. )
  584. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  585. (stroke (width 0.1524) (type default))
  586. (fill (type none))
  587. )
  588. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  589. (stroke (width 0.1524) (type default))
  590. (fill (type none))
  591. )
  592. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  593. (stroke (width 0.1524) (type default))
  594. (fill (type none))
  595. )
  596. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  597. (stroke (width 0.1524) (type default))
  598. (fill (type none))
  599. )
  600. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  601. (stroke (width 0.1524) (type default))
  602. (fill (type none))
  603. )
  604. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  605. (stroke (width 0.1524) (type default))
  606. (fill (type none))
  607. )
  608. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  609. (stroke (width 0.1524) (type default))
  610. (fill (type none))
  611. )
  612. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  613. (stroke (width 0.1524) (type default))
  614. (fill (type none))
  615. )
  616. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  617. (stroke (width 0.1524) (type default))
  618. (fill (type none))
  619. )
  620. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  621. (stroke (width 0.1524) (type default))
  622. (fill (type none))
  623. )
  624. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  625. (stroke (width 0.1524) (type default))
  626. (fill (type none))
  627. )
  628. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  629. (stroke (width 0.1524) (type default))
  630. (fill (type none))
  631. )
  632. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  633. (stroke (width 0.1524) (type default))
  634. (fill (type none))
  635. )
  636. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  637. (stroke (width 0.1524) (type default))
  638. (fill (type none))
  639. )
  640. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  641. (stroke (width 0.1524) (type default))
  642. (fill (type none))
  643. )
  644. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  645. (stroke (width 0.1524) (type default))
  646. (fill (type none))
  647. )
  648. (pin passive line (at -5.08 20.32 0) (length 3.81)
  649. (name "Pin_1" (effects (font (size 1.27 1.27))))
  650. (number "1" (effects (font (size 1.27 1.27))))
  651. )
  652. (pin passive line (at 7.62 10.16 180) (length 3.81)
  653. (name "Pin_10" (effects (font (size 1.27 1.27))))
  654. (number "10" (effects (font (size 1.27 1.27))))
  655. )
  656. (pin passive line (at -5.08 7.62 0) (length 3.81)
  657. (name "Pin_11" (effects (font (size 1.27 1.27))))
  658. (number "11" (effects (font (size 1.27 1.27))))
  659. )
  660. (pin passive line (at 7.62 7.62 180) (length 3.81)
  661. (name "Pin_12" (effects (font (size 1.27 1.27))))
  662. (number "12" (effects (font (size 1.27 1.27))))
  663. )
  664. (pin passive line (at -5.08 5.08 0) (length 3.81)
  665. (name "Pin_13" (effects (font (size 1.27 1.27))))
  666. (number "13" (effects (font (size 1.27 1.27))))
  667. )
  668. (pin passive line (at 7.62 5.08 180) (length 3.81)
  669. (name "Pin_14" (effects (font (size 1.27 1.27))))
  670. (number "14" (effects (font (size 1.27 1.27))))
  671. )
  672. (pin passive line (at -5.08 2.54 0) (length 3.81)
  673. (name "Pin_15" (effects (font (size 1.27 1.27))))
  674. (number "15" (effects (font (size 1.27 1.27))))
  675. )
  676. (pin passive line (at 7.62 2.54 180) (length 3.81)
  677. (name "Pin_16" (effects (font (size 1.27 1.27))))
  678. (number "16" (effects (font (size 1.27 1.27))))
  679. )
  680. (pin passive line (at -5.08 0 0) (length 3.81)
  681. (name "Pin_17" (effects (font (size 1.27 1.27))))
  682. (number "17" (effects (font (size 1.27 1.27))))
  683. )
  684. (pin passive line (at 7.62 0 180) (length 3.81)
  685. (name "Pin_18" (effects (font (size 1.27 1.27))))
  686. (number "18" (effects (font (size 1.27 1.27))))
  687. )
  688. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  689. (name "Pin_19" (effects (font (size 1.27 1.27))))
  690. (number "19" (effects (font (size 1.27 1.27))))
  691. )
  692. (pin passive line (at 7.62 20.32 180) (length 3.81)
  693. (name "Pin_2" (effects (font (size 1.27 1.27))))
  694. (number "2" (effects (font (size 1.27 1.27))))
  695. )
  696. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  697. (name "Pin_20" (effects (font (size 1.27 1.27))))
  698. (number "20" (effects (font (size 1.27 1.27))))
  699. )
  700. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  701. (name "Pin_21" (effects (font (size 1.27 1.27))))
  702. (number "21" (effects (font (size 1.27 1.27))))
  703. )
  704. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  705. (name "Pin_22" (effects (font (size 1.27 1.27))))
  706. (number "22" (effects (font (size 1.27 1.27))))
  707. )
  708. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  709. (name "Pin_23" (effects (font (size 1.27 1.27))))
  710. (number "23" (effects (font (size 1.27 1.27))))
  711. )
  712. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  713. (name "Pin_24" (effects (font (size 1.27 1.27))))
  714. (number "24" (effects (font (size 1.27 1.27))))
  715. )
  716. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  717. (name "Pin_25" (effects (font (size 1.27 1.27))))
  718. (number "25" (effects (font (size 1.27 1.27))))
  719. )
  720. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  721. (name "Pin_26" (effects (font (size 1.27 1.27))))
  722. (number "26" (effects (font (size 1.27 1.27))))
  723. )
  724. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  725. (name "Pin_27" (effects (font (size 1.27 1.27))))
  726. (number "27" (effects (font (size 1.27 1.27))))
  727. )
  728. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  729. (name "Pin_28" (effects (font (size 1.27 1.27))))
  730. (number "28" (effects (font (size 1.27 1.27))))
  731. )
  732. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  733. (name "Pin_29" (effects (font (size 1.27 1.27))))
  734. (number "29" (effects (font (size 1.27 1.27))))
  735. )
  736. (pin passive line (at -5.08 17.78 0) (length 3.81)
  737. (name "Pin_3" (effects (font (size 1.27 1.27))))
  738. (number "3" (effects (font (size 1.27 1.27))))
  739. )
  740. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  741. (name "Pin_30" (effects (font (size 1.27 1.27))))
  742. (number "30" (effects (font (size 1.27 1.27))))
  743. )
  744. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  745. (name "Pin_31" (effects (font (size 1.27 1.27))))
  746. (number "31" (effects (font (size 1.27 1.27))))
  747. )
  748. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  749. (name "Pin_32" (effects (font (size 1.27 1.27))))
  750. (number "32" (effects (font (size 1.27 1.27))))
  751. )
  752. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  753. (name "Pin_33" (effects (font (size 1.27 1.27))))
  754. (number "33" (effects (font (size 1.27 1.27))))
  755. )
  756. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  757. (name "Pin_34" (effects (font (size 1.27 1.27))))
  758. (number "34" (effects (font (size 1.27 1.27))))
  759. )
  760. (pin passive line (at 7.62 17.78 180) (length 3.81)
  761. (name "Pin_4" (effects (font (size 1.27 1.27))))
  762. (number "4" (effects (font (size 1.27 1.27))))
  763. )
  764. (pin passive line (at -5.08 15.24 0) (length 3.81)
  765. (name "Pin_5" (effects (font (size 1.27 1.27))))
  766. (number "5" (effects (font (size 1.27 1.27))))
  767. )
  768. (pin passive line (at 7.62 15.24 180) (length 3.81)
  769. (name "Pin_6" (effects (font (size 1.27 1.27))))
  770. (number "6" (effects (font (size 1.27 1.27))))
  771. )
  772. (pin passive line (at -5.08 12.7 0) (length 3.81)
  773. (name "Pin_7" (effects (font (size 1.27 1.27))))
  774. (number "7" (effects (font (size 1.27 1.27))))
  775. )
  776. (pin passive line (at 7.62 12.7 180) (length 3.81)
  777. (name "Pin_8" (effects (font (size 1.27 1.27))))
  778. (number "8" (effects (font (size 1.27 1.27))))
  779. )
  780. (pin passive line (at -5.08 10.16 0) (length 3.81)
  781. (name "Pin_9" (effects (font (size 1.27 1.27))))
  782. (number "9" (effects (font (size 1.27 1.27))))
  783. )
  784. )
  785. )
  786. (symbol "Connector_Generic:Conn_02x25_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  787. (property "Reference" "J" (at 1.27 33.02 0)
  788. (effects (font (size 1.27 1.27)))
  789. )
  790. (property "Value" "Conn_02x25_Odd_Even" (at 1.27 -33.02 0)
  791. (effects (font (size 1.27 1.27)))
  792. )
  793. (property "Footprint" "" (at 0 0 0)
  794. (effects (font (size 1.27 1.27)) hide)
  795. )
  796. (property "Datasheet" "~" (at 0 0 0)
  797. (effects (font (size 1.27 1.27)) hide)
  798. )
  799. (property "ki_keywords" "connector" (at 0 0 0)
  800. (effects (font (size 1.27 1.27)) hide)
  801. )
  802. (property "ki_description" "Generic connector, double row, 02x25, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
  803. (effects (font (size 1.27 1.27)) hide)
  804. )
  805. (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
  806. (effects (font (size 1.27 1.27)) hide)
  807. )
  808. (symbol "Conn_02x25_Odd_Even_1_1"
  809. (rectangle (start -1.27 -30.353) (end 0 -30.607)
  810. (stroke (width 0.1524) (type default))
  811. (fill (type none))
  812. )
  813. (rectangle (start -1.27 -27.813) (end 0 -28.067)
  814. (stroke (width 0.1524) (type default))
  815. (fill (type none))
  816. )
  817. (rectangle (start -1.27 -25.273) (end 0 -25.527)
  818. (stroke (width 0.1524) (type default))
  819. (fill (type none))
  820. )
  821. (rectangle (start -1.27 -22.733) (end 0 -22.987)
  822. (stroke (width 0.1524) (type default))
  823. (fill (type none))
  824. )
  825. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  826. (stroke (width 0.1524) (type default))
  827. (fill (type none))
  828. )
  829. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  830. (stroke (width 0.1524) (type default))
  831. (fill (type none))
  832. )
  833. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  834. (stroke (width 0.1524) (type default))
  835. (fill (type none))
  836. )
  837. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  838. (stroke (width 0.1524) (type default))
  839. (fill (type none))
  840. )
  841. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  842. (stroke (width 0.1524) (type default))
  843. (fill (type none))
  844. )
  845. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  846. (stroke (width 0.1524) (type default))
  847. (fill (type none))
  848. )
  849. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  850. (stroke (width 0.1524) (type default))
  851. (fill (type none))
  852. )
  853. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  854. (stroke (width 0.1524) (type default))
  855. (fill (type none))
  856. )
  857. (rectangle (start -1.27 0.127) (end 0 -0.127)
  858. (stroke (width 0.1524) (type default))
  859. (fill (type none))
  860. )
  861. (rectangle (start -1.27 2.667) (end 0 2.413)
  862. (stroke (width 0.1524) (type default))
  863. (fill (type none))
  864. )
  865. (rectangle (start -1.27 5.207) (end 0 4.953)
  866. (stroke (width 0.1524) (type default))
  867. (fill (type none))
  868. )
  869. (rectangle (start -1.27 7.747) (end 0 7.493)
  870. (stroke (width 0.1524) (type default))
  871. (fill (type none))
  872. )
  873. (rectangle (start -1.27 10.287) (end 0 10.033)
  874. (stroke (width 0.1524) (type default))
  875. (fill (type none))
  876. )
  877. (rectangle (start -1.27 12.827) (end 0 12.573)
  878. (stroke (width 0.1524) (type default))
  879. (fill (type none))
  880. )
  881. (rectangle (start -1.27 15.367) (end 0 15.113)
  882. (stroke (width 0.1524) (type default))
  883. (fill (type none))
  884. )
  885. (rectangle (start -1.27 17.907) (end 0 17.653)
  886. (stroke (width 0.1524) (type default))
  887. (fill (type none))
  888. )
  889. (rectangle (start -1.27 20.447) (end 0 20.193)
  890. (stroke (width 0.1524) (type default))
  891. (fill (type none))
  892. )
  893. (rectangle (start -1.27 22.987) (end 0 22.733)
  894. (stroke (width 0.1524) (type default))
  895. (fill (type none))
  896. )
  897. (rectangle (start -1.27 25.527) (end 0 25.273)
  898. (stroke (width 0.1524) (type default))
  899. (fill (type none))
  900. )
  901. (rectangle (start -1.27 28.067) (end 0 27.813)
  902. (stroke (width 0.1524) (type default))
  903. (fill (type none))
  904. )
  905. (rectangle (start -1.27 30.607) (end 0 30.353)
  906. (stroke (width 0.1524) (type default))
  907. (fill (type none))
  908. )
  909. (rectangle (start -1.27 31.75) (end 3.81 -31.75)
  910. (stroke (width 0.254) (type default))
  911. (fill (type background))
  912. )
  913. (rectangle (start 3.81 -30.353) (end 2.54 -30.607)
  914. (stroke (width 0.1524) (type default))
  915. (fill (type none))
  916. )
  917. (rectangle (start 3.81 -27.813) (end 2.54 -28.067)
  918. (stroke (width 0.1524) (type default))
  919. (fill (type none))
  920. )
  921. (rectangle (start 3.81 -25.273) (end 2.54 -25.527)
  922. (stroke (width 0.1524) (type default))
  923. (fill (type none))
  924. )
  925. (rectangle (start 3.81 -22.733) (end 2.54 -22.987)
  926. (stroke (width 0.1524) (type default))
  927. (fill (type none))
  928. )
  929. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  930. (stroke (width 0.1524) (type default))
  931. (fill (type none))
  932. )
  933. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  934. (stroke (width 0.1524) (type default))
  935. (fill (type none))
  936. )
  937. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  938. (stroke (width 0.1524) (type default))
  939. (fill (type none))
  940. )
  941. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  942. (stroke (width 0.1524) (type default))
  943. (fill (type none))
  944. )
  945. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  946. (stroke (width 0.1524) (type default))
  947. (fill (type none))
  948. )
  949. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  950. (stroke (width 0.1524) (type default))
  951. (fill (type none))
  952. )
  953. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  954. (stroke (width 0.1524) (type default))
  955. (fill (type none))
  956. )
  957. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  958. (stroke (width 0.1524) (type default))
  959. (fill (type none))
  960. )
  961. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  962. (stroke (width 0.1524) (type default))
  963. (fill (type none))
  964. )
  965. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  966. (stroke (width 0.1524) (type default))
  967. (fill (type none))
  968. )
  969. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  970. (stroke (width 0.1524) (type default))
  971. (fill (type none))
  972. )
  973. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  974. (stroke (width 0.1524) (type default))
  975. (fill (type none))
  976. )
  977. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  978. (stroke (width 0.1524) (type default))
  979. (fill (type none))
  980. )
  981. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  982. (stroke (width 0.1524) (type default))
  983. (fill (type none))
  984. )
  985. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  986. (stroke (width 0.1524) (type default))
  987. (fill (type none))
  988. )
  989. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  990. (stroke (width 0.1524) (type default))
  991. (fill (type none))
  992. )
  993. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  994. (stroke (width 0.1524) (type default))
  995. (fill (type none))
  996. )
  997. (rectangle (start 3.81 22.987) (end 2.54 22.733)
  998. (stroke (width 0.1524) (type default))
  999. (fill (type none))
  1000. )
  1001. (rectangle (start 3.81 25.527) (end 2.54 25.273)
  1002. (stroke (width 0.1524) (type default))
  1003. (fill (type none))
  1004. )
  1005. (rectangle (start 3.81 28.067) (end 2.54 27.813)
  1006. (stroke (width 0.1524) (type default))
  1007. (fill (type none))
  1008. )
  1009. (rectangle (start 3.81 30.607) (end 2.54 30.353)
  1010. (stroke (width 0.1524) (type default))
  1011. (fill (type none))
  1012. )
  1013. (pin passive line (at -5.08 30.48 0) (length 3.81)
  1014. (name "Pin_1" (effects (font (size 1.27 1.27))))
  1015. (number "1" (effects (font (size 1.27 1.27))))
  1016. )
  1017. (pin passive line (at 7.62 20.32 180) (length 3.81)
  1018. (name "Pin_10" (effects (font (size 1.27 1.27))))
  1019. (number "10" (effects (font (size 1.27 1.27))))
  1020. )
  1021. (pin passive line (at -5.08 17.78 0) (length 3.81)
  1022. (name "Pin_11" (effects (font (size 1.27 1.27))))
  1023. (number "11" (effects (font (size 1.27 1.27))))
  1024. )
  1025. (pin passive line (at 7.62 17.78 180) (length 3.81)
  1026. (name "Pin_12" (effects (font (size 1.27 1.27))))
  1027. (number "12" (effects (font (size 1.27 1.27))))
  1028. )
  1029. (pin passive line (at -5.08 15.24 0) (length 3.81)
  1030. (name "Pin_13" (effects (font (size 1.27 1.27))))
  1031. (number "13" (effects (font (size 1.27 1.27))))
  1032. )
  1033. (pin passive line (at 7.62 15.24 180) (length 3.81)
  1034. (name "Pin_14" (effects (font (size 1.27 1.27))))
  1035. (number "14" (effects (font (size 1.27 1.27))))
  1036. )
  1037. (pin passive line (at -5.08 12.7 0) (length 3.81)
  1038. (name "Pin_15" (effects (font (size 1.27 1.27))))
  1039. (number "15" (effects (font (size 1.27 1.27))))
  1040. )
  1041. (pin passive line (at 7.62 12.7 180) (length 3.81)
  1042. (name "Pin_16" (effects (font (size 1.27 1.27))))
  1043. (number "16" (effects (font (size 1.27 1.27))))
  1044. )
  1045. (pin passive line (at -5.08 10.16 0) (length 3.81)
  1046. (name "Pin_17" (effects (font (size 1.27 1.27))))
  1047. (number "17" (effects (font (size 1.27 1.27))))
  1048. )
  1049. (pin passive line (at 7.62 10.16 180) (length 3.81)
  1050. (name "Pin_18" (effects (font (size 1.27 1.27))))
  1051. (number "18" (effects (font (size 1.27 1.27))))
  1052. )
  1053. (pin passive line (at -5.08 7.62 0) (length 3.81)
  1054. (name "Pin_19" (effects (font (size 1.27 1.27))))
  1055. (number "19" (effects (font (size 1.27 1.27))))
  1056. )
  1057. (pin passive line (at 7.62 30.48 180) (length 3.81)
  1058. (name "Pin_2" (effects (font (size 1.27 1.27))))
  1059. (number "2" (effects (font (size 1.27 1.27))))
  1060. )
  1061. (pin passive line (at 7.62 7.62 180) (length 3.81)
  1062. (name "Pin_20" (effects (font (size 1.27 1.27))))
  1063. (number "20" (effects (font (size 1.27 1.27))))
  1064. )
  1065. (pin passive line (at -5.08 5.08 0) (length 3.81)
  1066. (name "Pin_21" (effects (font (size 1.27 1.27))))
  1067. (number "21" (effects (font (size 1.27 1.27))))
  1068. )
  1069. (pin passive line (at 7.62 5.08 180) (length 3.81)
  1070. (name "Pin_22" (effects (font (size 1.27 1.27))))
  1071. (number "22" (effects (font (size 1.27 1.27))))
  1072. )
  1073. (pin passive line (at -5.08 2.54 0) (length 3.81)
  1074. (name "Pin_23" (effects (font (size 1.27 1.27))))
  1075. (number "23" (effects (font (size 1.27 1.27))))
  1076. )
  1077. (pin passive line (at 7.62 2.54 180) (length 3.81)
  1078. (name "Pin_24" (effects (font (size 1.27 1.27))))
  1079. (number "24" (effects (font (size 1.27 1.27))))
  1080. )
  1081. (pin passive line (at -5.08 0 0) (length 3.81)
  1082. (name "Pin_25" (effects (font (size 1.27 1.27))))
  1083. (number "25" (effects (font (size 1.27 1.27))))
  1084. )
  1085. (pin passive line (at 7.62 0 180) (length 3.81)
  1086. (name "Pin_26" (effects (font (size 1.27 1.27))))
  1087. (number "26" (effects (font (size 1.27 1.27))))
  1088. )
  1089. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  1090. (name "Pin_27" (effects (font (size 1.27 1.27))))
  1091. (number "27" (effects (font (size 1.27 1.27))))
  1092. )
  1093. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  1094. (name "Pin_28" (effects (font (size 1.27 1.27))))
  1095. (number "28" (effects (font (size 1.27 1.27))))
  1096. )
  1097. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  1098. (name "Pin_29" (effects (font (size 1.27 1.27))))
  1099. (number "29" (effects (font (size 1.27 1.27))))
  1100. )
  1101. (pin passive line (at -5.08 27.94 0) (length 3.81)
  1102. (name "Pin_3" (effects (font (size 1.27 1.27))))
  1103. (number "3" (effects (font (size 1.27 1.27))))
  1104. )
  1105. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  1106. (name "Pin_30" (effects (font (size 1.27 1.27))))
  1107. (number "30" (effects (font (size 1.27 1.27))))
  1108. )
  1109. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  1110. (name "Pin_31" (effects (font (size 1.27 1.27))))
  1111. (number "31" (effects (font (size 1.27 1.27))))
  1112. )
  1113. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  1114. (name "Pin_32" (effects (font (size 1.27 1.27))))
  1115. (number "32" (effects (font (size 1.27 1.27))))
  1116. )
  1117. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  1118. (name "Pin_33" (effects (font (size 1.27 1.27))))
  1119. (number "33" (effects (font (size 1.27 1.27))))
  1120. )
  1121. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  1122. (name "Pin_34" (effects (font (size 1.27 1.27))))
  1123. (number "34" (effects (font (size 1.27 1.27))))
  1124. )
  1125. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  1126. (name "Pin_35" (effects (font (size 1.27 1.27))))
  1127. (number "35" (effects (font (size 1.27 1.27))))
  1128. )
  1129. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  1130. (name "Pin_36" (effects (font (size 1.27 1.27))))
  1131. (number "36" (effects (font (size 1.27 1.27))))
  1132. )
  1133. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  1134. (name "Pin_37" (effects (font (size 1.27 1.27))))
  1135. (number "37" (effects (font (size 1.27 1.27))))
  1136. )
  1137. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  1138. (name "Pin_38" (effects (font (size 1.27 1.27))))
  1139. (number "38" (effects (font (size 1.27 1.27))))
  1140. )
  1141. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  1142. (name "Pin_39" (effects (font (size 1.27 1.27))))
  1143. (number "39" (effects (font (size 1.27 1.27))))
  1144. )
  1145. (pin passive line (at 7.62 27.94 180) (length 3.81)
  1146. (name "Pin_4" (effects (font (size 1.27 1.27))))
  1147. (number "4" (effects (font (size 1.27 1.27))))
  1148. )
  1149. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  1150. (name "Pin_40" (effects (font (size 1.27 1.27))))
  1151. (number "40" (effects (font (size 1.27 1.27))))
  1152. )
  1153. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  1154. (name "Pin_41" (effects (font (size 1.27 1.27))))
  1155. (number "41" (effects (font (size 1.27 1.27))))
  1156. )
  1157. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  1158. (name "Pin_42" (effects (font (size 1.27 1.27))))
  1159. (number "42" (effects (font (size 1.27 1.27))))
  1160. )
  1161. (pin passive line (at -5.08 -22.86 0) (length 3.81)
  1162. (name "Pin_43" (effects (font (size 1.27 1.27))))
  1163. (number "43" (effects (font (size 1.27 1.27))))
  1164. )
  1165. (pin passive line (at 7.62 -22.86 180) (length 3.81)
  1166. (name "Pin_44" (effects (font (size 1.27 1.27))))
  1167. (number "44" (effects (font (size 1.27 1.27))))
  1168. )
  1169. (pin passive line (at -5.08 -25.4 0) (length 3.81)
  1170. (name "Pin_45" (effects (font (size 1.27 1.27))))
  1171. (number "45" (effects (font (size 1.27 1.27))))
  1172. )
  1173. (pin passive line (at 7.62 -25.4 180) (length 3.81)
  1174. (name "Pin_46" (effects (font (size 1.27 1.27))))
  1175. (number "46" (effects (font (size 1.27 1.27))))
  1176. )
  1177. (pin passive line (at -5.08 -27.94 0) (length 3.81)
  1178. (name "Pin_47" (effects (font (size 1.27 1.27))))
  1179. (number "47" (effects (font (size 1.27 1.27))))
  1180. )
  1181. (pin passive line (at 7.62 -27.94 180) (length 3.81)
  1182. (name "Pin_48" (effects (font (size 1.27 1.27))))
  1183. (number "48" (effects (font (size 1.27 1.27))))
  1184. )
  1185. (pin passive line (at -5.08 -30.48 0) (length 3.81)
  1186. (name "Pin_49" (effects (font (size 1.27 1.27))))
  1187. (number "49" (effects (font (size 1.27 1.27))))
  1188. )
  1189. (pin passive line (at -5.08 25.4 0) (length 3.81)
  1190. (name "Pin_5" (effects (font (size 1.27 1.27))))
  1191. (number "5" (effects (font (size 1.27 1.27))))
  1192. )
  1193. (pin passive line (at 7.62 -30.48 180) (length 3.81)
  1194. (name "Pin_50" (effects (font (size 1.27 1.27))))
  1195. (number "50" (effects (font (size 1.27 1.27))))
  1196. )
  1197. (pin passive line (at 7.62 25.4 180) (length 3.81)
  1198. (name "Pin_6" (effects (font (size 1.27 1.27))))
  1199. (number "6" (effects (font (size 1.27 1.27))))
  1200. )
  1201. (pin passive line (at -5.08 22.86 0) (length 3.81)
  1202. (name "Pin_7" (effects (font (size 1.27 1.27))))
  1203. (number "7" (effects (font (size 1.27 1.27))))
  1204. )
  1205. (pin passive line (at 7.62 22.86 180) (length 3.81)
  1206. (name "Pin_8" (effects (font (size 1.27 1.27))))
  1207. (number "8" (effects (font (size 1.27 1.27))))
  1208. )
  1209. (pin passive line (at -5.08 20.32 0) (length 3.81)
  1210. (name "Pin_9" (effects (font (size 1.27 1.27))))
  1211. (number "9" (effects (font (size 1.27 1.27))))
  1212. )
  1213. )
  1214. )
  1215. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1216. (property "Reference" "C" (at 0.254 1.778 0)
  1217. (effects (font (size 1.27 1.27)) (justify left))
  1218. )
  1219. (property "Value" "C_Small" (at 0.254 -2.032 0)
  1220. (effects (font (size 1.27 1.27)) (justify left))
  1221. )
  1222. (property "Footprint" "" (at 0 0 0)
  1223. (effects (font (size 1.27 1.27)) hide)
  1224. )
  1225. (property "Datasheet" "~" (at 0 0 0)
  1226. (effects (font (size 1.27 1.27)) hide)
  1227. )
  1228. (property "ki_keywords" "capacitor cap" (at 0 0 0)
  1229. (effects (font (size 1.27 1.27)) hide)
  1230. )
  1231. (property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
  1232. (effects (font (size 1.27 1.27)) hide)
  1233. )
  1234. (property "ki_fp_filters" "C_*" (at 0 0 0)
  1235. (effects (font (size 1.27 1.27)) hide)
  1236. )
  1237. (symbol "C_Small_0_1"
  1238. (polyline
  1239. (pts
  1240. (xy -1.524 -0.508)
  1241. (xy 1.524 -0.508)
  1242. )
  1243. (stroke (width 0.3302) (type default))
  1244. (fill (type none))
  1245. )
  1246. (polyline
  1247. (pts
  1248. (xy -1.524 0.508)
  1249. (xy 1.524 0.508)
  1250. )
  1251. (stroke (width 0.3048) (type default))
  1252. (fill (type none))
  1253. )
  1254. )
  1255. (symbol "C_Small_1_1"
  1256. (pin passive line (at 0 2.54 270) (length 2.032)
  1257. (name "~" (effects (font (size 1.27 1.27))))
  1258. (number "1" (effects (font (size 1.27 1.27))))
  1259. )
  1260. (pin passive line (at 0 -2.54 90) (length 2.032)
  1261. (name "~" (effects (font (size 1.27 1.27))))
  1262. (number "2" (effects (font (size 1.27 1.27))))
  1263. )
  1264. )
  1265. )
  1266. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1267. (property "Reference" "D" (at 0 2.54 0)
  1268. (effects (font (size 1.27 1.27)))
  1269. )
  1270. (property "Value" "LED" (at 0 -2.54 0)
  1271. (effects (font (size 1.27 1.27)))
  1272. )
  1273. (property "Footprint" "" (at 0 0 0)
  1274. (effects (font (size 1.27 1.27)) hide)
  1275. )
  1276. (property "Datasheet" "~" (at 0 0 0)
  1277. (effects (font (size 1.27 1.27)) hide)
  1278. )
  1279. (property "ki_keywords" "LED diode" (at 0 0 0)
  1280. (effects (font (size 1.27 1.27)) hide)
  1281. )
  1282. (property "ki_description" "Light emitting diode" (at 0 0 0)
  1283. (effects (font (size 1.27 1.27)) hide)
  1284. )
  1285. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
  1286. (effects (font (size 1.27 1.27)) hide)
  1287. )
  1288. (symbol "LED_0_1"
  1289. (polyline
  1290. (pts
  1291. (xy -1.27 -1.27)
  1292. (xy -1.27 1.27)
  1293. )
  1294. (stroke (width 0.254) (type default))
  1295. (fill (type none))
  1296. )
  1297. (polyline
  1298. (pts
  1299. (xy -1.27 0)
  1300. (xy 1.27 0)
  1301. )
  1302. (stroke (width 0) (type default))
  1303. (fill (type none))
  1304. )
  1305. (polyline
  1306. (pts
  1307. (xy 1.27 -1.27)
  1308. (xy 1.27 1.27)
  1309. (xy -1.27 0)
  1310. (xy 1.27 -1.27)
  1311. )
  1312. (stroke (width 0.254) (type default))
  1313. (fill (type none))
  1314. )
  1315. (polyline
  1316. (pts
  1317. (xy -3.048 -0.762)
  1318. (xy -4.572 -2.286)
  1319. (xy -3.81 -2.286)
  1320. (xy -4.572 -2.286)
  1321. (xy -4.572 -1.524)
  1322. )
  1323. (stroke (width 0) (type default))
  1324. (fill (type none))
  1325. )
  1326. (polyline
  1327. (pts
  1328. (xy -1.778 -0.762)
  1329. (xy -3.302 -2.286)
  1330. (xy -2.54 -2.286)
  1331. (xy -3.302 -2.286)
  1332. (xy -3.302 -1.524)
  1333. )
  1334. (stroke (width 0) (type default))
  1335. (fill (type none))
  1336. )
  1337. )
  1338. (symbol "LED_1_1"
  1339. (pin passive line (at -3.81 0 0) (length 2.54)
  1340. (name "K" (effects (font (size 1.27 1.27))))
  1341. (number "1" (effects (font (size 1.27 1.27))))
  1342. )
  1343. (pin passive line (at 3.81 0 180) (length 2.54)
  1344. (name "A" (effects (font (size 1.27 1.27))))
  1345. (number "2" (effects (font (size 1.27 1.27))))
  1346. )
  1347. )
  1348. )
  1349. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1350. (property "Reference" "R" (at 0.762 0.508 0)
  1351. (effects (font (size 1.27 1.27)) (justify left))
  1352. )
  1353. (property "Value" "R_Small" (at 0.762 -1.016 0)
  1354. (effects (font (size 1.27 1.27)) (justify left))
  1355. )
  1356. (property "Footprint" "" (at 0 0 0)
  1357. (effects (font (size 1.27 1.27)) hide)
  1358. )
  1359. (property "Datasheet" "~" (at 0 0 0)
  1360. (effects (font (size 1.27 1.27)) hide)
  1361. )
  1362. (property "ki_keywords" "R resistor" (at 0 0 0)
  1363. (effects (font (size 1.27 1.27)) hide)
  1364. )
  1365. (property "ki_description" "Resistor, small symbol" (at 0 0 0)
  1366. (effects (font (size 1.27 1.27)) hide)
  1367. )
  1368. (property "ki_fp_filters" "R_*" (at 0 0 0)
  1369. (effects (font (size 1.27 1.27)) hide)
  1370. )
  1371. (symbol "R_Small_0_1"
  1372. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  1373. (stroke (width 0.2032) (type default))
  1374. (fill (type none))
  1375. )
  1376. )
  1377. (symbol "R_Small_1_1"
  1378. (pin passive line (at 0 2.54 270) (length 0.762)
  1379. (name "~" (effects (font (size 1.27 1.27))))
  1380. (number "1" (effects (font (size 1.27 1.27))))
  1381. )
  1382. (pin passive line (at 0 -2.54 90) (length 0.762)
  1383. (name "~" (effects (font (size 1.27 1.27))))
  1384. (number "2" (effects (font (size 1.27 1.27))))
  1385. )
  1386. )
  1387. )
  1388. (symbol "Diode:1N4148W" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  1389. (property "Reference" "D" (at 0 2.54 0)
  1390. (effects (font (size 1.27 1.27)))
  1391. )
  1392. (property "Value" "1N4148W" (at 0 -2.54 0)
  1393. (effects (font (size 1.27 1.27)))
  1394. )
  1395. (property "Footprint" "Diode_SMD:D_SOD-123" (at 0 -4.445 0)
  1396. (effects (font (size 1.27 1.27)) hide)
  1397. )
  1398. (property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 0 0 0)
  1399. (effects (font (size 1.27 1.27)) hide)
  1400. )
  1401. (property "ki_keywords" "diode" (at 0 0 0)
  1402. (effects (font (size 1.27 1.27)) hide)
  1403. )
  1404. (property "ki_description" "75V 0.15A Fast Switching Diode, SOD-123" (at 0 0 0)
  1405. (effects (font (size 1.27 1.27)) hide)
  1406. )
  1407. (property "ki_fp_filters" "D*SOD?123*" (at 0 0 0)
  1408. (effects (font (size 1.27 1.27)) hide)
  1409. )
  1410. (symbol "1N4148W_0_1"
  1411. (polyline
  1412. (pts
  1413. (xy -1.27 1.27)
  1414. (xy -1.27 -1.27)
  1415. )
  1416. (stroke (width 0.254) (type default))
  1417. (fill (type none))
  1418. )
  1419. (polyline
  1420. (pts
  1421. (xy 1.27 0)
  1422. (xy -1.27 0)
  1423. )
  1424. (stroke (width 0) (type default))
  1425. (fill (type none))
  1426. )
  1427. (polyline
  1428. (pts
  1429. (xy 1.27 1.27)
  1430. (xy 1.27 -1.27)
  1431. (xy -1.27 0)
  1432. (xy 1.27 1.27)
  1433. )
  1434. (stroke (width 0.254) (type default))
  1435. (fill (type none))
  1436. )
  1437. )
  1438. (symbol "1N4148W_1_1"
  1439. (pin passive line (at -3.81 0 0) (length 2.54)
  1440. (name "K" (effects (font (size 1.27 1.27))))
  1441. (number "1" (effects (font (size 1.27 1.27))))
  1442. )
  1443. (pin passive line (at 3.81 0 180) (length 2.54)
  1444. (name "A" (effects (font (size 1.27 1.27))))
  1445. (number "2" (effects (font (size 1.27 1.27))))
  1446. )
  1447. )
  1448. )
  1449. (symbol "Greaseweazle:STM32F730Z8T6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1450. (property "Reference" "U" (at 0 5.08 0)
  1451. (effects (font (size 1.27 1.27)) (justify left))
  1452. )
  1453. (property "Value" "STM32F730Z8T6" (at 0 7.62 0)
  1454. (effects (font (size 1.27 1.27)) (justify left))
  1455. )
  1456. (property "Footprint" "sm6uax:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (at 0 10.16 0)
  1457. (effects (font (size 1.27 1.27)) (justify left) hide)
  1458. )
  1459. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (at 0 12.7 0)
  1460. (effects (font (size 1.27 1.27)) (justify left) hide)
  1461. )
  1462. (property "ki_locked" "" (at 0 0 0)
  1463. (effects (font (size 1.27 1.27)))
  1464. )
  1465. (property "ki_description" "STM32F730Z8T6" (at 0 0 0)
  1466. (effects (font (size 1.27 1.27)) hide)
  1467. )
  1468. (symbol "STM32F730Z8T6_1_1"
  1469. (rectangle (start 5.08 2.54) (end 45.72 -71.12)
  1470. (stroke (width 0) (type default))
  1471. (fill (type background))
  1472. )
  1473. (pin power_in line (at 2.54 -40.64 0) (length 2.54)
  1474. (name "VCAP_2" (effects (font (size 1.016 1.016))))
  1475. (number "106" (effects (font (size 1.016 1.016))))
  1476. )
  1477. (pin power_in line (at 48.26 -60.96 180) (length 2.54)
  1478. (name "VSS" (effects (font (size 1.016 1.016))))
  1479. (number "107" (effects (font (size 1.016 1.016))))
  1480. )
  1481. (pin power_in line (at 2.54 -17.78 0) (length 2.54)
  1482. (name "VDD" (effects (font (size 1.016 1.016))))
  1483. (number "108" (effects (font (size 1.016 1.016))))
  1484. )
  1485. (pin power_in line (at 48.26 -63.5 180) (length 2.54)
  1486. (name "VSS" (effects (font (size 1.016 1.016))))
  1487. (number "120" (effects (font (size 1.016 1.016))))
  1488. )
  1489. (pin power_in line (at 2.54 -30.48 0) (length 2.54)
  1490. (name "VDDSDMMC" (effects (font (size 1.016 1.016))))
  1491. (number "121" (effects (font (size 1.016 1.016))))
  1492. )
  1493. (pin power_in line (at 48.26 -66.04 180) (length 2.54)
  1494. (name "VSS" (effects (font (size 1.016 1.016))))
  1495. (number "130" (effects (font (size 1.016 1.016))))
  1496. )
  1497. (pin power_in line (at 2.54 -20.32 0) (length 2.54)
  1498. (name "VDD" (effects (font (size 1.016 1.016))))
  1499. (number "131" (effects (font (size 1.016 1.016))))
  1500. )
  1501. (pin passive line (at 2.54 -58.42 0) (length 2.54)
  1502. (name "BOOT0" (effects (font (size 1.016 1.016))))
  1503. (number "138" (effects (font (size 1.016 1.016))))
  1504. )
  1505. (pin power_in line (at 2.54 -63.5 0) (length 2.54)
  1506. (name "PDR_ON" (effects (font (size 1.016 1.016))))
  1507. (number "143" (effects (font (size 1.016 1.016))))
  1508. )
  1509. (pin power_in line (at 2.54 -22.86 0) (length 2.54)
  1510. (name "VDD" (effects (font (size 1.016 1.016))))
  1511. (number "144" (effects (font (size 1.016 1.016))))
  1512. )
  1513. (pin power_in line (at 48.26 -45.72 180) (length 2.54)
  1514. (name "VSS" (effects (font (size 1.016 1.016))))
  1515. (number "16" (effects (font (size 1.016 1.016))))
  1516. )
  1517. (pin power_in line (at 2.54 0 0) (length 2.54)
  1518. (name "VDD" (effects (font (size 1.016 1.016))))
  1519. (number "17" (effects (font (size 1.016 1.016))))
  1520. )
  1521. (pin input line (at 2.54 -68.58 0) (length 2.54)
  1522. (name "~{RST}" (effects (font (size 1.016 1.016))))
  1523. (number "25" (effects (font (size 1.016 1.016))))
  1524. )
  1525. (pin power_in line (at 2.54 -2.54 0) (length 2.54)
  1526. (name "VDD" (effects (font (size 1.016 1.016))))
  1527. (number "30" (effects (font (size 1.016 1.016))))
  1528. )
  1529. (pin power_in line (at 48.26 -68.58 180) (length 2.54)
  1530. (name "VSSA" (effects (font (size 1.016 1.016))))
  1531. (number "31" (effects (font (size 1.016 1.016))))
  1532. )
  1533. (pin power_in line (at 2.54 -48.26 0) (length 2.54)
  1534. (name "VREF+" (effects (font (size 1.016 1.016))))
  1535. (number "32" (effects (font (size 1.016 1.016))))
  1536. )
  1537. (pin power_in line (at 2.54 -27.94 0) (length 2.54)
  1538. (name "VDDA" (effects (font (size 1.016 1.016))))
  1539. (number "33" (effects (font (size 1.016 1.016))))
  1540. )
  1541. (pin power_in line (at 48.26 -48.26 180) (length 2.54)
  1542. (name "VSS" (effects (font (size 1.016 1.016))))
  1543. (number "38" (effects (font (size 1.016 1.016))))
  1544. )
  1545. (pin power_in line (at 2.54 -5.08 0) (length 2.54)
  1546. (name "VDD" (effects (font (size 1.016 1.016))))
  1547. (number "39" (effects (font (size 1.016 1.016))))
  1548. )
  1549. (pin power_in line (at 48.26 -50.8 180) (length 2.54)
  1550. (name "VSS" (effects (font (size 1.016 1.016))))
  1551. (number "51" (effects (font (size 1.016 1.016))))
  1552. )
  1553. (pin power_in line (at 2.54 -7.62 0) (length 2.54)
  1554. (name "VDD" (effects (font (size 1.016 1.016))))
  1555. (number "52" (effects (font (size 1.016 1.016))))
  1556. )
  1557. (pin power_in line (at 2.54 -45.72 0) (length 2.54)
  1558. (name "VBAT" (effects (font (size 1.016 1.016))))
  1559. (number "6" (effects (font (size 1.016 1.016))))
  1560. )
  1561. (pin power_in line (at 48.26 -53.34 180) (length 2.54)
  1562. (name "VSS" (effects (font (size 1.016 1.016))))
  1563. (number "61" (effects (font (size 1.016 1.016))))
  1564. )
  1565. (pin power_in line (at 2.54 -10.16 0) (length 2.54)
  1566. (name "VDD" (effects (font (size 1.016 1.016))))
  1567. (number "62" (effects (font (size 1.016 1.016))))
  1568. )
  1569. (pin power_in line (at 2.54 -38.1 0) (length 2.54)
  1570. (name "VCAP_1" (effects (font (size 1.016 1.016))))
  1571. (number "71" (effects (font (size 1.016 1.016))))
  1572. )
  1573. (pin power_in line (at 2.54 -12.7 0) (length 2.54)
  1574. (name "VDD" (effects (font (size 1.016 1.016))))
  1575. (number "72" (effects (font (size 1.016 1.016))))
  1576. )
  1577. (pin power_in line (at 2.54 -53.34 0) (length 2.54)
  1578. (name "OTG_HS_REXT" (effects (font (size 1.016 1.016))))
  1579. (number "75" (effects (font (size 1.016 1.016))))
  1580. )
  1581. (pin passive line (at 2.54 -25.4 0) (length 2.54)
  1582. (name "VDD12OTGHS" (effects (font (size 1.016 1.016))))
  1583. (number "76" (effects (font (size 1.016 1.016))))
  1584. )
  1585. (pin power_in line (at 48.26 -55.88 180) (length 2.54)
  1586. (name "VSS" (effects (font (size 1.016 1.016))))
  1587. (number "85" (effects (font (size 1.016 1.016))))
  1588. )
  1589. (pin power_in line (at 2.54 -15.24 0) (length 2.54)
  1590. (name "VDD" (effects (font (size 1.016 1.016))))
  1591. (number "86" (effects (font (size 1.016 1.016))))
  1592. )
  1593. (pin power_in line (at 48.26 -58.42 180) (length 2.54)
  1594. (name "VSS" (effects (font (size 1.016 1.016))))
  1595. (number "94" (effects (font (size 1.016 1.016))))
  1596. )
  1597. (pin power_in line (at 2.54 -33.02 0) (length 2.54)
  1598. (name "VDDUSB" (effects (font (size 1.016 1.016))))
  1599. (number "95" (effects (font (size 1.016 1.016))))
  1600. )
  1601. )
  1602. (symbol "STM32F730Z8T6_2_1"
  1603. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  1604. (stroke (width 0) (type default))
  1605. (fill (type background))
  1606. )
  1607. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  1608. (name "PA8" (effects (font (size 1.016 1.016))))
  1609. (number "100" (effects (font (size 1.016 1.016))))
  1610. )
  1611. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  1612. (name "PA9" (effects (font (size 1.016 1.016))))
  1613. (number "101" (effects (font (size 1.016 1.016))))
  1614. )
  1615. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  1616. (name "PA10" (effects (font (size 1.016 1.016))))
  1617. (number "102" (effects (font (size 1.016 1.016))))
  1618. )
  1619. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  1620. (name "PA11" (effects (font (size 1.016 1.016))))
  1621. (number "103" (effects (font (size 1.016 1.016))))
  1622. )
  1623. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  1624. (name "PA12" (effects (font (size 1.016 1.016))))
  1625. (number "104" (effects (font (size 1.016 1.016))))
  1626. )
  1627. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  1628. (name "PA13" (effects (font (size 1.016 1.016))))
  1629. (number "105" (effects (font (size 1.016 1.016))))
  1630. )
  1631. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  1632. (name "PA14" (effects (font (size 1.016 1.016))))
  1633. (number "109" (effects (font (size 1.016 1.016))))
  1634. )
  1635. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  1636. (name "PA15" (effects (font (size 1.016 1.016))))
  1637. (number "110" (effects (font (size 1.016 1.016))))
  1638. )
  1639. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  1640. (name "PC10" (effects (font (size 1.016 1.016))))
  1641. (number "111" (effects (font (size 1.016 1.016))))
  1642. )
  1643. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  1644. (name "PC11" (effects (font (size 1.016 1.016))))
  1645. (number "112" (effects (font (size 1.016 1.016))))
  1646. )
  1647. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  1648. (name "PC12" (effects (font (size 1.016 1.016))))
  1649. (number "113" (effects (font (size 1.016 1.016))))
  1650. )
  1651. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  1652. (name "PD0" (effects (font (size 1.016 1.016))))
  1653. (number "114" (effects (font (size 1.016 1.016))))
  1654. )
  1655. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  1656. (name "PD1" (effects (font (size 1.016 1.016))))
  1657. (number "115" (effects (font (size 1.016 1.016))))
  1658. )
  1659. (pin bidirectional line (at 25.4 -48.26 180) (length 2.54)
  1660. (name "PD2" (effects (font (size 1.016 1.016))))
  1661. (number "116" (effects (font (size 1.016 1.016))))
  1662. )
  1663. (pin bidirectional line (at 25.4 -50.8 180) (length 2.54)
  1664. (name "PD3" (effects (font (size 1.016 1.016))))
  1665. (number "117" (effects (font (size 1.016 1.016))))
  1666. )
  1667. (pin bidirectional line (at 25.4 -53.34 180) (length 2.54)
  1668. (name "PD4" (effects (font (size 1.016 1.016))))
  1669. (number "118" (effects (font (size 1.016 1.016))))
  1670. )
  1671. (pin bidirectional line (at 25.4 -55.88 180) (length 2.54)
  1672. (name "PD5" (effects (font (size 1.016 1.016))))
  1673. (number "119" (effects (font (size 1.016 1.016))))
  1674. )
  1675. (pin bidirectional line (at 25.4 -58.42 180) (length 2.54)
  1676. (name "PD6" (effects (font (size 1.016 1.016))))
  1677. (number "122" (effects (font (size 1.016 1.016))))
  1678. )
  1679. (pin bidirectional line (at 25.4 -60.96 180) (length 2.54)
  1680. (name "PD7" (effects (font (size 1.016 1.016))))
  1681. (number "123" (effects (font (size 1.016 1.016))))
  1682. )
  1683. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  1684. (name "PB3" (effects (font (size 1.016 1.016))))
  1685. (number "133" (effects (font (size 1.016 1.016))))
  1686. )
  1687. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  1688. (name "PB4" (effects (font (size 1.016 1.016))))
  1689. (number "134" (effects (font (size 1.016 1.016))))
  1690. )
  1691. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  1692. (name "PB5" (effects (font (size 1.016 1.016))))
  1693. (number "135" (effects (font (size 1.016 1.016))))
  1694. )
  1695. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  1696. (name "PB6" (effects (font (size 1.016 1.016))))
  1697. (number "136" (effects (font (size 1.016 1.016))))
  1698. )
  1699. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  1700. (name "PB7" (effects (font (size 1.016 1.016))))
  1701. (number "137" (effects (font (size 1.016 1.016))))
  1702. )
  1703. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  1704. (name "PB8" (effects (font (size 1.016 1.016))))
  1705. (number "139" (effects (font (size 1.016 1.016))))
  1706. )
  1707. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  1708. (name "PB9" (effects (font (size 1.016 1.016))))
  1709. (number "140" (effects (font (size 1.016 1.016))))
  1710. )
  1711. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  1712. (name "PC0" (effects (font (size 1.016 1.016))))
  1713. (number "26" (effects (font (size 1.016 1.016))))
  1714. )
  1715. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  1716. (name "PC1" (effects (font (size 1.016 1.016))))
  1717. (number "27" (effects (font (size 1.016 1.016))))
  1718. )
  1719. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  1720. (name "PC2" (effects (font (size 1.016 1.016))))
  1721. (number "28" (effects (font (size 1.016 1.016))))
  1722. )
  1723. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  1724. (name "PC3" (effects (font (size 1.016 1.016))))
  1725. (number "29" (effects (font (size 1.016 1.016))))
  1726. )
  1727. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  1728. (name "PA0" (effects (font (size 1.016 1.016))))
  1729. (number "34" (effects (font (size 1.016 1.016))))
  1730. )
  1731. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  1732. (name "PA1" (effects (font (size 1.016 1.016))))
  1733. (number "35" (effects (font (size 1.016 1.016))))
  1734. )
  1735. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  1736. (name "PA2" (effects (font (size 1.016 1.016))))
  1737. (number "36" (effects (font (size 1.016 1.016))))
  1738. )
  1739. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  1740. (name "PA3" (effects (font (size 1.016 1.016))))
  1741. (number "37" (effects (font (size 1.016 1.016))))
  1742. )
  1743. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  1744. (name "PA4" (effects (font (size 1.016 1.016))))
  1745. (number "40" (effects (font (size 1.016 1.016))))
  1746. )
  1747. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  1748. (name "PA5" (effects (font (size 1.016 1.016))))
  1749. (number "41" (effects (font (size 1.016 1.016))))
  1750. )
  1751. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  1752. (name "PA6" (effects (font (size 1.016 1.016))))
  1753. (number "42" (effects (font (size 1.016 1.016))))
  1754. )
  1755. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  1756. (name "PA7" (effects (font (size 1.016 1.016))))
  1757. (number "43" (effects (font (size 1.016 1.016))))
  1758. )
  1759. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  1760. (name "PC4" (effects (font (size 1.016 1.016))))
  1761. (number "44" (effects (font (size 1.016 1.016))))
  1762. )
  1763. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  1764. (name "PC5" (effects (font (size 1.016 1.016))))
  1765. (number "45" (effects (font (size 1.016 1.016))))
  1766. )
  1767. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  1768. (name "PB0" (effects (font (size 1.016 1.016))))
  1769. (number "46" (effects (font (size 1.016 1.016))))
  1770. )
  1771. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  1772. (name "PB1" (effects (font (size 1.016 1.016))))
  1773. (number "47" (effects (font (size 1.016 1.016))))
  1774. )
  1775. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  1776. (name "PB2" (effects (font (size 1.016 1.016))))
  1777. (number "48" (effects (font (size 1.016 1.016))))
  1778. )
  1779. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  1780. (name "PB10" (effects (font (size 1.016 1.016))))
  1781. (number "69" (effects (font (size 1.016 1.016))))
  1782. )
  1783. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  1784. (name "PC13" (effects (font (size 1.016 1.016))))
  1785. (number "7" (effects (font (size 1.016 1.016))))
  1786. )
  1787. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  1788. (name "PB11" (effects (font (size 1.016 1.016))))
  1789. (number "70" (effects (font (size 1.016 1.016))))
  1790. )
  1791. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  1792. (name "PB12" (effects (font (size 1.016 1.016))))
  1793. (number "73" (effects (font (size 1.016 1.016))))
  1794. )
  1795. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  1796. (name "PB13" (effects (font (size 1.016 1.016))))
  1797. (number "74" (effects (font (size 1.016 1.016))))
  1798. )
  1799. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  1800. (name "PB14" (effects (font (size 1.016 1.016))))
  1801. (number "77" (effects (font (size 1.016 1.016))))
  1802. )
  1803. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  1804. (name "PB15" (effects (font (size 1.016 1.016))))
  1805. (number "78" (effects (font (size 1.016 1.016))))
  1806. )
  1807. (pin bidirectional line (at 25.4 -63.5 180) (length 2.54)
  1808. (name "PD8" (effects (font (size 1.016 1.016))))
  1809. (number "79" (effects (font (size 1.016 1.016))))
  1810. )
  1811. (pin bidirectional line (at 25.4 -35.56 180) (length 2.54)
  1812. (name "PC14" (effects (font (size 1.016 1.016))))
  1813. (number "8" (effects (font (size 1.016 1.016))))
  1814. )
  1815. (pin bidirectional line (at 25.4 -66.04 180) (length 2.54)
  1816. (name "PD9" (effects (font (size 1.016 1.016))))
  1817. (number "80" (effects (font (size 1.016 1.016))))
  1818. )
  1819. (pin bidirectional line (at 25.4 -68.58 180) (length 2.54)
  1820. (name "PD10" (effects (font (size 1.016 1.016))))
  1821. (number "81" (effects (font (size 1.016 1.016))))
  1822. )
  1823. (pin bidirectional line (at 25.4 -71.12 180) (length 2.54)
  1824. (name "PD11" (effects (font (size 1.016 1.016))))
  1825. (number "82" (effects (font (size 1.016 1.016))))
  1826. )
  1827. (pin bidirectional line (at 25.4 -73.66 180) (length 2.54)
  1828. (name "PD12" (effects (font (size 1.016 1.016))))
  1829. (number "83" (effects (font (size 1.016 1.016))))
  1830. )
  1831. (pin bidirectional line (at 25.4 -76.2 180) (length 2.54)
  1832. (name "PD13" (effects (font (size 1.016 1.016))))
  1833. (number "84" (effects (font (size 1.016 1.016))))
  1834. )
  1835. (pin bidirectional line (at 25.4 -78.74 180) (length 2.54)
  1836. (name "PD14" (effects (font (size 1.016 1.016))))
  1837. (number "87" (effects (font (size 1.016 1.016))))
  1838. )
  1839. (pin bidirectional line (at 25.4 -81.28 180) (length 2.54)
  1840. (name "PD15" (effects (font (size 1.016 1.016))))
  1841. (number "88" (effects (font (size 1.016 1.016))))
  1842. )
  1843. (pin bidirectional line (at 25.4 -38.1 180) (length 2.54)
  1844. (name "PC15" (effects (font (size 1.016 1.016))))
  1845. (number "9" (effects (font (size 1.016 1.016))))
  1846. )
  1847. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  1848. (name "PC6" (effects (font (size 1.016 1.016))))
  1849. (number "96" (effects (font (size 1.016 1.016))))
  1850. )
  1851. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  1852. (name "PC7" (effects (font (size 1.016 1.016))))
  1853. (number "97" (effects (font (size 1.016 1.016))))
  1854. )
  1855. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  1856. (name "PC8" (effects (font (size 1.016 1.016))))
  1857. (number "98" (effects (font (size 1.016 1.016))))
  1858. )
  1859. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  1860. (name "PC9" (effects (font (size 1.016 1.016))))
  1861. (number "99" (effects (font (size 1.016 1.016))))
  1862. )
  1863. )
  1864. (symbol "STM32F730Z8T6_3_1"
  1865. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  1866. (stroke (width 0) (type default))
  1867. (fill (type background))
  1868. )
  1869. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  1870. (name "PE2" (effects (font (size 1.016 1.016))))
  1871. (number "1" (effects (font (size 1.016 1.016))))
  1872. )
  1873. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  1874. (name "PF0" (effects (font (size 1.016 1.016))))
  1875. (number "10" (effects (font (size 1.016 1.016))))
  1876. )
  1877. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  1878. (name "PF1" (effects (font (size 1.016 1.016))))
  1879. (number "11" (effects (font (size 1.016 1.016))))
  1880. )
  1881. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  1882. (name "PF2" (effects (font (size 1.016 1.016))))
  1883. (number "12" (effects (font (size 1.016 1.016))))
  1884. )
  1885. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  1886. (name "PG9" (effects (font (size 1.016 1.016))))
  1887. (number "124" (effects (font (size 1.016 1.016))))
  1888. )
  1889. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  1890. (name "PG10" (effects (font (size 1.016 1.016))))
  1891. (number "125" (effects (font (size 1.016 1.016))))
  1892. )
  1893. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  1894. (name "PG11" (effects (font (size 1.016 1.016))))
  1895. (number "126" (effects (font (size 1.016 1.016))))
  1896. )
  1897. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  1898. (name "PG12" (effects (font (size 1.016 1.016))))
  1899. (number "127" (effects (font (size 1.016 1.016))))
  1900. )
  1901. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  1902. (name "PG13" (effects (font (size 1.016 1.016))))
  1903. (number "128" (effects (font (size 1.016 1.016))))
  1904. )
  1905. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  1906. (name "PG14" (effects (font (size 1.016 1.016))))
  1907. (number "129" (effects (font (size 1.016 1.016))))
  1908. )
  1909. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  1910. (name "PF3" (effects (font (size 1.016 1.016))))
  1911. (number "13" (effects (font (size 1.016 1.016))))
  1912. )
  1913. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  1914. (name "PG15" (effects (font (size 1.016 1.016))))
  1915. (number "132" (effects (font (size 1.016 1.016))))
  1916. )
  1917. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  1918. (name "PF4" (effects (font (size 1.016 1.016))))
  1919. (number "14" (effects (font (size 1.016 1.016))))
  1920. )
  1921. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  1922. (name "PE0" (effects (font (size 1.016 1.016))))
  1923. (number "141" (effects (font (size 1.016 1.016))))
  1924. )
  1925. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  1926. (name "PE1" (effects (font (size 1.016 1.016))))
  1927. (number "142" (effects (font (size 1.016 1.016))))
  1928. )
  1929. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  1930. (name "PF5" (effects (font (size 1.016 1.016))))
  1931. (number "15" (effects (font (size 1.016 1.016))))
  1932. )
  1933. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  1934. (name "PF6" (effects (font (size 1.016 1.016))))
  1935. (number "18" (effects (font (size 1.016 1.016))))
  1936. )
  1937. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  1938. (name "PF7" (effects (font (size 1.016 1.016))))
  1939. (number "19" (effects (font (size 1.016 1.016))))
  1940. )
  1941. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  1942. (name "PE3" (effects (font (size 1.016 1.016))))
  1943. (number "2" (effects (font (size 1.016 1.016))))
  1944. )
  1945. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  1946. (name "PF8" (effects (font (size 1.016 1.016))))
  1947. (number "20" (effects (font (size 1.016 1.016))))
  1948. )
  1949. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  1950. (name "PF9" (effects (font (size 1.016 1.016))))
  1951. (number "21" (effects (font (size 1.016 1.016))))
  1952. )
  1953. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  1954. (name "PF10" (effects (font (size 1.016 1.016))))
  1955. (number "22" (effects (font (size 1.016 1.016))))
  1956. )
  1957. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  1958. (name "PH0" (effects (font (size 1.016 1.016))))
  1959. (number "23" (effects (font (size 1.016 1.016))))
  1960. )
  1961. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  1962. (name "PH1" (effects (font (size 1.016 1.016))))
  1963. (number "24" (effects (font (size 1.016 1.016))))
  1964. )
  1965. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  1966. (name "PE4" (effects (font (size 1.016 1.016))))
  1967. (number "3" (effects (font (size 1.016 1.016))))
  1968. )
  1969. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  1970. (name "PE5" (effects (font (size 1.016 1.016))))
  1971. (number "4" (effects (font (size 1.016 1.016))))
  1972. )
  1973. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  1974. (name "PF11" (effects (font (size 1.016 1.016))))
  1975. (number "49" (effects (font (size 1.016 1.016))))
  1976. )
  1977. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  1978. (name "PE6" (effects (font (size 1.016 1.016))))
  1979. (number "5" (effects (font (size 1.016 1.016))))
  1980. )
  1981. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  1982. (name "PF12" (effects (font (size 1.016 1.016))))
  1983. (number "50" (effects (font (size 1.016 1.016))))
  1984. )
  1985. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  1986. (name "PF13" (effects (font (size 1.016 1.016))))
  1987. (number "53" (effects (font (size 1.016 1.016))))
  1988. )
  1989. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  1990. (name "PF14" (effects (font (size 1.016 1.016))))
  1991. (number "54" (effects (font (size 1.016 1.016))))
  1992. )
  1993. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  1994. (name "PF15" (effects (font (size 1.016 1.016))))
  1995. (number "55" (effects (font (size 1.016 1.016))))
  1996. )
  1997. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  1998. (name "PG0" (effects (font (size 1.016 1.016))))
  1999. (number "56" (effects (font (size 1.016 1.016))))
  2000. )
  2001. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  2002. (name "PG1" (effects (font (size 1.016 1.016))))
  2003. (number "57" (effects (font (size 1.016 1.016))))
  2004. )
  2005. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  2006. (name "PE7" (effects (font (size 1.016 1.016))))
  2007. (number "58" (effects (font (size 1.016 1.016))))
  2008. )
  2009. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  2010. (name "PE8" (effects (font (size 1.016 1.016))))
  2011. (number "59" (effects (font (size 1.016 1.016))))
  2012. )
  2013. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  2014. (name "PE9" (effects (font (size 1.016 1.016))))
  2015. (number "60" (effects (font (size 1.016 1.016))))
  2016. )
  2017. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  2018. (name "PE10" (effects (font (size 1.016 1.016))))
  2019. (number "63" (effects (font (size 1.016 1.016))))
  2020. )
  2021. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  2022. (name "PE11" (effects (font (size 1.016 1.016))))
  2023. (number "64" (effects (font (size 1.016 1.016))))
  2024. )
  2025. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  2026. (name "PE12" (effects (font (size 1.016 1.016))))
  2027. (number "65" (effects (font (size 1.016 1.016))))
  2028. )
  2029. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  2030. (name "PE13" (effects (font (size 1.016 1.016))))
  2031. (number "66" (effects (font (size 1.016 1.016))))
  2032. )
  2033. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  2034. (name "PE14" (effects (font (size 1.016 1.016))))
  2035. (number "67" (effects (font (size 1.016 1.016))))
  2036. )
  2037. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  2038. (name "PE15" (effects (font (size 1.016 1.016))))
  2039. (number "68" (effects (font (size 1.016 1.016))))
  2040. )
  2041. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  2042. (name "PG2" (effects (font (size 1.016 1.016))))
  2043. (number "89" (effects (font (size 1.016 1.016))))
  2044. )
  2045. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  2046. (name "PG3" (effects (font (size 1.016 1.016))))
  2047. (number "90" (effects (font (size 1.016 1.016))))
  2048. )
  2049. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  2050. (name "PG4" (effects (font (size 1.016 1.016))))
  2051. (number "91" (effects (font (size 1.016 1.016))))
  2052. )
  2053. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  2054. (name "PG5" (effects (font (size 1.016 1.016))))
  2055. (number "92" (effects (font (size 1.016 1.016))))
  2056. )
  2057. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  2058. (name "PG8" (effects (font (size 1.016 1.016))))
  2059. (number "93" (effects (font (size 1.016 1.016))))
  2060. )
  2061. )
  2062. )
  2063. (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  2064. (property "Reference" "H" (at 0 5.08 0)
  2065. (effects (font (size 1.27 1.27)))
  2066. )
  2067. (property "Value" "MountingHole" (at 0 3.175 0)
  2068. (effects (font (size 1.27 1.27)))
  2069. )
  2070. (property "Footprint" "" (at 0 0 0)
  2071. (effects (font (size 1.27 1.27)) hide)
  2072. )
  2073. (property "Datasheet" "~" (at 0 0 0)
  2074. (effects (font (size 1.27 1.27)) hide)
  2075. )
  2076. (property "ki_keywords" "mounting hole" (at 0 0 0)
  2077. (effects (font (size 1.27 1.27)) hide)
  2078. )
  2079. (property "ki_description" "Mounting Hole without connection" (at 0 0 0)
  2080. (effects (font (size 1.27 1.27)) hide)
  2081. )
  2082. (property "ki_fp_filters" "MountingHole*" (at 0 0 0)
  2083. (effects (font (size 1.27 1.27)) hide)
  2084. )
  2085. (symbol "MountingHole_0_1"
  2086. (circle (center 0 0) (radius 1.27)
  2087. (stroke (width 1.27) (type default))
  2088. (fill (type none))
  2089. )
  2090. )
  2091. )
  2092. (symbol "Oscillator:ASCO" (in_bom yes) (on_board yes)
  2093. (property "Reference" "X" (at -7.62 6.35 0)
  2094. (effects (font (size 1.27 1.27)) (justify left))
  2095. )
  2096. (property "Value" "ASCO" (at 1.27 -6.35 0)
  2097. (effects (font (size 1.27 1.27)) (justify left))
  2098. )
  2099. (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm" (at 2.54 -8.89 0)
  2100. (effects (font (size 1.27 1.27)) hide)
  2101. )
  2102. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (at -5.715 3.175 0)
  2103. (effects (font (size 1.27 1.27)) hide)
  2104. )
  2105. (property "ki_keywords" "Crystal Clock Oscillator" (at 0 0 0)
  2106. (effects (font (size 1.27 1.27)) hide)
  2107. )
  2108. (property "ki_description" "Crystal Clock Oscillator, Abracon ASCO" (at 0 0 0)
  2109. (effects (font (size 1.27 1.27)) hide)
  2110. )
  2111. (property "ki_fp_filters" "Oscillator*Abracon*ASCO*1.6x1.2mm*" (at 0 0 0)
  2112. (effects (font (size 1.27 1.27)) hide)
  2113. )
  2114. (symbol "ASCO_0_1"
  2115. (rectangle (start -7.62 5.08) (end 7.62 -5.08)
  2116. (stroke (width 0.254) (type default))
  2117. (fill (type background))
  2118. )
  2119. (polyline
  2120. (pts
  2121. (xy -5.715 2.54)
  2122. (xy -5.08 2.54)
  2123. (xy -5.08 3.81)
  2124. (xy -4.445 3.81)
  2125. (xy -4.445 2.54)
  2126. (xy -3.81 2.54)
  2127. (xy -3.81 3.81)
  2128. (xy -3.175 3.81)
  2129. (xy -3.175 2.54)
  2130. )
  2131. (stroke (width 0) (type default))
  2132. (fill (type none))
  2133. )
  2134. )
  2135. (symbol "ASCO_1_1"
  2136. (pin input line (at -10.16 0 0) (length 2.54)
  2137. (name "Tri-State" (effects (font (size 1.27 1.27))))
  2138. (number "1" (effects (font (size 1.27 1.27))))
  2139. )
  2140. (pin power_in line (at 0 -7.62 90) (length 2.54)
  2141. (name "GND" (effects (font (size 1.27 1.27))))
  2142. (number "2" (effects (font (size 1.27 1.27))))
  2143. )
  2144. (pin output line (at 10.16 0 180) (length 2.54)
  2145. (name "OUT" (effects (font (size 1.27 1.27))))
  2146. (number "3" (effects (font (size 1.27 1.27))))
  2147. )
  2148. (pin power_in line (at 0 7.62 270) (length 2.54)
  2149. (name "VDD" (effects (font (size 1.27 1.27))))
  2150. (number "4" (effects (font (size 1.27 1.27))))
  2151. )
  2152. )
  2153. )
  2154. (symbol "Switch:SW_DIP_x01" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  2155. (property "Reference" "SW" (at 0 3.81 0)
  2156. (effects (font (size 1.27 1.27)))
  2157. )
  2158. (property "Value" "SW_DIP_x01" (at 0 -3.81 0)
  2159. (effects (font (size 1.27 1.27)))
  2160. )
  2161. (property "Footprint" "" (at 0 0 0)
  2162. (effects (font (size 1.27 1.27)) hide)
  2163. )
  2164. (property "Datasheet" "~" (at 0 0 0)
  2165. (effects (font (size 1.27 1.27)) hide)
  2166. )
  2167. (property "ki_keywords" "dip switch" (at 0 0 0)
  2168. (effects (font (size 1.27 1.27)) hide)
  2169. )
  2170. (property "ki_description" "1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (at 0 0 0)
  2171. (effects (font (size 1.27 1.27)) hide)
  2172. )
  2173. (property "ki_fp_filters" "SW?DIP?x1*" (at 0 0 0)
  2174. (effects (font (size 1.27 1.27)) hide)
  2175. )
  2176. (symbol "SW_DIP_x01_0_0"
  2177. (circle (center -2.032 0) (radius 0.508)
  2178. (stroke (width 0) (type default))
  2179. (fill (type none))
  2180. )
  2181. (polyline
  2182. (pts
  2183. (xy -1.524 0.127)
  2184. (xy 2.3622 1.1684)
  2185. )
  2186. (stroke (width 0) (type default))
  2187. (fill (type none))
  2188. )
  2189. (circle (center 2.032 0) (radius 0.508)
  2190. (stroke (width 0) (type default))
  2191. (fill (type none))
  2192. )
  2193. )
  2194. (symbol "SW_DIP_x01_0_1"
  2195. (rectangle (start -3.81 2.54) (end 3.81 -2.54)
  2196. (stroke (width 0.254) (type default))
  2197. (fill (type background))
  2198. )
  2199. )
  2200. (symbol "SW_DIP_x01_1_1"
  2201. (pin passive line (at -7.62 0 0) (length 5.08)
  2202. (name "~" (effects (font (size 1.27 1.27))))
  2203. (number "1" (effects (font (size 1.27 1.27))))
  2204. )
  2205. (pin passive line (at 7.62 0 180) (length 5.08)
  2206. (name "~" (effects (font (size 1.27 1.27))))
  2207. (number "2" (effects (font (size 1.27 1.27))))
  2208. )
  2209. )
  2210. )
  2211. (symbol "Switch:SW_DIP_x02" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  2212. (property "Reference" "SW" (at 0 6.35 0)
  2213. (effects (font (size 1.27 1.27)))
  2214. )
  2215. (property "Value" "SW_DIP_x02" (at 0 -3.81 0)
  2216. (effects (font (size 1.27 1.27)))
  2217. )
  2218. (property "Footprint" "" (at 0 0 0)
  2219. (effects (font (size 1.27 1.27)) hide)
  2220. )
  2221. (property "Datasheet" "~" (at 0 0 0)
  2222. (effects (font (size 1.27 1.27)) hide)
  2223. )
  2224. (property "ki_keywords" "dip switch" (at 0 0 0)
  2225. (effects (font (size 1.27 1.27)) hide)
  2226. )
  2227. (property "ki_description" "2x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (at 0 0 0)
  2228. (effects (font (size 1.27 1.27)) hide)
  2229. )
  2230. (property "ki_fp_filters" "SW?DIP?x2*" (at 0 0 0)
  2231. (effects (font (size 1.27 1.27)) hide)
  2232. )
  2233. (symbol "SW_DIP_x02_0_0"
  2234. (circle (center -2.032 0) (radius 0.508)
  2235. (stroke (width 0) (type default))
  2236. (fill (type none))
  2237. )
  2238. (circle (center -2.032 2.54) (radius 0.508)
  2239. (stroke (width 0) (type default))
  2240. (fill (type none))
  2241. )
  2242. (polyline
  2243. (pts
  2244. (xy -1.524 0.127)
  2245. (xy 2.3622 1.1684)
  2246. )
  2247. (stroke (width 0) (type default))
  2248. (fill (type none))
  2249. )
  2250. (polyline
  2251. (pts
  2252. (xy -1.524 2.667)
  2253. (xy 2.3622 3.7084)
  2254. )
  2255. (stroke (width 0) (type default))
  2256. (fill (type none))
  2257. )
  2258. (circle (center 2.032 0) (radius 0.508)
  2259. (stroke (width 0) (type default))
  2260. (fill (type none))
  2261. )
  2262. (circle (center 2.032 2.54) (radius 0.508)
  2263. (stroke (width 0) (type default))
  2264. (fill (type none))
  2265. )
  2266. )
  2267. (symbol "SW_DIP_x02_0_1"
  2268. (rectangle (start -3.81 5.08) (end 3.81 -2.54)
  2269. (stroke (width 0.254) (type default))
  2270. (fill (type background))
  2271. )
  2272. )
  2273. (symbol "SW_DIP_x02_1_1"
  2274. (pin passive line (at -7.62 2.54 0) (length 5.08)
  2275. (name "~" (effects (font (size 1.27 1.27))))
  2276. (number "1" (effects (font (size 1.27 1.27))))
  2277. )
  2278. (pin passive line (at -7.62 0 0) (length 5.08)
  2279. (name "~" (effects (font (size 1.27 1.27))))
  2280. (number "2" (effects (font (size 1.27 1.27))))
  2281. )
  2282. (pin passive line (at 7.62 0 180) (length 5.08)
  2283. (name "~" (effects (font (size 1.27 1.27))))
  2284. (number "3" (effects (font (size 1.27 1.27))))
  2285. )
  2286. (pin passive line (at 7.62 2.54 180) (length 5.08)
  2287. (name "~" (effects (font (size 1.27 1.27))))
  2288. (number "4" (effects (font (size 1.27 1.27))))
  2289. )
  2290. )
  2291. )
  2292. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2293. (property "Reference" "#PWR" (at 0 -3.81 0)
  2294. (effects (font (size 1.27 1.27)) hide)
  2295. )
  2296. (property "Value" "+3V3" (at 0 3.556 0)
  2297. (effects (font (size 1.27 1.27)))
  2298. )
  2299. (property "Footprint" "" (at 0 0 0)
  2300. (effects (font (size 1.27 1.27)) hide)
  2301. )
  2302. (property "Datasheet" "" (at 0 0 0)
  2303. (effects (font (size 1.27 1.27)) hide)
  2304. )
  2305. (property "ki_keywords" "power-flag" (at 0 0 0)
  2306. (effects (font (size 1.27 1.27)) hide)
  2307. )
  2308. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (at 0 0 0)
  2309. (effects (font (size 1.27 1.27)) hide)
  2310. )
  2311. (symbol "+3V3_0_1"
  2312. (polyline
  2313. (pts
  2314. (xy -0.762 1.27)
  2315. (xy 0 2.54)
  2316. )
  2317. (stroke (width 0) (type default))
  2318. (fill (type none))
  2319. )
  2320. (polyline
  2321. (pts
  2322. (xy 0 0)
  2323. (xy 0 2.54)
  2324. )
  2325. (stroke (width 0) (type default))
  2326. (fill (type none))
  2327. )
  2328. (polyline
  2329. (pts
  2330. (xy 0 2.54)
  2331. (xy 0.762 1.27)
  2332. )
  2333. (stroke (width 0) (type default))
  2334. (fill (type none))
  2335. )
  2336. )
  2337. (symbol "+3V3_1_1"
  2338. (pin power_in line (at 0 0 90) (length 0) hide
  2339. (name "+3V3" (effects (font (size 1.27 1.27))))
  2340. (number "1" (effects (font (size 1.27 1.27))))
  2341. )
  2342. )
  2343. )
  2344. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2345. (property "Reference" "#PWR" (at 0 -3.81 0)
  2346. (effects (font (size 1.27 1.27)) hide)
  2347. )
  2348. (property "Value" "+5V" (at 0 3.556 0)
  2349. (effects (font (size 1.27 1.27)))
  2350. )
  2351. (property "Footprint" "" (at 0 0 0)
  2352. (effects (font (size 1.27 1.27)) hide)
  2353. )
  2354. (property "Datasheet" "" (at 0 0 0)
  2355. (effects (font (size 1.27 1.27)) hide)
  2356. )
  2357. (property "ki_keywords" "power-flag" (at 0 0 0)
  2358. (effects (font (size 1.27 1.27)) hide)
  2359. )
  2360. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (at 0 0 0)
  2361. (effects (font (size 1.27 1.27)) hide)
  2362. )
  2363. (symbol "+5V_0_1"
  2364. (polyline
  2365. (pts
  2366. (xy -0.762 1.27)
  2367. (xy 0 2.54)
  2368. )
  2369. (stroke (width 0) (type default))
  2370. (fill (type none))
  2371. )
  2372. (polyline
  2373. (pts
  2374. (xy 0 0)
  2375. (xy 0 2.54)
  2376. )
  2377. (stroke (width 0) (type default))
  2378. (fill (type none))
  2379. )
  2380. (polyline
  2381. (pts
  2382. (xy 0 2.54)
  2383. (xy 0.762 1.27)
  2384. )
  2385. (stroke (width 0) (type default))
  2386. (fill (type none))
  2387. )
  2388. )
  2389. (symbol "+5V_1_1"
  2390. (pin power_in line (at 0 0 90) (length 0) hide
  2391. (name "+5V" (effects (font (size 1.27 1.27))))
  2392. (number "1" (effects (font (size 1.27 1.27))))
  2393. )
  2394. )
  2395. )
  2396. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2397. (property "Reference" "#PWR" (at 0 -6.35 0)
  2398. (effects (font (size 1.27 1.27)) hide)
  2399. )
  2400. (property "Value" "GND" (at 0 -3.81 0)
  2401. (effects (font (size 1.27 1.27)))
  2402. )
  2403. (property "Footprint" "" (at 0 0 0)
  2404. (effects (font (size 1.27 1.27)) hide)
  2405. )
  2406. (property "Datasheet" "" (at 0 0 0)
  2407. (effects (font (size 1.27 1.27)) hide)
  2408. )
  2409. (property "ki_keywords" "power-flag" (at 0 0 0)
  2410. (effects (font (size 1.27 1.27)) hide)
  2411. )
  2412. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
  2413. (effects (font (size 1.27 1.27)) hide)
  2414. )
  2415. (symbol "GND_0_1"
  2416. (polyline
  2417. (pts
  2418. (xy 0 0)
  2419. (xy 0 -1.27)
  2420. (xy 1.27 -1.27)
  2421. (xy 0 -2.54)
  2422. (xy -1.27 -1.27)
  2423. (xy 0 -1.27)
  2424. )
  2425. (stroke (width 0) (type default))
  2426. (fill (type none))
  2427. )
  2428. )
  2429. (symbol "GND_1_1"
  2430. (pin power_in line (at 0 0 270) (length 0) hide
  2431. (name "GND" (effects (font (size 1.27 1.27))))
  2432. (number "1" (effects (font (size 1.27 1.27))))
  2433. )
  2434. )
  2435. )
  2436. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  2437. (property "Reference" "#FLG" (at 0 1.905 0)
  2438. (effects (font (size 1.27 1.27)) hide)
  2439. )
  2440. (property "Value" "PWR_FLAG" (at 0 3.81 0)
  2441. (effects (font (size 1.27 1.27)))
  2442. )
  2443. (property "Footprint" "" (at 0 0 0)
  2444. (effects (font (size 1.27 1.27)) hide)
  2445. )
  2446. (property "Datasheet" "~" (at 0 0 0)
  2447. (effects (font (size 1.27 1.27)) hide)
  2448. )
  2449. (property "ki_keywords" "power-flag" (at 0 0 0)
  2450. (effects (font (size 1.27 1.27)) hide)
  2451. )
  2452. (property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0)
  2453. (effects (font (size 1.27 1.27)) hide)
  2454. )
  2455. (symbol "PWR_FLAG_0_0"
  2456. (pin power_out line (at 0 0 90) (length 0)
  2457. (name "pwr" (effects (font (size 1.27 1.27))))
  2458. (number "1" (effects (font (size 1.27 1.27))))
  2459. )
  2460. )
  2461. (symbol "PWR_FLAG_0_1"
  2462. (polyline
  2463. (pts
  2464. (xy 0 0)
  2465. (xy 0 1.27)
  2466. (xy -1.016 1.905)
  2467. (xy 0 2.54)
  2468. (xy 1.016 1.905)
  2469. (xy 0 1.27)
  2470. )
  2471. (stroke (width 0) (type default))
  2472. (fill (type none))
  2473. )
  2474. )
  2475. )
  2476. (symbol "sm6uax:STM32F730Z8T6" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  2477. (property "Reference" "U" (at 0 5.08 0)
  2478. (effects (font (size 1.27 1.27)) (justify left))
  2479. )
  2480. (property "Value" "sm6uax_STM32F730Z8T6" (at 0 7.62 0)
  2481. (effects (font (size 1.27 1.27)) (justify left))
  2482. )
  2483. (property "Footprint" "sm6uax:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (at 0 10.16 0)
  2484. (effects (font (size 1.27 1.27)) (justify left) hide)
  2485. )
  2486. (property "Datasheet" "" (at 0 12.7 0)
  2487. (effects (font (size 1.27 1.27)) (justify left) hide)
  2488. )
  2489. (property "ki_locked" "" (at 0 0 0)
  2490. (effects (font (size 1.27 1.27)))
  2491. )
  2492. (symbol "STM32F730Z8T6_1_1"
  2493. (rectangle (start 5.08 2.54) (end 45.72 -71.12)
  2494. (stroke (width 0) (type default))
  2495. (fill (type background))
  2496. )
  2497. (pin power_in line (at 2.54 -40.64 0) (length 2.54)
  2498. (name "VCAP_2" (effects (font (size 1.016 1.016))))
  2499. (number "106" (effects (font (size 1.016 1.016))))
  2500. )
  2501. (pin power_in line (at 48.26 -60.96 180) (length 2.54)
  2502. (name "VSS" (effects (font (size 1.016 1.016))))
  2503. (number "107" (effects (font (size 1.016 1.016))))
  2504. )
  2505. (pin power_in line (at 2.54 -17.78 0) (length 2.54)
  2506. (name "VDD" (effects (font (size 1.016 1.016))))
  2507. (number "108" (effects (font (size 1.016 1.016))))
  2508. )
  2509. (pin power_in line (at 48.26 -63.5 180) (length 2.54)
  2510. (name "VSS" (effects (font (size 1.016 1.016))))
  2511. (number "120" (effects (font (size 1.016 1.016))))
  2512. )
  2513. (pin power_in line (at 2.54 -30.48 0) (length 2.54)
  2514. (name "VDDSDMMC" (effects (font (size 1.016 1.016))))
  2515. (number "121" (effects (font (size 1.016 1.016))))
  2516. )
  2517. (pin power_in line (at 48.26 -66.04 180) (length 2.54)
  2518. (name "VSS" (effects (font (size 1.016 1.016))))
  2519. (number "130" (effects (font (size 1.016 1.016))))
  2520. )
  2521. (pin power_in line (at 2.54 -20.32 0) (length 2.54)
  2522. (name "VDD" (effects (font (size 1.016 1.016))))
  2523. (number "131" (effects (font (size 1.016 1.016))))
  2524. )
  2525. (pin passive line (at 2.54 -58.42 0) (length 2.54)
  2526. (name "BOOT0" (effects (font (size 1.016 1.016))))
  2527. (number "138" (effects (font (size 1.016 1.016))))
  2528. )
  2529. (pin power_in line (at 2.54 -63.5 0) (length 2.54)
  2530. (name "PDR_ON" (effects (font (size 1.016 1.016))))
  2531. (number "143" (effects (font (size 1.016 1.016))))
  2532. )
  2533. (pin power_in line (at 2.54 -22.86 0) (length 2.54)
  2534. (name "VDD" (effects (font (size 1.016 1.016))))
  2535. (number "144" (effects (font (size 1.016 1.016))))
  2536. )
  2537. (pin power_in line (at 48.26 -45.72 180) (length 2.54)
  2538. (name "VSS" (effects (font (size 1.016 1.016))))
  2539. (number "16" (effects (font (size 1.016 1.016))))
  2540. )
  2541. (pin power_in line (at 2.54 0 0) (length 2.54)
  2542. (name "VDD" (effects (font (size 1.016 1.016))))
  2543. (number "17" (effects (font (size 1.016 1.016))))
  2544. )
  2545. (pin input line (at 2.54 -68.58 0) (length 2.54)
  2546. (name "~{RST}" (effects (font (size 1.016 1.016))))
  2547. (number "25" (effects (font (size 1.016 1.016))))
  2548. )
  2549. (pin power_in line (at 2.54 -2.54 0) (length 2.54)
  2550. (name "VDD" (effects (font (size 1.016 1.016))))
  2551. (number "30" (effects (font (size 1.016 1.016))))
  2552. )
  2553. (pin power_in line (at 48.26 -68.58 180) (length 2.54)
  2554. (name "VSSA" (effects (font (size 1.016 1.016))))
  2555. (number "31" (effects (font (size 1.016 1.016))))
  2556. )
  2557. (pin power_in line (at 2.54 -48.26 0) (length 2.54)
  2558. (name "VREF+" (effects (font (size 1.016 1.016))))
  2559. (number "32" (effects (font (size 1.016 1.016))))
  2560. )
  2561. (pin power_in line (at 2.54 -27.94 0) (length 2.54)
  2562. (name "VDDA" (effects (font (size 1.016 1.016))))
  2563. (number "33" (effects (font (size 1.016 1.016))))
  2564. )
  2565. (pin power_in line (at 48.26 -48.26 180) (length 2.54)
  2566. (name "VSS" (effects (font (size 1.016 1.016))))
  2567. (number "38" (effects (font (size 1.016 1.016))))
  2568. )
  2569. (pin power_in line (at 2.54 -5.08 0) (length 2.54)
  2570. (name "VDD" (effects (font (size 1.016 1.016))))
  2571. (number "39" (effects (font (size 1.016 1.016))))
  2572. )
  2573. (pin power_in line (at 48.26 -50.8 180) (length 2.54)
  2574. (name "VSS" (effects (font (size 1.016 1.016))))
  2575. (number "51" (effects (font (size 1.016 1.016))))
  2576. )
  2577. (pin power_in line (at 2.54 -7.62 0) (length 2.54)
  2578. (name "VDD" (effects (font (size 1.016 1.016))))
  2579. (number "52" (effects (font (size 1.016 1.016))))
  2580. )
  2581. (pin power_in line (at 2.54 -45.72 0) (length 2.54)
  2582. (name "VBAT" (effects (font (size 1.016 1.016))))
  2583. (number "6" (effects (font (size 1.016 1.016))))
  2584. )
  2585. (pin power_in line (at 48.26 -53.34 180) (length 2.54)
  2586. (name "VSS" (effects (font (size 1.016 1.016))))
  2587. (number "61" (effects (font (size 1.016 1.016))))
  2588. )
  2589. (pin power_in line (at 2.54 -10.16 0) (length 2.54)
  2590. (name "VDD" (effects (font (size 1.016 1.016))))
  2591. (number "62" (effects (font (size 1.016 1.016))))
  2592. )
  2593. (pin power_in line (at 2.54 -38.1 0) (length 2.54)
  2594. (name "VCAP_1" (effects (font (size 1.016 1.016))))
  2595. (number "71" (effects (font (size 1.016 1.016))))
  2596. )
  2597. (pin power_in line (at 2.54 -12.7 0) (length 2.54)
  2598. (name "VDD" (effects (font (size 1.016 1.016))))
  2599. (number "72" (effects (font (size 1.016 1.016))))
  2600. )
  2601. (pin power_in line (at 2.54 -53.34 0) (length 2.54)
  2602. (name "OTG_HS_REXT" (effects (font (size 1.016 1.016))))
  2603. (number "75" (effects (font (size 1.016 1.016))))
  2604. )
  2605. (pin passive line (at 2.54 -25.4 0) (length 2.54)
  2606. (name "VDD12OTGHS" (effects (font (size 1.016 1.016))))
  2607. (number "76" (effects (font (size 1.016 1.016))))
  2608. )
  2609. (pin power_in line (at 48.26 -55.88 180) (length 2.54)
  2610. (name "VSS" (effects (font (size 1.016 1.016))))
  2611. (number "85" (effects (font (size 1.016 1.016))))
  2612. )
  2613. (pin power_in line (at 2.54 -15.24 0) (length 2.54)
  2614. (name "VDD" (effects (font (size 1.016 1.016))))
  2615. (number "86" (effects (font (size 1.016 1.016))))
  2616. )
  2617. (pin power_in line (at 48.26 -58.42 180) (length 2.54)
  2618. (name "VSS" (effects (font (size 1.016 1.016))))
  2619. (number "94" (effects (font (size 1.016 1.016))))
  2620. )
  2621. (pin power_in line (at 2.54 -33.02 0) (length 2.54)
  2622. (name "VDDUSB" (effects (font (size 1.016 1.016))))
  2623. (number "95" (effects (font (size 1.016 1.016))))
  2624. )
  2625. )
  2626. (symbol "STM32F730Z8T6_2_1"
  2627. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  2628. (stroke (width 0) (type default))
  2629. (fill (type background))
  2630. )
  2631. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  2632. (name "PA8" (effects (font (size 1.016 1.016))))
  2633. (number "100" (effects (font (size 1.016 1.016))))
  2634. )
  2635. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  2636. (name "PA9" (effects (font (size 1.016 1.016))))
  2637. (number "101" (effects (font (size 1.016 1.016))))
  2638. )
  2639. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  2640. (name "PA10" (effects (font (size 1.016 1.016))))
  2641. (number "102" (effects (font (size 1.016 1.016))))
  2642. )
  2643. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  2644. (name "PA11" (effects (font (size 1.016 1.016))))
  2645. (number "103" (effects (font (size 1.016 1.016))))
  2646. )
  2647. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  2648. (name "PA12" (effects (font (size 1.016 1.016))))
  2649. (number "104" (effects (font (size 1.016 1.016))))
  2650. )
  2651. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  2652. (name "PA13" (effects (font (size 1.016 1.016))))
  2653. (number "105" (effects (font (size 1.016 1.016))))
  2654. )
  2655. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  2656. (name "PA14" (effects (font (size 1.016 1.016))))
  2657. (number "109" (effects (font (size 1.016 1.016))))
  2658. )
  2659. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  2660. (name "PA15" (effects (font (size 1.016 1.016))))
  2661. (number "110" (effects (font (size 1.016 1.016))))
  2662. )
  2663. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  2664. (name "PC10" (effects (font (size 1.016 1.016))))
  2665. (number "111" (effects (font (size 1.016 1.016))))
  2666. )
  2667. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  2668. (name "PC11" (effects (font (size 1.016 1.016))))
  2669. (number "112" (effects (font (size 1.016 1.016))))
  2670. )
  2671. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  2672. (name "PC12" (effects (font (size 1.016 1.016))))
  2673. (number "113" (effects (font (size 1.016 1.016))))
  2674. )
  2675. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  2676. (name "PD0" (effects (font (size 1.016 1.016))))
  2677. (number "114" (effects (font (size 1.016 1.016))))
  2678. )
  2679. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  2680. (name "PD1" (effects (font (size 1.016 1.016))))
  2681. (number "115" (effects (font (size 1.016 1.016))))
  2682. )
  2683. (pin bidirectional line (at 25.4 -48.26 180) (length 2.54)
  2684. (name "PD2" (effects (font (size 1.016 1.016))))
  2685. (number "116" (effects (font (size 1.016 1.016))))
  2686. )
  2687. (pin bidirectional line (at 25.4 -50.8 180) (length 2.54)
  2688. (name "PD3" (effects (font (size 1.016 1.016))))
  2689. (number "117" (effects (font (size 1.016 1.016))))
  2690. )
  2691. (pin bidirectional line (at 25.4 -53.34 180) (length 2.54)
  2692. (name "PD4" (effects (font (size 1.016 1.016))))
  2693. (number "118" (effects (font (size 1.016 1.016))))
  2694. )
  2695. (pin bidirectional line (at 25.4 -55.88 180) (length 2.54)
  2696. (name "PD5" (effects (font (size 1.016 1.016))))
  2697. (number "119" (effects (font (size 1.016 1.016))))
  2698. )
  2699. (pin bidirectional line (at 25.4 -58.42 180) (length 2.54)
  2700. (name "PD6" (effects (font (size 1.016 1.016))))
  2701. (number "122" (effects (font (size 1.016 1.016))))
  2702. )
  2703. (pin bidirectional line (at 25.4 -60.96 180) (length 2.54)
  2704. (name "PD7" (effects (font (size 1.016 1.016))))
  2705. (number "123" (effects (font (size 1.016 1.016))))
  2706. )
  2707. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  2708. (name "PB3" (effects (font (size 1.016 1.016))))
  2709. (number "133" (effects (font (size 1.016 1.016))))
  2710. )
  2711. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  2712. (name "PB4" (effects (font (size 1.016 1.016))))
  2713. (number "134" (effects (font (size 1.016 1.016))))
  2714. )
  2715. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  2716. (name "PB5" (effects (font (size 1.016 1.016))))
  2717. (number "135" (effects (font (size 1.016 1.016))))
  2718. )
  2719. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  2720. (name "PB6" (effects (font (size 1.016 1.016))))
  2721. (number "136" (effects (font (size 1.016 1.016))))
  2722. )
  2723. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  2724. (name "PB7" (effects (font (size 1.016 1.016))))
  2725. (number "137" (effects (font (size 1.016 1.016))))
  2726. )
  2727. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  2728. (name "PB8" (effects (font (size 1.016 1.016))))
  2729. (number "139" (effects (font (size 1.016 1.016))))
  2730. )
  2731. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  2732. (name "PB9" (effects (font (size 1.016 1.016))))
  2733. (number "140" (effects (font (size 1.016 1.016))))
  2734. )
  2735. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  2736. (name "PC0" (effects (font (size 1.016 1.016))))
  2737. (number "26" (effects (font (size 1.016 1.016))))
  2738. )
  2739. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  2740. (name "PC1" (effects (font (size 1.016 1.016))))
  2741. (number "27" (effects (font (size 1.016 1.016))))
  2742. )
  2743. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  2744. (name "PC2" (effects (font (size 1.016 1.016))))
  2745. (number "28" (effects (font (size 1.016 1.016))))
  2746. )
  2747. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  2748. (name "PC3" (effects (font (size 1.016 1.016))))
  2749. (number "29" (effects (font (size 1.016 1.016))))
  2750. )
  2751. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  2752. (name "PA0" (effects (font (size 1.016 1.016))))
  2753. (number "34" (effects (font (size 1.016 1.016))))
  2754. )
  2755. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  2756. (name "PA1" (effects (font (size 1.016 1.016))))
  2757. (number "35" (effects (font (size 1.016 1.016))))
  2758. )
  2759. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  2760. (name "PA2" (effects (font (size 1.016 1.016))))
  2761. (number "36" (effects (font (size 1.016 1.016))))
  2762. )
  2763. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  2764. (name "PA3" (effects (font (size 1.016 1.016))))
  2765. (number "37" (effects (font (size 1.016 1.016))))
  2766. )
  2767. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  2768. (name "PA4" (effects (font (size 1.016 1.016))))
  2769. (number "40" (effects (font (size 1.016 1.016))))
  2770. )
  2771. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  2772. (name "PA5" (effects (font (size 1.016 1.016))))
  2773. (number "41" (effects (font (size 1.016 1.016))))
  2774. )
  2775. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  2776. (name "PA6" (effects (font (size 1.016 1.016))))
  2777. (number "42" (effects (font (size 1.016 1.016))))
  2778. )
  2779. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  2780. (name "PA7" (effects (font (size 1.016 1.016))))
  2781. (number "43" (effects (font (size 1.016 1.016))))
  2782. )
  2783. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  2784. (name "PC4" (effects (font (size 1.016 1.016))))
  2785. (number "44" (effects (font (size 1.016 1.016))))
  2786. )
  2787. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  2788. (name "PC5" (effects (font (size 1.016 1.016))))
  2789. (number "45" (effects (font (size 1.016 1.016))))
  2790. )
  2791. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  2792. (name "PB0" (effects (font (size 1.016 1.016))))
  2793. (number "46" (effects (font (size 1.016 1.016))))
  2794. )
  2795. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  2796. (name "PB1" (effects (font (size 1.016 1.016))))
  2797. (number "47" (effects (font (size 1.016 1.016))))
  2798. )
  2799. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  2800. (name "PB2" (effects (font (size 1.016 1.016))))
  2801. (number "48" (effects (font (size 1.016 1.016))))
  2802. )
  2803. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  2804. (name "PB10" (effects (font (size 1.016 1.016))))
  2805. (number "69" (effects (font (size 1.016 1.016))))
  2806. )
  2807. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  2808. (name "PC13" (effects (font (size 1.016 1.016))))
  2809. (number "7" (effects (font (size 1.016 1.016))))
  2810. )
  2811. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  2812. (name "PB11" (effects (font (size 1.016 1.016))))
  2813. (number "70" (effects (font (size 1.016 1.016))))
  2814. )
  2815. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  2816. (name "PB12" (effects (font (size 1.016 1.016))))
  2817. (number "73" (effects (font (size 1.016 1.016))))
  2818. )
  2819. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  2820. (name "PB13" (effects (font (size 1.016 1.016))))
  2821. (number "74" (effects (font (size 1.016 1.016))))
  2822. )
  2823. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  2824. (name "PB14" (effects (font (size 1.016 1.016))))
  2825. (number "77" (effects (font (size 1.016 1.016))))
  2826. )
  2827. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  2828. (name "PB15" (effects (font (size 1.016 1.016))))
  2829. (number "78" (effects (font (size 1.016 1.016))))
  2830. )
  2831. (pin bidirectional line (at 25.4 -63.5 180) (length 2.54)
  2832. (name "PD8" (effects (font (size 1.016 1.016))))
  2833. (number "79" (effects (font (size 1.016 1.016))))
  2834. )
  2835. (pin bidirectional line (at 25.4 -35.56 180) (length 2.54)
  2836. (name "PC14" (effects (font (size 1.016 1.016))))
  2837. (number "8" (effects (font (size 1.016 1.016))))
  2838. )
  2839. (pin bidirectional line (at 25.4 -66.04 180) (length 2.54)
  2840. (name "PD9" (effects (font (size 1.016 1.016))))
  2841. (number "80" (effects (font (size 1.016 1.016))))
  2842. )
  2843. (pin bidirectional line (at 25.4 -68.58 180) (length 2.54)
  2844. (name "PD10" (effects (font (size 1.016 1.016))))
  2845. (number "81" (effects (font (size 1.016 1.016))))
  2846. )
  2847. (pin bidirectional line (at 25.4 -71.12 180) (length 2.54)
  2848. (name "PD11" (effects (font (size 1.016 1.016))))
  2849. (number "82" (effects (font (size 1.016 1.016))))
  2850. )
  2851. (pin bidirectional line (at 25.4 -73.66 180) (length 2.54)
  2852. (name "PD12" (effects (font (size 1.016 1.016))))
  2853. (number "83" (effects (font (size 1.016 1.016))))
  2854. )
  2855. (pin bidirectional line (at 25.4 -76.2 180) (length 2.54)
  2856. (name "PD13" (effects (font (size 1.016 1.016))))
  2857. (number "84" (effects (font (size 1.016 1.016))))
  2858. )
  2859. (pin bidirectional line (at 25.4 -78.74 180) (length 2.54)
  2860. (name "PD14" (effects (font (size 1.016 1.016))))
  2861. (number "87" (effects (font (size 1.016 1.016))))
  2862. )
  2863. (pin bidirectional line (at 25.4 -81.28 180) (length 2.54)
  2864. (name "PD15" (effects (font (size 1.016 1.016))))
  2865. (number "88" (effects (font (size 1.016 1.016))))
  2866. )
  2867. (pin bidirectional line (at 25.4 -38.1 180) (length 2.54)
  2868. (name "PC15" (effects (font (size 1.016 1.016))))
  2869. (number "9" (effects (font (size 1.016 1.016))))
  2870. )
  2871. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  2872. (name "PC6" (effects (font (size 1.016 1.016))))
  2873. (number "96" (effects (font (size 1.016 1.016))))
  2874. )
  2875. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  2876. (name "PC7" (effects (font (size 1.016 1.016))))
  2877. (number "97" (effects (font (size 1.016 1.016))))
  2878. )
  2879. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  2880. (name "PC8" (effects (font (size 1.016 1.016))))
  2881. (number "98" (effects (font (size 1.016 1.016))))
  2882. )
  2883. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  2884. (name "PC9" (effects (font (size 1.016 1.016))))
  2885. (number "99" (effects (font (size 1.016 1.016))))
  2886. )
  2887. )
  2888. (symbol "STM32F730Z8T6_3_1"
  2889. (rectangle (start 5.08 2.54) (end 22.86 -83.82)
  2890. (stroke (width 0) (type default))
  2891. (fill (type background))
  2892. )
  2893. (pin bidirectional line (at 2.54 -5.08 0) (length 2.54)
  2894. (name "PE2" (effects (font (size 1.016 1.016))))
  2895. (number "1" (effects (font (size 1.016 1.016))))
  2896. )
  2897. (pin bidirectional line (at 2.54 -43.18 0) (length 2.54)
  2898. (name "PF0" (effects (font (size 1.016 1.016))))
  2899. (number "10" (effects (font (size 1.016 1.016))))
  2900. )
  2901. (pin bidirectional line (at 2.54 -45.72 0) (length 2.54)
  2902. (name "PF1" (effects (font (size 1.016 1.016))))
  2903. (number "11" (effects (font (size 1.016 1.016))))
  2904. )
  2905. (pin bidirectional line (at 2.54 -48.26 0) (length 2.54)
  2906. (name "PF2" (effects (font (size 1.016 1.016))))
  2907. (number "12" (effects (font (size 1.016 1.016))))
  2908. )
  2909. (pin bidirectional line (at 25.4 -17.78 180) (length 2.54)
  2910. (name "PG9" (effects (font (size 1.016 1.016))))
  2911. (number "124" (effects (font (size 1.016 1.016))))
  2912. )
  2913. (pin bidirectional line (at 25.4 -20.32 180) (length 2.54)
  2914. (name "PG10" (effects (font (size 1.016 1.016))))
  2915. (number "125" (effects (font (size 1.016 1.016))))
  2916. )
  2917. (pin bidirectional line (at 25.4 -22.86 180) (length 2.54)
  2918. (name "PG11" (effects (font (size 1.016 1.016))))
  2919. (number "126" (effects (font (size 1.016 1.016))))
  2920. )
  2921. (pin bidirectional line (at 25.4 -25.4 180) (length 2.54)
  2922. (name "PG12" (effects (font (size 1.016 1.016))))
  2923. (number "127" (effects (font (size 1.016 1.016))))
  2924. )
  2925. (pin bidirectional line (at 25.4 -27.94 180) (length 2.54)
  2926. (name "PG13" (effects (font (size 1.016 1.016))))
  2927. (number "128" (effects (font (size 1.016 1.016))))
  2928. )
  2929. (pin bidirectional line (at 25.4 -30.48 180) (length 2.54)
  2930. (name "PG14" (effects (font (size 1.016 1.016))))
  2931. (number "129" (effects (font (size 1.016 1.016))))
  2932. )
  2933. (pin bidirectional line (at 2.54 -50.8 0) (length 2.54)
  2934. (name "PF3" (effects (font (size 1.016 1.016))))
  2935. (number "13" (effects (font (size 1.016 1.016))))
  2936. )
  2937. (pin bidirectional line (at 25.4 -33.02 180) (length 2.54)
  2938. (name "PG15" (effects (font (size 1.016 1.016))))
  2939. (number "132" (effects (font (size 1.016 1.016))))
  2940. )
  2941. (pin bidirectional line (at 2.54 -53.34 0) (length 2.54)
  2942. (name "PF4" (effects (font (size 1.016 1.016))))
  2943. (number "14" (effects (font (size 1.016 1.016))))
  2944. )
  2945. (pin bidirectional line (at 2.54 0 0) (length 2.54)
  2946. (name "PE0" (effects (font (size 1.016 1.016))))
  2947. (number "141" (effects (font (size 1.016 1.016))))
  2948. )
  2949. (pin bidirectional line (at 2.54 -2.54 0) (length 2.54)
  2950. (name "PE1" (effects (font (size 1.016 1.016))))
  2951. (number "142" (effects (font (size 1.016 1.016))))
  2952. )
  2953. (pin bidirectional line (at 2.54 -55.88 0) (length 2.54)
  2954. (name "PF5" (effects (font (size 1.016 1.016))))
  2955. (number "15" (effects (font (size 1.016 1.016))))
  2956. )
  2957. (pin bidirectional line (at 2.54 -58.42 0) (length 2.54)
  2958. (name "PF6" (effects (font (size 1.016 1.016))))
  2959. (number "18" (effects (font (size 1.016 1.016))))
  2960. )
  2961. (pin bidirectional line (at 2.54 -60.96 0) (length 2.54)
  2962. (name "PF7" (effects (font (size 1.016 1.016))))
  2963. (number "19" (effects (font (size 1.016 1.016))))
  2964. )
  2965. (pin bidirectional line (at 2.54 -7.62 0) (length 2.54)
  2966. (name "PE3" (effects (font (size 1.016 1.016))))
  2967. (number "2" (effects (font (size 1.016 1.016))))
  2968. )
  2969. (pin bidirectional line (at 2.54 -63.5 0) (length 2.54)
  2970. (name "PF8" (effects (font (size 1.016 1.016))))
  2971. (number "20" (effects (font (size 1.016 1.016))))
  2972. )
  2973. (pin bidirectional line (at 2.54 -66.04 0) (length 2.54)
  2974. (name "PF9" (effects (font (size 1.016 1.016))))
  2975. (number "21" (effects (font (size 1.016 1.016))))
  2976. )
  2977. (pin bidirectional line (at 2.54 -68.58 0) (length 2.54)
  2978. (name "PF10" (effects (font (size 1.016 1.016))))
  2979. (number "22" (effects (font (size 1.016 1.016))))
  2980. )
  2981. (pin bidirectional line (at 25.4 -43.18 180) (length 2.54)
  2982. (name "PH0" (effects (font (size 1.016 1.016))))
  2983. (number "23" (effects (font (size 1.016 1.016))))
  2984. )
  2985. (pin bidirectional line (at 25.4 -45.72 180) (length 2.54)
  2986. (name "PH1" (effects (font (size 1.016 1.016))))
  2987. (number "24" (effects (font (size 1.016 1.016))))
  2988. )
  2989. (pin bidirectional line (at 2.54 -10.16 0) (length 2.54)
  2990. (name "PE4" (effects (font (size 1.016 1.016))))
  2991. (number "3" (effects (font (size 1.016 1.016))))
  2992. )
  2993. (pin bidirectional line (at 2.54 -12.7 0) (length 2.54)
  2994. (name "PE5" (effects (font (size 1.016 1.016))))
  2995. (number "4" (effects (font (size 1.016 1.016))))
  2996. )
  2997. (pin bidirectional line (at 2.54 -71.12 0) (length 2.54)
  2998. (name "PF11" (effects (font (size 1.016 1.016))))
  2999. (number "49" (effects (font (size 1.016 1.016))))
  3000. )
  3001. (pin bidirectional line (at 2.54 -15.24 0) (length 2.54)
  3002. (name "PE6" (effects (font (size 1.016 1.016))))
  3003. (number "5" (effects (font (size 1.016 1.016))))
  3004. )
  3005. (pin bidirectional line (at 2.54 -73.66 0) (length 2.54)
  3006. (name "PF12" (effects (font (size 1.016 1.016))))
  3007. (number "50" (effects (font (size 1.016 1.016))))
  3008. )
  3009. (pin bidirectional line (at 2.54 -76.2 0) (length 2.54)
  3010. (name "PF13" (effects (font (size 1.016 1.016))))
  3011. (number "53" (effects (font (size 1.016 1.016))))
  3012. )
  3013. (pin bidirectional line (at 2.54 -78.74 0) (length 2.54)
  3014. (name "PF14" (effects (font (size 1.016 1.016))))
  3015. (number "54" (effects (font (size 1.016 1.016))))
  3016. )
  3017. (pin bidirectional line (at 2.54 -81.28 0) (length 2.54)
  3018. (name "PF15" (effects (font (size 1.016 1.016))))
  3019. (number "55" (effects (font (size 1.016 1.016))))
  3020. )
  3021. (pin bidirectional line (at 25.4 0 180) (length 2.54)
  3022. (name "PG0" (effects (font (size 1.016 1.016))))
  3023. (number "56" (effects (font (size 1.016 1.016))))
  3024. )
  3025. (pin bidirectional line (at 25.4 -2.54 180) (length 2.54)
  3026. (name "PG1" (effects (font (size 1.016 1.016))))
  3027. (number "57" (effects (font (size 1.016 1.016))))
  3028. )
  3029. (pin bidirectional line (at 2.54 -17.78 0) (length 2.54)
  3030. (name "PE7" (effects (font (size 1.016 1.016))))
  3031. (number "58" (effects (font (size 1.016 1.016))))
  3032. )
  3033. (pin bidirectional line (at 2.54 -20.32 0) (length 2.54)
  3034. (name "PE8" (effects (font (size 1.016 1.016))))
  3035. (number "59" (effects (font (size 1.016 1.016))))
  3036. )
  3037. (pin bidirectional line (at 2.54 -22.86 0) (length 2.54)
  3038. (name "PE9" (effects (font (size 1.016 1.016))))
  3039. (number "60" (effects (font (size 1.016 1.016))))
  3040. )
  3041. (pin bidirectional line (at 2.54 -25.4 0) (length 2.54)
  3042. (name "PE10" (effects (font (size 1.016 1.016))))
  3043. (number "63" (effects (font (size 1.016 1.016))))
  3044. )
  3045. (pin bidirectional line (at 2.54 -27.94 0) (length 2.54)
  3046. (name "PE11" (effects (font (size 1.016 1.016))))
  3047. (number "64" (effects (font (size 1.016 1.016))))
  3048. )
  3049. (pin bidirectional line (at 2.54 -30.48 0) (length 2.54)
  3050. (name "PE12" (effects (font (size 1.016 1.016))))
  3051. (number "65" (effects (font (size 1.016 1.016))))
  3052. )
  3053. (pin bidirectional line (at 2.54 -33.02 0) (length 2.54)
  3054. (name "PE13" (effects (font (size 1.016 1.016))))
  3055. (number "66" (effects (font (size 1.016 1.016))))
  3056. )
  3057. (pin bidirectional line (at 2.54 -35.56 0) (length 2.54)
  3058. (name "PE14" (effects (font (size 1.016 1.016))))
  3059. (number "67" (effects (font (size 1.016 1.016))))
  3060. )
  3061. (pin bidirectional line (at 2.54 -38.1 0) (length 2.54)
  3062. (name "PE15" (effects (font (size 1.016 1.016))))
  3063. (number "68" (effects (font (size 1.016 1.016))))
  3064. )
  3065. (pin bidirectional line (at 25.4 -5.08 180) (length 2.54)
  3066. (name "PG2" (effects (font (size 1.016 1.016))))
  3067. (number "89" (effects (font (size 1.016 1.016))))
  3068. )
  3069. (pin bidirectional line (at 25.4 -7.62 180) (length 2.54)
  3070. (name "PG3" (effects (font (size 1.016 1.016))))
  3071. (number "90" (effects (font (size 1.016 1.016))))
  3072. )
  3073. (pin bidirectional line (at 25.4 -10.16 180) (length 2.54)
  3074. (name "PG4" (effects (font (size 1.016 1.016))))
  3075. (number "91" (effects (font (size 1.016 1.016))))
  3076. )
  3077. (pin bidirectional line (at 25.4 -12.7 180) (length 2.54)
  3078. (name "PG5" (effects (font (size 1.016 1.016))))
  3079. (number "92" (effects (font (size 1.016 1.016))))
  3080. )
  3081. (pin bidirectional line (at 25.4 -15.24 180) (length 2.54)
  3082. (name "PG8" (effects (font (size 1.016 1.016))))
  3083. (number "93" (effects (font (size 1.016 1.016))))
  3084. )
  3085. )
  3086. )
  3087. )
  3088. (junction (at 181.737 96.774) (diameter 0) (color 0 0 0 0)
  3089. (uuid 01f82238-6335-48fe-8b0a-6853e227345a)
  3090. )
  3091. (junction (at 111.76 68.58) (diameter 0) (color 0 0 0 0)
  3092. (uuid 068d7a7a-0f25-4de5-9cb5-2349a9191b50)
  3093. )
  3094. (junction (at 181.737 78.994) (diameter 0) (color 0 0 0 0)
  3095. (uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb)
  3096. )
  3097. (junction (at 181.737 73.914) (diameter 0) (color 0 0 0 0)
  3098. (uuid 10e52e95-44f3-4059-a86d-dcda603e0623)
  3099. )
  3100. (junction (at 111.76 58.42) (diameter 0) (color 0 0 0 0)
  3101. (uuid 1187e9bb-7692-4dd1-9945-e39ef9e5ce5b)
  3102. )
  3103. (junction (at 181.737 94.234) (diameter 0) (color 0 0 0 0)
  3104. (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919)
  3105. )
  3106. (junction (at 111.76 53.34) (diameter 0) (color 0 0 0 0)
  3107. (uuid 14bfaf9f-b822-4cbc-aa30-b927236f307a)
  3108. )
  3109. (junction (at 181.737 91.694) (diameter 0) (color 0 0 0 0)
  3110. (uuid 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa)
  3111. )
  3112. (junction (at 181.737 84.074) (diameter 0) (color 0 0 0 0)
  3113. (uuid 20caf6d2-76a7-497e-ac56-f6d31eb9027b)
  3114. )
  3115. (junction (at 189.23 48.26) (diameter 0) (color 0 0 0 0)
  3116. (uuid 22bc3958-394e-4cb7-bb6f-2924a9b17855)
  3117. )
  3118. (junction (at 274.32 38.1) (diameter 0) (color 0 0 0 0)
  3119. (uuid 24adc223-60f0-4497-98a3-d664c5a13280)
  3120. )
  3121. (junction (at 181.737 71.374) (diameter 0) (color 0 0 0 0)
  3122. (uuid 252f1275-081d-4d77-8bd5-3b9e6916ef42)
  3123. )
  3124. (junction (at 111.76 86.36) (diameter 0) (color 0 0 0 0)
  3125. (uuid 2c99bd06-59a6-4b07-a512-6528fd43f4dc)
  3126. )
  3127. (junction (at 111.76 83.82) (diameter 0) (color 0 0 0 0)
  3128. (uuid 35b2233e-2f59-44bf-93b3-2716d5b5b514)
  3129. )
  3130. (junction (at 111.76 78.74) (diameter 0) (color 0 0 0 0)
  3131. (uuid 3857167d-f8fc-4da8-b232-a84de78f65eb)
  3132. )
  3133. (junction (at 181.737 76.454) (diameter 0) (color 0 0 0 0)
  3134. (uuid 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6)
  3135. )
  3136. (junction (at 274.955 111.125) (diameter 0) (color 0 0 0 0)
  3137. (uuid 44b926bf-8bdd-4191-846d-2dfabab2cecb)
  3138. )
  3139. (junction (at 274.32 68.58) (diameter 0) (color 0 0 0 0)
  3140. (uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b)
  3141. )
  3142. (junction (at 99.06 27.94) (diameter 0) (color 0 0 0 0)
  3143. (uuid 56ee0ed0-293b-48bb-9d64-787fea15f4f0)
  3144. )
  3145. (junction (at 111.76 50.8) (diameter 0) (color 0 0 0 0)
  3146. (uuid 5c0b1897-8155-4679-9116-805919f75f96)
  3147. )
  3148. (junction (at 107.95 22.225) (diameter 0) (color 0 0 0 0)
  3149. (uuid 5faadd04-0682-4d19-8d5a-94f90405e41f)
  3150. )
  3151. (junction (at 181.737 86.614) (diameter 0) (color 0 0 0 0)
  3152. (uuid 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2)
  3153. )
  3154. (junction (at 111.76 106.68) (diameter 0) (color 0 0 0 0)
  3155. (uuid 6621a5a6-aa7a-4de2-9d29-1b200c13ada9)
  3156. )
  3157. (junction (at 111.76 88.9) (diameter 0) (color 0 0 0 0)
  3158. (uuid 71e2c442-6854-420c-af35-dcfcf83456aa)
  3159. )
  3160. (junction (at 274.32 58.42) (diameter 0) (color 0 0 0 0)
  3161. (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28)
  3162. )
  3163. (junction (at 111.76 76.2) (diameter 0) (color 0 0 0 0)
  3164. (uuid 7e59628a-e341-44cc-bf0f-f1b798a31f1a)
  3165. )
  3166. (junction (at 111.76 101.6) (diameter 0) (color 0 0 0 0)
  3167. (uuid 7f8cd204-ec07-4f76-9072-92e7ccb38dd1)
  3168. )
  3169. (junction (at 111.76 93.98) (diameter 0) (color 0 0 0 0)
  3170. (uuid 86d01cdf-5357-44e1-88d9-97c064cddc9b)
  3171. )
  3172. (junction (at 111.76 71.12) (diameter 0) (color 0 0 0 0)
  3173. (uuid 8dbd51b4-44a2-4ec8-88cf-49079c3aa71e)
  3174. )
  3175. (junction (at 274.32 83.82) (diameter 0) (color 0 0 0 0)
  3176. (uuid 8e132fa5-bdfc-4702-895c-f050b3490b17)
  3177. )
  3178. (junction (at 181.737 101.854) (diameter 0) (color 0 0 0 0)
  3179. (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe)
  3180. )
  3181. (junction (at 274.32 73.66) (diameter 0) (color 0 0 0 0)
  3182. (uuid 9112ddd5-10d5-48b8-954f-f1d5adcacbd9)
  3183. )
  3184. (junction (at 274.32 43.18) (diameter 0) (color 0 0 0 0)
  3185. (uuid 929a9b03-e99e-4b88-8e16-759f8c6b59a5)
  3186. )
  3187. (junction (at 111.76 91.44) (diameter 0) (color 0 0 0 0)
  3188. (uuid 93d4a801-226a-48d7-8947-f1bfb7b16554)
  3189. )
  3190. (junction (at 189.23 20.955) (diameter 0) (color 0 0 0 0)
  3191. (uuid 945d4a7b-d1e8-4f53-8015-906b50a24e40)
  3192. )
  3193. (junction (at 111.76 81.28) (diameter 0) (color 0 0 0 0)
  3194. (uuid 964e4e90-e12f-441c-9d6e-816439c420a1)
  3195. )
  3196. (junction (at 274.32 33.02) (diameter 0) (color 0 0 0 0)
  3197. (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03)
  3198. )
  3199. (junction (at 181.737 68.834) (diameter 0) (color 0 0 0 0)
  3200. (uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec)
  3201. )
  3202. (junction (at 111.76 60.96) (diameter 0) (color 0 0 0 0)
  3203. (uuid a91cedf1-2089-4c44-9b06-471821937b05)
  3204. )
  3205. (junction (at 274.955 126.365) (diameter 0) (color 0 0 0 0)
  3206. (uuid a99390cd-733b-41c3-bfb0-479a5903886b)
  3207. )
  3208. (junction (at 274.32 53.34) (diameter 0) (color 0 0 0 0)
  3209. (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89)
  3210. )
  3211. (junction (at 111.76 48.26) (diameter 0) (color 0 0 0 0)
  3212. (uuid adc65b09-91c2-4457-8ffe-d57980cf8d73)
  3213. )
  3214. (junction (at 274.32 63.5) (diameter 0) (color 0 0 0 0)
  3215. (uuid af76ce95-feca-41fb-bf31-edaa26d6766a)
  3216. )
  3217. (junction (at 144.78 145.415) (diameter 0) (color 0 0 0 0)
  3218. (uuid afacc12f-b097-4001-b889-9e6781913725)
  3219. )
  3220. (junction (at 274.32 88.9) (diameter 0) (color 0 0 0 0)
  3221. (uuid b79a7d66-d2e6-4c52-b80b-91523fb698dc)
  3222. )
  3223. (junction (at 166.497 106.934) (diameter 0) (color 0 0 0 0)
  3224. (uuid b854a395-bfc6-4140-9640-75d4f9296771)
  3225. )
  3226. (junction (at 111.76 55.88) (diameter 0) (color 0 0 0 0)
  3227. (uuid c1f5a21c-f5c2-44b0-9b58-90bde58c0d60)
  3228. )
  3229. (junction (at 274.955 121.285) (diameter 0) (color 0 0 0 0)
  3230. (uuid c3a69550-c4fa-45d1-9aba-0bba47699cca)
  3231. )
  3232. (junction (at 274.32 78.74) (diameter 0) (color 0 0 0 0)
  3233. (uuid ca9b74ce-0dee-401c-9544-f599f4cf538d)
  3234. )
  3235. (junction (at 274.955 131.445) (diameter 0) (color 0 0 0 0)
  3236. (uuid d01935a2-42fa-45ac-a82b-277ed6d20bb6)
  3237. )
  3238. (junction (at 274.32 27.94) (diameter 0) (color 0 0 0 0)
  3239. (uuid da546d77-4b03-4562-8fc6-837fd68e7691)
  3240. )
  3241. (junction (at 111.76 96.52) (diameter 0) (color 0 0 0 0)
  3242. (uuid e30dfecd-d78a-4507-91d6-d47619648416)
  3243. )
  3244. (junction (at 181.737 99.314) (diameter 0) (color 0 0 0 0)
  3245. (uuid e6d68f56-4a40-4849-b8d1-13d5ca292900)
  3246. )
  3247. (junction (at 181.737 81.534) (diameter 0) (color 0 0 0 0)
  3248. (uuid f6983918-fe05-46ea-b355-bc522ec53440)
  3249. )
  3250. (junction (at 274.955 116.205) (diameter 0) (color 0 0 0 0)
  3251. (uuid f7070c76-b83b-43a9-a243-491723819616)
  3252. )
  3253. (junction (at 111.76 73.66) (diameter 0) (color 0 0 0 0)
  3254. (uuid f70a4a9d-e097-4502-83aa-1f63e074f06b)
  3255. )
  3256. (junction (at 111.76 66.04) (diameter 0) (color 0 0 0 0)
  3257. (uuid f82dfe8f-ba55-4ab9-a234-6aed39cd6ca4)
  3258. )
  3259. (junction (at 111.76 63.5) (diameter 0) (color 0 0 0 0)
  3260. (uuid f91c051b-372e-45a5-ac05-790df945f858)
  3261. )
  3262. (junction (at 274.32 48.26) (diameter 0) (color 0 0 0 0)
  3263. (uuid fc2e9f96-3bed-4896-b995-f56e799f1c77)
  3264. )
  3265. (junction (at 181.737 89.154) (diameter 0) (color 0 0 0 0)
  3266. (uuid fc4ad874-c922-4070-89f9-7262080469d8)
  3267. )
  3268. (no_connect (at 54.61 99.06) (uuid 00891494-c03f-4b3e-809a-c84eb0c5ff0a))
  3269. (no_connect (at 54.61 104.14) (uuid 024b81ed-7ca3-4557-b9fa-075644de96f7))
  3270. (no_connect (at 31.75 116.84) (uuid 033fb47a-7330-48ce-ac5a-9fe1cb459eaf))
  3271. (no_connect (at 81.28 139.7) (uuid 08714b46-29ca-4521-9566-29e040fc72cc))
  3272. (no_connect (at 104.14 88.9) (uuid 1457e8f3-2460-440d-99d3-5b40eac43589))
  3273. (no_connect (at 31.75 106.68) (uuid 17e5ed96-cc0f-4a4b-a700-6d7ef9acd7bc))
  3274. (no_connect (at 54.61 91.44) (uuid 1e37fe91-3fc4-40b1-91c4-6c4ee1d6e125))
  3275. (no_connect (at 54.61 147.32) (uuid 26eae7d0-939e-4b64-91c1-bf55949d2daf))
  3276. (no_connect (at 38.1 60.325) (uuid 276dd34e-fc62-4ec0-a853-7be08f169b56))
  3277. (no_connect (at 31.75 91.44) (uuid 2d870741-1f5a-4052-a22e-27571d815352))
  3278. (no_connect (at 81.28 86.36) (uuid 2da23a18-3300-4252-b484-249181d69530))
  3279. (no_connect (at 104.14 86.36) (uuid 300c371e-700b-496f-93f0-81a059d70460))
  3280. (no_connect (at 81.28 127) (uuid 351e7c1c-f640-46bf-817e-0e5f388fa690))
  3281. (no_connect (at 81.28 149.86) (uuid 36eb8b48-9fc4-4e61-80e9-937649cf4782))
  3282. (no_connect (at 71.755 50.165) (uuid 37728c8e-efcc-462c-a749-47b6bfcbaf37))
  3283. (no_connect (at 104.14 109.22) (uuid 3f893e9a-6fe6-4a4b-8258-268ba807dd4c))
  3284. (no_connect (at 81.28 91.44) (uuid 4247a140-bbc6-42ed-9f12-5207475a1883))
  3285. (no_connect (at 81.28 152.4) (uuid 42fbbe90-8164-4a79-b8b2-fd21b7d5f65c))
  3286. (no_connect (at 31.75 132.08) (uuid 44f11401-c761-4962-89ab-032461972a58))
  3287. (no_connect (at 31.75 142.24) (uuid 491aead6-9c4e-4fe5-aabe-d851483116da))
  3288. (no_connect (at 81.28 124.46) (uuid 4cd0bd9f-817f-4e73-8746-dcc22ecd24ed))
  3289. (no_connect (at 54.61 106.68) (uuid 54a777cf-b430-40e0-80a8-8b4acb62f375))
  3290. (no_connect (at 54.61 129.54) (uuid 5b9a50c7-ecff-4a29-9d0e-23fb747ba498))
  3291. (no_connect (at 81.28 144.78) (uuid 643273c3-43c9-4ac4-86d8-c6a8eb457c15))
  3292. (no_connect (at 104.14 106.68) (uuid 65914d90-2ecd-4afd-9dbb-4ff27ca3c0fa))
  3293. (no_connect (at 104.14 78.74) (uuid 6ca02c22-abf9-4e6c-b9b7-6c93ab5b146f))
  3294. (no_connect (at 54.61 96.52) (uuid 728bfe2b-ac1b-4f98-b4e8-b8663c1887da))
  3295. (no_connect (at 54.61 93.98) (uuid 732d4189-9cf0-4564-bc31-49f2ca254fbb))
  3296. (no_connect (at 54.61 160.02) (uuid 7bc95512-6329-4c23-b758-73f635511d06))
  3297. (no_connect (at 81.28 96.52) (uuid 7e0a823a-2958-48c8-98d9-efdb7150bb81))
  3298. (no_connect (at 31.75 99.06) (uuid 826fb3e4-1056-4f5f-956f-254f6941d336))
  3299. (no_connect (at 104.14 83.82) (uuid 868a3433-d791-484e-9bb1-d9be133b4a21))
  3300. (no_connect (at 81.28 157.48) (uuid 89315d23-03b7-46b1-81ee-6276bde90a82))
  3301. (no_connect (at 81.28 137.16) (uuid 8a6dc8e4-8ddd-4bf1-b1ca-0495dd8ae127))
  3302. (no_connect (at 54.61 152.4) (uuid 8c3e2ea9-ca92-4843-9074-44c21d854982))
  3303. (no_connect (at 54.61 142.24) (uuid 8f790adc-8b38-4aac-8720-2e2b0dc659aa))
  3304. (no_connect (at 132.715 121.92) (uuid 93af1374-af56-4fc8-af3f-6c16d61a0b21))
  3305. (no_connect (at 81.28 93.98) (uuid 93e32358-1bdd-4e24-8b79-9054a0552b8a))
  3306. (no_connect (at 81.28 134.62) (uuid 94300228-8a6b-43b4-8bd6-fde7b11076c8))
  3307. (no_connect (at 104.14 111.76) (uuid 970b5190-6039-42f3-9c9c-64c50ef33fc2))
  3308. (no_connect (at 104.14 91.44) (uuid 994ec659-18e4-41e0-b6f4-15a99d6eabe3))
  3309. (no_connect (at 31.75 109.22) (uuid 9bf407cf-f06a-48ac-8bea-4b5cfadd1384))
  3310. (no_connect (at 128.27 53.34) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232ac))
  3311. (no_connect (at 128.27 48.26) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232af))
  3312. (no_connect (at 128.27 50.8) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b0))
  3313. (no_connect (at 128.27 106.68) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b1))
  3314. (no_connect (at 128.27 73.66) (uuid 9ff8d6a5-7a30-44f2-b99b-6ecde8c232b5))
  3315. (no_connect (at 54.61 149.86) (uuid a7128e49-87e5-4854-ba63-ff1d53065189))
  3316. (no_connect (at 81.28 147.32) (uuid ab5a8b90-558e-42dc-9b97-c893fb5a2b10))
  3317. (no_connect (at 54.61 109.22) (uuid abb7db91-c8d0-49b9-ba9c-db0b048a9efe))
  3318. (no_connect (at 54.61 144.78) (uuid ac72df19-9d81-40b9-913f-ca2d4db7827b))
  3319. (no_connect (at 54.61 121.92) (uuid ae3b158c-9426-4780-9122-e8d1603ed7e1))
  3320. (no_connect (at 104.14 99.06) (uuid ae68231e-4175-4e26-98a5-5fcd909d496b))
  3321. (no_connect (at 81.28 132.08) (uuid b0e5a25e-ab68-45e1-b20b-c2a413556c18))
  3322. (no_connect (at 31.75 88.9) (uuid b3f21f3f-128c-4e88-bcd2-38f966b77321))
  3323. (no_connect (at 54.61 154.94) (uuid b5680de7-ae05-4ffb-b73d-7b0f27073ab6))
  3324. (no_connect (at 81.28 160.02) (uuid b8406398-c88b-436a-9dd4-9aaaf6c5a488))
  3325. (no_connect (at 81.28 83.82) (uuid bb55aca0-2551-4f41-b493-535b0a8afccc))
  3326. (no_connect (at 104.14 124.46) (uuid be021e70-1a5b-4fc4-aa0c-41b42db09350))
  3327. (no_connect (at 54.61 157.48) (uuid be98f734-3bc9-4d9c-97e5-20415c91c5d7))
  3328. (no_connect (at 81.28 154.94) (uuid c44eb740-e633-485c-b41b-878872c1f69d))
  3329. (no_connect (at 104.14 81.28) (uuid c75b0135-9e9d-4628-9762-267358c3bb33))
  3330. (no_connect (at 104.14 93.98) (uuid c9f403fb-ed4d-4b33-adac-b0ef7f0d1d69))
  3331. (no_connect (at 104.14 104.14) (uuid cb586b87-68d3-4355-b17f-2e06d5bf0e1d))
  3332. (no_connect (at 31.75 144.78) (uuid cc4a2a56-97a6-492d-bc87-2abcaa1e59f5))
  3333. (no_connect (at 104.14 101.6) (uuid cd1b4d44-9354-45f7-a49e-7e6ba6548bfd))
  3334. (no_connect (at 81.28 142.24) (uuid d006523f-5372-4136-95eb-0454648c416c))
  3335. (no_connect (at 104.14 96.52) (uuid d3741fbd-9f9b-42c7-b81f-2926ebc3b2ca))
  3336. (no_connect (at 54.61 101.6) (uuid d47d1af6-c1eb-43a3-bb4e-f85f5c891f22))
  3337. (no_connect (at 31.75 129.54) (uuid e1a096b2-4e3b-4c20-a010-5831605cd725))
  3338. (no_connect (at 81.28 129.54) (uuid e4dc41c5-7dc7-4686-9bd0-3571dfbbd23a))
  3339. (no_connect (at 81.28 121.92) (uuid ede20bd1-a6ee-466f-a29c-b8d337356dba))
  3340. (no_connect (at 128.27 104.14) (uuid f22d03cc-c2bf-4309-a544-5e3bca00213c))
  3341. (no_connect (at 31.75 134.62) (uuid f370fbc7-327f-4578-a64e-261caa1f96b9))
  3342. (no_connect (at 81.28 99.06) (uuid f3b3c682-3311-4e76-90db-0e5373f40533))
  3343. (no_connect (at 54.61 78.74) (uuid f78abf3d-5695-4b76-b33f-d959d7b688e7))
  3344. (no_connect (at 81.28 88.9) (uuid faa958cd-c104-4993-9160-c571d81aa390))
  3345. (wire (pts (xy 30.48 101.6) (xy 31.75 101.6))
  3346. (stroke (width 0) (type default))
  3347. (uuid 000b46d6-b833-4804-8f56-56d539f76d09)
  3348. )
  3349. (wire (pts (xy 198.247 96.774) (xy 199.517 96.774))
  3350. (stroke (width 0) (type default))
  3351. (uuid 002da00a-54ae-4887-954f-6f20040cf503)
  3352. )
  3353. (wire (pts (xy 111.76 66.04) (xy 111.76 68.58))
  3354. (stroke (width 0) (type default))
  3355. (uuid 01dc798b-4c95-4d40-80b7-aa972004ee44)
  3356. )
  3357. (wire (pts (xy 78.486 78.74) (xy 81.28 78.74))
  3358. (stroke (width 0) (type default))
  3359. (uuid 029c3eee-54a9-4e48-a642-e389be17dd03)
  3360. )
  3361. (wire (pts (xy 254.635 131.445) (xy 266.065 131.445))
  3362. (stroke (width 0) (type default))
  3363. (uuid 03a8f6c8-9db7-4036-a0c1-67ab981e334c)
  3364. )
  3365. (wire (pts (xy 129.54 170.18) (xy 132.08 170.18))
  3366. (stroke (width 0) (type default))
  3367. (uuid 03e48a7d-cbfe-454a-bd5a-26805d2a84ce)
  3368. )
  3369. (wire (pts (xy 128.27 78.74) (xy 130.81 78.74))
  3370. (stroke (width 0) (type default))
  3371. (uuid 042b8bea-9219-4f6a-89b3-599bbdfa8b93)
  3372. )
  3373. (wire (pts (xy 139.7 149.225) (xy 144.78 149.225))
  3374. (stroke (width 0) (type default))
  3375. (uuid 04657fbf-e375-4129-bf29-87f895ae9e9c)
  3376. )
  3377. (wire (pts (xy 111.76 71.12) (xy 115.57 71.12))
  3378. (stroke (width 0) (type default))
  3379. (uuid 04d7fd83-a6aa-4987-9e20-3d50c265b831)
  3380. )
  3381. (wire (pts (xy 242.57 128.27) (xy 248.92 128.27))
  3382. (stroke (width 0) (type default))
  3383. (uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
  3384. )
  3385. (wire (pts (xy 111.76 48.26) (xy 115.57 48.26))
  3386. (stroke (width 0) (type default))
  3387. (uuid 05d6ed65-9b0b-47fc-9d52-3f81dfc32551)
  3388. )
  3389. (wire (pts (xy 128.27 88.9) (xy 130.81 88.9))
  3390. (stroke (width 0) (type default))
  3391. (uuid 05e3b151-dc12-4701-912e-3bf8070597d8)
  3392. )
  3393. (wire (pts (xy 274.32 83.82) (xy 274.32 78.74))
  3394. (stroke (width 0) (type default))
  3395. (uuid 099473f1-6598-46ff-a50f-4c520832170d)
  3396. )
  3397. (wire (pts (xy 128.27 91.44) (xy 130.81 91.44))
  3398. (stroke (width 0) (type default))
  3399. (uuid 0a1f756a-03ad-48d1-a3cc-07b1e91bf6b5)
  3400. )
  3401. (wire (pts (xy 181.737 68.834) (xy 181.737 71.374))
  3402. (stroke (width 0) (type default))
  3403. (uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7)
  3404. )
  3405. (wire (pts (xy 185.547 101.854) (xy 181.737 101.854))
  3406. (stroke (width 0) (type default))
  3407. (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae)
  3408. )
  3409. (wire (pts (xy 29.972 137.16) (xy 31.75 137.16))
  3410. (stroke (width 0) (type default))
  3411. (uuid 0e7ad38a-9a9f-4f7f-85da-d397ca1ffbd3)
  3412. )
  3413. (wire (pts (xy 96.52 25.4) (xy 99.06 25.4))
  3414. (stroke (width 0) (type default))
  3415. (uuid 0ec8848f-4be5-421c-bcfc-a66d819b129d)
  3416. )
  3417. (wire (pts (xy 201.295 21.59) (xy 201.295 20.955))
  3418. (stroke (width 0) (type default))
  3419. (uuid 0ff8df5d-6147-42eb-9d00-c2f436a171da)
  3420. )
  3421. (wire (pts (xy 111.76 91.44) (xy 115.57 91.44))
  3422. (stroke (width 0) (type default))
  3423. (uuid 105d2701-5e63-4eb3-8241-5608caa465c8)
  3424. )
  3425. (wire (pts (xy 96.52 27.94) (xy 99.06 27.94))
  3426. (stroke (width 0) (type default))
  3427. (uuid 114a2768-e1fd-4d16-9d75-a2b2dcf3668d)
  3428. )
  3429. (wire (pts (xy 102.235 57.785) (xy 102.235 52.705))
  3430. (stroke (width 0) (type default))
  3431. (uuid 11c7c8d4-4c4b-4330-bb59-1eec2e98b255)
  3432. )
  3433. (wire (pts (xy 274.32 43.18) (xy 270.51 43.18))
  3434. (stroke (width 0) (type default))
  3435. (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a)
  3436. )
  3437. (wire (pts (xy 226.06 67.31) (xy 227.33 67.31))
  3438. (stroke (width 0) (type default))
  3439. (uuid 14064e1b-d8db-4b96-9159-f0491d3e5f02)
  3440. )
  3441. (wire (pts (xy 185.547 81.534) (xy 181.737 81.534))
  3442. (stroke (width 0) (type default))
  3443. (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65)
  3444. )
  3445. (wire (pts (xy 198.247 73.914) (xy 199.771 73.914))
  3446. (stroke (width 0) (type default))
  3447. (uuid 150dd2e7-c979-4e32-9207-979fc7b3cee0)
  3448. )
  3449. (wire (pts (xy 181.737 81.534) (xy 181.737 78.994))
  3450. (stroke (width 0) (type default))
  3451. (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea)
  3452. )
  3453. (wire (pts (xy 274.955 111.125) (xy 274.955 108.585))
  3454. (stroke (width 0) (type default))
  3455. (uuid 1732b93f-cd0e-4ca4-a905-bb406354ca33)
  3456. )
  3457. (wire (pts (xy 274.955 126.365) (xy 274.955 121.285))
  3458. (stroke (width 0) (type default))
  3459. (uuid 17cf1c88-8d51-4538-aa76-e35ac22d0ed0)
  3460. )
  3461. (wire (pts (xy 218.44 46.99) (xy 227.33 46.99))
  3462. (stroke (width 0) (type default))
  3463. (uuid 17ed3508-fa2e-4593-a799-bfd39a6cc14d)
  3464. )
  3465. (wire (pts (xy 49.53 184.15) (xy 50.8 184.15))
  3466. (stroke (width 0) (type default))
  3467. (uuid 18372a25-ed01-47c8-be92-161857f6e1d7)
  3468. )
  3469. (wire (pts (xy 270.51 83.82) (xy 274.32 83.82))
  3470. (stroke (width 0) (type default))
  3471. (uuid 1876c30c-72b2-4a8d-9f32-bf8b213530b4)
  3472. )
  3473. (wire (pts (xy 24.13 190.5) (xy 26.67 190.5))
  3474. (stroke (width 0) (type default))
  3475. (uuid 197737a3-f629-4847-a3bd-29bbed8e8513)
  3476. )
  3477. (wire (pts (xy 128.27 81.28) (xy 130.81 81.28))
  3478. (stroke (width 0) (type default))
  3479. (uuid 19cc7ff3-acfa-463b-8607-b95c58622a5f)
  3480. )
  3481. (wire (pts (xy 71.12 114.3) (xy 81.28 114.3))
  3482. (stroke (width 0) (type default))
  3483. (uuid 1bf7d0f9-0dcf-4d7c-b58c-318e3dc42bc9)
  3484. )
  3485. (wire (pts (xy 242.57 97.79) (xy 248.92 97.79))
  3486. (stroke (width 0) (type default))
  3487. (uuid 1c052668-6749-425a-9a77-35f046c8aa39)
  3488. )
  3489. (wire (pts (xy 129.54 170.18) (xy 129.54 172.72))
  3490. (stroke (width 0) (type default))
  3491. (uuid 1c24771c-19d1-4407-9c2f-255b7ddf0492)
  3492. )
  3493. (wire (pts (xy 30.48 157.48) (xy 31.75 157.48))
  3494. (stroke (width 0) (type default))
  3495. (uuid 1de61170-5337-44c5-ba28-bd477db4bff1)
  3496. )
  3497. (wire (pts (xy 49.53 191.77) (xy 50.8 191.77))
  3498. (stroke (width 0) (type default))
  3499. (uuid 1e6339d5-f0ee-4a4b-9faf-4b2631e397d5)
  3500. )
  3501. (wire (pts (xy 111.76 60.96) (xy 111.76 63.5))
  3502. (stroke (width 0) (type default))
  3503. (uuid 1f848839-e564-450f-a963-ebf13ca910f5)
  3504. )
  3505. (wire (pts (xy 30.48 111.76) (xy 31.75 111.76))
  3506. (stroke (width 0) (type default))
  3507. (uuid 2102c637-9f11-48f1-aae6-b4139dc22be2)
  3508. )
  3509. (wire (pts (xy 54.61 134.62) (xy 56.515 134.62))
  3510. (stroke (width 0) (type default))
  3511. (uuid 21768691-1e43-45ea-b868-82651819b936)
  3512. )
  3513. (wire (pts (xy 54.61 132.08) (xy 56.515 132.08))
  3514. (stroke (width 0) (type default))
  3515. (uuid 22349afa-99b6-4268-ade5-32f12de232db)
  3516. )
  3517. (wire (pts (xy 144.78 170.18) (xy 147.32 170.18))
  3518. (stroke (width 0) (type default))
  3519. (uuid 22b49795-d138-447a-8a67-2f87ad0d4bd4)
  3520. )
  3521. (wire (pts (xy 38.1 57.785) (xy 39.37 57.785))
  3522. (stroke (width 0) (type default))
  3523. (uuid 22c1623e-dd8d-428b-b9ae-ebb3a532b396)
  3524. )
  3525. (wire (pts (xy 128.27 99.06) (xy 130.81 99.06))
  3526. (stroke (width 0) (type default))
  3527. (uuid 2447f5f1-b3d5-43aa-959f-88436ebed06d)
  3528. )
  3529. (wire (pts (xy 99.06 25.4) (xy 99.06 27.94))
  3530. (stroke (width 0) (type default))
  3531. (uuid 2572e34f-bfb2-4fa7-969f-a04e338d6e2f)
  3532. )
  3533. (wire (pts (xy 49.911 34.925) (xy 49.911 37.465))
  3534. (stroke (width 0) (type default))
  3535. (uuid 26c1e38c-48b3-4f27-a8c7-57ec4c75372b)
  3536. )
  3537. (wire (pts (xy 111.76 106.68) (xy 115.57 106.68))
  3538. (stroke (width 0) (type default))
  3539. (uuid 26f6b829-e63c-496a-b791-5dd68c7ead9d)
  3540. )
  3541. (wire (pts (xy 30.48 127) (xy 31.75 127))
  3542. (stroke (width 0) (type default))
  3543. (uuid 270509b6-acc0-472f-b579-2376225aa8f5)
  3544. )
  3545. (wire (pts (xy 30.48 114.3) (xy 31.75 114.3))
  3546. (stroke (width 0) (type default))
  3547. (uuid 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
  3548. )
  3549. (wire (pts (xy 274.32 38.1) (xy 274.32 43.18))
  3550. (stroke (width 0) (type default))
  3551. (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f)
  3552. )
  3553. (wire (pts (xy 274.32 25.4) (xy 274.32 27.94))
  3554. (stroke (width 0) (type default))
  3555. (uuid 29126f72-63f7-4275-8b12-6b96a71c6f17)
  3556. )
  3557. (wire (pts (xy 254 53.34) (xy 265.43 53.34))
  3558. (stroke (width 0) (type default))
  3559. (uuid 291935ec-f8ff-41f0-8717-e68b8af7b8c1)
  3560. )
  3561. (wire (pts (xy 114.3 162.56) (xy 114.3 166.37))
  3562. (stroke (width 0) (type default))
  3563. (uuid 291baaf6-406d-492c-8388-51e68532cfbf)
  3564. )
  3565. (wire (pts (xy 111.76 88.9) (xy 111.76 91.44))
  3566. (stroke (width 0) (type default))
  3567. (uuid 2b5319a3-2b4f-4c5e-b61e-a7934593e487)
  3568. )
  3569. (wire (pts (xy 128.27 86.36) (xy 130.81 86.36))
  3570. (stroke (width 0) (type default))
  3571. (uuid 2b8c6538-2116-4527-a026-b4925dd2ee57)
  3572. )
  3573. (wire (pts (xy 38.735 26.035) (xy 38.735 27.305))
  3574. (stroke (width 0) (type default))
  3575. (uuid 2ba25c40-ea42-478e-9150-1d94fa1c8ae9)
  3576. )
  3577. (wire (pts (xy 274.32 27.94) (xy 274.32 33.02))
  3578. (stroke (width 0) (type default))
  3579. (uuid 2ea8fa6f-efc3-40fe-bcf9-05bfa46ead4f)
  3580. )
  3581. (wire (pts (xy 271.145 111.125) (xy 274.955 111.125))
  3582. (stroke (width 0) (type default))
  3583. (uuid 2f0570b6-86da-47a8-9e56-ce60c431c534)
  3584. )
  3585. (wire (pts (xy 185.547 89.154) (xy 181.737 89.154))
  3586. (stroke (width 0) (type default))
  3587. (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4)
  3588. )
  3589. (wire (pts (xy 84.455 57.785) (xy 102.235 57.785))
  3590. (stroke (width 0) (type default))
  3591. (uuid 300aa512-2f66-4c26-a530-50c091b3a099)
  3592. )
  3593. (wire (pts (xy 270.51 88.9) (xy 274.32 88.9))
  3594. (stroke (width 0) (type default))
  3595. (uuid 301fdc43-2f42-4922-967f-6b035d252a52)
  3596. )
  3597. (wire (pts (xy 78.74 106.68) (xy 81.28 106.68))
  3598. (stroke (width 0) (type default))
  3599. (uuid 3036ba32-a371-4e05-a934-abb44d31f530)
  3600. )
  3601. (wire (pts (xy 111.76 73.66) (xy 115.57 73.66))
  3602. (stroke (width 0) (type default))
  3603. (uuid 3102a495-c747-4ebd-910d-ccca3f28177b)
  3604. )
  3605. (wire (pts (xy 181.737 91.694) (xy 181.737 89.154))
  3606. (stroke (width 0) (type default))
  3607. (uuid 319639ae-c2c5-486d-93b1-d03bb1b64252)
  3608. )
  3609. (wire (pts (xy 198.247 71.374) (xy 218.44 71.374))
  3610. (stroke (width 0) (type default))
  3611. (uuid 31a7b912-a671-4a6a-95aa-284bcb85acbd)
  3612. )
  3613. (wire (pts (xy 111.76 86.36) (xy 111.76 88.9))
  3614. (stroke (width 0) (type default))
  3615. (uuid 32cfb255-fdbf-4c67-9adf-72dba031ac4d)
  3616. )
  3617. (wire (pts (xy 49.53 181.61) (xy 50.8 181.61))
  3618. (stroke (width 0) (type default))
  3619. (uuid 341ec5b3-c64a-4b70-8a9f-cdadc79f8893)
  3620. )
  3621. (wire (pts (xy 254 43.18) (xy 265.43 43.18))
  3622. (stroke (width 0) (type default))
  3623. (uuid 35fb7c56-dc85-43f7-b954-81b8040a8500)
  3624. )
  3625. (wire (pts (xy 130.81 167.64) (xy 132.08 167.64))
  3626. (stroke (width 0) (type default))
  3627. (uuid 3656bb3f-f8a4-4f3a-8e9a-ec6203c87a56)
  3628. )
  3629. (wire (pts (xy 271.145 136.525) (xy 274.955 136.525))
  3630. (stroke (width 0) (type default))
  3631. (uuid 39137861-8aaf-42fd-84b3-aeb48833f64f)
  3632. )
  3633. (wire (pts (xy 111.76 101.6) (xy 115.57 101.6))
  3634. (stroke (width 0) (type default))
  3635. (uuid 395f28d9-5d9e-4a88-b7ad-8a1df4610090)
  3636. )
  3637. (wire (pts (xy 61.595 52.705) (xy 71.755 52.705))
  3638. (stroke (width 0) (type default))
  3639. (uuid 39845449-7a31-4262-86b1-e7af14a6659f)
  3640. )
  3641. (wire (pts (xy 181.737 68.834) (xy 185.547 68.834))
  3642. (stroke (width 0) (type default))
  3643. (uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a)
  3644. )
  3645. (wire (pts (xy 185.547 91.694) (xy 181.737 91.694))
  3646. (stroke (width 0) (type default))
  3647. (uuid 3a70978e-dcc2-4620-a99c-514362812927)
  3648. )
  3649. (wire (pts (xy 54.61 83.82) (xy 66.04 83.82))
  3650. (stroke (width 0) (type default))
  3651. (uuid 3b65c51e-c243-447e-bee9-832d94c1630e)
  3652. )
  3653. (wire (pts (xy 144.78 162.56) (xy 144.78 165.1))
  3654. (stroke (width 0) (type default))
  3655. (uuid 3c3e06bd-c8bb-4ec8-84e0-f7f9437909b3)
  3656. )
  3657. (wire (pts (xy 185.547 84.074) (xy 181.737 84.074))
  3658. (stroke (width 0) (type default))
  3659. (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653)
  3660. )
  3661. (wire (pts (xy 49.53 179.07) (xy 50.8 179.07))
  3662. (stroke (width 0) (type default))
  3663. (uuid 3db24eb3-cf1d-4362-9d9c-83f79ae00e7a)
  3664. )
  3665. (wire (pts (xy 19.05 55.245) (xy 25.4 55.245))
  3666. (stroke (width 0) (type default))
  3667. (uuid 3ec95abd-e81e-441d-9d27-b430f8003396)
  3668. )
  3669. (wire (pts (xy 129.54 165.1) (xy 132.08 165.1))
  3670. (stroke (width 0) (type default))
  3671. (uuid 3f1ae028-5eb5-4638-9698-eea3446a90d1)
  3672. )
  3673. (wire (pts (xy 111.76 58.42) (xy 115.57 58.42))
  3674. (stroke (width 0) (type default))
  3675. (uuid 3f329a8f-e359-4d98-956d-6a077a40e514)
  3676. )
  3677. (wire (pts (xy 198.247 86.614) (xy 199.517 86.614))
  3678. (stroke (width 0) (type default))
  3679. (uuid 3f7513cb-6fe5-481f-8bc3-13eed2580912)
  3680. )
  3681. (wire (pts (xy 21.59 96.52) (xy 31.75 96.52))
  3682. (stroke (width 0) (type default))
  3683. (uuid 4160bbf7-ffff-4c5c-a647-5ee58ddecf06)
  3684. )
  3685. (wire (pts (xy 122.555 111.76) (xy 122.555 114.3))
  3686. (stroke (width 0) (type default))
  3687. (uuid 41c18011-40db-4384-9ba4-c0158d0d9d6a)
  3688. )
  3689. (wire (pts (xy 198.247 101.854) (xy 199.517 101.854))
  3690. (stroke (width 0) (type default))
  3691. (uuid 42157002-33fe-445e-a4bd-20bb05110690)
  3692. )
  3693. (wire (pts (xy 158.75 185.42) (xy 161.29 185.42))
  3694. (stroke (width 0) (type default))
  3695. (uuid 42b61d5b-39d6-462b-b2cc-57656078085f)
  3696. )
  3697. (wire (pts (xy 111.76 19.685) (xy 109.22 19.685))
  3698. (stroke (width 0) (type default))
  3699. (uuid 42bd0f96-a831-406e-abb7-03ed1bbd785f)
  3700. )
  3701. (wire (pts (xy 99.06 27.94) (xy 99.06 31.75))
  3702. (stroke (width 0) (type default))
  3703. (uuid 460a89a1-c9e5-44e6-806f-b581d43ece37)
  3704. )
  3705. (wire (pts (xy 274.32 33.02) (xy 274.32 38.1))
  3706. (stroke (width 0) (type default))
  3707. (uuid 4641c87c-bffa-41fe-ae77-be3a97a6f797)
  3708. )
  3709. (wire (pts (xy 84.455 55.245) (xy 97.155 55.245))
  3710. (stroke (width 0) (type default))
  3711. (uuid 46491a9d-8b3d-4c74-b09a-70c876f162e5)
  3712. )
  3713. (wire (pts (xy 242.697 148.59) (xy 249.047 148.59))
  3714. (stroke (width 0) (type default))
  3715. (uuid 47120e1b-031d-47ff-8aca-63e699601463)
  3716. )
  3717. (wire (pts (xy 156.21 165.1) (xy 158.75 165.1))
  3718. (stroke (width 0) (type default))
  3719. (uuid 4888c330-f8fa-492d-aa6f-da06d2350187)
  3720. )
  3721. (wire (pts (xy 156.21 162.56) (xy 156.21 165.1))
  3722. (stroke (width 0) (type default))
  3723. (uuid 48c34b19-0b1a-4994-ab08-825d4c2b7c6b)
  3724. )
  3725. (wire (pts (xy 111.76 73.66) (xy 111.76 76.2))
  3726. (stroke (width 0) (type default))
  3727. (uuid 4905470f-e5d5-44e9-bdea-3395fa3a3921)
  3728. )
  3729. (wire (pts (xy 254.635 126.365) (xy 266.065 126.365))
  3730. (stroke (width 0) (type default))
  3731. (uuid 49488c82-6277-4d05-a051-6a9df142c373)
  3732. )
  3733. (wire (pts (xy 254 58.42) (xy 265.43 58.42))
  3734. (stroke (width 0) (type default))
  3735. (uuid 49a65079-57a9-46fc-8711-1d7f2cab8dbf)
  3736. )
  3737. (wire (pts (xy 30.48 160.02) (xy 31.75 160.02))
  3738. (stroke (width 0) (type default))
  3739. (uuid 49b5f540-e128-4e08-bb09-f321f8e64056)
  3740. )
  3741. (wire (pts (xy 128.27 83.82) (xy 130.81 83.82))
  3742. (stroke (width 0) (type default))
  3743. (uuid 4a27fa9a-ed71-46a3-86e4-ceb57078a6b5)
  3744. )
  3745. (wire (pts (xy 274.32 88.9) (xy 274.32 83.82))
  3746. (stroke (width 0) (type default))
  3747. (uuid 4c3375fc-4697-4e3a-8fd5-b221cdb17a69)
  3748. )
  3749. (wire (pts (xy 274.32 38.1) (xy 270.51 38.1))
  3750. (stroke (width 0) (type default))
  3751. (uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
  3752. )
  3753. (wire (pts (xy 111.76 55.88) (xy 111.76 58.42))
  3754. (stroke (width 0) (type default))
  3755. (uuid 4cdd7089-c144-4631-a49d-c738e3706227)
  3756. )
  3757. (wire (pts (xy 274.32 58.42) (xy 274.32 53.34))
  3758. (stroke (width 0) (type default))
  3759. (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5)
  3760. )
  3761. (wire (pts (xy 78.74 104.14) (xy 81.28 104.14))
  3762. (stroke (width 0) (type default))
  3763. (uuid 4d34d149-b600-40c6-8b33-a7f356b7cc78)
  3764. )
  3765. (wire (pts (xy 198.247 91.694) (xy 199.517 91.694))
  3766. (stroke (width 0) (type default))
  3767. (uuid 4e563ce6-c7b9-4224-ace7-42cd7b117034)
  3768. )
  3769. (wire (pts (xy 254 38.1) (xy 265.43 38.1))
  3770. (stroke (width 0) (type default))
  3771. (uuid 4e677390-a246-4ca0-954c-746e0870f88f)
  3772. )
  3773. (wire (pts (xy 144.78 135.255) (xy 144.78 136.525))
  3774. (stroke (width 0) (type default))
  3775. (uuid 4fa74df1-ebd8-46ed-bf5b-d6c582baafde)
  3776. )
  3777. (wire (pts (xy 49.911 26.035) (xy 49.911 27.305))
  3778. (stroke (width 0) (type default))
  3779. (uuid 524b8586-d4c4-49d6-bf11-f1ed191ca383)
  3780. )
  3781. (wire (pts (xy 177.927 101.854) (xy 177.927 109.474))
  3782. (stroke (width 0) (type default))
  3783. (uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
  3784. )
  3785. (wire (pts (xy 139.7 26.67) (xy 139.7 27.94))
  3786. (stroke (width 0) (type default))
  3787. (uuid 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0)
  3788. )
  3789. (wire (pts (xy 270.51 68.58) (xy 274.32 68.58))
  3790. (stroke (width 0) (type default))
  3791. (uuid 54ed3ee1-891b-418e-ab9c-6a18747d7388)
  3792. )
  3793. (wire (pts (xy 31.75 152.4) (xy 21.59 152.4))
  3794. (stroke (width 0) (type default))
  3795. (uuid 5576cd03-3bad-40c5-9316-1d286895d52a)
  3796. )
  3797. (wire (pts (xy 144.78 165.1) (xy 147.32 165.1))
  3798. (stroke (width 0) (type default))
  3799. (uuid 559e1426-1fb6-47d1-a873-ab4aaa368ae6)
  3800. )
  3801. (wire (pts (xy 111.76 17.145) (xy 109.22 17.145))
  3802. (stroke (width 0) (type default))
  3803. (uuid 57543893-39bf-4d83-b4e0-8d020b4a6d48)
  3804. )
  3805. (wire (pts (xy 274.32 93.98) (xy 274.32 88.9))
  3806. (stroke (width 0) (type default))
  3807. (uuid 576510e4-d7fc-4c37-b6c9-7fef8d7ff1a1)
  3808. )
  3809. (wire (pts (xy 61.595 26.035) (xy 61.595 27.305))
  3810. (stroke (width 0) (type default))
  3811. (uuid 57bd445a-35d5-43d1-a464-f7c4104f070b)
  3812. )
  3813. (wire (pts (xy 274.955 116.205) (xy 274.955 111.125))
  3814. (stroke (width 0) (type default))
  3815. (uuid 58126faf-01a4-4f91-8e8c-ca9e47b48048)
  3816. )
  3817. (wire (pts (xy 254 83.82) (xy 265.43 83.82))
  3818. (stroke (width 0) (type default))
  3819. (uuid 58cc7831-f944-4d33-8c61-2fd5bebc61e0)
  3820. )
  3821. (wire (pts (xy 111.76 96.52) (xy 111.76 101.6))
  3822. (stroke (width 0) (type default))
  3823. (uuid 5a498b94-152d-4c3c-b168-67379cce2165)
  3824. )
  3825. (wire (pts (xy 78.486 81.28) (xy 81.28 81.28))
  3826. (stroke (width 0) (type default))
  3827. (uuid 5b301c5c-d5cc-49df-8b96-dc3cc4998671)
  3828. )
  3829. (wire (pts (xy 167.64 20.32) (xy 167.64 21.59))
  3830. (stroke (width 0) (type default))
  3831. (uuid 5b70b09b-6762-4725-9d48-805300c0bdc8)
  3832. )
  3833. (wire (pts (xy 21.59 93.98) (xy 31.75 93.98))
  3834. (stroke (width 0) (type default))
  3835. (uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9)
  3836. )
  3837. (wire (pts (xy 198.247 81.534) (xy 199.517 81.534))
  3838. (stroke (width 0) (type default))
  3839. (uuid 5c72c984-d4a8-4f48-9a7a-2aa9b6284609)
  3840. )
  3841. (wire (pts (xy 139.7 145.415) (xy 144.78 145.415))
  3842. (stroke (width 0) (type default))
  3843. (uuid 5e34b255-874b-4b5f-a1f3-79e323d9278a)
  3844. )
  3845. (wire (pts (xy 111.76 76.2) (xy 111.76 78.74))
  3846. (stroke (width 0) (type default))
  3847. (uuid 5f2e9c21-b36e-4432-b901-39c98c054570)
  3848. )
  3849. (wire (pts (xy 128.27 101.6) (xy 130.81 101.6))
  3850. (stroke (width 0) (type default))
  3851. (uuid 5fe9a8c1-579e-4b33-a28f-2287de31bc8f)
  3852. )
  3853. (wire (pts (xy 204.47 128.27) (xy 207.01 128.27))
  3854. (stroke (width 0) (type default))
  3855. (uuid 60a6b889-b680-4b8b-8f73-0633fe94c5ba)
  3856. )
  3857. (wire (pts (xy 111.76 86.36) (xy 115.57 86.36))
  3858. (stroke (width 0) (type default))
  3859. (uuid 6123de74-e7fc-4738-8ff4-abd5233ea3f0)
  3860. )
  3861. (wire (pts (xy 198.247 84.074) (xy 199.517 84.074))
  3862. (stroke (width 0) (type default))
  3863. (uuid 61447001-96f3-4ac4-a932-91f733b21544)
  3864. )
  3865. (wire (pts (xy 21.59 83.82) (xy 31.75 83.82))
  3866. (stroke (width 0) (type default))
  3867. (uuid 6150c02b-beb5-4af1-951e-3666a285a6ea)
  3868. )
  3869. (wire (pts (xy 198.247 104.394) (xy 199.517 104.394))
  3870. (stroke (width 0) (type default))
  3871. (uuid 620d0d18-5248-4410-bb06-dea084235707)
  3872. )
  3873. (wire (pts (xy 181.737 73.914) (xy 185.547 73.914))
  3874. (stroke (width 0) (type default))
  3875. (uuid 62e8c4d4-266c-4e53-8981-1028251d724c)
  3876. )
  3877. (wire (pts (xy 274.32 48.26) (xy 270.51 48.26))
  3878. (stroke (width 0) (type default))
  3879. (uuid 631c7be5-8dc2-4df4-ab73-737bb928e763)
  3880. )
  3881. (wire (pts (xy 166.497 104.394) (xy 166.497 106.934))
  3882. (stroke (width 0) (type default))
  3883. (uuid 633292d3-80c5-4986-be82-ce926e9f09f4)
  3884. )
  3885. (wire (pts (xy 181.737 101.854) (xy 181.737 99.314))
  3886. (stroke (width 0) (type default))
  3887. (uuid 63489ebf-0f52-43a6-a0ab-158b1a7d4988)
  3888. )
  3889. (wire (pts (xy 254 27.94) (xy 265.43 27.94))
  3890. (stroke (width 0) (type default))
  3891. (uuid 637e9edf-ffed-49a2-8408-fa110c9a4c79)
  3892. )
  3893. (wire (pts (xy 226.06 77.47) (xy 227.33 77.47))
  3894. (stroke (width 0) (type default))
  3895. (uuid 643a0e14-1c81-4883-9037-039c243acc5c)
  3896. )
  3897. (wire (pts (xy 111.76 50.8) (xy 115.57 50.8))
  3898. (stroke (width 0) (type default))
  3899. (uuid 649fe687-776d-40a8-8956-cf56be8678e1)
  3900. )
  3901. (wire (pts (xy 56.515 55.245) (xy 71.755 55.245))
  3902. (stroke (width 0) (type default))
  3903. (uuid 64d1d0fe-4fd6-4a55-8314-56a651e1ccab)
  3904. )
  3905. (wire (pts (xy 198.247 76.454) (xy 199.517 76.454))
  3906. (stroke (width 0) (type default))
  3907. (uuid 663516d2-919a-4a92-bdfb-fab0b7a33e92)
  3908. )
  3909. (wire (pts (xy 198.247 99.314) (xy 199.517 99.314))
  3910. (stroke (width 0) (type default))
  3911. (uuid 67a1fd0f-c6b9-418a-9ac2-ba2714d5c115)
  3912. )
  3913. (wire (pts (xy 128.27 66.04) (xy 130.81 66.04))
  3914. (stroke (width 0) (type default))
  3915. (uuid 6807b074-032b-4c51-b22d-e941de673402)
  3916. )
  3917. (wire (pts (xy 24.13 175.26) (xy 26.67 175.26))
  3918. (stroke (width 0) (type default))
  3919. (uuid 68191023-0d18-4f99-a293-00db5ad9e7a0)
  3920. )
  3921. (wire (pts (xy 111.76 91.44) (xy 111.76 93.98))
  3922. (stroke (width 0) (type default))
  3923. (uuid 6823c850-9a49-4624-92ab-0fa22f6fef1e)
  3924. )
  3925. (wire (pts (xy 128.27 58.42) (xy 130.81 58.42))
  3926. (stroke (width 0) (type default))
  3927. (uuid 692165ae-3334-4d40-a34f-38277ee462be)
  3928. )
  3929. (wire (pts (xy 204.343 148.59) (xy 206.502 148.59))
  3930. (stroke (width 0) (type default))
  3931. (uuid 69de70e4-5abc-4931-9ecf-8118df1922fd)
  3932. )
  3933. (wire (pts (xy 54.61 124.46) (xy 57.15 124.46))
  3934. (stroke (width 0) (type default))
  3935. (uuid 6a70becb-201a-40d0-89c1-812e1e681e52)
  3936. )
  3937. (wire (pts (xy 254 68.58) (xy 265.43 68.58))
  3938. (stroke (width 0) (type default))
  3939. (uuid 6ae963fb-e34f-4e11-9adf-78839a5b2ef1)
  3940. )
  3941. (wire (pts (xy 181.737 73.914) (xy 181.737 76.454))
  3942. (stroke (width 0) (type default))
  3943. (uuid 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8)
  3944. )
  3945. (wire (pts (xy 242.57 118.11) (xy 248.92 118.11))
  3946. (stroke (width 0) (type default))
  3947. (uuid 6bd46644-7209-4d4d-acd8-f4c0d045bc61)
  3948. )
  3949. (wire (pts (xy 274.32 43.18) (xy 274.32 48.26))
  3950. (stroke (width 0) (type default))
  3951. (uuid 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32)
  3952. )
  3953. (wire (pts (xy 49.53 194.31) (xy 50.8 194.31))
  3954. (stroke (width 0) (type default))
  3955. (uuid 6e6b92ab-7f1b-4573-8552-037452a50e96)
  3956. )
  3957. (wire (pts (xy 156.21 170.18) (xy 158.75 170.18))
  3958. (stroke (width 0) (type default))
  3959. (uuid 6f5a9f10-1b2c-4916-b4e5-cb5bd0f851a0)
  3960. )
  3961. (wire (pts (xy 31.75 78.74) (xy 21.59 78.74))
  3962. (stroke (width 0) (type default))
  3963. (uuid 706c1cb9-5d96-4282-9efc-6147f0125147)
  3964. )
  3965. (wire (pts (xy 226.06 57.15) (xy 227.33 57.15))
  3966. (stroke (width 0) (type default))
  3967. (uuid 709b97c7-c0c7-478c-bd89-4135c69c0161)
  3968. )
  3969. (wire (pts (xy 24.13 187.96) (xy 26.67 187.96))
  3970. (stroke (width 0) (type default))
  3971. (uuid 70a2e356-245d-4d32-a1fc-9371f952d347)
  3972. )
  3973. (wire (pts (xy 56.515 52.705) (xy 56.515 55.245))
  3974. (stroke (width 0) (type default))
  3975. (uuid 70cda344-73be-4466-a097-1fd56f3b19e2)
  3976. )
  3977. (wire (pts (xy 128.27 60.96) (xy 130.81 60.96))
  3978. (stroke (width 0) (type default))
  3979. (uuid 71deed4a-3525-41c7-864c-419bd64a18d8)
  3980. )
  3981. (wire (pts (xy 217.17 138.43) (xy 227.33 138.43))
  3982. (stroke (width 0) (type default))
  3983. (uuid 71ee0878-3a21-46c5-9585-084073e61e46)
  3984. )
  3985. (wire (pts (xy 185.547 99.314) (xy 181.737 99.314))
  3986. (stroke (width 0) (type default))
  3987. (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48)
  3988. )
  3989. (wire (pts (xy 54.61 88.9) (xy 66.04 88.9))
  3990. (stroke (width 0) (type default))
  3991. (uuid 722636b6-8ff0-452f-9357-23deb317d921)
  3992. )
  3993. (wire (pts (xy 54.61 111.76) (xy 55.88 111.76))
  3994. (stroke (width 0) (type default))
  3995. (uuid 7273dd21-e834-41d3-b279-d7de727709ca)
  3996. )
  3997. (wire (pts (xy 111.76 78.74) (xy 111.76 81.28))
  3998. (stroke (width 0) (type default))
  3999. (uuid 732adcdb-5400-4b48-b390-9c07efe3787d)
  4000. )
  4001. (wire (pts (xy 111.76 68.58) (xy 111.76 71.12))
  4002. (stroke (width 0) (type default))
  4003. (uuid 73c09a8e-334a-415d-8fcf-2f80e5530386)
  4004. )
  4005. (wire (pts (xy 254 48.26) (xy 265.43 48.26))
  4006. (stroke (width 0) (type default))
  4007. (uuid 73ee7e03-97a8-4121-b568-c25f3934a935)
  4008. )
  4009. (wire (pts (xy 185.547 78.994) (xy 181.737 78.994))
  4010. (stroke (width 0) (type default))
  4011. (uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
  4012. )
  4013. (wire (pts (xy 270.51 58.42) (xy 274.32 58.42))
  4014. (stroke (width 0) (type default))
  4015. (uuid 751d823e-1d7b-4501-9658-d06d459b0e16)
  4016. )
  4017. (wire (pts (xy 111.76 58.42) (xy 111.76 60.96))
  4018. (stroke (width 0) (type default))
  4019. (uuid 7555990b-6425-4e86-89df-79d641461153)
  4020. )
  4021. (wire (pts (xy 181.737 86.614) (xy 181.737 84.074))
  4022. (stroke (width 0) (type default))
  4023. (uuid 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
  4024. )
  4025. (wire (pts (xy 166.497 99.314) (xy 181.737 99.314))
  4026. (stroke (width 0) (type default))
  4027. (uuid 7744b6ee-910d-401d-b730-65c35d3d8092)
  4028. )
  4029. (wire (pts (xy 111.76 45.72) (xy 111.76 48.26))
  4030. (stroke (width 0) (type default))
  4031. (uuid 79418ab7-d09c-4c13-9426-59e88a9a6e18)
  4032. )
  4033. (wire (pts (xy 111.76 68.58) (xy 115.57 68.58))
  4034. (stroke (width 0) (type default))
  4035. (uuid 7ad6872e-544b-496c-b63f-ef820d73efe1)
  4036. )
  4037. (wire (pts (xy 78.74 109.22) (xy 81.28 109.22))
  4038. (stroke (width 0) (type default))
  4039. (uuid 7b70c41a-7204-4f10-80ea-4ef9a4ee9e3f)
  4040. )
  4041. (wire (pts (xy 181.737 99.314) (xy 181.737 96.774))
  4042. (stroke (width 0) (type default))
  4043. (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e)
  4044. )
  4045. (wire (pts (xy 181.737 104.394) (xy 181.737 101.854))
  4046. (stroke (width 0) (type default))
  4047. (uuid 7db990e4-92e1-4f99-b4d2-435bbec1ba83)
  4048. )
  4049. (wire (pts (xy 128.27 76.2) (xy 130.81 76.2))
  4050. (stroke (width 0) (type default))
  4051. (uuid 7e4acdae-bb82-4c28-bdbc-521d32bd98f8)
  4052. )
  4053. (wire (pts (xy 271.145 131.445) (xy 274.955 131.445))
  4054. (stroke (width 0) (type default))
  4055. (uuid 7e57f5d9-3fed-4583-bf87-2c0c55aeae07)
  4056. )
  4057. (wire (pts (xy 118.11 166.37) (xy 118.11 168.91))
  4058. (stroke (width 0) (type default))
  4059. (uuid 80a0ec3e-8559-4e62-8a7d-014f201a8630)
  4060. )
  4061. (wire (pts (xy 84.455 50.165) (xy 86.995 50.165))
  4062. (stroke (width 0) (type default))
  4063. (uuid 80f8c1b4-10dd-40fe-b7f7-67988bc3ad81)
  4064. )
  4065. (wire (pts (xy 254.635 136.525) (xy 266.065 136.525))
  4066. (stroke (width 0) (type default))
  4067. (uuid 815684dc-b831-445f-8b9e-8def10b32a28)
  4068. )
  4069. (wire (pts (xy 111.76 66.04) (xy 115.57 66.04))
  4070. (stroke (width 0) (type default))
  4071. (uuid 81942b2b-e9f9-4911-a8e1-de17115edd34)
  4072. )
  4073. (wire (pts (xy 254 88.9) (xy 265.43 88.9))
  4074. (stroke (width 0) (type default))
  4075. (uuid 82f56090-156d-4372-9dfe-19876186902b)
  4076. )
  4077. (wire (pts (xy 226.06 36.83) (xy 227.33 36.83))
  4078. (stroke (width 0) (type default))
  4079. (uuid 830f705c-6254-4bfd-97c9-b4a49db1c87a)
  4080. )
  4081. (wire (pts (xy 111.76 60.96) (xy 115.57 60.96))
  4082. (stroke (width 0) (type default))
  4083. (uuid 83a028cb-daf6-43c6-bb0d-a9bb6cd2a863)
  4084. )
  4085. (wire (pts (xy 189.23 20.32) (xy 189.23 20.955))
  4086. (stroke (width 0) (type default))
  4087. (uuid 843b53af-dd34-4db8-aa6b-5035b25affc7)
  4088. )
  4089. (wire (pts (xy 144.78 149.225) (xy 144.78 145.415))
  4090. (stroke (width 0) (type default))
  4091. (uuid 84544935-1faf-4126-88f6-e96cd0681253)
  4092. )
  4093. (wire (pts (xy 198.247 94.234) (xy 199.517 94.234))
  4094. (stroke (width 0) (type default))
  4095. (uuid 84573600-cda0-4425-92c4-d7541d59592f)
  4096. )
  4097. (wire (pts (xy 111.76 81.28) (xy 115.57 81.28))
  4098. (stroke (width 0) (type default))
  4099. (uuid 84eb08f1-0a1f-4d6f-8c5c-d15a819ccdd5)
  4100. )
  4101. (wire (pts (xy 38.1 55.245) (xy 39.37 55.245))
  4102. (stroke (width 0) (type default))
  4103. (uuid 85ccc615-869a-4036-82a2-a7ac8bd5531a)
  4104. )
  4105. (wire (pts (xy 100.33 22.225) (xy 100.33 21.59))
  4106. (stroke (width 0) (type default))
  4107. (uuid 8667fe4c-1fb1-4bc9-87dc-4fdb94148b67)
  4108. )
  4109. (wire (pts (xy 49.53 186.69) (xy 50.8 186.69))
  4110. (stroke (width 0) (type default))
  4111. (uuid 86bc49f4-68c7-472b-a547-30f1290af584)
  4112. )
  4113. (wire (pts (xy 139.7 20.32) (xy 139.7 21.59))
  4114. (stroke (width 0) (type default))
  4115. (uuid 8765371a-21c2-4fe3-a3af-88f5eb1f02a0)
  4116. )
  4117. (wire (pts (xy 254 63.5) (xy 265.43 63.5))
  4118. (stroke (width 0) (type default))
  4119. (uuid 87ba184f-bff5-4989-8217-6af375cc3dd8)
  4120. )
  4121. (wire (pts (xy 84.455 47.625) (xy 86.995 47.625))
  4122. (stroke (width 0) (type default))
  4123. (uuid 883105b0-f6a6-466b-ba58-a2fcc1f18e4b)
  4124. )
  4125. (wire (pts (xy 54.61 86.36) (xy 66.04 86.36))
  4126. (stroke (width 0) (type default))
  4127. (uuid 88deea08-baa5-4041-beb7-01c299cf00e6)
  4128. )
  4129. (wire (pts (xy 146.05 167.64) (xy 147.32 167.64))
  4130. (stroke (width 0) (type default))
  4131. (uuid 8a31a6e8-de50-46d8-9f88-57e4d3d98a89)
  4132. )
  4133. (bus (pts (xy 49.53 173.99) (xy 64.77 173.99))
  4134. (stroke (width 0) (type default))
  4135. (uuid 8a5d3cc0-5e58-4772-b8ed-616d461ac222)
  4136. )
  4137. (wire (pts (xy 104.14 121.92) (xy 112.395 121.92))
  4138. (stroke (width 0) (type default))
  4139. (uuid 8a8ab9d8-b8d7-4bb4-a217-42d273c00eb7)
  4140. )
  4141. (wire (pts (xy 274.32 63.5) (xy 274.32 58.42))
  4142. (stroke (width 0) (type default))
  4143. (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698)
  4144. )
  4145. (wire (pts (xy 107.95 24.765) (xy 107.95 22.225))
  4146. (stroke (width 0) (type default))
  4147. (uuid 8cb5a828-8cef-4784-b78d-175b49646952)
  4148. )
  4149. (wire (pts (xy 221.742 148.59) (xy 227.457 148.59))
  4150. (stroke (width 0) (type default))
  4151. (uuid 8cb8b9ca-1aaf-441d-93e2-7fa385fb4167)
  4152. )
  4153. (wire (pts (xy 115.57 45.72) (xy 111.76 45.72))
  4154. (stroke (width 0) (type default))
  4155. (uuid 8eaf6a06-4675-4396-80ad-3f0aec3cf44d)
  4156. )
  4157. (wire (pts (xy 111.76 93.98) (xy 111.76 96.52))
  4158. (stroke (width 0) (type default))
  4159. (uuid 8f73769d-d6ee-4481-af51-f24a2b202099)
  4160. )
  4161. (wire (pts (xy 157.48 167.64) (xy 158.75 167.64))
  4162. (stroke (width 0) (type default))
  4163. (uuid 8ff8ff6e-d217-46cc-b48c-9a03cdac2032)
  4164. )
  4165. (wire (pts (xy 24.13 182.88) (xy 26.67 182.88))
  4166. (stroke (width 0) (type default))
  4167. (uuid 90358cb2-bdb6-48de-8f7b-fde76fb4cd36)
  4168. )
  4169. (wire (pts (xy 111.76 50.8) (xy 111.76 53.34))
  4170. (stroke (width 0) (type default))
  4171. (uuid 911422e1-2c1b-4b48-98bf-1cfa390d5967)
  4172. )
  4173. (wire (pts (xy 111.76 83.82) (xy 111.76 86.36))
  4174. (stroke (width 0) (type default))
  4175. (uuid 915cd6f0-d23f-4be4-a6bd-9624a37012b0)
  4176. )
  4177. (wire (pts (xy 71.12 116.84) (xy 81.28 116.84))
  4178. (stroke (width 0) (type default))
  4179. (uuid 9208ea78-8dde-4b3d-91e9-5755ab5efd9a)
  4180. )
  4181. (wire (pts (xy 270.51 63.5) (xy 274.32 63.5))
  4182. (stroke (width 0) (type default))
  4183. (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d)
  4184. )
  4185. (wire (pts (xy 31.75 86.36) (xy 21.59 86.36))
  4186. (stroke (width 0) (type default))
  4187. (uuid 93ac15d8-5f91-4361-acff-be4992b93b51)
  4188. )
  4189. (wire (pts (xy 222.25 128.27) (xy 227.33 128.27))
  4190. (stroke (width 0) (type default))
  4191. (uuid 93fce3d9-6366-4fd6-9cb4-5dea61c5fc4f)
  4192. )
  4193. (wire (pts (xy 24.13 177.8) (xy 26.67 177.8))
  4194. (stroke (width 0) (type default))
  4195. (uuid 94dbbf07-776e-489c-bf10-aad9fddb4b70)
  4196. )
  4197. (wire (pts (xy 49.911 19.685) (xy 49.911 20.955))
  4198. (stroke (width 0) (type default))
  4199. (uuid 95703953-ee1c-4b32-8e56-946e244f81a9)
  4200. )
  4201. (wire (pts (xy 198.247 68.834) (xy 199.517 68.834))
  4202. (stroke (width 0) (type default))
  4203. (uuid 9628da2d-251a-42dd-b606-c284cad02d89)
  4204. )
  4205. (wire (pts (xy 21.59 149.86) (xy 31.75 149.86))
  4206. (stroke (width 0) (type default))
  4207. (uuid 966ee9ec-860e-45bb-af89-30bda72b2032)
  4208. )
  4209. (wire (pts (xy 54.61 81.28) (xy 66.04 81.28))
  4210. (stroke (width 0) (type default))
  4211. (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136)
  4212. )
  4213. (wire (pts (xy 111.76 53.34) (xy 115.57 53.34))
  4214. (stroke (width 0) (type default))
  4215. (uuid 96aa2b8a-4424-4fb9-8558-aee17effda2c)
  4216. )
  4217. (wire (pts (xy 128.27 55.88) (xy 130.81 55.88))
  4218. (stroke (width 0) (type default))
  4219. (uuid 96f51c78-7d29-4ff5-86af-5042cf0411da)
  4220. )
  4221. (bus (pts (xy 49.53 176.53) (xy 64.77 176.53))
  4222. (stroke (width 0) (type default))
  4223. (uuid 9710ec47-7e55-45b4-abed-e335e0b81e28)
  4224. )
  4225. (wire (pts (xy 181.737 96.774) (xy 181.737 94.234))
  4226. (stroke (width 0) (type default))
  4227. (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6)
  4228. )
  4229. (wire (pts (xy 128.27 96.52) (xy 130.81 96.52))
  4230. (stroke (width 0) (type default))
  4231. (uuid 98840b25-f2e8-4b5f-abb6-8c14da6c0152)
  4232. )
  4233. (wire (pts (xy 217.17 158.75) (xy 227.33 158.75))
  4234. (stroke (width 0) (type default))
  4235. (uuid 98c61d33-2a2e-4326-83cd-dc82ab701652)
  4236. )
  4237. (wire (pts (xy 226.06 97.79) (xy 227.33 97.79))
  4238. (stroke (width 0) (type default))
  4239. (uuid 9a7dc00e-0d3f-4329-ac3d-e2f4d39382c9)
  4240. )
  4241. (wire (pts (xy 107.95 22.225) (xy 111.76 22.225))
  4242. (stroke (width 0) (type default))
  4243. (uuid 9bb406d9-c650-4e67-9a26-3195d4de542e)
  4244. )
  4245. (wire (pts (xy 111.76 55.88) (xy 115.57 55.88))
  4246. (stroke (width 0) (type default))
  4247. (uuid 9bd4c0f8-c3c0-4d90-8fbb-f0f029ee301b)
  4248. )
  4249. (wire (pts (xy 21.59 81.28) (xy 31.75 81.28))
  4250. (stroke (width 0) (type default))
  4251. (uuid 9c2999b2-1cf1-4204-9d23-243401b77aa3)
  4252. )
  4253. (wire (pts (xy 274.32 27.94) (xy 270.51 27.94))
  4254. (stroke (width 0) (type default))
  4255. (uuid 9da1ace0-4181-4f12-80f8-16786a9e5c07)
  4256. )
  4257. (wire (pts (xy 242.57 87.63) (xy 248.92 87.63))
  4258. (stroke (width 0) (type default))
  4259. (uuid 9db16341-dac0-4aab-9c62-7d88c111c1ce)
  4260. )
  4261. (wire (pts (xy 271.145 116.205) (xy 274.955 116.205))
  4262. (stroke (width 0) (type default))
  4263. (uuid 9e136ac4-5d28-4814-9ebf-c30c372bc2ec)
  4264. )
  4265. (wire (pts (xy 254.635 111.125) (xy 266.065 111.125))
  4266. (stroke (width 0) (type default))
  4267. (uuid 9e2492fd-e074-42db-8129-fe39460dc1e0)
  4268. )
  4269. (wire (pts (xy 254 93.98) (xy 265.43 93.98))
  4270. (stroke (width 0) (type default))
  4271. (uuid a0c590ab-5fe9-4dd3-91dd-9e8d62b2fc93)
  4272. )
  4273. (wire (pts (xy 29.972 139.7) (xy 31.75 139.7))
  4274. (stroke (width 0) (type default))
  4275. (uuid a1a5f77e-d865-42f1-9d75-c27e95794088)
  4276. )
  4277. (wire (pts (xy 128.27 45.72) (xy 130.81 45.72))
  4278. (stroke (width 0) (type default))
  4279. (uuid a2228b59-b98f-4121-b939-e7645fa2afab)
  4280. )
  4281. (wire (pts (xy 189.23 20.955) (xy 201.295 20.955))
  4282. (stroke (width 0) (type default))
  4283. (uuid a2ca0368-6aba-4f89-a492-96a72e489ade)
  4284. )
  4285. (wire (pts (xy 242.57 158.75) (xy 248.92 158.75))
  4286. (stroke (width 0) (type default))
  4287. (uuid a3843e91-9a69-4929-8cd5-3741feb1f049)
  4288. )
  4289. (wire (pts (xy 79.375 111.76) (xy 81.28 111.76))
  4290. (stroke (width 0) (type default))
  4291. (uuid a4c0b8b4-bcb0-4ae2-9dfe-2530d03fe318)
  4292. )
  4293. (wire (pts (xy 185.547 94.234) (xy 181.737 94.234))
  4294. (stroke (width 0) (type default))
  4295. (uuid a5c8e189-1ddc-4a66-984b-e0fd1529d346)
  4296. )
  4297. (wire (pts (xy 111.76 48.26) (xy 111.76 50.8))
  4298. (stroke (width 0) (type default))
  4299. (uuid a7688449-9952-4584-8101-9ab6d851dcd2)
  4300. )
  4301. (wire (pts (xy 226.06 87.63) (xy 227.33 87.63))
  4302. (stroke (width 0) (type default))
  4303. (uuid a81c142a-a1f2-4334-bd16-60dba1bd4309)
  4304. )
  4305. (wire (pts (xy 107.95 22.225) (xy 100.33 22.225))
  4306. (stroke (width 0) (type default))
  4307. (uuid a8d306b2-ea45-4b51-9f3d-a91005192f36)
  4308. )
  4309. (wire (pts (xy 124.46 184.15) (xy 125.73 184.15))
  4310. (stroke (width 0) (type default))
  4311. (uuid a8f1baa1-2b08-47ad-bea9-d3b3dfc53b4f)
  4312. )
  4313. (wire (pts (xy 274.955 131.445) (xy 274.955 126.365))
  4314. (stroke (width 0) (type default))
  4315. (uuid a9092014-9186-4c53-8b4b-70814a9cd218)
  4316. )
  4317. (wire (pts (xy 198.247 66.294) (xy 199.517 66.294))
  4318. (stroke (width 0) (type default))
  4319. (uuid a9c5e8cb-7e6c-477b-a602-f739a18c5503)
  4320. )
  4321. (wire (pts (xy 128.27 68.58) (xy 130.81 68.58))
  4322. (stroke (width 0) (type default))
  4323. (uuid a9c73773-0e9e-46cb-a0a7-3f1b8d377e9e)
  4324. )
  4325. (wire (pts (xy 242.57 46.99) (xy 248.92 46.99))
  4326. (stroke (width 0) (type default))
  4327. (uuid aa047297-22f8-4de0-a969-0b3451b8e164)
  4328. )
  4329. (wire (pts (xy 144.78 170.18) (xy 144.78 172.72))
  4330. (stroke (width 0) (type default))
  4331. (uuid aa48ec10-373c-4362-ad1d-b391c597316c)
  4332. )
  4333. (wire (pts (xy 242.57 67.31) (xy 248.92 67.31))
  4334. (stroke (width 0) (type default))
  4335. (uuid ab8b0540-9c9f-4195-88f5-7bed0b0a8ed6)
  4336. )
  4337. (wire (pts (xy 111.76 96.52) (xy 115.57 96.52))
  4338. (stroke (width 0) (type default))
  4339. (uuid abe306dd-1edd-4fdd-87f4-7ca5963c9ea7)
  4340. )
  4341. (wire (pts (xy 198.247 106.934) (xy 199.517 106.934))
  4342. (stroke (width 0) (type default))
  4343. (uuid abea563b-92d5-4e8a-bcd3-b0eb70a6231e)
  4344. )
  4345. (wire (pts (xy 38.735 19.685) (xy 38.735 20.955))
  4346. (stroke (width 0) (type default))
  4347. (uuid acb6c3f3-e677-4f35-9fc2-138ba10f33af)
  4348. )
  4349. (wire (pts (xy 92.075 52.705) (xy 92.075 61.595))
  4350. (stroke (width 0) (type default))
  4351. (uuid adcbf4d0-ed9c-4c7d-b78f-3bcbe974bdcb)
  4352. )
  4353. (wire (pts (xy 24.13 180.34) (xy 26.67 180.34))
  4354. (stroke (width 0) (type default))
  4355. (uuid aeaadbdf-86af-4f08-9da0-3d321e9b530e)
  4356. )
  4357. (wire (pts (xy 78.74 27.94) (xy 81.28 27.94))
  4358. (stroke (width 0) (type default))
  4359. (uuid af3cc109-862a-4cfb-8f3d-1fa76867efce)
  4360. )
  4361. (wire (pts (xy 274.32 53.34) (xy 274.32 48.26))
  4362. (stroke (width 0) (type default))
  4363. (uuid b21299b9-3c4d-43df-b399-7f9b08eb5470)
  4364. )
  4365. (wire (pts (xy 254 33.02) (xy 265.43 33.02))
  4366. (stroke (width 0) (type default))
  4367. (uuid b456cffc-d9d7-4c91-91f2-36ec9a65dd1b)
  4368. )
  4369. (wire (pts (xy 24.13 57.785) (xy 25.4 57.785))
  4370. (stroke (width 0) (type default))
  4371. (uuid b645d226-73c2-4fa2-99d4-8f77587b4ca2)
  4372. )
  4373. (wire (pts (xy 30.48 124.46) (xy 31.75 124.46))
  4374. (stroke (width 0) (type default))
  4375. (uuid b6fefd6e-6cd8-48e1-8d1c-b91218117314)
  4376. )
  4377. (wire (pts (xy 242.57 77.47) (xy 248.92 77.47))
  4378. (stroke (width 0) (type default))
  4379. (uuid b7d06af4-a5b1-447f-9b1a-8b44eb1cc204)
  4380. )
  4381. (wire (pts (xy 181.737 84.074) (xy 181.737 81.534))
  4382. (stroke (width 0) (type default))
  4383. (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8)
  4384. )
  4385. (wire (pts (xy 111.76 93.98) (xy 115.57 93.98))
  4386. (stroke (width 0) (type default))
  4387. (uuid bcd30c68-6a0c-4d48-b059-36bb89da1e79)
  4388. )
  4389. (wire (pts (xy 111.76 83.82) (xy 115.57 83.82))
  4390. (stroke (width 0) (type default))
  4391. (uuid bd0dd8cc-2030-49e6-af9c-fd81a82f9d87)
  4392. )
  4393. (wire (pts (xy 274.955 136.525) (xy 274.955 131.445))
  4394. (stroke (width 0) (type default))
  4395. (uuid bd19558d-e6a0-4390-ae47-88482144b8d7)
  4396. )
  4397. (wire (pts (xy 181.737 76.454) (xy 185.547 76.454))
  4398. (stroke (width 0) (type default))
  4399. (uuid bd793ae5-cde5-43f6-8def-1f95f35b1be6)
  4400. )
  4401. (wire (pts (xy 242.57 107.95) (xy 248.92 107.95))
  4402. (stroke (width 0) (type default))
  4403. (uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
  4404. )
  4405. (wire (pts (xy 111.76 63.5) (xy 111.76 66.04))
  4406. (stroke (width 0) (type default))
  4407. (uuid bf48d325-aa3e-4b5d-9567-32fa56f5e35b)
  4408. )
  4409. (wire (pts (xy 38.735 34.925) (xy 38.735 37.465))
  4410. (stroke (width 0) (type default))
  4411. (uuid bf8d857b-70bf-41ee-a068-5771461e04e9)
  4412. )
  4413. (wire (pts (xy 54.61 114.3) (xy 55.88 114.3))
  4414. (stroke (width 0) (type default))
  4415. (uuid c15b2f75-2e10-4b71-bebb-e2b872171b92)
  4416. )
  4417. (wire (pts (xy 270.51 53.34) (xy 274.32 53.34))
  4418. (stroke (width 0) (type default))
  4419. (uuid c210293b-1d7a-4e96-92e9-058784106727)
  4420. )
  4421. (wire (pts (xy 50.165 57.785) (xy 71.755 57.785))
  4422. (stroke (width 0) (type default))
  4423. (uuid c2a9d834-7cb1-4ec5-b0ba-ae56215ff9fc)
  4424. )
  4425. (wire (pts (xy 78.74 25.4) (xy 81.28 25.4))
  4426. (stroke (width 0) (type default))
  4427. (uuid c32397b2-e014-45d8-b63d-e72b10005f84)
  4428. )
  4429. (wire (pts (xy 128.27 63.5) (xy 130.81 63.5))
  4430. (stroke (width 0) (type default))
  4431. (uuid c3c540e1-6789-4fb5-a7f3-e013ed58d2f0)
  4432. )
  4433. (wire (pts (xy 274.32 78.74) (xy 274.32 73.66))
  4434. (stroke (width 0) (type default))
  4435. (uuid c3d5daf8-d359-42b2-a7c2-0d080ba7e212)
  4436. )
  4437. (wire (pts (xy 111.76 53.34) (xy 111.76 55.88))
  4438. (stroke (width 0) (type default))
  4439. (uuid c634a039-7d21-44f5-afe8-c31a95f913fa)
  4440. )
  4441. (wire (pts (xy 84.455 52.705) (xy 92.075 52.705))
  4442. (stroke (width 0) (type default))
  4443. (uuid c6bba6d7-3631-448e-9df8-b5a9e3238ade)
  4444. )
  4445. (wire (pts (xy 181.737 94.234) (xy 181.737 91.694))
  4446. (stroke (width 0) (type default))
  4447. (uuid c71f56c1-5b7c-4373-9716-fffac482104c)
  4448. )
  4449. (wire (pts (xy 54.61 127) (xy 57.15 127))
  4450. (stroke (width 0) (type default))
  4451. (uuid c78fe4d2-3bca-4944-970b-90c59993e3ea)
  4452. )
  4453. (wire (pts (xy 185.547 66.294) (xy 181.737 66.294))
  4454. (stroke (width 0) (type default))
  4455. (uuid c7df8431-dcf5-4ab4-b8f8-21c1cafc5246)
  4456. )
  4457. (wire (pts (xy 129.54 149.225) (xy 132.08 149.225))
  4458. (stroke (width 0) (type default))
  4459. (uuid c8263b20-79fc-4839-a962-2f02144545a4)
  4460. )
  4461. (wire (pts (xy 189.23 20.955) (xy 189.23 21.59))
  4462. (stroke (width 0) (type default))
  4463. (uuid c8b7bb6c-15d4-438e-8d23-c5acda63af59)
  4464. )
  4465. (wire (pts (xy 50.165 52.705) (xy 50.165 57.785))
  4466. (stroke (width 0) (type default))
  4467. (uuid c9badf80-21f8-404a-b5df-18e98bffebf9)
  4468. )
  4469. (wire (pts (xy 198.247 89.154) (xy 199.517 89.154))
  4470. (stroke (width 0) (type default))
  4471. (uuid caec258f-08ad-4a14-a897-c865492c6866)
  4472. )
  4473. (wire (pts (xy 25.4 60.325) (xy 19.05 60.325))
  4474. (stroke (width 0) (type default))
  4475. (uuid caecdfb7-ad32-4c62-85bf-e74b77cca81e)
  4476. )
  4477. (wire (pts (xy 189.23 48.26) (xy 189.23 49.53))
  4478. (stroke (width 0) (type default))
  4479. (uuid cbff4e8c-678f-45ac-875c-f2b4d85ac755)
  4480. )
  4481. (wire (pts (xy 111.76 63.5) (xy 115.57 63.5))
  4482. (stroke (width 0) (type default))
  4483. (uuid cc82dc36-4024-423c-8da3-2d14d47e5181)
  4484. )
  4485. (wire (pts (xy 61.595 19.685) (xy 61.595 20.955))
  4486. (stroke (width 0) (type default))
  4487. (uuid cca86b60-712b-4675-adb5-15e5f72818a5)
  4488. )
  4489. (wire (pts (xy 30.48 121.92) (xy 31.75 121.92))
  4490. (stroke (width 0) (type default))
  4491. (uuid cd4e810c-298d-4e09-9b8a-ba2b31111fc5)
  4492. )
  4493. (wire (pts (xy 185.547 104.394) (xy 181.737 104.394))
  4494. (stroke (width 0) (type default))
  4495. (uuid cd5e758d-cb66-484a-ae8b-21f53ceee49e)
  4496. )
  4497. (wire (pts (xy 144.78 145.415) (xy 144.78 141.605))
  4498. (stroke (width 0) (type default))
  4499. (uuid ceaf7d3e-c900-458e-a1b1-b52da1114534)
  4500. )
  4501. (wire (pts (xy 30.48 104.14) (xy 31.75 104.14))
  4502. (stroke (width 0) (type default))
  4503. (uuid ceb12634-32ca-4cbf-9ff5-5e8b53ab18ad)
  4504. )
  4505. (wire (pts (xy 166.497 106.934) (xy 162.687 106.934))
  4506. (stroke (width 0) (type default))
  4507. (uuid d0cd3439-276c-41ba-b38d-f84f6da38415)
  4508. )
  4509. (wire (pts (xy 111.76 76.2) (xy 115.57 76.2))
  4510. (stroke (width 0) (type default))
  4511. (uuid d23f7535-a044-4247-95d7-457cdd1c122f)
  4512. )
  4513. (wire (pts (xy 226.06 107.95) (xy 227.33 107.95))
  4514. (stroke (width 0) (type default))
  4515. (uuid d25b2628-ae11-499a-9364-d37bc176f51a)
  4516. )
  4517. (wire (pts (xy 156.21 170.18) (xy 156.21 172.72))
  4518. (stroke (width 0) (type default))
  4519. (uuid d2db53d0-2821-4ebe-bf21-b864eac8ca44)
  4520. )
  4521. (wire (pts (xy 54.61 137.16) (xy 56.515 137.16))
  4522. (stroke (width 0) (type default))
  4523. (uuid d38388e6-e9fd-4b8f-b41b-1bbc34e47cb3)
  4524. )
  4525. (wire (pts (xy 181.737 66.294) (xy 181.737 68.834))
  4526. (stroke (width 0) (type default))
  4527. (uuid d38aa458-d7c4-47af-ba08-2b6be506a3fd)
  4528. )
  4529. (wire (pts (xy 226.06 118.11) (xy 227.33 118.11))
  4530. (stroke (width 0) (type default))
  4531. (uuid d3a871af-3e46-4a18-909a-afda82616114)
  4532. )
  4533. (wire (pts (xy 218.44 46.99) (xy 218.44 71.374))
  4534. (stroke (width 0) (type default))
  4535. (uuid d3a97c30-4ac8-4098-8132-98f3b6543eaa)
  4536. )
  4537. (wire (pts (xy 270.51 78.74) (xy 274.32 78.74))
  4538. (stroke (width 0) (type default))
  4539. (uuid d3dd7cdb-b730-487d-804d-99150ba318ef)
  4540. )
  4541. (wire (pts (xy 111.76 71.12) (xy 111.76 73.66))
  4542. (stroke (width 0) (type default))
  4543. (uuid d41a5206-cc17-4bcb-8c5a-8e7f7357a9a3)
  4544. )
  4545. (wire (pts (xy 254 73.66) (xy 265.43 73.66))
  4546. (stroke (width 0) (type default))
  4547. (uuid d45d1afe-78e6-4045-862c-b274469da903)
  4548. )
  4549. (wire (pts (xy 70.485 47.625) (xy 71.755 47.625))
  4550. (stroke (width 0) (type default))
  4551. (uuid d4e4ffa8-e3e2-4590-b9df-630d1880f3e4)
  4552. )
  4553. (wire (pts (xy 111.76 81.28) (xy 111.76 83.82))
  4554. (stroke (width 0) (type default))
  4555. (uuid d5752e0f-5ead-4438-8daf-6a0f62b20fff)
  4556. )
  4557. (wire (pts (xy 198.247 78.994) (xy 199.517 78.994))
  4558. (stroke (width 0) (type default))
  4559. (uuid d5cd321f-154d-44fc-8d43-4ec6816b5a0c)
  4560. )
  4561. (wire (pts (xy 189.23 46.99) (xy 189.23 48.26))
  4562. (stroke (width 0) (type default))
  4563. (uuid d5f4d798-57d3-493b-b57c-3b6e89508879)
  4564. )
  4565. (wire (pts (xy 122.555 129.54) (xy 122.555 130.81))
  4566. (stroke (width 0) (type default))
  4567. (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd)
  4568. )
  4569. (wire (pts (xy 201.295 48.26) (xy 201.295 46.99))
  4570. (stroke (width 0) (type default))
  4571. (uuid d72b2ef6-f47f-4275-a17a-5a661c3c7818)
  4572. )
  4573. (wire (pts (xy 54.61 139.7) (xy 56.515 139.7))
  4574. (stroke (width 0) (type default))
  4575. (uuid d9d0e002-c676-4481-b5ab-bdd0a5e964a1)
  4576. )
  4577. (wire (pts (xy 151.13 20.32) (xy 151.13 21.59))
  4578. (stroke (width 0) (type default))
  4579. (uuid da337fe1-c322-4637-ad26-2622b82ac8ee)
  4580. )
  4581. (wire (pts (xy 31.75 147.32) (xy 21.59 147.32))
  4582. (stroke (width 0) (type default))
  4583. (uuid db6412d3-e6c3-4bdd-abf4-a8f55d56df31)
  4584. )
  4585. (wire (pts (xy 185.547 96.774) (xy 181.737 96.774))
  4586. (stroke (width 0) (type default))
  4587. (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
  4588. )
  4589. (wire (pts (xy 189.23 48.26) (xy 201.295 48.26))
  4590. (stroke (width 0) (type default))
  4591. (uuid dc03ee17-9021-4ca8-bca1-82ca573325ae)
  4592. )
  4593. (wire (pts (xy 19.05 60.325) (xy 19.05 61.595))
  4594. (stroke (width 0) (type default))
  4595. (uuid dc2434c5-9883-49e3-a65f-233a4b4287b8)
  4596. )
  4597. (wire (pts (xy 61.595 61.595) (xy 61.595 52.705))
  4598. (stroke (width 0) (type default))
  4599. (uuid dd6c35f3-ae45-4706-ad6f-8028797ca8e0)
  4600. )
  4601. (wire (pts (xy 144.78 145.415) (xy 146.05 145.415))
  4602. (stroke (width 0) (type default))
  4603. (uuid dda0e41f-1d9a-4045-be58-aba2f0b0530f)
  4604. )
  4605. (wire (pts (xy 166.497 106.934) (xy 169.037 106.934))
  4606. (stroke (width 0) (type default))
  4607. (uuid dda1e6ca-91ec-4136-b90b-3c54d79454b9)
  4608. )
  4609. (wire (pts (xy 242.57 36.83) (xy 248.92 36.83))
  4610. (stroke (width 0) (type default))
  4611. (uuid df3dc9a2-ba40-4c3a-87fe-61cc8e23d71b)
  4612. )
  4613. (wire (pts (xy 151.13 26.67) (xy 151.13 27.94))
  4614. (stroke (width 0) (type default))
  4615. (uuid dff67d5c-d976-4516-ae67-dbbdb70f8ddd)
  4616. )
  4617. (wire (pts (xy 266.065 121.285) (xy 254.635 121.285))
  4618. (stroke (width 0) (type default))
  4619. (uuid e04b8c10-725b-4bde-8cbf-66bfea5053e6)
  4620. )
  4621. (wire (pts (xy 226.06 27.94) (xy 227.33 27.94))
  4622. (stroke (width 0) (type default))
  4623. (uuid e0d598e4-d700-418e-81d8-4a06e1fafba0)
  4624. )
  4625. (wire (pts (xy 270.51 73.66) (xy 274.32 73.66))
  4626. (stroke (width 0) (type default))
  4627. (uuid e11ae5a5-aa10-4f10-b346-f16e33c7899a)
  4628. )
  4629. (wire (pts (xy 111.76 101.6) (xy 111.76 106.68))
  4630. (stroke (width 0) (type default))
  4631. (uuid e27535b7-e54a-4a5a-98af-cd2921ed47c2)
  4632. )
  4633. (wire (pts (xy 274.32 33.02) (xy 270.51 33.02))
  4634. (stroke (width 0) (type default))
  4635. (uuid e2fac877-439c-4da0-af2e-5fdc70f85d42)
  4636. )
  4637. (wire (pts (xy 181.737 101.854) (xy 177.927 101.854))
  4638. (stroke (width 0) (type default))
  4639. (uuid e300709f-6c72-488d-a598-efcbd6d3af54)
  4640. )
  4641. (wire (pts (xy 111.76 78.74) (xy 115.57 78.74))
  4642. (stroke (width 0) (type default))
  4643. (uuid e3faefe1-ec26-4576-8d54-ae0993368ae3)
  4644. )
  4645. (wire (pts (xy 30.48 154.94) (xy 31.75 154.94))
  4646. (stroke (width 0) (type default))
  4647. (uuid e4504518-96e7-4c9e-8457-7273f5a490f1)
  4648. )
  4649. (wire (pts (xy 129.54 162.56) (xy 129.54 165.1))
  4650. (stroke (width 0) (type default))
  4651. (uuid e623f100-5d92-4d52-a4ee-879775a3b961)
  4652. )
  4653. (wire (pts (xy 181.737 78.994) (xy 181.737 76.454))
  4654. (stroke (width 0) (type default))
  4655. (uuid e70b6168-f98e-4322-bc55-500948ef7b77)
  4656. )
  4657. (wire (pts (xy 242.57 57.15) (xy 248.92 57.15))
  4658. (stroke (width 0) (type default))
  4659. (uuid e79c8e11-ed47-4701-ae80-a54cdb6682a5)
  4660. )
  4661. (wire (pts (xy 181.737 71.374) (xy 185.547 71.374))
  4662. (stroke (width 0) (type default))
  4663. (uuid e7d81bce-286e-41e4-9181-3511e9c0455e)
  4664. )
  4665. (wire (pts (xy 97.155 55.245) (xy 97.155 52.705))
  4666. (stroke (width 0) (type default))
  4667. (uuid e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a)
  4668. )
  4669. (wire (pts (xy 271.145 121.285) (xy 274.955 121.285))
  4670. (stroke (width 0) (type default))
  4671. (uuid e8274862-c966-456a-98d5-9c42f72963c1)
  4672. )
  4673. (wire (pts (xy 242.57 27.94) (xy 248.92 27.94))
  4674. (stroke (width 0) (type default))
  4675. (uuid e87a6f80-914f-4f62-9c9f-9ba62a88ee3d)
  4676. )
  4677. (wire (pts (xy 24.13 185.42) (xy 26.67 185.42))
  4678. (stroke (width 0) (type default))
  4679. (uuid e9e21288-a1da-4e40-9282-79c2fe7455e5)
  4680. )
  4681. (wire (pts (xy 129.54 145.415) (xy 132.08 145.415))
  4682. (stroke (width 0) (type default))
  4683. (uuid ea262f36-6725-4873-a0e9-06d96f680d55)
  4684. )
  4685. (wire (pts (xy 167.64 46.99) (xy 167.64 49.53))
  4686. (stroke (width 0) (type default))
  4687. (uuid ea77ba09-319a-49bd-ad5b-49f4c76f232c)
  4688. )
  4689. (wire (pts (xy 128.27 71.12) (xy 130.81 71.12))
  4690. (stroke (width 0) (type default))
  4691. (uuid ea824579-0069-4aaa-9f51-46dcbe6c157f)
  4692. )
  4693. (wire (pts (xy 19.05 52.705) (xy 19.05 55.245))
  4694. (stroke (width 0) (type default))
  4695. (uuid eab51dd7-660f-4f60-86ec-46ce23e50144)
  4696. )
  4697. (wire (pts (xy 61.595 34.925) (xy 61.595 37.465))
  4698. (stroke (width 0) (type default))
  4699. (uuid ec5bb761-d722-410a-b49a-f2f724b8cdff)
  4700. )
  4701. (wire (pts (xy 111.76 106.68) (xy 111.76 111.76))
  4702. (stroke (width 0) (type default))
  4703. (uuid ecdfb0d6-40ce-48d1-9a5f-4d48b9122aad)
  4704. )
  4705. (wire (pts (xy 111.76 88.9) (xy 115.57 88.9))
  4706. (stroke (width 0) (type default))
  4707. (uuid ed9ead52-6238-44fd-a3d4-0700bcb50d4b)
  4708. )
  4709. (wire (pts (xy 274.955 121.285) (xy 274.955 116.205))
  4710. (stroke (width 0) (type default))
  4711. (uuid efd7a1e0-5bed-4583-a94e-5ccec9e4eb74)
  4712. )
  4713. (wire (pts (xy 270.51 93.98) (xy 274.32 93.98))
  4714. (stroke (width 0) (type default))
  4715. (uuid f04ae17e-f2b9-472d-a8f8-21c84fd4bcba)
  4716. )
  4717. (wire (pts (xy 254 78.74) (xy 265.43 78.74))
  4718. (stroke (width 0) (type default))
  4719. (uuid f203116d-f256-4611-a03e-9536bbedaf2f)
  4720. )
  4721. (wire (pts (xy 274.32 73.66) (xy 274.32 68.58))
  4722. (stroke (width 0) (type default))
  4723. (uuid f23ac723-a36d-491d-9473-7ec0ffed332d)
  4724. )
  4725. (wire (pts (xy 174.117 106.934) (xy 185.547 106.934))
  4726. (stroke (width 0) (type default))
  4727. (uuid f2480d0c-9b08-4037-9175-b2369af04d4c)
  4728. )
  4729. (wire (pts (xy 128.27 93.98) (xy 130.81 93.98))
  4730. (stroke (width 0) (type default))
  4731. (uuid f27395de-9934-421f-8875-68b92fffd253)
  4732. )
  4733. (wire (pts (xy 158.75 189.23) (xy 161.29 189.23))
  4734. (stroke (width 0) (type default))
  4735. (uuid f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5)
  4736. )
  4737. (wire (pts (xy 181.737 89.154) (xy 181.737 86.614))
  4738. (stroke (width 0) (type default))
  4739. (uuid f447e585-df78-4239-b8cb-4653b3837bb1)
  4740. )
  4741. (wire (pts (xy 185.547 86.614) (xy 181.737 86.614))
  4742. (stroke (width 0) (type default))
  4743. (uuid f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
  4744. )
  4745. (wire (pts (xy 254.635 116.205) (xy 266.065 116.205))
  4746. (stroke (width 0) (type default))
  4747. (uuid f4aae365-6c70-41da-9253-52b239e8f5e6)
  4748. )
  4749. (wire (pts (xy 271.145 126.365) (xy 274.955 126.365))
  4750. (stroke (width 0) (type default))
  4751. (uuid f5eb7390-4215-4bb5-bc53-f82f663cc9a5)
  4752. )
  4753. (wire (pts (xy 242.57 138.43) (xy 248.92 138.43))
  4754. (stroke (width 0) (type default))
  4755. (uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
  4756. )
  4757. (wire (pts (xy 54.61 116.84) (xy 55.88 116.84))
  4758. (stroke (width 0) (type default))
  4759. (uuid f6a5c856-f2b5-40eb-a958-b666a0d408a0)
  4760. )
  4761. (wire (pts (xy 49.53 189.23) (xy 64.77 189.23))
  4762. (stroke (width 0) (type default))
  4763. (uuid f8e330f1-723d-46db-b5fa-90c7bd2e3c19)
  4764. )
  4765. (wire (pts (xy 78.74 101.6) (xy 81.28 101.6))
  4766. (stroke (width 0) (type default))
  4767. (uuid fafc27d4-c0a9-4929-96fd-0b6bc48ed90d)
  4768. )
  4769. (wire (pts (xy 181.737 71.374) (xy 181.737 73.914))
  4770. (stroke (width 0) (type default))
  4771. (uuid fc3d51c1-8b35-4da3-a742-0ebe104989d7)
  4772. )
  4773. (wire (pts (xy 274.32 68.58) (xy 274.32 63.5))
  4774. (stroke (width 0) (type default))
  4775. (uuid fd60415a-f01a-46c5-9369-ea970e435e5b)
  4776. )
  4777. (text "WRITE INHIBIT" (at 207.01 125.095 0)
  4778. (effects (font (size 1.27 1.27)) (justify left bottom))
  4779. (uuid 044de712-d3da-40ed-9c9f-d91ef285c74c)
  4780. )
  4781. (text "ST-LINK" (at 90.17 45.085 0)
  4782. (effects (font (size 1.27 1.27)) (justify left bottom))
  4783. (uuid 8220ba36-5fda-4461-95e2-49a5bc0c76af)
  4784. )
  4785. (label "~{WR_GATE}" (at 248.92 128.27 180) (fields_autoplaced)
  4786. (effects (font (size 1.27 1.27)) (justify right bottom))
  4787. (uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
  4788. )
  4789. (label "~{WR_DAT}" (at 21.59 83.82 0) (fields_autoplaced)
  4790. (effects (font (size 1.27 1.27)) (justify left bottom))
  4791. (uuid 044dde97-ee2e-473a-9264-ed4dff1893a5)
  4792. )
  4793. (label "~{WR_DATA}" (at 226.06 118.11 180) (fields_autoplaced)
  4794. (effects (font (size 1.27 1.27)) (justify right bottom))
  4795. (uuid 04ab0cfd-0e8d-474e-bc39-9b21c3d360c9)
  4796. )
  4797. (label "LED1" (at 30.48 154.94 180) (fields_autoplaced)
  4798. (effects (font (size 1.27 1.27)) (justify right bottom))
  4799. (uuid 0a5610bb-d01a-4417-8271-dc424dd2c838)
  4800. )
  4801. (label "~{DENSEL}" (at 130.81 45.72 0) (fields_autoplaced)
  4802. (effects (font (size 1.27 1.27)) (justify left bottom))
  4803. (uuid 0f66079d-975f-43b2-9b94-5ed2a07d9162)
  4804. )
  4805. (label "~{DIR}" (at 254 63.5 0) (fields_autoplaced)
  4806. (effects (font (size 1.27 1.27)) (justify left bottom))
  4807. (uuid 112371bd-7aa2-4b47-b184-50d12afc2534)
  4808. )
  4809. (label "RX" (at 30.48 104.14 180) (fields_autoplaced)
  4810. (effects (font (size 1.27 1.27)) (justify right bottom))
  4811. (uuid 113ffcdf-4c54-4e37-81dc-f91efa934ba7)
  4812. )
  4813. (label "RXE_N" (at 50.8 194.31 0) (fields_autoplaced)
  4814. (effects (font (size 1.27 1.27)) (justify left bottom))
  4815. (uuid 117925c1-afea-41fc-b518-60288f690804)
  4816. )
  4817. (label "~{DRIVE1}" (at 199.517 78.994 0) (fields_autoplaced)
  4818. (effects (font (size 1.27 1.27)) (justify left bottom))
  4819. (uuid 11c46ed6-a4c0-496e-aeea-27757b88d27c)
  4820. )
  4821. (label "~{DRIVE1}" (at 226.06 67.31 180) (fields_autoplaced)
  4822. (effects (font (size 1.27 1.27)) (justify right bottom))
  4823. (uuid 1222150b-916f-4129-817c-4d0356e5a191)
  4824. )
  4825. (label "~{TRK_00}" (at 199.517 96.774 0) (fields_autoplaced)
  4826. (effects (font (size 1.27 1.27)) (justify left bottom))
  4827. (uuid 178ae27e-edb9-4ffb-bd13-c0a6dd659606)
  4828. )
  4829. (label "BE_1" (at 56.515 134.62 0) (fields_autoplaced)
  4830. (effects (font (size 1.27 1.27)) (justify left bottom))
  4831. (uuid 1931f864-e76e-4b4c-a08c-21941904eaa3)
  4832. )
  4833. (label "TXE_N" (at 50.8 191.77 0) (fields_autoplaced)
  4834. (effects (font (size 1.27 1.27)) (justify left bottom))
  4835. (uuid 1a7826b7-68bc-414b-aab8-8fada4a422e8)
  4836. )
  4837. (label "BE_0" (at 50.8 179.07 0) (fields_autoplaced)
  4838. (effects (font (size 1.27 1.27)) (justify left bottom))
  4839. (uuid 1cae581d-51c9-42bf-bd4d-9b4ad5d63797)
  4840. )
  4841. (label "~{SIDE}" (at 254 83.82 0) (fields_autoplaced)
  4842. (effects (font (size 1.27 1.27)) (justify left bottom))
  4843. (uuid 1d0d5161-c82f-4c77-a9ca-15d017db65d3)
  4844. )
  4845. (label "~{DENSEL}" (at 199.517 66.294 0) (fields_autoplaced)
  4846. (effects (font (size 1.27 1.27)) (justify left bottom))
  4847. (uuid 1f9fc6ff-03a6-460e-ba12-d6a241cd0f48)
  4848. )
  4849. (label "~{INDEX}" (at 24.13 185.42 180) (fields_autoplaced)
  4850. (effects (font (size 1.27 1.27)) (justify right bottom))
  4851. (uuid 1fb62290-089a-4cdf-b37b-f810068b852c)
  4852. )
  4853. (label "INUSE" (at 130.81 63.5 0) (fields_autoplaced)
  4854. (effects (font (size 1.27 1.27)) (justify left bottom))
  4855. (uuid 21783cf4-91af-460e-ac99-9922d6b7d60e)
  4856. )
  4857. (label "~{MOTOR_EN}" (at 130.81 66.04 0) (fields_autoplaced)
  4858. (effects (font (size 1.27 1.27)) (justify left bottom))
  4859. (uuid 21872bbc-f7bd-4fc9-89e0-5de9dc30b08f)
  4860. )
  4861. (label "~{DIR}" (at 24.13 180.34 180) (fields_autoplaced)
  4862. (effects (font (size 1.27 1.27)) (justify right bottom))
  4863. (uuid 22cee2fe-730e-411c-83d4-d741c8e3424c)
  4864. )
  4865. (label "USB_D-" (at 161.29 189.23 0) (fields_autoplaced)
  4866. (effects (font (size 1.27 1.27)) (justify left bottom))
  4867. (uuid 232ccf4f-3322-4e62-990b-290e6ff36fcd)
  4868. )
  4869. (label "~{DENSEL}" (at 226.06 27.94 180) (fields_autoplaced)
  4870. (effects (font (size 1.27 1.27)) (justify right bottom))
  4871. (uuid 238f9083-46e5-4f0c-bcf3-448afb2553f6)
  4872. )
  4873. (label "~{DS1}" (at 248.92 67.31 180) (fields_autoplaced)
  4874. (effects (font (size 1.27 1.27)) (justify right bottom))
  4875. (uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
  4876. )
  4877. (label "~{DS1}" (at 30.48 121.92 180) (fields_autoplaced)
  4878. (effects (font (size 1.27 1.27)) (justify right bottom))
  4879. (uuid 254f7cc6-cee1-44ca-9afe-939b318201aa)
  4880. )
  4881. (label "~{RDY}" (at 195.961 117.729 0) (fields_autoplaced)
  4882. (effects (font (size 1.27 1.27)) (justify left bottom))
  4883. (uuid 25c663ff-96b6-4263-a06e-d1829409cf73)
  4884. )
  4885. (label "~{M0_EN}" (at 129.54 145.415 180) (fields_autoplaced)
  4886. (effects (font (size 1.27 1.27)) (justify right bottom))
  4887. (uuid 26444c2f-6072-46b6-bb67-df561d826796)
  4888. )
  4889. (label "~{FLIPPY}" (at 66.04 81.28 180) (fields_autoplaced)
  4890. (effects (font (size 1.27 1.27)) (justify right bottom))
  4891. (uuid 26a22c19-4cc5-4237-9651-0edc4f854154)
  4892. )
  4893. (label "SWDIO" (at 39.37 55.245 0) (fields_autoplaced)
  4894. (effects (font (size 1.27 1.27)) (justify left bottom))
  4895. (uuid 2900965f-8b8d-458a-b86a-6e9955743074)
  4896. )
  4897. (label "~{M1_EN}" (at 129.54 149.225 180) (fields_autoplaced)
  4898. (effects (font (size 1.27 1.27)) (justify right bottom))
  4899. (uuid 2b295bac-9753-4da5-990b-f753b6ce9bda)
  4900. )
  4901. (label "~{STEPS}" (at 130.81 88.9 0) (fields_autoplaced)
  4902. (effects (font (size 1.27 1.27)) (justify left bottom))
  4903. (uuid 2bd46b23-cd1b-4758-94b3-eaa8bb441c6c)
  4904. )
  4905. (label "BE_0" (at 56.515 132.08 0) (fields_autoplaced)
  4906. (effects (font (size 1.27 1.27)) (justify left bottom))
  4907. (uuid 2c56bcd0-deac-4672-8d58-7ff821dbcc41)
  4908. )
  4909. (label "~{TG43_0}" (at 78.74 106.68 180) (fields_autoplaced)
  4910. (effects (font (size 1.27 1.27)) (justify right bottom))
  4911. (uuid 2cb237d0-5497-49f3-996f-bda143f4cb08)
  4912. )
  4913. (label "~{WR_PROT}" (at 130.81 99.06 0) (fields_autoplaced)
  4914. (effects (font (size 1.27 1.27)) (justify left bottom))
  4915. (uuid 2f9c49f2-2034-4978-8916-aa0655e2f9f8)
  4916. )
  4917. (label "~{DENS}" (at 254 27.94 0) (fields_autoplaced)
  4918. (effects (font (size 1.27 1.27)) (justify left bottom))
  4919. (uuid 31bfc3e7-147b-4531-a0c5-e3a305c1647d)
  4920. )
  4921. (label "~{M0_EN}" (at 226.06 57.15 180) (fields_autoplaced)
  4922. (effects (font (size 1.27 1.27)) (justify right bottom))
  4923. (uuid 33495d31-b72d-44fa-9c0f-389fb23eb659)
  4924. )
  4925. (label "~{M0}" (at 254 43.18 0) (fields_autoplaced)
  4926. (effects (font (size 1.27 1.27)) (justify left bottom))
  4927. (uuid 363189af-2faa-46a4-b025-5a779d801f2e)
  4928. )
  4929. (label "~{INDEX}" (at 130.81 68.58 0) (fields_autoplaced)
  4930. (effects (font (size 1.27 1.27)) (justify left bottom))
  4931. (uuid 371e69e8-c492-4e8d-85fd-3ca4ff5c48dc)
  4932. )
  4933. (label "SPARE2" (at 254 38.1 0) (fields_autoplaced)
  4934. (effects (font (size 1.27 1.27)) (justify left bottom))
  4935. (uuid 37657eee-b379-4145-b65d-79c82b53e49e)
  4936. )
  4937. (label "~{WR_GATE_OUT}" (at 130.81 93.98 0) (fields_autoplaced)
  4938. (effects (font (size 1.27 1.27)) (justify left bottom))
  4939. (uuid 38029921-f5d0-4b06-b806-54c68d329f8c)
  4940. )
  4941. (label "USB_D+" (at 30.48 160.02 180) (fields_autoplaced)
  4942. (effects (font (size 1.27 1.27)) (justify right bottom))
  4943. (uuid 3a1a39fc-8030-4c93-9d9c-d79ba6824099)
  4944. )
  4945. (label "~{EXT_MOTOR}" (at 115.57 104.14 180) (fields_autoplaced)
  4946. (effects (font (size 1 1)) (justify right bottom))
  4947. (uuid 3c60f59d-e6b7-413f-87fc-dd68832abaf9)
  4948. )
  4949. (label "~{RD_DATA}" (at 130.81 101.6 0) (fields_autoplaced)
  4950. (effects (font (size 1.27 1.27)) (justify left bottom))
  4951. (uuid 3d9da780-2975-4cf6-8d88-e86bfca02620)
  4952. )
  4953. (label "SWCLK" (at 30.48 114.3 180) (fields_autoplaced)
  4954. (effects (font (size 1.27 1.27)) (justify right bottom))
  4955. (uuid 3f2a6679-91d7-4b6c-bf5c-c4d5abb2bc44)
  4956. )
  4957. (label "~{RD_DATA}" (at 24.13 175.26 180) (fields_autoplaced)
  4958. (effects (font (size 1.27 1.27)) (justify right bottom))
  4959. (uuid 41e02b86-e75d-48dd-b73f-1ca41019a3da)
  4960. )
  4961. (label "~{WR_DATA}" (at 199.517 91.694 0) (fields_autoplaced)
  4962. (effects (font (size 1.27 1.27)) (justify left bottom))
  4963. (uuid 43d52763-bb58-40dc-85ff-f539d4a17e32)
  4964. )
  4965. (label "~{DIR}" (at 66.04 88.9 180) (fields_autoplaced)
  4966. (effects (font (size 1.27 1.27)) (justify right bottom))
  4967. (uuid 4970ec6e-3725-4619-b57d-dc2c2cb86ed0)
  4968. )
  4969. (label "ID1" (at 146.05 167.64 180) (fields_autoplaced)
  4970. (effects (font (size 1.27 1.27)) (justify right bottom))
  4971. (uuid 49d97c73-e37a-4154-9d0a-88037e40cc11)
  4972. )
  4973. (label "SWCLK" (at 86.995 47.625 0) (fields_autoplaced)
  4974. (effects (font (size 1.27 1.27)) (justify left bottom))
  4975. (uuid 4b471778-f61d-4b9d-a507-3d4f82ec4b7c)
  4976. )
  4977. (label "~{M1_EN}" (at 226.06 87.63 180) (fields_autoplaced)
  4978. (effects (font (size 1.27 1.27)) (justify right bottom))
  4979. (uuid 4b8b9044-1b17-4fac-b8d3-7511d3efd589)
  4980. )
  4981. (label "~{DENS}" (at 21.59 152.4 0) (fields_autoplaced)
  4982. (effects (font (size 1.27 1.27)) (justify left bottom))
  4983. (uuid 4ce9470f-5633-41bf-89ac-74a810939893)
  4984. )
  4985. (label "RXE_N" (at 57.15 124.46 0) (fields_autoplaced)
  4986. (effects (font (size 1.27 1.27)) (justify left bottom))
  4987. (uuid 4e28e2fb-698a-4635-ae33-0d53221f701f)
  4988. )
  4989. (label "~{STEP}" (at 248.92 107.95 180) (fields_autoplaced)
  4990. (effects (font (size 1.27 1.27)) (justify right bottom))
  4991. (uuid 4fd9bc4f-0ae3-42d4-a1b4-9fb1b2a0a7fd)
  4992. )
  4993. (label "PB[0..11]" (at 52.07 176.53 0) (fields_autoplaced)
  4994. (effects (font (size 1.27 1.27)) (justify left bottom))
  4995. (uuid 51bc70a6-2f66-431d-9492-186dca686508)
  4996. )
  4997. (label "~{M1}" (at 21.59 147.32 0) (fields_autoplaced)
  4998. (effects (font (size 1.27 1.27)) (justify left bottom))
  4999. (uuid 51cc007a-3378-4ce3-909c-71e94822f8d1)
  5000. )
  5001. (label "~{RDY}" (at 254.635 131.445 0) (fields_autoplaced)
  5002. (effects (font (size 1.27 1.27)) (justify left bottom))
  5003. (uuid 57403740-9177-47d9-a4fe-c2f08cf550be)
  5004. )
  5005. (label "P_STUSB" (at 79.375 111.76 180) (fields_autoplaced)
  5006. (effects (font (size 1.27 1.27)) (justify right bottom))
  5007. (uuid 57bbd8ea-1586-4678-a626-0bffa2aa9c36)
  5008. )
  5009. (label "~{TG43_0}" (at 78.74 25.4 180) (fields_autoplaced)
  5010. (effects (font (size 1.27 1.27)) (justify right bottom))
  5011. (uuid 57ca04c1-dd22-43ca-a802-639ad9d92015)
  5012. )
  5013. (label "~{DRIVE0}" (at 130.81 76.2 0) (fields_autoplaced)
  5014. (effects (font (size 1.27 1.27)) (justify left bottom))
  5015. (uuid 5860b84f-3484-424c-8cae-5de0b22df872)
  5016. )
  5017. (label "PA[0..11]" (at 52.07 173.99 0) (fields_autoplaced)
  5018. (effects (font (size 1.27 1.27)) (justify left bottom))
  5019. (uuid 59e058da-2964-4ef6-bd9a-9c7aa026d0b2)
  5020. )
  5021. (label "~{STEP}" (at 254 68.58 0) (fields_autoplaced)
  5022. (effects (font (size 1.27 1.27)) (justify left bottom))
  5023. (uuid 5c32b099-dba7-4228-8a5e-c2156f635ce2)
  5024. )
  5025. (label "~{TRK_00}" (at 24.13 182.88 180) (fields_autoplaced)
  5026. (effects (font (size 1.27 1.27)) (justify right bottom))
  5027. (uuid 5ce4df25-e816-4843-9a48-29160907263a)
  5028. )
  5029. (label "INUSE" (at 226.06 36.83 180) (fields_autoplaced)
  5030. (effects (font (size 1.27 1.27)) (justify right bottom))
  5031. (uuid 5eb94574-4b17-4405-ab0e-af45ba088621)
  5032. )
  5033. (label "~{M0}" (at 30.48 124.46 180) (fields_autoplaced)
  5034. (effects (font (size 1.27 1.27)) (justify right bottom))
  5035. (uuid 5f48b0f2-82cf-40ce-afac-440f97643c36)
  5036. )
  5037. (label "~{DRIVE3}" (at 130.81 83.82 0) (fields_autoplaced)
  5038. (effects (font (size 1.27 1.27)) (justify left bottom))
  5039. (uuid 6129907b-6fa8-4823-83b3-eb59cd8e680b)
  5040. )
  5041. (label "RX" (at 109.22 19.685 180) (fields_autoplaced)
  5042. (effects (font (size 1.27 1.27)) (justify right bottom))
  5043. (uuid 629fdb7a-7978-43d0-987e-b84465775826)
  5044. )
  5045. (label "ID1" (at 55.88 114.3 0) (fields_autoplaced)
  5046. (effects (font (size 1.27 1.27)) (justify left bottom))
  5047. (uuid 62f15a9a-9893-486e-9ad0-ea43f88fc9e7)
  5048. )
  5049. (label "~{DRIVE0}" (at 199.517 81.534 0) (fields_autoplaced)
  5050. (effects (font (size 1.27 1.27)) (justify left bottom))
  5051. (uuid 6406f0fb-9933-4ab4-8954-3fcb06c214bc)
  5052. )
  5053. (label "~{RDY}" (at 130.81 71.12 0) (fields_autoplaced)
  5054. (effects (font (size 1.27 1.27)) (justify left bottom))
  5055. (uuid 65ee142c-3d18-4ae2-a8c0-db5e6e99b784)
  5056. )
  5057. (label "~{TRK_00}" (at 21.59 86.36 0) (fields_autoplaced)
  5058. (effects (font (size 1.27 1.27)) (justify left bottom))
  5059. (uuid 661ca2ba-bce5-4308-99a6-de333a625515)
  5060. )
  5061. (label "~{RD_DATA}" (at 254.635 126.365 0) (fields_autoplaced)
  5062. (effects (font (size 1.27 1.27)) (justify left bottom))
  5063. (uuid 6762c669-2824-49a2-8bd4-3f19091dd75a)
  5064. )
  5065. (label "~{FD2S}" (at 217.17 158.75 0) (fields_autoplaced)
  5066. (effects (font (size 1.27 1.27)) (justify left bottom))
  5067. (uuid 69dae7d6-5f7f-4464-b3da-76b46a53214c)
  5068. )
  5069. (label "BE_3" (at 56.515 139.7 0) (fields_autoplaced)
  5070. (effects (font (size 1.27 1.27)) (justify left bottom))
  5071. (uuid 69fc5468-ed19-4664-a4ec-e0f951e6bffa)
  5072. )
  5073. (label "BE_2" (at 56.515 137.16 0) (fields_autoplaced)
  5074. (effects (font (size 1.27 1.27)) (justify left bottom))
  5075. (uuid 6b132a4e-6d89-4c40-8542-6c0fa51a94d3)
  5076. )
  5077. (label "~{FD2}" (at 78.74 104.14 180) (fields_autoplaced)
  5078. (effects (font (size 1.27 1.27)) (justify right bottom))
  5079. (uuid 6c18a6ec-5e6f-4260-9c9d-6a2b89d214d9)
  5080. )
  5081. (label "USB_D+" (at 161.29 185.42 0) (fields_autoplaced)
  5082. (effects (font (size 1.27 1.27)) (justify left bottom))
  5083. (uuid 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2)
  5084. )
  5085. (label "~{WR_GATE}" (at 254 78.74 0) (fields_autoplaced)
  5086. (effects (font (size 1.27 1.27)) (justify left bottom))
  5087. (uuid 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0)
  5088. )
  5089. (label "~{DIR}" (at 248.92 97.79 180) (fields_autoplaced)
  5090. (effects (font (size 1.27 1.27)) (justify right bottom))
  5091. (uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
  5092. )
  5093. (label "~{INDEX}" (at 199.771 73.914 0) (fields_autoplaced)
  5094. (effects (font (size 1.27 1.27)) (justify left bottom))
  5095. (uuid 73fbe87f-3928-49c2-bf87-839d907c6aef)
  5096. )
  5097. (label "~{STEP}" (at 21.59 96.52 0) (fields_autoplaced)
  5098. (effects (font (size 1.27 1.27)) (justify left bottom))
  5099. (uuid 755f94aa-38f0-4a64-a7c7-6c71cb18cddf)
  5100. )
  5101. (label "SPARE1" (at 254 33.02 0) (fields_autoplaced)
  5102. (effects (font (size 1.27 1.27)) (justify left bottom))
  5103. (uuid 7668b629-abd6-4e14-be84-df90ae487fc6)
  5104. )
  5105. (label "~{M1}" (at 248.92 87.63 180) (fields_autoplaced)
  5106. (effects (font (size 1.27 1.27)) (justify right bottom))
  5107. (uuid 799e761c-1426-40e9-a069-1f4cb353bfaa)
  5108. )
  5109. (label "INUSE" (at 199.517 68.834 0) (fields_autoplaced)
  5110. (effects (font (size 1.27 1.27)) (justify left bottom))
  5111. (uuid 7b41936f-8892-4c2e-8a5d-04d1cd2d6fa3)
  5112. )
  5113. (label "~{EXT_MOTOR}" (at 204.343 148.59 180) (fields_autoplaced)
  5114. (effects (font (size 1.27 1.27)) (justify right bottom))
  5115. (uuid 7c9289ff-600d-41f6-aba7-ec519cf9681e)
  5116. )
  5117. (label "~{WR_DAT}" (at 254 73.66 0) (fields_autoplaced)
  5118. (effects (font (size 1.27 1.27)) (justify left bottom))
  5119. (uuid 7ca71fec-e7f1-454f-9196-b80d15925fff)
  5120. )
  5121. (label "~{DIRECTION}" (at 226.06 97.79 180) (fields_autoplaced)
  5122. (effects (font (size 1.27 1.27)) (justify right bottom))
  5123. (uuid 7ca974e9-cb7c-4def-9cab-b7ce7bb7ac62)
  5124. )
  5125. (label "~{SIDE_SEL}" (at 199.517 104.394 0) (fields_autoplaced)
  5126. (effects (font (size 1.27 1.27)) (justify left bottom))
  5127. (uuid 8196cec5-f23f-4729-a049-5f8821aabad6)
  5128. )
  5129. (label "~{DS0}" (at 21.59 149.86 0) (fields_autoplaced)
  5130. (effects (font (size 1.27 1.27)) (justify left bottom))
  5131. (uuid 83184391-76ed-44f0-8cd0-01f89f157bdb)
  5132. )
  5133. (label "~{WR_DAT}" (at 248.92 118.11 180) (fields_autoplaced)
  5134. (effects (font (size 1.27 1.27)) (justify right bottom))
  5135. (uuid 86e98417-f5e4-48ba-8147-ef66cc03dde6)
  5136. )
  5137. (label "~{WR_PROT}" (at 21.59 81.28 0) (fields_autoplaced)
  5138. (effects (font (size 1.27 1.27)) (justify left bottom))
  5139. (uuid 8ae05d37-86b4-45ea-800f-f1f9fb167857)
  5140. )
  5141. (label "SPARE2" (at 71.12 116.84 0) (fields_autoplaced)
  5142. (effects (font (size 1.27 1.27)) (justify left bottom))
  5143. (uuid 94d24676-7ae3-483c-8bd6-88d31adf00b4)
  5144. )
  5145. (label "ID0" (at 130.81 167.64 180) (fields_autoplaced)
  5146. (effects (font (size 1.27 1.27)) (justify right bottom))
  5147. (uuid 9505be36-b21c-4db8-9484-dd0861395d26)
  5148. )
  5149. (label "ID2" (at 157.48 167.64 180) (fields_autoplaced)
  5150. (effects (font (size 1.27 1.27)) (justify right bottom))
  5151. (uuid 961b4579-9ee8-407a-89a7-81f36f1ad865)
  5152. )
  5153. (label "~{WR_GATE_OUT}" (at 199.517 94.234 0) (fields_autoplaced)
  5154. (effects (font (size 1.27 1.27)) (justify left bottom))
  5155. (uuid 96cde6a5-b5a4-41f4-be57-14529a48aa65)
  5156. )
  5157. (label "LED2" (at 78.486 78.74 180) (fields_autoplaced)
  5158. (effects (font (size 1.27 1.27)) (justify right bottom))
  5159. (uuid 997c9977-58a9-4d81-bec5-371cc256fc77)
  5160. )
  5161. (label "~{DRIVE1}" (at 130.81 78.74 0) (fields_autoplaced)
  5162. (effects (font (size 1.27 1.27)) (justify left bottom))
  5163. (uuid 998438c1-cf31-461b-9870-09f708a5cd72)
  5164. )
  5165. (label "SPARE2" (at 248.92 46.99 180) (fields_autoplaced)
  5166. (effects (font (size 1.27 1.27)) (justify right bottom))
  5167. (uuid 99e6b8eb-b08e-4d42-84dd-8b7f6765b7b7)
  5168. )
  5169. (label "~{WR_DATA}" (at 130.81 91.44 0) (fields_autoplaced)
  5170. (effects (font (size 1.27 1.27)) (justify left bottom))
  5171. (uuid 9a445d32-7123-4c5a-9f28-0b3a5e65e844)
  5172. )
  5173. (label "~{FD2}" (at 248.92 158.75 180) (fields_autoplaced)
  5174. (effects (font (size 1.27 1.27)) (justify right bottom))
  5175. (uuid 9b5d2561-a39d-4383-afb5-ed2718d0d799)
  5176. )
  5177. (label "TX" (at 109.22 17.145 180) (fields_autoplaced)
  5178. (effects (font (size 1.27 1.27)) (justify right bottom))
  5179. (uuid 9c5933cf-1535-4465-90dd-da9b75afcdcf)
  5180. )
  5181. (label "~{WR_GATE}" (at 21.59 93.98 0) (fields_autoplaced)
  5182. (effects (font (size 1.27 1.27)) (justify left bottom))
  5183. (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8)
  5184. )
  5185. (label "~{WR_GATE_OUT}" (at 204.47 128.27 180) (fields_autoplaced)
  5186. (effects (font (size 1.27 1.27)) (justify right bottom))
  5187. (uuid a39e442b-564b-427c-8c97-ea8707b3a1d8)
  5188. )
  5189. (label "ID0" (at 55.88 111.76 0) (fields_autoplaced)
  5190. (effects (font (size 1.27 1.27)) (justify left bottom))
  5191. (uuid a3fab380-991d-404b-95d5-1c209b047b6e)
  5192. )
  5193. (label "BE_2" (at 50.8 184.15 0) (fields_autoplaced)
  5194. (effects (font (size 1.27 1.27)) (justify left bottom))
  5195. (uuid a68a9d4a-9c01-49ba-b114-c53d4012d6ea)
  5196. )
  5197. (label "LED2" (at 49.911 37.465 180) (fields_autoplaced)
  5198. (effects (font (size 1.27 1.27)) (justify right bottom))
  5199. (uuid a71e3014-e0a0-48c1-9903-a577631696ee)
  5200. )
  5201. (label "~{WR_PROT}" (at 254.635 121.285 0) (fields_autoplaced)
  5202. (effects (font (size 1.27 1.27)) (justify left bottom))
  5203. (uuid a9d76dfc-52ba-46de-beb4-dab7b94ee663)
  5204. )
  5205. (label "USB_D-" (at 30.48 157.48 180) (fields_autoplaced)
  5206. (effects (font (size 1.27 1.27)) (justify right bottom))
  5207. (uuid aa23bfe3-454b-4a2b-bfe1-101c747eb84e)
  5208. )
  5209. (label "~{WR_PROT}" (at 199.517 99.314 0) (fields_autoplaced)
  5210. (effects (font (size 1.27 1.27)) (justify left bottom))
  5211. (uuid aa8663be-9516-4b07-84d2-4c4d668b8596)
  5212. )
  5213. (label "~{MOTOR2}" (at 78.74 101.6 180) (fields_autoplaced)
  5214. (effects (font (size 1.27 1.27)) (justify right bottom))
  5215. (uuid acba7e9e-8eda-496f-ad3f-867f3e47e0a6)
  5216. )
  5217. (label "~{SIDE}" (at 66.04 86.36 180) (fields_autoplaced)
  5218. (effects (font (size 1.27 1.27)) (justify right bottom))
  5219. (uuid ad4d05f5-6957-42f8-b65c-c657b9a26485)
  5220. )
  5221. (label "~{TRK_00}" (at 130.81 96.52 0) (fields_autoplaced)
  5222. (effects (font (size 1.27 1.27)) (justify left bottom))
  5223. (uuid ae2627f8-bfa0-44d6-8ce5-4df81452e696)
  5224. )
  5225. (label "ID2" (at 55.88 116.84 0) (fields_autoplaced)
  5226. (effects (font (size 1.27 1.27)) (justify left bottom))
  5227. (uuid b2b363dd-8e47-4a76-a142-e00e28334875)
  5228. )
  5229. (label "BE_3" (at 50.8 186.69 0) (fields_autoplaced)
  5230. (effects (font (size 1.27 1.27)) (justify left bottom))
  5231. (uuid b3390bbe-f381-4106-a540-3cdda6967f5e)
  5232. )
  5233. (label "~{MOTOR2}" (at 254 88.9 0) (fields_autoplaced)
  5234. (effects (font (size 1.27 1.27)) (justify left bottom))
  5235. (uuid b3559441-5d2a-4e19-9bed-ce00f96070df)
  5236. )
  5237. (label "~{MOTOR_EN}" (at 146.05 145.415 0) (fields_autoplaced)
  5238. (effects (font (size 1.27 1.27)) (justify left bottom))
  5239. (uuid b59fca79-e320-4eb0-83be-1506dc492388)
  5240. )
  5241. (label "~{M1_EN}" (at 199.517 84.074 0) (fields_autoplaced)
  5242. (effects (font (size 1.27 1.27)) (justify left bottom))
  5243. (uuid b60fe4b1-9c0f-4a22-9c47-1eb969b306ae)
  5244. )
  5245. (label "~{DS1}" (at 254 48.26 0) (fields_autoplaced)
  5246. (effects (font (size 1.27 1.27)) (justify left bottom))
  5247. (uuid b66b83a0-313f-4b03-b851-c6e9577a6eb7)
  5248. )
  5249. (label "~{DENS}" (at 248.92 27.94 180) (fields_autoplaced)
  5250. (effects (font (size 1.27 1.27)) (justify right bottom))
  5251. (uuid b794d099-f823-4d35-9755-ca1c45247ee9)
  5252. )
  5253. (label "LED1" (at 38.735 37.465 180) (fields_autoplaced)
  5254. (effects (font (size 1.27 1.27)) (justify right bottom))
  5255. (uuid b7ac5cea-ed28-4028-87d0-45e58c709cf1)
  5256. )
  5257. (label "SWCLK" (at 39.37 57.785 0) (fields_autoplaced)
  5258. (effects (font (size 1.27 1.27)) (justify left bottom))
  5259. (uuid b83c0b65-9035-44f4-9939-bf63baaf6b52)
  5260. )
  5261. (label "~{STEPS}" (at 199.517 89.154 0) (fields_autoplaced)
  5262. (effects (font (size 1.27 1.27)) (justify left bottom))
  5263. (uuid b8d45b0e-7a89-4c6a-bafb-b38131792b26)
  5264. )
  5265. (label "~{DC}" (at 130.81 58.42 0) (fields_autoplaced)
  5266. (effects (font (size 1.27 1.27)) (justify left bottom))
  5267. (uuid bb519d39-a9b1-490c-9304-837f15fa243b)
  5268. )
  5269. (label "~{DIRECTION}" (at 130.81 86.36 0) (fields_autoplaced)
  5270. (effects (font (size 1.27 1.27)) (justify left bottom))
  5271. (uuid be0d4b70-103c-4e11-a759-a5fbc6164b7c)
  5272. )
  5273. (label "~{FD2}" (at 254 93.98 0) (fields_autoplaced)
  5274. (effects (font (size 1.27 1.27)) (justify left bottom))
  5275. (uuid bec06757-b09b-4541-8082-8cc5e48f439a)
  5276. )
  5277. (label "~{RDY}" (at 66.04 83.82 180) (fields_autoplaced)
  5278. (effects (font (size 1.27 1.27)) (justify right bottom))
  5279. (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8)
  5280. )
  5281. (label "~{STEPS}" (at 226.06 107.95 180) (fields_autoplaced)
  5282. (effects (font (size 1.27 1.27)) (justify right bottom))
  5283. (uuid c283c5c5-a3f3-492b-abc6-13a971f417c7)
  5284. )
  5285. (label "LED3" (at 61.595 37.465 180) (fields_autoplaced)
  5286. (effects (font (size 1.27 1.27)) (justify right bottom))
  5287. (uuid c2ac1020-c2c9-4b92-9bb8-d550d43dc0b8)
  5288. )
  5289. (label "~{TG43_1}" (at 78.74 27.94 180) (fields_autoplaced)
  5290. (effects (font (size 1.27 1.27)) (justify right bottom))
  5291. (uuid c45dfc0a-ba10-4db5-ab69-2d89343fe369)
  5292. )
  5293. (label "P_STUSB" (at 125.73 184.15 0) (fields_autoplaced)
  5294. (effects (font (size 1.27 1.27)) (justify left bottom))
  5295. (uuid c73639f1-fcbc-430f-b4de-ad2f2e664dfe)
  5296. )
  5297. (label "SWDIO" (at 30.48 111.76 180) (fields_autoplaced)
  5298. (effects (font (size 1.27 1.27)) (justify right bottom))
  5299. (uuid c7cd39db-931a-4d86-96b8-57e6b39f58f9)
  5300. )
  5301. (label "~{M0_EN}" (at 199.517 76.454 0) (fields_autoplaced)
  5302. (effects (font (size 1.27 1.27)) (justify left bottom))
  5303. (uuid c7f2486c-d7b2-4a7b-aa54-8db7dad7108b)
  5304. )
  5305. (label "LED3" (at 78.486 81.28 180) (fields_autoplaced)
  5306. (effects (font (size 1.27 1.27)) (justify right bottom))
  5307. (uuid cb4c3cb4-0086-4a12-881d-e774c8b24f6f)
  5308. )
  5309. (label "ID0" (at 114.3 166.37 180) (fields_autoplaced)
  5310. (effects (font (size 1.27 1.27)) (justify right bottom))
  5311. (uuid ce3c8b7c-3419-4d70-91ee-74fba7e4b950)
  5312. )
  5313. (label "~{TG43_1}" (at 78.74 109.22 180) (fields_autoplaced)
  5314. (effects (font (size 1.27 1.27)) (justify right bottom))
  5315. (uuid d035fc5a-c842-4a93-b621-a2ae773113e7)
  5316. )
  5317. (label "~{SIDE}" (at 24.13 190.5 180) (fields_autoplaced)
  5318. (effects (font (size 1.27 1.27)) (justify right bottom))
  5319. (uuid d28a78ab-2168-4efb-aa09-70733b60123c)
  5320. )
  5321. (label "~{RD_DATA}" (at 21.59 78.74 0) (fields_autoplaced)
  5322. (effects (font (size 1.27 1.27)) (justify left bottom))
  5323. (uuid d790ac31-48e7-4e4b-82dc-634404122ce7)
  5324. )
  5325. (label "~{TRK_00}" (at 254.635 116.205 0) (fields_autoplaced)
  5326. (effects (font (size 1.27 1.27)) (justify left bottom))
  5327. (uuid d9cf2d61-3126-40fe-a66d-ae5145f94be8)
  5328. )
  5329. (label "~{SIDE_SEL}" (at 217.17 138.43 0) (fields_autoplaced)
  5330. (effects (font (size 1.27 1.27)) (justify left bottom))
  5331. (uuid daa508c5-8f27-4b6f-ae12-3bffccc2008e)
  5332. )
  5333. (label "~{DS0}" (at 254 53.34 0) (fields_autoplaced)
  5334. (effects (font (size 1.27 1.27)) (justify left bottom))
  5335. (uuid dad2f9a9-292b-4f7e-9524-a263f3c1ba74)
  5336. )
  5337. (label "~{M0}" (at 248.92 57.15 180) (fields_autoplaced)
  5338. (effects (font (size 1.27 1.27)) (justify right bottom))
  5339. (uuid db851147-6a1e-4d19-898c-0ba71182359b)
  5340. )
  5341. (label "~{DIRECTION}" (at 199.517 86.614 0) (fields_autoplaced)
  5342. (effects (font (size 1.27 1.27)) (justify left bottom))
  5343. (uuid dcbaec81-1b4e-42e0-bf43-284215f091f7)
  5344. )
  5345. (label "TX" (at 30.48 101.6 180) (fields_autoplaced)
  5346. (effects (font (size 1.27 1.27)) (justify right bottom))
  5347. (uuid dd70858b-2f9a-4b3f-9af5-ead3a9ba57e9)
  5348. )
  5349. (label "SPARE1" (at 248.92 36.83 180) (fields_autoplaced)
  5350. (effects (font (size 1.27 1.27)) (justify right bottom))
  5351. (uuid de370984-7922-4327-a0ba-7cd613995df4)
  5352. )
  5353. (label "~{INDEX}" (at 254.635 111.125 0) (fields_autoplaced)
  5354. (effects (font (size 1.27 1.27)) (justify left bottom))
  5355. (uuid df5c9f6b-a62e-44ba-997f-b2cf3279c7d4)
  5356. )
  5357. (label "~{RD_DATA}" (at 199.517 101.854 0) (fields_autoplaced)
  5358. (effects (font (size 1.27 1.27)) (justify left bottom))
  5359. (uuid dfcef016-1bf5-4158-8a79-72d38a522877)
  5360. )
  5361. (label "SPARE1" (at 71.12 114.3 0) (fields_autoplaced)
  5362. (effects (font (size 1.27 1.27)) (justify left bottom))
  5363. (uuid e45aa7d8-0254-4176-afd9-766820762e19)
  5364. )
  5365. (label "BE_1" (at 50.8 181.61 0) (fields_autoplaced)
  5366. (effects (font (size 1.27 1.27)) (justify left bottom))
  5367. (uuid e5becfa8-468c-448d-aaea-f82fad86fd9e)
  5368. )
  5369. (label "~{DS0}" (at 248.92 77.47 180) (fields_autoplaced)
  5370. (effects (font (size 1.27 1.27)) (justify right bottom))
  5371. (uuid e69c64f9-717d-4a97-b3df-80325ec2fa63)
  5372. )
  5373. (label "~{SIDE}" (at 248.92 138.43 180) (fields_autoplaced)
  5374. (effects (font (size 1.27 1.27)) (justify right bottom))
  5375. (uuid e70d061b-28f0-4421-ad15-0598604086e8)
  5376. )
  5377. (label "~{INDEX}" (at 30.48 127 180) (fields_autoplaced)
  5378. (effects (font (size 1.27 1.27)) (justify right bottom))
  5379. (uuid e86e4fae-9ca7-4857-a93c-bc6a3048f887)
  5380. )
  5381. (label "~{FD2S}" (at 130.81 55.88 0) (fields_autoplaced)
  5382. (effects (font (size 1.27 1.27)) (justify left bottom))
  5383. (uuid eea45988-853e-4d4d-a78a-6c4b193ae28b)
  5384. )
  5385. (label "~{DC}" (at 254.635 136.525 0) (fields_autoplaced)
  5386. (effects (font (size 1.27 1.27)) (justify left bottom))
  5387. (uuid ef20f728-7972-4cf4-a02f-8312ce301738)
  5388. )
  5389. (label "~{RDY}" (at 24.13 187.96 180) (fields_autoplaced)
  5390. (effects (font (size 1.27 1.27)) (justify right bottom))
  5391. (uuid f2b56347-0c47-4bbc-8fbc-afd4af879320)
  5392. )
  5393. (label "~{M1}" (at 254 58.42 0) (fields_autoplaced)
  5394. (effects (font (size 1.27 1.27)) (justify left bottom))
  5395. (uuid f4117d3e-819d-4d33-bf85-69e28ba32fe5)
  5396. )
  5397. (label "~{DRIVE0}" (at 226.06 77.47 180) (fields_autoplaced)
  5398. (effects (font (size 1.27 1.27)) (justify right bottom))
  5399. (uuid f5987f1b-b17c-450e-95c5-6acf6dfcf136)
  5400. )
  5401. (label "~{FLIPPY}" (at 162.687 106.934 270) (fields_autoplaced)
  5402. (effects (font (size 1.27 1.27)) (justify right bottom))
  5403. (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6)
  5404. )
  5405. (label "~{SIDE_SEL}" (at 130.81 60.96 0) (fields_autoplaced)
  5406. (effects (font (size 1.27 1.27)) (justify left bottom))
  5407. (uuid f7b74101-684a-494a-af23-daffa52c836c)
  5408. )
  5409. (label "SWDIO" (at 86.995 50.165 0) (fields_autoplaced)
  5410. (effects (font (size 1.27 1.27)) (justify left bottom))
  5411. (uuid f8621ac5-1e7e-4e87-8c69-5fd403df9470)
  5412. )
  5413. (label "~{DISKCHANGE}" (at 199.517 106.934 0) (fields_autoplaced)
  5414. (effects (font (size 1.27 1.27)) (justify left bottom))
  5415. (uuid fa85ae52-e9ec-40b9-bf10-bc4473582abb)
  5416. )
  5417. (label "~{MOTOR2}" (at 249.047 148.59 180) (fields_autoplaced)
  5418. (effects (font (size 1.27 1.27)) (justify right bottom))
  5419. (uuid fa9660e3-3456-4e33-b36e-35a410653077)
  5420. )
  5421. (label "ID1" (at 118.11 166.37 180) (fields_autoplaced)
  5422. (effects (font (size 1.27 1.27)) (justify right bottom))
  5423. (uuid fb48170c-d7f3-41ce-ac73-664c66386c51)
  5424. )
  5425. (label "TXE_N" (at 57.15 127 0) (fields_autoplaced)
  5426. (effects (font (size 1.27 1.27)) (justify left bottom))
  5427. (uuid fd276bbc-bbb7-47d1-b257-52480198750f)
  5428. )
  5429. (label "~{STEP}" (at 24.13 177.8 180) (fields_autoplaced)
  5430. (effects (font (size 1.27 1.27)) (justify right bottom))
  5431. (uuid fe15bfaa-dcda-4806-8d15-02807e914ad4)
  5432. )
  5433. (label "~{DRIVE2}" (at 130.81 81.28 0) (fields_autoplaced)
  5434. (effects (font (size 1.27 1.27)) (justify left bottom))
  5435. (uuid fe864e37-b29c-44e9-809e-7633b03d71e9)
  5436. )
  5437. (global_label "SCL_3V3" (shape input) (at 29.972 137.16 180) (fields_autoplaced)
  5438. (effects (font (size 1.27 1.27)) (justify right))
  5439. (uuid 95b348ce-a1ec-4474-b8ff-6454bee5f80d)
  5440. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.6649 137.0806 0)
  5441. (effects (font (size 1.27 1.27)) (justify right) hide)
  5442. )
  5443. )
  5444. (global_label "nRST" (shape input) (at 24.13 57.785 180) (fields_autoplaced)
  5445. (effects (font (size 1.27 1.27)) (justify right))
  5446. (uuid d6984b42-b9a8-4892-9bee-b20ffcb9eedf)
  5447. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at -226.06 -88.265 0)
  5448. (effects (font (size 1.27 1.27)) hide)
  5449. )
  5450. )
  5451. (global_label "nRST" (shape input) (at 70.485 47.625 180) (fields_autoplaced)
  5452. (effects (font (size 1.27 1.27)) (justify right))
  5453. (uuid d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652)
  5454. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 63.6373 47.625 0)
  5455. (effects (font (size 1.27 1.27)) (justify right) hide)
  5456. )
  5457. )
  5458. (global_label "SDA_3V3" (shape input) (at 29.972 139.7 180) (fields_autoplaced)
  5459. (effects (font (size 1.27 1.27)) (justify right))
  5460. (uuid f6cf5603-b183-4632-9453-2e800c25ea22)
  5461. (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.6045 139.6206 0)
  5462. (effects (font (size 1.27 1.27)) (justify right) hide)
  5463. )
  5464. )
  5465. (symbol (lib_id "Mechanical:MountingHole") (at 17.145 17.145 0) (unit 1)
  5466. (in_bom yes) (on_board yes) (dnp no)
  5467. (uuid 00000000-0000-0000-0000-000060f2641d)
  5468. (property "Reference" "H1" (at 19.685 15.9766 0)
  5469. (effects (font (size 1.27 1.27)) (justify left))
  5470. )
  5471. (property "Value" "MountingHole" (at 19.685 18.288 0)
  5472. (effects (font (size 1.27 1.27)) (justify left))
  5473. )
  5474. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (at 17.145 17.145 0)
  5475. (effects (font (size 1.27 1.27)) hide)
  5476. )
  5477. (property "Datasheet" "~" (at 17.145 17.145 0)
  5478. (effects (font (size 1.27 1.27)) hide)
  5479. )
  5480. (property "LCSC" "DNP" (at 17.145 17.145 0)
  5481. (effects (font (size 1.27 1.27)) hide)
  5482. )
  5483. (instances
  5484. (project "Greaseweazle"
  5485. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  5486. (reference "H1") (unit 1)
  5487. )
  5488. )
  5489. )
  5490. )
  5491. (symbol (lib_id "Mechanical:MountingHole") (at 17.145 22.225 0) (unit 1)
  5492. (in_bom yes) (on_board yes) (dnp no)
  5493. (uuid 00000000-0000-0000-0000-000060f2c7b9)
  5494. (property "Reference" "H2" (at 19.685 21.0566 0)
  5495. (effects (font (size 1.27 1.27)) (justify left))
  5496. )
  5497. (property "Value" "MountingHole" (at 19.685 23.368 0)
  5498. (effects (font (size 1.27 1.27)) (justify left))
  5499. )
  5500. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (at 17.145 22.225 0)
  5501. (effects (font (size 1.27 1.27)) hide)
  5502. )
  5503. (property "Datasheet" "~" (at 17.145 22.225 0)
  5504. (effects (font (size 1.27 1.27)) hide)
  5505. )
  5506. (property "LCSC" "DNP" (at 17.145 22.225 0)
  5507. (effects (font (size 1.27 1.27)) hide)
  5508. )
  5509. (instances
  5510. (project "Greaseweazle"
  5511. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  5512. (reference "H2") (unit 1)
  5513. )
  5514. )
  5515. )
  5516. )
  5517. (symbol (lib_id "Mechanical:MountingHole") (at 17.145 27.305 0) (unit 1)
  5518. (in_bom yes) (on_board yes) (dnp no)
  5519. (uuid 00000000-0000-0000-0000-000060f34430)
  5520. (property "Reference" "H3" (at 19.685 26.1366 0)
  5521. (effects (font (size 1.27 1.27)) (justify left))
  5522. )
  5523. (property "Value" "MountingHole" (at 19.685 28.448 0)
  5524. (effects (font (size 1.27 1.27)) (justify left))
  5525. )
  5526. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (at 17.145 27.305 0)
  5527. (effects (font (size 1.27 1.27)) hide)
  5528. )
  5529. (property "Datasheet" "~" (at 17.145 27.305 0)
  5530. (effects (font (size 1.27 1.27)) hide)
  5531. )
  5532. (property "LCSC" "DNP" (at 17.145 27.305 0)
  5533. (effects (font (size 1.27 1.27)) hide)
  5534. )
  5535. (instances
  5536. (project "Greaseweazle"
  5537. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  5538. (reference "H3") (unit 1)
  5539. )
  5540. )
  5541. )
  5542. )
  5543. (symbol (lib_id "Mechanical:MountingHole") (at 17.145 32.385 0) (unit 1)
  5544. (in_bom yes) (on_board yes) (dnp no)
  5545. (uuid 00000000-0000-0000-0000-000060f360e1)
  5546. (property "Reference" "H4" (at 19.685 31.2166 0)
  5547. (effects (font (size 1.27 1.27)) (justify left))
  5548. )
  5549. (property "Value" "MountingHole" (at 19.685 33.528 0)
  5550. (effects (font (size 1.27 1.27)) (justify left))
  5551. )
  5552. (property "Footprint" "MountingHole:MountingHole_3.2mm_M3" (at 17.145 32.385 0)
  5553. (effects (font (size 1.27 1.27)) hide)
  5554. )
  5555. (property "Datasheet" "~" (at 17.145 32.385 0)
  5556. (effects (font (size 1.27 1.27)) hide)
  5557. )
  5558. (property "LCSC" "DNP" (at 17.145 32.385 0)
  5559. (effects (font (size 1.27 1.27)) hide)
  5560. )
  5561. (instances
  5562. (project "Greaseweazle"
  5563. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  5564. (reference "H4") (unit 1)
  5565. )
  5566. )
  5567. )
  5568. )
  5569. (symbol (lib_id "sm6uax:STM32F730Z8T6") (at 29.21 78.74 0) (unit 2)
  5570. (in_bom yes) (on_board yes) (dnp no)
  5571. (uuid 00000000-0000-0000-0000-000060f41cbf)
  5572. (property "Reference" "U1" (at 43.18 72.009 0)
  5573. (effects (font (size 1.27 1.27)))
  5574. )
  5575. (property "Value" "STM32F730Z8T6" (at 43.18 74.3204 0)
  5576. (effects (font (size 1.27 1.27)))
  5577. )
  5578. (property "Footprint" "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (at 29.21 68.58 0)
  5579. (effects (font (size 1.27 1.27)) (justify left) hide)
  5580. )
  5581. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (at 29.21 66.04 0)
  5582. (effects (font (size 1.27 1.27)) (justify left) hide)
  5583. )
  5584. (property "LCSC" "C508478" (at 29.21 78.74 0)
  5585. (effects (font (size 1.27 1.27)) hide)
  5586. )
  5587. (pin "106" (uuid a05e62e5-8a12-4b3a-abcb-36d78716a980))
  5588. (pin "107" (uuid 02bf7031-accf-4a07-9374-b56c96ba51bd))
  5589. (pin "108" (uuid 809e78c9-703b-41bf-879e-8209a04db1e1))
  5590. (pin "120" (uuid 8acf70c6-eaf2-49d7-9d8c-075ebf31d0d3))
  5591. (pin "121" (uuid 5b9978de-deb4-4369-a133-dbacee393331))
  5592. (pin "130" (uuid dbcc2930-ef6a-44e8-8014-9620cb8e40bd))
  5593. (pin "131" (uuid 532fa493-fb02-4ce2-8c75-1264d055dd4e))
  5594. (pin "138" (uuid 224998c1-d3b5-4067-92a8-91edfcf0acc2))
  5595. (pin "143" (uuid 80e3a773-b5c2-4a32-9b19-5322cc9afdb2))
  5596. (pin "144" (uuid 062d2adc-e3f9-4242-90fa-ac44d21f6549))
  5597. (pin "16" (uuid 68a6ee81-2192-4883-9047-bf3fb7421987))
  5598. (pin "17" (uuid 63a973e8-f946-476d-a64d-50d848d46ac6))
  5599. (pin "25" (uuid 7516a090-352e-4b41-8f35-c5ddb45bfc00))
  5600. (pin "30" (uuid 3a9ec382-558b-4f6d-984b-525f80db894a))
  5601. (pin "31" (uuid 1f682622-18e5-48bc-a0fb-aa5d1b3af239))
  5602. (pin "32" (uuid feec0303-d2e1-4bef-a5cc-5b8648d9ef35))
  5603. (pin "33" (uuid 96a3f4b6-b8ec-4c19-9271-fbaac080edb4))
  5604. (pin "38" (uuid 04b81dd7-caba-4820-b03d-495f0947651c))
  5605. (pin "39" (uuid 0abc5089-9496-4301-8951-1f3113da1173))
  5606. (pin "51" (uuid 9ac0c158-d5e1-4c9d-bd73-f7a92cc162e7))
  5607. (pin "52" (uuid caa7fce5-9dd4-4478-bb7c-10cbdcf71188))
  5608. (pin "6" (uuid 5ff9fc6a-806e-49c1-8e18-55dcd8eb9ab3))
  5609. (pin "61" (uuid 0625cd49-10d2-4592-8a20-c259f8c4a606))
  5610. (pin "62" (uuid 24ab808d-3abf-4efb-a211-b18c0d7fe506))
  5611. (pin "71" (uuid 24db9dc7-cf8c-4165-b50d-ccc8a95af4d3))
  5612. (pin "72" (uuid 7d8e457b-34c7-4826-9842-0d341adf088b))
  5613. (pin "75" (uuid 3529c213-b7c7-43f0-b7fb-d27dbfa2de1c))
  5614. (pin "76" (uuid c9d5e295-8a06-45b1-b35a-c6ad2d69a6b2))
  5615. (pin "85" (uuid 3890def0-a9bf-462d-b237-11cda7ea37d8))
  5616. (pin "86" (uuid 43c11780-1021-4c47-9b81-f90559dda7fd))
  5617. (pin "94" (uuid b2211a89-b953-40db-aba2-a3fbe0a5b7da))
  5618. (pin "95" (uuid 7b2c4678-95ad-45a2-8ffc-8bad2ddefc8c))
  5619. (pin "100" (uuid 42482779-f9f2-40ab-baf7-4c1790415678))
  5620. (pin "101" (uuid e3ccee67-8018-467d-8b07-397d5feb3047))
  5621. (pin "102" (uuid 364429d4-c2db-4b92-b5b3-81a955855816))
  5622. (pin "103" (uuid 2c2edfd1-0910-4683-9b11-324fb21e0d16))
  5623. (pin "104" (uuid 8588d019-3df7-4e6c-99b4-c25e560e198f))
  5624. (pin "105" (uuid 5ff816d2-14fe-422a-aec9-0030719e3ff6))
  5625. (pin "109" (uuid 732cf7f1-1497-49fb-9df9-283f13bc9404))
  5626. (pin "110" (uuid 8afe3ccb-06c4-449f-a360-cd097848bd4d))
  5627. (pin "111" (uuid 26551ff6-d2b6-499a-9b1f-76cc044dd976))
  5628. (pin "112" (uuid 4c8451c7-cce3-4abc-89c4-dc2ac5202733))
  5629. (pin "113" (uuid ad58f393-9ae7-4f86-afbb-9666afbf3eb9))
  5630. (pin "114" (uuid 12ab9aa0-7650-4363-b78e-49387aff44ac))
  5631. (pin "115" (uuid 29bdf366-29cb-4aba-a242-14bed940e319))
  5632. (pin "116" (uuid 05cb53dc-04d8-46bb-851d-dc8d2852fc88))
  5633. (pin "117" (uuid d6f1af51-0e95-41dd-a8b8-9ae612c65faa))
  5634. (pin "118" (uuid 7fc5bab0-7e23-48c7-8069-9d335e1f094f))
  5635. (pin "119" (uuid 75565b0e-79d0-4bb9-8c23-bac6cbf61dc1))
  5636. (pin "122" (uuid 8c195c07-ef74-48f2-84eb-404421262d70))
  5637. (pin "123" (uuid 5deaca77-ce5d-4538-bbaa-4d5f26accafd))
  5638. (pin "133" (uuid bac6dc4c-de97-4edb-9ea2-b15d3b1814fc))
  5639. (pin "134" (uuid ca4119e7-0ccd-4468-af69-690a2633ead6))
  5640. (pin "135" (uuid 60daeeeb-ed6d-40d2-803e-e5526dc10d0e))
  5641. (pin "136" (uuid 7ec119d9-9cd1-4e53-8ad0-bc8cee5fc3fd))
  5642. (pin "137" (uuid f3e96e9a-d0a4-412a-8548-1b08376f1473))
  5643. (pin "139" (uuid a43a8018-3e71-4d1f-97fa-068c488081d4))
  5644. (pin "140" (uuid ca8f82f2-88a8-426c-8f24-a25219306dd1))
  5645. (pin "26" (uuid 17282933-a81a-4b61-8ca9-db5ca090bd86))
  5646. (pin "27" (uuid cadab07e-00a4-4e4a-b247-861666897cd6))
  5647. (pin "28" (uuid 2189d1be-0ed2-4565-afed-3c37f89f419d))
  5648. (pin "29" (uuid a6c2c227-1aac-42d4-a023-22a436a5d746))
  5649. (pin "34" (uuid 2fa59316-d176-4553-aee4-a43b611b0503))
  5650. (pin "35" (uuid 11f41cfe-3fc1-4e7b-8256-ae3816fc9398))
  5651. (pin "36" (uuid b8cfb57c-c563-47fd-969c-7b1c7851ffe7))
  5652. (pin "37" (uuid 74d6a48f-dc35-488c-8425-9e6684eb439c))
  5653. (pin "40" (uuid 6dd26538-ec73-4f8d-827f-8d03adf27aa0))
  5654. (pin "41" (uuid 1dec311a-aa54-4a68-a19e-4a94a75ae4be))
  5655. (pin "42" (uuid 449aa4fd-01df-4352-b690-80e85a4798b8))
  5656. (pin "43" (uuid 4f9e6cae-fab3-4485-8e9d-93d0810a8d1e))
  5657. (pin "44" (uuid 5ac6169e-4082-4f07-86af-bbbe1039f563))
  5658. (pin "45" (uuid f3dafbe0-98f5-43c0-a9b4-9aa3fcdaa621))
  5659. (pin "46" (uuid 68759b10-ad4f-4ff4-8fe7-98d34bd21274))
  5660. (pin "47" (uuid 24fb8ab1-dba6-4a17-9e07-642a7d579224))
  5661. (pin "48" (uuid a3d30bdf-c68b-4ea0-97c2-1ef75d6f7f78))
  5662. (pin "69" (uuid 03133b52-4c75-4a2b-a5da-286e63de596a))
  5663. (pin "7" (uuid 38c640a4-73cd-4a06-aae4-d89190ab1acc))
  5664. (pin "70" (uuid ea404c26-60ae-403d-bc79-976a0d3ac5e2))
  5665. (pin "73" (uuid c4e3d562-90f9-4653-bc60-00a5d8001f40))
  5666. (pin "74" (uuid 9280e48f-bc81-469e-897a-a0d1e8f16506))
  5667. (pin "77" (uuid d5999206-eb84-4af8-bdb9-b2b0a802279d))
  5668. (pin "78" (uuid 1bf4d2d7-d987-4596-9a7d-e95a7d391735))
  5669. (pin "79" (uuid 09c41a12-7105-4f5b-ba67-01f5510a9d75))
  5670. (pin "8" (uuid c7420b7d-0c35-477a-a996-b9e7e88b90ba))
  5671. (pin "80" (uuid 6aadae28-7197-43a0-ada3-0c09939cd024))
  5672. (pin "81" (uuid 7140ec3e-8241-4c98-9305-3e76208507dc))
  5673. (pin "82" (uuid a8a7dad5-f843-4c5a-b6f9-e002393e1baf))
  5674. (pin "83" (uuid 64bf311b-f54a-4dee-a743-fade97165da2))
  5675. (pin "84" (uuid 90e33c19-4c6f-4ef5-8114-69630f997371))
  5676. (pin "87" (uuid a7de3a40-26af-41ea-a03a-cb1cca262e27))
  5677. (pin "88" (uuid c7ff192a-cc63-4eb7-9ae1-ff75956be99c))
  5678. (pin "9" (uuid aacc088b-2901-4053-9010-eb52148e7f6d))
  5679. (pin "96" (uuid 101b6eaf-af0e-4209-a274-ca7157d23f85))
  5680. (pin "97" (uuid 7ad57f9c-b465-4d3d-8576-fb4f8bda29ba))
  5681. (pin "98" (uuid d1d2ca14-a057-486d-b8ae-dcc5a5c5bab8))
  5682. (pin "99" (uuid f3135e8c-47df-4d28-8958-6b5d38f6bcea))
  5683. (pin "1" (uuid 6d649c1c-1282-4585-af76-f4fca42e46bf))
  5684. (pin "10" (uuid f32158f0-9641-488d-a662-cb90cabc2ffa))
  5685. (pin "11" (uuid e6cfc905-0aa2-4615-b9a4-09151df5ec80))
  5686. (pin "12" (uuid be228e25-5e63-4f49-8bd5-0f7908aa4a52))
  5687. (pin "124" (uuid 30303d00-168f-4d7b-bfbb-36c0a42eecc2))
  5688. (pin "125" (uuid b303cee4-917d-46e4-ae71-4d445c63f3f2))
  5689. (pin "126" (uuid 70b6714e-3413-4a01-bcd9-c25e9272b2c2))
  5690. (pin "127" (uuid 655bbcc7-450f-4b1b-9863-ed3ef68b6780))
  5691. (pin "128" (uuid d4a2f439-5070-4488-bccc-f5f0e561c193))
  5692. (pin "129" (uuid 9011c783-3ce3-4943-ad88-9a8d7a8e3340))
  5693. (pin "13" (uuid 4eb0838e-81f5-4001-8e5c-7254680d8140))
  5694. (pin "132" (uuid 068e5b76-90a7-46f8-90c3-158e6ab74c00))
  5695. (pin "14" (uuid 413c3ce6-cc3e-4840-a36e-4690f23ae2e0))
  5696. (pin "141" (uuid 44aacbc5-f286-4d18-a56e-331bb728348a))
  5697. (pin "142" (uuid fcd75c1c-4eac-4b4a-959f-00fd9176fe45))
  5698. (pin "15" (uuid 819d1b2f-030f-4240-aabf-35156e55f88a))
  5699. (pin "18" (uuid 3010cad3-6508-4489-a6a3-420c2b28a980))
  5700. (pin "19" (uuid f274271a-92b6-4224-bea8-688aab8c1b8d))
  5701. (pin "2" (uuid b47cc8d8-429e-4448-9d6d-a4db78f6702b))
  5702. (pin "20" (uuid 07fc1b66-6fe9-4203-b202-dbaf9df1b7fb))
  5703. (pin "21" (uuid 4b689846-0dc3-4ed1-8930-5f4de9a36c03))
  5704. (pin "22" (uuid a9e349b6-edaa-4b78-ae40-3c9502ee17a7))
  5705. (pin "23" (uuid b258de74-450e-49f1-b11d-7390d420ca7f))
  5706. (pin "24" (uuid 026bbe15-4b46-4de0-b150-391ad62f2a39))
  5707. (pin "3" (uuid 699d0d90-a704-4170-8887-b235d7d19d43))
  5708. (pin "4" (uuid 0b26c560-e5ea-4520-a280-9bd29d2f7728))
  5709. (pin "49" (uuid e6b52cc5-6b6f-44ac-9a38-6e67e25349db))
  5710. (pin "5" (uuid 6290267d-996a-4793-898d-3d73e9b493f4))
  5711. (pin "50" (uuid 0d7c6cef-243f-407f-9d8a-bfdc54b0b1c5))
  5712. (pin "53" (uuid 82eb952e-c83d-43fb-a22c-559f0b613842))
  5713. (pin "54" (uuid e16c1e87-65cb-4621-9471-e57bbcd22758))
  5714. (pin "55" (uuid f51cda7d-99c3-47ec-a8c7-e02a13a859cf))
  5715. (pin "56" (uuid 97a2828f-4004-40bc-9f49-fa4285e56d03))
  5716. (pin "57" (uuid 6110dc1b-091a-47bf-ad4d-4b4dc44b1ef8))
  5717. (pin "58" (uuid 5aca0a57-47f6-49f3-bd96-8dc9ba2237bd))
  5718. (pin "59" (uuid 5f268bd8-de1b-4ec1-b1a0-a775bfa4f3a0))
  5719. (pin "60" (uuid d64759f0-e618-48ef-b1cd-eff8f698a5c7))
  5720. (pin "63" (uuid f178198c-9ec6-4c88-ad7f-ca2b81d7a10e))
  5721. (pin "64" (uuid 25623d0c-fbd4-4505-9b34-e9d50fbc4dd3))
  5722. (pin "65" (uuid 80c66b59-3f8c-4eb6-8cbc-5b50d25222d4))
  5723. (pin "66" (uuid 6ac7c62a-b80e-414a-a35c-46ec0d4f368f))
  5724. (pin "67" (uuid 1cb4ca17-2bb6-4c65-9bee-55b74c7921ed))
  5725. (pin "68" (uuid 5ac87a21-4dc6-496f-9d04-dbcfb3cc1594))
  5726. (pin "89" (uuid 69c75556-b676-4bff-a2fa-62c3d6aa45b0))
  5727. (pin "90" (uuid 6f27504b-4bfd-426d-a319-fb0e82d6e59f))
  5728. (pin "91" (uuid fbfdeae9-9585-4409-bdc4-09e398560622))
  5729. (pin "92" (uuid 8ef3ba74-1fba-4e4e-b2a6-4a7fe882a320))
  5730. (pin "93" (uuid 7ea403ed-1fad-4752-9907-6333e3f7d475))
  5731. (instances
  5732. (project "Greaseweazle"
  5733. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  5734. (reference "U1") (unit 2)
  5735. )
  5736. )
  5737. )
  5738. )
  5739. (symbol (lib_id "Greaseweazle:STM32F730Z8T6") (at 78.74 78.74 0) (unit 3)
  5740. (in_bom yes) (on_board yes) (dnp no)
  5741. (uuid 00000000-0000-0000-0000-000060f442ce)
  5742. (property "Reference" "U1" (at 92.71 72.009 0)
  5743. (effects (font (size 1.27 1.27)))
  5744. )
  5745. (property "Value" "STM32F730Z8T6" (at 92.71 74.3204 0)
  5746. (effects (font (size 1.27 1.27)))
  5747. )
  5748. (property "Footprint" "Greaseweazle:STMicroelectronics-LQFP144-1A-0-3-IPC_A" (at 78.74 68.58 0)
  5749. (effects (font (size 1.27 1.27)) (justify left) hide)
  5750. )
  5751. (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f730r8.pdf" (at 78.74 66.04 0)
  5752. (effects (font (size 1.27 1.27)) (justify left) hide)
  5753. )
  5754. (property "LCSC" "C508478" (at 78.74 78.74 0)
  5755. (effects (font (size 1.27 1.27)) hide)
  5756. )
  5757. (pin "106" (uuid 12bb0dd0-2751-49c8-b8a0-b24197d809ae))
  5758. (pin "107" (uuid 4c2bc665-c349-4443-af58-89ff222c9d4a))
  5759. (pin "108" (uuid cad3adc8-7365-4320-aba5-368fed95921c))
  5760. (pin "120" (uuid 4b319c7e-f44b-4e36-8f39-15b35906b029))
  5761. (pin "121" (uuid 0cf2131a-a663-40c2-9c6c-8d1a79672dac))
  5762. (pin "130" (uuid 73972f5c-83a0-449a-98df-036c48a5bc7c))
  5763. (pin "131" (uuid 249603fc-9620-482d-a9bf-7cca0ea26b4c))
  5764. (pin "138" (uuid c4d1d1d8-b03a-45c9-b7b9-7667097d0935))
  5765. (pin "143" (uuid 1941afb5-18b6-48ff-b60d-a2e54b07b19a))
  5766. (pin "144" (uuid 558d5913-e9e6-4f32-9895-25e6abba5cc9))
  5767. (pin "16" (uuid 6726d07a-c683-45c1-8f9b-c762308dc74f))
  5768. (pin "17" (uuid 82d3ec7c-2174-4eb3-bf8c-da3042c9e869))
  5769. (pin "25" (uuid f5ce3cfc-eea8-4ebc-bad6-8b410e4e4be4))
  5770. (pin "30" (uuid eed2b6e7-fe18-47ee-a582-5f1a01af7f53))
  5771. (pin "31" (uuid e9187bba-2f81-4433-82d7-7a6b4a24f239))
  5772. (pin "32" (uuid ddda7f73-1b94-4276-a6c3-08985d578fd5))
  5773. (pin "33" (uuid d1a40ce8-1fd3-4997-85de-cf0ed28ea797))
  5774. (pin "38" (uuid 46d7efef-ffba-4bc1-bd17-2217105fbb13))
  5775. (pin "39" (uuid 60f6134a-06bb-466e-804b-db7370bcaa72))
  5776. (pin "51" (uuid e1131acc-e2dc-42b2-9152-da01844c203d))
  5777. (pin "52" (uuid b187fe55-b577-4eff-a078-cc74e8a17cd6))
  5778. (pin "6" (uuid 0e7a63cd-41e8-4996-bffb-2beb71c9dc40))
  5779. (pin "61" (uuid e493ba3e-2aa0-4869-839e-d43eee0d5004))
  5780. (pin "62" (uuid 21bed587-b569-4f8f-9c15-87106699428e))
  5781. (pin "71" (uuid e7fc54ab-8a9f-43d1-856a-e0a8dd6b407f))
  5782. (pin "72" (uuid e768bdb2-49d1-4141-b1ce-f08e7702b86d))
  5783. (pin "75" (uuid b4aff9c3-d37b-4504-b7a8-ea8744c0b108))
  5784. (pin "76" (uuid e46fc7e3-355e-4a65-9c37-5358eee318a1))
  5785. (pin "85" (uuid e347177b-0bce-4338-81b9-b69e106d6363))
  5786. (pin "86" (uuid 5aaf7d65-cb0f-46d7-a5b0-270e64c2b7ea))
  5787. (pin "94" (uuid 2fa53027-e822-469e-a70f-48ecb1d460fb))
  5788. (pin "95" (uuid 6e07f4fc-7b6b-4ac2-a212-18f0f8a75ddb))
  5789. (pin "100" (uuid 95ab5127-1825-4d95-9ead-972cdae77fe1))
  5790. (pin "101" (uuid 830290da-4ba0-4310-b3f4-a9dd322c15ba))
  5791. (pin "102" (uuid 9a43532a-adfe-4839-9757-e5822ad0cf8f))
  5792. (pin "103" (uuid a7d862c2-e81a-4eb1-9f33-edcbe2644983))
  5793. (pin "104" (uuid 61a222aa-ec86-4d2f-b4fe-65cf869efecd))
  5794. (pin "105" (uuid 924dd16a-7351-4ba1-837d-0e20ef5d36ad))
  5795. (pin "109" (uuid f6c0d718-237d-46f0-985f-5ef1fa49abda))
  5796. (pin "110" (uuid 20b55ca4-300c-4df4-86e8-5673023ef44b))
  5797. (pin "111" (uuid be1422e5-163a-414a-be6a-e7bb2720c15b))
  5798. (pin "112" (uuid 6e45b5ab-a78f-45ac-b379-782aebfb39f0))
  5799. (pin "113" (uuid dabaf7df-9122-4b3a-9aa6-7e3efe197b77))
  5800. (pin "114" (uuid 388ff6d3-5f5c-49de-ace5-726b29bf15f3))
  5801. (pin "115" (uuid 55f29105-0630-4677-b597-eb66ae4aac9f))
  5802. (pin "116" (uuid 29ccb7d3-5883-403c-b848-f6d5a38c8510))
  5803. (pin "117" (uuid 41d8b032-46b3-4b06-ae02-9aef37534c7e))
  5804. (pin "118" (uuid 8aba5d26-4a26-4fde-8cad-e65f58147c1e))
  5805. (pin "119" (uuid 51dec9a6-d90c-49ff-9f15-1fe809a68cbb))
  5806. (pin "122" (uuid 43d13ba6-c1aa-4680-95de-383e78c6ab1b))
  5807. (pin "123" (uuid 9d167048-c558-41be-899a-44c8a5e2bc1b))
  5808. (pin "133" (uuid 022e5ab7-7eaa-4687-8450-a7c4facff5e2))
  5809. (pin "134" (uuid 60affab8-618b-419d-9d90-e446ee931e9f))
  5810. (pin "135" (uuid d45d2567-2410-4685-9328-a7c28532e655))
  5811. (pin "136" (uuid 307a20af-75b0-404a-ae20-bb31dc419cdd))
  5812. (pin "137" (uuid 3ab54aef-a833-4fbd-a46d-43d255ab729b))
  5813. (pin "139" (uuid 15b25213-ef96-441f-bdfb-519f8fea6db1))
  5814. (pin "140" (uuid 09c8d343-d1a3-4104-a2fd-9f9f009bf578))
  5815. (pin "26" (uuid bc25ed28-815b-4cac-939f-06195e40b0e7))
  5816. (pin "27" (uuid ca879304-d446-4e3a-942e-effcb507b3c1))
  5817. (pin "28" (uuid a9a988aa-37e8-496f-a40f-04956cc19bb8))
  5818. (pin "29" (uuid 57d6a12a-f4e7-4e20-8336-dee786be9f8a))
  5819. (pin "34" (uuid b98742f9-b09d-4e8f-8bc0-8b1c1a3b1508))
  5820. (pin "35" (uuid 67eb1cf3-3212-49ac-9f35-9f8448e723fa))
  5821. (pin "36" (uuid 41cf983c-2fb1-4301-b7e4-1c03a6748790))
  5822. (pin "37" (uuid 4e648328-5961-45a4-a8b7-54114b77da92))
  5823. (pin "40" (uuid 4466e777-034d-4701-8a20-bbd45ec8f3a2))
  5824. (pin "41" (uuid 39a350a5-8e7e-4218-8c61-e1a35b6b6cbe))
  5825. (pin "42" (uuid eae394dd-437c-4280-87fa-9ffe297cb407))
  5826. (pin "43" (uuid 829fc960-9294-4a1b-a541-a5881d5d8b87))
  5827. (pin "44" (uuid ff72f2ac-223e-4f10-9aba-70030ae49d23))
  5828. (pin "45" (uuid 6a0a9d55-9ce5-4fe8-b056-8138553a75e2))
  5829. (pin "46" (uuid fef9b3d3-8489-41c5-83f7-9ecdd6ee41db))
  5830. (pin "47" (uuid ff478cd3-6e9b-4b32-a85f-44feb5d240d9))
  5831. (pin "48" (uuid 449676b9-f159-4bb0-b989-a14409414101))
  5832. (pin "69" (uuid 9d998291-7199-43b5-8012-ae1b81cd2209))
  5833. (pin "7" (uuid 5ee817df-f860-4648-acb2-57a8b1aab39a))
  5834. (pin "70" (uuid 6d0cd76b-3d82-4f34-bc8d-c250f3bb52a6))
  5835. (pin "73" (uuid 3aa35793-28de-4af4-8e5a-05e40718fb72))
  5836. (pin "74" (uuid fbc28f53-e422-4a08-bce2-9e712d8c3d4c))
  5837. (pin "77" (uuid bf25e3ed-c674-4a42-88bc-7e316a8c4952))
  5838. (pin "78" (uuid 0dee9048-ab48-4861-853e-9e5553970e40))
  5839. (pin "79" (uuid 5e7f9c7f-ec12-48b7-8d41-b8250aaa20f3))
  5840. (pin "8" (uuid 78bb75db-007d-4457-9fce-c434481a0a66))
  5841. (pin "80" (uuid a9a27a77-db72-45bd-ae5c-e6b003a899e0))
  5842. (pin "81" (uuid fd650954-e4d2-405d-acdc-fcedfc08870c))
  5843. (pin "82" (uuid 8c4257f8-d2f3-4596-9858-359bebba1408))
  5844. (pin "83" (uuid ce93465f-dd12-4cd3-ab70-11b6149fe818))
  5845. (pin "84" (uuid 9ca070a5-ad16-4aec-9145-dbc1b7ca53f0))
  5846. (pin "87" (uuid cf674aad-8cf2-4c6a-861d-37a02ccc3486))
  5847. (pin "88" (uuid e639a79e-60af-4ac0-ae4f-e3863f43674e))
  5848. (pin "9" (uuid a3a71a9a-18b1-4f1b-89d2-d256e1cbf445))
  5849. (pin "96" (uuid 09c51243-dded-47db-a760-e531f07b4d04))
  5850. (pin "97" (uuid fa22b361-f661-42fd-ab6f-a4b1772bac2e))
  5851. (pin "98" (uuid 7a38e764-5ee5-4cc9-9adf-f33c2fc3a690))
  5852. (pin "99" (uuid 746be952-39eb-4630-ae6a-b8653a50e99b))
  5853. (pin "1" (uuid f3639215-b551-487d-ae8c-60273667099a))
  5854. (pin "10" (uuid e33d7611-a840-4788-a1e6-68497c6522b2))
  5855. (pin "11" (uuid b24ce7c7-0154-43f1-b8a3-d77f7357f530))
  5856. (pin "12" (uuid 4a258637-74af-4e31-9499-73ec42eb090e))
  5857. (pin "124" (uuid cf06ffd0-8420-4e50-a7fb-7ba5b412320a))
  5858. (pin "125" (uuid adf48ab3-4e39-4561-abfa-0696b06a797e))
  5859. (pin "126" (uuid a89423a0-ed83-46d2-9347-3f642d13e46e))
  5860. (pin "127" (uuid b179feb9-2f49-4e0e-a200-fc5a38d984ae))
  5861. (pin "128" (uuid 7cd7f63a-c80d-4e72-9ceb-3478c0ef1738))
  5862. (pin "129" (uuid 9b9e4f49-fa16-42db-844d-6f607afeb674))
  5863. (pin "13" (uuid 7aa76fbf-6d13-485a-8bf9-4e821ab52578))
  5864. (pin "132" (uuid 429a8d1d-c10a-4b01-ac24-ecfeb9734155))
  5865. (pin "14" (uuid 10f95310-255b-493c-ac24-50ebb7de2e30))
  5866. (pin "141" (uuid 32e1aed6-e06d-402f-b13b-cddeae58cd61))
  5867. (pin "142" (uuid 8c9b65b8-604e-4402-84ed-ae1f6870ba9f))
  5868. (pin "15" (uuid 789a3be2-3ddf-4185-a259-98f054b74afa))
  5869. (pin "18" (uuid 720d84a5-d456-43d5-8a65-667f26a4e24a))
  5870. (pin "19" (uuid 6f11d598-f7c5-44d6-806f-724d5c4e20f0))
  5871. (pin "2" (uuid c0e39e81-4fdf-4cb3-9d6d-7e082337b449))
  5872. (pin "20" (uuid 06fbe29b-b299-4f32-a6dd-c90c02612952))
  5873. (pin "21" (uuid 21913590-4e2f-43fa-bbd7-cb7f24ddacd5))
  5874. (pin "22" (uuid e6e13d1c-360e-4fa0-9b92-15c11b8ce28d))
  5875. (pin "23" (uuid 0ca10eb8-7e39-4592-a016-4b54e43b5dfb))
  5876. (pin "24" (uuid 8d3c9ae7-a390-4a71-aed1-567e25c5f448))
  5877. (pin "3" (uuid 17a1b522-2ee3-4822-93fe-d4342cbed430))
  5878. (pin "4" (uuid 7562f07e-e5bb-40bf-9bac-e4fbbb2b9fe8))
  5879. (pin "49" (uuid e346bbd7-a637-4efd-888e-008ad9afccf3))
  5880. (pin "5" (uuid bc418028-adfa-4d91-91e8-622122f2a484))
  5881. (pin "50" (uuid 6d6a02c4-9d75-4f69-8d2b-d9dac1f98fb9))
  5882. (pin "53" (uuid c80f4224-5cb4-44fa-8af7-ac2df201f153))
  5883. (pin "54" (uuid d757e929-0349-4135-8c0f-677905da760b))
  5884. (pin "55" (uuid 22a0b7ff-6314-4a7c-939b-f23f858ed1b1))
  5885. (pin "56" (uuid b17dc3ba-b6c2-441d-923c-8e9e359300be))
  5886. (pin "57" (uuid 50b0b2da-09f5-4fbc-9ecb-6495e9c1af44))
  5887. (pin "58" (uuid b1dd9b3e-a7ee-4111-ab24-3bd333096d17))
  5888. (pin "59" (uuid cf20bfb1-8393-4551-8655-dcac7a3c32ba))
  5889. (pin "60" (uuid f1c1d2c5-60a1-4d40-b95d-5f8af761ab9f))
  5890. (pin "63" (uuid 80bf846b-a650-46bb-9f84-c7cc6d8ad54b))
  5891. (pin "64" (uuid deb52071-5967-4bea-abd3-18ec89d3a79e))
  5892. (pin "65" (uuid 53bbcfdd-728c-4b1c-891d-759e34ac482f))
  5893. (pin "66" (uuid d8f76f48-be08-432a-ba04-7fc13b308ec8))
  5894. (pin "67" (uuid 505a33df-d18d-42f5-b21a-0d35edec1115))
  5895. (pin "68" (uuid ac33d4ae-6cf8-443e-a0ba-e1364b8b2396))
  5896. (pin "89" (uuid d469820a-9cb5-40d5-b8ac-bedb08233feb))
  5897. (pin "90" (uuid c0d8c685-a6f1-4a7f-b389-a18c80b6d37c))
  5898. (pin "91" (uuid a9303d62-f256-43ac-bb4a-8797c11ca40d))
  5899. (pin "92" (uuid e3e0c89f-2ade-4dfb-a48f-3e2e411609ed))
  5900. (pin "93" (uuid 4848bfef-8d8f-406b-a025-f4f77ca61ae7))
  5901. (instances
  5902. (project "Greaseweazle"
  5903. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  5904. (reference "U1") (unit 3)
  5905. )
  5906. )
  5907. )
  5908. )
  5909. (symbol (lib_id "Connector_Generic:Conn_02x17_Odd_Even") (at 190.627 86.614 0) (unit 1)
  5910. (in_bom yes) (on_board yes) (dnp no)
  5911. (uuid 00000000-0000-0000-0000-000060f4c92b)
  5912. (property "Reference" "J1" (at 191.897 60.7822 0)
  5913. (effects (font (size 1.27 1.27)))
  5914. )
  5915. (property "Value" "Conn_02x17_Odd_Even" (at 191.897 63.0936 0)
  5916. (effects (font (size 1.27 1.27)))
  5917. )
  5918. (property "Footprint" "Connector_IDC:IDC-Header_2x17_P2.54mm_Vertical" (at 190.627 86.614 0)
  5919. (effects (font (size 1.27 1.27)) hide)
  5920. )
  5921. (property "Datasheet" "~" (at 190.627 86.614 0)
  5922. (effects (font (size 1.27 1.27)) hide)
  5923. )
  5924. (property "LCSC" "C707014" (at 190.627 86.614 0)
  5925. (effects (font (size 1.27 1.27)) hide)
  5926. )
  5927. (pin "1" (uuid b8cc6224-2f81-46b6-a77a-773baaf2b6d0))
  5928. (pin "10" (uuid 0aa86141-1459-4a87-9396-130aede42323))
  5929. (pin "11" (uuid 12f39ff6-5f59-4b51-a71a-df15b8dcf55b))
  5930. (pin "12" (uuid 8765664d-be73-4392-8c1b-8c6b12024e16))
  5931. (pin "13" (uuid 93040d74-6406-463e-a97a-a48b20506717))
  5932. (pin "14" (uuid 17c3a4cd-f30e-4042-b755-1ee0a4149172))
  5933. (pin "15" (uuid 71f79fc4-fa4c-48ce-bde7-3b66cd98e9ff))
  5934. (pin "16" (uuid d4b4f1c6-f9f0-4c00-8754-53e7b5e5e549))
  5935. (pin "17" (uuid de15fe5d-45d2-4dca-ba71-66ab9f54444b))
  5936. (pin "18" (uuid 0214ea21-f575-44a3-b503-44671f335a8e))
  5937. (pin "19" (uuid 833feb1f-5f9c-4353-9923-1e7f4dc21a46))
  5938. (pin "2" (uuid 19a3b9b1-d4e3-4222-a8ec-927f2152e5bb))
  5939. (pin "20" (uuid ab2b3c3d-85e3-4392-8f47-e18919aff965))
  5940. (pin "21" (uuid 4e50f9bc-3e87-4c13-870e-8a8fad85b563))
  5941. (pin "22" (uuid cf81a8d6-b162-4b49-b351-4b76e65b25ec))
  5942. (pin "23" (uuid c3f298a1-f22c-4d8c-a17a-8a0ae31cd9ae))
  5943. (pin "24" (uuid 4b66930d-e1f9-40d8-93e4-e8a8841729c3))
  5944. (pin "25" (uuid d5306c93-9546-4845-8d44-737008a08930))
  5945. (pin "26" (uuid 161d4802-fde1-46e2-a40e-e7d76d4c0ed0))
  5946. (pin "27" (uuid 4d597a20-72a5-4a02-bc54-623ca5389e9a))
  5947. (pin "28" (uuid affee555-ded7-46de-bff4-a724c2bcaa09))
  5948. (pin "29" (uuid 36a622e5-4091-4a5e-bae0-b659b4043931))
  5949. (pin "3" (uuid 23c58602-2348-4da2-9507-8278ff434ceb))
  5950. (pin "30" (uuid 13c91444-9126-4814-8b6a-ce70c8b9abe0))
  5951. (pin "31" (uuid 0b9077a1-b269-4aa9-aaed-746706b0433a))
  5952. (pin "32" (uuid 6fc77fe5-79e6-450e-b23d-5030c1d9462e))
  5953. (pin "33" (uuid 8dc812a5-09db-44f1-853e-af14748d8d08))
  5954. (pin "34" (uuid 0131a8bc-235f-48c3-b245-7e00786eaf66))
  5955. (pin "4" (uuid ebf7c116-2f1b-4bae-8c7f-65453f8cf504))
  5956. (pin "5" (uuid 7b9869b5-7af6-411e-acd5-a10638854032))
  5957. (pin "6" (uuid 448d47e1-fe0b-4e38-aff7-c747fbf3150a))
  5958. (pin "7" (uuid 205f2f89-709d-4ac9-aae2-d82248cd0ff8))
  5959. (pin "8" (uuid 27f20f52-9431-4e60-a894-1ea89f12d744))
  5960. (pin "9" (uuid c7cbdd03-1f8f-4c83-b4b0-98f201e67593))
  5961. (instances
  5962. (project "Greaseweazle"
  5963. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  5964. (reference "J1") (unit 1)
  5965. )
  5966. )
  5967. )
  5968. )
  5969. (symbol (lib_id "power:GND") (at 177.927 109.474 0) (unit 1)
  5970. (in_bom yes) (on_board yes) (dnp no)
  5971. (uuid 00000000-0000-0000-0000-000060f79d03)
  5972. (property "Reference" "#PWR01" (at 177.927 115.824 0)
  5973. (effects (font (size 1.27 1.27)) hide)
  5974. )
  5975. (property "Value" "GND" (at 178.054 113.8682 0)
  5976. (effects (font (size 1.27 1.27)))
  5977. )
  5978. (property "Footprint" "" (at 177.927 109.474 0)
  5979. (effects (font (size 1.27 1.27)) hide)
  5980. )
  5981. (property "Datasheet" "" (at 177.927 109.474 0)
  5982. (effects (font (size 1.27 1.27)) hide)
  5983. )
  5984. (pin "1" (uuid f6ca2bfd-4c67-4258-aa2f-7ddc30211957))
  5985. (instances
  5986. (project "Greaseweazle"
  5987. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  5988. (reference "#PWR01") (unit 1)
  5989. )
  5990. )
  5991. )
  5992. )
  5993. (symbol (lib_id "Device:R_Small") (at 171.577 106.934 270) (unit 1)
  5994. (in_bom yes) (on_board yes) (dnp no)
  5995. (uuid 00000000-0000-0000-0000-000060f7b3e5)
  5996. (property "Reference" "R4" (at 171.577 101.9556 90)
  5997. (effects (font (size 1.27 1.27)))
  5998. )
  5999. (property "Value" "3k" (at 171.577 104.267 90)
  6000. (effects (font (size 1.27 1.27)))
  6001. )
  6002. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 171.577 106.934 0)
  6003. (effects (font (size 1.27 1.27)) hide)
  6004. )
  6005. (property "Datasheet" "~" (at 171.577 106.934 0)
  6006. (effects (font (size 1.27 1.27)) hide)
  6007. )
  6008. (property "LCSC" "C137987" (at 171.577 106.934 0)
  6009. (effects (font (size 1.27 1.27)) hide)
  6010. )
  6011. (pin "1" (uuid 76037a64-7f40-4d35-9914-f40473a56e64))
  6012. (pin "2" (uuid f2aee87f-c31d-42db-870e-2f0cf1ab9c8b))
  6013. (instances
  6014. (project "Greaseweazle"
  6015. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6016. (reference "R4") (unit 1)
  6017. )
  6018. )
  6019. )
  6020. )
  6021. (symbol (lib_id "Device:R_Small") (at 166.497 101.854 180) (unit 1)
  6022. (in_bom yes) (on_board yes) (dnp no)
  6023. (uuid 00000000-0000-0000-0000-000060f7de7e)
  6024. (property "Reference" "R3" (at 167.9956 100.6856 0)
  6025. (effects (font (size 1.27 1.27)) (justify right))
  6026. )
  6027. (property "Value" "3k" (at 167.9956 102.997 0)
  6028. (effects (font (size 1.27 1.27)) (justify right))
  6029. )
  6030. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 166.497 101.854 0)
  6031. (effects (font (size 1.27 1.27)) hide)
  6032. )
  6033. (property "Datasheet" "~" (at 166.497 101.854 0)
  6034. (effects (font (size 1.27 1.27)) hide)
  6035. )
  6036. (property "LCSC" "C137987" (at 166.497 101.854 0)
  6037. (effects (font (size 1.27 1.27)) hide)
  6038. )
  6039. (pin "1" (uuid e06a59e6-3afe-4857-8998-a5946749a3af))
  6040. (pin "2" (uuid 7dc2e59d-84c1-4673-a0c3-d287d43e80c1))
  6041. (instances
  6042. (project "Greaseweazle"
  6043. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6044. (reference "R3") (unit 1)
  6045. )
  6046. )
  6047. )
  6048. )
  6049. (symbol (lib_id "74xx:SN74LS07") (at 234.95 27.94 180) (unit 1)
  6050. (in_bom yes) (on_board yes) (dnp no)
  6051. (uuid 00000000-0000-0000-0000-000060f860dc)
  6052. (property "Reference" "U3" (at 229.87 25.4 0)
  6053. (effects (font (size 1.27 1.27)))
  6054. )
  6055. (property "Value" "SN74LS07" (at 245.11 24.13 0)
  6056. (effects (font (size 1.27 1.27)))
  6057. )
  6058. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 27.94 0)
  6059. (effects (font (size 1.27 1.27)) hide)
  6060. )
  6061. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 27.94 0)
  6062. (effects (font (size 1.27 1.27)) hide)
  6063. )
  6064. (property "LCSC" "C371970" (at 234.95 27.94 0)
  6065. (effects (font (size 1.27 1.27)) hide)
  6066. )
  6067. (pin "1" (uuid 6295c533-797a-4550-b2d2-5bed7c2d6f23))
  6068. (pin "2" (uuid 6b6a5170-71ed-4b5e-8698-0c07fcb58794))
  6069. (pin "3" (uuid c47957ee-3a4f-4950-be3a-833e1056c65a))
  6070. (pin "4" (uuid 88a98547-b96b-4c2e-ad95-3d3445aaf284))
  6071. (pin "5" (uuid f183d8f8-b67b-4ed9-8345-38014e6af716))
  6072. (pin "6" (uuid 83f0e17e-1c01-41a9-9a33-9d21a5bbd23c))
  6073. (pin "8" (uuid c7ad971d-b604-4e7a-9b77-19a07098e0e2))
  6074. (pin "9" (uuid a7a90992-576f-47b9-9d1e-00dc4f4e2285))
  6075. (pin "10" (uuid 3356c3eb-7abe-4986-93dd-9397999c2389))
  6076. (pin "11" (uuid 95b90317-399a-442c-9fa3-0efd163f3c0d))
  6077. (pin "12" (uuid d6dfff7f-7cd4-4ec0-b698-cb843ad68d5f))
  6078. (pin "13" (uuid 8044f13f-6974-4e7d-83a1-8e482605b584))
  6079. (pin "14" (uuid c6bb35fd-6291-401c-a73d-df8a567dbec6))
  6080. (pin "7" (uuid a4164ae9-ff81-4e0b-a0a8-4b70a2d3c084))
  6081. (instances
  6082. (project "Greaseweazle"
  6083. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6084. (reference "U3") (unit 1)
  6085. )
  6086. )
  6087. )
  6088. )
  6089. (symbol (lib_id "74xx:SN74LS07") (at 234.95 77.47 180) (unit 2)
  6090. (in_bom yes) (on_board yes) (dnp no)
  6091. (uuid 00000000-0000-0000-0000-000060f8e956)
  6092. (property "Reference" "U3" (at 229.87 73.66 0)
  6093. (effects (font (size 1.27 1.27)))
  6094. )
  6095. (property "Value" "SN74LS07" (at 245.11 73.66 0)
  6096. (effects (font (size 1.27 1.27)))
  6097. )
  6098. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 77.47 0)
  6099. (effects (font (size 1.27 1.27)) hide)
  6100. )
  6101. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 77.47 0)
  6102. (effects (font (size 1.27 1.27)) hide)
  6103. )
  6104. (property "LCSC" "C371970" (at 234.95 77.47 0)
  6105. (effects (font (size 1.27 1.27)) hide)
  6106. )
  6107. (pin "1" (uuid f4d06970-31bf-4f56-b3b8-8e620b4c0ce5))
  6108. (pin "2" (uuid 9e28e4ba-23b0-4daa-8349-0865ed41b59a))
  6109. (pin "3" (uuid 04c877dc-86e7-4d6b-b354-0ba706f86dc1))
  6110. (pin "4" (uuid fb33ce2b-9929-4774-84fa-8290a264fc87))
  6111. (pin "5" (uuid 00ebbcd6-caf0-4d1b-868f-4c8847b5142c))
  6112. (pin "6" (uuid 20ba087c-77e9-4af7-8dd4-254900380a33))
  6113. (pin "8" (uuid 0eef7088-ce66-4e32-a2fc-cdc787703d8e))
  6114. (pin "9" (uuid 58ab3e30-7a51-424d-81ff-cb95b1959e59))
  6115. (pin "10" (uuid 2e90d921-c7a9-452e-8915-8b0e5294c0fd))
  6116. (pin "11" (uuid 587004bf-78d2-4171-a39e-81b35f704950))
  6117. (pin "12" (uuid b98e66b7-1496-44c9-868d-f58eb358bd8d))
  6118. (pin "13" (uuid e0b09c3b-b7ad-4a31-a685-5a3821a9a673))
  6119. (pin "14" (uuid 7df5dcc1-a994-4d42-98ba-d66d9cb06a8e))
  6120. (pin "7" (uuid 5c771d12-3b99-41a7-9560-21090ca5a2c5))
  6121. (instances
  6122. (project "Greaseweazle"
  6123. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6124. (reference "U3") (unit 2)
  6125. )
  6126. )
  6127. )
  6128. )
  6129. (symbol (lib_id "74xx:SN74LS07") (at 234.95 87.63 180) (unit 3)
  6130. (in_bom yes) (on_board yes) (dnp no)
  6131. (uuid 00000000-0000-0000-0000-000060f9020d)
  6132. (property "Reference" "U3" (at 229.87 83.82 0)
  6133. (effects (font (size 1.27 1.27)))
  6134. )
  6135. (property "Value" "SN74LS07" (at 245.11 83.82 0)
  6136. (effects (font (size 1.27 1.27)))
  6137. )
  6138. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 87.63 0)
  6139. (effects (font (size 1.27 1.27)) hide)
  6140. )
  6141. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 87.63 0)
  6142. (effects (font (size 1.27 1.27)) hide)
  6143. )
  6144. (property "LCSC" "C371970" (at 234.95 87.63 0)
  6145. (effects (font (size 1.27 1.27)) hide)
  6146. )
  6147. (pin "1" (uuid bed79146-bc22-432a-b8a0-dd5a1bc2b866))
  6148. (pin "2" (uuid b80cb951-c116-4884-bf48-ec09f1703495))
  6149. (pin "3" (uuid ae4dfc3d-839a-4296-a987-f4f1a9afaa74))
  6150. (pin "4" (uuid 50b06345-df03-4f3f-9e25-ba185eacda3d))
  6151. (pin "5" (uuid c0ee9747-f834-4fbb-85a9-6f249f422fdb))
  6152. (pin "6" (uuid e9da25f2-a680-45c2-8f43-700de870251c))
  6153. (pin "8" (uuid 2f9f07bc-63b9-4afe-ba92-5c279b97eedb))
  6154. (pin "9" (uuid 3561576f-c15b-4012-9f6b-9911d32bd67b))
  6155. (pin "10" (uuid 8c3c9ee3-07e5-4c67-a789-7f71a09bc3b2))
  6156. (pin "11" (uuid 76069c75-e210-4ffd-837f-6e519ab7ad56))
  6157. (pin "12" (uuid bb0c1b2b-cd02-419e-945a-7797e418ba41))
  6158. (pin "13" (uuid 971f0304-ee69-45cb-9aba-e21af195d127))
  6159. (pin "14" (uuid 4b3c8008-b823-4d8d-b99e-68484101f396))
  6160. (pin "7" (uuid ad3c5e19-300d-4bae-98d1-a0f8d09f891c))
  6161. (instances
  6162. (project "Greaseweazle"
  6163. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6164. (reference "U3") (unit 3)
  6165. )
  6166. )
  6167. )
  6168. )
  6169. (symbol (lib_id "74xx:SN74LS07") (at 234.95 57.15 180) (unit 4)
  6170. (in_bom yes) (on_board yes) (dnp no)
  6171. (uuid 00000000-0000-0000-0000-000060f91637)
  6172. (property "Reference" "U3" (at 229.87 54.61 0)
  6173. (effects (font (size 1.27 1.27)))
  6174. )
  6175. (property "Value" "SN74LS07" (at 245.11 53.34 0)
  6176. (effects (font (size 1.27 1.27)))
  6177. )
  6178. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 57.15 0)
  6179. (effects (font (size 1.27 1.27)) hide)
  6180. )
  6181. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 57.15 0)
  6182. (effects (font (size 1.27 1.27)) hide)
  6183. )
  6184. (property "LCSC" "C371970" (at 234.95 57.15 0)
  6185. (effects (font (size 1.27 1.27)) hide)
  6186. )
  6187. (pin "1" (uuid 8b351629-fc98-477b-84c6-ea5a6d5142c8))
  6188. (pin "2" (uuid 6ba9c947-676c-4bca-a69a-94b4efe43002))
  6189. (pin "3" (uuid 03f1c55d-e25d-466b-8b97-cf61e03ec0b6))
  6190. (pin "4" (uuid b1f7dda5-3fc1-4c20-9195-fd426f090951))
  6191. (pin "5" (uuid e8a3462d-4ce9-4834-8d2a-2bacd73d6629))
  6192. (pin "6" (uuid 8d7da2d8-1607-4b29-a822-4afa91b052f3))
  6193. (pin "8" (uuid 4eaa075d-7fb1-4efd-94ee-06a96e8b5ed3))
  6194. (pin "9" (uuid 76d63f42-b317-4d36-9487-95d72b9dd6e1))
  6195. (pin "10" (uuid aed49a57-a3b3-4106-98b4-ac86e75c1d9a))
  6196. (pin "11" (uuid e7940986-df10-4dc5-b4d2-e3c1e8596738))
  6197. (pin "12" (uuid fd82c3bb-e4c6-4c82-8fe0-96ca4a76b516))
  6198. (pin "13" (uuid 275b6bd8-bfb3-4873-9571-e4a5ab4e6bab))
  6199. (pin "14" (uuid dbf13184-00c8-4953-b3a4-933fb53e92e3))
  6200. (pin "7" (uuid d40a2ee7-2242-45d0-8986-893e0087d6b0))
  6201. (instances
  6202. (project "Greaseweazle"
  6203. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6204. (reference "U3") (unit 4)
  6205. )
  6206. )
  6207. )
  6208. )
  6209. (symbol (lib_id "74xx:SN74LS07") (at 234.95 46.99 180) (unit 5)
  6210. (in_bom yes) (on_board yes) (dnp no)
  6211. (uuid 00000000-0000-0000-0000-000060f93294)
  6212. (property "Reference" "U3" (at 229.87 43.18 0)
  6213. (effects (font (size 1.27 1.27)))
  6214. )
  6215. (property "Value" "SN74LS07" (at 245.11 43.18 0)
  6216. (effects (font (size 1.27 1.27)))
  6217. )
  6218. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 46.99 0)
  6219. (effects (font (size 1.27 1.27)) hide)
  6220. )
  6221. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 46.99 0)
  6222. (effects (font (size 1.27 1.27)) hide)
  6223. )
  6224. (property "LCSC" "C371970" (at 234.95 46.99 0)
  6225. (effects (font (size 1.27 1.27)) hide)
  6226. )
  6227. (pin "1" (uuid ad8f41be-f5b8-4db9-91c1-4ac88215132f))
  6228. (pin "2" (uuid 8524f880-4d9e-4e04-bf87-83a014939864))
  6229. (pin "3" (uuid ea3901b5-afa3-4cca-82ca-8772b619ee94))
  6230. (pin "4" (uuid eef0ae26-648d-48c9-ae3e-b9f072770fbc))
  6231. (pin "5" (uuid a2ab87f0-a517-4e98-b164-49ff82023253))
  6232. (pin "6" (uuid 7a3490b4-17f5-42e1-87dd-df4d9f71b1ff))
  6233. (pin "8" (uuid c65093e6-048f-46e0-886d-4fe9ca85f41b))
  6234. (pin "9" (uuid 67d30b3d-9756-4d82-a07e-db4c12497446))
  6235. (pin "10" (uuid f5554ab6-a586-4d52-83f2-873de3663067))
  6236. (pin "11" (uuid 1f867b4f-e3fd-485f-9296-ed4f9cae7ab3))
  6237. (pin "12" (uuid b62bedb0-05f8-422e-b49f-2eaa1d042596))
  6238. (pin "13" (uuid 02941a67-3142-4aa1-8359-46cd00c25bdc))
  6239. (pin "14" (uuid 6c0ddf16-c134-485d-ad59-bc7cb1b97db3))
  6240. (pin "7" (uuid a0311bd1-8e3c-476e-8049-cd28f98d7766))
  6241. (instances
  6242. (project "Greaseweazle"
  6243. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6244. (reference "U3") (unit 5)
  6245. )
  6246. )
  6247. )
  6248. )
  6249. (symbol (lib_id "74xx:SN74LS07") (at 234.95 36.83 180) (unit 6)
  6250. (in_bom yes) (on_board yes) (dnp no)
  6251. (uuid 00000000-0000-0000-0000-000060f949da)
  6252. (property "Reference" "U3" (at 229.87 33.02 0)
  6253. (effects (font (size 1.27 1.27)))
  6254. )
  6255. (property "Value" "SN74LS07" (at 245.11 33.02 0)
  6256. (effects (font (size 1.27 1.27)))
  6257. )
  6258. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 36.83 0)
  6259. (effects (font (size 1.27 1.27)) hide)
  6260. )
  6261. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 36.83 0)
  6262. (effects (font (size 1.27 1.27)) hide)
  6263. )
  6264. (property "LCSC" "C371970" (at 234.95 36.83 0)
  6265. (effects (font (size 1.27 1.27)) hide)
  6266. )
  6267. (pin "1" (uuid fb2ce701-3696-47ba-9260-b241e1e64743))
  6268. (pin "2" (uuid e74fe830-489c-4eea-92ab-36963cd09f15))
  6269. (pin "3" (uuid 7d5f6f01-199f-440a-a9d9-2d9e0f86c636))
  6270. (pin "4" (uuid dd431ab0-b3ac-4d58-a651-5f72635e752d))
  6271. (pin "5" (uuid 7219aa8f-eaea-48e4-9b35-fe7e14a73eb1))
  6272. (pin "6" (uuid 498d8fe3-4824-4211-9a9c-02d345c8524d))
  6273. (pin "8" (uuid b63cb0b9-9001-4f94-8223-7a51201da816))
  6274. (pin "9" (uuid bceccfd9-3b04-4046-8c4b-d3a7a676d17d))
  6275. (pin "10" (uuid 43c0b0b5-060a-416b-9065-fe29036f400f))
  6276. (pin "11" (uuid 71eaf77e-9e03-48fd-8863-33bb3c289791))
  6277. (pin "12" (uuid 0fa42326-3fa2-4523-b403-e582e228b584))
  6278. (pin "13" (uuid 334d2aea-23a6-47a1-8548-51ea33472ce4))
  6279. (pin "14" (uuid 44e575f8-9f35-4e64-b144-9981aa6c57cb))
  6280. (pin "7" (uuid 77dd0303-6fd7-41d0-b8ee-fac855872888))
  6281. (instances
  6282. (project "Greaseweazle"
  6283. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6284. (reference "U3") (unit 6)
  6285. )
  6286. )
  6287. )
  6288. )
  6289. (symbol (lib_id "74xx:SN74LS07") (at 167.64 34.29 0) (unit 7)
  6290. (in_bom yes) (on_board yes) (dnp no)
  6291. (uuid 00000000-0000-0000-0000-000060f95e46)
  6292. (property "Reference" "U3" (at 173.482 33.1216 0)
  6293. (effects (font (size 1.27 1.27)) (justify left))
  6294. )
  6295. (property "Value" "SN74LS07" (at 173.482 35.433 0)
  6296. (effects (font (size 1.27 1.27)) (justify left))
  6297. )
  6298. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 167.64 34.29 0)
  6299. (effects (font (size 1.27 1.27)) hide)
  6300. )
  6301. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 167.64 34.29 0)
  6302. (effects (font (size 1.27 1.27)) hide)
  6303. )
  6304. (property "LCSC" "C371970" (at 167.64 34.29 0)
  6305. (effects (font (size 1.27 1.27)) hide)
  6306. )
  6307. (pin "1" (uuid 544453a9-afb4-4dcc-876b-4b10608576ed))
  6308. (pin "2" (uuid 9de2e906-f49e-46ef-8acd-054576ece926))
  6309. (pin "3" (uuid 37c939a5-968e-423f-b1c0-f415f2f84c95))
  6310. (pin "4" (uuid 15f14210-b812-40fe-ba04-0477cba8533d))
  6311. (pin "5" (uuid 72b44fdb-0813-4afe-877b-6f3eb25ef332))
  6312. (pin "6" (uuid 8ebee397-6ca9-4127-bf4e-4d533d479197))
  6313. (pin "8" (uuid 907ac0db-613b-4500-84a5-3a1bf5bc4632))
  6314. (pin "9" (uuid c715b474-717e-43c7-af3c-23f3515c958b))
  6315. (pin "10" (uuid 3acb1917-3846-4f39-8a60-17872e413002))
  6316. (pin "11" (uuid b85120cd-4ce6-4f12-8976-67a4d98fc944))
  6317. (pin "12" (uuid 2bba2ac3-1d94-46b8-9027-dc1ff23941bb))
  6318. (pin "13" (uuid c45fac7a-8497-45f4-a86b-2de6f80a2f45))
  6319. (pin "14" (uuid 41d3d80b-e46d-45c7-868b-84557a85f8a6))
  6320. (pin "7" (uuid 49df4c2e-b520-458b-a40c-83b813e3a918))
  6321. (instances
  6322. (project "Greaseweazle"
  6323. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6324. (reference "U3") (unit 7)
  6325. )
  6326. )
  6327. )
  6328. )
  6329. (symbol (lib_id "74xx:SN74LS07") (at 234.95 67.31 180) (unit 1)
  6330. (in_bom yes) (on_board yes) (dnp no)
  6331. (uuid 00000000-0000-0000-0000-00006102cdb8)
  6332. (property "Reference" "U4" (at 229.87 63.5 0)
  6333. (effects (font (size 1.27 1.27)))
  6334. )
  6335. (property "Value" "SN74LS07" (at 245.11 63.5 0)
  6336. (effects (font (size 1.27 1.27)))
  6337. )
  6338. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 67.31 0)
  6339. (effects (font (size 1.27 1.27)) hide)
  6340. )
  6341. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 67.31 0)
  6342. (effects (font (size 1.27 1.27)) hide)
  6343. )
  6344. (property "LCSC" "C371970" (at 234.95 67.31 0)
  6345. (effects (font (size 1.27 1.27)) hide)
  6346. )
  6347. (pin "1" (uuid 62103c11-51d2-468d-851b-b3ecb76379fd))
  6348. (pin "2" (uuid 6dc190ab-497b-47c1-b6b2-6a0a7da3d0ba))
  6349. (pin "3" (uuid 6ba82d23-453f-48dc-a5a1-23aea4308bf8))
  6350. (pin "4" (uuid 662c0b65-d4d9-4e2f-b086-b1c99d02c2f4))
  6351. (pin "5" (uuid 04e831e2-b9cb-4e06-8254-326d43185925))
  6352. (pin "6" (uuid d9d37e6d-22d9-4844-a013-9af387824261))
  6353. (pin "8" (uuid 866cb55e-f570-40d7-a73c-c50c4df1463d))
  6354. (pin "9" (uuid 23a662f5-79dd-404e-a69e-7df450533437))
  6355. (pin "10" (uuid 0dd45ff4-6429-44e0-90c0-bc999ba3a60b))
  6356. (pin "11" (uuid bb89660a-c171-4dfb-a647-43808e70f067))
  6357. (pin "12" (uuid 74461c54-9441-45b8-800f-265e41e12d96))
  6358. (pin "13" (uuid d4aef4eb-ee95-4642-bd25-931288f96104))
  6359. (pin "14" (uuid b9f80874-e89b-4487-b3f9-2a84c8454fc0))
  6360. (pin "7" (uuid 97917855-3b2b-4e3c-8a77-93b5b2033aeb))
  6361. (instances
  6362. (project "Greaseweazle"
  6363. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6364. (reference "U4") (unit 1)
  6365. )
  6366. )
  6367. )
  6368. )
  6369. (symbol (lib_id "74xx:SN74LS07") (at 234.95 128.27 180) (unit 2)
  6370. (in_bom yes) (on_board yes) (dnp no)
  6371. (uuid 00000000-0000-0000-0000-00006102d33e)
  6372. (property "Reference" "U4" (at 229.87 124.46 0)
  6373. (effects (font (size 1.27 1.27)))
  6374. )
  6375. (property "Value" "SN74LS07" (at 245.11 123.19 0)
  6376. (effects (font (size 1.27 1.27)))
  6377. )
  6378. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 128.27 0)
  6379. (effects (font (size 1.27 1.27)) hide)
  6380. )
  6381. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 128.27 0)
  6382. (effects (font (size 1.27 1.27)) hide)
  6383. )
  6384. (property "LCSC" "C371970" (at 234.95 128.27 0)
  6385. (effects (font (size 1.27 1.27)) hide)
  6386. )
  6387. (pin "1" (uuid 54b39782-0217-4bf7-9ba1-5d63d4481e8f))
  6388. (pin "2" (uuid b396102c-85e8-4bc1-bfa0-97e07019d085))
  6389. (pin "3" (uuid ce6fe94f-9351-48d2-bc59-9ec2780191f4))
  6390. (pin "4" (uuid 59650916-13de-4138-8779-8aa11bcfa820))
  6391. (pin "5" (uuid fc5987d0-b3ee-414e-a254-cefc82368a4f))
  6392. (pin "6" (uuid 3aa29644-ef2d-4b50-97ac-74614698f252))
  6393. (pin "8" (uuid a67391ab-6585-4a04-b0a9-0b6f3df8a55b))
  6394. (pin "9" (uuid 4512c64b-92b3-4399-8b1d-4af572da087a))
  6395. (pin "10" (uuid 65c7e039-e823-4c15-9681-a4344e5e06cd))
  6396. (pin "11" (uuid c2cf6d18-b9b9-4856-8dea-3c2089bc854e))
  6397. (pin "12" (uuid be0aaed8-57f1-4af4-9fa9-61096f8a5b45))
  6398. (pin "13" (uuid bf10640f-151b-49f3-b57f-0c3862bef553))
  6399. (pin "14" (uuid d37910f5-048c-487e-a2a2-0aa2c74c6c31))
  6400. (pin "7" (uuid 95140643-e9d7-46e5-9709-3823132c548f))
  6401. (instances
  6402. (project "Greaseweazle"
  6403. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6404. (reference "U4") (unit 2)
  6405. )
  6406. )
  6407. )
  6408. )
  6409. (symbol (lib_id "74xx:SN74LS07") (at 234.95 138.43 180) (unit 3)
  6410. (in_bom yes) (on_board yes) (dnp no)
  6411. (uuid 00000000-0000-0000-0000-00006102d348)
  6412. (property "Reference" "U4" (at 229.87 134.62 0)
  6413. (effects (font (size 1.27 1.27)))
  6414. )
  6415. (property "Value" "SN74LS07" (at 245.11 134.62 0)
  6416. (effects (font (size 1.27 1.27)))
  6417. )
  6418. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 138.43 0)
  6419. (effects (font (size 1.27 1.27)) hide)
  6420. )
  6421. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 138.43 0)
  6422. (effects (font (size 1.27 1.27)) hide)
  6423. )
  6424. (property "LCSC" "C371970" (at 234.95 138.43 0)
  6425. (effects (font (size 1.27 1.27)) hide)
  6426. )
  6427. (pin "1" (uuid c6fda81d-1d3c-406a-8758-9f1b259764dd))
  6428. (pin "2" (uuid 049dc3c8-2e9d-40ca-abb8-9e3a47c022ff))
  6429. (pin "3" (uuid 7d060dc6-48b5-4e5c-bc80-46e3dea77289))
  6430. (pin "4" (uuid d2424eb0-4779-4ebc-9e7b-7b14ae2f527f))
  6431. (pin "5" (uuid 09df223b-8d4d-4be3-a158-ffa72fa73cdd))
  6432. (pin "6" (uuid 0ea711b1-d5d0-4be4-80c2-95f902cd0ea0))
  6433. (pin "8" (uuid 595ad7b0-c707-4e3c-b71a-d1c82058b074))
  6434. (pin "9" (uuid 3545e7ef-6762-4e72-b551-134daddf5c2f))
  6435. (pin "10" (uuid dcd859ad-b1d9-4705-a43e-804ef5baa05e))
  6436. (pin "11" (uuid 9b8ebbfa-89eb-4af2-85ca-1ef150139fa7))
  6437. (pin "12" (uuid 8f18a6bd-773e-4524-aa0f-478baf1deb84))
  6438. (pin "13" (uuid c0350447-4b09-49a3-9a36-a045f2a74542))
  6439. (pin "14" (uuid 52cd17a0-187c-42be-b917-c002bb120058))
  6440. (pin "7" (uuid d0ff1f8a-ea9a-41ae-8f9d-53c1cea866a0))
  6441. (instances
  6442. (project "Greaseweazle"
  6443. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6444. (reference "U4") (unit 3)
  6445. )
  6446. )
  6447. )
  6448. )
  6449. (symbol (lib_id "74xx:SN74LS07") (at 234.95 118.11 180) (unit 4)
  6450. (in_bom yes) (on_board yes) (dnp no)
  6451. (uuid 00000000-0000-0000-0000-00006102d352)
  6452. (property "Reference" "U4" (at 229.87 114.3 0)
  6453. (effects (font (size 1.27 1.27)))
  6454. )
  6455. (property "Value" "SN74LS07" (at 245.11 114.3 0)
  6456. (effects (font (size 1.27 1.27)))
  6457. )
  6458. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 118.11 0)
  6459. (effects (font (size 1.27 1.27)) hide)
  6460. )
  6461. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 118.11 0)
  6462. (effects (font (size 1.27 1.27)) hide)
  6463. )
  6464. (property "LCSC" "C371970" (at 234.95 118.11 0)
  6465. (effects (font (size 1.27 1.27)) hide)
  6466. )
  6467. (pin "1" (uuid 3ca55dc2-43a8-4e7d-bfa9-2f645c14293d))
  6468. (pin "2" (uuid 48351a43-a786-49b8-82c7-bec1860b0dbd))
  6469. (pin "3" (uuid cef112d8-d090-46b0-a67f-c9d495aaf614))
  6470. (pin "4" (uuid dbde08c9-197c-4287-800f-e0d7c88721f7))
  6471. (pin "5" (uuid f695c34d-5192-467d-ba69-5943bd8eb359))
  6472. (pin "6" (uuid 8f2f24a8-96ac-4649-87d9-c01b482cb432))
  6473. (pin "8" (uuid ab53bdc6-ce0d-4241-8996-ce7f96233d93))
  6474. (pin "9" (uuid f0d8b35b-2fcc-4e9f-ae47-ff97b26d93c5))
  6475. (pin "10" (uuid 7a4f28d3-df64-4fc3-aa93-73928f681c88))
  6476. (pin "11" (uuid 7361005d-a3c1-4ea9-8141-d6f3ebc988b0))
  6477. (pin "12" (uuid 4a35a2b2-afe9-490e-99ce-b0b4184bbf6a))
  6478. (pin "13" (uuid f183bdb7-918e-4e75-9147-8fd9599ff2e5))
  6479. (pin "14" (uuid 9b18f8bd-25fc-4def-8ffa-7ec5fade04a9))
  6480. (pin "7" (uuid 5bf5788e-9590-4e56-a2be-4d105af61f5c))
  6481. (instances
  6482. (project "Greaseweazle"
  6483. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6484. (reference "U4") (unit 4)
  6485. )
  6486. )
  6487. )
  6488. )
  6489. (symbol (lib_id "74xx:SN74LS07") (at 234.95 107.95 180) (unit 5)
  6490. (in_bom yes) (on_board yes) (dnp no)
  6491. (uuid 00000000-0000-0000-0000-00006102d35c)
  6492. (property "Reference" "U4" (at 229.87 104.14 0)
  6493. (effects (font (size 1.27 1.27)))
  6494. )
  6495. (property "Value" "SN74LS07" (at 245.11 104.14 0)
  6496. (effects (font (size 1.27 1.27)))
  6497. )
  6498. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 107.95 0)
  6499. (effects (font (size 1.27 1.27)) hide)
  6500. )
  6501. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 107.95 0)
  6502. (effects (font (size 1.27 1.27)) hide)
  6503. )
  6504. (property "LCSC" "C371970" (at 234.95 107.95 0)
  6505. (effects (font (size 1.27 1.27)) hide)
  6506. )
  6507. (pin "1" (uuid 0a0f5a28-356d-472b-939d-32321be8b642))
  6508. (pin "2" (uuid edb3e4a9-d34e-494a-97bb-7eeb71b77924))
  6509. (pin "3" (uuid f93c9357-67f5-4b5b-8995-f6295624cfe7))
  6510. (pin "4" (uuid f8bc9c74-48e0-4607-bad6-32358436973b))
  6511. (pin "5" (uuid b0343855-a069-4ada-87d0-c38b6bc73b78))
  6512. (pin "6" (uuid c7c42cae-062c-461d-ab2e-ab184b9ee396))
  6513. (pin "8" (uuid ffde6f99-591c-4421-80bc-047fe9d210b0))
  6514. (pin "9" (uuid 2a1bcd04-0f95-412f-b777-5ea2d413a31b))
  6515. (pin "10" (uuid 25545c85-5f3e-45cb-8a45-5d4689dfa3b1))
  6516. (pin "11" (uuid 94b179d6-cace-41c1-86d1-c64ce4de0da1))
  6517. (pin "12" (uuid 684f2ecf-c856-4969-8783-0c41a499d588))
  6518. (pin "13" (uuid 215d5459-d270-4040-a6dc-d8f2c2db0ef6))
  6519. (pin "14" (uuid f6c461ae-ca3e-4b81-8eaa-6adce7b5d940))
  6520. (pin "7" (uuid de13f1b6-9f3d-4d2a-9617-3eeb1dc41a08))
  6521. (instances
  6522. (project "Greaseweazle"
  6523. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6524. (reference "U4") (unit 5)
  6525. )
  6526. )
  6527. )
  6528. )
  6529. (symbol (lib_id "74xx:SN74LS07") (at 234.95 97.79 180) (unit 6)
  6530. (in_bom yes) (on_board yes) (dnp no)
  6531. (uuid 00000000-0000-0000-0000-00006102d366)
  6532. (property "Reference" "U4" (at 229.87 93.98 0)
  6533. (effects (font (size 1.27 1.27)))
  6534. )
  6535. (property "Value" "SN74LS07" (at 245.11 93.98 0)
  6536. (effects (font (size 1.27 1.27)))
  6537. )
  6538. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 97.79 0)
  6539. (effects (font (size 1.27 1.27)) hide)
  6540. )
  6541. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 97.79 0)
  6542. (effects (font (size 1.27 1.27)) hide)
  6543. )
  6544. (property "LCSC" "C371970" (at 234.95 97.79 0)
  6545. (effects (font (size 1.27 1.27)) hide)
  6546. )
  6547. (pin "1" (uuid 62db7132-85da-4f51-bd4c-a10536ab91d0))
  6548. (pin "2" (uuid 82a93c8e-8dc4-43c4-a0a8-69806538b0ce))
  6549. (pin "3" (uuid c61cd22d-8592-4fb6-9a17-ac3d3d55fab7))
  6550. (pin "4" (uuid 0adb69d0-f073-4491-aac4-c578babb7343))
  6551. (pin "5" (uuid 7d54c3b0-29e5-4e22-858f-6b6f3b6ffa3e))
  6552. (pin "6" (uuid c1c20ed6-b585-471f-80d6-1cf3a8ac686d))
  6553. (pin "8" (uuid 9bc21a05-eb32-4f35-b054-6ee8456e14fc))
  6554. (pin "9" (uuid 742dbdc8-a9bf-43e4-a51e-aacc2631b992))
  6555. (pin "10" (uuid bac81bd5-bf26-4aa1-9d35-74424ff858ff))
  6556. (pin "11" (uuid acc3d950-1f9b-4fd1-857e-d07059443388))
  6557. (pin "12" (uuid 3e495ac4-b11f-4e38-b2d2-d494623eabe5))
  6558. (pin "13" (uuid a58ec886-072f-4e13-ad85-88e0fa7fdea6))
  6559. (pin "14" (uuid 620497c4-93b9-4834-bc1c-2d659147fb5a))
  6560. (pin "7" (uuid ef21d34a-1e90-48d4-bd60-0e32a4ab9c40))
  6561. (instances
  6562. (project "Greaseweazle"
  6563. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6564. (reference "U4") (unit 6)
  6565. )
  6566. )
  6567. )
  6568. )
  6569. (symbol (lib_id "74xx:SN74LS07") (at 189.23 34.29 0) (unit 7)
  6570. (in_bom yes) (on_board yes) (dnp no)
  6571. (uuid 00000000-0000-0000-0000-00006102d370)
  6572. (property "Reference" "U4" (at 182.245 24.13 0)
  6573. (effects (font (size 1.27 1.27)) (justify left))
  6574. )
  6575. (property "Value" "SN74LS07" (at 189.865 24.13 0)
  6576. (effects (font (size 1.27 1.27)) (justify left))
  6577. )
  6578. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 189.23 34.29 0)
  6579. (effects (font (size 1.27 1.27)) hide)
  6580. )
  6581. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 189.23 34.29 0)
  6582. (effects (font (size 1.27 1.27)) hide)
  6583. )
  6584. (property "LCSC" "C371970" (at 189.23 34.29 0)
  6585. (effects (font (size 1.27 1.27)) hide)
  6586. )
  6587. (pin "1" (uuid b54c14a1-e7a4-4c83-a86a-f7bdbbb9e89e))
  6588. (pin "2" (uuid 482af62e-69af-467e-9687-7d912769da3f))
  6589. (pin "3" (uuid 62ad75f6-b79c-4071-b45c-d5f2d3400f5c))
  6590. (pin "4" (uuid 0c51601a-17b5-4b0b-a711-778aed55818e))
  6591. (pin "5" (uuid 2f877b66-60ed-471a-9c6f-2f0332611ee1))
  6592. (pin "6" (uuid 91db498e-ac1e-4b6d-a772-9dc72737a8de))
  6593. (pin "8" (uuid 6bf5501d-27f4-4d30-91de-b6f3fb93137a))
  6594. (pin "9" (uuid 9b6f3876-7389-4900-8d9b-7095db74b12b))
  6595. (pin "10" (uuid c380cd8d-3b83-44f5-ab97-1992fb0e0d6b))
  6596. (pin "11" (uuid 3ea39008-2129-480a-b855-d1e3a9269528))
  6597. (pin "12" (uuid 5bb28526-d563-4297-8282-bd72f77cd279))
  6598. (pin "13" (uuid bf1fa5df-a87d-44ba-a7dc-fea0ddbe480f))
  6599. (pin "14" (uuid c114b98f-c340-46d0-85d6-3e787c776a13))
  6600. (pin "7" (uuid c1257a43-33f6-4ff2-9e53-85ba1a2b0d2d))
  6601. (instances
  6602. (project "Greaseweazle"
  6603. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6604. (reference "U4") (unit 7)
  6605. )
  6606. )
  6607. )
  6608. )
  6609. (symbol (lib_id "Switch:SW_DIP_x01") (at 214.63 128.27 0) (unit 1)
  6610. (in_bom yes) (on_board yes) (dnp no)
  6611. (uuid 00000000-0000-0000-0000-00006113965b)
  6612. (property "Reference" "J2" (at 218.5416 133.0452 90)
  6613. (effects (font (size 1.27 1.27)) (justify right))
  6614. )
  6615. (property "Value" "Conn_01x02_Male" (at 212.09 121.92 0)
  6616. (effects (font (size 1.27 1.27)) (justify right))
  6617. )
  6618. (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile" (at 214.63 128.27 0)
  6619. (effects (font (size 1.27 1.27)) hide)
  6620. )
  6621. (property "Datasheet" "~" (at 214.63 128.27 0)
  6622. (effects (font (size 1.27 1.27)) hide)
  6623. )
  6624. (property "LCSC" "C160332" (at 214.63 128.27 0)
  6625. (effects (font (size 1.27 1.27)) hide)
  6626. )
  6627. (pin "1" (uuid 681cfc22-eb9d-4c2f-9ea5-89c04aecadc4))
  6628. (pin "2" (uuid 0606874a-8758-44e9-ae59-f5feb3be295e))
  6629. (instances
  6630. (project "Greaseweazle"
  6631. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6632. (reference "J2") (unit 1)
  6633. )
  6634. )
  6635. )
  6636. )
  6637. (symbol (lib_id "Connector:Conn_01x03_Male") (at 116.84 19.685 180) (unit 1)
  6638. (in_bom yes) (on_board yes) (dnp no)
  6639. (uuid 00000000-0000-0000-0000-00006115910d)
  6640. (property "Reference" "J10" (at 117.5512 17.9578 0)
  6641. (effects (font (size 1.27 1.27)) (justify right))
  6642. )
  6643. (property "Value" "Conn_01x03_Male" (at 117.5512 20.2692 0)
  6644. (effects (font (size 1.27 1.27)) (justify right))
  6645. )
  6646. (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (at 116.84 19.685 0)
  6647. (effects (font (size 1.27 1.27)) hide)
  6648. )
  6649. (property "Datasheet" "~" (at 116.84 19.685 0)
  6650. (effects (font (size 1.27 1.27)) hide)
  6651. )
  6652. (pin "1" (uuid 0bc865a5-b2f9-4250-aa9c-7cde34db911e))
  6653. (pin "2" (uuid 48bfce0d-2c2e-48ed-ad0b-e8ca9c82f9a0))
  6654. (pin "3" (uuid 3d5cf429-0f57-410f-9cb4-66e75156a04a))
  6655. (instances
  6656. (project "Greaseweazle"
  6657. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6658. (reference "J10") (unit 1)
  6659. )
  6660. )
  6661. )
  6662. )
  6663. (symbol (lib_id "power:GND") (at 107.95 24.765 0) (unit 1)
  6664. (in_bom yes) (on_board yes) (dnp no)
  6665. (uuid 00000000-0000-0000-0000-000061180e4f)
  6666. (property "Reference" "#PWR0170" (at 107.95 31.115 0)
  6667. (effects (font (size 1.27 1.27)) hide)
  6668. )
  6669. (property "Value" "GND" (at 108.077 29.1592 0)
  6670. (effects (font (size 1.27 1.27)))
  6671. )
  6672. (property "Footprint" "" (at 107.95 24.765 0)
  6673. (effects (font (size 1.27 1.27)) hide)
  6674. )
  6675. (property "Datasheet" "" (at 107.95 24.765 0)
  6676. (effects (font (size 1.27 1.27)) hide)
  6677. )
  6678. (pin "1" (uuid cd2d2fb2-9aca-41f0-be21-42fed54a3cf3))
  6679. (instances
  6680. (project "Greaseweazle"
  6681. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6682. (reference "#PWR0170") (unit 1)
  6683. )
  6684. )
  6685. )
  6686. )
  6687. (symbol (lib_id "Device:R_Small") (at 267.97 27.94 270) (unit 1)
  6688. (in_bom yes) (on_board yes) (dnp no)
  6689. (uuid 00000000-0000-0000-0000-0000611f6a4c)
  6690. (property "Reference" "R7" (at 264.16 25.4 90)
  6691. (effects (font (size 1.27 1.27)))
  6692. )
  6693. (property "Value" "10k" (at 271.78 25.4 90)
  6694. (effects (font (size 1.27 1.27)))
  6695. )
  6696. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 27.94 0)
  6697. (effects (font (size 1.27 1.27)) hide)
  6698. )
  6699. (property "Datasheet" "~" (at 267.97 27.94 0)
  6700. (effects (font (size 1.27 1.27)) hide)
  6701. )
  6702. (property "LCSC" "C25744" (at 267.97 27.94 0)
  6703. (effects (font (size 1.27 1.27)) hide)
  6704. )
  6705. (pin "1" (uuid cf6489b9-2cb7-4d60-8de9-72e7fbb778c5))
  6706. (pin "2" (uuid 896dca97-c39b-4601-9bf9-cd3e123f007c))
  6707. (instances
  6708. (project "Greaseweazle"
  6709. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6710. (reference "R7") (unit 1)
  6711. )
  6712. )
  6713. )
  6714. )
  6715. (symbol (lib_id "Device:R_Small") (at 267.97 33.02 270) (unit 1)
  6716. (in_bom yes) (on_board yes) (dnp no)
  6717. (uuid 00000000-0000-0000-0000-0000611f8573)
  6718. (property "Reference" "R8" (at 264.16 31.75 90)
  6719. (effects (font (size 1.27 1.27)))
  6720. )
  6721. (property "Value" "10k" (at 271.78 30.48 90)
  6722. (effects (font (size 1.27 1.27)))
  6723. )
  6724. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 33.02 0)
  6725. (effects (font (size 1.27 1.27)) hide)
  6726. )
  6727. (property "Datasheet" "~" (at 267.97 33.02 0)
  6728. (effects (font (size 1.27 1.27)) hide)
  6729. )
  6730. (property "LCSC" "C25744" (at 267.97 33.02 0)
  6731. (effects (font (size 1.27 1.27)) hide)
  6732. )
  6733. (pin "1" (uuid 8f159cda-aff3-4861-936e-7f023a40f556))
  6734. (pin "2" (uuid 61dc861a-f1a1-4047-b0dc-8467c610b19a))
  6735. (instances
  6736. (project "Greaseweazle"
  6737. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6738. (reference "R8") (unit 1)
  6739. )
  6740. )
  6741. )
  6742. )
  6743. (symbol (lib_id "Device:R_Small") (at 267.97 38.1 270) (unit 1)
  6744. (in_bom yes) (on_board yes) (dnp no)
  6745. (uuid 00000000-0000-0000-0000-0000611f9281)
  6746. (property "Reference" "R9" (at 264.16 35.56 90)
  6747. (effects (font (size 1.27 1.27)))
  6748. )
  6749. (property "Value" "10k" (at 271.78 35.56 90)
  6750. (effects (font (size 1.27 1.27)))
  6751. )
  6752. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 38.1 0)
  6753. (effects (font (size 1.27 1.27)) hide)
  6754. )
  6755. (property "Datasheet" "~" (at 267.97 38.1 0)
  6756. (effects (font (size 1.27 1.27)) hide)
  6757. )
  6758. (property "LCSC" "C25744" (at 267.97 38.1 0)
  6759. (effects (font (size 1.27 1.27)) hide)
  6760. )
  6761. (pin "1" (uuid 75a97f43-6f80-4dbe-9aa5-53b49f5586eb))
  6762. (pin "2" (uuid 16cf0e22-c6b2-45a4-beaa-5cff542bc08d))
  6763. (instances
  6764. (project "Greaseweazle"
  6765. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6766. (reference "R9") (unit 1)
  6767. )
  6768. )
  6769. )
  6770. )
  6771. (symbol (lib_id "Device:R_Small") (at 267.97 43.18 270) (unit 1)
  6772. (in_bom yes) (on_board yes) (dnp no)
  6773. (uuid 00000000-0000-0000-0000-0000611f9f92)
  6774. (property "Reference" "R10" (at 264.16 40.64 90)
  6775. (effects (font (size 1.27 1.27)))
  6776. )
  6777. (property "Value" "10k" (at 271.78 40.64 90)
  6778. (effects (font (size 1.27 1.27)))
  6779. )
  6780. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 43.18 0)
  6781. (effects (font (size 1.27 1.27)) hide)
  6782. )
  6783. (property "Datasheet" "~" (at 267.97 43.18 0)
  6784. (effects (font (size 1.27 1.27)) hide)
  6785. )
  6786. (property "LCSC" "C25744" (at 267.97 43.18 0)
  6787. (effects (font (size 1.27 1.27)) hide)
  6788. )
  6789. (pin "1" (uuid 9d0adf74-661d-4cea-89c5-e9ae58448d24))
  6790. (pin "2" (uuid ca522c15-b33e-4fb6-80bd-2eed05cd4b4d))
  6791. (instances
  6792. (project "Greaseweazle"
  6793. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6794. (reference "R10") (unit 1)
  6795. )
  6796. )
  6797. )
  6798. )
  6799. (symbol (lib_id "Device:R_Small") (at 267.97 48.26 270) (unit 1)
  6800. (in_bom yes) (on_board yes) (dnp no)
  6801. (uuid 00000000-0000-0000-0000-0000611facfa)
  6802. (property "Reference" "R11" (at 264.16 45.72 90)
  6803. (effects (font (size 1.27 1.27)))
  6804. )
  6805. (property "Value" "10k" (at 271.78 45.72 90)
  6806. (effects (font (size 1.27 1.27)))
  6807. )
  6808. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 48.26 0)
  6809. (effects (font (size 1.27 1.27)) hide)
  6810. )
  6811. (property "Datasheet" "~" (at 267.97 48.26 0)
  6812. (effects (font (size 1.27 1.27)) hide)
  6813. )
  6814. (property "LCSC" "C25744" (at 267.97 48.26 0)
  6815. (effects (font (size 1.27 1.27)) hide)
  6816. )
  6817. (pin "1" (uuid e8a21aee-ae8d-479c-b81e-4be470b5870a))
  6818. (pin "2" (uuid 7a46ad85-358d-4ee5-b34b-d4ba07f16a44))
  6819. (instances
  6820. (project "Greaseweazle"
  6821. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6822. (reference "R11") (unit 1)
  6823. )
  6824. )
  6825. )
  6826. )
  6827. (symbol (lib_id "Device:R_Small") (at 267.97 53.34 270) (unit 1)
  6828. (in_bom yes) (on_board yes) (dnp no)
  6829. (uuid 00000000-0000-0000-0000-0000611fbaa4)
  6830. (property "Reference" "R12" (at 264.16 50.8 90)
  6831. (effects (font (size 1.27 1.27)))
  6832. )
  6833. (property "Value" "10k" (at 271.78 50.8 90)
  6834. (effects (font (size 1.27 1.27)))
  6835. )
  6836. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 53.34 0)
  6837. (effects (font (size 1.27 1.27)) hide)
  6838. )
  6839. (property "Datasheet" "~" (at 267.97 53.34 0)
  6840. (effects (font (size 1.27 1.27)) hide)
  6841. )
  6842. (property "LCSC" "C25744" (at 267.97 53.34 0)
  6843. (effects (font (size 1.27 1.27)) hide)
  6844. )
  6845. (pin "1" (uuid 31f31c7e-646d-4a37-88c6-75b4dcda809d))
  6846. (pin "2" (uuid d376e8ff-b4e6-45ee-bfe5-561ed1a3a9e4))
  6847. (instances
  6848. (project "Greaseweazle"
  6849. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6850. (reference "R12") (unit 1)
  6851. )
  6852. )
  6853. )
  6854. )
  6855. (symbol (lib_id "Device:R_Small") (at 267.97 58.42 270) (unit 1)
  6856. (in_bom yes) (on_board yes) (dnp no)
  6857. (uuid 00000000-0000-0000-0000-0000611fc856)
  6858. (property "Reference" "R13" (at 264.16 55.88 90)
  6859. (effects (font (size 1.27 1.27)))
  6860. )
  6861. (property "Value" "10k" (at 271.78 55.88 90)
  6862. (effects (font (size 1.27 1.27)))
  6863. )
  6864. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 58.42 0)
  6865. (effects (font (size 1.27 1.27)) hide)
  6866. )
  6867. (property "Datasheet" "~" (at 267.97 58.42 0)
  6868. (effects (font (size 1.27 1.27)) hide)
  6869. )
  6870. (property "LCSC" "C25744" (at 267.97 58.42 0)
  6871. (effects (font (size 1.27 1.27)) hide)
  6872. )
  6873. (pin "1" (uuid bc32c772-f75a-43e4-b3a8-a7be7eb0b0b7))
  6874. (pin "2" (uuid 103c4835-5f15-418a-ace8-90d7911eeeec))
  6875. (instances
  6876. (project "Greaseweazle"
  6877. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6878. (reference "R13") (unit 1)
  6879. )
  6880. )
  6881. )
  6882. )
  6883. (symbol (lib_id "Device:R_Small") (at 267.97 63.5 270) (unit 1)
  6884. (in_bom yes) (on_board yes) (dnp no)
  6885. (uuid 00000000-0000-0000-0000-0000611fd625)
  6886. (property "Reference" "R14" (at 264.16 60.96 90)
  6887. (effects (font (size 1.27 1.27)))
  6888. )
  6889. (property "Value" "10k" (at 271.78 60.96 90)
  6890. (effects (font (size 1.27 1.27)))
  6891. )
  6892. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 63.5 0)
  6893. (effects (font (size 1.27 1.27)) hide)
  6894. )
  6895. (property "Datasheet" "~" (at 267.97 63.5 0)
  6896. (effects (font (size 1.27 1.27)) hide)
  6897. )
  6898. (property "LCSC" "C25744" (at 267.97 63.5 0)
  6899. (effects (font (size 1.27 1.27)) hide)
  6900. )
  6901. (pin "1" (uuid 91254066-d51b-4c18-a8cf-b313fdb6f168))
  6902. (pin "2" (uuid cf26a1c6-e7a7-483b-a332-36e4672e2728))
  6903. (instances
  6904. (project "Greaseweazle"
  6905. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6906. (reference "R14") (unit 1)
  6907. )
  6908. )
  6909. )
  6910. )
  6911. (symbol (lib_id "Device:R_Small") (at 267.97 68.58 270) (unit 1)
  6912. (in_bom yes) (on_board yes) (dnp no)
  6913. (uuid 00000000-0000-0000-0000-0000611fe402)
  6914. (property "Reference" "R15" (at 264.16 66.04 90)
  6915. (effects (font (size 1.27 1.27)))
  6916. )
  6917. (property "Value" "10k" (at 271.78 66.04 90)
  6918. (effects (font (size 1.27 1.27)))
  6919. )
  6920. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 68.58 0)
  6921. (effects (font (size 1.27 1.27)) hide)
  6922. )
  6923. (property "Datasheet" "~" (at 267.97 68.58 0)
  6924. (effects (font (size 1.27 1.27)) hide)
  6925. )
  6926. (property "LCSC" "C25744" (at 267.97 68.58 0)
  6927. (effects (font (size 1.27 1.27)) hide)
  6928. )
  6929. (pin "1" (uuid 2195e2f2-da04-4bd6-a319-2c21e265eda5))
  6930. (pin "2" (uuid b5a18fcc-9f5b-4e8c-834d-52e7758a3c86))
  6931. (instances
  6932. (project "Greaseweazle"
  6933. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6934. (reference "R15") (unit 1)
  6935. )
  6936. )
  6937. )
  6938. )
  6939. (symbol (lib_id "Device:R_Small") (at 267.97 73.66 270) (unit 1)
  6940. (in_bom yes) (on_board yes) (dnp no)
  6941. (uuid 00000000-0000-0000-0000-0000611ff27a)
  6942. (property "Reference" "R16" (at 264.16 71.12 90)
  6943. (effects (font (size 1.27 1.27)))
  6944. )
  6945. (property "Value" "10k" (at 271.78 71.12 90)
  6946. (effects (font (size 1.27 1.27)))
  6947. )
  6948. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 73.66 0)
  6949. (effects (font (size 1.27 1.27)) hide)
  6950. )
  6951. (property "Datasheet" "~" (at 267.97 73.66 0)
  6952. (effects (font (size 1.27 1.27)) hide)
  6953. )
  6954. (property "LCSC" "C25744" (at 267.97 73.66 0)
  6955. (effects (font (size 1.27 1.27)) hide)
  6956. )
  6957. (pin "1" (uuid 2b4cd3f3-7dbf-4150-8a50-b1ff074d7900))
  6958. (pin "2" (uuid 8f7d91fb-9467-4183-80a1-867a2c3f8a7e))
  6959. (instances
  6960. (project "Greaseweazle"
  6961. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6962. (reference "R16") (unit 1)
  6963. )
  6964. )
  6965. )
  6966. )
  6967. (symbol (lib_id "Device:R_Small") (at 267.97 78.74 270) (unit 1)
  6968. (in_bom yes) (on_board yes) (dnp no)
  6969. (uuid 00000000-0000-0000-0000-0000612000bb)
  6970. (property "Reference" "R17" (at 265.43 76.2 90)
  6971. (effects (font (size 1.27 1.27)))
  6972. )
  6973. (property "Value" "10k" (at 271.78 76.2 90)
  6974. (effects (font (size 1.27 1.27)))
  6975. )
  6976. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 78.74 0)
  6977. (effects (font (size 1.27 1.27)) hide)
  6978. )
  6979. (property "Datasheet" "~" (at 267.97 78.74 0)
  6980. (effects (font (size 1.27 1.27)) hide)
  6981. )
  6982. (property "LCSC" "C25744" (at 267.97 78.74 0)
  6983. (effects (font (size 1.27 1.27)) hide)
  6984. )
  6985. (pin "1" (uuid 73841576-14f3-438c-b6e1-04ce224ed47b))
  6986. (pin "2" (uuid 0145e00b-171e-43d9-b06d-fee0a2f04f39))
  6987. (instances
  6988. (project "Greaseweazle"
  6989. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  6990. (reference "R17") (unit 1)
  6991. )
  6992. )
  6993. )
  6994. )
  6995. (symbol (lib_id "Device:R_Small") (at 267.97 83.82 270) (unit 1)
  6996. (in_bom yes) (on_board yes) (dnp no)
  6997. (uuid 00000000-0000-0000-0000-000061200f43)
  6998. (property "Reference" "R18" (at 264.16 81.28 90)
  6999. (effects (font (size 1.27 1.27)))
  7000. )
  7001. (property "Value" "10k" (at 271.78 81.28 90)
  7002. (effects (font (size 1.27 1.27)))
  7003. )
  7004. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 83.82 0)
  7005. (effects (font (size 1.27 1.27)) hide)
  7006. )
  7007. (property "Datasheet" "~" (at 267.97 83.82 0)
  7008. (effects (font (size 1.27 1.27)) hide)
  7009. )
  7010. (property "LCSC" "C25744" (at 267.97 83.82 0)
  7011. (effects (font (size 1.27 1.27)) hide)
  7012. )
  7013. (pin "1" (uuid c7879267-0799-48e8-9735-c2b4735a16f6))
  7014. (pin "2" (uuid eec36734-bff4-49be-8a73-c2e6d89da086))
  7015. (instances
  7016. (project "Greaseweazle"
  7017. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7018. (reference "R18") (unit 1)
  7019. )
  7020. )
  7021. )
  7022. )
  7023. (symbol (lib_id "power:+5V") (at 274.955 108.585 0) (unit 1)
  7024. (in_bom yes) (on_board yes) (dnp no)
  7025. (uuid 00000000-0000-0000-0000-00006126baa5)
  7026. (property "Reference" "#PWR09" (at 274.955 112.395 0)
  7027. (effects (font (size 1.27 1.27)) hide)
  7028. )
  7029. (property "Value" "+5V" (at 275.336 104.1908 0)
  7030. (effects (font (size 1.27 1.27)))
  7031. )
  7032. (property "Footprint" "" (at 274.955 108.585 0)
  7033. (effects (font (size 1.27 1.27)) hide)
  7034. )
  7035. (property "Datasheet" "" (at 274.955 108.585 0)
  7036. (effects (font (size 1.27 1.27)) hide)
  7037. )
  7038. (pin "1" (uuid 807871f7-f850-4128-bdfe-ed4ba365f245))
  7039. (instances
  7040. (project "Greaseweazle"
  7041. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7042. (reference "#PWR09") (unit 1)
  7043. )
  7044. )
  7045. )
  7046. )
  7047. (symbol (lib_id "Oscillator:ASCO") (at 122.555 121.92 0) (mirror y) (unit 1)
  7048. (in_bom yes) (on_board yes) (dnp no)
  7049. (uuid 00000000-0000-0000-0000-00006138d37a)
  7050. (property "Reference" "X1" (at 133.8326 120.7516 0)
  7051. (effects (font (size 1.27 1.27)) (justify right))
  7052. )
  7053. (property "Value" "16MHz" (at 133.8326 123.063 0)
  7054. (effects (font (size 1.27 1.27)) (justify right))
  7055. )
  7056. (property "Footprint" "Greaseweazle:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (at 120.015 130.81 0)
  7057. (effects (font (size 1.27 1.27)) hide)
  7058. )
  7059. (property "Datasheet" "https://abracon.com/Oscillators/ASCO.pdf" (at 128.27 118.745 0)
  7060. (effects (font (size 1.27 1.27)) hide)
  7061. )
  7062. (property "MOUSER" "520-3225MV-160-BNT" (at 122.555 121.92 0)
  7063. (effects (font (size 1.27 1.27)) hide)
  7064. )
  7065. (property "LCSC" "C252336" (at 122.555 121.92 0)
  7066. (effects (font (size 1.27 1.27)) hide)
  7067. )
  7068. (pin "1" (uuid 02b07214-5684-4bf1-9764-9cbbb73366f0))
  7069. (pin "2" (uuid 94b02acb-b941-4e5d-a803-5f767ff385da))
  7070. (pin "3" (uuid dd18e56c-7eee-4e90-ad95-e6ce34c0fb16))
  7071. (pin "4" (uuid b68961b1-2003-495c-ae70-e4148030a126))
  7072. (instances
  7073. (project "Greaseweazle"
  7074. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7075. (reference "X1") (unit 1)
  7076. )
  7077. )
  7078. )
  7079. )
  7080. (symbol (lib_id "power:+3V3") (at 122.555 111.76 0) (unit 1)
  7081. (in_bom yes) (on_board yes) (dnp no)
  7082. (uuid 00000000-0000-0000-0000-00006139973e)
  7083. (property "Reference" "#PWR04" (at 122.555 115.57 0)
  7084. (effects (font (size 1.27 1.27)) hide)
  7085. )
  7086. (property "Value" "+3V3" (at 126.365 110.49 0)
  7087. (effects (font (size 1.27 1.27)))
  7088. )
  7089. (property "Footprint" "" (at 122.555 111.76 0)
  7090. (effects (font (size 1.27 1.27)) hide)
  7091. )
  7092. (property "Datasheet" "" (at 122.555 111.76 0)
  7093. (effects (font (size 1.27 1.27)) hide)
  7094. )
  7095. (pin "1" (uuid 989a8ff9-18c2-413e-961e-31d789a51854))
  7096. (instances
  7097. (project "Greaseweazle"
  7098. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7099. (reference "#PWR04") (unit 1)
  7100. )
  7101. )
  7102. )
  7103. )
  7104. (symbol (lib_id "power:GND") (at 122.555 130.81 0) (unit 1)
  7105. (in_bom yes) (on_board yes) (dnp no)
  7106. (uuid 00000000-0000-0000-0000-0000613a4a45)
  7107. (property "Reference" "#PWR05" (at 122.555 137.16 0)
  7108. (effects (font (size 1.27 1.27)) hide)
  7109. )
  7110. (property "Value" "GND" (at 122.682 135.2042 0)
  7111. (effects (font (size 1.27 1.27)))
  7112. )
  7113. (property "Footprint" "" (at 122.555 130.81 0)
  7114. (effects (font (size 1.27 1.27)) hide)
  7115. )
  7116. (property "Datasheet" "" (at 122.555 130.81 0)
  7117. (effects (font (size 1.27 1.27)) hide)
  7118. )
  7119. (pin "1" (uuid bd599c2b-ec09-436e-942e-6849fdb43942))
  7120. (instances
  7121. (project "Greaseweazle"
  7122. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7123. (reference "#PWR05") (unit 1)
  7124. )
  7125. )
  7126. )
  7127. )
  7128. (symbol (lib_id "Device:R_Small") (at 268.605 111.125 270) (unit 1)
  7129. (in_bom yes) (on_board yes) (dnp no)
  7130. (uuid 00000000-0000-0000-0000-000061540484)
  7131. (property "Reference" "R19" (at 264.795 108.585 90)
  7132. (effects (font (size 1.27 1.27)))
  7133. )
  7134. (property "Value" "1k" (at 272.415 108.585 90)
  7135. (effects (font (size 1.27 1.27)))
  7136. )
  7137. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 268.605 111.125 0)
  7138. (effects (font (size 1.27 1.27)) hide)
  7139. )
  7140. (property "Datasheet" "~" (at 268.605 111.125 0)
  7141. (effects (font (size 1.27 1.27)) hide)
  7142. )
  7143. (property "LCSC" "C11702" (at 268.605 111.125 0)
  7144. (effects (font (size 1.27 1.27)) hide)
  7145. )
  7146. (pin "1" (uuid bdb39d38-ce31-4800-bd04-5e8489581a7c))
  7147. (pin "2" (uuid b868dcd4-3a02-4fb0-9750-dc85febd6913))
  7148. (instances
  7149. (project "Greaseweazle"
  7150. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7151. (reference "R19") (unit 1)
  7152. )
  7153. )
  7154. )
  7155. )
  7156. (symbol (lib_id "Device:R_Small") (at 268.605 116.205 270) (unit 1)
  7157. (in_bom yes) (on_board yes) (dnp no)
  7158. (uuid 00000000-0000-0000-0000-000061541c23)
  7159. (property "Reference" "R20" (at 264.795 113.665 90)
  7160. (effects (font (size 1.27 1.27)))
  7161. )
  7162. (property "Value" "1k" (at 272.415 114.935 90)
  7163. (effects (font (size 1.27 1.27)))
  7164. )
  7165. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 268.605 116.205 0)
  7166. (effects (font (size 1.27 1.27)) hide)
  7167. )
  7168. (property "Datasheet" "~" (at 268.605 116.205 0)
  7169. (effects (font (size 1.27 1.27)) hide)
  7170. )
  7171. (property "LCSC" "C11702" (at 268.605 116.205 0)
  7172. (effects (font (size 1.27 1.27)) hide)
  7173. )
  7174. (pin "1" (uuid c6b17716-5fd8-428a-8f7e-0372ee8b9ea7))
  7175. (pin "2" (uuid c7bce3ff-6d28-4c2c-9b64-11b2aa93a5ca))
  7176. (instances
  7177. (project "Greaseweazle"
  7178. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7179. (reference "R20") (unit 1)
  7180. )
  7181. )
  7182. )
  7183. )
  7184. (symbol (lib_id "Device:R_Small") (at 268.605 121.285 270) (unit 1)
  7185. (in_bom yes) (on_board yes) (dnp no)
  7186. (uuid 00000000-0000-0000-0000-0000615428fc)
  7187. (property "Reference" "R21" (at 266.065 118.745 90)
  7188. (effects (font (size 1.27 1.27)))
  7189. )
  7190. (property "Value" "1k" (at 272.415 118.745 90)
  7191. (effects (font (size 1.27 1.27)))
  7192. )
  7193. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 268.605 121.285 0)
  7194. (effects (font (size 1.27 1.27)) hide)
  7195. )
  7196. (property "Datasheet" "~" (at 268.605 121.285 0)
  7197. (effects (font (size 1.27 1.27)) hide)
  7198. )
  7199. (property "LCSC" "C11702" (at 268.605 121.285 0)
  7200. (effects (font (size 1.27 1.27)) hide)
  7201. )
  7202. (pin "1" (uuid 925730e4-95c9-4c63-8650-486fa63f2212))
  7203. (pin "2" (uuid 23a5ced7-2b7d-4185-9a82-1fbdc1aa4390))
  7204. (instances
  7205. (project "Greaseweazle"
  7206. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7207. (reference "R21") (unit 1)
  7208. )
  7209. )
  7210. )
  7211. )
  7212. (symbol (lib_id "Device:R_Small") (at 268.605 126.365 270) (unit 1)
  7213. (in_bom yes) (on_board yes) (dnp no)
  7214. (uuid 00000000-0000-0000-0000-0000615435d8)
  7215. (property "Reference" "R22" (at 264.795 123.825 90)
  7216. (effects (font (size 1.27 1.27)))
  7217. )
  7218. (property "Value" "1k" (at 272.415 123.825 90)
  7219. (effects (font (size 1.27 1.27)))
  7220. )
  7221. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 268.605 126.365 0)
  7222. (effects (font (size 1.27 1.27)) hide)
  7223. )
  7224. (property "Datasheet" "~" (at 268.605 126.365 0)
  7225. (effects (font (size 1.27 1.27)) hide)
  7226. )
  7227. (property "LCSC" "C11702" (at 268.605 126.365 0)
  7228. (effects (font (size 1.27 1.27)) hide)
  7229. )
  7230. (pin "1" (uuid a7dbcf5d-7f15-47b8-818f-7472764a1ac7))
  7231. (pin "2" (uuid 8099129e-89ff-4d3c-8e6f-309333d77fbf))
  7232. (instances
  7233. (project "Greaseweazle"
  7234. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7235. (reference "R22") (unit 1)
  7236. )
  7237. )
  7238. )
  7239. )
  7240. (symbol (lib_id "power:+3V3") (at 274.32 25.4 0) (unit 1)
  7241. (in_bom yes) (on_board yes) (dnp no)
  7242. (uuid 00000000-0000-0000-0000-000061550552)
  7243. (property "Reference" "#PWR08" (at 274.32 29.21 0)
  7244. (effects (font (size 1.27 1.27)) hide)
  7245. )
  7246. (property "Value" "+3V3" (at 274.701 21.0058 0)
  7247. (effects (font (size 1.27 1.27)))
  7248. )
  7249. (property "Footprint" "" (at 274.32 25.4 0)
  7250. (effects (font (size 1.27 1.27)) hide)
  7251. )
  7252. (property "Datasheet" "" (at 274.32 25.4 0)
  7253. (effects (font (size 1.27 1.27)) hide)
  7254. )
  7255. (pin "1" (uuid ccfbcf7f-cf75-49ec-a1e7-7b013b2d3905))
  7256. (instances
  7257. (project "Greaseweazle"
  7258. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7259. (reference "#PWR08") (unit 1)
  7260. )
  7261. )
  7262. )
  7263. )
  7264. (symbol (lib_id "Device:C_Small") (at 151.13 24.13 0) (unit 1)
  7265. (in_bom yes) (on_board yes) (dnp no)
  7266. (uuid 00000000-0000-0000-0000-0000616c45b0)
  7267. (property "Reference" "C19" (at 153.4668 22.9616 0)
  7268. (effects (font (size 1.27 1.27)) (justify left))
  7269. )
  7270. (property "Value" "100nF" (at 153.4668 25.273 0)
  7271. (effects (font (size 1.27 1.27)) (justify left))
  7272. )
  7273. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 151.13 24.13 0)
  7274. (effects (font (size 1.27 1.27)) hide)
  7275. )
  7276. (property "Datasheet" "~" (at 151.13 24.13 0)
  7277. (effects (font (size 1.27 1.27)) hide)
  7278. )
  7279. (property "LCSC" "C1525" (at 151.13 24.13 0)
  7280. (effects (font (size 1.27 1.27)) hide)
  7281. )
  7282. (pin "1" (uuid 6ff4ddb0-7fc2-4345-b786-a84d787ec204))
  7283. (pin "2" (uuid de8b9cd6-23ff-4031-b87e-0b8a74cfc6f3))
  7284. (instances
  7285. (project "Greaseweazle"
  7286. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7287. (reference "C19") (unit 1)
  7288. )
  7289. )
  7290. )
  7291. )
  7292. (symbol (lib_id "Device:C_Small") (at 139.7 24.13 0) (unit 1)
  7293. (in_bom yes) (on_board yes) (dnp no)
  7294. (uuid 00000000-0000-0000-0000-0000616c45ba)
  7295. (property "Reference" "C18" (at 142.0368 22.9616 0)
  7296. (effects (font (size 1.27 1.27)) (justify left))
  7297. )
  7298. (property "Value" "100nF" (at 142.0368 25.273 0)
  7299. (effects (font (size 1.27 1.27)) (justify left))
  7300. )
  7301. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 139.7 24.13 0)
  7302. (effects (font (size 1.27 1.27)) hide)
  7303. )
  7304. (property "Datasheet" "~" (at 139.7 24.13 0)
  7305. (effects (font (size 1.27 1.27)) hide)
  7306. )
  7307. (property "LCSC" "C1525" (at 139.7 24.13 0)
  7308. (effects (font (size 1.27 1.27)) hide)
  7309. )
  7310. (pin "1" (uuid b9b9114f-cfdd-4f0f-994c-c896bb2c8ed4))
  7311. (pin "2" (uuid d9ec4686-42ea-445a-9055-88bd8eb9cf52))
  7312. (instances
  7313. (project "Greaseweazle"
  7314. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7315. (reference "C18") (unit 1)
  7316. )
  7317. )
  7318. )
  7319. )
  7320. (symbol (lib_id "power:GND") (at 167.64 49.53 0) (unit 1)
  7321. (in_bom yes) (on_board yes) (dnp no)
  7322. (uuid 00000000-0000-0000-0000-00006170e1c1)
  7323. (property "Reference" "#PWR06" (at 167.64 55.88 0)
  7324. (effects (font (size 1.27 1.27)) hide)
  7325. )
  7326. (property "Value" "GND" (at 167.767 53.9242 0)
  7327. (effects (font (size 1.27 1.27)))
  7328. )
  7329. (property "Footprint" "" (at 167.64 49.53 0)
  7330. (effects (font (size 1.27 1.27)) hide)
  7331. )
  7332. (property "Datasheet" "" (at 167.64 49.53 0)
  7333. (effects (font (size 1.27 1.27)) hide)
  7334. )
  7335. (pin "1" (uuid de1be746-b7ec-4baf-8299-9379d5cfcc62))
  7336. (instances
  7337. (project "Greaseweazle"
  7338. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7339. (reference "#PWR06") (unit 1)
  7340. )
  7341. )
  7342. )
  7343. )
  7344. (symbol (lib_id "power:GND") (at 189.23 49.53 0) (unit 1)
  7345. (in_bom yes) (on_board yes) (dnp no)
  7346. (uuid 00000000-0000-0000-0000-00006171a8a6)
  7347. (property "Reference" "#PWR07" (at 189.23 55.88 0)
  7348. (effects (font (size 1.27 1.27)) hide)
  7349. )
  7350. (property "Value" "GND" (at 189.357 53.9242 0)
  7351. (effects (font (size 1.27 1.27)))
  7352. )
  7353. (property "Footprint" "" (at 189.23 49.53 0)
  7354. (effects (font (size 1.27 1.27)) hide)
  7355. )
  7356. (property "Datasheet" "" (at 189.23 49.53 0)
  7357. (effects (font (size 1.27 1.27)) hide)
  7358. )
  7359. (pin "1" (uuid 778638ac-e0fb-42b8-8c63-0809f5895195))
  7360. (instances
  7361. (project "Greaseweazle"
  7362. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7363. (reference "#PWR07") (unit 1)
  7364. )
  7365. )
  7366. )
  7367. )
  7368. (symbol (lib_id "Device:LED") (at 38.735 31.115 90) (unit 1)
  7369. (in_bom yes) (on_board yes) (dnp no)
  7370. (uuid 00000000-0000-0000-0000-000061787067)
  7371. (property "Reference" "D1" (at 41.7322 30.1244 90)
  7372. (effects (font (size 1.27 1.27)) (justify right))
  7373. )
  7374. (property "Value" "LED" (at 41.7322 32.4358 90)
  7375. (effects (font (size 1.27 1.27)) (justify right))
  7376. )
  7377. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 38.735 31.115 0)
  7378. (effects (font (size 1.27 1.27)) hide)
  7379. )
  7380. (property "Datasheet" "~" (at 38.735 31.115 0)
  7381. (effects (font (size 1.27 1.27)) hide)
  7382. )
  7383. (property "LCSC" "C72041" (at 38.735 31.115 0)
  7384. (effects (font (size 1.27 1.27)) hide)
  7385. )
  7386. (pin "1" (uuid 62a2d35c-51f3-4560-9ba3-c8554b164be4))
  7387. (pin "2" (uuid 43adeeda-45a9-49c0-9f1f-746f14391161))
  7388. (instances
  7389. (project "Greaseweazle"
  7390. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7391. (reference "D1") (unit 1)
  7392. )
  7393. )
  7394. )
  7395. )
  7396. (symbol (lib_id "Device:R_Small") (at 38.735 23.495 0) (unit 1)
  7397. (in_bom yes) (on_board yes) (dnp no)
  7398. (uuid 00000000-0000-0000-0000-000061789539)
  7399. (property "Reference" "R6" (at 40.2336 22.3266 0)
  7400. (effects (font (size 1.27 1.27)) (justify left))
  7401. )
  7402. (property "Value" "470" (at 40.2336 24.638 0)
  7403. (effects (font (size 1.27 1.27)) (justify left))
  7404. )
  7405. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 38.735 23.495 0)
  7406. (effects (font (size 1.27 1.27)) hide)
  7407. )
  7408. (property "Datasheet" "~" (at 38.735 23.495 0)
  7409. (effects (font (size 1.27 1.27)) hide)
  7410. )
  7411. (property "LCSC" "C25117" (at 38.735 23.495 0)
  7412. (effects (font (size 1.27 1.27)) hide)
  7413. )
  7414. (pin "1" (uuid 1cb534a2-4c17-4751-8a89-694b1a1ecbe7))
  7415. (pin "2" (uuid d80a6ce8-ddc9-4465-843e-77fab6b40b99))
  7416. (instances
  7417. (project "Greaseweazle"
  7418. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7419. (reference "R6") (unit 1)
  7420. )
  7421. )
  7422. )
  7423. )
  7424. (symbol (lib_id "power:+3V3") (at 38.735 19.685 0) (unit 1)
  7425. (in_bom yes) (on_board yes) (dnp no)
  7426. (uuid 00000000-0000-0000-0000-0000617910f5)
  7427. (property "Reference" "#PWR03" (at 38.735 23.495 0)
  7428. (effects (font (size 1.27 1.27)) hide)
  7429. )
  7430. (property "Value" "+3V3" (at 39.116 15.2908 0)
  7431. (effects (font (size 1.27 1.27)))
  7432. )
  7433. (property "Footprint" "" (at 38.735 19.685 0)
  7434. (effects (font (size 1.27 1.27)) hide)
  7435. )
  7436. (property "Datasheet" "" (at 38.735 19.685 0)
  7437. (effects (font (size 1.27 1.27)) hide)
  7438. )
  7439. (pin "1" (uuid 7b73243f-f2a2-4601-b3a2-a4364a47c988))
  7440. (instances
  7441. (project "Greaseweazle"
  7442. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7443. (reference "#PWR03") (unit 1)
  7444. )
  7445. )
  7446. )
  7447. )
  7448. (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 76.835 52.705 0) (unit 1)
  7449. (in_bom yes) (on_board yes) (dnp no)
  7450. (uuid 00000000-0000-0000-0000-0000619aeefc)
  7451. (property "Reference" "J5" (at 78.105 42.1132 0)
  7452. (effects (font (size 1.27 1.27)))
  7453. )
  7454. (property "Value" "ST LINK DEBUG/FLASH" (at 78.105 44.4246 0)
  7455. (effects (font (size 1.27 1.27)))
  7456. )
  7457. (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (at 76.835 52.705 0)
  7458. (effects (font (size 1.27 1.27)) hide)
  7459. )
  7460. (property "Datasheet" "~" (at 76.835 52.705 0)
  7461. (effects (font (size 1.27 1.27)) hide)
  7462. )
  7463. (property "LCSC" "C706914" (at 76.835 52.705 0)
  7464. (effects (font (size 1.27 1.27)) hide)
  7465. )
  7466. (pin "1" (uuid d9904713-5589-410c-a87c-dc35e17cdc96))
  7467. (pin "10" (uuid c6167abf-5b27-4d58-bbc4-02a12e1b50f2))
  7468. (pin "2" (uuid cc6d8589-d3ef-4c49-8f29-121ddf19266e))
  7469. (pin "3" (uuid c97331df-a2bf-4a4b-b52c-67d808eb3912))
  7470. (pin "4" (uuid b686aa45-50ed-4c6d-9a9e-44c8ef2cc835))
  7471. (pin "5" (uuid feb7af07-00c5-44ae-98db-c56bb3db2efb))
  7472. (pin "6" (uuid 15b9d65e-3834-4c21-b97d-64b85ecb2c04))
  7473. (pin "7" (uuid a2cb3dd4-7456-4418-96f1-4c8fc4e82f93))
  7474. (pin "8" (uuid 1a3dca5e-9f4a-44a8-b3e2-f1721faa1094))
  7475. (pin "9" (uuid 876b127b-2c90-425b-b412-703b2a6ab315))
  7476. (instances
  7477. (project "Greaseweazle"
  7478. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7479. (reference "J5") (unit 1)
  7480. )
  7481. )
  7482. )
  7483. )
  7484. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 152.4 167.64 0) (unit 1)
  7485. (in_bom yes) (on_board yes) (dnp no)
  7486. (uuid 00000000-0000-0000-0000-000061a29d54)
  7487. (property "Reference" "J7" (at 151.13 158.75 0)
  7488. (effects (font (size 1.27 1.27)) (justify left))
  7489. )
  7490. (property "Value" "ID" (at 135.89 161.29 0)
  7491. (effects (font (size 1.27 1.27)) (justify left))
  7492. )
  7493. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (at 152.4 167.64 0)
  7494. (effects (font (size 1.27 1.27)) hide)
  7495. )
  7496. (property "Datasheet" "~" (at 152.4 167.64 0)
  7497. (effects (font (size 1.27 1.27)) hide)
  7498. )
  7499. (property "LCSC" "C225478" (at 152.4 167.64 0)
  7500. (effects (font (size 1.27 1.27)) hide)
  7501. )
  7502. (pin "1" (uuid 2460893c-a3af-4899-95e1-0e398bf3d855))
  7503. (pin "2" (uuid 4aa6fc9f-d2ac-435f-8408-092c94eb96e1))
  7504. (pin "3" (uuid a044e21d-edf5-4199-9c94-8aa40ba0be53))
  7505. (instances
  7506. (project "Greaseweazle"
  7507. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7508. (reference "J7") (unit 1)
  7509. )
  7510. )
  7511. )
  7512. )
  7513. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 163.83 167.64 0) (unit 1)
  7514. (in_bom yes) (on_board yes) (dnp no)
  7515. (uuid 00000000-0000-0000-0000-000061a2b329)
  7516. (property "Reference" "J8" (at 162.56 158.75 0)
  7517. (effects (font (size 1.27 1.27)) (justify left))
  7518. )
  7519. (property "Value" "ID LOW" (at 161.29 161.29 0)
  7520. (effects (font (size 1.27 1.27)) (justify left))
  7521. )
  7522. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (at 163.83 167.64 0)
  7523. (effects (font (size 1.27 1.27)) hide)
  7524. )
  7525. (property "Datasheet" "~" (at 163.83 167.64 0)
  7526. (effects (font (size 1.27 1.27)) hide)
  7527. )
  7528. (property "LCSC" "C225478" (at 163.83 167.64 0)
  7529. (effects (font (size 1.27 1.27)) hide)
  7530. )
  7531. (pin "1" (uuid a9f64757-5858-4f74-85b0-83b0b6984315))
  7532. (pin "2" (uuid 6b41202c-9017-4555-8823-836bda0ce6bf))
  7533. (pin "3" (uuid e71a0e1f-4c5f-4fa7-97cc-0c3ffe757078))
  7534. (instances
  7535. (project "Greaseweazle"
  7536. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7537. (reference "J8") (unit 1)
  7538. )
  7539. )
  7540. )
  7541. )
  7542. (symbol (lib_id "power:+3V3") (at 144.78 162.56 0) (unit 1)
  7543. (in_bom yes) (on_board yes) (dnp no)
  7544. (uuid 00000000-0000-0000-0000-000061a5abb1)
  7545. (property "Reference" "#PWR0107" (at 144.78 166.37 0)
  7546. (effects (font (size 1.27 1.27)) hide)
  7547. )
  7548. (property "Value" "+3V3" (at 145.161 158.1658 0)
  7549. (effects (font (size 1.27 1.27)))
  7550. )
  7551. (property "Footprint" "" (at 144.78 162.56 0)
  7552. (effects (font (size 1.27 1.27)) hide)
  7553. )
  7554. (property "Datasheet" "" (at 144.78 162.56 0)
  7555. (effects (font (size 1.27 1.27)) hide)
  7556. )
  7557. (pin "1" (uuid 7134f0e7-4867-4617-b970-a95d472f2379))
  7558. (instances
  7559. (project "Greaseweazle"
  7560. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7561. (reference "#PWR0107") (unit 1)
  7562. )
  7563. )
  7564. )
  7565. )
  7566. (symbol (lib_id "power:GND") (at 156.21 172.72 0) (unit 1)
  7567. (in_bom yes) (on_board yes) (dnp no)
  7568. (uuid 00000000-0000-0000-0000-000061a8d98a)
  7569. (property "Reference" "#PWR0108" (at 156.21 179.07 0)
  7570. (effects (font (size 1.27 1.27)) hide)
  7571. )
  7572. (property "Value" "GND" (at 156.337 177.1142 0)
  7573. (effects (font (size 1.27 1.27)))
  7574. )
  7575. (property "Footprint" "" (at 156.21 172.72 0)
  7576. (effects (font (size 1.27 1.27)) hide)
  7577. )
  7578. (property "Datasheet" "" (at 156.21 172.72 0)
  7579. (effects (font (size 1.27 1.27)) hide)
  7580. )
  7581. (pin "1" (uuid 391a6298-71f7-4c29-9a57-1b9126684372))
  7582. (instances
  7583. (project "Greaseweazle"
  7584. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7585. (reference "#PWR0108") (unit 1)
  7586. )
  7587. )
  7588. )
  7589. )
  7590. (symbol (lib_id "power:GND") (at 61.595 61.595 0) (unit 1)
  7591. (in_bom yes) (on_board yes) (dnp no)
  7592. (uuid 00000000-0000-0000-0000-000061aafd54)
  7593. (property "Reference" "#PWR0110" (at 61.595 67.945 0)
  7594. (effects (font (size 1.27 1.27)) hide)
  7595. )
  7596. (property "Value" "GND" (at 61.722 65.9892 0)
  7597. (effects (font (size 1.27 1.27)))
  7598. )
  7599. (property "Footprint" "" (at 61.595 61.595 0)
  7600. (effects (font (size 1.27 1.27)) hide)
  7601. )
  7602. (property "Datasheet" "" (at 61.595 61.595 0)
  7603. (effects (font (size 1.27 1.27)) hide)
  7604. )
  7605. (pin "1" (uuid f6661887-cf0e-4db1-8f7b-e7f30359b22c))
  7606. (instances
  7607. (project "Greaseweazle"
  7608. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7609. (reference "#PWR0110") (unit 1)
  7610. )
  7611. )
  7612. )
  7613. )
  7614. (symbol (lib_id "power:GND") (at 92.075 61.595 0) (unit 1)
  7615. (in_bom yes) (on_board yes) (dnp no)
  7616. (uuid 00000000-0000-0000-0000-000061abe3cd)
  7617. (property "Reference" "#PWR0111" (at 92.075 67.945 0)
  7618. (effects (font (size 1.27 1.27)) hide)
  7619. )
  7620. (property "Value" "GND" (at 92.202 65.9892 0)
  7621. (effects (font (size 1.27 1.27)))
  7622. )
  7623. (property "Footprint" "" (at 92.075 61.595 0)
  7624. (effects (font (size 1.27 1.27)) hide)
  7625. )
  7626. (property "Datasheet" "" (at 92.075 61.595 0)
  7627. (effects (font (size 1.27 1.27)) hide)
  7628. )
  7629. (pin "1" (uuid f9f013bd-5225-4bad-a22e-600cf9fcef63))
  7630. (instances
  7631. (project "Greaseweazle"
  7632. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7633. (reference "#PWR0111") (unit 1)
  7634. )
  7635. )
  7636. )
  7637. )
  7638. (symbol (lib_id "power:+3V3") (at 97.155 52.705 0) (unit 1)
  7639. (in_bom yes) (on_board yes) (dnp no)
  7640. (uuid 00000000-0000-0000-0000-000061aecf76)
  7641. (property "Reference" "#PWR0112" (at 97.155 56.515 0)
  7642. (effects (font (size 1.27 1.27)) hide)
  7643. )
  7644. (property "Value" "+3V3" (at 97.536 48.3108 0)
  7645. (effects (font (size 1.27 1.27)))
  7646. )
  7647. (property "Footprint" "" (at 97.155 52.705 0)
  7648. (effects (font (size 1.27 1.27)) hide)
  7649. )
  7650. (property "Datasheet" "" (at 97.155 52.705 0)
  7651. (effects (font (size 1.27 1.27)) hide)
  7652. )
  7653. (pin "1" (uuid 8657ebd4-6149-4492-bac5-2ce6f77c5b3b))
  7654. (instances
  7655. (project "Greaseweazle"
  7656. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7657. (reference "#PWR0112") (unit 1)
  7658. )
  7659. )
  7660. )
  7661. )
  7662. (symbol (lib_id "power:+5V") (at 102.235 52.705 0) (unit 1)
  7663. (in_bom yes) (on_board yes) (dnp no)
  7664. (uuid 00000000-0000-0000-0000-000061afd140)
  7665. (property "Reference" "#PWR0113" (at 102.235 56.515 0)
  7666. (effects (font (size 1.27 1.27)) hide)
  7667. )
  7668. (property "Value" "+5V" (at 102.616 48.3108 0)
  7669. (effects (font (size 1.27 1.27)))
  7670. )
  7671. (property "Footprint" "" (at 102.235 52.705 0)
  7672. (effects (font (size 1.27 1.27)) hide)
  7673. )
  7674. (property "Datasheet" "" (at 102.235 52.705 0)
  7675. (effects (font (size 1.27 1.27)) hide)
  7676. )
  7677. (pin "1" (uuid a01755df-86c4-4a62-95cc-ecf2809c8a1a))
  7678. (instances
  7679. (project "Greaseweazle"
  7680. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7681. (reference "#PWR0113") (unit 1)
  7682. )
  7683. )
  7684. )
  7685. )
  7686. (symbol (lib_id "power:+3V3") (at 56.515 52.705 0) (unit 1)
  7687. (in_bom yes) (on_board yes) (dnp no)
  7688. (uuid 00000000-0000-0000-0000-000061b0e64a)
  7689. (property "Reference" "#PWR0114" (at 56.515 56.515 0)
  7690. (effects (font (size 1.27 1.27)) hide)
  7691. )
  7692. (property "Value" "+3V3" (at 56.896 48.3108 0)
  7693. (effects (font (size 1.27 1.27)))
  7694. )
  7695. (property "Footprint" "" (at 56.515 52.705 0)
  7696. (effects (font (size 1.27 1.27)) hide)
  7697. )
  7698. (property "Datasheet" "" (at 56.515 52.705 0)
  7699. (effects (font (size 1.27 1.27)) hide)
  7700. )
  7701. (pin "1" (uuid a61f637c-a305-4916-bf82-376a9a4e2a26))
  7702. (instances
  7703. (project "Greaseweazle"
  7704. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7705. (reference "#PWR0114") (unit 1)
  7706. )
  7707. )
  7708. )
  7709. )
  7710. (symbol (lib_id "power:+5V") (at 50.165 52.705 0) (unit 1)
  7711. (in_bom yes) (on_board yes) (dnp no)
  7712. (uuid 00000000-0000-0000-0000-000061b1e450)
  7713. (property "Reference" "#PWR0115" (at 50.165 56.515 0)
  7714. (effects (font (size 1.27 1.27)) hide)
  7715. )
  7716. (property "Value" "+5V" (at 50.546 48.3108 0)
  7717. (effects (font (size 1.27 1.27)))
  7718. )
  7719. (property "Footprint" "" (at 50.165 52.705 0)
  7720. (effects (font (size 1.27 1.27)) hide)
  7721. )
  7722. (property "Datasheet" "" (at 50.165 52.705 0)
  7723. (effects (font (size 1.27 1.27)) hide)
  7724. )
  7725. (pin "1" (uuid cf88f82e-a67e-47a6-9146-3dc97dd3a3ac))
  7726. (instances
  7727. (project "Greaseweazle"
  7728. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7729. (reference "#PWR0115") (unit 1)
  7730. )
  7731. )
  7732. )
  7733. )
  7734. (symbol (lib_id "power:GND") (at 139.7 27.94 0) (unit 1)
  7735. (in_bom yes) (on_board yes) (dnp no)
  7736. (uuid 00000000-0000-0000-0000-000061b7ab9b)
  7737. (property "Reference" "#PWR0116" (at 139.7 34.29 0)
  7738. (effects (font (size 1.27 1.27)) hide)
  7739. )
  7740. (property "Value" "GND" (at 139.827 32.3342 0)
  7741. (effects (font (size 1.27 1.27)))
  7742. )
  7743. (property "Footprint" "" (at 139.7 27.94 0)
  7744. (effects (font (size 1.27 1.27)) hide)
  7745. )
  7746. (property "Datasheet" "" (at 139.7 27.94 0)
  7747. (effects (font (size 1.27 1.27)) hide)
  7748. )
  7749. (pin "1" (uuid 7e8e834c-5fcc-4c97-a591-250d41a34553))
  7750. (instances
  7751. (project "Greaseweazle"
  7752. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7753. (reference "#PWR0116") (unit 1)
  7754. )
  7755. )
  7756. )
  7757. )
  7758. (symbol (lib_id "power:GND") (at 151.13 27.94 0) (unit 1)
  7759. (in_bom yes) (on_board yes) (dnp no)
  7760. (uuid 00000000-0000-0000-0000-000061b8acb1)
  7761. (property "Reference" "#PWR0117" (at 151.13 34.29 0)
  7762. (effects (font (size 1.27 1.27)) hide)
  7763. )
  7764. (property "Value" "GND" (at 151.257 32.3342 0)
  7765. (effects (font (size 1.27 1.27)))
  7766. )
  7767. (property "Footprint" "" (at 151.13 27.94 0)
  7768. (effects (font (size 1.27 1.27)) hide)
  7769. )
  7770. (property "Datasheet" "" (at 151.13 27.94 0)
  7771. (effects (font (size 1.27 1.27)) hide)
  7772. )
  7773. (pin "1" (uuid a6fbafad-3f9c-4613-abf9-d6b0ea786512))
  7774. (instances
  7775. (project "Greaseweazle"
  7776. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7777. (reference "#PWR0117") (unit 1)
  7778. )
  7779. )
  7780. )
  7781. )
  7782. (symbol (lib_id "power:+3V3") (at 139.7 20.32 0) (unit 1)
  7783. (in_bom yes) (on_board yes) (dnp no)
  7784. (uuid 00000000-0000-0000-0000-000061b9ba45)
  7785. (property "Reference" "#PWR0118" (at 139.7 24.13 0)
  7786. (effects (font (size 1.27 1.27)) hide)
  7787. )
  7788. (property "Value" "+3V3" (at 140.081 15.9258 0)
  7789. (effects (font (size 1.27 1.27)))
  7790. )
  7791. (property "Footprint" "" (at 139.7 20.32 0)
  7792. (effects (font (size 1.27 1.27)) hide)
  7793. )
  7794. (property "Datasheet" "" (at 139.7 20.32 0)
  7795. (effects (font (size 1.27 1.27)) hide)
  7796. )
  7797. (pin "1" (uuid cd376ec6-47e1-418a-9127-045d1da49ecd))
  7798. (instances
  7799. (project "Greaseweazle"
  7800. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7801. (reference "#PWR0118") (unit 1)
  7802. )
  7803. )
  7804. )
  7805. )
  7806. (symbol (lib_id "power:+3V3") (at 151.13 20.32 0) (unit 1)
  7807. (in_bom yes) (on_board yes) (dnp no)
  7808. (uuid 00000000-0000-0000-0000-000061b9cd1c)
  7809. (property "Reference" "#PWR0119" (at 151.13 24.13 0)
  7810. (effects (font (size 1.27 1.27)) hide)
  7811. )
  7812. (property "Value" "+3V3" (at 151.511 15.9258 0)
  7813. (effects (font (size 1.27 1.27)))
  7814. )
  7815. (property "Footprint" "" (at 151.13 20.32 0)
  7816. (effects (font (size 1.27 1.27)) hide)
  7817. )
  7818. (property "Datasheet" "" (at 151.13 20.32 0)
  7819. (effects (font (size 1.27 1.27)) hide)
  7820. )
  7821. (pin "1" (uuid c148d6a2-b769-45c3-bba5-967203976bd7))
  7822. (instances
  7823. (project "Greaseweazle"
  7824. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7825. (reference "#PWR0119") (unit 1)
  7826. )
  7827. )
  7828. )
  7829. )
  7830. (symbol (lib_id "power:+3V3") (at 167.64 20.32 0) (unit 1)
  7831. (in_bom yes) (on_board yes) (dnp no)
  7832. (uuid 00000000-0000-0000-0000-000061b9df0e)
  7833. (property "Reference" "#PWR0120" (at 167.64 24.13 0)
  7834. (effects (font (size 1.27 1.27)) hide)
  7835. )
  7836. (property "Value" "+3V3" (at 168.021 15.9258 0)
  7837. (effects (font (size 1.27 1.27)))
  7838. )
  7839. (property "Footprint" "" (at 167.64 20.32 0)
  7840. (effects (font (size 1.27 1.27)) hide)
  7841. )
  7842. (property "Datasheet" "" (at 167.64 20.32 0)
  7843. (effects (font (size 1.27 1.27)) hide)
  7844. )
  7845. (pin "1" (uuid c37f6d7b-cb0d-41e8-bebd-5887732015af))
  7846. (instances
  7847. (project "Greaseweazle"
  7848. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7849. (reference "#PWR0120") (unit 1)
  7850. )
  7851. )
  7852. )
  7853. )
  7854. (symbol (lib_id "power:+3V3") (at 189.23 20.32 0) (unit 1)
  7855. (in_bom yes) (on_board yes) (dnp no)
  7856. (uuid 00000000-0000-0000-0000-000061b9f12d)
  7857. (property "Reference" "#PWR0121" (at 189.23 24.13 0)
  7858. (effects (font (size 1.27 1.27)) hide)
  7859. )
  7860. (property "Value" "+3V3" (at 189.611 15.9258 0)
  7861. (effects (font (size 1.27 1.27)))
  7862. )
  7863. (property "Footprint" "" (at 189.23 20.32 0)
  7864. (effects (font (size 1.27 1.27)) hide)
  7865. )
  7866. (property "Datasheet" "" (at 189.23 20.32 0)
  7867. (effects (font (size 1.27 1.27)) hide)
  7868. )
  7869. (pin "1" (uuid 79ba0572-2056-43c1-be53-6ceefc2cf25a))
  7870. (instances
  7871. (project "Greaseweazle"
  7872. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7873. (reference "#PWR0121") (unit 1)
  7874. )
  7875. )
  7876. )
  7877. )
  7878. (symbol (lib_id "Switch:SW_DIP_x01") (at 214.122 148.59 0) (unit 1)
  7879. (in_bom yes) (on_board yes) (dnp no)
  7880. (uuid 090d4006-7fb4-4b65-a589-ddb73c5a2912)
  7881. (property "Reference" "J13" (at 218.0336 153.3652 90)
  7882. (effects (font (size 1.27 1.27)) (justify right))
  7883. )
  7884. (property "Value" "Conn_01x02_Male" (at 222.25 143.637 0)
  7885. (effects (font (size 1.27 1.27)) (justify right))
  7886. )
  7887. (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile" (at 214.122 148.59 0)
  7888. (effects (font (size 1.27 1.27)) hide)
  7889. )
  7890. (property "Datasheet" "~" (at 214.122 148.59 0)
  7891. (effects (font (size 1.27 1.27)) hide)
  7892. )
  7893. (property "LCSC" "C160332" (at 214.122 148.59 0)
  7894. (effects (font (size 1.27 1.27)) hide)
  7895. )
  7896. (pin "1" (uuid 6e6ec63b-a2bf-4ff2-9022-44a277d0e5f3))
  7897. (pin "2" (uuid bdb35393-bf7f-415b-9290-8fe2b0e92776))
  7898. (instances
  7899. (project "Greaseweazle"
  7900. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7901. (reference "J13") (unit 1)
  7902. )
  7903. )
  7904. )
  7905. )
  7906. (symbol (lib_id "power:GND") (at 19.05 61.595 0) (unit 1)
  7907. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  7908. (uuid 138b55c4-a8cf-43b6-aeeb-467cc948641b)
  7909. (property "Reference" "#PWR0175" (at 19.05 67.945 0)
  7910. (effects (font (size 1.27 1.27)) hide)
  7911. )
  7912. (property "Value" "GND" (at 19.05 66.675 0)
  7913. (effects (font (size 1.27 1.27)))
  7914. )
  7915. (property "Footprint" "" (at 19.05 61.595 0)
  7916. (effects (font (size 1.27 1.27)) hide)
  7917. )
  7918. (property "Datasheet" "" (at 19.05 61.595 0)
  7919. (effects (font (size 1.27 1.27)) hide)
  7920. )
  7921. (pin "1" (uuid cb2084ec-bf02-4b3f-b3b1-2b9f517acb7d))
  7922. (instances
  7923. (project "Greaseweazle"
  7924. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7925. (reference "#PWR0175") (unit 1)
  7926. )
  7927. )
  7928. )
  7929. )
  7930. (symbol (lib_id "power:+3V3") (at 114.3 162.56 0) (unit 1)
  7931. (in_bom yes) (on_board yes) (dnp no)
  7932. (uuid 19095159-4ec4-446a-9d52-3f5f6b54c307)
  7933. (property "Reference" "#PWR0223" (at 114.3 166.37 0)
  7934. (effects (font (size 1.27 1.27)) hide)
  7935. )
  7936. (property "Value" "+3V3" (at 114.681 158.1658 0)
  7937. (effects (font (size 1.27 1.27)))
  7938. )
  7939. (property "Footprint" "" (at 114.3 162.56 0)
  7940. (effects (font (size 1.27 1.27)) hide)
  7941. )
  7942. (property "Datasheet" "" (at 114.3 162.56 0)
  7943. (effects (font (size 1.27 1.27)) hide)
  7944. )
  7945. (pin "1" (uuid 5a64cde9-d891-41a2-bd50-a55fbb47acc4))
  7946. (instances
  7947. (project "Greaseweazle"
  7948. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7949. (reference "#PWR0223") (unit 1)
  7950. )
  7951. )
  7952. )
  7953. )
  7954. (symbol (lib_id "power:+3V3") (at 156.21 162.56 0) (unit 1)
  7955. (in_bom yes) (on_board yes) (dnp no)
  7956. (uuid 1e363680-fc77-40a0-b7ae-3279abfba965)
  7957. (property "Reference" "#PWR0173" (at 156.21 166.37 0)
  7958. (effects (font (size 1.27 1.27)) hide)
  7959. )
  7960. (property "Value" "+3V3" (at 156.591 158.1658 0)
  7961. (effects (font (size 1.27 1.27)))
  7962. )
  7963. (property "Footprint" "" (at 156.21 162.56 0)
  7964. (effects (font (size 1.27 1.27)) hide)
  7965. )
  7966. (property "Datasheet" "" (at 156.21 162.56 0)
  7967. (effects (font (size 1.27 1.27)) hide)
  7968. )
  7969. (pin "1" (uuid 5c4cf1a6-89ae-432e-ad2c-5f8e8ab9f4e3))
  7970. (instances
  7971. (project "Greaseweazle"
  7972. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7973. (reference "#PWR0173") (unit 1)
  7974. )
  7975. )
  7976. )
  7977. )
  7978. (symbol (lib_id "power:GND") (at 129.54 172.72 0) (unit 1)
  7979. (in_bom yes) (on_board yes) (dnp no)
  7980. (uuid 1f643113-fa5c-4d33-af0d-36613c1d3ae5)
  7981. (property "Reference" "#PWR0172" (at 129.54 179.07 0)
  7982. (effects (font (size 1.27 1.27)) hide)
  7983. )
  7984. (property "Value" "GND" (at 129.667 177.1142 0)
  7985. (effects (font (size 1.27 1.27)))
  7986. )
  7987. (property "Footprint" "" (at 129.54 172.72 0)
  7988. (effects (font (size 1.27 1.27)) hide)
  7989. )
  7990. (property "Datasheet" "" (at 129.54 172.72 0)
  7991. (effects (font (size 1.27 1.27)) hide)
  7992. )
  7993. (pin "1" (uuid 25d2c409-9df9-4f79-afd7-4c5cf7171864))
  7994. (instances
  7995. (project "Greaseweazle"
  7996. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  7997. (reference "#PWR0172") (unit 1)
  7998. )
  7999. )
  8000. )
  8001. )
  8002. (symbol (lib_id "74xx:SN74LS07") (at 334.01 153.67 0) (unit 4)
  8003. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8004. (uuid 218ff435-a7b6-4bbf-9921-cb30faa4af1e)
  8005. (property "Reference" "U12" (at 334.01 144.78 0)
  8006. (effects (font (size 1.27 1.27)))
  8007. )
  8008. (property "Value" "SN74LS07" (at 334.01 147.32 0)
  8009. (effects (font (size 1.27 1.27)))
  8010. )
  8011. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 334.01 153.67 0)
  8012. (effects (font (size 1.27 1.27)) hide)
  8013. )
  8014. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 334.01 153.67 0)
  8015. (effects (font (size 1.27 1.27)) hide)
  8016. )
  8017. (pin "3" (uuid 064e797d-e07e-4c12-94f6-4ccbd5764144))
  8018. (pin "4" (uuid 3ceaff0a-7115-4c92-98e5-8fe05854b1da))
  8019. (pin "2" (uuid 03bf1b57-81d3-4d73-aa3f-058070535495))
  8020. (pin "7" (uuid c6f1465b-2e0b-4149-8d7f-4f07b1c7d1c7))
  8021. (pin "10" (uuid bba5b50d-4c54-4b95-9a28-b4445c4545f3))
  8022. (pin "14" (uuid 175ed37a-fd39-4f11-849b-39aa07ce4d29))
  8023. (pin "8" (uuid 07fa7427-1dc0-4c46-bc1c-789e47d454ef))
  8024. (pin "11" (uuid 396e578d-c892-40cb-9f43-5d0c35f09145))
  8025. (pin "12" (uuid 7353d72a-fcdb-4603-81cd-4884d5969034))
  8026. (pin "6" (uuid 3ca261e3-6b93-4289-adcd-37444f7616f5))
  8027. (pin "1" (uuid c06c3a08-ef1e-4e5e-b94f-747e124382a8))
  8028. (pin "5" (uuid 826b72aa-8b5e-4d3f-a991-3c3e9595ac44))
  8029. (pin "9" (uuid 0486f197-38ef-4ba6-b7d6-6fcaf47037b8))
  8030. (pin "13" (uuid 8f72fd10-2a28-4e8f-873d-5318c84fdbb6))
  8031. (instances
  8032. (project "Greaseweazle"
  8033. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8034. (reference "U12") (unit 4)
  8035. )
  8036. )
  8037. )
  8038. )
  8039. (symbol (lib_id "Device:R_Small") (at 49.911 23.495 0) (unit 1)
  8040. (in_bom yes) (on_board yes) (dnp no)
  8041. (uuid 21e9274c-a016-4017-81f9-0ad5c3e811d6)
  8042. (property "Reference" "R56" (at 51.4096 22.3266 0)
  8043. (effects (font (size 1.27 1.27)) (justify left))
  8044. )
  8045. (property "Value" "470" (at 51.4096 24.638 0)
  8046. (effects (font (size 1.27 1.27)) (justify left))
  8047. )
  8048. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 49.911 23.495 0)
  8049. (effects (font (size 1.27 1.27)) hide)
  8050. )
  8051. (property "Datasheet" "~" (at 49.911 23.495 0)
  8052. (effects (font (size 1.27 1.27)) hide)
  8053. )
  8054. (property "LCSC" "C25117" (at 49.911 23.495 0)
  8055. (effects (font (size 1.27 1.27)) hide)
  8056. )
  8057. (pin "1" (uuid fd96dbb5-8b0c-49f9-af48-e25ad47eea9e))
  8058. (pin "2" (uuid 24db1e9f-1a31-4706-957c-e51443012a62))
  8059. (instances
  8060. (project "Greaseweazle"
  8061. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8062. (reference "R56") (unit 1)
  8063. )
  8064. )
  8065. )
  8066. )
  8067. (symbol (lib_id "Device:R_Small") (at 144.78 139.065 0) (unit 1)
  8068. (in_bom yes) (on_board yes) (dnp no)
  8069. (uuid 3d4ee57f-7979-4983-a450-d4a7eead57eb)
  8070. (property "Reference" "R64" (at 139.8016 139.065 90)
  8071. (effects (font (size 1.27 1.27)))
  8072. )
  8073. (property "Value" "3k" (at 142.113 139.065 90)
  8074. (effects (font (size 1.27 1.27)))
  8075. )
  8076. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 144.78 139.065 0)
  8077. (effects (font (size 1.27 1.27)) hide)
  8078. )
  8079. (property "Datasheet" "~" (at 144.78 139.065 0)
  8080. (effects (font (size 1.27 1.27)) hide)
  8081. )
  8082. (property "LCSC" "C137987" (at 144.78 139.065 0)
  8083. (effects (font (size 1.27 1.27)) hide)
  8084. )
  8085. (pin "1" (uuid 7e827eb7-a125-47f1-acc1-e503cdd953f0))
  8086. (pin "2" (uuid 4912fcb7-37bd-4af0-9140-1d62d6b8949e))
  8087. (instances
  8088. (project "Greaseweazle"
  8089. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8090. (reference "R64") (unit 1)
  8091. )
  8092. )
  8093. )
  8094. )
  8095. (symbol (lib_id "Device:R_Small") (at 267.97 93.98 270) (unit 1)
  8096. (in_bom yes) (on_board yes) (dnp no)
  8097. (uuid 3e312873-44e1-481e-8b02-47082eb3630a)
  8098. (property "Reference" "R59" (at 264.16 91.44 90)
  8099. (effects (font (size 1.27 1.27)))
  8100. )
  8101. (property "Value" "10k" (at 271.78 91.44 90)
  8102. (effects (font (size 1.27 1.27)))
  8103. )
  8104. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 93.98 0)
  8105. (effects (font (size 1.27 1.27)) hide)
  8106. )
  8107. (property "Datasheet" "~" (at 267.97 93.98 0)
  8108. (effects (font (size 1.27 1.27)) hide)
  8109. )
  8110. (property "LCSC" "C25744" (at 267.97 93.98 0)
  8111. (effects (font (size 1.27 1.27)) hide)
  8112. )
  8113. (pin "1" (uuid ab4e0197-537f-4d08-8924-4668a69b0159))
  8114. (pin "2" (uuid 6e0e7e4a-8edf-4d56-a7e8-5532ed887300))
  8115. (instances
  8116. (project "Greaseweazle"
  8117. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8118. (reference "R59") (unit 1)
  8119. )
  8120. )
  8121. )
  8122. )
  8123. (symbol (lib_id "Connector_Generic:Conn_02x03_Odd_Even") (at 30.48 57.785 0) (unit 1)
  8124. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8125. (uuid 4ed97a04-0986-4770-aed0-dc9f909c392f)
  8126. (property "Reference" "J11" (at 31.75 48.895 0)
  8127. (effects (font (size 1.27 1.27)))
  8128. )
  8129. (property "Value" "Conn_02x03_Odd_Even" (at 31.75 51.435 0)
  8130. (effects (font (size 1.27 1.27)))
  8131. )
  8132. (property "Footprint" "Connector:Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical" (at 30.48 57.785 0)
  8133. (effects (font (size 1.27 1.27)) hide)
  8134. )
  8135. (property "Datasheet" "~" (at 30.48 57.785 0)
  8136. (effects (font (size 1.27 1.27)) hide)
  8137. )
  8138. (property "LCSC" "NM" (at 30.48 57.785 0)
  8139. (effects (font (size 1.27 1.27)) hide)
  8140. )
  8141. (pin "1" (uuid 694349ac-dd8e-4206-ab3f-a2667df33d53))
  8142. (pin "2" (uuid 4be1cee2-a15e-46bb-b636-7b7b95d7450e))
  8143. (pin "3" (uuid 4e7f077b-b549-4a6c-88a8-b7e8876537d4))
  8144. (pin "4" (uuid f4136950-38cb-4981-9884-4447a479e935))
  8145. (pin "5" (uuid c04676dc-af89-4568-9231-c9d886469934))
  8146. (pin "6" (uuid cc688cd2-08ad-4256-bba2-7e9697424f84))
  8147. (instances
  8148. (project "Greaseweazle"
  8149. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8150. (reference "J11") (unit 1)
  8151. )
  8152. )
  8153. )
  8154. )
  8155. (symbol (lib_id "power:GND") (at 111.76 111.76 0) (unit 1)
  8156. (in_bom yes) (on_board yes) (dnp no)
  8157. (uuid 579f6b2b-1542-4dae-8619-560e86764e1b)
  8158. (property "Reference" "#PWR0185" (at 111.76 118.11 0)
  8159. (effects (font (size 1.27 1.27)) hide)
  8160. )
  8161. (property "Value" "GND" (at 111.887 116.1542 0)
  8162. (effects (font (size 1.27 1.27)))
  8163. )
  8164. (property "Footprint" "" (at 111.76 111.76 0)
  8165. (effects (font (size 1.27 1.27)) hide)
  8166. )
  8167. (property "Datasheet" "" (at 111.76 111.76 0)
  8168. (effects (font (size 1.27 1.27)) hide)
  8169. )
  8170. (pin "1" (uuid 173b7683-fc15-4518-a4c2-6e93812e700a))
  8171. (instances
  8172. (project "Greaseweazle"
  8173. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8174. (reference "#PWR0185") (unit 1)
  8175. )
  8176. )
  8177. )
  8178. )
  8179. (symbol (lib_id "Device:LED") (at 61.595 31.115 90) (unit 1)
  8180. (in_bom yes) (on_board yes) (dnp no)
  8181. (uuid 59de0342-6b7d-4127-bb41-e05756961ed7)
  8182. (property "Reference" "D19" (at 64.5922 30.1244 90)
  8183. (effects (font (size 1.27 1.27)) (justify right))
  8184. )
  8185. (property "Value" "LED" (at 64.5922 32.4358 90)
  8186. (effects (font (size 1.27 1.27)) (justify right))
  8187. )
  8188. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 61.595 31.115 0)
  8189. (effects (font (size 1.27 1.27)) hide)
  8190. )
  8191. (property "Datasheet" "~" (at 61.595 31.115 0)
  8192. (effects (font (size 1.27 1.27)) hide)
  8193. )
  8194. (property "LCSC" "C72041" (at 61.595 31.115 0)
  8195. (effects (font (size 1.27 1.27)) hide)
  8196. )
  8197. (pin "1" (uuid 8a2a48fc-1eb4-4ea5-9466-e70a1b8b5f47))
  8198. (pin "2" (uuid 1937a3d1-b783-4f4a-a4c0-69612bc0686f))
  8199. (instances
  8200. (project "Greaseweazle"
  8201. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8202. (reference "D19") (unit 1)
  8203. )
  8204. )
  8205. )
  8206. )
  8207. (symbol (lib_id "power:+3V3") (at 61.595 19.685 0) (unit 1)
  8208. (in_bom yes) (on_board yes) (dnp no)
  8209. (uuid 5e7f5b59-2457-442e-9636-1e1aa738ac10)
  8210. (property "Reference" "#PWR020" (at 61.595 23.495 0)
  8211. (effects (font (size 1.27 1.27)) hide)
  8212. )
  8213. (property "Value" "+3V3" (at 61.976 15.2908 0)
  8214. (effects (font (size 1.27 1.27)))
  8215. )
  8216. (property "Footprint" "" (at 61.595 19.685 0)
  8217. (effects (font (size 1.27 1.27)) hide)
  8218. )
  8219. (property "Datasheet" "" (at 61.595 19.685 0)
  8220. (effects (font (size 1.27 1.27)) hide)
  8221. )
  8222. (pin "1" (uuid b90dc463-b9e1-4cc7-af94-e47a702fd284))
  8223. (instances
  8224. (project "Greaseweazle"
  8225. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8226. (reference "#PWR020") (unit 1)
  8227. )
  8228. )
  8229. )
  8230. )
  8231. (symbol (lib_id "Switch:SW_DIP_x02") (at 88.9 27.94 0) (unit 1)
  8232. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8233. (uuid 603979c9-b707-4515-8d60-2b9d6885fb89)
  8234. (property "Reference" "SW2" (at 88.9 17.78 0)
  8235. (effects (font (size 1.27 1.27)))
  8236. )
  8237. (property "Value" "SW_DIP_x02" (at 88.9 20.32 0)
  8238. (effects (font (size 1.27 1.27)))
  8239. )
  8240. (property "Footprint" "Button_Switch_THT:SW_DIP_SPSTx02_Slide_6.7x6.64mm_W7.62mm_P2.54mm_LowProfile" (at 88.9 27.94 0)
  8241. (effects (font (size 1.27 1.27)) hide)
  8242. )
  8243. (property "Datasheet" "~" (at 88.9 27.94 0)
  8244. (effects (font (size 1.27 1.27)) hide)
  8245. )
  8246. (pin "1" (uuid a49cb624-c91b-404a-a202-90c3af26c3b1))
  8247. (pin "2" (uuid 92b424eb-af42-40f7-a01e-f30780672dde))
  8248. (pin "3" (uuid 63d428dc-734e-40c8-9dfd-e5b42fcbb3b5))
  8249. (pin "4" (uuid 08f46db2-d79f-4db8-86ff-942bdd4e4d42))
  8250. (instances
  8251. (project "Greaseweazle"
  8252. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8253. (reference "SW2") (unit 1)
  8254. )
  8255. )
  8256. )
  8257. )
  8258. (symbol (lib_id "Diode:1N4148W") (at 135.89 149.225 0) (unit 1)
  8259. (in_bom yes) (on_board yes) (dnp no)
  8260. (uuid 615e49fd-3f83-4aa6-b131-9d3dcb501f2c)
  8261. (property "Reference" "D10" (at 135.89 155.575 0)
  8262. (effects (font (size 1.27 1.27)))
  8263. )
  8264. (property "Value" "B340A-13-F" (at 135.89 153.035 0)
  8265. (effects (font (size 1.27 1.27)))
  8266. )
  8267. (property "Footprint" "Diode_SMD:D_SMA" (at 135.89 153.67 0)
  8268. (effects (font (size 1.27 1.27)) hide)
  8269. )
  8270. (property "Datasheet" "" (at 135.89 149.225 0)
  8271. (effects (font (size 1.27 1.27)) hide)
  8272. )
  8273. (property "LCSC" "C26178" (at 135.89 149.225 0)
  8274. (effects (font (size 1.27 1.27)) hide)
  8275. )
  8276. (pin "1" (uuid 29762142-0fbc-4564-8d28-2a150dda40c7))
  8277. (pin "2" (uuid 717a7f41-32cd-45c4-8023-b8f092a09e3f))
  8278. (instances
  8279. (project "Greaseweazle"
  8280. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8281. (reference "D10") (unit 1)
  8282. )
  8283. )
  8284. )
  8285. )
  8286. (symbol (lib_id "Device:LED") (at 49.911 31.115 90) (unit 1)
  8287. (in_bom yes) (on_board yes) (dnp no)
  8288. (uuid 6380b6d6-4c0d-454b-b988-9a957bdfc56e)
  8289. (property "Reference" "D18" (at 52.9082 30.1244 90)
  8290. (effects (font (size 1.27 1.27)) (justify right))
  8291. )
  8292. (property "Value" "LED" (at 52.9082 32.4358 90)
  8293. (effects (font (size 1.27 1.27)) (justify right))
  8294. )
  8295. (property "Footprint" "LED_SMD:LED_0603_1608Metric" (at 49.911 31.115 0)
  8296. (effects (font (size 1.27 1.27)) hide)
  8297. )
  8298. (property "Datasheet" "~" (at 49.911 31.115 0)
  8299. (effects (font (size 1.27 1.27)) hide)
  8300. )
  8301. (property "LCSC" "C72041" (at 49.911 31.115 0)
  8302. (effects (font (size 1.27 1.27)) hide)
  8303. )
  8304. (pin "1" (uuid 6d770dd3-8af2-4ec9-965f-b4a48f0720c2))
  8305. (pin "2" (uuid 561f1b67-a24c-44c2-bc40-eeee39bd4df6))
  8306. (instances
  8307. (project "Greaseweazle"
  8308. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8309. (reference "D18") (unit 1)
  8310. )
  8311. )
  8312. )
  8313. )
  8314. (symbol (lib_id "74xx:SN74LS07") (at 201.295 34.29 0) (unit 7)
  8315. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8316. (uuid 63aedda3-813e-42d5-8ef7-3810ef402ec4)
  8317. (property "Reference" "U12" (at 207.391 33.02 0)
  8318. (effects (font (size 1.27 1.27)) (justify left))
  8319. )
  8320. (property "Value" "SN74LS07" (at 207.391 35.56 0)
  8321. (effects (font (size 1.27 1.27)) (justify left))
  8322. )
  8323. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 201.295 34.29 0)
  8324. (effects (font (size 1.27 1.27)) hide)
  8325. )
  8326. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 201.295 34.29 0)
  8327. (effects (font (size 1.27 1.27)) hide)
  8328. )
  8329. (pin "3" (uuid 064e797d-e07e-4c12-94f6-4ccbd5764145))
  8330. (pin "4" (uuid 3ceaff0a-7115-4c92-98e5-8fe05854b1db))
  8331. (pin "2" (uuid 03bf1b57-81d3-4d73-aa3f-058070535496))
  8332. (pin "7" (uuid 225a7742-452a-4c21-aa74-9b04781c1338))
  8333. (pin "10" (uuid bba5b50d-4c54-4b95-9a28-b4445c4545f4))
  8334. (pin "14" (uuid 5834971d-d768-4c0b-a3bd-106068885ae5))
  8335. (pin "8" (uuid 955d6f35-753a-400d-9a5b-d9e222a53c6b))
  8336. (pin "11" (uuid 396e578d-c892-40cb-9f43-5d0c35f09146))
  8337. (pin "12" (uuid 7353d72a-fcdb-4603-81cd-4884d5969035))
  8338. (pin "6" (uuid 3ca261e3-6b93-4289-adcd-37444f7616f6))
  8339. (pin "1" (uuid c06c3a08-ef1e-4e5e-b94f-747e124382a9))
  8340. (pin "5" (uuid 826b72aa-8b5e-4d3f-a991-3c3e9595ac45))
  8341. (pin "9" (uuid 8f513355-a7fa-438e-b7ba-536d2e9b3d0a))
  8342. (pin "13" (uuid 8f72fd10-2a28-4e8f-873d-5318c84fdbb7))
  8343. (instances
  8344. (project "Greaseweazle"
  8345. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8346. (reference "U12") (unit 7)
  8347. )
  8348. )
  8349. )
  8350. )
  8351. (symbol (lib_id "power:+5V") (at 144.78 135.255 0) (unit 1)
  8352. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8353. (uuid 75db0569-c1c9-47ca-b2fd-be6d039ffae9)
  8354. (property "Reference" "#PWR0190" (at 144.78 139.065 0)
  8355. (effects (font (size 1.27 1.27)) hide)
  8356. )
  8357. (property "Value" "+5V" (at 144.78 130.175 0)
  8358. (effects (font (size 1.27 1.27)))
  8359. )
  8360. (property "Footprint" "" (at 144.78 135.255 0)
  8361. (effects (font (size 1.27 1.27)) hide)
  8362. )
  8363. (property "Datasheet" "" (at 144.78 135.255 0)
  8364. (effects (font (size 1.27 1.27)) hide)
  8365. )
  8366. (pin "1" (uuid 94b4e1d3-26de-4d2a-aee2-105f21e7f527))
  8367. (instances
  8368. (project "Greaseweazle"
  8369. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8370. (reference "#PWR0190") (unit 1)
  8371. )
  8372. )
  8373. )
  8374. )
  8375. (symbol (lib_id "power:+3V3") (at 129.54 162.56 0) (unit 1)
  8376. (in_bom yes) (on_board yes) (dnp no)
  8377. (uuid 7e409286-fd81-4589-a252-d85b68bce9f6)
  8378. (property "Reference" "#PWR0174" (at 129.54 166.37 0)
  8379. (effects (font (size 1.27 1.27)) hide)
  8380. )
  8381. (property "Value" "+3V3" (at 129.921 158.1658 0)
  8382. (effects (font (size 1.27 1.27)))
  8383. )
  8384. (property "Footprint" "" (at 129.54 162.56 0)
  8385. (effects (font (size 1.27 1.27)) hide)
  8386. )
  8387. (property "Datasheet" "" (at 129.54 162.56 0)
  8388. (effects (font (size 1.27 1.27)) hide)
  8389. )
  8390. (pin "1" (uuid 5162ce73-0694-4c4d-b59c-441dae82bbe8))
  8391. (instances
  8392. (project "Greaseweazle"
  8393. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8394. (reference "#PWR0174") (unit 1)
  8395. )
  8396. )
  8397. )
  8398. )
  8399. (symbol (lib_id "74xx:SN74LS07") (at 235.077 148.59 180) (unit 1)
  8400. (in_bom yes) (on_board yes) (dnp no)
  8401. (uuid 8000afac-2cd0-4435-92fe-36117626ce53)
  8402. (property "Reference" "U12" (at 231.267 144.272 0)
  8403. (effects (font (size 1.27 1.27)))
  8404. )
  8405. (property "Value" "SN74LS07" (at 245.11 145.161 0)
  8406. (effects (font (size 1.27 1.27)))
  8407. )
  8408. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 235.077 148.59 0)
  8409. (effects (font (size 1.27 1.27)) hide)
  8410. )
  8411. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 235.077 148.59 0)
  8412. (effects (font (size 1.27 1.27)) hide)
  8413. )
  8414. (pin "3" (uuid 064e797d-e07e-4c12-94f6-4ccbd5764143))
  8415. (pin "4" (uuid 3ceaff0a-7115-4c92-98e5-8fe05854b1d9))
  8416. (pin "2" (uuid 1a654d72-85be-4ed2-a323-62c7e0964a93))
  8417. (pin "7" (uuid c6f1465b-2e0b-4149-8d7f-4f07b1c7d1c6))
  8418. (pin "10" (uuid bba5b50d-4c54-4b95-9a28-b4445c4545f2))
  8419. (pin "14" (uuid 175ed37a-fd39-4f11-849b-39aa07ce4d28))
  8420. (pin "8" (uuid 955d6f35-753a-400d-9a5b-d9e222a53c69))
  8421. (pin "11" (uuid 396e578d-c892-40cb-9f43-5d0c35f09144))
  8422. (pin "12" (uuid 7353d72a-fcdb-4603-81cd-4884d5969033))
  8423. (pin "6" (uuid 3ca261e3-6b93-4289-adcd-37444f7616f4))
  8424. (pin "1" (uuid db9c3aff-1a84-446c-be15-aa9b145e091b))
  8425. (pin "5" (uuid 826b72aa-8b5e-4d3f-a991-3c3e9595ac43))
  8426. (pin "9" (uuid 8f513355-a7fa-438e-b7ba-536d2e9b3d08))
  8427. (pin "13" (uuid 8f72fd10-2a28-4e8f-873d-5318c84fdbb5))
  8428. (instances
  8429. (project "Greaseweazle"
  8430. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8431. (reference "U12") (unit 1)
  8432. )
  8433. )
  8434. )
  8435. )
  8436. (symbol (lib_id "power:+3V3") (at 19.05 52.705 0) (unit 1)
  8437. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8438. (uuid 831181f3-e07e-4359-85a3-43a55598e402)
  8439. (property "Reference" "#PWR0159" (at 19.05 56.515 0)
  8440. (effects (font (size 1.27 1.27)) hide)
  8441. )
  8442. (property "Value" "+3V3" (at 19.05 46.99 0)
  8443. (effects (font (size 1.27 1.27)))
  8444. )
  8445. (property "Footprint" "" (at 19.05 52.705 0)
  8446. (effects (font (size 1.27 1.27)) hide)
  8447. )
  8448. (property "Datasheet" "" (at 19.05 52.705 0)
  8449. (effects (font (size 1.27 1.27)) hide)
  8450. )
  8451. (pin "1" (uuid 49bb3b6b-654d-4e70-a4aa-1f1efa32c9ab))
  8452. (instances
  8453. (project "Greaseweazle"
  8454. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8455. (reference "#PWR0159") (unit 1)
  8456. )
  8457. )
  8458. )
  8459. )
  8460. (symbol (lib_id "power:+3V3") (at 49.911 19.685 0) (unit 1)
  8461. (in_bom yes) (on_board yes) (dnp no)
  8462. (uuid 86eb95a2-6263-456a-af1a-a3efab3b5fe4)
  8463. (property "Reference" "#PWR019" (at 49.911 23.495 0)
  8464. (effects (font (size 1.27 1.27)) hide)
  8465. )
  8466. (property "Value" "+3V3" (at 50.292 15.2908 0)
  8467. (effects (font (size 1.27 1.27)))
  8468. )
  8469. (property "Footprint" "" (at 49.911 19.685 0)
  8470. (effects (font (size 1.27 1.27)) hide)
  8471. )
  8472. (property "Datasheet" "" (at 49.911 19.685 0)
  8473. (effects (font (size 1.27 1.27)) hide)
  8474. )
  8475. (pin "1" (uuid 6b37e9e0-2cef-469d-961d-e9f5c8a0fd41))
  8476. (instances
  8477. (project "Greaseweazle"
  8478. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8479. (reference "#PWR019") (unit 1)
  8480. )
  8481. )
  8482. )
  8483. )
  8484. (symbol (lib_id "74xx:SN74LS07") (at 334.772 183.261 0) (unit 6)
  8485. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8486. (uuid 8a331ea3-84d9-4c54-bb02-d50e82e962e5)
  8487. (property "Reference" "U12" (at 334.772 173.99 0)
  8488. (effects (font (size 1.27 1.27)))
  8489. )
  8490. (property "Value" "SN74LS07" (at 334.772 176.53 0)
  8491. (effects (font (size 1.27 1.27)))
  8492. )
  8493. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 334.772 183.261 0)
  8494. (effects (font (size 1.27 1.27)) hide)
  8495. )
  8496. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 334.772 183.261 0)
  8497. (effects (font (size 1.27 1.27)) hide)
  8498. )
  8499. (pin "3" (uuid 064e797d-e07e-4c12-94f6-4ccbd5764141))
  8500. (pin "4" (uuid 3ceaff0a-7115-4c92-98e5-8fe05854b1d7))
  8501. (pin "2" (uuid 03bf1b57-81d3-4d73-aa3f-058070535492))
  8502. (pin "7" (uuid c6f1465b-2e0b-4149-8d7f-4f07b1c7d1c4))
  8503. (pin "10" (uuid bba5b50d-4c54-4b95-9a28-b4445c4545f0))
  8504. (pin "14" (uuid 175ed37a-fd39-4f11-849b-39aa07ce4d26))
  8505. (pin "8" (uuid 955d6f35-753a-400d-9a5b-d9e222a53c67))
  8506. (pin "11" (uuid 396e578d-c892-40cb-9f43-5d0c35f09142))
  8507. (pin "12" (uuid 1ea98be0-c36c-421e-b0ca-71eb06e90b62))
  8508. (pin "6" (uuid 3ca261e3-6b93-4289-adcd-37444f7616f2))
  8509. (pin "1" (uuid c06c3a08-ef1e-4e5e-b94f-747e124382a5))
  8510. (pin "5" (uuid 826b72aa-8b5e-4d3f-a991-3c3e9595ac41))
  8511. (pin "9" (uuid 8f513355-a7fa-438e-b7ba-536d2e9b3d06))
  8512. (pin "13" (uuid 616d0cae-f52b-4a84-95fe-9aa1231369db))
  8513. (instances
  8514. (project "Greaseweazle"
  8515. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8516. (reference "U12") (unit 6)
  8517. )
  8518. )
  8519. )
  8520. )
  8521. (symbol (lib_id "Device:R_Small") (at 268.605 131.445 270) (unit 1)
  8522. (in_bom yes) (on_board yes) (dnp no)
  8523. (uuid 8ad57ca8-509b-46bb-8d37-35b4ef7c11f0)
  8524. (property "Reference" "R60" (at 264.795 128.905 90)
  8525. (effects (font (size 1.27 1.27)))
  8526. )
  8527. (property "Value" "1k" (at 272.415 128.905 90)
  8528. (effects (font (size 1.27 1.27)))
  8529. )
  8530. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 268.605 131.445 0)
  8531. (effects (font (size 1.27 1.27)) hide)
  8532. )
  8533. (property "Datasheet" "~" (at 268.605 131.445 0)
  8534. (effects (font (size 1.27 1.27)) hide)
  8535. )
  8536. (property "LCSC" "C11702" (at 268.605 131.445 0)
  8537. (effects (font (size 1.27 1.27)) hide)
  8538. )
  8539. (pin "1" (uuid f4c1fef8-3f71-44e9-9f1f-3df677e2db4c))
  8540. (pin "2" (uuid 0fe67e33-64c8-4498-a490-ea1a771fd74f))
  8541. (instances
  8542. (project "Greaseweazle"
  8543. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8544. (reference "R60") (unit 1)
  8545. )
  8546. )
  8547. )
  8548. )
  8549. (symbol (lib_id "power:GND") (at 99.06 31.75 0) (unit 1)
  8550. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8551. (uuid 90754c3c-d69a-4aee-b4f2-ee2e9607e874)
  8552. (property "Reference" "#PWR0224" (at 99.06 38.1 0)
  8553. (effects (font (size 1.27 1.27)) hide)
  8554. )
  8555. (property "Value" "GND" (at 99.06 36.83 0)
  8556. (effects (font (size 1.27 1.27)))
  8557. )
  8558. (property "Footprint" "" (at 99.06 31.75 0)
  8559. (effects (font (size 1.27 1.27)) hide)
  8560. )
  8561. (property "Datasheet" "" (at 99.06 31.75 0)
  8562. (effects (font (size 1.27 1.27)) hide)
  8563. )
  8564. (pin "1" (uuid a8feff19-a3ee-4ffe-b81f-beab7358e4d8))
  8565. (instances
  8566. (project "Greaseweazle"
  8567. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8568. (reference "#PWR0224") (unit 1)
  8569. )
  8570. )
  8571. )
  8572. )
  8573. (symbol (lib_id "Device:R_Small") (at 268.605 136.525 270) (unit 1)
  8574. (in_bom yes) (on_board yes) (dnp no)
  8575. (uuid 91ec5350-3841-485f-90b5-7054f265169e)
  8576. (property "Reference" "R61" (at 264.795 133.985 90)
  8577. (effects (font (size 1.27 1.27)))
  8578. )
  8579. (property "Value" "1k" (at 272.415 133.985 90)
  8580. (effects (font (size 1.27 1.27)))
  8581. )
  8582. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 268.605 136.525 0)
  8583. (effects (font (size 1.27 1.27)) hide)
  8584. )
  8585. (property "Datasheet" "~" (at 268.605 136.525 0)
  8586. (effects (font (size 1.27 1.27)) hide)
  8587. )
  8588. (property "LCSC" "C11702" (at 268.605 136.525 0)
  8589. (effects (font (size 1.27 1.27)) hide)
  8590. )
  8591. (pin "1" (uuid 08f366ac-10c8-46d4-b938-0b436092255d))
  8592. (pin "2" (uuid f393c1fe-ecc4-4b60-a54f-952e9e6e89c6))
  8593. (instances
  8594. (project "Greaseweazle"
  8595. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8596. (reference "R61") (unit 1)
  8597. )
  8598. )
  8599. )
  8600. )
  8601. (symbol (lib_id "Connector_Generic:Conn_01x03") (at 137.16 167.64 0) (unit 1)
  8602. (in_bom yes) (on_board yes) (dnp no)
  8603. (uuid 984c0ab6-7c29-4883-bf92-47178f65fa30)
  8604. (property "Reference" "J18" (at 135.89 158.75 0)
  8605. (effects (font (size 1.27 1.27)) (justify left))
  8606. )
  8607. (property "Value" "ID" (at 124.46 161.29 0)
  8608. (effects (font (size 1.27 1.27)) (justify left))
  8609. )
  8610. (property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels" (at 137.16 167.64 0)
  8611. (effects (font (size 1.27 1.27)) hide)
  8612. )
  8613. (property "Datasheet" "~" (at 137.16 167.64 0)
  8614. (effects (font (size 1.27 1.27)) hide)
  8615. )
  8616. (property "LCSC" "C225478" (at 137.16 167.64 0)
  8617. (effects (font (size 1.27 1.27)) hide)
  8618. )
  8619. (pin "1" (uuid e16fe284-3e83-4f02-b341-e8c1052206e4))
  8620. (pin "2" (uuid 86df543b-a021-4705-8ddd-979f504b208a))
  8621. (pin "3" (uuid 404c4fbc-710e-4a25-9168-a98dd9bac3d0))
  8622. (instances
  8623. (project "Greaseweazle"
  8624. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8625. (reference "J18") (unit 1)
  8626. )
  8627. )
  8628. )
  8629. )
  8630. (symbol (lib_id "74xx:SN74LS07") (at 334.772 169.291 0) (unit 5)
  8631. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8632. (uuid b0edae48-51b1-457a-a18b-3d99ceb1f505)
  8633. (property "Reference" "U12" (at 334.772 160.02 0)
  8634. (effects (font (size 1.27 1.27)))
  8635. )
  8636. (property "Value" "SN74LS07" (at 334.772 162.56 0)
  8637. (effects (font (size 1.27 1.27)))
  8638. )
  8639. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 334.772 169.291 0)
  8640. (effects (font (size 1.27 1.27)) hide)
  8641. )
  8642. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 334.772 169.291 0)
  8643. (effects (font (size 1.27 1.27)) hide)
  8644. )
  8645. (pin "3" (uuid 064e797d-e07e-4c12-94f6-4ccbd5764140))
  8646. (pin "4" (uuid 3ceaff0a-7115-4c92-98e5-8fe05854b1d6))
  8647. (pin "2" (uuid 03bf1b57-81d3-4d73-aa3f-058070535491))
  8648. (pin "7" (uuid c6f1465b-2e0b-4149-8d7f-4f07b1c7d1c3))
  8649. (pin "10" (uuid ed34813d-033b-4465-bdd9-c5560b996083))
  8650. (pin "14" (uuid 175ed37a-fd39-4f11-849b-39aa07ce4d25))
  8651. (pin "8" (uuid 955d6f35-753a-400d-9a5b-d9e222a53c66))
  8652. (pin "11" (uuid 8128571b-f5d1-4979-a00c-53476f49749d))
  8653. (pin "12" (uuid 7353d72a-fcdb-4603-81cd-4884d5969030))
  8654. (pin "6" (uuid 3ca261e3-6b93-4289-adcd-37444f7616f1))
  8655. (pin "1" (uuid c06c3a08-ef1e-4e5e-b94f-747e124382a4))
  8656. (pin "5" (uuid 826b72aa-8b5e-4d3f-a991-3c3e9595ac40))
  8657. (pin "9" (uuid 8f513355-a7fa-438e-b7ba-536d2e9b3d05))
  8658. (pin "13" (uuid 8f72fd10-2a28-4e8f-873d-5318c84fdbb2))
  8659. (instances
  8660. (project "Greaseweazle"
  8661. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8662. (reference "U12") (unit 5)
  8663. )
  8664. )
  8665. )
  8666. )
  8667. (symbol (lib_id "power:GND") (at 118.11 168.91 0) (unit 1)
  8668. (in_bom yes) (on_board yes) (dnp no)
  8669. (uuid b493a636-5a02-409a-9733-9060e83b6f45)
  8670. (property "Reference" "#PWR0222" (at 118.11 175.26 0)
  8671. (effects (font (size 1.27 1.27)) hide)
  8672. )
  8673. (property "Value" "GND" (at 118.237 173.3042 0)
  8674. (effects (font (size 1.27 1.27)))
  8675. )
  8676. (property "Footprint" "" (at 118.11 168.91 0)
  8677. (effects (font (size 1.27 1.27)) hide)
  8678. )
  8679. (property "Datasheet" "" (at 118.11 168.91 0)
  8680. (effects (font (size 1.27 1.27)) hide)
  8681. )
  8682. (pin "1" (uuid d33816e4-2eeb-4b87-8d57-53abf597d625))
  8683. (instances
  8684. (project "Greaseweazle"
  8685. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8686. (reference "#PWR0222") (unit 1)
  8687. )
  8688. )
  8689. )
  8690. )
  8691. (symbol (lib_id "Device:R_Small") (at 267.97 88.9 270) (unit 1)
  8692. (in_bom yes) (on_board yes) (dnp no)
  8693. (uuid c7432182-3b9d-46ac-8fe5-340364e5ef21)
  8694. (property "Reference" "R58" (at 265.43 86.36 90)
  8695. (effects (font (size 1.27 1.27)))
  8696. )
  8697. (property "Value" "10k" (at 271.78 86.36 90)
  8698. (effects (font (size 1.27 1.27)))
  8699. )
  8700. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 267.97 88.9 0)
  8701. (effects (font (size 1.27 1.27)) hide)
  8702. )
  8703. (property "Datasheet" "~" (at 267.97 88.9 0)
  8704. (effects (font (size 1.27 1.27)) hide)
  8705. )
  8706. (property "LCSC" "C25744" (at 267.97 88.9 0)
  8707. (effects (font (size 1.27 1.27)) hide)
  8708. )
  8709. (pin "1" (uuid c353cbe4-d04d-418e-98a4-dc9d2f27dcb7))
  8710. (pin "2" (uuid f3c2e6d7-e44b-48e7-80bf-c6f61e2534e4))
  8711. (instances
  8712. (project "Greaseweazle"
  8713. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8714. (reference "R58") (unit 1)
  8715. )
  8716. )
  8717. )
  8718. )
  8719. (symbol (lib_id "Diode:1N4148W") (at 135.89 145.415 0) (unit 1)
  8720. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8721. (uuid caa6303a-9842-4b6b-90f3-1429bc2a97a5)
  8722. (property "Reference" "D9" (at 135.89 139.065 0)
  8723. (effects (font (size 1.27 1.27)))
  8724. )
  8725. (property "Value" "B340A-13-F" (at 135.89 141.605 0)
  8726. (effects (font (size 1.27 1.27)))
  8727. )
  8728. (property "Footprint" "Diode_SMD:D_SMA" (at 135.89 149.86 0)
  8729. (effects (font (size 1.27 1.27)) hide)
  8730. )
  8731. (property "Datasheet" "" (at 135.89 145.415 0)
  8732. (effects (font (size 1.27 1.27)) hide)
  8733. )
  8734. (property "LCSC" "C26178" (at 135.89 145.415 0)
  8735. (effects (font (size 1.27 1.27)) hide)
  8736. )
  8737. (pin "1" (uuid d701d0d6-82cc-42bf-a7c9-7931e6a1fc89))
  8738. (pin "2" (uuid 2ae579a8-31c8-4a78-8bf6-72fca00e8bf2))
  8739. (instances
  8740. (project "Greaseweazle"
  8741. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8742. (reference "D9") (unit 1)
  8743. )
  8744. )
  8745. )
  8746. )
  8747. (symbol (lib_id "power:PWR_FLAG") (at 100.33 21.59 0) (unit 1)
  8748. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8749. (uuid d3519d5d-ab9f-49c3-a5db-54441331c0e6)
  8750. (property "Reference" "#FLG0110" (at 100.33 19.685 0)
  8751. (effects (font (size 1.27 1.27)) hide)
  8752. )
  8753. (property "Value" "PWR_FLAG" (at 100.33 15.875 0)
  8754. (effects (font (size 1.27 1.27)))
  8755. )
  8756. (property "Footprint" "" (at 100.33 21.59 0)
  8757. (effects (font (size 1.27 1.27)) hide)
  8758. )
  8759. (property "Datasheet" "~" (at 100.33 21.59 0)
  8760. (effects (font (size 1.27 1.27)) hide)
  8761. )
  8762. (pin "1" (uuid 316f303a-173c-4a1d-984f-1bfe28354a4d))
  8763. (instances
  8764. (project "Greaseweazle"
  8765. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8766. (reference "#FLG0110") (unit 1)
  8767. )
  8768. )
  8769. )
  8770. )
  8771. (symbol (lib_id "Connector_Generic:Conn_02x25_Odd_Even") (at 120.65 76.2 0) (unit 1)
  8772. (in_bom yes) (on_board yes) (dnp no)
  8773. (uuid de74180e-b890-44b7-9756-b45db32a51e7)
  8774. (property "Reference" "J12" (at 121.92 46.99 0)
  8775. (effects (font (size 1.27 1.27)))
  8776. )
  8777. (property "Value" "Conn_02x25_Odd_Even" (at 137.16 41.91 0)
  8778. (effects (font (size 1.27 1.27)))
  8779. )
  8780. (property "Footprint" "Connector_IDC:IDC-Header_2x25_P2.54mm_Vertical" (at 120.65 76.2 0)
  8781. (effects (font (size 1.27 1.27)) hide)
  8782. )
  8783. (property "Datasheet" "~" (at 120.65 76.2 0)
  8784. (effects (font (size 1.27 1.27)) hide)
  8785. )
  8786. (pin "1" (uuid e82cf3eb-2e7a-4a8b-996b-2004f7cc101e))
  8787. (pin "10" (uuid f85f1d29-b803-48d0-a168-b0de65e2db9a))
  8788. (pin "11" (uuid ce4709a5-6b7e-44ee-9871-1149986c2e7b))
  8789. (pin "12" (uuid bc60c623-edf8-4166-a45a-3c9a60efe4c5))
  8790. (pin "13" (uuid fdf58be0-57f4-4f08-9b70-a06b3776c6dd))
  8791. (pin "14" (uuid 98dc8f49-9dd6-478e-96d0-75e275701e99))
  8792. (pin "15" (uuid b77a486d-6152-4411-b337-ad777a3a63b2))
  8793. (pin "16" (uuid 81a6758a-a06b-4d3e-81b9-1534449b7457))
  8794. (pin "17" (uuid a30248e1-36ea-41cd-9738-19184ec09b84))
  8795. (pin "18" (uuid d6a3e2ff-d905-48de-9d37-71f236ccc546))
  8796. (pin "19" (uuid 9a06744a-f10d-4166-ac1a-8b7135113449))
  8797. (pin "2" (uuid 6c6de6b0-904e-47e2-b173-fef9720dc2f0))
  8798. (pin "20" (uuid 3ecbfdf0-8e49-4182-8306-2d2414f292e8))
  8799. (pin "21" (uuid a9852008-7e99-4f79-b5b8-e7f11c815644))
  8800. (pin "22" (uuid 2d47214f-09f7-4be0-b959-6a1a12712566))
  8801. (pin "23" (uuid 5bd07084-94cc-440c-a517-4f05f269a051))
  8802. (pin "24" (uuid bec7a52d-6468-43d5-af05-b1095ac23562))
  8803. (pin "25" (uuid 758a7679-139e-4a9c-9aeb-308864cc3fa2))
  8804. (pin "26" (uuid 63439fd7-d47e-44e9-8dcc-82c2d87ff6e7))
  8805. (pin "27" (uuid da0a5b3e-b06b-4b1c-8f68-88dfb234e103))
  8806. (pin "28" (uuid 9bbbfda7-00a5-46bc-bd4b-24d24b05c493))
  8807. (pin "29" (uuid 69c84803-47b1-473f-9de9-b49f05339acb))
  8808. (pin "3" (uuid 9d071495-1596-4032-9674-45bf136b1434))
  8809. (pin "30" (uuid 24cf2efd-e65a-4663-bd27-2c130a59e247))
  8810. (pin "31" (uuid 03c60276-9cee-4781-b007-54c011d4d0b6))
  8811. (pin "32" (uuid 5672feed-8ce9-45eb-a12b-2ae55f14cf06))
  8812. (pin "33" (uuid 97ff1303-2a73-45a8-9dce-ccfad4d8856d))
  8813. (pin "34" (uuid aebd8b10-f548-4b59-b363-faf804cceb80))
  8814. (pin "35" (uuid 6b41e40e-6fd1-4184-8969-2fab7495f289))
  8815. (pin "36" (uuid 2194bd37-8058-4a74-bea1-ddfab1944045))
  8816. (pin "37" (uuid 9e30b787-f77c-4eaf-b66c-041831445de5))
  8817. (pin "38" (uuid 8ff8d685-c3b5-4f17-a85d-ae040b646d36))
  8818. (pin "39" (uuid 066a5e73-7597-4b00-b55e-e8762abce7dc))
  8819. (pin "4" (uuid 81989f3d-72e0-4d08-9169-c7889ecb5198))
  8820. (pin "40" (uuid 3d854c76-58a1-4a84-9941-a2d726b4718f))
  8821. (pin "41" (uuid ade87e76-71e5-4f80-befe-9281ddcf366b))
  8822. (pin "42" (uuid 7fb81863-adfd-4a97-a8bd-b9b260872a7f))
  8823. (pin "43" (uuid e930b31f-dd3e-4ac0-bc3c-b32d2ce4ec42))
  8824. (pin "44" (uuid 5c4bedb2-6b2c-4477-86d9-75961acfd50a))
  8825. (pin "45" (uuid 60d4226d-73a7-409c-9af7-9138eaebce1c))
  8826. (pin "46" (uuid f5276d96-dfca-441c-a300-6ff68916b237))
  8827. (pin "47" (uuid 2c12258c-2060-4e56-8405-f8e95f0f8b23))
  8828. (pin "48" (uuid b2f5fcbb-4108-47c2-9b21-a00c8af39f28))
  8829. (pin "49" (uuid 0e128492-d712-448d-a57e-b745cd318360))
  8830. (pin "5" (uuid 01b5e3f8-125a-43e6-8d70-b31b6fea712d))
  8831. (pin "50" (uuid eb6d13a3-cb69-4d31-9377-c8373d0f7cf7))
  8832. (pin "6" (uuid 6b78cc14-a42d-4692-b883-1ebe582371c0))
  8833. (pin "7" (uuid 15ddd425-ab43-47ec-aa05-f2c5d1bf61df))
  8834. (pin "8" (uuid 042fa674-2585-40a6-9b91-3a24ef63d8b0))
  8835. (pin "9" (uuid 7ad2f2e1-1e93-4416-a934-bf1ba56dc10a))
  8836. (instances
  8837. (project "Greaseweazle"
  8838. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8839. (reference "J12") (unit 1)
  8840. )
  8841. )
  8842. )
  8843. )
  8844. (symbol (lib_id "power:GND") (at 144.78 172.72 0) (unit 1)
  8845. (in_bom yes) (on_board yes) (dnp no)
  8846. (uuid e3a430e6-9432-407c-b496-db8bd65368c8)
  8847. (property "Reference" "#PWR0171" (at 144.78 179.07 0)
  8848. (effects (font (size 1.27 1.27)) hide)
  8849. )
  8850. (property "Value" "GND" (at 144.907 177.1142 0)
  8851. (effects (font (size 1.27 1.27)))
  8852. )
  8853. (property "Footprint" "" (at 144.78 172.72 0)
  8854. (effects (font (size 1.27 1.27)) hide)
  8855. )
  8856. (property "Datasheet" "" (at 144.78 172.72 0)
  8857. (effects (font (size 1.27 1.27)) hide)
  8858. )
  8859. (pin "1" (uuid e08b015f-c58a-412f-a287-830ddd1dade3))
  8860. (instances
  8861. (project "Greaseweazle"
  8862. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8863. (reference "#PWR0171") (unit 1)
  8864. )
  8865. )
  8866. )
  8867. )
  8868. (symbol (lib_id "74xx:SN74LS07") (at 336.042 137.795 0) (unit 3)
  8869. (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
  8870. (uuid e61f1e92-28dd-456b-a02b-48b8adbb59f8)
  8871. (property "Reference" "U12" (at 336.042 129.54 0)
  8872. (effects (font (size 1.27 1.27)))
  8873. )
  8874. (property "Value" "SN74LS07" (at 336.042 132.08 0)
  8875. (effects (font (size 1.27 1.27)))
  8876. )
  8877. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 336.042 137.795 0)
  8878. (effects (font (size 1.27 1.27)) hide)
  8879. )
  8880. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 336.042 137.795 0)
  8881. (effects (font (size 1.27 1.27)) hide)
  8882. )
  8883. (pin "3" (uuid 064e797d-e07e-4c12-94f6-4ccbd5764146))
  8884. (pin "4" (uuid 3ceaff0a-7115-4c92-98e5-8fe05854b1dc))
  8885. (pin "2" (uuid 03bf1b57-81d3-4d73-aa3f-058070535497))
  8886. (pin "7" (uuid c6f1465b-2e0b-4149-8d7f-4f07b1c7d1c9))
  8887. (pin "10" (uuid bba5b50d-4c54-4b95-9a28-b4445c4545f5))
  8888. (pin "14" (uuid 175ed37a-fd39-4f11-849b-39aa07ce4d2b))
  8889. (pin "8" (uuid 955d6f35-753a-400d-9a5b-d9e222a53c6c))
  8890. (pin "11" (uuid 396e578d-c892-40cb-9f43-5d0c35f09147))
  8891. (pin "12" (uuid 7353d72a-fcdb-4603-81cd-4884d5969036))
  8892. (pin "6" (uuid 86d43119-a0dc-4ede-9d4a-26c4f8600468))
  8893. (pin "1" (uuid c06c3a08-ef1e-4e5e-b94f-747e124382aa))
  8894. (pin "5" (uuid e7c7d19c-0324-4421-8435-fa37a02f6717))
  8895. (pin "9" (uuid 8f513355-a7fa-438e-b7ba-536d2e9b3d0b))
  8896. (pin "13" (uuid 8f72fd10-2a28-4e8f-873d-5318c84fdbb8))
  8897. (instances
  8898. (project "Greaseweazle"
  8899. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8900. (reference "U12") (unit 3)
  8901. )
  8902. )
  8903. )
  8904. )
  8905. (symbol (lib_id "74xx:SN74LS07") (at 234.95 158.75 180) (unit 2)
  8906. (in_bom yes) (on_board yes) (dnp no)
  8907. (uuid ea016735-e086-4380-bd9f-2665813a3d48)
  8908. (property "Reference" "U12" (at 231.267 154.686 0)
  8909. (effects (font (size 1.27 1.27)))
  8910. )
  8911. (property "Value" "SN74LS07" (at 244.348 154.686 0)
  8912. (effects (font (size 1.27 1.27)))
  8913. )
  8914. (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 234.95 158.75 0)
  8915. (effects (font (size 1.27 1.27)) hide)
  8916. )
  8917. (property "Datasheet" "www.ti.com/lit/ds/symlink/sn74ls07.pdf" (at 234.95 158.75 0)
  8918. (effects (font (size 1.27 1.27)) hide)
  8919. )
  8920. (pin "3" (uuid c97829fb-c8c9-4b56-8089-685816014459))
  8921. (pin "4" (uuid 2ebe3934-c854-4469-bbe7-b7ccf122f217))
  8922. (pin "2" (uuid 03bf1b57-81d3-4d73-aa3f-058070535493))
  8923. (pin "7" (uuid c6f1465b-2e0b-4149-8d7f-4f07b1c7d1c5))
  8924. (pin "10" (uuid bba5b50d-4c54-4b95-9a28-b4445c4545f1))
  8925. (pin "14" (uuid 175ed37a-fd39-4f11-849b-39aa07ce4d27))
  8926. (pin "8" (uuid 955d6f35-753a-400d-9a5b-d9e222a53c68))
  8927. (pin "11" (uuid 396e578d-c892-40cb-9f43-5d0c35f09143))
  8928. (pin "12" (uuid 7353d72a-fcdb-4603-81cd-4884d5969032))
  8929. (pin "6" (uuid 3ca261e3-6b93-4289-adcd-37444f7616f3))
  8930. (pin "1" (uuid c06c3a08-ef1e-4e5e-b94f-747e124382a6))
  8931. (pin "5" (uuid 826b72aa-8b5e-4d3f-a991-3c3e9595ac42))
  8932. (pin "9" (uuid 8f513355-a7fa-438e-b7ba-536d2e9b3d07))
  8933. (pin "13" (uuid 8f72fd10-2a28-4e8f-873d-5318c84fdbb4))
  8934. (instances
  8935. (project "Greaseweazle"
  8936. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8937. (reference "U12") (unit 2)
  8938. )
  8939. )
  8940. )
  8941. )
  8942. (symbol (lib_id "Device:R_Small") (at 61.595 23.495 0) (unit 1)
  8943. (in_bom yes) (on_board yes) (dnp no)
  8944. (uuid f678389c-c0fa-4b6c-8aad-1c1ac68c940a)
  8945. (property "Reference" "R57" (at 63.0936 22.3266 0)
  8946. (effects (font (size 1.27 1.27)) (justify left))
  8947. )
  8948. (property "Value" "470" (at 63.0936 24.638 0)
  8949. (effects (font (size 1.27 1.27)) (justify left))
  8950. )
  8951. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 61.595 23.495 0)
  8952. (effects (font (size 1.27 1.27)) hide)
  8953. )
  8954. (property "Datasheet" "~" (at 61.595 23.495 0)
  8955. (effects (font (size 1.27 1.27)) hide)
  8956. )
  8957. (property "LCSC" "C25117" (at 61.595 23.495 0)
  8958. (effects (font (size 1.27 1.27)) hide)
  8959. )
  8960. (pin "1" (uuid a5503731-42cc-40d1-b734-764783be118d))
  8961. (pin "2" (uuid 5070b8d9-5e95-467c-a5ba-95bce9e4c757))
  8962. (instances
  8963. (project "Greaseweazle"
  8964. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09"
  8965. (reference "R57") (unit 1)
  8966. )
  8967. )
  8968. )
  8969. )
  8970. (sheet (at 137.16 181.61) (size 21.59 11.43) (fields_autoplaced)
  8971. (stroke (width 0) (type solid))
  8972. (fill (color 0 0 0 0.0000))
  8973. (uuid 00000000-0000-0000-0000-000060f22a52)
  8974. (property "Sheetname" "USB" (at 137.16 180.8984 0)
  8975. (effects (font (size 1.27 1.27)) (justify left bottom))
  8976. )
  8977. (property "Sheetfile" "usb.kicad_sch" (at 137.16 193.6246 0)
  8978. (effects (font (size 1.27 1.27)) (justify left top))
  8979. )
  8980. (pin "USB_D+" input (at 158.75 185.42 0)
  8981. (effects (font (size 1.27 1.27)) (justify right))
  8982. (uuid 269f19c3-6824-45a8-be29-fa58d70cbb42)
  8983. )
  8984. (pin "USB_D-" input (at 158.75 189.23 0)
  8985. (effects (font (size 1.27 1.27)) (justify right))
  8986. (uuid da481376-0e49-44d3-91b8-aaa39b869dd1)
  8987. )
  8988. (instances
  8989. (project "Greaseweazle"
  8990. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09" (page "4"))
  8991. )
  8992. )
  8993. )
  8994. (sheet (at 104.14 181.61) (size 20.32 11.43) (fields_autoplaced)
  8995. (stroke (width 0) (type solid))
  8996. (fill (color 0 0 0 0.0000))
  8997. (uuid 00000000-0000-0000-0000-0000618a932e)
  8998. (property "Sheetname" "Power_USB" (at 104.14 180.8984 0)
  8999. (effects (font (size 1.27 1.27)) (justify left bottom))
  9000. )
  9001. (property "Sheetfile" "Power_USB.kicad_sch" (at 104.14 193.6246 0)
  9002. (effects (font (size 1.27 1.27)) (justify left top))
  9003. )
  9004. (pin "prog_stusb" input (at 124.46 184.15 0)
  9005. (effects (font (size 1.27 1.27)) (justify right))
  9006. (uuid 7efc5d82-4869-48e6-b2c2-d225fc5d404a)
  9007. )
  9008. (instances
  9009. (project "Greaseweazle"
  9010. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09" (page "3"))
  9011. )
  9012. )
  9013. )
  9014. (sheet (at 82.55 181.61) (size 19.05 11.43) (fields_autoplaced)
  9015. (stroke (width 0) (type solid))
  9016. (fill (color 0 0 0 0.0000))
  9017. (uuid 00000000-0000-0000-0000-0000619586c3)
  9018. (property "Sheetname" "Power" (at 82.55 180.8984 0)
  9019. (effects (font (size 1.27 1.27)) (justify left bottom))
  9020. )
  9021. (property "Sheetfile" "Power.kicad_sch" (at 82.55 193.6246 0)
  9022. (effects (font (size 1.27 1.27)) (justify left top))
  9023. )
  9024. (instances
  9025. (project "Greaseweazle"
  9026. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09" (page "2"))
  9027. )
  9028. )
  9029. )
  9030. (sheet (at 26.67 171.45) (size 22.86 24.13)
  9031. (stroke (width 0.1524) (type solid))
  9032. (fill (color 0 0 0 0.0000))
  9033. (uuid 39d9aca3-c269-4acc-b200-a28fd3c81717)
  9034. (property "Sheetname" "AD_USB" (at 26.67 170.7384 0)
  9035. (effects (font (size 1.27 1.27)) (justify left bottom))
  9036. )
  9037. (property "Sheetfile" "ad_usb.kicad_sch" (at 14.605 195.58 0)
  9038. (effects (font (size 1.27 1.27)) (justify left top))
  9039. )
  9040. (pin "STEP" input (at 26.67 177.8 180)
  9041. (effects (font (size 1.27 1.27)) (justify left))
  9042. (uuid eb170636-6185-4375-9f1c-1fdddb64f74e)
  9043. )
  9044. (pin "R_DATA" input (at 26.67 175.26 180)
  9045. (effects (font (size 1.27 1.27)) (justify left))
  9046. (uuid d12e2ddd-dbf6-4288-8370-002533a5c144)
  9047. )
  9048. (pin "TRK_00" input (at 26.67 182.88 180)
  9049. (effects (font (size 1.27 1.27)) (justify left))
  9050. (uuid 53bb84f9-c469-4af3-91d6-1b2c9c63edef)
  9051. )
  9052. (pin "DIR" input (at 26.67 180.34 180)
  9053. (effects (font (size 1.27 1.27)) (justify left))
  9054. (uuid b008c4af-d775-4f04-ad60-7d6baa46bebe)
  9055. )
  9056. (pin "READY" input (at 26.67 187.96 180)
  9057. (effects (font (size 1.27 1.27)) (justify left))
  9058. (uuid ac3b8662-b07d-4123-b7b5-75a78cc0387c)
  9059. )
  9060. (pin "INDEX" input (at 26.67 185.42 180)
  9061. (effects (font (size 1.27 1.27)) (justify left))
  9062. (uuid 9da5a5f9-7aac-4826-be9a-29f4b0854a62)
  9063. )
  9064. (pin "PB[0..11]" input (at 49.53 176.53 0)
  9065. (effects (font (size 1.27 1.27)) (justify right))
  9066. (uuid c38b7402-09d9-4335-aea2-cc4f797b5808)
  9067. )
  9068. (pin "PA[0..11]" input (at 49.53 173.99 0)
  9069. (effects (font (size 1.27 1.27)) (justify right))
  9070. (uuid 5e6dc98a-40f2-41f2-901c-f762536e4328)
  9071. )
  9072. (pin "SIDE_SEL" input (at 26.67 190.5 180)
  9073. (effects (font (size 1.27 1.27)) (justify left))
  9074. (uuid 7fc1cf34-43d1-49db-ab5f-9e1f3086d5bf)
  9075. )
  9076. (pin "CLK" input (at 49.53 189.23 0)
  9077. (effects (font (size 1.27 1.27)) (justify right))
  9078. (uuid cedd4bfc-3b6c-451f-973e-e5f75962f8a5)
  9079. )
  9080. (pin "BE_3" input (at 49.53 186.69 0)
  9081. (effects (font (size 1.27 1.27)) (justify right))
  9082. (uuid 780ed93c-620a-40b9-9e25-acc43379f2c2)
  9083. )
  9084. (pin "BE_0" input (at 49.53 179.07 0)
  9085. (effects (font (size 1.27 1.27)) (justify right))
  9086. (uuid 85925cf5-a1dc-4b19-8948-e9216e68f370)
  9087. )
  9088. (pin "BE_2" input (at 49.53 184.15 0)
  9089. (effects (font (size 1.27 1.27)) (justify right))
  9090. (uuid 7076e039-13be-4752-bf5b-f091b9bbf3fa)
  9091. )
  9092. (pin "BE_1" input (at 49.53 181.61 0)
  9093. (effects (font (size 1.27 1.27)) (justify right))
  9094. (uuid 1c5386b3-6224-45ba-a5ce-446562ffe8e8)
  9095. )
  9096. (pin "TXE_N" input (at 49.53 191.77 0)
  9097. (effects (font (size 1.27 1.27)) (justify right))
  9098. (uuid faf30c08-f706-43b6-b711-67f7d6075f46)
  9099. )
  9100. (pin "RXE_N" input (at 49.53 194.31 0)
  9101. (effects (font (size 1.27 1.27)) (justify right))
  9102. (uuid d058855d-1b48-40ce-836c-b62fc8d13db4)
  9103. )
  9104. (instances
  9105. (project "Greaseweazle"
  9106. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09" (page "6"))
  9107. )
  9108. )
  9109. )
  9110. (sheet (at 64.77 171.45) (size 12.7 21.59) (fields_autoplaced)
  9111. (stroke (width 0.1524) (type solid))
  9112. (fill (color 0 0 0 0.0000))
  9113. (uuid 587e0876-966b-4d35-bd3c-c5066c967aa3)
  9114. (property "Sheetname" "AD" (at 64.77 170.7384 0)
  9115. (effects (font (size 1.27 1.27)) (justify left bottom))
  9116. )
  9117. (property "Sheetfile" "ad.kicad_sch" (at 64.77 193.6246 0)
  9118. (effects (font (size 1.27 1.27)) (justify left top))
  9119. )
  9120. (pin "PA[0..11]" input (at 64.77 173.99 180)
  9121. (effects (font (size 1.27 1.27)) (justify left))
  9122. (uuid 766758f2-edd5-4881-8f91-2127594b41f4)
  9123. )
  9124. (pin "PB[0..11]" input (at 64.77 176.53 180)
  9125. (effects (font (size 1.27 1.27)) (justify left))
  9126. (uuid bed1934f-df91-4927-898c-8e7a784fec42)
  9127. )
  9128. (pin "CLK_60MHz" input (at 64.77 189.23 180)
  9129. (effects (font (size 1.27 1.27)) (justify left))
  9130. (uuid 4200158d-c449-455c-9ec7-047d4a76287d)
  9131. )
  9132. (instances
  9133. (project "Greaseweazle"
  9134. (path "/c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09" (page "5"))
  9135. )
  9136. )
  9137. )
  9138. (sheet_instances
  9139. (path "/" (page "1"))
  9140. )
  9141. )