Z80ICE.kicad_sch 339 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 4e6e23b6-3bf8-413a-9fba-d159d11738f7)
  3. (paper "A3")
  4. (title_block
  5. (title "Z80ICE")
  6. (date "2022-10-21")
  7. (rev "0.01")
  8. )
  9. (lib_symbols
  10. (symbol "CPU:Z80CPU" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  11. (property "Reference" "U" (id 0) (at -13.97 35.56 0)
  12. (effects (font (size 1.27 1.27)) (justify left))
  13. )
  14. (property "Value" "Z80CPU" (id 1) (at 6.35 35.56 0)
  15. (effects (font (size 1.27 1.27)) (justify left))
  16. )
  17. (property "Footprint" "" (id 2) (at 0 10.16 0)
  18. (effects (font (size 1.27 1.27)) hide)
  19. )
  20. (property "Datasheet" "www.zilog.com/manage_directlink.php?filepath=docs/z80/um0080" (id 3) (at 0 10.16 0)
  21. (effects (font (size 1.27 1.27)) hide)
  22. )
  23. (property "ki_keywords" "Z80 CPU uP" (id 4) (at 0 0 0)
  24. (effects (font (size 1.27 1.27)) hide)
  25. )
  26. (property "ki_description" "8-bit General Purpose Microprocessor, DIP-40" (id 5) (at 0 0 0)
  27. (effects (font (size 1.27 1.27)) hide)
  28. )
  29. (property "ki_fp_filters" "DIP* PDIP*" (id 6) (at 0 0 0)
  30. (effects (font (size 1.27 1.27)) hide)
  31. )
  32. (symbol "Z80CPU_0_1"
  33. (rectangle (start -13.97 34.29) (end 13.97 -34.29)
  34. (stroke (width 0.254) (type default) (color 0 0 0 0))
  35. (fill (type background))
  36. )
  37. )
  38. (symbol "Z80CPU_1_1"
  39. (pin output line (at 17.78 2.54 180) (length 3.81)
  40. (name "A11" (effects (font (size 1.27 1.27))))
  41. (number "1" (effects (font (size 1.27 1.27))))
  42. )
  43. (pin bidirectional line (at 17.78 -27.94 180) (length 3.81)
  44. (name "D6" (effects (font (size 1.27 1.27))))
  45. (number "10" (effects (font (size 1.27 1.27))))
  46. )
  47. (pin power_in line (at 0 38.1 270) (length 3.81)
  48. (name "VCC" (effects (font (size 1.27 1.27))))
  49. (number "11" (effects (font (size 1.27 1.27))))
  50. )
  51. (pin bidirectional line (at 17.78 -17.78 180) (length 3.81)
  52. (name "D2" (effects (font (size 1.27 1.27))))
  53. (number "12" (effects (font (size 1.27 1.27))))
  54. )
  55. (pin bidirectional line (at 17.78 -30.48 180) (length 3.81)
  56. (name "D7" (effects (font (size 1.27 1.27))))
  57. (number "13" (effects (font (size 1.27 1.27))))
  58. )
  59. (pin bidirectional line (at 17.78 -12.7 180) (length 3.81)
  60. (name "D0" (effects (font (size 1.27 1.27))))
  61. (number "14" (effects (font (size 1.27 1.27))))
  62. )
  63. (pin bidirectional line (at 17.78 -15.24 180) (length 3.81)
  64. (name "D1" (effects (font (size 1.27 1.27))))
  65. (number "15" (effects (font (size 1.27 1.27))))
  66. )
  67. (pin input line (at -17.78 12.7 0) (length 3.81)
  68. (name "~{INT}" (effects (font (size 1.27 1.27))))
  69. (number "16" (effects (font (size 1.27 1.27))))
  70. )
  71. (pin input line (at -17.78 15.24 0) (length 3.81)
  72. (name "~{NMI}" (effects (font (size 1.27 1.27))))
  73. (number "17" (effects (font (size 1.27 1.27))))
  74. )
  75. (pin output line (at -17.78 -2.54 0) (length 3.81)
  76. (name "~{HALT}" (effects (font (size 1.27 1.27))))
  77. (number "18" (effects (font (size 1.27 1.27))))
  78. )
  79. (pin output line (at -17.78 -17.78 0) (length 3.81)
  80. (name "~{MREQ}" (effects (font (size 1.27 1.27))))
  81. (number "19" (effects (font (size 1.27 1.27))))
  82. )
  83. (pin output line (at 17.78 0 180) (length 3.81)
  84. (name "A12" (effects (font (size 1.27 1.27))))
  85. (number "2" (effects (font (size 1.27 1.27))))
  86. )
  87. (pin output line (at -17.78 -20.32 0) (length 3.81)
  88. (name "~{IORQ}" (effects (font (size 1.27 1.27))))
  89. (number "20" (effects (font (size 1.27 1.27))))
  90. )
  91. (pin output line (at -17.78 -12.7 0) (length 3.81)
  92. (name "~{RD}" (effects (font (size 1.27 1.27))))
  93. (number "21" (effects (font (size 1.27 1.27))))
  94. )
  95. (pin output line (at -17.78 -15.24 0) (length 3.81)
  96. (name "~{WR}" (effects (font (size 1.27 1.27))))
  97. (number "22" (effects (font (size 1.27 1.27))))
  98. )
  99. (pin output line (at -17.78 -30.48 0) (length 3.81)
  100. (name "~{BUSACK}" (effects (font (size 1.27 1.27))))
  101. (number "23" (effects (font (size 1.27 1.27))))
  102. )
  103. (pin input line (at -17.78 0 0) (length 3.81)
  104. (name "~{WAIT}" (effects (font (size 1.27 1.27))))
  105. (number "24" (effects (font (size 1.27 1.27))))
  106. )
  107. (pin input line (at -17.78 -27.94 0) (length 3.81)
  108. (name "~{BUSRQ}" (effects (font (size 1.27 1.27))))
  109. (number "25" (effects (font (size 1.27 1.27))))
  110. )
  111. (pin input line (at -17.78 30.48 0) (length 3.81)
  112. (name "~{RESET}" (effects (font (size 1.27 1.27))))
  113. (number "26" (effects (font (size 1.27 1.27))))
  114. )
  115. (pin output line (at -17.78 5.08 0) (length 3.81)
  116. (name "~{M1}" (effects (font (size 1.27 1.27))))
  117. (number "27" (effects (font (size 1.27 1.27))))
  118. )
  119. (pin output line (at -17.78 2.54 0) (length 3.81)
  120. (name "~{RFSH}" (effects (font (size 1.27 1.27))))
  121. (number "28" (effects (font (size 1.27 1.27))))
  122. )
  123. (pin power_in line (at 0 -38.1 90) (length 3.81)
  124. (name "GND" (effects (font (size 1.27 1.27))))
  125. (number "29" (effects (font (size 1.27 1.27))))
  126. )
  127. (pin output line (at 17.78 -2.54 180) (length 3.81)
  128. (name "A13" (effects (font (size 1.27 1.27))))
  129. (number "3" (effects (font (size 1.27 1.27))))
  130. )
  131. (pin output line (at 17.78 30.48 180) (length 3.81)
  132. (name "A0" (effects (font (size 1.27 1.27))))
  133. (number "30" (effects (font (size 1.27 1.27))))
  134. )
  135. (pin output line (at 17.78 27.94 180) (length 3.81)
  136. (name "A1" (effects (font (size 1.27 1.27))))
  137. (number "31" (effects (font (size 1.27 1.27))))
  138. )
  139. (pin output line (at 17.78 25.4 180) (length 3.81)
  140. (name "A2" (effects (font (size 1.27 1.27))))
  141. (number "32" (effects (font (size 1.27 1.27))))
  142. )
  143. (pin output line (at 17.78 22.86 180) (length 3.81)
  144. (name "A3" (effects (font (size 1.27 1.27))))
  145. (number "33" (effects (font (size 1.27 1.27))))
  146. )
  147. (pin output line (at 17.78 20.32 180) (length 3.81)
  148. (name "A4" (effects (font (size 1.27 1.27))))
  149. (number "34" (effects (font (size 1.27 1.27))))
  150. )
  151. (pin output line (at 17.78 17.78 180) (length 3.81)
  152. (name "A5" (effects (font (size 1.27 1.27))))
  153. (number "35" (effects (font (size 1.27 1.27))))
  154. )
  155. (pin output line (at 17.78 15.24 180) (length 3.81)
  156. (name "A6" (effects (font (size 1.27 1.27))))
  157. (number "36" (effects (font (size 1.27 1.27))))
  158. )
  159. (pin output line (at 17.78 12.7 180) (length 3.81)
  160. (name "A7" (effects (font (size 1.27 1.27))))
  161. (number "37" (effects (font (size 1.27 1.27))))
  162. )
  163. (pin output line (at 17.78 10.16 180) (length 3.81)
  164. (name "A8" (effects (font (size 1.27 1.27))))
  165. (number "38" (effects (font (size 1.27 1.27))))
  166. )
  167. (pin output line (at 17.78 7.62 180) (length 3.81)
  168. (name "A9" (effects (font (size 1.27 1.27))))
  169. (number "39" (effects (font (size 1.27 1.27))))
  170. )
  171. (pin output line (at 17.78 -5.08 180) (length 3.81)
  172. (name "A14" (effects (font (size 1.27 1.27))))
  173. (number "4" (effects (font (size 1.27 1.27))))
  174. )
  175. (pin output line (at 17.78 5.08 180) (length 3.81)
  176. (name "A10" (effects (font (size 1.27 1.27))))
  177. (number "40" (effects (font (size 1.27 1.27))))
  178. )
  179. (pin output line (at 17.78 -7.62 180) (length 3.81)
  180. (name "A15" (effects (font (size 1.27 1.27))))
  181. (number "5" (effects (font (size 1.27 1.27))))
  182. )
  183. (pin input clock (at -17.78 22.86 0) (length 3.81)
  184. (name "~{CLK}" (effects (font (size 1.27 1.27))))
  185. (number "6" (effects (font (size 1.27 1.27))))
  186. )
  187. (pin bidirectional line (at 17.78 -22.86 180) (length 3.81)
  188. (name "D4" (effects (font (size 1.27 1.27))))
  189. (number "7" (effects (font (size 1.27 1.27))))
  190. )
  191. (pin bidirectional line (at 17.78 -20.32 180) (length 3.81)
  192. (name "D3" (effects (font (size 1.27 1.27))))
  193. (number "8" (effects (font (size 1.27 1.27))))
  194. )
  195. (pin bidirectional line (at 17.78 -25.4 180) (length 3.81)
  196. (name "D5" (effects (font (size 1.27 1.27))))
  197. (number "9" (effects (font (size 1.27 1.27))))
  198. )
  199. )
  200. )
  201. (symbol "Connector_Generic:Conn_02x05_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  202. (property "Reference" "J" (id 0) (at 1.27 7.62 0)
  203. (effects (font (size 1.27 1.27)))
  204. )
  205. (property "Value" "Conn_02x05_Odd_Even" (id 1) (at 1.27 -7.62 0)
  206. (effects (font (size 1.27 1.27)))
  207. )
  208. (property "Footprint" "" (id 2) (at 0 0 0)
  209. (effects (font (size 1.27 1.27)) hide)
  210. )
  211. (property "Datasheet" "~" (id 3) (at 0 0 0)
  212. (effects (font (size 1.27 1.27)) hide)
  213. )
  214. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  215. (effects (font (size 1.27 1.27)) hide)
  216. )
  217. (property "ki_description" "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  218. (effects (font (size 1.27 1.27)) hide)
  219. )
  220. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  221. (effects (font (size 1.27 1.27)) hide)
  222. )
  223. (symbol "Conn_02x05_Odd_Even_1_1"
  224. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  225. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  226. (fill (type none))
  227. )
  228. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  229. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  230. (fill (type none))
  231. )
  232. (rectangle (start -1.27 0.127) (end 0 -0.127)
  233. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  234. (fill (type none))
  235. )
  236. (rectangle (start -1.27 2.667) (end 0 2.413)
  237. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  238. (fill (type none))
  239. )
  240. (rectangle (start -1.27 5.207) (end 0 4.953)
  241. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  242. (fill (type none))
  243. )
  244. (rectangle (start -1.27 6.35) (end 3.81 -6.35)
  245. (stroke (width 0.254) (type default) (color 0 0 0 0))
  246. (fill (type background))
  247. )
  248. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  249. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  250. (fill (type none))
  251. )
  252. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  253. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  254. (fill (type none))
  255. )
  256. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  257. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  258. (fill (type none))
  259. )
  260. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  261. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  262. (fill (type none))
  263. )
  264. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  265. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  266. (fill (type none))
  267. )
  268. (pin passive line (at -5.08 5.08 0) (length 3.81)
  269. (name "Pin_1" (effects (font (size 1.27 1.27))))
  270. (number "1" (effects (font (size 1.27 1.27))))
  271. )
  272. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  273. (name "Pin_10" (effects (font (size 1.27 1.27))))
  274. (number "10" (effects (font (size 1.27 1.27))))
  275. )
  276. (pin passive line (at 7.62 5.08 180) (length 3.81)
  277. (name "Pin_2" (effects (font (size 1.27 1.27))))
  278. (number "2" (effects (font (size 1.27 1.27))))
  279. )
  280. (pin passive line (at -5.08 2.54 0) (length 3.81)
  281. (name "Pin_3" (effects (font (size 1.27 1.27))))
  282. (number "3" (effects (font (size 1.27 1.27))))
  283. )
  284. (pin passive line (at 7.62 2.54 180) (length 3.81)
  285. (name "Pin_4" (effects (font (size 1.27 1.27))))
  286. (number "4" (effects (font (size 1.27 1.27))))
  287. )
  288. (pin passive line (at -5.08 0 0) (length 3.81)
  289. (name "Pin_5" (effects (font (size 1.27 1.27))))
  290. (number "5" (effects (font (size 1.27 1.27))))
  291. )
  292. (pin passive line (at 7.62 0 180) (length 3.81)
  293. (name "Pin_6" (effects (font (size 1.27 1.27))))
  294. (number "6" (effects (font (size 1.27 1.27))))
  295. )
  296. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  297. (name "Pin_7" (effects (font (size 1.27 1.27))))
  298. (number "7" (effects (font (size 1.27 1.27))))
  299. )
  300. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  301. (name "Pin_8" (effects (font (size 1.27 1.27))))
  302. (number "8" (effects (font (size 1.27 1.27))))
  303. )
  304. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  305. (name "Pin_9" (effects (font (size 1.27 1.27))))
  306. (number "9" (effects (font (size 1.27 1.27))))
  307. )
  308. )
  309. )
  310. (symbol "Connector_Generic:Conn_02x20_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  311. (property "Reference" "J" (id 0) (at 1.27 25.4 0)
  312. (effects (font (size 1.27 1.27)))
  313. )
  314. (property "Value" "Conn_02x20_Odd_Even" (id 1) (at 1.27 -27.94 0)
  315. (effects (font (size 1.27 1.27)))
  316. )
  317. (property "Footprint" "" (id 2) (at 0 0 0)
  318. (effects (font (size 1.27 1.27)) hide)
  319. )
  320. (property "Datasheet" "~" (id 3) (at 0 0 0)
  321. (effects (font (size 1.27 1.27)) hide)
  322. )
  323. (property "ki_keywords" "connector" (id 4) (at 0 0 0)
  324. (effects (font (size 1.27 1.27)) hide)
  325. )
  326. (property "ki_description" "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
  327. (effects (font (size 1.27 1.27)) hide)
  328. )
  329. (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
  330. (effects (font (size 1.27 1.27)) hide)
  331. )
  332. (symbol "Conn_02x20_Odd_Even_1_1"
  333. (rectangle (start -1.27 -25.273) (end 0 -25.527)
  334. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  335. (fill (type none))
  336. )
  337. (rectangle (start -1.27 -22.733) (end 0 -22.987)
  338. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  339. (fill (type none))
  340. )
  341. (rectangle (start -1.27 -20.193) (end 0 -20.447)
  342. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  343. (fill (type none))
  344. )
  345. (rectangle (start -1.27 -17.653) (end 0 -17.907)
  346. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  347. (fill (type none))
  348. )
  349. (rectangle (start -1.27 -15.113) (end 0 -15.367)
  350. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  351. (fill (type none))
  352. )
  353. (rectangle (start -1.27 -12.573) (end 0 -12.827)
  354. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  355. (fill (type none))
  356. )
  357. (rectangle (start -1.27 -10.033) (end 0 -10.287)
  358. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  359. (fill (type none))
  360. )
  361. (rectangle (start -1.27 -7.493) (end 0 -7.747)
  362. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  363. (fill (type none))
  364. )
  365. (rectangle (start -1.27 -4.953) (end 0 -5.207)
  366. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  367. (fill (type none))
  368. )
  369. (rectangle (start -1.27 -2.413) (end 0 -2.667)
  370. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  371. (fill (type none))
  372. )
  373. (rectangle (start -1.27 0.127) (end 0 -0.127)
  374. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  375. (fill (type none))
  376. )
  377. (rectangle (start -1.27 2.667) (end 0 2.413)
  378. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  379. (fill (type none))
  380. )
  381. (rectangle (start -1.27 5.207) (end 0 4.953)
  382. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  383. (fill (type none))
  384. )
  385. (rectangle (start -1.27 7.747) (end 0 7.493)
  386. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  387. (fill (type none))
  388. )
  389. (rectangle (start -1.27 10.287) (end 0 10.033)
  390. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  391. (fill (type none))
  392. )
  393. (rectangle (start -1.27 12.827) (end 0 12.573)
  394. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  395. (fill (type none))
  396. )
  397. (rectangle (start -1.27 15.367) (end 0 15.113)
  398. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  399. (fill (type none))
  400. )
  401. (rectangle (start -1.27 17.907) (end 0 17.653)
  402. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  403. (fill (type none))
  404. )
  405. (rectangle (start -1.27 20.447) (end 0 20.193)
  406. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  407. (fill (type none))
  408. )
  409. (rectangle (start -1.27 22.987) (end 0 22.733)
  410. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  411. (fill (type none))
  412. )
  413. (rectangle (start -1.27 24.13) (end 3.81 -26.67)
  414. (stroke (width 0.254) (type default) (color 0 0 0 0))
  415. (fill (type background))
  416. )
  417. (rectangle (start 3.81 -25.273) (end 2.54 -25.527)
  418. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  419. (fill (type none))
  420. )
  421. (rectangle (start 3.81 -22.733) (end 2.54 -22.987)
  422. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  423. (fill (type none))
  424. )
  425. (rectangle (start 3.81 -20.193) (end 2.54 -20.447)
  426. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  427. (fill (type none))
  428. )
  429. (rectangle (start 3.81 -17.653) (end 2.54 -17.907)
  430. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  431. (fill (type none))
  432. )
  433. (rectangle (start 3.81 -15.113) (end 2.54 -15.367)
  434. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  435. (fill (type none))
  436. )
  437. (rectangle (start 3.81 -12.573) (end 2.54 -12.827)
  438. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  439. (fill (type none))
  440. )
  441. (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
  442. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  443. (fill (type none))
  444. )
  445. (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
  446. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  447. (fill (type none))
  448. )
  449. (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
  450. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  451. (fill (type none))
  452. )
  453. (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
  454. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  455. (fill (type none))
  456. )
  457. (rectangle (start 3.81 0.127) (end 2.54 -0.127)
  458. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  459. (fill (type none))
  460. )
  461. (rectangle (start 3.81 2.667) (end 2.54 2.413)
  462. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  463. (fill (type none))
  464. )
  465. (rectangle (start 3.81 5.207) (end 2.54 4.953)
  466. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  467. (fill (type none))
  468. )
  469. (rectangle (start 3.81 7.747) (end 2.54 7.493)
  470. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  471. (fill (type none))
  472. )
  473. (rectangle (start 3.81 10.287) (end 2.54 10.033)
  474. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  475. (fill (type none))
  476. )
  477. (rectangle (start 3.81 12.827) (end 2.54 12.573)
  478. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  479. (fill (type none))
  480. )
  481. (rectangle (start 3.81 15.367) (end 2.54 15.113)
  482. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  483. (fill (type none))
  484. )
  485. (rectangle (start 3.81 17.907) (end 2.54 17.653)
  486. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  487. (fill (type none))
  488. )
  489. (rectangle (start 3.81 20.447) (end 2.54 20.193)
  490. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  491. (fill (type none))
  492. )
  493. (rectangle (start 3.81 22.987) (end 2.54 22.733)
  494. (stroke (width 0.1524) (type default) (color 0 0 0 0))
  495. (fill (type none))
  496. )
  497. (pin passive line (at -5.08 22.86 0) (length 3.81)
  498. (name "Pin_1" (effects (font (size 1.27 1.27))))
  499. (number "1" (effects (font (size 1.27 1.27))))
  500. )
  501. (pin passive line (at 7.62 12.7 180) (length 3.81)
  502. (name "Pin_10" (effects (font (size 1.27 1.27))))
  503. (number "10" (effects (font (size 1.27 1.27))))
  504. )
  505. (pin passive line (at -5.08 10.16 0) (length 3.81)
  506. (name "Pin_11" (effects (font (size 1.27 1.27))))
  507. (number "11" (effects (font (size 1.27 1.27))))
  508. )
  509. (pin passive line (at 7.62 10.16 180) (length 3.81)
  510. (name "Pin_12" (effects (font (size 1.27 1.27))))
  511. (number "12" (effects (font (size 1.27 1.27))))
  512. )
  513. (pin passive line (at -5.08 7.62 0) (length 3.81)
  514. (name "Pin_13" (effects (font (size 1.27 1.27))))
  515. (number "13" (effects (font (size 1.27 1.27))))
  516. )
  517. (pin passive line (at 7.62 7.62 180) (length 3.81)
  518. (name "Pin_14" (effects (font (size 1.27 1.27))))
  519. (number "14" (effects (font (size 1.27 1.27))))
  520. )
  521. (pin passive line (at -5.08 5.08 0) (length 3.81)
  522. (name "Pin_15" (effects (font (size 1.27 1.27))))
  523. (number "15" (effects (font (size 1.27 1.27))))
  524. )
  525. (pin passive line (at 7.62 5.08 180) (length 3.81)
  526. (name "Pin_16" (effects (font (size 1.27 1.27))))
  527. (number "16" (effects (font (size 1.27 1.27))))
  528. )
  529. (pin passive line (at -5.08 2.54 0) (length 3.81)
  530. (name "Pin_17" (effects (font (size 1.27 1.27))))
  531. (number "17" (effects (font (size 1.27 1.27))))
  532. )
  533. (pin passive line (at 7.62 2.54 180) (length 3.81)
  534. (name "Pin_18" (effects (font (size 1.27 1.27))))
  535. (number "18" (effects (font (size 1.27 1.27))))
  536. )
  537. (pin passive line (at -5.08 0 0) (length 3.81)
  538. (name "Pin_19" (effects (font (size 1.27 1.27))))
  539. (number "19" (effects (font (size 1.27 1.27))))
  540. )
  541. (pin passive line (at 7.62 22.86 180) (length 3.81)
  542. (name "Pin_2" (effects (font (size 1.27 1.27))))
  543. (number "2" (effects (font (size 1.27 1.27))))
  544. )
  545. (pin passive line (at 7.62 0 180) (length 3.81)
  546. (name "Pin_20" (effects (font (size 1.27 1.27))))
  547. (number "20" (effects (font (size 1.27 1.27))))
  548. )
  549. (pin passive line (at -5.08 -2.54 0) (length 3.81)
  550. (name "Pin_21" (effects (font (size 1.27 1.27))))
  551. (number "21" (effects (font (size 1.27 1.27))))
  552. )
  553. (pin passive line (at 7.62 -2.54 180) (length 3.81)
  554. (name "Pin_22" (effects (font (size 1.27 1.27))))
  555. (number "22" (effects (font (size 1.27 1.27))))
  556. )
  557. (pin passive line (at -5.08 -5.08 0) (length 3.81)
  558. (name "Pin_23" (effects (font (size 1.27 1.27))))
  559. (number "23" (effects (font (size 1.27 1.27))))
  560. )
  561. (pin passive line (at 7.62 -5.08 180) (length 3.81)
  562. (name "Pin_24" (effects (font (size 1.27 1.27))))
  563. (number "24" (effects (font (size 1.27 1.27))))
  564. )
  565. (pin passive line (at -5.08 -7.62 0) (length 3.81)
  566. (name "Pin_25" (effects (font (size 1.27 1.27))))
  567. (number "25" (effects (font (size 1.27 1.27))))
  568. )
  569. (pin passive line (at 7.62 -7.62 180) (length 3.81)
  570. (name "Pin_26" (effects (font (size 1.27 1.27))))
  571. (number "26" (effects (font (size 1.27 1.27))))
  572. )
  573. (pin passive line (at -5.08 -10.16 0) (length 3.81)
  574. (name "Pin_27" (effects (font (size 1.27 1.27))))
  575. (number "27" (effects (font (size 1.27 1.27))))
  576. )
  577. (pin passive line (at 7.62 -10.16 180) (length 3.81)
  578. (name "Pin_28" (effects (font (size 1.27 1.27))))
  579. (number "28" (effects (font (size 1.27 1.27))))
  580. )
  581. (pin passive line (at -5.08 -12.7 0) (length 3.81)
  582. (name "Pin_29" (effects (font (size 1.27 1.27))))
  583. (number "29" (effects (font (size 1.27 1.27))))
  584. )
  585. (pin passive line (at -5.08 20.32 0) (length 3.81)
  586. (name "Pin_3" (effects (font (size 1.27 1.27))))
  587. (number "3" (effects (font (size 1.27 1.27))))
  588. )
  589. (pin passive line (at 7.62 -12.7 180) (length 3.81)
  590. (name "Pin_30" (effects (font (size 1.27 1.27))))
  591. (number "30" (effects (font (size 1.27 1.27))))
  592. )
  593. (pin passive line (at -5.08 -15.24 0) (length 3.81)
  594. (name "Pin_31" (effects (font (size 1.27 1.27))))
  595. (number "31" (effects (font (size 1.27 1.27))))
  596. )
  597. (pin passive line (at 7.62 -15.24 180) (length 3.81)
  598. (name "Pin_32" (effects (font (size 1.27 1.27))))
  599. (number "32" (effects (font (size 1.27 1.27))))
  600. )
  601. (pin passive line (at -5.08 -17.78 0) (length 3.81)
  602. (name "Pin_33" (effects (font (size 1.27 1.27))))
  603. (number "33" (effects (font (size 1.27 1.27))))
  604. )
  605. (pin passive line (at 7.62 -17.78 180) (length 3.81)
  606. (name "Pin_34" (effects (font (size 1.27 1.27))))
  607. (number "34" (effects (font (size 1.27 1.27))))
  608. )
  609. (pin passive line (at -5.08 -20.32 0) (length 3.81)
  610. (name "Pin_35" (effects (font (size 1.27 1.27))))
  611. (number "35" (effects (font (size 1.27 1.27))))
  612. )
  613. (pin passive line (at 7.62 -20.32 180) (length 3.81)
  614. (name "Pin_36" (effects (font (size 1.27 1.27))))
  615. (number "36" (effects (font (size 1.27 1.27))))
  616. )
  617. (pin passive line (at -5.08 -22.86 0) (length 3.81)
  618. (name "Pin_37" (effects (font (size 1.27 1.27))))
  619. (number "37" (effects (font (size 1.27 1.27))))
  620. )
  621. (pin passive line (at 7.62 -22.86 180) (length 3.81)
  622. (name "Pin_38" (effects (font (size 1.27 1.27))))
  623. (number "38" (effects (font (size 1.27 1.27))))
  624. )
  625. (pin passive line (at -5.08 -25.4 0) (length 3.81)
  626. (name "Pin_39" (effects (font (size 1.27 1.27))))
  627. (number "39" (effects (font (size 1.27 1.27))))
  628. )
  629. (pin passive line (at 7.62 20.32 180) (length 3.81)
  630. (name "Pin_4" (effects (font (size 1.27 1.27))))
  631. (number "4" (effects (font (size 1.27 1.27))))
  632. )
  633. (pin passive line (at 7.62 -25.4 180) (length 3.81)
  634. (name "Pin_40" (effects (font (size 1.27 1.27))))
  635. (number "40" (effects (font (size 1.27 1.27))))
  636. )
  637. (pin passive line (at -5.08 17.78 0) (length 3.81)
  638. (name "Pin_5" (effects (font (size 1.27 1.27))))
  639. (number "5" (effects (font (size 1.27 1.27))))
  640. )
  641. (pin passive line (at 7.62 17.78 180) (length 3.81)
  642. (name "Pin_6" (effects (font (size 1.27 1.27))))
  643. (number "6" (effects (font (size 1.27 1.27))))
  644. )
  645. (pin passive line (at -5.08 15.24 0) (length 3.81)
  646. (name "Pin_7" (effects (font (size 1.27 1.27))))
  647. (number "7" (effects (font (size 1.27 1.27))))
  648. )
  649. (pin passive line (at 7.62 15.24 180) (length 3.81)
  650. (name "Pin_8" (effects (font (size 1.27 1.27))))
  651. (number "8" (effects (font (size 1.27 1.27))))
  652. )
  653. (pin passive line (at -5.08 12.7 0) (length 3.81)
  654. (name "Pin_9" (effects (font (size 1.27 1.27))))
  655. (number "9" (effects (font (size 1.27 1.27))))
  656. )
  657. )
  658. )
  659. (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  660. (property "Reference" "C" (id 0) (at 0.635 2.54 0)
  661. (effects (font (size 1.27 1.27)) (justify left))
  662. )
  663. (property "Value" "C" (id 1) (at 0.635 -2.54 0)
  664. (effects (font (size 1.27 1.27)) (justify left))
  665. )
  666. (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
  667. (effects (font (size 1.27 1.27)) hide)
  668. )
  669. (property "Datasheet" "~" (id 3) (at 0 0 0)
  670. (effects (font (size 1.27 1.27)) hide)
  671. )
  672. (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
  673. (effects (font (size 1.27 1.27)) hide)
  674. )
  675. (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
  676. (effects (font (size 1.27 1.27)) hide)
  677. )
  678. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  679. (effects (font (size 1.27 1.27)) hide)
  680. )
  681. (symbol "C_0_1"
  682. (polyline
  683. (pts
  684. (xy -2.032 -0.762)
  685. (xy 2.032 -0.762)
  686. )
  687. (stroke (width 0.508) (type default) (color 0 0 0 0))
  688. (fill (type none))
  689. )
  690. (polyline
  691. (pts
  692. (xy -2.032 0.762)
  693. (xy 2.032 0.762)
  694. )
  695. (stroke (width 0.508) (type default) (color 0 0 0 0))
  696. (fill (type none))
  697. )
  698. )
  699. (symbol "C_1_1"
  700. (pin passive line (at 0 3.81 270) (length 2.794)
  701. (name "~" (effects (font (size 1.27 1.27))))
  702. (number "1" (effects (font (size 1.27 1.27))))
  703. )
  704. (pin passive line (at 0 -3.81 90) (length 2.794)
  705. (name "~" (effects (font (size 1.27 1.27))))
  706. (number "2" (effects (font (size 1.27 1.27))))
  707. )
  708. )
  709. )
  710. (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  711. (property "Reference" "C" (id 0) (at 0.254 1.778 0)
  712. (effects (font (size 1.27 1.27)) (justify left))
  713. )
  714. (property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
  715. (effects (font (size 1.27 1.27)) (justify left))
  716. )
  717. (property "Footprint" "" (id 2) (at 0 0 0)
  718. (effects (font (size 1.27 1.27)) hide)
  719. )
  720. (property "Datasheet" "~" (id 3) (at 0 0 0)
  721. (effects (font (size 1.27 1.27)) hide)
  722. )
  723. (property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
  724. (effects (font (size 1.27 1.27)) hide)
  725. )
  726. (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
  727. (effects (font (size 1.27 1.27)) hide)
  728. )
  729. (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
  730. (effects (font (size 1.27 1.27)) hide)
  731. )
  732. (symbol "C_Small_0_1"
  733. (polyline
  734. (pts
  735. (xy -1.524 -0.508)
  736. (xy 1.524 -0.508)
  737. )
  738. (stroke (width 0.3302) (type default) (color 0 0 0 0))
  739. (fill (type none))
  740. )
  741. (polyline
  742. (pts
  743. (xy -1.524 0.508)
  744. (xy 1.524 0.508)
  745. )
  746. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  747. (fill (type none))
  748. )
  749. )
  750. (symbol "C_Small_1_1"
  751. (pin passive line (at 0 2.54 270) (length 2.032)
  752. (name "~" (effects (font (size 1.27 1.27))))
  753. (number "1" (effects (font (size 1.27 1.27))))
  754. )
  755. (pin passive line (at 0 -2.54 90) (length 2.032)
  756. (name "~" (effects (font (size 1.27 1.27))))
  757. (number "2" (effects (font (size 1.27 1.27))))
  758. )
  759. )
  760. )
  761. (symbol "Device:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  762. (property "Reference" "Y" (id 0) (at 3.175 5.08 0)
  763. (effects (font (size 1.27 1.27)) (justify left))
  764. )
  765. (property "Value" "Crystal_GND24" (id 1) (at 3.175 3.175 0)
  766. (effects (font (size 1.27 1.27)) (justify left))
  767. )
  768. (property "Footprint" "" (id 2) (at 0 0 0)
  769. (effects (font (size 1.27 1.27)) hide)
  770. )
  771. (property "Datasheet" "~" (id 3) (at 0 0 0)
  772. (effects (font (size 1.27 1.27)) hide)
  773. )
  774. (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
  775. (effects (font (size 1.27 1.27)) hide)
  776. )
  777. (property "ki_description" "Four pin crystal, GND on pins 2 and 4" (id 5) (at 0 0 0)
  778. (effects (font (size 1.27 1.27)) hide)
  779. )
  780. (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
  781. (effects (font (size 1.27 1.27)) hide)
  782. )
  783. (symbol "Crystal_GND24_0_1"
  784. (rectangle (start -1.143 2.54) (end 1.143 -2.54)
  785. (stroke (width 0.3048) (type default) (color 0 0 0 0))
  786. (fill (type none))
  787. )
  788. (polyline
  789. (pts
  790. (xy -2.54 0)
  791. (xy -2.032 0)
  792. )
  793. (stroke (width 0) (type default) (color 0 0 0 0))
  794. (fill (type none))
  795. )
  796. (polyline
  797. (pts
  798. (xy -2.032 -1.27)
  799. (xy -2.032 1.27)
  800. )
  801. (stroke (width 0.508) (type default) (color 0 0 0 0))
  802. (fill (type none))
  803. )
  804. (polyline
  805. (pts
  806. (xy 0 -3.81)
  807. (xy 0 -3.556)
  808. )
  809. (stroke (width 0) (type default) (color 0 0 0 0))
  810. (fill (type none))
  811. )
  812. (polyline
  813. (pts
  814. (xy 0 3.556)
  815. (xy 0 3.81)
  816. )
  817. (stroke (width 0) (type default) (color 0 0 0 0))
  818. (fill (type none))
  819. )
  820. (polyline
  821. (pts
  822. (xy 2.032 -1.27)
  823. (xy 2.032 1.27)
  824. )
  825. (stroke (width 0.508) (type default) (color 0 0 0 0))
  826. (fill (type none))
  827. )
  828. (polyline
  829. (pts
  830. (xy 2.032 0)
  831. (xy 2.54 0)
  832. )
  833. (stroke (width 0) (type default) (color 0 0 0 0))
  834. (fill (type none))
  835. )
  836. (polyline
  837. (pts
  838. (xy -2.54 -2.286)
  839. (xy -2.54 -3.556)
  840. (xy 2.54 -3.556)
  841. (xy 2.54 -2.286)
  842. )
  843. (stroke (width 0) (type default) (color 0 0 0 0))
  844. (fill (type none))
  845. )
  846. (polyline
  847. (pts
  848. (xy -2.54 2.286)
  849. (xy -2.54 3.556)
  850. (xy 2.54 3.556)
  851. (xy 2.54 2.286)
  852. )
  853. (stroke (width 0) (type default) (color 0 0 0 0))
  854. (fill (type none))
  855. )
  856. )
  857. (symbol "Crystal_GND24_1_1"
  858. (pin passive line (at -3.81 0 0) (length 1.27)
  859. (name "1" (effects (font (size 1.27 1.27))))
  860. (number "1" (effects (font (size 1.27 1.27))))
  861. )
  862. (pin passive line (at 0 5.08 270) (length 1.27)
  863. (name "2" (effects (font (size 1.27 1.27))))
  864. (number "2" (effects (font (size 1.27 1.27))))
  865. )
  866. (pin passive line (at 3.81 0 180) (length 1.27)
  867. (name "3" (effects (font (size 1.27 1.27))))
  868. (number "3" (effects (font (size 1.27 1.27))))
  869. )
  870. (pin passive line (at 0 -5.08 90) (length 1.27)
  871. (name "4" (effects (font (size 1.27 1.27))))
  872. (number "4" (effects (font (size 1.27 1.27))))
  873. )
  874. )
  875. )
  876. (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
  877. (property "Reference" "D" (id 0) (at 0 2.54 0)
  878. (effects (font (size 1.27 1.27)))
  879. )
  880. (property "Value" "LED" (id 1) (at 0 -2.54 0)
  881. (effects (font (size 1.27 1.27)))
  882. )
  883. (property "Footprint" "" (id 2) (at 0 0 0)
  884. (effects (font (size 1.27 1.27)) hide)
  885. )
  886. (property "Datasheet" "~" (id 3) (at 0 0 0)
  887. (effects (font (size 1.27 1.27)) hide)
  888. )
  889. (property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
  890. (effects (font (size 1.27 1.27)) hide)
  891. )
  892. (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
  893. (effects (font (size 1.27 1.27)) hide)
  894. )
  895. (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
  896. (effects (font (size 1.27 1.27)) hide)
  897. )
  898. (symbol "LED_0_1"
  899. (polyline
  900. (pts
  901. (xy -1.27 -1.27)
  902. (xy -1.27 1.27)
  903. )
  904. (stroke (width 0.254) (type default) (color 0 0 0 0))
  905. (fill (type none))
  906. )
  907. (polyline
  908. (pts
  909. (xy -1.27 0)
  910. (xy 1.27 0)
  911. )
  912. (stroke (width 0) (type default) (color 0 0 0 0))
  913. (fill (type none))
  914. )
  915. (polyline
  916. (pts
  917. (xy 1.27 -1.27)
  918. (xy 1.27 1.27)
  919. (xy -1.27 0)
  920. (xy 1.27 -1.27)
  921. )
  922. (stroke (width 0.254) (type default) (color 0 0 0 0))
  923. (fill (type none))
  924. )
  925. (polyline
  926. (pts
  927. (xy -3.048 -0.762)
  928. (xy -4.572 -2.286)
  929. (xy -3.81 -2.286)
  930. (xy -4.572 -2.286)
  931. (xy -4.572 -1.524)
  932. )
  933. (stroke (width 0) (type default) (color 0 0 0 0))
  934. (fill (type none))
  935. )
  936. (polyline
  937. (pts
  938. (xy -1.778 -0.762)
  939. (xy -3.302 -2.286)
  940. (xy -2.54 -2.286)
  941. (xy -3.302 -2.286)
  942. (xy -3.302 -1.524)
  943. )
  944. (stroke (width 0) (type default) (color 0 0 0 0))
  945. (fill (type none))
  946. )
  947. )
  948. (symbol "LED_1_1"
  949. (pin passive line (at -3.81 0 0) (length 2.54)
  950. (name "K" (effects (font (size 1.27 1.27))))
  951. (number "1" (effects (font (size 1.27 1.27))))
  952. )
  953. (pin passive line (at 3.81 0 180) (length 2.54)
  954. (name "A" (effects (font (size 1.27 1.27))))
  955. (number "2" (effects (font (size 1.27 1.27))))
  956. )
  957. )
  958. )
  959. (symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  960. (property "Reference" "F" (id 0) (at -2.54 0 90)
  961. (effects (font (size 1.27 1.27)))
  962. )
  963. (property "Value" "Polyfuse" (id 1) (at 2.54 0 90)
  964. (effects (font (size 1.27 1.27)))
  965. )
  966. (property "Footprint" "" (id 2) (at 1.27 -5.08 0)
  967. (effects (font (size 1.27 1.27)) (justify left) hide)
  968. )
  969. (property "Datasheet" "~" (id 3) (at 0 0 0)
  970. (effects (font (size 1.27 1.27)) hide)
  971. )
  972. (property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (id 4) (at 0 0 0)
  973. (effects (font (size 1.27 1.27)) hide)
  974. )
  975. (property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (id 5) (at 0 0 0)
  976. (effects (font (size 1.27 1.27)) hide)
  977. )
  978. (property "ki_fp_filters" "*polyfuse* *PTC*" (id 6) (at 0 0 0)
  979. (effects (font (size 1.27 1.27)) hide)
  980. )
  981. (symbol "Polyfuse_0_1"
  982. (rectangle (start -0.762 2.54) (end 0.762 -2.54)
  983. (stroke (width 0.254) (type default) (color 0 0 0 0))
  984. (fill (type none))
  985. )
  986. (polyline
  987. (pts
  988. (xy 0 2.54)
  989. (xy 0 -2.54)
  990. )
  991. (stroke (width 0) (type default) (color 0 0 0 0))
  992. (fill (type none))
  993. )
  994. (polyline
  995. (pts
  996. (xy -1.524 2.54)
  997. (xy -1.524 1.524)
  998. (xy 1.524 -1.524)
  999. (xy 1.524 -2.54)
  1000. )
  1001. (stroke (width 0) (type default) (color 0 0 0 0))
  1002. (fill (type none))
  1003. )
  1004. )
  1005. (symbol "Polyfuse_1_1"
  1006. (pin passive line (at 0 3.81 270) (length 1.27)
  1007. (name "~" (effects (font (size 1.27 1.27))))
  1008. (number "1" (effects (font (size 1.27 1.27))))
  1009. )
  1010. (pin passive line (at 0 -3.81 90) (length 1.27)
  1011. (name "~" (effects (font (size 1.27 1.27))))
  1012. (number "2" (effects (font (size 1.27 1.27))))
  1013. )
  1014. )
  1015. )
  1016. (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  1017. (property "Reference" "R" (id 0) (at 2.032 0 90)
  1018. (effects (font (size 1.27 1.27)))
  1019. )
  1020. (property "Value" "R" (id 1) (at 0 0 90)
  1021. (effects (font (size 1.27 1.27)))
  1022. )
  1023. (property "Footprint" "" (id 2) (at -1.778 0 90)
  1024. (effects (font (size 1.27 1.27)) hide)
  1025. )
  1026. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1027. (effects (font (size 1.27 1.27)) hide)
  1028. )
  1029. (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
  1030. (effects (font (size 1.27 1.27)) hide)
  1031. )
  1032. (property "ki_description" "Resistor" (id 5) (at 0 0 0)
  1033. (effects (font (size 1.27 1.27)) hide)
  1034. )
  1035. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1036. (effects (font (size 1.27 1.27)) hide)
  1037. )
  1038. (symbol "R_0_1"
  1039. (rectangle (start -1.016 -2.54) (end 1.016 2.54)
  1040. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1041. (fill (type none))
  1042. )
  1043. )
  1044. (symbol "R_1_1"
  1045. (pin passive line (at 0 3.81 270) (length 1.27)
  1046. (name "~" (effects (font (size 1.27 1.27))))
  1047. (number "1" (effects (font (size 1.27 1.27))))
  1048. )
  1049. (pin passive line (at 0 -3.81 90) (length 1.27)
  1050. (name "~" (effects (font (size 1.27 1.27))))
  1051. (number "2" (effects (font (size 1.27 1.27))))
  1052. )
  1053. )
  1054. )
  1055. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  1056. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  1057. (effects (font (size 1.27 1.27)) (justify left))
  1058. )
  1059. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  1060. (effects (font (size 1.27 1.27)) (justify left))
  1061. )
  1062. (property "Footprint" "" (id 2) (at 0 0 0)
  1063. (effects (font (size 1.27 1.27)) hide)
  1064. )
  1065. (property "Datasheet" "~" (id 3) (at 0 0 0)
  1066. (effects (font (size 1.27 1.27)) hide)
  1067. )
  1068. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  1069. (effects (font (size 1.27 1.27)) hide)
  1070. )
  1071. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  1072. (effects (font (size 1.27 1.27)) hide)
  1073. )
  1074. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  1075. (effects (font (size 1.27 1.27)) hide)
  1076. )
  1077. (symbol "R_Small_0_1"
  1078. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  1079. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  1080. (fill (type none))
  1081. )
  1082. )
  1083. (symbol "R_Small_1_1"
  1084. (pin passive line (at 0 2.54 270) (length 0.762)
  1085. (name "~" (effects (font (size 1.27 1.27))))
  1086. (number "1" (effects (font (size 1.27 1.27))))
  1087. )
  1088. (pin passive line (at 0 -2.54 90) (length 0.762)
  1089. (name "~" (effects (font (size 1.27 1.27))))
  1090. (number "2" (effects (font (size 1.27 1.27))))
  1091. )
  1092. )
  1093. )
  1094. (symbol "Power_Protection:USBLC6-2SC6" (pin_names hide) (in_bom yes) (on_board yes)
  1095. (property "Reference" "U" (id 0) (at 2.54 8.89 0)
  1096. (effects (font (size 1.27 1.27)) (justify left))
  1097. )
  1098. (property "Value" "USBLC6-2SC6" (id 1) (at 2.54 -8.89 0)
  1099. (effects (font (size 1.27 1.27)) (justify left))
  1100. )
  1101. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 0 -12.7 0)
  1102. (effects (font (size 1.27 1.27)) hide)
  1103. )
  1104. (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (id 3) (at 5.08 8.89 0)
  1105. (effects (font (size 1.27 1.27)) hide)
  1106. )
  1107. (property "ki_keywords" "usb ethernet video" (id 4) (at 0 0 0)
  1108. (effects (font (size 1.27 1.27)) hide)
  1109. )
  1110. (property "ki_description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6" (id 5) (at 0 0 0)
  1111. (effects (font (size 1.27 1.27)) hide)
  1112. )
  1113. (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
  1114. (effects (font (size 1.27 1.27)) hide)
  1115. )
  1116. (symbol "USBLC6-2SC6_0_1"
  1117. (rectangle (start -7.62 -7.62) (end 7.62 7.62)
  1118. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1119. (fill (type background))
  1120. )
  1121. (circle (center -5.08 0) (radius 0.254)
  1122. (stroke (width 0) (type default) (color 0 0 0 0))
  1123. (fill (type outline))
  1124. )
  1125. (circle (center -2.54 0) (radius 0.254)
  1126. (stroke (width 0) (type default) (color 0 0 0 0))
  1127. (fill (type outline))
  1128. )
  1129. (rectangle (start -2.54 6.35) (end 2.54 -6.35)
  1130. (stroke (width 0) (type default) (color 0 0 0 0))
  1131. (fill (type none))
  1132. )
  1133. (circle (center 0 -6.35) (radius 0.254)
  1134. (stroke (width 0) (type default) (color 0 0 0 0))
  1135. (fill (type outline))
  1136. )
  1137. (polyline
  1138. (pts
  1139. (xy -5.08 -2.54)
  1140. (xy -7.62 -2.54)
  1141. )
  1142. (stroke (width 0) (type default) (color 0 0 0 0))
  1143. (fill (type none))
  1144. )
  1145. (polyline
  1146. (pts
  1147. (xy -5.08 0)
  1148. (xy -5.08 -2.54)
  1149. )
  1150. (stroke (width 0) (type default) (color 0 0 0 0))
  1151. (fill (type none))
  1152. )
  1153. (polyline
  1154. (pts
  1155. (xy -5.08 2.54)
  1156. (xy -7.62 2.54)
  1157. )
  1158. (stroke (width 0) (type default) (color 0 0 0 0))
  1159. (fill (type none))
  1160. )
  1161. (polyline
  1162. (pts
  1163. (xy -1.524 -2.794)
  1164. (xy -3.556 -2.794)
  1165. )
  1166. (stroke (width 0) (type default) (color 0 0 0 0))
  1167. (fill (type none))
  1168. )
  1169. (polyline
  1170. (pts
  1171. (xy -1.524 4.826)
  1172. (xy -3.556 4.826)
  1173. )
  1174. (stroke (width 0) (type default) (color 0 0 0 0))
  1175. (fill (type none))
  1176. )
  1177. (polyline
  1178. (pts
  1179. (xy 0 -7.62)
  1180. (xy 0 -6.35)
  1181. )
  1182. (stroke (width 0) (type default) (color 0 0 0 0))
  1183. (fill (type none))
  1184. )
  1185. (polyline
  1186. (pts
  1187. (xy 0 -6.35)
  1188. (xy 0 1.27)
  1189. )
  1190. (stroke (width 0) (type default) (color 0 0 0 0))
  1191. (fill (type none))
  1192. )
  1193. (polyline
  1194. (pts
  1195. (xy 0 1.27)
  1196. (xy 0 6.35)
  1197. )
  1198. (stroke (width 0) (type default) (color 0 0 0 0))
  1199. (fill (type none))
  1200. )
  1201. (polyline
  1202. (pts
  1203. (xy 0 6.35)
  1204. (xy 0 7.62)
  1205. )
  1206. (stroke (width 0) (type default) (color 0 0 0 0))
  1207. (fill (type none))
  1208. )
  1209. (polyline
  1210. (pts
  1211. (xy 1.524 -2.794)
  1212. (xy 3.556 -2.794)
  1213. )
  1214. (stroke (width 0) (type default) (color 0 0 0 0))
  1215. (fill (type none))
  1216. )
  1217. (polyline
  1218. (pts
  1219. (xy 1.524 4.826)
  1220. (xy 3.556 4.826)
  1221. )
  1222. (stroke (width 0) (type default) (color 0 0 0 0))
  1223. (fill (type none))
  1224. )
  1225. (polyline
  1226. (pts
  1227. (xy 5.08 -2.54)
  1228. (xy 7.62 -2.54)
  1229. )
  1230. (stroke (width 0) (type default) (color 0 0 0 0))
  1231. (fill (type none))
  1232. )
  1233. (polyline
  1234. (pts
  1235. (xy 5.08 0)
  1236. (xy 5.08 -2.54)
  1237. )
  1238. (stroke (width 0) (type default) (color 0 0 0 0))
  1239. (fill (type none))
  1240. )
  1241. (polyline
  1242. (pts
  1243. (xy 5.08 2.54)
  1244. (xy 7.62 2.54)
  1245. )
  1246. (stroke (width 0) (type default) (color 0 0 0 0))
  1247. (fill (type none))
  1248. )
  1249. (polyline
  1250. (pts
  1251. (xy -2.54 0)
  1252. (xy -5.08 0)
  1253. (xy -5.08 2.54)
  1254. )
  1255. (stroke (width 0) (type default) (color 0 0 0 0))
  1256. (fill (type none))
  1257. )
  1258. (polyline
  1259. (pts
  1260. (xy 2.54 0)
  1261. (xy 5.08 0)
  1262. (xy 5.08 2.54)
  1263. )
  1264. (stroke (width 0) (type default) (color 0 0 0 0))
  1265. (fill (type none))
  1266. )
  1267. (polyline
  1268. (pts
  1269. (xy -3.556 -4.826)
  1270. (xy -1.524 -4.826)
  1271. (xy -2.54 -2.794)
  1272. (xy -3.556 -4.826)
  1273. )
  1274. (stroke (width 0) (type default) (color 0 0 0 0))
  1275. (fill (type none))
  1276. )
  1277. (polyline
  1278. (pts
  1279. (xy -3.556 2.794)
  1280. (xy -1.524 2.794)
  1281. (xy -2.54 4.826)
  1282. (xy -3.556 2.794)
  1283. )
  1284. (stroke (width 0) (type default) (color 0 0 0 0))
  1285. (fill (type none))
  1286. )
  1287. (polyline
  1288. (pts
  1289. (xy -1.016 -1.016)
  1290. (xy 1.016 -1.016)
  1291. (xy 0 1.016)
  1292. (xy -1.016 -1.016)
  1293. )
  1294. (stroke (width 0) (type default) (color 0 0 0 0))
  1295. (fill (type none))
  1296. )
  1297. (polyline
  1298. (pts
  1299. (xy 1.016 1.016)
  1300. (xy 0.762 1.016)
  1301. (xy -1.016 1.016)
  1302. (xy -1.016 0.508)
  1303. )
  1304. (stroke (width 0) (type default) (color 0 0 0 0))
  1305. (fill (type none))
  1306. )
  1307. (polyline
  1308. (pts
  1309. (xy 3.556 -4.826)
  1310. (xy 1.524 -4.826)
  1311. (xy 2.54 -2.794)
  1312. (xy 3.556 -4.826)
  1313. )
  1314. (stroke (width 0) (type default) (color 0 0 0 0))
  1315. (fill (type none))
  1316. )
  1317. (polyline
  1318. (pts
  1319. (xy 3.556 2.794)
  1320. (xy 1.524 2.794)
  1321. (xy 2.54 4.826)
  1322. (xy 3.556 2.794)
  1323. )
  1324. (stroke (width 0) (type default) (color 0 0 0 0))
  1325. (fill (type none))
  1326. )
  1327. (circle (center 0 6.35) (radius 0.254)
  1328. (stroke (width 0) (type default) (color 0 0 0 0))
  1329. (fill (type outline))
  1330. )
  1331. (circle (center 2.54 0) (radius 0.254)
  1332. (stroke (width 0) (type default) (color 0 0 0 0))
  1333. (fill (type outline))
  1334. )
  1335. (circle (center 5.08 0) (radius 0.254)
  1336. (stroke (width 0) (type default) (color 0 0 0 0))
  1337. (fill (type outline))
  1338. )
  1339. )
  1340. (symbol "USBLC6-2SC6_1_1"
  1341. (pin passive line (at -10.16 -2.54 0) (length 2.54)
  1342. (name "I/O1" (effects (font (size 1.27 1.27))))
  1343. (number "1" (effects (font (size 1.27 1.27))))
  1344. )
  1345. (pin passive line (at 0 -10.16 90) (length 2.54)
  1346. (name "GND" (effects (font (size 1.27 1.27))))
  1347. (number "2" (effects (font (size 1.27 1.27))))
  1348. )
  1349. (pin passive line (at 10.16 -2.54 180) (length 2.54)
  1350. (name "I/O2" (effects (font (size 1.27 1.27))))
  1351. (number "3" (effects (font (size 1.27 1.27))))
  1352. )
  1353. (pin passive line (at 10.16 2.54 180) (length 2.54)
  1354. (name "I/O2" (effects (font (size 1.27 1.27))))
  1355. (number "4" (effects (font (size 1.27 1.27))))
  1356. )
  1357. (pin passive line (at 0 10.16 270) (length 2.54)
  1358. (name "VBUS" (effects (font (size 1.27 1.27))))
  1359. (number "5" (effects (font (size 1.27 1.27))))
  1360. )
  1361. (pin passive line (at -10.16 2.54 0) (length 2.54)
  1362. (name "I/O1" (effects (font (size 1.27 1.27))))
  1363. (number "6" (effects (font (size 1.27 1.27))))
  1364. )
  1365. )
  1366. )
  1367. (symbol "Regulator_Linear:AMS1117-3.3" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
  1368. (property "Reference" "U" (id 0) (at -3.81 3.175 0)
  1369. (effects (font (size 1.27 1.27)))
  1370. )
  1371. (property "Value" "AMS1117-3.3" (id 1) (at 0 3.175 0)
  1372. (effects (font (size 1.27 1.27)) (justify left))
  1373. )
  1374. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
  1375. (effects (font (size 1.27 1.27)) hide)
  1376. )
  1377. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 2.54 -6.35 0)
  1378. (effects (font (size 1.27 1.27)) hide)
  1379. )
  1380. (property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
  1381. (effects (font (size 1.27 1.27)) hide)
  1382. )
  1383. (property "ki_description" "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223" (id 5) (at 0 0 0)
  1384. (effects (font (size 1.27 1.27)) hide)
  1385. )
  1386. (property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
  1387. (effects (font (size 1.27 1.27)) hide)
  1388. )
  1389. (symbol "AMS1117-3.3_0_1"
  1390. (rectangle (start -5.08 -5.08) (end 5.08 1.905)
  1391. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1392. (fill (type background))
  1393. )
  1394. )
  1395. (symbol "AMS1117-3.3_1_1"
  1396. (pin power_in line (at 0 -7.62 90) (length 2.54)
  1397. (name "GND" (effects (font (size 1.27 1.27))))
  1398. (number "1" (effects (font (size 1.27 1.27))))
  1399. )
  1400. (pin power_out line (at 7.62 0 180) (length 2.54)
  1401. (name "VO" (effects (font (size 1.27 1.27))))
  1402. (number "2" (effects (font (size 1.27 1.27))))
  1403. )
  1404. (pin power_in line (at -7.62 0 0) (length 2.54)
  1405. (name "VI" (effects (font (size 1.27 1.27))))
  1406. (number "3" (effects (font (size 1.27 1.27))))
  1407. )
  1408. )
  1409. )
  1410. (symbol "Z80ICE:ATF1508ASL-25AU100" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1411. (property "Reference" "U" (id 0) (at -17.78 71.12 0)
  1412. (effects (font (size 1.27 1.27)) (justify left bottom))
  1413. )
  1414. (property "Value" "ATF1508ASL-25AU100" (id 1) (at -17.145 -28.575 0)
  1415. (effects (font (size 1.27 1.27)) (justify left bottom))
  1416. )
  1417. (property "Footprint" "Package_LCC:PLCC-84_SMD-Socket" (id 2) (at 1.905 29.21 90)
  1418. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  1419. )
  1420. (property "Datasheet" "" (id 3) (at 0 0 0)
  1421. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  1422. )
  1423. (property "MANUFACTURER" "Microchip" (id 4) (at -3.81 3.175 0)
  1424. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  1425. )
  1426. (symbol "ATF1508ASL-25AU100_0_0"
  1427. (rectangle (start -17.78 71.12) (end 17.78 -26.035)
  1428. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1429. (fill (type background))
  1430. )
  1431. (pin bidirectional line (at -22.86 63.5 0) (length 5.08)
  1432. (name "I/1/GCLR" (effects (font (size 1.016 1.016))))
  1433. (number "1" (effects (font (size 1.016 1.016))))
  1434. )
  1435. (pin bidirectional line (at -22.86 45.72 0) (length 5.08)
  1436. (name "I/O/10" (effects (font (size 1.016 1.016))))
  1437. (number "10" (effects (font (size 1.016 1.016))))
  1438. )
  1439. (pin bidirectional line (at -22.86 43.18 0) (length 5.08)
  1440. (name "I/O/11" (effects (font (size 1.016 1.016))))
  1441. (number "11" (effects (font (size 1.016 1.016))))
  1442. )
  1443. (pin bidirectional line (at -22.86 40.64 0) (length 5.08)
  1444. (name "I/O/12/PD1" (effects (font (size 1.016 1.016))))
  1445. (number "12" (effects (font (size 1.016 1.016))))
  1446. )
  1447. (pin power_in line (at 0 76.2 270) (length 5.08)
  1448. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1449. (number "13" (effects (font (size 1.016 1.016))))
  1450. )
  1451. (pin bidirectional line (at -22.86 38.1 0) (length 5.08)
  1452. (name "I/O/14/TDI" (effects (font (size 1.016 1.016))))
  1453. (number "14" (effects (font (size 1.016 1.016))))
  1454. )
  1455. (pin bidirectional line (at -22.86 35.56 0) (length 5.08)
  1456. (name "I/O/15" (effects (font (size 1.016 1.016))))
  1457. (number "15" (effects (font (size 1.016 1.016))))
  1458. )
  1459. (pin bidirectional line (at -22.86 33.02 0) (length 5.08)
  1460. (name "I/O/16" (effects (font (size 1.016 1.016))))
  1461. (number "16" (effects (font (size 1.016 1.016))))
  1462. )
  1463. (pin bidirectional line (at -22.86 30.48 0) (length 5.08)
  1464. (name "I/O/17" (effects (font (size 1.016 1.016))))
  1465. (number "17" (effects (font (size 1.016 1.016))))
  1466. )
  1467. (pin bidirectional line (at -22.86 27.94 0) (length 5.08)
  1468. (name "I/O/18" (effects (font (size 1.016 1.016))))
  1469. (number "18" (effects (font (size 1.016 1.016))))
  1470. )
  1471. (pin power_in line (at -6.985 -31.115 90) (length 5.08)
  1472. (name "GND" (effects (font (size 1.016 1.016))))
  1473. (number "19" (effects (font (size 1.016 1.016))))
  1474. )
  1475. (pin bidirectional line (at -22.86 60.96 0) (length 5.08)
  1476. (name "I/2/OE2/GCLK2" (effects (font (size 1.016 1.016))))
  1477. (number "2" (effects (font (size 1.016 1.016))))
  1478. )
  1479. (pin bidirectional line (at -22.86 25.4 0) (length 5.08)
  1480. (name "I/O/20" (effects (font (size 1.016 1.016))))
  1481. (number "20" (effects (font (size 1.016 1.016))))
  1482. )
  1483. (pin bidirectional line (at -22.86 22.86 0) (length 5.08)
  1484. (name "I/O/21" (effects (font (size 1.016 1.016))))
  1485. (number "21" (effects (font (size 1.016 1.016))))
  1486. )
  1487. (pin bidirectional line (at -22.86 20.32 0) (length 5.08)
  1488. (name "I/O/22" (effects (font (size 1.016 1.016))))
  1489. (number "22" (effects (font (size 1.016 1.016))))
  1490. )
  1491. (pin bidirectional line (at -22.86 17.78 0) (length 5.08)
  1492. (name "I/O/23/TMS" (effects (font (size 1.016 1.016))))
  1493. (number "23" (effects (font (size 1.016 1.016))))
  1494. )
  1495. (pin bidirectional line (at -22.86 15.24 0) (length 5.08)
  1496. (name "I/O/24" (effects (font (size 1.016 1.016))))
  1497. (number "24" (effects (font (size 1.016 1.016))))
  1498. )
  1499. (pin bidirectional line (at -22.86 12.7 0) (length 5.08)
  1500. (name "I/O/25" (effects (font (size 1.016 1.016))))
  1501. (number "25" (effects (font (size 1.016 1.016))))
  1502. )
  1503. (pin power_in line (at -7.62 76.2 270) (length 5.08)
  1504. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1505. (number "26" (effects (font (size 1.016 1.016))))
  1506. )
  1507. (pin bidirectional line (at -22.86 10.16 0) (length 5.08)
  1508. (name "I/O/27" (effects (font (size 1.016 1.016))))
  1509. (number "27" (effects (font (size 1.016 1.016))))
  1510. )
  1511. (pin bidirectional line (at -22.86 7.62 0) (length 5.08)
  1512. (name "I/O/28" (effects (font (size 1.016 1.016))))
  1513. (number "28" (effects (font (size 1.016 1.016))))
  1514. )
  1515. (pin bidirectional line (at -22.86 5.08 0) (length 5.08)
  1516. (name "I/O/29" (effects (font (size 1.016 1.016))))
  1517. (number "29" (effects (font (size 1.016 1.016))))
  1518. )
  1519. (pin power_in line (at 8.89 76.2 270) (length 5.08)
  1520. (name "VCCINT" (effects (font (size 1.016 1.016))))
  1521. (number "3" (effects (font (size 1.016 1.016))))
  1522. )
  1523. (pin bidirectional line (at -22.86 2.54 0) (length 5.08)
  1524. (name "I/O/30" (effects (font (size 1.016 1.016))))
  1525. (number "30" (effects (font (size 1.016 1.016))))
  1526. )
  1527. (pin bidirectional line (at -22.86 0 0) (length 5.08)
  1528. (name "I/O/31" (effects (font (size 1.016 1.016))))
  1529. (number "31" (effects (font (size 1.016 1.016))))
  1530. )
  1531. (pin power_in line (at -5.08 -31.115 90) (length 5.08)
  1532. (name "GND" (effects (font (size 1.016 1.016))))
  1533. (number "32" (effects (font (size 1.016 1.016))))
  1534. )
  1535. (pin bidirectional line (at -22.86 -2.54 0) (length 5.08)
  1536. (name "I/O/33" (effects (font (size 1.016 1.016))))
  1537. (number "33" (effects (font (size 1.016 1.016))))
  1538. )
  1539. (pin bidirectional line (at -22.86 -5.08 0) (length 5.08)
  1540. (name "I/O/34" (effects (font (size 1.016 1.016))))
  1541. (number "34" (effects (font (size 1.016 1.016))))
  1542. )
  1543. (pin bidirectional line (at -22.86 -7.62 0) (length 5.08)
  1544. (name "I/O/35" (effects (font (size 1.016 1.016))))
  1545. (number "35" (effects (font (size 1.016 1.016))))
  1546. )
  1547. (pin bidirectional line (at -22.86 -10.16 0) (length 5.08)
  1548. (name "I/O/36" (effects (font (size 1.016 1.016))))
  1549. (number "36" (effects (font (size 1.016 1.016))))
  1550. )
  1551. (pin bidirectional line (at -22.86 -12.7 0) (length 5.08)
  1552. (name "I/O/37" (effects (font (size 1.016 1.016))))
  1553. (number "37" (effects (font (size 1.016 1.016))))
  1554. )
  1555. (pin power_in line (at -5.715 76.2 270) (length 5.08)
  1556. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1557. (number "38" (effects (font (size 1.016 1.016))))
  1558. )
  1559. (pin bidirectional line (at -22.86 -15.24 0) (length 5.08)
  1560. (name "I/O/39" (effects (font (size 1.016 1.016))))
  1561. (number "39" (effects (font (size 1.016 1.016))))
  1562. )
  1563. (pin bidirectional line (at -22.86 58.42 0) (length 5.08)
  1564. (name "I/O/4" (effects (font (size 1.016 1.016))))
  1565. (number "4" (effects (font (size 1.016 1.016))))
  1566. )
  1567. (pin bidirectional line (at -22.86 -17.78 0) (length 5.08)
  1568. (name "I/O/40" (effects (font (size 1.016 1.016))))
  1569. (number "40" (effects (font (size 1.016 1.016))))
  1570. )
  1571. (pin bidirectional line (at -22.86 -20.32 0) (length 5.08)
  1572. (name "I/O/41" (effects (font (size 1.016 1.016))))
  1573. (number "41" (effects (font (size 1.016 1.016))))
  1574. )
  1575. (pin power_in line (at -3.175 -31.115 90) (length 5.08)
  1576. (name "GND" (effects (font (size 1.016 1.016))))
  1577. (number "42" (effects (font (size 1.016 1.016))))
  1578. )
  1579. (pin power_in line (at 6.985 76.2 270) (length 5.08)
  1580. (name "VCCINT" (effects (font (size 1.016 1.016))))
  1581. (number "43" (effects (font (size 1.016 1.016))))
  1582. )
  1583. (pin bidirectional line (at 22.86 -20.32 180) (length 5.08)
  1584. (name "I/O/44" (effects (font (size 1.016 1.016))))
  1585. (number "44" (effects (font (size 1.016 1.016))))
  1586. )
  1587. (pin bidirectional line (at 22.86 -17.78 180) (length 5.08)
  1588. (name "I/O/45/PD2" (effects (font (size 1.016 1.016))))
  1589. (number "45" (effects (font (size 1.016 1.016))))
  1590. )
  1591. (pin bidirectional line (at 22.86 -15.24 180) (length 5.08)
  1592. (name "I/O/46" (effects (font (size 1.016 1.016))))
  1593. (number "46" (effects (font (size 1.016 1.016))))
  1594. )
  1595. (pin power_in line (at 6.35 -31.115 90) (length 5.08)
  1596. (name "GND" (effects (font (size 1.016 1.016))))
  1597. (number "47" (effects (font (size 1.016 1.016))))
  1598. )
  1599. (pin bidirectional line (at 22.86 -12.7 180) (length 5.08)
  1600. (name "I/O/48" (effects (font (size 1.016 1.016))))
  1601. (number "48" (effects (font (size 1.016 1.016))))
  1602. )
  1603. (pin bidirectional line (at 22.86 -10.16 180) (length 5.08)
  1604. (name "I/O/49" (effects (font (size 1.016 1.016))))
  1605. (number "49" (effects (font (size 1.016 1.016))))
  1606. )
  1607. (pin bidirectional line (at -22.86 55.88 0) (length 5.08)
  1608. (name "I/O/5" (effects (font (size 1.016 1.016))))
  1609. (number "5" (effects (font (size 1.016 1.016))))
  1610. )
  1611. (pin bidirectional line (at 22.86 -7.62 180) (length 5.08)
  1612. (name "I/O/50" (effects (font (size 1.016 1.016))))
  1613. (number "50" (effects (font (size 1.016 1.016))))
  1614. )
  1615. (pin bidirectional line (at 22.86 -5.08 180) (length 5.08)
  1616. (name "I/O/51" (effects (font (size 1.016 1.016))))
  1617. (number "51" (effects (font (size 1.016 1.016))))
  1618. )
  1619. (pin bidirectional line (at 22.86 -2.54 180) (length 5.08)
  1620. (name "I/O/52" (effects (font (size 1.016 1.016))))
  1621. (number "52" (effects (font (size 1.016 1.016))))
  1622. )
  1623. (pin power_in line (at -3.81 76.2 270) (length 5.08)
  1624. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1625. (number "53" (effects (font (size 1.016 1.016))))
  1626. )
  1627. (pin bidirectional line (at 22.86 0 180) (length 5.08)
  1628. (name "I/O/54" (effects (font (size 1.016 1.016))))
  1629. (number "54" (effects (font (size 1.016 1.016))))
  1630. )
  1631. (pin bidirectional line (at 22.86 2.54 180) (length 5.08)
  1632. (name "I/O/55" (effects (font (size 1.016 1.016))))
  1633. (number "55" (effects (font (size 1.016 1.016))))
  1634. )
  1635. (pin bidirectional line (at 22.86 5.08 180) (length 5.08)
  1636. (name "I/O/56" (effects (font (size 1.016 1.016))))
  1637. (number "56" (effects (font (size 1.016 1.016))))
  1638. )
  1639. (pin bidirectional line (at 22.86 7.62 180) (length 5.08)
  1640. (name "I/O/57" (effects (font (size 1.016 1.016))))
  1641. (number "57" (effects (font (size 1.016 1.016))))
  1642. )
  1643. (pin bidirectional line (at 22.86 10.16 180) (length 5.08)
  1644. (name "I/O/58" (effects (font (size 1.016 1.016))))
  1645. (number "58" (effects (font (size 1.016 1.016))))
  1646. )
  1647. (pin power_in line (at 0.635 -31.115 90) (length 5.08)
  1648. (name "GND" (effects (font (size 1.016 1.016))))
  1649. (number "59" (effects (font (size 1.016 1.016))))
  1650. )
  1651. (pin bidirectional line (at -22.86 53.34 0) (length 5.08)
  1652. (name "I/O/6" (effects (font (size 1.016 1.016))))
  1653. (number "6" (effects (font (size 1.016 1.016))))
  1654. )
  1655. (pin bidirectional line (at 22.86 12.7 180) (length 5.08)
  1656. (name "I/O/60" (effects (font (size 1.016 1.016))))
  1657. (number "60" (effects (font (size 1.016 1.016))))
  1658. )
  1659. (pin bidirectional line (at 22.86 15.24 180) (length 5.08)
  1660. (name "I/O/61" (effects (font (size 1.016 1.016))))
  1661. (number "61" (effects (font (size 1.016 1.016))))
  1662. )
  1663. (pin bidirectional clock (at 22.86 17.78 180) (length 5.08)
  1664. (name "I/O/62/TCK" (effects (font (size 1.016 1.016))))
  1665. (number "62" (effects (font (size 1.016 1.016))))
  1666. )
  1667. (pin bidirectional line (at 22.86 20.32 180) (length 5.08)
  1668. (name "I/O/63" (effects (font (size 1.016 1.016))))
  1669. (number "63" (effects (font (size 1.016 1.016))))
  1670. )
  1671. (pin bidirectional line (at 22.86 22.86 180) (length 5.08)
  1672. (name "I/O/64" (effects (font (size 1.016 1.016))))
  1673. (number "64" (effects (font (size 1.016 1.016))))
  1674. )
  1675. (pin bidirectional line (at 22.86 25.4 180) (length 5.08)
  1676. (name "I/O/65" (effects (font (size 1.016 1.016))))
  1677. (number "65" (effects (font (size 1.016 1.016))))
  1678. )
  1679. (pin power_in line (at -1.905 76.2 270) (length 5.08)
  1680. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1681. (number "66" (effects (font (size 1.016 1.016))))
  1682. )
  1683. (pin bidirectional line (at 22.86 27.94 180) (length 5.08)
  1684. (name "I/O/67" (effects (font (size 1.016 1.016))))
  1685. (number "67" (effects (font (size 1.016 1.016))))
  1686. )
  1687. (pin bidirectional line (at 22.86 30.48 180) (length 5.08)
  1688. (name "I/O/68" (effects (font (size 1.016 1.016))))
  1689. (number "68" (effects (font (size 1.016 1.016))))
  1690. )
  1691. (pin bidirectional line (at 22.86 33.02 180) (length 5.08)
  1692. (name "I/O/69" (effects (font (size 1.016 1.016))))
  1693. (number "69" (effects (font (size 1.016 1.016))))
  1694. )
  1695. (pin power_in line (at 4.445 -31.115 90) (length 5.08)
  1696. (name "GND" (effects (font (size 1.016 1.016))))
  1697. (number "7" (effects (font (size 1.016 1.016))))
  1698. )
  1699. (pin bidirectional line (at 22.86 35.56 180) (length 5.08)
  1700. (name "I/O/70" (effects (font (size 1.016 1.016))))
  1701. (number "70" (effects (font (size 1.016 1.016))))
  1702. )
  1703. (pin bidirectional line (at 22.86 38.1 180) (length 5.08)
  1704. (name "I/O/71/TDO" (effects (font (size 1.016 1.016))))
  1705. (number "71" (effects (font (size 1.016 1.016))))
  1706. )
  1707. (pin power_in line (at 2.54 -31.115 90) (length 5.08)
  1708. (name "GND" (effects (font (size 1.016 1.016))))
  1709. (number "72" (effects (font (size 1.016 1.016))))
  1710. )
  1711. (pin bidirectional line (at 22.86 40.64 180) (length 5.08)
  1712. (name "I/O/73" (effects (font (size 1.016 1.016))))
  1713. (number "73" (effects (font (size 1.016 1.016))))
  1714. )
  1715. (pin bidirectional line (at 22.86 43.18 180) (length 5.08)
  1716. (name "I/O/74" (effects (font (size 1.016 1.016))))
  1717. (number "74" (effects (font (size 1.016 1.016))))
  1718. )
  1719. (pin bidirectional line (at 22.86 45.72 180) (length 5.08)
  1720. (name "I/O/75" (effects (font (size 1.016 1.016))))
  1721. (number "75" (effects (font (size 1.016 1.016))))
  1722. )
  1723. (pin bidirectional line (at 22.86 48.26 180) (length 5.08)
  1724. (name "I/O/76" (effects (font (size 1.016 1.016))))
  1725. (number "76" (effects (font (size 1.016 1.016))))
  1726. )
  1727. (pin bidirectional line (at 22.86 50.8 180) (length 5.08)
  1728. (name "I/O/77" (effects (font (size 1.016 1.016))))
  1729. (number "77" (effects (font (size 1.016 1.016))))
  1730. )
  1731. (pin power_in line (at 1.905 76.2 270) (length 5.08)
  1732. (name "VCCIO" (effects (font (size 1.016 1.016))))
  1733. (number "78" (effects (font (size 1.016 1.016))))
  1734. )
  1735. (pin bidirectional line (at 22.86 53.34 180) (length 5.08)
  1736. (name "I/O/79" (effects (font (size 1.016 1.016))))
  1737. (number "79" (effects (font (size 1.016 1.016))))
  1738. )
  1739. (pin bidirectional line (at -22.86 50.8 0) (length 5.08)
  1740. (name "I/O/8" (effects (font (size 1.016 1.016))))
  1741. (number "8" (effects (font (size 1.016 1.016))))
  1742. )
  1743. (pin bidirectional line (at 22.86 55.88 180) (length 5.08)
  1744. (name "I/O/80" (effects (font (size 1.016 1.016))))
  1745. (number "80" (effects (font (size 1.016 1.016))))
  1746. )
  1747. (pin bidirectional line (at 22.86 58.42 180) (length 5.08)
  1748. (name "I/O/81/GCLK3" (effects (font (size 1.016 1.016))))
  1749. (number "81" (effects (font (size 1.016 1.016))))
  1750. )
  1751. (pin power_in line (at -1.27 -31.115 90) (length 5.08)
  1752. (name "GND" (effects (font (size 1.016 1.016))))
  1753. (number "82" (effects (font (size 1.016 1.016))))
  1754. )
  1755. (pin bidirectional line (at 22.86 60.96 180) (length 5.08)
  1756. (name "I/83/GCLK1" (effects (font (size 1.016 1.016))))
  1757. (number "83" (effects (font (size 1.016 1.016))))
  1758. )
  1759. (pin bidirectional line (at 22.86 63.5 180) (length 5.08)
  1760. (name "I/84/OE1" (effects (font (size 1.016 1.016))))
  1761. (number "84" (effects (font (size 1.016 1.016))))
  1762. )
  1763. (pin bidirectional line (at -22.86 48.26 0) (length 5.08)
  1764. (name "I/O/9" (effects (font (size 1.016 1.016))))
  1765. (number "9" (effects (font (size 1.016 1.016))))
  1766. )
  1767. )
  1768. )
  1769. (symbol "Z80ICE:CY7C1019D-10VXIT" (in_bom yes) (on_board yes)
  1770. (property "Reference" "U" (id 0) (at -10.16 31.75 0)
  1771. (effects (font (size 1.27 1.27)))
  1772. )
  1773. (property "Value" "CY7C1019D-10VXIT" (id 1) (at 12.7 31.75 0)
  1774. (effects (font (size 1.27 1.27)))
  1775. )
  1776. (property "Footprint" "Package_SO:SOJ-36_10.16x23.49mm_P1.27mm" (id 2) (at -12.7 29.21 0)
  1777. (effects (font (size 1.27 1.27)) hide)
  1778. )
  1779. (property "Datasheet" "https://www.mouser.se/datasheet/2/196/CYPRS13494_1-3003573.pdf" (id 3) (at 0 0 0)
  1780. (effects (font (size 1.27 1.27)) hide)
  1781. )
  1782. (property "ki_keywords" "SRAM MEMORY" (id 4) (at 0 0 0)
  1783. (effects (font (size 1.27 1.27)) hide)
  1784. )
  1785. (property "ki_description" "1Mb 10ns 128K x 8 Fast Async SRAM,SOJ32" (id 5) (at 0 0 0)
  1786. (effects (font (size 1.27 1.27)) hide)
  1787. )
  1788. (property "ki_fp_filters" "TSOP*10.16x18.41mm*P0.8mm*" (id 6) (at 0 0 0)
  1789. (effects (font (size 1.27 1.27)) hide)
  1790. )
  1791. (symbol "CY7C1019D-10VXIT_0_1"
  1792. (rectangle (start -12.7 30.48) (end 12.7 -30.48)
  1793. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1794. (fill (type background))
  1795. )
  1796. )
  1797. (symbol "CY7C1019D-10VXIT_1_1"
  1798. (pin input line (at -15.24 27.305 0) (length 2.54)
  1799. (name "A0" (effects (font (size 1.27 1.27))))
  1800. (number "1" (effects (font (size 1.27 1.27))))
  1801. )
  1802. (pin bidirectional line (at 15.24 22.86 180) (length 2.54)
  1803. (name "IO2" (effects (font (size 1.27 1.27))))
  1804. (number "10" (effects (font (size 1.27 1.27))))
  1805. )
  1806. (pin bidirectional line (at 15.24 20.32 180) (length 2.54)
  1807. (name "IO3" (effects (font (size 1.27 1.27))))
  1808. (number "11" (effects (font (size 1.27 1.27))))
  1809. )
  1810. (pin input line (at -15.24 -22.225 0) (length 2.54)
  1811. (name "~{WE}" (effects (font (size 1.27 1.27))))
  1812. (number "12" (effects (font (size 1.27 1.27))))
  1813. )
  1814. (pin input line (at -15.24 17.145 0) (length 2.54)
  1815. (name "A4" (effects (font (size 1.27 1.27))))
  1816. (number "13" (effects (font (size 1.27 1.27))))
  1817. )
  1818. (pin input line (at -15.24 14.605 0) (length 2.54)
  1819. (name "A5" (effects (font (size 1.27 1.27))))
  1820. (number "14" (effects (font (size 1.27 1.27))))
  1821. )
  1822. (pin input line (at -15.24 12.065 0) (length 2.54)
  1823. (name "A6" (effects (font (size 1.27 1.27))))
  1824. (number "15" (effects (font (size 1.27 1.27))))
  1825. )
  1826. (pin input line (at -15.24 9.525 0) (length 2.54)
  1827. (name "A7" (effects (font (size 1.27 1.27))))
  1828. (number "16" (effects (font (size 1.27 1.27))))
  1829. )
  1830. (pin input line (at -15.24 6.985 0) (length 2.54)
  1831. (name "A8" (effects (font (size 1.27 1.27))))
  1832. (number "17" (effects (font (size 1.27 1.27))))
  1833. )
  1834. (pin input line (at -15.24 4.445 0) (length 2.54)
  1835. (name "A9" (effects (font (size 1.27 1.27))))
  1836. (number "18" (effects (font (size 1.27 1.27))))
  1837. )
  1838. (pin input line (at -15.24 1.905 0) (length 2.54)
  1839. (name "A10" (effects (font (size 1.27 1.27))))
  1840. (number "19" (effects (font (size 1.27 1.27))))
  1841. )
  1842. (pin input line (at -15.24 24.765 0) (length 2.54)
  1843. (name "A1" (effects (font (size 1.27 1.27))))
  1844. (number "2" (effects (font (size 1.27 1.27))))
  1845. )
  1846. (pin input line (at -15.24 -0.635 0) (length 2.54)
  1847. (name "A11" (effects (font (size 1.27 1.27))))
  1848. (number "20" (effects (font (size 1.27 1.27))))
  1849. )
  1850. (pin input line (at -15.24 -3.175 0) (length 2.54)
  1851. (name "A12" (effects (font (size 1.27 1.27))))
  1852. (number "21" (effects (font (size 1.27 1.27))))
  1853. )
  1854. (pin bidirectional line (at 15.24 17.78 180) (length 2.54)
  1855. (name "IO4" (effects (font (size 1.27 1.27))))
  1856. (number "22" (effects (font (size 1.27 1.27))))
  1857. )
  1858. (pin bidirectional line (at 15.24 15.24 180) (length 2.54)
  1859. (name "IO5" (effects (font (size 1.27 1.27))))
  1860. (number "23" (effects (font (size 1.27 1.27))))
  1861. )
  1862. (pin power_in line (at -1.27 33.02 270) (length 2.54)
  1863. (name "VCC" (effects (font (size 1.27 1.27))))
  1864. (number "24" (effects (font (size 1.27 1.27))))
  1865. )
  1866. (pin power_in line (at 1.27 -33.02 90) (length 2.54)
  1867. (name "VSS" (effects (font (size 1.27 1.27))))
  1868. (number "25" (effects (font (size 1.27 1.27))))
  1869. )
  1870. (pin bidirectional line (at 15.24 12.7 180) (length 2.54)
  1871. (name "IO6" (effects (font (size 1.27 1.27))))
  1872. (number "26" (effects (font (size 1.27 1.27))))
  1873. )
  1874. (pin bidirectional line (at 15.24 10.16 180) (length 2.54)
  1875. (name "IO7" (effects (font (size 1.27 1.27))))
  1876. (number "27" (effects (font (size 1.27 1.27))))
  1877. )
  1878. (pin input line (at -15.24 -24.765 0) (length 2.54)
  1879. (name "~{OE}" (effects (font (size 1.27 1.27))))
  1880. (number "28" (effects (font (size 1.27 1.27))))
  1881. )
  1882. (pin input line (at -15.24 -5.715 0) (length 2.54)
  1883. (name "A13" (effects (font (size 1.27 1.27))))
  1884. (number "29" (effects (font (size 1.27 1.27))))
  1885. )
  1886. (pin input line (at -15.24 22.225 0) (length 2.54)
  1887. (name "A2" (effects (font (size 1.27 1.27))))
  1888. (number "3" (effects (font (size 1.27 1.27))))
  1889. )
  1890. (pin input line (at -15.24 -8.255 0) (length 2.54)
  1891. (name "A14" (effects (font (size 1.27 1.27))))
  1892. (number "30" (effects (font (size 1.27 1.27))))
  1893. )
  1894. (pin bidirectional line (at -15.24 -10.795 0) (length 2.54)
  1895. (name "A15" (effects (font (size 1.27 1.27))))
  1896. (number "31" (effects (font (size 1.27 1.27))))
  1897. )
  1898. (pin bidirectional line (at -15.24 -13.335 0) (length 2.54)
  1899. (name "A16" (effects (font (size 1.27 1.27))))
  1900. (number "32" (effects (font (size 1.27 1.27))))
  1901. )
  1902. (pin input line (at -15.24 19.685 0) (length 2.54)
  1903. (name "A3" (effects (font (size 1.27 1.27))))
  1904. (number "4" (effects (font (size 1.27 1.27))))
  1905. )
  1906. (pin input line (at -15.24 -27.305 0) (length 2.54)
  1907. (name "~{CE}" (effects (font (size 1.27 1.27))))
  1908. (number "5" (effects (font (size 1.27 1.27))))
  1909. )
  1910. (pin bidirectional line (at 15.24 27.94 180) (length 2.54)
  1911. (name "IO0" (effects (font (size 1.27 1.27))))
  1912. (number "6" (effects (font (size 1.27 1.27))))
  1913. )
  1914. (pin bidirectional line (at 15.24 25.4 180) (length 2.54)
  1915. (name "IO1" (effects (font (size 1.27 1.27))))
  1916. (number "7" (effects (font (size 1.27 1.27))))
  1917. )
  1918. (pin power_in line (at 1.27 33.02 270) (length 2.54)
  1919. (name "VCC" (effects (font (size 1.27 1.27))))
  1920. (number "8" (effects (font (size 1.27 1.27))))
  1921. )
  1922. (pin power_in line (at -1.905 -33.02 90) (length 2.54)
  1923. (name "VSS" (effects (font (size 1.27 1.27))))
  1924. (number "9" (effects (font (size 1.27 1.27))))
  1925. )
  1926. )
  1927. )
  1928. (symbol "Z80ICE:FT2232H-Interface_USB" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  1929. (property "Reference" "U4" (id 0) (at 22.86 53.34 0)
  1930. (effects (font (size 1.27 1.27)))
  1931. )
  1932. (property "Value" "FT2232H-Interface_USB" (id 1) (at 17.78 -54.61 0)
  1933. (effects (font (size 1.27 1.27)))
  1934. )
  1935. (property "Footprint" "Package_QFP:LQFP-64_10x10mm_P0.5mm" (id 2) (at 0 0 0)
  1936. (effects (font (size 1.27 1.27)) hide)
  1937. )
  1938. (property "Datasheet" "http://www.ftdichip.com/Products/ICs/FT2232H.html" (id 3) (at 0 0 0)
  1939. (effects (font (size 1.27 1.27)) hide)
  1940. )
  1941. (property "Mfr #" "FT2232HL-REEL" (id 4) (at 0 0 0)
  1942. (effects (font (size 1.27 1.27)) hide)
  1943. )
  1944. (property "LCSC #" "C27882" (id 5) (at 0 0 0)
  1945. (effects (font (size 1.27 1.27)) hide)
  1946. )
  1947. (property "ki_fp_filters" "QFN* LQFP*" (id 6) (at 0 0 0)
  1948. (effects (font (size 1.27 1.27)) hide)
  1949. )
  1950. (symbol "FT2232H-Interface_USB_0_1"
  1951. (rectangle (start -26.67 -52.07) (end 26.67 52.07)
  1952. (stroke (width 0.254) (type default) (color 0 0 0 0))
  1953. (fill (type background))
  1954. )
  1955. )
  1956. (symbol "FT2232H-Interface_USB_1_1"
  1957. (pin power_in line (at -10.16 -55.88 90) (length 3.81)
  1958. (name "GND" (effects (font (size 1.27 1.27))))
  1959. (number "1" (effects (font (size 1.27 1.27))))
  1960. )
  1961. (pin power_in line (at -15.24 -55.88 90) (length 3.81)
  1962. (name "AGND" (effects (font (size 1.27 1.27))))
  1963. (number "10" (effects (font (size 1.27 1.27))))
  1964. )
  1965. (pin power_in line (at -5.08 -55.88 90) (length 3.81)
  1966. (name "GND" (effects (font (size 1.27 1.27))))
  1967. (number "11" (effects (font (size 1.27 1.27))))
  1968. )
  1969. (pin power_in line (at -5.08 55.88 270) (length 3.81)
  1970. (name "VCORE" (effects (font (size 1.27 1.27))))
  1971. (number "12" (effects (font (size 1.27 1.27))))
  1972. )
  1973. (pin input line (at -30.48 -45.72 0) (length 3.81)
  1974. (name "TEST" (effects (font (size 1.27 1.27))))
  1975. (number "13" (effects (font (size 1.27 1.27))))
  1976. )
  1977. (pin input line (at -30.48 10.16 0) (length 3.81)
  1978. (name "~{RESET}" (effects (font (size 1.27 1.27))))
  1979. (number "14" (effects (font (size 1.27 1.27))))
  1980. )
  1981. (pin power_in line (at -2.54 -55.88 90) (length 3.81)
  1982. (name "GND" (effects (font (size 1.27 1.27))))
  1983. (number "15" (effects (font (size 1.27 1.27))))
  1984. )
  1985. (pin bidirectional line (at 30.48 48.26 180) (length 3.81)
  1986. (name "ADBUS0" (effects (font (size 1.27 1.27))))
  1987. (number "16" (effects (font (size 1.27 1.27))))
  1988. )
  1989. (pin bidirectional line (at 30.48 45.72 180) (length 3.81)
  1990. (name "ADBUS1" (effects (font (size 1.27 1.27))))
  1991. (number "17" (effects (font (size 1.27 1.27))))
  1992. )
  1993. (pin bidirectional line (at 30.48 43.18 180) (length 3.81)
  1994. (name "ADBUS2" (effects (font (size 1.27 1.27))))
  1995. (number "18" (effects (font (size 1.27 1.27))))
  1996. )
  1997. (pin bidirectional line (at 30.48 40.64 180) (length 3.81)
  1998. (name "ADBUS3" (effects (font (size 1.27 1.27))))
  1999. (number "19" (effects (font (size 1.27 1.27))))
  2000. )
  2001. (pin input line (at -30.48 -30.48 0) (length 3.81)
  2002. (name "OSCI" (effects (font (size 1.27 1.27))))
  2003. (number "2" (effects (font (size 1.27 1.27))))
  2004. )
  2005. (pin power_in line (at 5.08 55.88 270) (length 3.81)
  2006. (name "VCCIO" (effects (font (size 1.27 1.27))))
  2007. (number "20" (effects (font (size 1.27 1.27))))
  2008. )
  2009. (pin bidirectional line (at 30.48 38.1 180) (length 3.81)
  2010. (name "ADBUS4" (effects (font (size 1.27 1.27))))
  2011. (number "21" (effects (font (size 1.27 1.27))))
  2012. )
  2013. (pin bidirectional line (at 30.48 35.56 180) (length 3.81)
  2014. (name "ADBUS5" (effects (font (size 1.27 1.27))))
  2015. (number "22" (effects (font (size 1.27 1.27))))
  2016. )
  2017. (pin bidirectional line (at 30.48 33.02 180) (length 3.81)
  2018. (name "ADBUS6" (effects (font (size 1.27 1.27))))
  2019. (number "23" (effects (font (size 1.27 1.27))))
  2020. )
  2021. (pin bidirectional line (at 30.48 30.48 180) (length 3.81)
  2022. (name "ADBUS7" (effects (font (size 1.27 1.27))))
  2023. (number "24" (effects (font (size 1.27 1.27))))
  2024. )
  2025. (pin power_in line (at 0 -55.88 90) (length 3.81)
  2026. (name "GND" (effects (font (size 1.27 1.27))))
  2027. (number "25" (effects (font (size 1.27 1.27))))
  2028. )
  2029. (pin bidirectional line (at 30.48 25.4 180) (length 3.81)
  2030. (name "ACBUS0" (effects (font (size 1.27 1.27))))
  2031. (number "26" (effects (font (size 1.27 1.27))))
  2032. )
  2033. (pin bidirectional line (at 30.48 22.86 180) (length 3.81)
  2034. (name "ACBUS1" (effects (font (size 1.27 1.27))))
  2035. (number "27" (effects (font (size 1.27 1.27))))
  2036. )
  2037. (pin bidirectional line (at 30.48 20.32 180) (length 3.81)
  2038. (name "ACBUS2" (effects (font (size 1.27 1.27))))
  2039. (number "28" (effects (font (size 1.27 1.27))))
  2040. )
  2041. (pin bidirectional line (at 30.48 17.78 180) (length 3.81)
  2042. (name "ACBUS3" (effects (font (size 1.27 1.27))))
  2043. (number "29" (effects (font (size 1.27 1.27))))
  2044. )
  2045. (pin output line (at -30.48 -40.64 0) (length 3.81)
  2046. (name "OSCO" (effects (font (size 1.27 1.27))))
  2047. (number "3" (effects (font (size 1.27 1.27))))
  2048. )
  2049. (pin bidirectional line (at 30.48 15.24 180) (length 3.81)
  2050. (name "ACBUS4" (effects (font (size 1.27 1.27))))
  2051. (number "30" (effects (font (size 1.27 1.27))))
  2052. )
  2053. (pin power_in line (at 7.62 55.88 270) (length 3.81)
  2054. (name "VCCIO" (effects (font (size 1.27 1.27))))
  2055. (number "31" (effects (font (size 1.27 1.27))))
  2056. )
  2057. (pin bidirectional line (at 30.48 12.7 180) (length 3.81)
  2058. (name "ACBUS5" (effects (font (size 1.27 1.27))))
  2059. (number "32" (effects (font (size 1.27 1.27))))
  2060. )
  2061. (pin bidirectional line (at 30.48 10.16 180) (length 3.81)
  2062. (name "ACBUS6" (effects (font (size 1.27 1.27))))
  2063. (number "33" (effects (font (size 1.27 1.27))))
  2064. )
  2065. (pin bidirectional line (at 30.48 7.62 180) (length 3.81)
  2066. (name "ACBUS7" (effects (font (size 1.27 1.27))))
  2067. (number "34" (effects (font (size 1.27 1.27))))
  2068. )
  2069. (pin power_in line (at 2.54 -55.88 90) (length 3.81)
  2070. (name "GND" (effects (font (size 1.27 1.27))))
  2071. (number "35" (effects (font (size 1.27 1.27))))
  2072. )
  2073. (pin output line (at 30.48 -45.72 180) (length 3.81)
  2074. (name "~{SUSPEND}" (effects (font (size 1.27 1.27))))
  2075. (number "36" (effects (font (size 1.27 1.27))))
  2076. )
  2077. (pin power_in line (at -2.54 55.88 270) (length 3.81)
  2078. (name "VCORE" (effects (font (size 1.27 1.27))))
  2079. (number "37" (effects (font (size 1.27 1.27))))
  2080. )
  2081. (pin bidirectional line (at 30.48 2.54 180) (length 3.81)
  2082. (name "BDBUS0" (effects (font (size 1.27 1.27))))
  2083. (number "38" (effects (font (size 1.27 1.27))))
  2084. )
  2085. (pin bidirectional line (at 30.48 0 180) (length 3.81)
  2086. (name "BDBUS1" (effects (font (size 1.27 1.27))))
  2087. (number "39" (effects (font (size 1.27 1.27))))
  2088. )
  2089. (pin power_in line (at -12.7 55.88 270) (length 3.81)
  2090. (name "VPHY" (effects (font (size 1.27 1.27))))
  2091. (number "4" (effects (font (size 1.27 1.27))))
  2092. )
  2093. (pin bidirectional line (at 30.48 -2.54 180) (length 3.81)
  2094. (name "BDBUS2" (effects (font (size 1.27 1.27))))
  2095. (number "40" (effects (font (size 1.27 1.27))))
  2096. )
  2097. (pin bidirectional line (at 30.48 -5.08 180) (length 3.81)
  2098. (name "BDBUS3" (effects (font (size 1.27 1.27))))
  2099. (number "41" (effects (font (size 1.27 1.27))))
  2100. )
  2101. (pin power_in line (at 10.16 55.88 270) (length 3.81)
  2102. (name "VCCIO" (effects (font (size 1.27 1.27))))
  2103. (number "42" (effects (font (size 1.27 1.27))))
  2104. )
  2105. (pin bidirectional line (at 30.48 -7.62 180) (length 3.81)
  2106. (name "BDBUS4" (effects (font (size 1.27 1.27))))
  2107. (number "43" (effects (font (size 1.27 1.27))))
  2108. )
  2109. (pin bidirectional line (at 30.48 -10.16 180) (length 3.81)
  2110. (name "BDBUS5" (effects (font (size 1.27 1.27))))
  2111. (number "44" (effects (font (size 1.27 1.27))))
  2112. )
  2113. (pin bidirectional line (at 30.48 -12.7 180) (length 3.81)
  2114. (name "BDBUS6" (effects (font (size 1.27 1.27))))
  2115. (number "45" (effects (font (size 1.27 1.27))))
  2116. )
  2117. (pin bidirectional line (at 30.48 -15.24 180) (length 3.81)
  2118. (name "BDBUS7" (effects (font (size 1.27 1.27))))
  2119. (number "46" (effects (font (size 1.27 1.27))))
  2120. )
  2121. (pin power_in line (at 5.08 -55.88 90) (length 3.81)
  2122. (name "GND" (effects (font (size 1.27 1.27))))
  2123. (number "47" (effects (font (size 1.27 1.27))))
  2124. )
  2125. (pin bidirectional line (at 30.48 -20.32 180) (length 3.81)
  2126. (name "BCBUS0" (effects (font (size 1.27 1.27))))
  2127. (number "48" (effects (font (size 1.27 1.27))))
  2128. )
  2129. (pin power_out line (at -30.48 43.18 0) (length 3.81)
  2130. (name "VREGOUT" (effects (font (size 1.27 1.27))))
  2131. (number "49" (effects (font (size 1.27 1.27))))
  2132. )
  2133. (pin power_in line (at -7.62 -55.88 90) (length 3.81)
  2134. (name "GND" (effects (font (size 1.27 1.27))))
  2135. (number "5" (effects (font (size 1.27 1.27))))
  2136. )
  2137. (pin power_in line (at -30.48 48.26 0) (length 3.81)
  2138. (name "VREGIN" (effects (font (size 1.27 1.27))))
  2139. (number "50" (effects (font (size 1.27 1.27))))
  2140. )
  2141. (pin power_in line (at 7.62 -55.88 90) (length 3.81)
  2142. (name "GND" (effects (font (size 1.27 1.27))))
  2143. (number "51" (effects (font (size 1.27 1.27))))
  2144. )
  2145. (pin bidirectional line (at 30.48 -22.86 180) (length 3.81)
  2146. (name "BCBUS1" (effects (font (size 1.27 1.27))))
  2147. (number "52" (effects (font (size 1.27 1.27))))
  2148. )
  2149. (pin bidirectional line (at 30.48 -25.4 180) (length 3.81)
  2150. (name "BCBUS2" (effects (font (size 1.27 1.27))))
  2151. (number "53" (effects (font (size 1.27 1.27))))
  2152. )
  2153. (pin bidirectional line (at 30.48 -27.94 180) (length 3.81)
  2154. (name "BCBUS3" (effects (font (size 1.27 1.27))))
  2155. (number "54" (effects (font (size 1.27 1.27))))
  2156. )
  2157. (pin bidirectional line (at 30.48 -30.48 180) (length 3.81)
  2158. (name "BCBUS4" (effects (font (size 1.27 1.27))))
  2159. (number "55" (effects (font (size 1.27 1.27))))
  2160. )
  2161. (pin power_in line (at 12.7 55.88 270) (length 3.81)
  2162. (name "VCCIO" (effects (font (size 1.27 1.27))))
  2163. (number "56" (effects (font (size 1.27 1.27))))
  2164. )
  2165. (pin bidirectional line (at 30.48 -33.02 180) (length 3.81)
  2166. (name "BCBUS5" (effects (font (size 1.27 1.27))))
  2167. (number "57" (effects (font (size 1.27 1.27))))
  2168. )
  2169. (pin bidirectional line (at 30.48 -35.56 180) (length 3.81)
  2170. (name "BCBUS6" (effects (font (size 1.27 1.27))))
  2171. (number "58" (effects (font (size 1.27 1.27))))
  2172. )
  2173. (pin bidirectional line (at 30.48 -38.1 180) (length 3.81)
  2174. (name "BCBUS7" (effects (font (size 1.27 1.27))))
  2175. (number "59" (effects (font (size 1.27 1.27))))
  2176. )
  2177. (pin output line (at -30.48 15.24 0) (length 3.81)
  2178. (name "REF" (effects (font (size 1.27 1.27))))
  2179. (number "6" (effects (font (size 1.27 1.27))))
  2180. )
  2181. (pin output line (at 30.48 -43.18 180) (length 3.81)
  2182. (name "~{PWREN}" (effects (font (size 1.27 1.27))))
  2183. (number "60" (effects (font (size 1.27 1.27))))
  2184. )
  2185. (pin bidirectional line (at -30.48 -22.86 0) (length 3.81)
  2186. (name "EEDATA" (effects (font (size 1.27 1.27))))
  2187. (number "61" (effects (font (size 1.27 1.27))))
  2188. )
  2189. (pin output line (at -30.48 -20.32 0) (length 3.81)
  2190. (name "EECLK" (effects (font (size 1.27 1.27))))
  2191. (number "62" (effects (font (size 1.27 1.27))))
  2192. )
  2193. (pin output line (at -30.48 -17.78 0) (length 3.81)
  2194. (name "EECS" (effects (font (size 1.27 1.27))))
  2195. (number "63" (effects (font (size 1.27 1.27))))
  2196. )
  2197. (pin power_in line (at 0 55.88 270) (length 3.81)
  2198. (name "VCORE" (effects (font (size 1.27 1.27))))
  2199. (number "64" (effects (font (size 1.27 1.27))))
  2200. )
  2201. (pin bidirectional line (at -30.48 22.86 0) (length 3.81)
  2202. (name "DM" (effects (font (size 1.27 1.27))))
  2203. (number "7" (effects (font (size 1.27 1.27))))
  2204. )
  2205. (pin bidirectional line (at -30.48 20.32 0) (length 3.81)
  2206. (name "DP" (effects (font (size 1.27 1.27))))
  2207. (number "8" (effects (font (size 1.27 1.27))))
  2208. )
  2209. (pin input line (at -10.16 55.88 270) (length 3.81)
  2210. (name "VPLL" (effects (font (size 1.27 1.27))))
  2211. (number "9" (effects (font (size 1.27 1.27))))
  2212. )
  2213. )
  2214. )
  2215. (symbol "Z80ICE:HRO-TYPE-C-31-M-12" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  2216. (property "Reference" "USB1" (id 0) (at 0 30.5562 0)
  2217. (effects (font (size 1.524 1.524)))
  2218. )
  2219. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at 0 27.8638 0)
  2220. (effects (font (size 1.524 1.524)))
  2221. )
  2222. (property "Footprint" "Greaseweazle:HRO-TYPE-C-31-M-12" (id 2) (at 0 25.1714 0)
  2223. (effects (font (size 1.524 1.524)))
  2224. )
  2225. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at -17.78 1.27 0)
  2226. (effects (font (size 1.524 1.524)) hide)
  2227. )
  2228. (property "LCSC" "C165948" (id 4) (at 0 0 0)
  2229. (effects (font (size 1.27 1.27)) hide)
  2230. )
  2231. (symbol "HRO-TYPE-C-31-M-12_0_1"
  2232. (rectangle (start -11.43 15.24) (end -8.89 -17.78)
  2233. (stroke (width 0) (type default) (color 0 0 0 0))
  2234. (fill (type background))
  2235. )
  2236. (rectangle (start 0 -17.78) (end -8.89 15.24)
  2237. (stroke (width 0) (type default) (color 0 0 0 0))
  2238. (fill (type background))
  2239. )
  2240. )
  2241. (symbol "HRO-TYPE-C-31-M-12_1_1"
  2242. (pin input line (at 2.54 13.97 180) (length 2.54)
  2243. (name "GND" (effects (font (size 1.27 1.27))))
  2244. (number "1" (effects (font (size 1.27 1.27))))
  2245. )
  2246. (pin input line (at 2.54 -8.89 180) (length 2.54)
  2247. (name "CC2" (effects (font (size 1.27 1.27))))
  2248. (number "10" (effects (font (size 1.27 1.27))))
  2249. )
  2250. (pin input line (at 2.54 -11.43 180) (length 2.54)
  2251. (name "VBUS" (effects (font (size 1.27 1.27))))
  2252. (number "11" (effects (font (size 1.27 1.27))))
  2253. )
  2254. (pin input line (at 2.54 -13.97 180) (length 2.54)
  2255. (name "GND" (effects (font (size 1.27 1.27))))
  2256. (number "12" (effects (font (size 1.27 1.27))))
  2257. )
  2258. (pin input line (at 2.54 -16.51 180) (length 2.54)
  2259. (name "SHIELD" (effects (font (size 1.27 1.27))))
  2260. (number "13" (effects (font (size 1.27 1.27))))
  2261. )
  2262. (pin input line (at 2.54 11.43 180) (length 2.54)
  2263. (name "VBUS" (effects (font (size 1.27 1.27))))
  2264. (number "2" (effects (font (size 1.27 1.27))))
  2265. )
  2266. (pin input line (at 2.54 8.89 180) (length 2.54)
  2267. (name "SBU2" (effects (font (size 1.27 1.27))))
  2268. (number "3" (effects (font (size 1.27 1.27))))
  2269. )
  2270. (pin input line (at 2.54 6.35 180) (length 2.54)
  2271. (name "CC1" (effects (font (size 1.27 1.27))))
  2272. (number "4" (effects (font (size 1.27 1.27))))
  2273. )
  2274. (pin input line (at 2.54 3.81 180) (length 2.54)
  2275. (name "DN2" (effects (font (size 1.27 1.27))))
  2276. (number "5" (effects (font (size 1.27 1.27))))
  2277. )
  2278. (pin input line (at 2.54 1.27 180) (length 2.54)
  2279. (name "DP1" (effects (font (size 1.27 1.27))))
  2280. (number "6" (effects (font (size 1.27 1.27))))
  2281. )
  2282. (pin input line (at 2.54 -1.27 180) (length 2.54)
  2283. (name "DN1" (effects (font (size 1.27 1.27))))
  2284. (number "7" (effects (font (size 1.27 1.27))))
  2285. )
  2286. (pin input line (at 2.54 -3.81 180) (length 2.54)
  2287. (name "DP2" (effects (font (size 1.27 1.27))))
  2288. (number "8" (effects (font (size 1.27 1.27))))
  2289. )
  2290. (pin input line (at 2.54 -6.35 180) (length 2.54)
  2291. (name "SBU1" (effects (font (size 1.27 1.27))))
  2292. (number "9" (effects (font (size 1.27 1.27))))
  2293. )
  2294. )
  2295. )
  2296. (symbol "Z80ICE:bead-myRF" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2297. (property "Reference" "FB2" (id 0) (at 1.905 -1.778 90)
  2298. (effects (font (size 1.27 1.27)) (justify left))
  2299. )
  2300. (property "Value" "bead-myRF" (id 1) (at 2.54 -3.556 90)
  2301. (effects (font (size 1.27 1.27)) (justify left))
  2302. )
  2303. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 0 -1.778 90)
  2304. (effects (font (size 1.27 1.27)) hide)
  2305. )
  2306. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810201211_Murata-Electronics-BLM21AG601SN1D_C85837.pdf" (id 3) (at 0 0 0)
  2307. (effects (font (size 1.27 1.27)) hide)
  2308. )
  2309. (property "Mfr #" "BLM21AG601SN1D" (id 4) (at 0 0 90)
  2310. (effects (font (size 1.27 1.27)) hide)
  2311. )
  2312. (property "LCSC #" "C85837" (id 5) (at 0 0 90)
  2313. (effects (font (size 1.27 1.27)) hide)
  2314. )
  2315. (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
  2316. (effects (font (size 1.27 1.27)) hide)
  2317. )
  2318. (symbol "bead-myRF_0_1"
  2319. (rectangle (start -0.381 1.27) (end 0.381 -1.143)
  2320. (stroke (width 0) (type default) (color 0 0 0 0))
  2321. (fill (type outline))
  2322. )
  2323. (polyline
  2324. (pts
  2325. (xy 0 -1.27)
  2326. (xy 0 -0.7874)
  2327. )
  2328. (stroke (width 0) (type default) (color 0 0 0 0))
  2329. (fill (type none))
  2330. )
  2331. (polyline
  2332. (pts
  2333. (xy 0 0.889)
  2334. (xy 0 1.2954)
  2335. )
  2336. (stroke (width 0) (type default) (color 0 0 0 0))
  2337. (fill (type none))
  2338. )
  2339. )
  2340. (symbol "bead-myRF_1_1"
  2341. (pin passive line (at 0 2.54 270) (length 1.27)
  2342. (name "~" (effects (font (size 1.27 1.27))))
  2343. (number "1" (effects (font (size 1.27 1.27))))
  2344. )
  2345. (pin passive line (at 0 -2.54 90) (length 1.27)
  2346. (name "~" (effects (font (size 1.27 1.27))))
  2347. (number "2" (effects (font (size 1.27 1.27))))
  2348. )
  2349. )
  2350. )
  2351. (symbol "power:+1V8" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2352. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2353. (effects (font (size 1.27 1.27)) hide)
  2354. )
  2355. (property "Value" "+1V8" (id 1) (at 0 3.556 0)
  2356. (effects (font (size 1.27 1.27)))
  2357. )
  2358. (property "Footprint" "" (id 2) (at 0 0 0)
  2359. (effects (font (size 1.27 1.27)) hide)
  2360. )
  2361. (property "Datasheet" "" (id 3) (at 0 0 0)
  2362. (effects (font (size 1.27 1.27)) hide)
  2363. )
  2364. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2365. (effects (font (size 1.27 1.27)) hide)
  2366. )
  2367. (property "ki_description" "Power symbol creates a global label with name \"+1V8\"" (id 5) (at 0 0 0)
  2368. (effects (font (size 1.27 1.27)) hide)
  2369. )
  2370. (symbol "+1V8_0_1"
  2371. (polyline
  2372. (pts
  2373. (xy -0.762 1.27)
  2374. (xy 0 2.54)
  2375. )
  2376. (stroke (width 0) (type default) (color 0 0 0 0))
  2377. (fill (type none))
  2378. )
  2379. (polyline
  2380. (pts
  2381. (xy 0 0)
  2382. (xy 0 2.54)
  2383. )
  2384. (stroke (width 0) (type default) (color 0 0 0 0))
  2385. (fill (type none))
  2386. )
  2387. (polyline
  2388. (pts
  2389. (xy 0 2.54)
  2390. (xy 0.762 1.27)
  2391. )
  2392. (stroke (width 0) (type default) (color 0 0 0 0))
  2393. (fill (type none))
  2394. )
  2395. )
  2396. (symbol "+1V8_1_1"
  2397. (pin power_in line (at 0 0 90) (length 0) hide
  2398. (name "+1V8" (effects (font (size 1.27 1.27))))
  2399. (number "1" (effects (font (size 1.27 1.27))))
  2400. )
  2401. )
  2402. )
  2403. (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2404. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2405. (effects (font (size 1.27 1.27)) hide)
  2406. )
  2407. (property "Value" "+3V3" (id 1) (at 0 3.556 0)
  2408. (effects (font (size 1.27 1.27)))
  2409. )
  2410. (property "Footprint" "" (id 2) (at 0 0 0)
  2411. (effects (font (size 1.27 1.27)) hide)
  2412. )
  2413. (property "Datasheet" "" (id 3) (at 0 0 0)
  2414. (effects (font (size 1.27 1.27)) hide)
  2415. )
  2416. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2417. (effects (font (size 1.27 1.27)) hide)
  2418. )
  2419. (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
  2420. (effects (font (size 1.27 1.27)) hide)
  2421. )
  2422. (symbol "+3V3_0_1"
  2423. (polyline
  2424. (pts
  2425. (xy -0.762 1.27)
  2426. (xy 0 2.54)
  2427. )
  2428. (stroke (width 0) (type default) (color 0 0 0 0))
  2429. (fill (type none))
  2430. )
  2431. (polyline
  2432. (pts
  2433. (xy 0 0)
  2434. (xy 0 2.54)
  2435. )
  2436. (stroke (width 0) (type default) (color 0 0 0 0))
  2437. (fill (type none))
  2438. )
  2439. (polyline
  2440. (pts
  2441. (xy 0 2.54)
  2442. (xy 0.762 1.27)
  2443. )
  2444. (stroke (width 0) (type default) (color 0 0 0 0))
  2445. (fill (type none))
  2446. )
  2447. )
  2448. (symbol "+3V3_1_1"
  2449. (pin power_in line (at 0 0 90) (length 0) hide
  2450. (name "+3V3" (effects (font (size 1.27 1.27))))
  2451. (number "1" (effects (font (size 1.27 1.27))))
  2452. )
  2453. )
  2454. )
  2455. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2456. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  2457. (effects (font (size 1.27 1.27)) hide)
  2458. )
  2459. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  2460. (effects (font (size 1.27 1.27)))
  2461. )
  2462. (property "Footprint" "" (id 2) (at 0 0 0)
  2463. (effects (font (size 1.27 1.27)) hide)
  2464. )
  2465. (property "Datasheet" "" (id 3) (at 0 0 0)
  2466. (effects (font (size 1.27 1.27)) hide)
  2467. )
  2468. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2469. (effects (font (size 1.27 1.27)) hide)
  2470. )
  2471. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  2472. (effects (font (size 1.27 1.27)) hide)
  2473. )
  2474. (symbol "+5V_0_1"
  2475. (polyline
  2476. (pts
  2477. (xy -0.762 1.27)
  2478. (xy 0 2.54)
  2479. )
  2480. (stroke (width 0) (type default) (color 0 0 0 0))
  2481. (fill (type none))
  2482. )
  2483. (polyline
  2484. (pts
  2485. (xy 0 0)
  2486. (xy 0 2.54)
  2487. )
  2488. (stroke (width 0) (type default) (color 0 0 0 0))
  2489. (fill (type none))
  2490. )
  2491. (polyline
  2492. (pts
  2493. (xy 0 2.54)
  2494. (xy 0.762 1.27)
  2495. )
  2496. (stroke (width 0) (type default) (color 0 0 0 0))
  2497. (fill (type none))
  2498. )
  2499. )
  2500. (symbol "+5V_1_1"
  2501. (pin power_in line (at 0 0 90) (length 0) hide
  2502. (name "+5V" (effects (font (size 1.27 1.27))))
  2503. (number "1" (effects (font (size 1.27 1.27))))
  2504. )
  2505. )
  2506. )
  2507. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  2508. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  2509. (effects (font (size 1.27 1.27)) hide)
  2510. )
  2511. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  2512. (effects (font (size 1.27 1.27)))
  2513. )
  2514. (property "Footprint" "" (id 2) (at 0 0 0)
  2515. (effects (font (size 1.27 1.27)) hide)
  2516. )
  2517. (property "Datasheet" "" (id 3) (at 0 0 0)
  2518. (effects (font (size 1.27 1.27)) hide)
  2519. )
  2520. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2521. (effects (font (size 1.27 1.27)) hide)
  2522. )
  2523. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  2524. (effects (font (size 1.27 1.27)) hide)
  2525. )
  2526. (symbol "GND_0_1"
  2527. (polyline
  2528. (pts
  2529. (xy 0 0)
  2530. (xy 0 -1.27)
  2531. (xy 1.27 -1.27)
  2532. (xy 0 -2.54)
  2533. (xy -1.27 -1.27)
  2534. (xy 0 -1.27)
  2535. )
  2536. (stroke (width 0) (type default) (color 0 0 0 0))
  2537. (fill (type none))
  2538. )
  2539. )
  2540. (symbol "GND_1_1"
  2541. (pin power_in line (at 0 0 270) (length 0) hide
  2542. (name "GND" (effects (font (size 1.27 1.27))))
  2543. (number "1" (effects (font (size 1.27 1.27))))
  2544. )
  2545. )
  2546. )
  2547. (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
  2548. (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
  2549. (effects (font (size 1.27 1.27)) hide)
  2550. )
  2551. (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
  2552. (effects (font (size 1.27 1.27)))
  2553. )
  2554. (property "Footprint" "" (id 2) (at 0 0 0)
  2555. (effects (font (size 1.27 1.27)) hide)
  2556. )
  2557. (property "Datasheet" "~" (id 3) (at 0 0 0)
  2558. (effects (font (size 1.27 1.27)) hide)
  2559. )
  2560. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  2561. (effects (font (size 1.27 1.27)) hide)
  2562. )
  2563. (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
  2564. (effects (font (size 1.27 1.27)) hide)
  2565. )
  2566. (symbol "PWR_FLAG_0_0"
  2567. (pin power_out line (at 0 0 90) (length 0)
  2568. (name "pwr" (effects (font (size 1.27 1.27))))
  2569. (number "1" (effects (font (size 1.27 1.27))))
  2570. )
  2571. )
  2572. (symbol "PWR_FLAG_0_1"
  2573. (polyline
  2574. (pts
  2575. (xy 0 0)
  2576. (xy 0 1.27)
  2577. (xy -1.016 1.905)
  2578. (xy 0 2.54)
  2579. (xy 1.016 1.905)
  2580. (xy 0 1.27)
  2581. )
  2582. (stroke (width 0) (type default) (color 0 0 0 0))
  2583. (fill (type none))
  2584. )
  2585. )
  2586. )
  2587. )
  2588. (junction (at 340.36 67.945) (diameter 0) (color 0 0 0 0)
  2589. (uuid 010bf7ad-cf42-4fa9-a1de-d640f094fdc2)
  2590. )
  2591. (junction (at 167.64 125.73) (diameter 0) (color 0 0 0 0)
  2592. (uuid 07e27eaa-6bc0-4520-80d8-058d19961b10)
  2593. )
  2594. (junction (at 292.1 48.895) (diameter 0) (color 0 0 0 0)
  2595. (uuid 0f3c5a44-b532-4c67-b708-30a461507c69)
  2596. )
  2597. (junction (at 76.2 229.87) (diameter 0) (color 0 0 0 0)
  2598. (uuid 13e7342f-1a08-4b81-bc9a-2119feaa1e8a)
  2599. )
  2600. (junction (at 322.58 183.515) (diameter 0) (color 0 0 0 0)
  2601. (uuid 16581902-1a46-4bbb-bab7-9214ed6529df)
  2602. )
  2603. (junction (at 320.04 183.515) (diameter 0) (color 0 0 0 0)
  2604. (uuid 2016670d-5c99-476d-94fb-685a0dbea8a0)
  2605. )
  2606. (junction (at 24.13 229.87) (diameter 0) (color 0 0 0 0)
  2607. (uuid 212d9545-0dae-4087-8d4a-fafe5bdf76bd)
  2608. )
  2609. (junction (at 244.475 252.73) (diameter 0) (color 0 0 0 0)
  2610. (uuid 21a889b7-fd2e-4ad2-b7a1-0dd0e192e2a2)
  2611. )
  2612. (junction (at 69.85 229.87) (diameter 0) (color 0 0 0 0)
  2613. (uuid 252679e5-14d0-4f20-8788-4b77b907604a)
  2614. )
  2615. (junction (at 31.75 257.81) (diameter 0) (color 0 0 0 0)
  2616. (uuid 26e5620e-a69b-4ec5-820e-609153c0f718)
  2617. )
  2618. (junction (at 335.28 67.945) (diameter 0) (color 0 0 0 0)
  2619. (uuid 324d8ca8-8ac2-4c7d-9a4d-9bf39fa52ad4)
  2620. )
  2621. (junction (at 327.66 67.945) (diameter 0) (color 0 0 0 0)
  2622. (uuid 3577dbc6-71ca-45e4-ac75-6f44695be154)
  2623. )
  2624. (junction (at 278.13 83.185) (diameter 0) (color 0 0 0 0)
  2625. (uuid 3c8e6a25-c279-4135-957c-4ebd00b00950)
  2626. )
  2627. (junction (at 332.74 183.515) (diameter 0) (color 0 0 0 0)
  2628. (uuid 3e37b5eb-6439-422b-ac1c-36fbd5f4964f)
  2629. )
  2630. (junction (at 170.18 236.22) (diameter 0) (color 0 0 0 0)
  2631. (uuid 3f25318c-c6c9-4464-8bf2-bbb48f244738)
  2632. )
  2633. (junction (at 172.72 125.73) (diameter 0) (color 0 0 0 0)
  2634. (uuid 40f0ea81-8dbe-455a-b57d-ed82285f33c6)
  2635. )
  2636. (junction (at 160.02 125.73) (diameter 0) (color 0 0 0 0)
  2637. (uuid 42fda249-78fd-48d8-b0ad-e75c65f6f4ef)
  2638. )
  2639. (junction (at 100.965 229.87) (diameter 0) (color 0 0 0 0)
  2640. (uuid 4c10c064-41fb-4d2d-8ab0-6564b65b9092)
  2641. )
  2642. (junction (at 308.61 51.435) (diameter 0) (color 0 0 0 0)
  2643. (uuid 4dea5252-43c8-4258-aa2c-ac3d089a8b48)
  2644. )
  2645. (junction (at 271.78 78.105) (diameter 0) (color 0 0 0 0)
  2646. (uuid 4f315dba-09e4-4df4-bf54-3e4fdc104fe4)
  2647. )
  2648. (junction (at 88.265 229.87) (diameter 0) (color 0 0 0 0)
  2649. (uuid 539c4411-3104-4c05-94a5-196a9a949a8f)
  2650. )
  2651. (junction (at 317.5 183.515) (diameter 0) (color 0 0 0 0)
  2652. (uuid 5c00a468-8ca5-4b86-a0cc-467530cb8cf0)
  2653. )
  2654. (junction (at 333.375 231.14) (diameter 0) (color 0 0 0 0)
  2655. (uuid 5d5838fe-f6a8-4294-a08c-0aca89b9a6a8)
  2656. )
  2657. (junction (at 165.735 236.22) (diameter 0) (color 0 0 0 0)
  2658. (uuid 5d8c4bfe-44e0-4953-8839-d6b4c1d0317b)
  2659. )
  2660. (junction (at 335.28 183.515) (diameter 0) (color 0 0 0 0)
  2661. (uuid 63c11eb5-2e28-4d5f-ad98-1b43dd473c43)
  2662. )
  2663. (junction (at 166.37 236.22) (diameter 0) (color 0 0 0 0)
  2664. (uuid 660450b2-ea57-4479-a2ea-3515455122fc)
  2665. )
  2666. (junction (at 25.4 257.81) (diameter 0) (color 0 0 0 0)
  2667. (uuid 7c2b9ef9-6cb5-42ab-87b5-2756d65f44ad)
  2668. )
  2669. (junction (at 303.53 51.435) (diameter 0) (color 0 0 0 0)
  2670. (uuid 7e43841e-8163-4b49-82da-fa13ea6375f5)
  2671. )
  2672. (junction (at 333.375 215.9) (diameter 0) (color 0 0 0 0)
  2673. (uuid 7f9068ee-ffc9-4071-bd44-ed2e8746972d)
  2674. )
  2675. (junction (at 386.715 210.82) (diameter 0) (color 0 0 0 0)
  2676. (uuid 8e4849bd-320e-406b-a02d-f52f450f1f0b)
  2677. )
  2678. (junction (at 240.03 40.005) (diameter 0) (color 0 0 0 0)
  2679. (uuid 8e49dca6-4543-453e-acbe-3c3a61ac4c1b)
  2680. )
  2681. (junction (at 274.955 252.73) (diameter 0) (color 0 0 0 0)
  2682. (uuid 90cfa6be-e369-452e-b0f5-3da868b01976)
  2683. )
  2684. (junction (at 81.915 229.87) (diameter 0) (color 0 0 0 0)
  2685. (uuid 9133a58e-09cf-4468-abb4-3af2f10d2d5d)
  2686. )
  2687. (junction (at 162.56 236.22) (diameter 0) (color 0 0 0 0)
  2688. (uuid 924c1b07-3647-4420-a4b5-644e6f4d4aa8)
  2689. )
  2690. (junction (at 163.83 125.73) (diameter 0) (color 0 0 0 0)
  2691. (uuid 948ea756-ac87-48be-9fc8-3f42f6d15798)
  2692. )
  2693. (junction (at 63.5 229.87) (diameter 0) (color 0 0 0 0)
  2694. (uuid 962a99b5-29f0-4f16-904f-05960f1ac361)
  2695. )
  2696. (junction (at 164.465 236.22) (diameter 0) (color 0 0 0 0)
  2697. (uuid 9a12b756-a7c9-4252-9ac2-7a41c3f35fdf)
  2698. )
  2699. (junction (at 508 139.065) (diameter 0) (color 0 0 0 0)
  2700. (uuid 9bfcf0a2-1aaf-43c6-95d8-1262e8d4c7cf)
  2701. )
  2702. (junction (at 160.655 236.22) (diameter 0) (color 0 0 0 0)
  2703. (uuid 9dc0a5f2-bea1-49e2-b1a8-0bcaf4e62e7b)
  2704. )
  2705. (junction (at 333.375 236.22) (diameter 0) (color 0 0 0 0)
  2706. (uuid 9ddc8518-52b4-4740-b67d-90e11e3cd350)
  2707. )
  2708. (junction (at 94.615 229.87) (diameter 0) (color 0 0 0 0)
  2709. (uuid 9e02e628-188f-460c-9963-f5ff075012e8)
  2710. )
  2711. (junction (at 273.05 167.005) (diameter 0) (color 0 0 0 0)
  2712. (uuid a160d663-fb36-49e0-aeae-66bac6c1f558)
  2713. )
  2714. (junction (at 330.2 183.515) (diameter 0) (color 0 0 0 0)
  2715. (uuid a16365f6-69df-4557-96f2-e00fdc2b8722)
  2716. )
  2717. (junction (at 30.48 229.87) (diameter 0) (color 0 0 0 0)
  2718. (uuid a5e8c9c4-3841-4c6c-9916-736001a0a110)
  2719. )
  2720. (junction (at 161.925 125.73) (diameter 0) (color 0 0 0 0)
  2721. (uuid a5f3d6f1-7afe-4e6e-b1d7-3cc62cc6ad01)
  2722. )
  2723. (junction (at 266.065 252.73) (diameter 0) (color 0 0 0 0)
  2724. (uuid aa8f3c0c-d034-4463-b24c-dbf3965802ad)
  2725. )
  2726. (junction (at 168.275 236.22) (diameter 0) (color 0 0 0 0)
  2727. (uuid b7c48211-d70b-4ff8-b04e-a6d330dcb32c)
  2728. )
  2729. (junction (at 281.94 48.895) (diameter 0) (color 0 0 0 0)
  2730. (uuid cc95ebbe-b0d7-4f32-bb9d-0650f6c297cc)
  2731. )
  2732. (junction (at 325.12 67.945) (diameter 0) (color 0 0 0 0)
  2733. (uuid d08827cd-f558-46ff-b12d-11613e58689b)
  2734. )
  2735. (junction (at 297.18 48.895) (diameter 0) (color 0 0 0 0)
  2736. (uuid d2902f8b-80bd-434c-be18-da4823946f29)
  2737. )
  2738. (junction (at 57.15 229.87) (diameter 0) (color 0 0 0 0)
  2739. (uuid d6c74a2d-20ad-411f-815e-85eec7195ae9)
  2740. )
  2741. (junction (at 327.66 183.515) (diameter 0) (color 0 0 0 0)
  2742. (uuid e5875461-8a12-431d-99e0-036034545569)
  2743. )
  2744. (junction (at 330.835 210.82) (diameter 0) (color 0 0 0 0)
  2745. (uuid e5b730d2-b9c5-4a3c-847e-091c2b51370d)
  2746. )
  2747. (junction (at 285.75 167.005) (diameter 0) (color 0 0 0 0)
  2748. (uuid e74b1e3d-1ffb-4425-9af3-d5561c3c5eaf)
  2749. )
  2750. (junction (at 165.735 125.73) (diameter 0) (color 0 0 0 0)
  2751. (uuid ea92fd5f-3c96-4f08-91fe-6988dae2cef1)
  2752. )
  2753. (junction (at 325.12 183.515) (diameter 0) (color 0 0 0 0)
  2754. (uuid ebfd523c-bc56-4147-83c2-755d0bdd60bc)
  2755. )
  2756. (junction (at 337.82 67.945) (diameter 0) (color 0 0 0 0)
  2757. (uuid f0273c62-017b-4719-b79c-a6eeed9777f1)
  2758. )
  2759. (junction (at 323.215 223.52) (diameter 0) (color 0 0 0 0)
  2760. (uuid f12a92a8-61cb-47ba-b271-126e3c2d59bd)
  2761. )
  2762. (junction (at 324.485 220.98) (diameter 0) (color 0 0 0 0)
  2763. (uuid f20f7628-874f-41de-8575-b8d8cf12ed5f)
  2764. )
  2765. (junction (at 36.83 229.87) (diameter 0) (color 0 0 0 0)
  2766. (uuid f5f7ef1a-2272-4b3b-b73a-0293eda1a623)
  2767. )
  2768. (junction (at 339.725 210.82) (diameter 0) (color 0 0 0 0)
  2769. (uuid f695ee6f-ad95-41ee-b7a9-d1aa22d07b53)
  2770. )
  2771. (junction (at 312.42 183.515) (diameter 0) (color 0 0 0 0)
  2772. (uuid f7eab157-d5e7-4311-943c-775f62249980)
  2773. )
  2774. (junction (at 167.005 125.73) (diameter 0) (color 0 0 0 0)
  2775. (uuid f95e03e7-eee6-4242-ab5f-5e5b3443acf8)
  2776. )
  2777. (junction (at 57.785 259.715) (diameter 0) (color 0 0 0 0)
  2778. (uuid fb46c072-06f6-44a8-bbdb-c294609f66fd)
  2779. )
  2780. (junction (at 165.735 114.3) (diameter 0) (color 0 0 0 0)
  2781. (uuid fe1138c7-fc2b-4595-89ac-8ce0ba6ec17f)
  2782. )
  2783. (no_connect (at 358.14 172.085) (uuid 1c9d77a9-cefc-47c5-90a3-beb708599e0e))
  2784. (no_connect (at 320.675 213.36) (uuid 4f157f5f-75eb-4aa2-a623-196732046d89))
  2785. (no_connect (at 222.25 37.465) (uuid 86707346-9001-4f9a-808b-fd58809bcf01))
  2786. (no_connect (at 358.14 169.545) (uuid b9d749b5-7a27-4f36-85e2-9281df8fe4f8))
  2787. (no_connect (at 320.675 228.6) (uuid c164d5a4-eb71-4b08-87f5-65d5dee1c1c8))
  2788. (no_connect (at 234.95 34.925) (uuid cb2d8572-eb44-41ad-9ad9-3a42bedb67df))
  2789. (no_connect (at 320.675 238.76) (uuid ceee6ddc-e0dc-42a1-99b2-2b1bba47a722))
  2790. (no_connect (at 142.875 140.335) (uuid e8e424d1-4ca1-4394-bc5c-49bf31d404ae))
  2791. (no_connect (at 234.95 37.465) (uuid fd80bedc-227b-403b-bb7b-516b3bd17b2d))
  2792. (wire (pts (xy 188.595 147.955) (xy 190.5 147.955))
  2793. (stroke (width 0) (type default) (color 0 0 0 0))
  2794. (uuid 001130ea-9250-42d8-ac1c-ab0b0fc427a2)
  2795. )
  2796. (wire (pts (xy 358.14 108.585) (xy 365.76 108.585))
  2797. (stroke (width 0) (type default) (color 0 0 0 0))
  2798. (uuid 022d8681-3c0a-4dc7-9434-e65534a86a56)
  2799. )
  2800. (wire (pts (xy 69.85 48.26) (xy 77.47 48.26))
  2801. (stroke (width 0) (type default) (color 0 0 0 0))
  2802. (uuid 02af41c4-3af3-443f-b5af-4ca1b1d04119)
  2803. )
  2804. (wire (pts (xy 165.735 236.22) (xy 165.735 238.125))
  2805. (stroke (width 0) (type default) (color 0 0 0 0))
  2806. (uuid 03260b11-7e6e-40e2-981f-266b1fad87a1)
  2807. )
  2808. (wire (pts (xy 297.18 78.105) (xy 271.78 78.105))
  2809. (stroke (width 0) (type default) (color 0 0 0 0))
  2810. (uuid 042bb877-013a-404c-b6ec-b7361f33064d)
  2811. )
  2812. (wire (pts (xy 69.85 93.98) (xy 77.47 93.98))
  2813. (stroke (width 0) (type default) (color 0 0 0 0))
  2814. (uuid 0449723b-944d-437c-81c8-9a2199e7e37b)
  2815. )
  2816. (wire (pts (xy 266.065 259.08) (xy 266.065 269.24))
  2817. (stroke (width 0) (type default) (color 0 0 0 0))
  2818. (uuid 04fa2ec2-6dde-4fad-a50b-e4dc82ca5735)
  2819. )
  2820. (wire (pts (xy 297.18 57.785) (xy 297.18 66.675))
  2821. (stroke (width 0) (type default) (color 0 0 0 0))
  2822. (uuid 04fd1ca2-40a4-4698-9bce-71a30c6207eb)
  2823. )
  2824. (wire (pts (xy 158.75 234.95) (xy 158.75 236.22))
  2825. (stroke (width 0) (type default) (color 0 0 0 0))
  2826. (uuid 0530cfa3-62ac-40f8-b2df-bfb5620f59c9)
  2827. )
  2828. (wire (pts (xy 274.955 252.73) (xy 282.575 252.73))
  2829. (stroke (width 0) (type default) (color 0 0 0 0))
  2830. (uuid 076f4da4-8094-4118-85cc-4f645160adc5)
  2831. )
  2832. (wire (pts (xy 69.85 73.66) (xy 77.47 73.66))
  2833. (stroke (width 0) (type default) (color 0 0 0 0))
  2834. (uuid 07b908db-0877-4da5-8753-0829d740a08f)
  2835. )
  2836. (wire (pts (xy 292.1 48.895) (xy 288.29 48.895))
  2837. (stroke (width 0) (type default) (color 0 0 0 0))
  2838. (uuid 07ce76b8-7a1f-4fa7-a9a0-054af67ef67d)
  2839. )
  2840. (wire (pts (xy 188.595 216.535) (xy 190.5 216.535))
  2841. (stroke (width 0) (type default) (color 0 0 0 0))
  2842. (uuid 07d0cf68-2b1a-4ad0-b081-2730186ab6ab)
  2843. )
  2844. (wire (pts (xy 188.595 191.135) (xy 190.5 191.135))
  2845. (stroke (width 0) (type default) (color 0 0 0 0))
  2846. (uuid 07e23f0a-90d2-4d22-82df-656393885f67)
  2847. )
  2848. (wire (pts (xy 358.14 100.965) (xy 365.76 100.965))
  2849. (stroke (width 0) (type default) (color 0 0 0 0))
  2850. (uuid 07ed3029-08d7-494a-a7c2-bd3cfa010765)
  2851. )
  2852. (wire (pts (xy 188.595 224.155) (xy 190.5 224.155))
  2853. (stroke (width 0) (type default) (color 0 0 0 0))
  2854. (uuid 0818ac66-cb3c-4860-97d0-4e2355f12e44)
  2855. )
  2856. (wire (pts (xy 158.75 236.22) (xy 160.655 236.22))
  2857. (stroke (width 0) (type default) (color 0 0 0 0))
  2858. (uuid 0936f72a-4d9d-4f2b-b65c-3359b15a7f44)
  2859. )
  2860. (wire (pts (xy 140.97 163.195) (xy 142.875 163.195))
  2861. (stroke (width 0) (type default) (color 0 0 0 0))
  2862. (uuid 09b9314a-e9c6-48a6-8775-9bb8610ad036)
  2863. )
  2864. (wire (pts (xy 276.86 144.145) (xy 285.75 144.145))
  2865. (stroke (width 0) (type default) (color 0 0 0 0))
  2866. (uuid 09c5c313-de0f-44bd-ad89-a71f3af5538b)
  2867. )
  2868. (wire (pts (xy 18.415 93.98) (xy 34.29 93.98))
  2869. (stroke (width 0) (type default) (color 0 0 0 0))
  2870. (uuid 0a56d2b0-168e-44e7-92b6-61edf2f5382a)
  2871. )
  2872. (wire (pts (xy 69.85 78.74) (xy 77.47 78.74))
  2873. (stroke (width 0) (type default) (color 0 0 0 0))
  2874. (uuid 0aa35e20-d193-4635-9382-ec71ec69a61e)
  2875. )
  2876. (wire (pts (xy 150.495 81.28) (xy 142.875 81.28))
  2877. (stroke (width 0) (type default) (color 0 0 0 0))
  2878. (uuid 0b06d8da-af38-40be-944d-a4a6523a51bb)
  2879. )
  2880. (wire (pts (xy 386.715 222.25) (xy 386.715 223.52))
  2881. (stroke (width 0) (type default) (color 0 0 0 0))
  2882. (uuid 0b6fca9c-43c9-4374-bd7d-e3b63c04ad08)
  2883. )
  2884. (wire (pts (xy 57.785 267.335) (xy 57.785 276.225))
  2885. (stroke (width 0) (type default) (color 0 0 0 0))
  2886. (uuid 0b7ba280-3b38-4737-b502-fb21fdd80426)
  2887. )
  2888. (wire (pts (xy 292.1 52.705) (xy 292.1 48.895))
  2889. (stroke (width 0) (type default) (color 0 0 0 0))
  2890. (uuid 0c33e0b4-4e5d-4263-99f5-4f5e65a6f5c7)
  2891. )
  2892. (wire (pts (xy 354.965 248.92) (xy 354.965 246.38))
  2893. (stroke (width 0) (type default) (color 0 0 0 0))
  2894. (uuid 0c8919ea-7087-43af-b282-e007198172b3)
  2895. )
  2896. (wire (pts (xy 167.005 125.73) (xy 167.005 125.095))
  2897. (stroke (width 0) (type default) (color 0 0 0 0))
  2898. (uuid 0cf0eb54-d0a0-47fe-9cce-d1a408815a34)
  2899. )
  2900. (wire (pts (xy 244.475 254) (xy 244.475 252.73))
  2901. (stroke (width 0) (type default) (color 0 0 0 0))
  2902. (uuid 0d733be0-476a-4a82-98c9-df0fbdf81872)
  2903. )
  2904. (wire (pts (xy 36.83 229.87) (xy 43.18 229.87))
  2905. (stroke (width 0) (type default) (color 0 0 0 0))
  2906. (uuid 0da286c8-022f-4230-967a-1f2da8e23c2b)
  2907. )
  2908. (wire (pts (xy 358.14 116.205) (xy 365.76 116.205))
  2909. (stroke (width 0) (type default) (color 0 0 0 0))
  2910. (uuid 0de29e6d-59dc-4199-9e2b-b82af7d10069)
  2911. )
  2912. (wire (pts (xy 150.495 55.88) (xy 142.875 55.88))
  2913. (stroke (width 0) (type default) (color 0 0 0 0))
  2914. (uuid 0e3c7407-18cd-4b7f-aebe-df4457bf860d)
  2915. )
  2916. (wire (pts (xy 167.005 125.73) (xy 167.64 125.73))
  2917. (stroke (width 0) (type default) (color 0 0 0 0))
  2918. (uuid 0e9e534e-1a0b-4210-a9ed-b501d8f6b1bd)
  2919. )
  2920. (wire (pts (xy 167.005 114.3) (xy 167.005 113.665))
  2921. (stroke (width 0) (type default) (color 0 0 0 0))
  2922. (uuid 0ed90e55-1f5d-421b-973a-d051bc60e3b4)
  2923. )
  2924. (wire (pts (xy 188.595 208.915) (xy 190.5 208.915))
  2925. (stroke (width 0) (type default) (color 0 0 0 0))
  2926. (uuid 0ee9404e-7bdd-4c13-bea7-daece604ef8c)
  2927. )
  2928. (wire (pts (xy 180.975 57.785) (xy 188.595 57.785))
  2929. (stroke (width 0) (type default) (color 0 0 0 0))
  2930. (uuid 0fd864d8-663d-4ba5-b6a8-e6bc894b0e06)
  2931. )
  2932. (wire (pts (xy 31.75 257.81) (xy 25.4 257.81))
  2933. (stroke (width 0) (type default) (color 0 0 0 0))
  2934. (uuid 1084caa1-94a5-45c0-9692-e54b404595ba)
  2935. )
  2936. (wire (pts (xy 69.85 86.36) (xy 77.47 86.36))
  2937. (stroke (width 0) (type default) (color 0 0 0 0))
  2938. (uuid 113965a9-71b5-4249-876f-5a936aed42ef)
  2939. )
  2940. (wire (pts (xy 140.97 224.155) (xy 142.875 224.155))
  2941. (stroke (width 0) (type default) (color 0 0 0 0))
  2942. (uuid 1223a349-9001-4b8a-b697-80bb04784418)
  2943. )
  2944. (wire (pts (xy 358.14 149.225) (xy 365.76 149.225))
  2945. (stroke (width 0) (type default) (color 0 0 0 0))
  2946. (uuid 14282609-5356-4d25-887c-e0cfb4bdec86)
  2947. )
  2948. (wire (pts (xy 219.71 29.845) (xy 222.25 29.845))
  2949. (stroke (width 0) (type default) (color 0 0 0 0))
  2950. (uuid 150b04b2-4fb5-4869-86fb-170e149a34b6)
  2951. )
  2952. (wire (pts (xy 150.495 66.04) (xy 142.875 66.04))
  2953. (stroke (width 0) (type default) (color 0 0 0 0))
  2954. (uuid 15aa23af-090b-44ab-b54f-313de2771801)
  2955. )
  2956. (wire (pts (xy 31.75 265.43) (xy 31.75 274.32))
  2957. (stroke (width 0) (type default) (color 0 0 0 0))
  2958. (uuid 15cb9746-c380-4c39-88f2-b1c473c56355)
  2959. )
  2960. (wire (pts (xy 292.1 111.125) (xy 297.18 111.125))
  2961. (stroke (width 0) (type default) (color 0 0 0 0))
  2962. (uuid 1630d5c9-f2f3-481a-8649-74f4c93b95c5)
  2963. )
  2964. (wire (pts (xy 290.83 146.685) (xy 297.18 146.685))
  2965. (stroke (width 0) (type default) (color 0 0 0 0))
  2966. (uuid 16ad8640-e24a-45eb-9660-87db62d2fcfa)
  2967. )
  2968. (wire (pts (xy 50.8 227.965) (xy 50.8 229.87))
  2969. (stroke (width 0) (type default) (color 0 0 0 0))
  2970. (uuid 16cf12db-5caa-478d-bd0d-dcdfddb0387a)
  2971. )
  2972. (wire (pts (xy 76.2 229.87) (xy 81.915 229.87))
  2973. (stroke (width 0) (type default) (color 0 0 0 0))
  2974. (uuid 16d140c5-972e-4714-a06c-4e266f3a7547)
  2975. )
  2976. (wire (pts (xy 81.915 229.87) (xy 88.265 229.87))
  2977. (stroke (width 0) (type default) (color 0 0 0 0))
  2978. (uuid 17609616-783f-489b-adac-bfb3680d598a)
  2979. )
  2980. (wire (pts (xy 88.265 237.49) (xy 88.265 246.38))
  2981. (stroke (width 0) (type default) (color 0 0 0 0))
  2982. (uuid 1a7796a5-94f9-4614-8ddd-a02d5c01fafe)
  2983. )
  2984. (wire (pts (xy 325.12 183.515) (xy 322.58 183.515))
  2985. (stroke (width 0) (type default) (color 0 0 0 0))
  2986. (uuid 1b770034-344d-43fb-a588-15b1852816b2)
  2987. )
  2988. (wire (pts (xy 57.785 156.845) (xy 65.405 156.845))
  2989. (stroke (width 0) (type default) (color 0 0 0 0))
  2990. (uuid 1ba83c43-ce1c-4709-ba72-365d6631fb05)
  2991. )
  2992. (wire (pts (xy 188.595 203.835) (xy 190.5 203.835))
  2993. (stroke (width 0) (type default) (color 0 0 0 0))
  2994. (uuid 1d581cee-86e6-4dc2-b171-d9571e82096c)
  2995. )
  2996. (wire (pts (xy 18.415 68.58) (xy 34.29 68.58))
  2997. (stroke (width 0) (type default) (color 0 0 0 0))
  2998. (uuid 1da3d606-14c9-441f-b029-47c82060dae1)
  2999. )
  3000. (wire (pts (xy 333.375 236.22) (xy 333.375 241.3))
  3001. (stroke (width 0) (type default) (color 0 0 0 0))
  3002. (uuid 1e25ea82-4629-4aab-9099-ad801dbeb53c)
  3003. )
  3004. (wire (pts (xy 279.4 172.085) (xy 279.4 183.515))
  3005. (stroke (width 0) (type default) (color 0 0 0 0))
  3006. (uuid 1e55f8b4-41a4-49dd-a618-9c7ec23d76f3)
  3007. )
  3008. (wire (pts (xy 308.61 57.785) (xy 308.61 66.675))
  3009. (stroke (width 0) (type default) (color 0 0 0 0))
  3010. (uuid 1e5f3f38-abbd-4985-8f7b-4ffed42b5c1f)
  3011. )
  3012. (wire (pts (xy 73.66 184.785) (xy 57.785 184.785))
  3013. (stroke (width 0) (type default) (color 0 0 0 0))
  3014. (uuid 1e80fb1d-9160-4fbc-8da8-90f9e27431ae)
  3015. )
  3016. (wire (pts (xy 140.335 155.575) (xy 142.875 155.575))
  3017. (stroke (width 0) (type default) (color 0 0 0 0))
  3018. (uuid 1ee60ff3-5c81-400f-a428-b001a36f76a6)
  3019. )
  3020. (wire (pts (xy 150.495 91.44) (xy 142.875 91.44))
  3021. (stroke (width 0) (type default) (color 0 0 0 0))
  3022. (uuid 202245dd-846b-4035-9efa-a1e14726196f)
  3023. )
  3024. (wire (pts (xy 325.12 67.945) (xy 327.66 67.945))
  3025. (stroke (width 0) (type default) (color 0 0 0 0))
  3026. (uuid 204be471-b9be-477d-9424-276776588f26)
  3027. )
  3028. (wire (pts (xy 273.05 156.845) (xy 297.18 156.845))
  3029. (stroke (width 0) (type default) (color 0 0 0 0))
  3030. (uuid 2122ffaf-4711-4399-bf80-1992b2ddeadb)
  3031. )
  3032. (wire (pts (xy 188.595 201.295) (xy 190.5 201.295))
  3033. (stroke (width 0) (type default) (color 0 0 0 0))
  3034. (uuid 21339b3e-7c30-49e8-91fe-53468888f5e0)
  3035. )
  3036. (wire (pts (xy 18.415 86.36) (xy 34.29 86.36))
  3037. (stroke (width 0) (type default) (color 0 0 0 0))
  3038. (uuid 22476ba2-caf0-4796-9263-56c88b828a4d)
  3039. )
  3040. (wire (pts (xy 508 142.875) (xy 508 139.065))
  3041. (stroke (width 0) (type default) (color 0 0 0 0))
  3042. (uuid 23397b4f-f6d8-4ddd-8de2-bb880870603a)
  3043. )
  3044. (wire (pts (xy 358.14 131.445) (xy 365.76 131.445))
  3045. (stroke (width 0) (type default) (color 0 0 0 0))
  3046. (uuid 24cd967b-5ff8-45ce-8ea1-0111a1190a8d)
  3047. )
  3048. (wire (pts (xy 69.85 229.87) (xy 76.2 229.87))
  3049. (stroke (width 0) (type default) (color 0 0 0 0))
  3050. (uuid 253786c3-f4f4-4008-bb50-032921211bc6)
  3051. )
  3052. (wire (pts (xy 150.495 88.9) (xy 142.875 88.9))
  3053. (stroke (width 0) (type default) (color 0 0 0 0))
  3054. (uuid 254e68a6-fa31-4a5b-a0f1-10cb0fdf2358)
  3055. )
  3056. (wire (pts (xy 150.495 68.58) (xy 142.875 68.58))
  3057. (stroke (width 0) (type default) (color 0 0 0 0))
  3058. (uuid 26b534c9-6603-4792-a956-a6cf47c77945)
  3059. )
  3060. (wire (pts (xy 188.595 165.735) (xy 190.5 165.735))
  3061. (stroke (width 0) (type default) (color 0 0 0 0))
  3062. (uuid 288bf246-a5a3-4485-afba-1db594e5f613)
  3063. )
  3064. (wire (pts (xy 257.175 260.35) (xy 257.175 269.24))
  3065. (stroke (width 0) (type default) (color 0 0 0 0))
  3066. (uuid 29f1e8ff-c4f3-4ac1-b96e-385ad3c3ecc4)
  3067. )
  3068. (wire (pts (xy 17.78 257.81) (xy 25.4 257.81))
  3069. (stroke (width 0) (type default) (color 0 0 0 0))
  3070. (uuid 2a0ecdd0-6a83-4aa9-9045-6ca2502f851f)
  3071. )
  3072. (wire (pts (xy 241.935 250.825) (xy 241.935 252.73))
  3073. (stroke (width 0) (type default) (color 0 0 0 0))
  3074. (uuid 2afdba6a-2b67-4268-915e-22aa411eda16)
  3075. )
  3076. (wire (pts (xy 271.78 78.105) (xy 271.78 84.455))
  3077. (stroke (width 0) (type default) (color 0 0 0 0))
  3078. (uuid 2b4dc6b4-0249-4cfb-95e1-1c1fb85a1b63)
  3079. )
  3080. (wire (pts (xy 335.28 182.245) (xy 335.28 183.515))
  3081. (stroke (width 0) (type default) (color 0 0 0 0))
  3082. (uuid 2bc81b59-1a3f-40f6-b982-f2a4bcae19c6)
  3083. )
  3084. (wire (pts (xy 386.715 198.12) (xy 386.715 210.82))
  3085. (stroke (width 0) (type default) (color 0 0 0 0))
  3086. (uuid 2bf2419d-6b6c-40c3-993b-35b7ad33021f)
  3087. )
  3088. (wire (pts (xy 303.53 57.785) (xy 303.53 66.675))
  3089. (stroke (width 0) (type default) (color 0 0 0 0))
  3090. (uuid 2c0cb760-8286-40fb-8d8b-6574af49345b)
  3091. )
  3092. (wire (pts (xy 340.36 64.135) (xy 340.36 67.945))
  3093. (stroke (width 0) (type default) (color 0 0 0 0))
  3094. (uuid 2c71f755-da33-467d-8b2e-e370342adbf6)
  3095. )
  3096. (wire (pts (xy 158.115 127.635) (xy 158.115 125.73))
  3097. (stroke (width 0) (type default) (color 0 0 0 0))
  3098. (uuid 2d393559-2007-444c-af00-24548c7f0169)
  3099. )
  3100. (wire (pts (xy 100.965 228.6) (xy 100.965 229.87))
  3101. (stroke (width 0) (type default) (color 0 0 0 0))
  3102. (uuid 2e128bf0-da62-484a-8380-029dfcb4209a)
  3103. )
  3104. (wire (pts (xy 358.14 161.925) (xy 365.76 161.925))
  3105. (stroke (width 0) (type default) (color 0 0 0 0))
  3106. (uuid 2e22b77a-51fd-4323-a364-df814872692c)
  3107. )
  3108. (wire (pts (xy 57.785 146.685) (xy 65.405 146.685))
  3109. (stroke (width 0) (type default) (color 0 0 0 0))
  3110. (uuid 2fc5d3b6-feb6-4492-adbc-309e403fe980)
  3111. )
  3112. (wire (pts (xy 140.97 188.595) (xy 142.875 188.595))
  3113. (stroke (width 0) (type default) (color 0 0 0 0))
  3114. (uuid 2fe39c3a-7a82-4551-be38-65afd25ae712)
  3115. )
  3116. (wire (pts (xy 188.595 219.075) (xy 190.5 219.075))
  3117. (stroke (width 0) (type default) (color 0 0 0 0))
  3118. (uuid 309123d2-8a82-4bab-aea7-bcedb002e59a)
  3119. )
  3120. (wire (pts (xy 325.12 70.485) (xy 325.12 67.945))
  3121. (stroke (width 0) (type default) (color 0 0 0 0))
  3122. (uuid 309c7451-b1d3-48f3-bd68-c90583ef710c)
  3123. )
  3124. (wire (pts (xy 332.74 183.515) (xy 330.2 183.515))
  3125. (stroke (width 0) (type default) (color 0 0 0 0))
  3126. (uuid 31b2cccf-31fa-459a-b0c2-3679f48236a0)
  3127. )
  3128. (wire (pts (xy 164.465 234.95) (xy 164.465 236.22))
  3129. (stroke (width 0) (type default) (color 0 0 0 0))
  3130. (uuid 31c542f5-6640-43d6-8f93-5d69a0f510bc)
  3131. )
  3132. (wire (pts (xy 140.97 213.995) (xy 142.875 213.995))
  3133. (stroke (width 0) (type default) (color 0 0 0 0))
  3134. (uuid 323381dd-c5d3-48f8-8e19-7bde503f7dba)
  3135. )
  3136. (wire (pts (xy 45.085 167.005) (xy 37.465 167.005))
  3137. (stroke (width 0) (type default) (color 0 0 0 0))
  3138. (uuid 32e81b2c-ad8a-434b-8813-9f8c6eb722df)
  3139. )
  3140. (wire (pts (xy 188.595 180.975) (xy 190.5 180.975))
  3141. (stroke (width 0) (type default) (color 0 0 0 0))
  3142. (uuid 347de2d4-f87b-4c87-8f9c-9ebde3168a59)
  3143. )
  3144. (wire (pts (xy 317.5 182.245) (xy 317.5 183.515))
  3145. (stroke (width 0) (type default) (color 0 0 0 0))
  3146. (uuid 3496886c-9420-4660-99de-ea248fea3347)
  3147. )
  3148. (wire (pts (xy 69.85 237.49) (xy 69.85 246.38))
  3149. (stroke (width 0) (type default) (color 0 0 0 0))
  3150. (uuid 35aa0fee-eb47-4b6d-8874-b3a9b26e9547)
  3151. )
  3152. (wire (pts (xy 320.675 210.82) (xy 330.835 210.82))
  3153. (stroke (width 0) (type default) (color 0 0 0 0))
  3154. (uuid 36d92fc8-4bcb-4e0e-8c2d-65f66d2fffc7)
  3155. )
  3156. (wire (pts (xy 158.115 125.73) (xy 160.02 125.73))
  3157. (stroke (width 0) (type default) (color 0 0 0 0))
  3158. (uuid 378aec69-bcb0-460e-b528-48490c9e3aaf)
  3159. )
  3160. (wire (pts (xy 322.58 182.245) (xy 322.58 183.515))
  3161. (stroke (width 0) (type default) (color 0 0 0 0))
  3162. (uuid 39304cb5-dc30-4d13-98d3-b1aefd894b89)
  3163. )
  3164. (wire (pts (xy 36.83 232.41) (xy 36.83 229.87))
  3165. (stroke (width 0) (type default) (color 0 0 0 0))
  3166. (uuid 39341948-87dd-47dd-a735-473afa7b9006)
  3167. )
  3168. (wire (pts (xy 358.14 154.305) (xy 365.76 154.305))
  3169. (stroke (width 0) (type default) (color 0 0 0 0))
  3170. (uuid 39e30b21-1109-4447-8fb9-192e3bcbf11b)
  3171. )
  3172. (wire (pts (xy 25.4 257.81) (xy 25.4 260.35))
  3173. (stroke (width 0) (type default) (color 0 0 0 0))
  3174. (uuid 3a64b0bd-6adc-44d5-ac5f-a6ba08a6449d)
  3175. )
  3176. (wire (pts (xy 234.95 32.385) (xy 241.935 32.385))
  3177. (stroke (width 0) (type default) (color 0 0 0 0))
  3178. (uuid 3ab3268d-5d2c-45b8-b062-8c3fc3285ef0)
  3179. )
  3180. (wire (pts (xy 320.04 183.515) (xy 317.5 183.515))
  3181. (stroke (width 0) (type default) (color 0 0 0 0))
  3182. (uuid 3b4e315c-af5f-4b37-898a-74f95fe669ca)
  3183. )
  3184. (wire (pts (xy 150.495 76.2) (xy 142.875 76.2))
  3185. (stroke (width 0) (type default) (color 0 0 0 0))
  3186. (uuid 3bbb89e5-5fb0-4634-b39c-a59b8acde12c)
  3187. )
  3188. (wire (pts (xy 188.595 206.375) (xy 190.5 206.375))
  3189. (stroke (width 0) (type default) (color 0 0 0 0))
  3190. (uuid 3c9e1fed-8cbb-4371-bf9d-dc7b41149408)
  3191. )
  3192. (wire (pts (xy 327.66 67.945) (xy 327.66 64.135))
  3193. (stroke (width 0) (type default) (color 0 0 0 0))
  3194. (uuid 3ce5e201-3e89-4189-8b64-53aef0874387)
  3195. )
  3196. (wire (pts (xy 24.13 232.41) (xy 24.13 229.87))
  3197. (stroke (width 0) (type default) (color 0 0 0 0))
  3198. (uuid 3d248af1-eb9c-49a0-99f5-5edfb87479e2)
  3199. )
  3200. (wire (pts (xy 57.785 141.605) (xy 65.405 141.605))
  3201. (stroke (width 0) (type default) (color 0 0 0 0))
  3202. (uuid 3d2d437b-a3c1-4c11-9645-030e91c33f24)
  3203. )
  3204. (wire (pts (xy 358.14 95.885) (xy 365.76 95.885))
  3205. (stroke (width 0) (type default) (color 0 0 0 0))
  3206. (uuid 40e2330c-bbf5-49c4-9344-5b74d92fc5a8)
  3207. )
  3208. (wire (pts (xy 188.595 175.895) (xy 190.5 175.895))
  3209. (stroke (width 0) (type default) (color 0 0 0 0))
  3210. (uuid 40e7f891-91cf-4032-9b5d-83af510da5f1)
  3211. )
  3212. (wire (pts (xy 160.655 234.95) (xy 160.655 236.22))
  3213. (stroke (width 0) (type default) (color 0 0 0 0))
  3214. (uuid 41a5819c-b449-4ba0-94b4-8e17b6b02b46)
  3215. )
  3216. (wire (pts (xy 167.64 125.73) (xy 167.64 127.635))
  3217. (stroke (width 0) (type default) (color 0 0 0 0))
  3218. (uuid 43ea99c8-e978-45de-81ed-f6558a0df871)
  3219. )
  3220. (wire (pts (xy 18.415 88.9) (xy 34.29 88.9))
  3221. (stroke (width 0) (type default) (color 0 0 0 0))
  3222. (uuid 44663391-cf44-473e-90b7-e64ea758b290)
  3223. )
  3224. (wire (pts (xy 317.5 183.515) (xy 312.42 183.515))
  3225. (stroke (width 0) (type default) (color 0 0 0 0))
  3226. (uuid 448aafce-3135-4272-8966-f1c9d0068471)
  3227. )
  3228. (wire (pts (xy 29.21 179.705) (xy 45.085 179.705))
  3229. (stroke (width 0) (type default) (color 0 0 0 0))
  3230. (uuid 44be440a-3388-425e-988a-9accd41f4b2d)
  3231. )
  3232. (wire (pts (xy 281.94 51.435) (xy 281.94 48.895))
  3233. (stroke (width 0) (type default) (color 0 0 0 0))
  3234. (uuid 45b63c0e-fcc1-4cbd-82ca-a01f1d9fb411)
  3235. )
  3236. (wire (pts (xy 172.72 125.73) (xy 172.72 127.635))
  3237. (stroke (width 0) (type default) (color 0 0 0 0))
  3238. (uuid 45eac1e2-dd4d-4dba-8b53-72abac61c401)
  3239. )
  3240. (wire (pts (xy 140.97 180.975) (xy 142.875 180.975))
  3241. (stroke (width 0) (type default) (color 0 0 0 0))
  3242. (uuid 46125fdd-d39a-4a25-8e68-ca7c164836ce)
  3243. )
  3244. (wire (pts (xy 244.475 259.08) (xy 244.475 269.24))
  3245. (stroke (width 0) (type default) (color 0 0 0 0))
  3246. (uuid 4657539d-c5aa-4589-bf41-dfb789786fa8)
  3247. )
  3248. (wire (pts (xy 162.56 236.22) (xy 164.465 236.22))
  3249. (stroke (width 0) (type default) (color 0 0 0 0))
  3250. (uuid 466fab38-48dc-422b-bad7-7602d0828eee)
  3251. )
  3252. (wire (pts (xy 188.595 170.815) (xy 190.5 170.815))
  3253. (stroke (width 0) (type default) (color 0 0 0 0))
  3254. (uuid 468ae5e0-c8e3-431e-944c-e8c28a3ec4df)
  3255. )
  3256. (wire (pts (xy 45.085 144.145) (xy 37.465 144.145))
  3257. (stroke (width 0) (type default) (color 0 0 0 0))
  3258. (uuid 46a20695-d45d-45b5-88be-68553dba1aff)
  3259. )
  3260. (wire (pts (xy 320.675 226.06) (xy 324.485 226.06))
  3261. (stroke (width 0) (type default) (color 0 0 0 0))
  3262. (uuid 475ffc36-e4b1-4c98-b947-096aa5289533)
  3263. )
  3264. (wire (pts (xy 358.14 141.605) (xy 365.76 141.605))
  3265. (stroke (width 0) (type default) (color 0 0 0 0))
  3266. (uuid 4773a689-b7d4-4fcc-b645-b4ca632229e2)
  3267. )
  3268. (wire (pts (xy 140.335 160.655) (xy 142.875 160.655))
  3269. (stroke (width 0) (type default) (color 0 0 0 0))
  3270. (uuid 47e03e09-5e8c-4c74-ad81-341cc1fee614)
  3271. )
  3272. (wire (pts (xy 25.4 265.43) (xy 25.4 274.32))
  3273. (stroke (width 0) (type default) (color 0 0 0 0))
  3274. (uuid 48384f99-5662-45fc-8117-01cd621499c5)
  3275. )
  3276. (wire (pts (xy 504.19 142.875) (xy 508 142.875))
  3277. (stroke (width 0) (type default) (color 0 0 0 0))
  3278. (uuid 487d5b45-b7b0-46e3-89ec-bcbffcd1f02b)
  3279. )
  3280. (wire (pts (xy 358.14 146.685) (xy 365.76 146.685))
  3281. (stroke (width 0) (type default) (color 0 0 0 0))
  3282. (uuid 49201d95-fc01-41cd-a100-023db20a69f1)
  3283. )
  3284. (wire (pts (xy 30.48 237.49) (xy 30.48 246.38))
  3285. (stroke (width 0) (type default) (color 0 0 0 0))
  3286. (uuid 497f2953-3754-4427-ba49-55488e4d8fbe)
  3287. )
  3288. (wire (pts (xy 180.975 52.705) (xy 188.595 52.705))
  3289. (stroke (width 0) (type default) (color 0 0 0 0))
  3290. (uuid 4a25788d-aaf5-461b-82a3-cf3b54a3316b)
  3291. )
  3292. (wire (pts (xy 275.59 167.005) (xy 273.05 167.005))
  3293. (stroke (width 0) (type default) (color 0 0 0 0))
  3294. (uuid 4a6f8e05-7b90-4438-8d3a-524f9f6d9120)
  3295. )
  3296. (wire (pts (xy 358.14 93.345) (xy 365.76 93.345))
  3297. (stroke (width 0) (type default) (color 0 0 0 0))
  3298. (uuid 4a76b100-980a-41e9-96fe-5501c05c05cd)
  3299. )
  3300. (wire (pts (xy 327.66 183.515) (xy 325.12 183.515))
  3301. (stroke (width 0) (type default) (color 0 0 0 0))
  3302. (uuid 4a94d001-3f02-457f-93fe-0cecc425b872)
  3303. )
  3304. (wire (pts (xy 332.74 182.245) (xy 332.74 183.515))
  3305. (stroke (width 0) (type default) (color 0 0 0 0))
  3306. (uuid 4b552dfa-8dd2-48be-85b0-5f50b8bc3877)
  3307. )
  3308. (wire (pts (xy 266.7 78.105) (xy 271.78 78.105))
  3309. (stroke (width 0) (type default) (color 0 0 0 0))
  3310. (uuid 4b89ff78-0916-47f6-8999-b6b0fabe1255)
  3311. )
  3312. (wire (pts (xy 278.13 83.185) (xy 278.13 84.455))
  3313. (stroke (width 0) (type default) (color 0 0 0 0))
  3314. (uuid 4ba1b934-814a-405e-852c-9870ae4cbadd)
  3315. )
  3316. (wire (pts (xy 57.785 164.465) (xy 80.645 164.465))
  3317. (stroke (width 0) (type default) (color 0 0 0 0))
  3318. (uuid 4c0185d5-c5fc-4d85-b350-412333ba87df)
  3319. )
  3320. (wire (pts (xy 69.85 88.9) (xy 77.47 88.9))
  3321. (stroke (width 0) (type default) (color 0 0 0 0))
  3322. (uuid 4ca56063-ceb1-4ad3-9640-550f80f3fc1b)
  3323. )
  3324. (wire (pts (xy 271.78 89.535) (xy 271.78 98.425))
  3325. (stroke (width 0) (type default) (color 0 0 0 0))
  3326. (uuid 4d7b8309-e981-4f2d-9995-3174ff8bf4f1)
  3327. )
  3328. (wire (pts (xy 188.595 173.355) (xy 190.5 173.355))
  3329. (stroke (width 0) (type default) (color 0 0 0 0))
  3330. (uuid 4d88df0a-514c-497f-831f-1b2d4487d061)
  3331. )
  3332. (wire (pts (xy 490.22 139.065) (xy 491.49 139.065))
  3333. (stroke (width 0) (type default) (color 0 0 0 0))
  3334. (uuid 4e1a5c9c-61e1-4358-962d-3c64e15c0e1d)
  3335. )
  3336. (wire (pts (xy 327.66 182.245) (xy 327.66 183.515))
  3337. (stroke (width 0) (type default) (color 0 0 0 0))
  3338. (uuid 4eb7f9f2-22a0-44eb-8226-2aa95c332007)
  3339. )
  3340. (wire (pts (xy 32.385 50.8) (xy 34.29 50.8))
  3341. (stroke (width 0) (type default) (color 0 0 0 0))
  3342. (uuid 4f232855-b6ad-4765-87e7-59f74bec3f06)
  3343. )
  3344. (wire (pts (xy 358.14 85.725) (xy 365.76 85.725))
  3345. (stroke (width 0) (type default) (color 0 0 0 0))
  3346. (uuid 4f3970a3-aebc-47fe-9f66-49d3a2f5340c)
  3347. )
  3348. (wire (pts (xy 188.595 150.495) (xy 190.5 150.495))
  3349. (stroke (width 0) (type default) (color 0 0 0 0))
  3350. (uuid 4fe56c9b-d0b5-4ac6-838a-ded1d51ed9ab)
  3351. )
  3352. (wire (pts (xy 64.135 262.255) (xy 64.135 259.715))
  3353. (stroke (width 0) (type default) (color 0 0 0 0))
  3354. (uuid 500625b8-89c0-4c83-bbd4-4815ed93ad72)
  3355. )
  3356. (wire (pts (xy 51.435 257.81) (xy 51.435 259.715))
  3357. (stroke (width 0) (type default) (color 0 0 0 0))
  3358. (uuid 508820d2-5f19-4410-958b-7b2eca38511e)
  3359. )
  3360. (wire (pts (xy 69.85 104.14) (xy 77.47 104.14))
  3361. (stroke (width 0) (type default) (color 0 0 0 0))
  3362. (uuid 50b3e8e4-c658-4894-b20b-bbca760eaad5)
  3363. )
  3364. (wire (pts (xy 358.14 123.825) (xy 365.76 123.825))
  3365. (stroke (width 0) (type default) (color 0 0 0 0))
  3366. (uuid 51f40015-df93-4008-9f27-e01a154134ad)
  3367. )
  3368. (wire (pts (xy 308.61 51.435) (xy 303.53 51.435))
  3369. (stroke (width 0) (type default) (color 0 0 0 0))
  3370. (uuid 5291e82c-48fc-44df-b3c4-55f248d267f8)
  3371. )
  3372. (wire (pts (xy 180.975 62.865) (xy 188.595 62.865))
  3373. (stroke (width 0) (type default) (color 0 0 0 0))
  3374. (uuid 5292bc4c-5baa-4246-a4cb-80242181d946)
  3375. )
  3376. (wire (pts (xy 219.71 40.005) (xy 222.25 40.005))
  3377. (stroke (width 0) (type default) (color 0 0 0 0))
  3378. (uuid 52dc462b-af8b-4e7e-9c93-64a6c37eeb88)
  3379. )
  3380. (wire (pts (xy 160.655 236.22) (xy 162.56 236.22))
  3381. (stroke (width 0) (type default) (color 0 0 0 0))
  3382. (uuid 52efa380-5ff3-44ff-92cf-da0ebad10acb)
  3383. )
  3384. (wire (pts (xy 234.95 40.005) (xy 240.03 40.005))
  3385. (stroke (width 0) (type default) (color 0 0 0 0))
  3386. (uuid 5354ad09-5127-479c-a679-4081a84fc266)
  3387. )
  3388. (wire (pts (xy 273.05 167.005) (xy 273.05 169.545))
  3389. (stroke (width 0) (type default) (color 0 0 0 0))
  3390. (uuid 53a56642-8f61-43fb-af3c-7b0217de1e5c)
  3391. )
  3392. (wire (pts (xy 278.13 89.535) (xy 278.13 98.425))
  3393. (stroke (width 0) (type default) (color 0 0 0 0))
  3394. (uuid 53c6af67-db27-445c-9a72-8978b286aaf1)
  3395. )
  3396. (wire (pts (xy 69.85 45.72) (xy 77.47 45.72))
  3397. (stroke (width 0) (type default) (color 0 0 0 0))
  3398. (uuid 547f4c03-64c7-43b9-bc47-d4c54132bc67)
  3399. )
  3400. (wire (pts (xy 140.97 145.415) (xy 142.875 145.415))
  3401. (stroke (width 0) (type default) (color 0 0 0 0))
  3402. (uuid 54be1580-cbd7-496e-9971-6a1385f8bb73)
  3403. )
  3404. (wire (pts (xy 69.85 232.41) (xy 69.85 229.87))
  3405. (stroke (width 0) (type default) (color 0 0 0 0))
  3406. (uuid 5565512e-5252-4955-b082-f8c382d49c56)
  3407. )
  3408. (wire (pts (xy 279.4 159.385) (xy 279.4 161.925))
  3409. (stroke (width 0) (type default) (color 0 0 0 0))
  3410. (uuid 5567e6c8-125a-47c0-9607-23792be3de61)
  3411. )
  3412. (wire (pts (xy 273.05 174.625) (xy 273.05 183.515))
  3413. (stroke (width 0) (type default) (color 0 0 0 0))
  3414. (uuid 55d2e87d-9683-4f9f-b9f2-adcd08ae181d)
  3415. )
  3416. (wire (pts (xy 188.595 140.335) (xy 190.5 140.335))
  3417. (stroke (width 0) (type default) (color 0 0 0 0))
  3418. (uuid 5744712c-1511-40b8-ac79-42d255c0e131)
  3419. )
  3420. (wire (pts (xy 73.66 169.545) (xy 57.785 169.545))
  3421. (stroke (width 0) (type default) (color 0 0 0 0))
  3422. (uuid 574c0dac-a0e0-4d82-83e7-48650d4046a5)
  3423. )
  3424. (wire (pts (xy 188.595 188.595) (xy 190.5 188.595))
  3425. (stroke (width 0) (type default) (color 0 0 0 0))
  3426. (uuid 5780fc63-4664-420e-8d2a-3dfa0d5343a0)
  3427. )
  3428. (wire (pts (xy 279.4 48.895) (xy 281.94 48.895))
  3429. (stroke (width 0) (type default) (color 0 0 0 0))
  3430. (uuid 57e43de3-cf8a-4325-abab-6f55f98465aa)
  3431. )
  3432. (wire (pts (xy 57.785 149.225) (xy 65.405 149.225))
  3433. (stroke (width 0) (type default) (color 0 0 0 0))
  3434. (uuid 5bc0e173-83a5-4728-855d-f5f368092571)
  3435. )
  3436. (wire (pts (xy 335.28 183.515) (xy 332.74 183.515))
  3437. (stroke (width 0) (type default) (color 0 0 0 0))
  3438. (uuid 5bda0506-fe02-4937-850a-e28a841287ac)
  3439. )
  3440. (wire (pts (xy 358.14 164.465) (xy 365.76 164.465))
  3441. (stroke (width 0) (type default) (color 0 0 0 0))
  3442. (uuid 5bfe7dbc-656e-455f-bf5d-c084ed785cbb)
  3443. )
  3444. (wire (pts (xy 180.975 60.325) (xy 188.595 60.325))
  3445. (stroke (width 0) (type default) (color 0 0 0 0))
  3446. (uuid 5c11c751-ddab-4a7d-97a0-0f383694621c)
  3447. )
  3448. (wire (pts (xy 166.37 236.22) (xy 166.37 234.95))
  3449. (stroke (width 0) (type default) (color 0 0 0 0))
  3450. (uuid 5cac935f-bed5-4826-b74a-acd2beda4e8e)
  3451. )
  3452. (wire (pts (xy 27.94 161.925) (xy 45.085 161.925))
  3453. (stroke (width 0) (type default) (color 0 0 0 0))
  3454. (uuid 5d531df2-f187-4a65-9c5c-d5c445b27305)
  3455. )
  3456. (wire (pts (xy 57.785 159.385) (xy 65.405 159.385))
  3457. (stroke (width 0) (type default) (color 0 0 0 0))
  3458. (uuid 5dcb064f-b8cc-4b78-9ce2-fa7ed744d52f)
  3459. )
  3460. (wire (pts (xy 43.18 149.225) (xy 45.085 149.225))
  3461. (stroke (width 0) (type default) (color 0 0 0 0))
  3462. (uuid 5ea5a050-09c2-45b9-a4a7-2693da47d229)
  3463. )
  3464. (wire (pts (xy 358.14 80.645) (xy 365.76 80.645))
  3465. (stroke (width 0) (type default) (color 0 0 0 0))
  3466. (uuid 5edf64e2-0a56-454d-9e31-17d538c509b0)
  3467. )
  3468. (wire (pts (xy 59.69 179.705) (xy 57.785 179.705))
  3469. (stroke (width 0) (type default) (color 0 0 0 0))
  3470. (uuid 5fd094db-b646-4282-8f33-1439f6e31110)
  3471. )
  3472. (wire (pts (xy 188.595 153.035) (xy 190.5 153.035))
  3473. (stroke (width 0) (type default) (color 0 0 0 0))
  3474. (uuid 6026e992-2787-49ba-8927-c946c1298239)
  3475. )
  3476. (wire (pts (xy 303.53 51.435) (xy 288.29 51.435))
  3477. (stroke (width 0) (type default) (color 0 0 0 0))
  3478. (uuid 60becf28-2760-442a-a2da-126ee2f5f830)
  3479. )
  3480. (wire (pts (xy 320.675 208.28) (xy 333.375 208.28))
  3481. (stroke (width 0) (type default) (color 0 0 0 0))
  3482. (uuid 60dbcf18-dbca-4b2a-8ee5-b1c53c1cc7b7)
  3483. )
  3484. (wire (pts (xy 140.97 198.755) (xy 142.875 198.755))
  3485. (stroke (width 0) (type default) (color 0 0 0 0))
  3486. (uuid 615aa54b-1092-41a7-8af0-802c5a3b300e)
  3487. )
  3488. (wire (pts (xy 21.59 229.87) (xy 24.13 229.87))
  3489. (stroke (width 0) (type default) (color 0 0 0 0))
  3490. (uuid 617014ea-fceb-4e5f-b8b5-136158093520)
  3491. )
  3492. (wire (pts (xy 52.07 111.76) (xy 52.07 113.03))
  3493. (stroke (width 0) (type default) (color 0 0 0 0))
  3494. (uuid 62d1adc3-65d1-4b3b-a4d6-c259b111efee)
  3495. )
  3496. (wire (pts (xy 69.85 81.28) (xy 77.47 81.28))
  3497. (stroke (width 0) (type default) (color 0 0 0 0))
  3498. (uuid 62f9eaf4-01ad-4723-88aa-ddcbd7da3373)
  3499. )
  3500. (wire (pts (xy 335.28 67.945) (xy 335.28 70.485))
  3501. (stroke (width 0) (type default) (color 0 0 0 0))
  3502. (uuid 64407306-1a1c-4c9a-95a1-382daeb1ccf1)
  3503. )
  3504. (wire (pts (xy 297.18 48.895) (xy 317.5 48.895))
  3505. (stroke (width 0) (type default) (color 0 0 0 0))
  3506. (uuid 644e086f-74a6-4bbf-844c-fce350781586)
  3507. )
  3508. (wire (pts (xy 166.37 236.22) (xy 168.275 236.22))
  3509. (stroke (width 0) (type default) (color 0 0 0 0))
  3510. (uuid 647b24b4-956a-4dc7-b698-9d331f9dc51d)
  3511. )
  3512. (wire (pts (xy 52.07 34.29) (xy 52.07 35.56))
  3513. (stroke (width 0) (type default) (color 0 0 0 0))
  3514. (uuid 65d3ba4b-6186-4bf4-92bc-015d2a926141)
  3515. )
  3516. (wire (pts (xy 73.66 182.245) (xy 57.785 182.245))
  3517. (stroke (width 0) (type default) (color 0 0 0 0))
  3518. (uuid 675efbfb-4593-4fc7-9bb8-94132e9fd9d0)
  3519. )
  3520. (wire (pts (xy 140.97 173.355) (xy 142.875 173.355))
  3521. (stroke (width 0) (type default) (color 0 0 0 0))
  3522. (uuid 677f8fea-4fd0-49d3-bdeb-8655529f9cef)
  3523. )
  3524. (wire (pts (xy 18.415 73.66) (xy 34.29 73.66))
  3525. (stroke (width 0) (type default) (color 0 0 0 0))
  3526. (uuid 67c30834-6655-49f6-9812-c7b5bd28404e)
  3527. )
  3528. (wire (pts (xy 339.725 236.22) (xy 339.725 210.82))
  3529. (stroke (width 0) (type default) (color 0 0 0 0))
  3530. (uuid 6828da31-d523-4450-95c5-89409aeeb198)
  3531. )
  3532. (wire (pts (xy 330.835 210.82) (xy 330.835 233.68))
  3533. (stroke (width 0) (type default) (color 0 0 0 0))
  3534. (uuid 696234d6-bb73-47b1-a647-77a7a886c3b9)
  3535. )
  3536. (wire (pts (xy 358.14 78.105) (xy 365.76 78.105))
  3537. (stroke (width 0) (type default) (color 0 0 0 0))
  3538. (uuid 69920220-1154-448b-8642-faa6cb011a98)
  3539. )
  3540. (wire (pts (xy 358.14 103.505) (xy 365.76 103.505))
  3541. (stroke (width 0) (type default) (color 0 0 0 0))
  3542. (uuid 6a2ed688-1f78-40c2-9448-36cb08aac9ff)
  3543. )
  3544. (wire (pts (xy 140.97 193.675) (xy 142.875 193.675))
  3545. (stroke (width 0) (type default) (color 0 0 0 0))
  3546. (uuid 6aabd448-6cc3-47db-9cf1-84ead60d354c)
  3547. )
  3548. (wire (pts (xy 69.85 66.04) (xy 77.47 66.04))
  3549. (stroke (width 0) (type default) (color 0 0 0 0))
  3550. (uuid 6ac0048e-ab2c-48c1-b602-e7189dbc4837)
  3551. )
  3552. (wire (pts (xy 172.085 236.22) (xy 172.085 234.95))
  3553. (stroke (width 0) (type default) (color 0 0 0 0))
  3554. (uuid 6b235e2a-6d68-4d00-808b-5520fd484d91)
  3555. )
  3556. (wire (pts (xy 168.275 236.22) (xy 168.275 234.95))
  3557. (stroke (width 0) (type default) (color 0 0 0 0))
  3558. (uuid 6bbfc329-c9c1-4551-9c8a-8930cdeb75bc)
  3559. )
  3560. (wire (pts (xy 330.2 182.245) (xy 330.2 183.515))
  3561. (stroke (width 0) (type default) (color 0 0 0 0))
  3562. (uuid 6bd09109-0149-4c8d-bdfa-e25432bb81fe)
  3563. )
  3564. (wire (pts (xy 477.52 137.795) (xy 490.22 137.795))
  3565. (stroke (width 0) (type default) (color 0 0 0 0))
  3566. (uuid 6c07755a-6909-46d9-ad49-2608817cdf88)
  3567. )
  3568. (wire (pts (xy 358.14 133.985) (xy 365.76 133.985))
  3569. (stroke (width 0) (type default) (color 0 0 0 0))
  3570. (uuid 6c1f6258-b33b-4974-a385-f8d7d7d78113)
  3571. )
  3572. (wire (pts (xy 160.02 125.73) (xy 161.925 125.73))
  3573. (stroke (width 0) (type default) (color 0 0 0 0))
  3574. (uuid 6c66bd17-eb67-40aa-baa2-427ac9849d6a)
  3575. )
  3576. (wire (pts (xy 312.42 183.515) (xy 297.18 183.515))
  3577. (stroke (width 0) (type default) (color 0 0 0 0))
  3578. (uuid 6ca2526b-8cde-4129-827b-e7a22cd40f39)
  3579. )
  3580. (wire (pts (xy 45.085 169.545) (xy 37.465 169.545))
  3581. (stroke (width 0) (type default) (color 0 0 0 0))
  3582. (uuid 6cb0d48b-cc4d-4f1a-b60a-8edab0302f5d)
  3583. )
  3584. (wire (pts (xy 180.975 55.245) (xy 188.595 55.245))
  3585. (stroke (width 0) (type default) (color 0 0 0 0))
  3586. (uuid 6d7e7c21-ac3e-4ab4-851f-81ae47d283db)
  3587. )
  3588. (wire (pts (xy 358.14 151.765) (xy 365.76 151.765))
  3589. (stroke (width 0) (type default) (color 0 0 0 0))
  3590. (uuid 6d8c9feb-8c63-4364-95da-8ccc2c819cb7)
  3591. )
  3592. (wire (pts (xy 264.795 252.73) (xy 266.065 252.73))
  3593. (stroke (width 0) (type default) (color 0 0 0 0))
  3594. (uuid 6f2a8f9c-afd1-48c5-b1e2-a9ff2f30fc2f)
  3595. )
  3596. (wire (pts (xy 88.265 229.87) (xy 94.615 229.87))
  3597. (stroke (width 0) (type default) (color 0 0 0 0))
  3598. (uuid 7073d310-90eb-42e6-8f93-9c41cdf75062)
  3599. )
  3600. (wire (pts (xy 358.14 159.385) (xy 365.76 159.385))
  3601. (stroke (width 0) (type default) (color 0 0 0 0))
  3602. (uuid 71168595-8203-4584-a8f6-338c724aac52)
  3603. )
  3604. (wire (pts (xy 322.58 70.485) (xy 322.58 67.945))
  3605. (stroke (width 0) (type default) (color 0 0 0 0))
  3606. (uuid 711f238c-779f-46e3-901e-44043655f3e0)
  3607. )
  3608. (wire (pts (xy 140.97 170.815) (xy 142.875 170.815))
  3609. (stroke (width 0) (type default) (color 0 0 0 0))
  3610. (uuid 716a5e61-0007-4b41-9c38-d6c4d8a2a2ee)
  3611. )
  3612. (wire (pts (xy 219.71 32.385) (xy 222.25 32.385))
  3613. (stroke (width 0) (type default) (color 0 0 0 0))
  3614. (uuid 7193d102-842a-414f-9fbb-9a34b2416f8b)
  3615. )
  3616. (wire (pts (xy 31.75 260.35) (xy 31.75 257.81))
  3617. (stroke (width 0) (type default) (color 0 0 0 0))
  3618. (uuid 71f29097-65b6-4d81-bd75-08abec15a63e)
  3619. )
  3620. (wire (pts (xy 240.03 29.845) (xy 240.03 40.005))
  3621. (stroke (width 0) (type default) (color 0 0 0 0))
  3622. (uuid 726417e9-5e6d-4ac5-a0a6-e56980f9c687)
  3623. )
  3624. (wire (pts (xy 140.335 153.035) (xy 142.875 153.035))
  3625. (stroke (width 0) (type default) (color 0 0 0 0))
  3626. (uuid 727dda20-c141-4637-9256-eb81f096fd0a)
  3627. )
  3628. (wire (pts (xy 174.625 125.73) (xy 174.625 127.635))
  3629. (stroke (width 0) (type default) (color 0 0 0 0))
  3630. (uuid 72a3a78c-50e6-4054-ae06-a6f73ce5ebf4)
  3631. )
  3632. (wire (pts (xy 100.965 229.87) (xy 100.965 232.41))
  3633. (stroke (width 0) (type default) (color 0 0 0 0))
  3634. (uuid 72f95225-2c93-4acb-87f2-d2b05a4201ea)
  3635. )
  3636. (wire (pts (xy 63.5 237.49) (xy 63.5 246.38))
  3637. (stroke (width 0) (type default) (color 0 0 0 0))
  3638. (uuid 73430a79-8392-460d-8db3-f5bdd105439e)
  3639. )
  3640. (wire (pts (xy 142.875 102.87) (xy 150.495 102.87))
  3641. (stroke (width 0) (type default) (color 0 0 0 0))
  3642. (uuid 7366c128-11f4-4dcb-a4d8-13981027e1a8)
  3643. )
  3644. (wire (pts (xy 57.785 151.765) (xy 65.405 151.765))
  3645. (stroke (width 0) (type default) (color 0 0 0 0))
  3646. (uuid 74e85b92-27aa-4705-a17c-5dc6a4c10a38)
  3647. )
  3648. (wire (pts (xy 43.18 177.165) (xy 45.085 177.165))
  3649. (stroke (width 0) (type default) (color 0 0 0 0))
  3650. (uuid 74f9722e-aecc-40fb-9714-aafc891895e4)
  3651. )
  3652. (wire (pts (xy 340.36 70.485) (xy 340.36 67.945))
  3653. (stroke (width 0) (type default) (color 0 0 0 0))
  3654. (uuid 750f8145-f716-4af5-82da-b869866626f0)
  3655. )
  3656. (wire (pts (xy 260.35 76.835) (xy 260.35 83.185))
  3657. (stroke (width 0) (type default) (color 0 0 0 0))
  3658. (uuid 7528f173-538a-4a13-a499-5bf233aab165)
  3659. )
  3660. (wire (pts (xy 57.15 237.49) (xy 57.15 246.38))
  3661. (stroke (width 0) (type default) (color 0 0 0 0))
  3662. (uuid 75312650-0d58-4ba8-879e-4b416724a8e9)
  3663. )
  3664. (wire (pts (xy 320.675 223.52) (xy 323.215 223.52))
  3665. (stroke (width 0) (type default) (color 0 0 0 0))
  3666. (uuid 7595f206-69dc-423f-a5a7-bb67916b018c)
  3667. )
  3668. (wire (pts (xy 188.595 155.575) (xy 190.5 155.575))
  3669. (stroke (width 0) (type default) (color 0 0 0 0))
  3670. (uuid 761ed9c9-de59-4c53-bb23-02689e8cfac9)
  3671. )
  3672. (wire (pts (xy 292.1 116.205) (xy 297.18 116.205))
  3673. (stroke (width 0) (type default) (color 0 0 0 0))
  3674. (uuid 784af994-0055-45c6-9d6b-5edabae71cd6)
  3675. )
  3676. (wire (pts (xy 339.725 236.22) (xy 342.265 236.22))
  3677. (stroke (width 0) (type default) (color 0 0 0 0))
  3678. (uuid 7877dec2-40fd-47fb-ad3f-b90c61e1c8fc)
  3679. )
  3680. (wire (pts (xy 477.52 140.335) (xy 488.95 140.335))
  3681. (stroke (width 0) (type default) (color 0 0 0 0))
  3682. (uuid 78d953ff-9c91-47a3-b114-c1ca3d98486c)
  3683. )
  3684. (wire (pts (xy 165.735 114.3) (xy 165.735 115.57))
  3685. (stroke (width 0) (type default) (color 0 0 0 0))
  3686. (uuid 7a45b38b-47a8-429a-9ddd-20410b987ce8)
  3687. )
  3688. (wire (pts (xy 140.97 175.895) (xy 142.875 175.895))
  3689. (stroke (width 0) (type default) (color 0 0 0 0))
  3690. (uuid 7a797e76-ff99-4a87-aeb7-193d995da1eb)
  3691. )
  3692. (wire (pts (xy 329.565 231.14) (xy 333.375 231.14))
  3693. (stroke (width 0) (type default) (color 0 0 0 0))
  3694. (uuid 7aedea84-ba3d-4321-a3c0-812e4683f225)
  3695. )
  3696. (wire (pts (xy 57.785 259.715) (xy 64.135 259.715))
  3697. (stroke (width 0) (type default) (color 0 0 0 0))
  3698. (uuid 7b963f83-7319-4c70-b86a-4410bcd915f1)
  3699. )
  3700. (wire (pts (xy 323.215 223.52) (xy 337.185 223.52))
  3701. (stroke (width 0) (type default) (color 0 0 0 0))
  3702. (uuid 7baf1ecf-14de-453a-a00d-346a3f5c1ed6)
  3703. )
  3704. (wire (pts (xy 358.14 156.845) (xy 365.76 156.845))
  3705. (stroke (width 0) (type default) (color 0 0 0 0))
  3706. (uuid 7c0c5398-d8e9-402b-97bb-e1308326edad)
  3707. )
  3708. (wire (pts (xy 333.375 208.28) (xy 333.375 215.9))
  3709. (stroke (width 0) (type default) (color 0 0 0 0))
  3710. (uuid 7c6b282d-8b1a-413f-878d-5fedcdc77897)
  3711. )
  3712. (wire (pts (xy 358.14 111.125) (xy 365.76 111.125))
  3713. (stroke (width 0) (type default) (color 0 0 0 0))
  3714. (uuid 7d897928-4d2c-4f3a-80c4-e4e156435049)
  3715. )
  3716. (wire (pts (xy 168.275 236.22) (xy 170.18 236.22))
  3717. (stroke (width 0) (type default) (color 0 0 0 0))
  3718. (uuid 7dc91550-284d-4b8e-81a2-a6e4397cbd49)
  3719. )
  3720. (wire (pts (xy 358.14 113.665) (xy 365.76 113.665))
  3721. (stroke (width 0) (type default) (color 0 0 0 0))
  3722. (uuid 7f3ba9da-6919-46bb-9fbd-f0775cc5f4ae)
  3723. )
  3724. (wire (pts (xy 354.965 220.98) (xy 354.965 226.06))
  3725. (stroke (width 0) (type default) (color 0 0 0 0))
  3726. (uuid 7f44a6bf-4421-4078-8436-1729c68e9104)
  3727. )
  3728. (wire (pts (xy 324.485 220.98) (xy 349.885 220.98))
  3729. (stroke (width 0) (type default) (color 0 0 0 0))
  3730. (uuid 7fc232a3-e1c5-4895-b92d-dae88209412a)
  3731. )
  3732. (wire (pts (xy 188.595 211.455) (xy 190.5 211.455))
  3733. (stroke (width 0) (type default) (color 0 0 0 0))
  3734. (uuid 827011f9-0d6c-4e48-8619-cae5854e8085)
  3735. )
  3736. (wire (pts (xy 162.56 234.95) (xy 162.56 236.22))
  3737. (stroke (width 0) (type default) (color 0 0 0 0))
  3738. (uuid 82915c21-881e-4be1-9afd-1b36f59c84fe)
  3739. )
  3740. (wire (pts (xy 63.5 232.41) (xy 63.5 229.87))
  3741. (stroke (width 0) (type default) (color 0 0 0 0))
  3742. (uuid 82bf044c-4815-46b3-adab-e8a2fae668e4)
  3743. )
  3744. (wire (pts (xy 266.065 252.73) (xy 266.065 254))
  3745. (stroke (width 0) (type default) (color 0 0 0 0))
  3746. (uuid 83068d9e-9e55-4f91-8f57-d8293a3e8280)
  3747. )
  3748. (wire (pts (xy 45.085 156.845) (xy 37.465 156.845))
  3749. (stroke (width 0) (type default) (color 0 0 0 0))
  3750. (uuid 84d24a5f-1898-46b3-941b-39cf8c4e997f)
  3751. )
  3752. (wire (pts (xy 358.14 118.745) (xy 365.76 118.745))
  3753. (stroke (width 0) (type default) (color 0 0 0 0))
  3754. (uuid 84d359f9-67f5-4ac6-9278-01a057961afd)
  3755. )
  3756. (wire (pts (xy 241.935 252.73) (xy 244.475 252.73))
  3757. (stroke (width 0) (type default) (color 0 0 0 0))
  3758. (uuid 85e1bb52-a6ff-414d-95f5-8be60e4af55b)
  3759. )
  3760. (wire (pts (xy 80.645 164.465) (xy 80.645 165.1))
  3761. (stroke (width 0) (type default) (color 0 0 0 0))
  3762. (uuid 8691a8c9-f14e-4c6b-aa1a-dd3b069e59e3)
  3763. )
  3764. (wire (pts (xy 24.13 229.87) (xy 30.48 229.87))
  3765. (stroke (width 0) (type default) (color 0 0 0 0))
  3766. (uuid 86c4ea5e-e5e0-42f3-a385-e47992f1a0ca)
  3767. )
  3768. (wire (pts (xy 69.85 68.58) (xy 77.47 68.58))
  3769. (stroke (width 0) (type default) (color 0 0 0 0))
  3770. (uuid 886477ae-92b8-43e6-afb5-5624b4ae7ef7)
  3771. )
  3772. (wire (pts (xy 57.785 262.255) (xy 57.785 259.715))
  3773. (stroke (width 0) (type default) (color 0 0 0 0))
  3774. (uuid 886d2fd2-b606-4979-b139-c63bf21a95a5)
  3775. )
  3776. (wire (pts (xy 285.75 167.005) (xy 285.75 169.545))
  3777. (stroke (width 0) (type default) (color 0 0 0 0))
  3778. (uuid 88803f5a-6081-45e2-9f6d-2e478b8a2b28)
  3779. )
  3780. (wire (pts (xy 308.61 51.435) (xy 314.96 51.435))
  3781. (stroke (width 0) (type default) (color 0 0 0 0))
  3782. (uuid 88a6949b-a25e-424f-85d9-efb1f61eca68)
  3783. )
  3784. (wire (pts (xy 386.715 210.82) (xy 386.715 214.63))
  3785. (stroke (width 0) (type default) (color 0 0 0 0))
  3786. (uuid 893cf2f8-9c8a-4429-b20e-471d0a3ec037)
  3787. )
  3788. (wire (pts (xy 260.35 83.185) (xy 278.13 83.185))
  3789. (stroke (width 0) (type default) (color 0 0 0 0))
  3790. (uuid 89647d2a-81df-402e-8067-941f5de833d6)
  3791. )
  3792. (wire (pts (xy 150.495 83.82) (xy 142.875 83.82))
  3793. (stroke (width 0) (type default) (color 0 0 0 0))
  3794. (uuid 8ba3777e-1ead-4ad6-978c-bb8c8e01a7bf)
  3795. )
  3796. (wire (pts (xy 274.955 256.54) (xy 274.955 252.73))
  3797. (stroke (width 0) (type default) (color 0 0 0 0))
  3798. (uuid 8c33c491-8835-4974-a5c5-58f72d77e789)
  3799. )
  3800. (wire (pts (xy 140.97 201.295) (xy 142.875 201.295))
  3801. (stroke (width 0) (type default) (color 0 0 0 0))
  3802. (uuid 8c67bf3a-2f14-41dd-a34f-f77ad4672ba3)
  3803. )
  3804. (wire (pts (xy 188.595 168.275) (xy 190.5 168.275))
  3805. (stroke (width 0) (type default) (color 0 0 0 0))
  3806. (uuid 8d0cc546-b38c-419d-803b-56fc9acf5872)
  3807. )
  3808. (wire (pts (xy 188.595 193.675) (xy 190.5 193.675))
  3809. (stroke (width 0) (type default) (color 0 0 0 0))
  3810. (uuid 8d5976a3-ebcf-44d3-b02f-2468eb261e65)
  3811. )
  3812. (wire (pts (xy 76.2 229.87) (xy 76.2 232.41))
  3813. (stroke (width 0) (type default) (color 0 0 0 0))
  3814. (uuid 8f1df8bb-9b0d-4d97-92b7-08a58a0ebd36)
  3815. )
  3816. (wire (pts (xy 170.18 236.22) (xy 172.085 236.22))
  3817. (stroke (width 0) (type default) (color 0 0 0 0))
  3818. (uuid 8f23a84f-fa26-45aa-adc6-6dd7d46124f6)
  3819. )
  3820. (wire (pts (xy 358.14 139.065) (xy 365.76 139.065))
  3821. (stroke (width 0) (type default) (color 0 0 0 0))
  3822. (uuid 8f583fea-c1c6-4e8c-9353-c3fafef795df)
  3823. )
  3824. (wire (pts (xy 73.66 172.085) (xy 57.785 172.085))
  3825. (stroke (width 0) (type default) (color 0 0 0 0))
  3826. (uuid 920833bc-6a45-422c-9817-bdc6a6fb7783)
  3827. )
  3828. (wire (pts (xy 140.97 147.955) (xy 142.875 147.955))
  3829. (stroke (width 0) (type default) (color 0 0 0 0))
  3830. (uuid 925ecc0a-7511-410f-b7aa-addf62ef0bb5)
  3831. )
  3832. (wire (pts (xy 140.97 211.455) (xy 142.875 211.455))
  3833. (stroke (width 0) (type default) (color 0 0 0 0))
  3834. (uuid 930a05a5-dfe7-4e3d-96b0-5895ecab4784)
  3835. )
  3836. (wire (pts (xy 57.785 161.925) (xy 65.405 161.925))
  3837. (stroke (width 0) (type default) (color 0 0 0 0))
  3838. (uuid 943387fe-a53a-4258-ba9d-ddceac1728ef)
  3839. )
  3840. (wire (pts (xy 327.66 70.485) (xy 327.66 67.945))
  3841. (stroke (width 0) (type default) (color 0 0 0 0))
  3842. (uuid 94511824-6d6e-4b0e-9f9d-d08bada94981)
  3843. )
  3844. (wire (pts (xy 164.465 236.22) (xy 165.735 236.22))
  3845. (stroke (width 0) (type default) (color 0 0 0 0))
  3846. (uuid 954ca4ff-da7b-41ba-9aec-ec89ec9f1144)
  3847. )
  3848. (wire (pts (xy 358.14 136.525) (xy 365.76 136.525))
  3849. (stroke (width 0) (type default) (color 0 0 0 0))
  3850. (uuid 95a11343-e71a-4e21-af18-a0b9e8027759)
  3851. )
  3852. (wire (pts (xy 282.575 248.92) (xy 282.575 252.73))
  3853. (stroke (width 0) (type default) (color 0 0 0 0))
  3854. (uuid 95dfeba3-759e-4761-abdf-7ebe19597cef)
  3855. )
  3856. (wire (pts (xy 150.495 58.42) (xy 142.875 58.42))
  3857. (stroke (width 0) (type default) (color 0 0 0 0))
  3858. (uuid 96527bfc-4784-49c1-9346-45ab8883aa2e)
  3859. )
  3860. (wire (pts (xy 284.48 116.205) (xy 287.02 116.205))
  3861. (stroke (width 0) (type default) (color 0 0 0 0))
  3862. (uuid 967e946c-a31d-447c-b50f-44711e8e8d95)
  3863. )
  3864. (wire (pts (xy 349.885 248.92) (xy 349.885 246.38))
  3865. (stroke (width 0) (type default) (color 0 0 0 0))
  3866. (uuid 971fb725-05f6-4212-92fb-a380a31105eb)
  3867. )
  3868. (wire (pts (xy 320.675 233.68) (xy 330.835 233.68))
  3869. (stroke (width 0) (type default) (color 0 0 0 0))
  3870. (uuid 974844ad-3256-4268-9f35-e2dc490d1727)
  3871. )
  3872. (wire (pts (xy 29.21 184.785) (xy 45.085 184.785))
  3873. (stroke (width 0) (type default) (color 0 0 0 0))
  3874. (uuid 97b12248-7eb7-487f-bb75-bb7e5a04b09c)
  3875. )
  3876. (wire (pts (xy 329.565 215.9) (xy 333.375 215.9))
  3877. (stroke (width 0) (type default) (color 0 0 0 0))
  3878. (uuid 97df9895-08bd-4b59-9017-db122617e68b)
  3879. )
  3880. (wire (pts (xy 69.85 60.96) (xy 77.47 60.96))
  3881. (stroke (width 0) (type default) (color 0 0 0 0))
  3882. (uuid 984ba17b-c325-4cfb-baa0-8df2ef0c0af9)
  3883. )
  3884. (wire (pts (xy 332.74 67.945) (xy 335.28 67.945))
  3885. (stroke (width 0) (type default) (color 0 0 0 0))
  3886. (uuid 98fd41d1-2881-4a31-9561-ecc657b40b84)
  3887. )
  3888. (wire (pts (xy 358.14 126.365) (xy 365.76 126.365))
  3889. (stroke (width 0) (type default) (color 0 0 0 0))
  3890. (uuid 99236368-aa89-47f6-ab12-6ee21b73382c)
  3891. )
  3892. (wire (pts (xy 165.735 125.73) (xy 165.735 127.635))
  3893. (stroke (width 0) (type default) (color 0 0 0 0))
  3894. (uuid 9925422c-090d-4277-80f7-326c7259ac97)
  3895. )
  3896. (wire (pts (xy 160.02 125.73) (xy 160.02 127.635))
  3897. (stroke (width 0) (type default) (color 0 0 0 0))
  3898. (uuid 9a2494a2-e51f-4f32-9f6a-3735fd868e0f)
  3899. )
  3900. (wire (pts (xy 283.21 167.005) (xy 285.75 167.005))
  3901. (stroke (width 0) (type default) (color 0 0 0 0))
  3902. (uuid 9a6a9616-332c-43e7-b3c1-6ad16cfca4d7)
  3903. )
  3904. (wire (pts (xy 172.72 125.73) (xy 174.625 125.73))
  3905. (stroke (width 0) (type default) (color 0 0 0 0))
  3906. (uuid 9addad72-61d4-46ec-ace4-3afbdb42a581)
  3907. )
  3908. (wire (pts (xy 273.05 167.005) (xy 273.05 156.845))
  3909. (stroke (width 0) (type default) (color 0 0 0 0))
  3910. (uuid 9b95261c-8709-4afb-bb4f-8e824a02e02e)
  3911. )
  3912. (wire (pts (xy 188.595 198.755) (xy 190.5 198.755))
  3913. (stroke (width 0) (type default) (color 0 0 0 0))
  3914. (uuid 9c17b4a1-9468-4539-ad41-ce5b579789ae)
  3915. )
  3916. (wire (pts (xy 100.965 237.49) (xy 100.965 246.38))
  3917. (stroke (width 0) (type default) (color 0 0 0 0))
  3918. (uuid 9c79c2cb-24c9-4eba-bc5a-705d3aeaf81e)
  3919. )
  3920. (wire (pts (xy 140.97 186.055) (xy 142.875 186.055))
  3921. (stroke (width 0) (type default) (color 0 0 0 0))
  3922. (uuid 9d7e66f7-738b-4e6d-b6c3-51a13c1a12e2)
  3923. )
  3924. (wire (pts (xy 320.675 236.22) (xy 333.375 236.22))
  3925. (stroke (width 0) (type default) (color 0 0 0 0))
  3926. (uuid 9df456f7-ab5c-46e8-ba0e-02355b66a595)
  3927. )
  3928. (wire (pts (xy 69.85 55.88) (xy 77.47 55.88))
  3929. (stroke (width 0) (type default) (color 0 0 0 0))
  3930. (uuid 9dffea22-0413-41d2-b1c6-184e1e1cfea8)
  3931. )
  3932. (wire (pts (xy 167.64 125.73) (xy 172.72 125.73))
  3933. (stroke (width 0) (type default) (color 0 0 0 0))
  3934. (uuid 9e7413be-7425-4e0b-88f0-9d1706353d64)
  3935. )
  3936. (wire (pts (xy 285.75 167.005) (xy 297.18 167.005))
  3937. (stroke (width 0) (type default) (color 0 0 0 0))
  3938. (uuid 9ee3f16a-abf8-47a2-9ab4-12b4235f1f83)
  3939. )
  3940. (wire (pts (xy 81.915 237.49) (xy 81.915 246.38))
  3941. (stroke (width 0) (type default) (color 0 0 0 0))
  3942. (uuid 9ff9b22a-d75f-4463-ab9e-8f8d3706d785)
  3943. )
  3944. (wire (pts (xy 94.615 237.49) (xy 94.615 246.38))
  3945. (stroke (width 0) (type default) (color 0 0 0 0))
  3946. (uuid a0287d9b-ba95-4522-8d20-943ca63bc0da)
  3947. )
  3948. (wire (pts (xy 163.83 113.665) (xy 163.83 114.3))
  3949. (stroke (width 0) (type default) (color 0 0 0 0))
  3950. (uuid a0e535ad-02db-47e4-a497-460594478662)
  3951. )
  3952. (wire (pts (xy 358.14 83.185) (xy 365.76 83.185))
  3953. (stroke (width 0) (type default) (color 0 0 0 0))
  3954. (uuid a18520f2-851e-4914-af51-2ef54dfdd02d)
  3955. )
  3956. (wire (pts (xy 69.85 53.34) (xy 77.47 53.34))
  3957. (stroke (width 0) (type default) (color 0 0 0 0))
  3958. (uuid a2238367-fa97-40e6-9c58-4f73c08aab2a)
  3959. )
  3960. (wire (pts (xy 488.95 142.875) (xy 491.49 142.875))
  3961. (stroke (width 0) (type default) (color 0 0 0 0))
  3962. (uuid a2b12275-8129-4dd0-823d-a7069897afcc)
  3963. )
  3964. (wire (pts (xy 140.97 142.875) (xy 142.875 142.875))
  3965. (stroke (width 0) (type default) (color 0 0 0 0))
  3966. (uuid a3528ee1-126a-437d-8e0d-7a3aef4e47fa)
  3967. )
  3968. (wire (pts (xy 142.875 107.95) (xy 150.495 107.95))
  3969. (stroke (width 0) (type default) (color 0 0 0 0))
  3970. (uuid a406959c-8232-4b56-bcc1-bbc0db04e4ce)
  3971. )
  3972. (wire (pts (xy 283.21 111.125) (xy 287.02 111.125))
  3973. (stroke (width 0) (type default) (color 0 0 0 0))
  3974. (uuid a4822e49-359c-4bb3-8bf9-672af83b0e32)
  3975. )
  3976. (wire (pts (xy 320.675 220.98) (xy 324.485 220.98))
  3977. (stroke (width 0) (type default) (color 0 0 0 0))
  3978. (uuid a4afc350-b3f6-4f25-960a-b8c12e50c4ef)
  3979. )
  3980. (wire (pts (xy 283.21 51.435) (xy 281.94 51.435))
  3981. (stroke (width 0) (type default) (color 0 0 0 0))
  3982. (uuid a4e733a6-aa30-4110-ab81-db742c34b176)
  3983. )
  3984. (wire (pts (xy 69.85 99.06) (xy 77.47 99.06))
  3985. (stroke (width 0) (type default) (color 0 0 0 0))
  3986. (uuid a601248f-7b6a-400d-a17d-6680be7a277a)
  3987. )
  3988. (wire (pts (xy 57.785 154.305) (xy 65.405 154.305))
  3989. (stroke (width 0) (type default) (color 0 0 0 0))
  3990. (uuid a626e972-f041-4d91-9a57-6bc9cdb62791)
  3991. )
  3992. (wire (pts (xy 180.975 65.405) (xy 188.595 65.405))
  3993. (stroke (width 0) (type default) (color 0 0 0 0))
  3994. (uuid a843e9a0-5b9b-4f11-8a50-0fc9af6e6344)
  3995. )
  3996. (wire (pts (xy 188.595 183.515) (xy 190.5 183.515))
  3997. (stroke (width 0) (type default) (color 0 0 0 0))
  3998. (uuid a845ea01-3899-4bff-aeb7-3a5e8c5412df)
  3999. )
  4000. (wire (pts (xy 45.085 164.465) (xy 37.465 164.465))
  4001. (stroke (width 0) (type default) (color 0 0 0 0))
  4002. (uuid a91cd32a-2717-45e9-a7fe-d98ecd59ed9a)
  4003. )
  4004. (wire (pts (xy 180.975 70.485) (xy 188.595 70.485))
  4005. (stroke (width 0) (type default) (color 0 0 0 0))
  4006. (uuid a9258704-815a-4bfc-9002-c256d0e1af49)
  4007. )
  4008. (wire (pts (xy 45.085 141.605) (xy 37.465 141.605))
  4009. (stroke (width 0) (type default) (color 0 0 0 0))
  4010. (uuid a94f4347-11aa-4f38-a686-6f1751ffea67)
  4011. )
  4012. (wire (pts (xy 150.495 73.66) (xy 142.875 73.66))
  4013. (stroke (width 0) (type default) (color 0 0 0 0))
  4014. (uuid aaacee2f-a512-47ae-9fcd-8f16c166b61a)
  4015. )
  4016. (wire (pts (xy 38.1 257.81) (xy 31.75 257.81))
  4017. (stroke (width 0) (type default) (color 0 0 0 0))
  4018. (uuid aabb36f6-200c-452f-b08f-a7146dbe2a83)
  4019. )
  4020. (wire (pts (xy 234.95 29.845) (xy 240.03 29.845))
  4021. (stroke (width 0) (type default) (color 0 0 0 0))
  4022. (uuid aada2049-1570-483c-a2b0-3a20a8614c21)
  4023. )
  4024. (wire (pts (xy 332.74 70.485) (xy 332.74 67.945))
  4025. (stroke (width 0) (type default) (color 0 0 0 0))
  4026. (uuid ab9f1b55-ed97-4db1-b57b-6aa7784720cc)
  4027. )
  4028. (wire (pts (xy 57.785 144.145) (xy 65.405 144.145))
  4029. (stroke (width 0) (type default) (color 0 0 0 0))
  4030. (uuid ac3d6e6e-04c1-4f47-9b66-84d633efafc9)
  4031. )
  4032. (wire (pts (xy 297.18 149.225) (xy 290.83 149.225))
  4033. (stroke (width 0) (type default) (color 0 0 0 0))
  4034. (uuid ac3e7699-1ad9-4d6a-b2e9-2648f11a4d3b)
  4035. )
  4036. (wire (pts (xy 51.435 259.715) (xy 57.785 259.715))
  4037. (stroke (width 0) (type default) (color 0 0 0 0))
  4038. (uuid ac89329f-ee7e-4625-b393-42cb5ec27a5a)
  4039. )
  4040. (wire (pts (xy 266.7 76.835) (xy 266.7 78.105))
  4041. (stroke (width 0) (type default) (color 0 0 0 0))
  4042. (uuid aca63365-4cd0-4b2a-870c-3b25a9a608ae)
  4043. )
  4044. (wire (pts (xy 32.385 101.6) (xy 34.29 101.6))
  4045. (stroke (width 0) (type default) (color 0 0 0 0))
  4046. (uuid ae89d740-326f-40f1-a5c4-ec7232ae1554)
  4047. )
  4048. (wire (pts (xy 170.18 236.22) (xy 170.18 234.95))
  4049. (stroke (width 0) (type default) (color 0 0 0 0))
  4050. (uuid aecec480-398b-40e3-bbb2-1f0566769f3d)
  4051. )
  4052. (wire (pts (xy 150.495 63.5) (xy 142.875 63.5))
  4053. (stroke (width 0) (type default) (color 0 0 0 0))
  4054. (uuid aefa5a9a-07d5-4da4-8aab-b22da8c01d55)
  4055. )
  4056. (wire (pts (xy 358.14 88.265) (xy 365.76 88.265))
  4057. (stroke (width 0) (type default) (color 0 0 0 0))
  4058. (uuid af96aa88-852d-47ec-b743-1cde23cc7c02)
  4059. )
  4060. (wire (pts (xy 32.385 91.44) (xy 34.29 91.44))
  4061. (stroke (width 0) (type default) (color 0 0 0 0))
  4062. (uuid b04d027e-3417-4116-9d35-6173f5b818fd)
  4063. )
  4064. (wire (pts (xy 244.475 252.73) (xy 249.555 252.73))
  4065. (stroke (width 0) (type default) (color 0 0 0 0))
  4066. (uuid b09032ab-50da-4fd5-8f99-df6aa4c3bd9d)
  4067. )
  4068. (wire (pts (xy 43.18 182.245) (xy 45.085 182.245))
  4069. (stroke (width 0) (type default) (color 0 0 0 0))
  4070. (uuid b0cc76ff-9fe0-484e-9936-bd423c3b05d2)
  4071. )
  4072. (wire (pts (xy 219.71 34.925) (xy 222.25 34.925))
  4073. (stroke (width 0) (type default) (color 0 0 0 0))
  4074. (uuid b10e2662-edd5-47c3-b84f-be66163c429e)
  4075. )
  4076. (wire (pts (xy 188.595 221.615) (xy 190.5 221.615))
  4077. (stroke (width 0) (type default) (color 0 0 0 0))
  4078. (uuid b1749dc6-d75b-4fe1-9c65-9e67411dda98)
  4079. )
  4080. (wire (pts (xy 38.1 265.43) (xy 38.1 274.32))
  4081. (stroke (width 0) (type default) (color 0 0 0 0))
  4082. (uuid b2a434c2-b12c-4a34-840a-b53b5dc85566)
  4083. )
  4084. (wire (pts (xy 164.465 46.355) (xy 164.465 47.625))
  4085. (stroke (width 0) (type default) (color 0 0 0 0))
  4086. (uuid b2d151b2-9145-4041-8afc-a0d024a5fe6e)
  4087. )
  4088. (wire (pts (xy 314.96 51.435) (xy 314.96 70.485))
  4089. (stroke (width 0) (type default) (color 0 0 0 0))
  4090. (uuid b2d1520d-37e1-402a-9744-24f06cea5849)
  4091. )
  4092. (wire (pts (xy 188.595 160.655) (xy 190.5 160.655))
  4093. (stroke (width 0) (type default) (color 0 0 0 0))
  4094. (uuid b324294c-dba1-4575-8443-87b5042c4adc)
  4095. )
  4096. (wire (pts (xy 140.97 206.375) (xy 142.875 206.375))
  4097. (stroke (width 0) (type default) (color 0 0 0 0))
  4098. (uuid b3497a03-1b82-4a74-9961-2900c7afe402)
  4099. )
  4100. (wire (pts (xy 69.85 76.2) (xy 77.47 76.2))
  4101. (stroke (width 0) (type default) (color 0 0 0 0))
  4102. (uuid b3866171-3af9-42c7-a834-2bb9d51b9763)
  4103. )
  4104. (wire (pts (xy 140.97 196.215) (xy 142.875 196.215))
  4105. (stroke (width 0) (type default) (color 0 0 0 0))
  4106. (uuid b4b86290-4ceb-42ed-a4c5-e8cbb31e0232)
  4107. )
  4108. (wire (pts (xy 358.14 106.045) (xy 365.76 106.045))
  4109. (stroke (width 0) (type default) (color 0 0 0 0))
  4110. (uuid b55c8469-12a6-4576-b30f-513ca5f8a278)
  4111. )
  4112. (wire (pts (xy 188.595 158.115) (xy 190.5 158.115))
  4113. (stroke (width 0) (type default) (color 0 0 0 0))
  4114. (uuid b566357c-e0f6-4e29-bb8d-c1377f8be6ae)
  4115. )
  4116. (wire (pts (xy 324.485 220.98) (xy 324.485 226.06))
  4117. (stroke (width 0) (type default) (color 0 0 0 0))
  4118. (uuid b6263b3c-62b6-4052-afd1-2a0edd141611)
  4119. )
  4120. (wire (pts (xy 333.375 231.14) (xy 333.375 236.22))
  4121. (stroke (width 0) (type default) (color 0 0 0 0))
  4122. (uuid b6ce6547-5ec1-40a5-b113-31f77f25d356)
  4123. )
  4124. (wire (pts (xy 69.85 71.12) (xy 77.47 71.12))
  4125. (stroke (width 0) (type default) (color 0 0 0 0))
  4126. (uuid b7561863-185c-4c0a-95f9-75c3a01334db)
  4127. )
  4128. (wire (pts (xy 167.005 46.355) (xy 167.005 47.625))
  4129. (stroke (width 0) (type default) (color 0 0 0 0))
  4130. (uuid b7737631-697c-4004-865d-520a96063ddd)
  4131. )
  4132. (wire (pts (xy 488.95 140.335) (xy 488.95 142.875))
  4133. (stroke (width 0) (type default) (color 0 0 0 0))
  4134. (uuid b8009cb4-c1e7-4165-98da-26286fc94973)
  4135. )
  4136. (wire (pts (xy 165.735 125.73) (xy 167.005 125.73))
  4137. (stroke (width 0) (type default) (color 0 0 0 0))
  4138. (uuid b8825994-0a5f-48c2-af1d-c4ab4c7c6d8f)
  4139. )
  4140. (wire (pts (xy 490.22 139.065) (xy 490.22 137.795))
  4141. (stroke (width 0) (type default) (color 0 0 0 0))
  4142. (uuid b8b85187-8d5d-4872-ad4a-4be11b9259ea)
  4143. )
  4144. (wire (pts (xy 312.42 182.245) (xy 312.42 183.515))
  4145. (stroke (width 0) (type default) (color 0 0 0 0))
  4146. (uuid b90d9f73-d7a3-447d-bc9d-fa8306c2c785)
  4147. )
  4148. (wire (pts (xy 142.875 93.98) (xy 150.495 93.98))
  4149. (stroke (width 0) (type default) (color 0 0 0 0))
  4150. (uuid b9b360a6-fff2-4467-83ed-1e6baf6eccd6)
  4151. )
  4152. (wire (pts (xy 73.66 167.005) (xy 57.785 167.005))
  4153. (stroke (width 0) (type default) (color 0 0 0 0))
  4154. (uuid b9fc4864-89c7-43db-bf76-d00cd7748ac0)
  4155. )
  4156. (wire (pts (xy 45.085 159.385) (xy 37.465 159.385))
  4157. (stroke (width 0) (type default) (color 0 0 0 0))
  4158. (uuid babd07bf-48c8-4227-83aa-ee48b4ac45da)
  4159. )
  4160. (wire (pts (xy 188.595 178.435) (xy 190.5 178.435))
  4161. (stroke (width 0) (type default) (color 0 0 0 0))
  4162. (uuid bb4f776c-5c41-44dc-a810-a95b4c420294)
  4163. )
  4164. (wire (pts (xy 140.97 219.075) (xy 142.875 219.075))
  4165. (stroke (width 0) (type default) (color 0 0 0 0))
  4166. (uuid bd33a22e-b5e3-4b57-8b6f-183d8f495796)
  4167. )
  4168. (wire (pts (xy 297.18 183.515) (xy 297.18 172.085))
  4169. (stroke (width 0) (type default) (color 0 0 0 0))
  4170. (uuid bd41b8b1-429e-4fbf-94f9-f498b870e73b)
  4171. )
  4172. (wire (pts (xy 69.85 91.44) (xy 77.47 91.44))
  4173. (stroke (width 0) (type default) (color 0 0 0 0))
  4174. (uuid bd48640f-5563-4eeb-9641-7bf98bdbcc82)
  4175. )
  4176. (wire (pts (xy 266.065 252.73) (xy 274.955 252.73))
  4177. (stroke (width 0) (type default) (color 0 0 0 0))
  4178. (uuid be1ed6bc-b122-4963-afd6-7ad2f1980f10)
  4179. )
  4180. (wire (pts (xy 43.18 229.87) (xy 43.18 232.41))
  4181. (stroke (width 0) (type default) (color 0 0 0 0))
  4182. (uuid be315d47-a806-453b-b72f-07a7a63c4564)
  4183. )
  4184. (wire (pts (xy 161.925 125.73) (xy 161.925 127.635))
  4185. (stroke (width 0) (type default) (color 0 0 0 0))
  4186. (uuid be43e311-a169-4a91-b083-daac9b255c2a)
  4187. )
  4188. (wire (pts (xy 508 137.16) (xy 508 139.065))
  4189. (stroke (width 0) (type default) (color 0 0 0 0))
  4190. (uuid bee31f41-8eab-450f-845c-52d046ceb5c1)
  4191. )
  4192. (wire (pts (xy 188.595 163.195) (xy 190.5 163.195))
  4193. (stroke (width 0) (type default) (color 0 0 0 0))
  4194. (uuid bf48fddc-5933-4a30-8b6b-a82d6a28d2e3)
  4195. )
  4196. (wire (pts (xy 279.4 47.625) (xy 279.4 48.895))
  4197. (stroke (width 0) (type default) (color 0 0 0 0))
  4198. (uuid bf9929f7-a3b4-4af8-bdc3-208882e9f93e)
  4199. )
  4200. (wire (pts (xy 140.97 221.615) (xy 142.875 221.615))
  4201. (stroke (width 0) (type default) (color 0 0 0 0))
  4202. (uuid bffae3da-7d9f-492a-9f8a-38e6fc89536a)
  4203. )
  4204. (wire (pts (xy 240.03 40.005) (xy 240.03 41.275))
  4205. (stroke (width 0) (type default) (color 0 0 0 0))
  4206. (uuid c0065625-843d-46c6-be7d-a279b027df05)
  4207. )
  4208. (wire (pts (xy 18.415 76.2) (xy 34.29 76.2))
  4209. (stroke (width 0) (type default) (color 0 0 0 0))
  4210. (uuid c07fcde0-373f-431b-9d55-6b2e6e2b4760)
  4211. )
  4212. (wire (pts (xy 337.82 67.945) (xy 337.82 70.485))
  4213. (stroke (width 0) (type default) (color 0 0 0 0))
  4214. (uuid c08beba3-8d06-4c6f-b34b-728814931f75)
  4215. )
  4216. (wire (pts (xy 69.85 96.52) (xy 77.47 96.52))
  4217. (stroke (width 0) (type default) (color 0 0 0 0))
  4218. (uuid c0fb5dc9-631a-4b1e-9ccb-13761b592108)
  4219. )
  4220. (wire (pts (xy 18.415 71.12) (xy 34.29 71.12))
  4221. (stroke (width 0) (type default) (color 0 0 0 0))
  4222. (uuid c1345c02-7ce4-4f8d-974a-e494b3ad2557)
  4223. )
  4224. (wire (pts (xy 358.14 90.805) (xy 365.76 90.805))
  4225. (stroke (width 0) (type default) (color 0 0 0 0))
  4226. (uuid c1755c1c-9ae8-4345-9491-ce0d55d40377)
  4227. )
  4228. (wire (pts (xy 322.58 183.515) (xy 320.04 183.515))
  4229. (stroke (width 0) (type default) (color 0 0 0 0))
  4230. (uuid c1da8549-12e2-4ad7-b9fd-ee37e48a9b58)
  4231. )
  4232. (wire (pts (xy 59.69 174.625) (xy 57.785 174.625))
  4233. (stroke (width 0) (type default) (color 0 0 0 0))
  4234. (uuid c1ffe1a1-c48d-48d2-bdfd-087261fa88d4)
  4235. )
  4236. (wire (pts (xy 18.415 43.18) (xy 34.29 43.18))
  4237. (stroke (width 0) (type default) (color 0 0 0 0))
  4238. (uuid c285b3bc-3c3a-4ce4-8700-cc3efc39d310)
  4239. )
  4240. (wire (pts (xy 94.615 229.87) (xy 100.965 229.87))
  4241. (stroke (width 0) (type default) (color 0 0 0 0))
  4242. (uuid c432f8f0-4518-4048-9a01-4aba590cc1e8)
  4243. )
  4244. (wire (pts (xy 69.85 50.8) (xy 77.47 50.8))
  4245. (stroke (width 0) (type default) (color 0 0 0 0))
  4246. (uuid c4a29034-9523-4542-895a-2b27893a7375)
  4247. )
  4248. (wire (pts (xy 165.735 114.3) (xy 167.005 114.3))
  4249. (stroke (width 0) (type default) (color 0 0 0 0))
  4250. (uuid c553a682-5511-4170-ae33-95135e5a1bd3)
  4251. )
  4252. (wire (pts (xy 165.735 236.22) (xy 166.37 236.22))
  4253. (stroke (width 0) (type default) (color 0 0 0 0))
  4254. (uuid c67df346-6499-4da5-b03b-5472f3aeca2b)
  4255. )
  4256. (wire (pts (xy 57.15 232.41) (xy 57.15 229.87))
  4257. (stroke (width 0) (type default) (color 0 0 0 0))
  4258. (uuid c7d18bd0-507f-44d8-87b2-0942bf661995)
  4259. )
  4260. (wire (pts (xy 45.085 172.085) (xy 37.465 172.085))
  4261. (stroke (width 0) (type default) (color 0 0 0 0))
  4262. (uuid c7f84b4a-a4bc-408a-a8b8-0919de6ffc81)
  4263. )
  4264. (wire (pts (xy 330.835 210.82) (xy 339.725 210.82))
  4265. (stroke (width 0) (type default) (color 0 0 0 0))
  4266. (uuid c8474878-394d-4fcc-9e07-d2fdf286dd4d)
  4267. )
  4268. (wire (pts (xy 504.19 139.065) (xy 508 139.065))
  4269. (stroke (width 0) (type default) (color 0 0 0 0))
  4270. (uuid c86d7ead-75e7-40eb-b221-85d35e74fd87)
  4271. )
  4272. (wire (pts (xy 150.495 53.34) (xy 142.875 53.34))
  4273. (stroke (width 0) (type default) (color 0 0 0 0))
  4274. (uuid c94c4550-c9d3-4194-9dae-53b2d6308c95)
  4275. )
  4276. (wire (pts (xy 330.2 183.515) (xy 327.66 183.515))
  4277. (stroke (width 0) (type default) (color 0 0 0 0))
  4278. (uuid c96a74f8-72af-41a3-9007-e0a3218b2725)
  4279. )
  4280. (wire (pts (xy 320.675 231.14) (xy 321.945 231.14))
  4281. (stroke (width 0) (type default) (color 0 0 0 0))
  4282. (uuid c9acf4bf-8fd4-49ce-8e0f-c77ac63fe95a)
  4283. )
  4284. (wire (pts (xy 163.83 125.73) (xy 163.83 127.635))
  4285. (stroke (width 0) (type default) (color 0 0 0 0))
  4286. (uuid c9ae49a9-f1c6-487b-92d1-6e5fd4603157)
  4287. )
  4288. (wire (pts (xy 32.385 58.42) (xy 34.29 58.42))
  4289. (stroke (width 0) (type default) (color 0 0 0 0))
  4290. (uuid ca0440ae-f76e-4333-9fa1-88f735615cb4)
  4291. )
  4292. (wire (pts (xy 140.335 158.115) (xy 142.875 158.115))
  4293. (stroke (width 0) (type default) (color 0 0 0 0))
  4294. (uuid cb52449f-f743-46a3-8f4c-b08c54836339)
  4295. )
  4296. (wire (pts (xy 30.48 229.87) (xy 36.83 229.87))
  4297. (stroke (width 0) (type default) (color 0 0 0 0))
  4298. (uuid cb89000d-4e88-4ef3-8c92-fcfb23c3b0fa)
  4299. )
  4300. (wire (pts (xy 36.83 237.49) (xy 36.83 246.38))
  4301. (stroke (width 0) (type default) (color 0 0 0 0))
  4302. (uuid cc6a0a6d-af27-44ea-8319-150fab0ea653)
  4303. )
  4304. (wire (pts (xy 335.28 67.945) (xy 337.82 67.945))
  4305. (stroke (width 0) (type default) (color 0 0 0 0))
  4306. (uuid ccab8742-5b17-42f4-9d68-2337782d6b07)
  4307. )
  4308. (wire (pts (xy 320.675 215.9) (xy 321.945 215.9))
  4309. (stroke (width 0) (type default) (color 0 0 0 0))
  4310. (uuid cdbb251d-21cb-4116-b31a-104045fa2a1a)
  4311. )
  4312. (wire (pts (xy 285.75 174.625) (xy 285.75 183.515))
  4313. (stroke (width 0) (type default) (color 0 0 0 0))
  4314. (uuid cdded961-1c7b-45f1-a631-b8f8fb541767)
  4315. )
  4316. (wire (pts (xy 163.83 125.73) (xy 165.735 125.73))
  4317. (stroke (width 0) (type default) (color 0 0 0 0))
  4318. (uuid cf0bc1d4-5f7f-4276-af1f-df5539be5312)
  4319. )
  4320. (wire (pts (xy 43.18 237.49) (xy 43.18 246.38))
  4321. (stroke (width 0) (type default) (color 0 0 0 0))
  4322. (uuid cf26ac3f-68d7-46fd-aa2d-f1f26c5be289)
  4323. )
  4324. (wire (pts (xy 142.875 105.41) (xy 150.495 105.41))
  4325. (stroke (width 0) (type default) (color 0 0 0 0))
  4326. (uuid cffc61af-917f-4271-8497-242ca24327d2)
  4327. )
  4328. (wire (pts (xy 337.185 223.52) (xy 337.185 248.92))
  4329. (stroke (width 0) (type default) (color 0 0 0 0))
  4330. (uuid d022e8f3-ddb3-429f-94d4-7b64262f407d)
  4331. )
  4332. (wire (pts (xy 333.375 215.9) (xy 333.375 231.14))
  4333. (stroke (width 0) (type default) (color 0 0 0 0))
  4334. (uuid d0920aba-6877-42fa-935e-e12d1c0ca9bc)
  4335. )
  4336. (wire (pts (xy 322.58 67.945) (xy 325.12 67.945))
  4337. (stroke (width 0) (type default) (color 0 0 0 0))
  4338. (uuid d2ae9cdb-a2ec-4305-8c59-1c8a8106831c)
  4339. )
  4340. (wire (pts (xy 45.085 151.765) (xy 37.465 151.765))
  4341. (stroke (width 0) (type default) (color 0 0 0 0))
  4342. (uuid d2fa8277-5490-44b6-a237-28913802589b)
  4343. )
  4344. (wire (pts (xy 297.18 144.145) (xy 290.83 144.145))
  4345. (stroke (width 0) (type default) (color 0 0 0 0))
  4346. (uuid d38f755b-5810-48f1-bfd0-9833519329b5)
  4347. )
  4348. (wire (pts (xy 24.13 237.49) (xy 24.13 246.38))
  4349. (stroke (width 0) (type default) (color 0 0 0 0))
  4350. (uuid d3c292bf-f038-41ef-aed0-2922415410cd)
  4351. )
  4352. (wire (pts (xy 325.12 182.245) (xy 325.12 183.515))
  4353. (stroke (width 0) (type default) (color 0 0 0 0))
  4354. (uuid d3edc09a-8bec-4ba6-9c97-c797c2d08e3a)
  4355. )
  4356. (wire (pts (xy 140.97 208.915) (xy 142.875 208.915))
  4357. (stroke (width 0) (type default) (color 0 0 0 0))
  4358. (uuid d48313b3-b591-49b5-88ff-ef0e3e5e4021)
  4359. )
  4360. (wire (pts (xy 320.04 182.245) (xy 320.04 183.515))
  4361. (stroke (width 0) (type default) (color 0 0 0 0))
  4362. (uuid d54391e0-f5d6-4c46-a1d1-7011fd90b74c)
  4363. )
  4364. (wire (pts (xy 140.97 191.135) (xy 142.875 191.135))
  4365. (stroke (width 0) (type default) (color 0 0 0 0))
  4366. (uuid d73ad3a3-8aa5-4878-adfd-121441e16036)
  4367. )
  4368. (wire (pts (xy 140.97 178.435) (xy 142.875 178.435))
  4369. (stroke (width 0) (type default) (color 0 0 0 0))
  4370. (uuid d971c989-6baf-481e-b4a7-cba0171eaeb7)
  4371. )
  4372. (wire (pts (xy 284.48 114.935) (xy 284.48 116.205))
  4373. (stroke (width 0) (type default) (color 0 0 0 0))
  4374. (uuid d9f18af7-b32f-426f-9972-4079a7358969)
  4375. )
  4376. (wire (pts (xy 161.925 125.73) (xy 163.83 125.73))
  4377. (stroke (width 0) (type default) (color 0 0 0 0))
  4378. (uuid da636096-501f-48c5-bd51-d198ae974a06)
  4379. )
  4380. (wire (pts (xy 57.15 229.87) (xy 63.5 229.87))
  4381. (stroke (width 0) (type default) (color 0 0 0 0))
  4382. (uuid db1089ce-4e2d-44aa-9f35-7b17c3c5c64a)
  4383. )
  4384. (wire (pts (xy 140.97 203.835) (xy 142.875 203.835))
  4385. (stroke (width 0) (type default) (color 0 0 0 0))
  4386. (uuid dc78aecd-94bc-4dfe-99b1-21d78a652929)
  4387. )
  4388. (wire (pts (xy 38.1 260.35) (xy 38.1 257.81))
  4389. (stroke (width 0) (type default) (color 0 0 0 0))
  4390. (uuid dd391683-5fe6-4dd0-98cc-b4de1dd7d804)
  4391. )
  4392. (wire (pts (xy 292.1 57.785) (xy 292.1 66.675))
  4393. (stroke (width 0) (type default) (color 0 0 0 0))
  4394. (uuid dd4b8ebf-93bd-4bb3-a7f2-de845bc33aad)
  4395. )
  4396. (wire (pts (xy 281.94 48.895) (xy 283.21 48.895))
  4397. (stroke (width 0) (type default) (color 0 0 0 0))
  4398. (uuid de2903ef-0e4e-4865-b193-605db3ac7eef)
  4399. )
  4400. (wire (pts (xy 140.335 150.495) (xy 142.875 150.495))
  4401. (stroke (width 0) (type default) (color 0 0 0 0))
  4402. (uuid de4a78fe-1b98-4307-9414-02c4571d5d25)
  4403. )
  4404. (wire (pts (xy 362.585 236.22) (xy 365.125 236.22))
  4405. (stroke (width 0) (type default) (color 0 0 0 0))
  4406. (uuid deeeedcd-949a-4e6e-a540-011f8b9d2028)
  4407. )
  4408. (wire (pts (xy 30.48 232.41) (xy 30.48 229.87))
  4409. (stroke (width 0) (type default) (color 0 0 0 0))
  4410. (uuid df808960-3ca2-449a-8c89-8a0d1d1a8de6)
  4411. )
  4412. (wire (pts (xy 45.085 139.065) (xy 37.465 139.065))
  4413. (stroke (width 0) (type default) (color 0 0 0 0))
  4414. (uuid e3613985-a58b-49c9-b657-1a78373435c1)
  4415. )
  4416. (wire (pts (xy 69.85 63.5) (xy 77.47 63.5))
  4417. (stroke (width 0) (type default) (color 0 0 0 0))
  4418. (uuid e56b6c12-f7f9-481d-a3d6-64d47f9d3d41)
  4419. )
  4420. (wire (pts (xy 150.495 60.96) (xy 142.875 60.96))
  4421. (stroke (width 0) (type default) (color 0 0 0 0))
  4422. (uuid e61cb94e-e84f-431c-baa4-754e35d43b74)
  4423. )
  4424. (wire (pts (xy 297.18 52.705) (xy 297.18 48.895))
  4425. (stroke (width 0) (type default) (color 0 0 0 0))
  4426. (uuid e755d55d-b3e6-449e-a10c-20ffe0c227bc)
  4427. )
  4428. (wire (pts (xy 111.125 228.6) (xy 111.125 230.505))
  4429. (stroke (width 0) (type default) (color 0 0 0 0))
  4430. (uuid e763d0ee-1af1-4bd9-9ab3-0d5f4abcb04c)
  4431. )
  4432. (wire (pts (xy 140.97 165.735) (xy 142.875 165.735))
  4433. (stroke (width 0) (type default) (color 0 0 0 0))
  4434. (uuid e77d9a77-c981-41e0-873a-bdd3a8a10745)
  4435. )
  4436. (wire (pts (xy 94.615 232.41) (xy 94.615 229.87))
  4437. (stroke (width 0) (type default) (color 0 0 0 0))
  4438. (uuid e7b77ac9-df07-4e06-a60c-e45ee7ab8b65)
  4439. )
  4440. (wire (pts (xy 317.5 48.895) (xy 317.5 70.485))
  4441. (stroke (width 0) (type default) (color 0 0 0 0))
  4442. (uuid e86d178a-65e0-404a-a7eb-02205e7c13cb)
  4443. )
  4444. (wire (pts (xy 73.66 177.165) (xy 57.785 177.165))
  4445. (stroke (width 0) (type default) (color 0 0 0 0))
  4446. (uuid e878d513-ad25-4b1b-8f42-99df86f465f2)
  4447. )
  4448. (wire (pts (xy 18.415 60.96) (xy 34.29 60.96))
  4449. (stroke (width 0) (type default) (color 0 0 0 0))
  4450. (uuid e8dd0f87-8654-4428-a807-566a908e1bbc)
  4451. )
  4452. (wire (pts (xy 308.61 52.705) (xy 308.61 51.435))
  4453. (stroke (width 0) (type default) (color 0 0 0 0))
  4454. (uuid e98133aa-179f-4f49-b398-e5dd29c35fba)
  4455. )
  4456. (wire (pts (xy 297.18 48.895) (xy 292.1 48.895))
  4457. (stroke (width 0) (type default) (color 0 0 0 0))
  4458. (uuid e9f5a3ad-01a1-4540-ae9d-4c2cef9a72bb)
  4459. )
  4460. (wire (pts (xy 63.5 229.87) (xy 69.85 229.87))
  4461. (stroke (width 0) (type default) (color 0 0 0 0))
  4462. (uuid ea2dc07a-4771-43a1-8b8c-e14982fe844c)
  4463. )
  4464. (wire (pts (xy 375.285 210.82) (xy 386.715 210.82))
  4465. (stroke (width 0) (type default) (color 0 0 0 0))
  4466. (uuid ea7dd117-1f16-45b4-803e-e196bc0463f4)
  4467. )
  4468. (wire (pts (xy 21.59 228.6) (xy 21.59 229.87))
  4469. (stroke (width 0) (type default) (color 0 0 0 0))
  4470. (uuid eafc1d23-f89f-4e34-a1ce-3715020fa17a)
  4471. )
  4472. (wire (pts (xy 358.14 128.905) (xy 365.76 128.905))
  4473. (stroke (width 0) (type default) (color 0 0 0 0))
  4474. (uuid eb06f16f-f28d-445a-8458-5dc3b2729619)
  4475. )
  4476. (wire (pts (xy 320.675 218.44) (xy 323.215 218.44))
  4477. (stroke (width 0) (type default) (color 0 0 0 0))
  4478. (uuid eb92f5ae-bf42-49af-8418-a46513413e47)
  4479. )
  4480. (wire (pts (xy 303.53 52.705) (xy 303.53 51.435))
  4481. (stroke (width 0) (type default) (color 0 0 0 0))
  4482. (uuid ebbd777d-af5c-45ab-9f80-9fd42f552a01)
  4483. )
  4484. (wire (pts (xy 69.85 58.42) (xy 77.47 58.42))
  4485. (stroke (width 0) (type default) (color 0 0 0 0))
  4486. (uuid ecdcad33-ec9f-46fc-87d5-c7139fde9bba)
  4487. )
  4488. (wire (pts (xy 140.97 168.275) (xy 142.875 168.275))
  4489. (stroke (width 0) (type default) (color 0 0 0 0))
  4490. (uuid ecec01ed-b8fb-4931-97d4-2e6913554c0a)
  4491. )
  4492. (wire (pts (xy 349.885 220.98) (xy 349.885 226.06))
  4493. (stroke (width 0) (type default) (color 0 0 0 0))
  4494. (uuid ed06c6c1-001d-4aab-b73c-d5a9a0e7d4c1)
  4495. )
  4496. (wire (pts (xy 188.595 145.415) (xy 190.5 145.415))
  4497. (stroke (width 0) (type default) (color 0 0 0 0))
  4498. (uuid ed779af0-ac29-48e3-a6f3-deff36acc0c9)
  4499. )
  4500. (wire (pts (xy 45.085 136.525) (xy 37.465 136.525))
  4501. (stroke (width 0) (type default) (color 0 0 0 0))
  4502. (uuid eeba4974-2821-4900-b550-926fca8257b4)
  4503. )
  4504. (wire (pts (xy 57.785 136.525) (xy 65.405 136.525))
  4505. (stroke (width 0) (type default) (color 0 0 0 0))
  4506. (uuid eed94392-95cb-4ddc-8185-78a5bfb4848c)
  4507. )
  4508. (wire (pts (xy 50.8 229.87) (xy 57.15 229.87))
  4509. (stroke (width 0) (type default) (color 0 0 0 0))
  4510. (uuid ef67e1d8-aa80-4aae-b707-0afa6335c5c6)
  4511. )
  4512. (wire (pts (xy 27.94 157.48) (xy 27.94 161.925))
  4513. (stroke (width 0) (type default) (color 0 0 0 0))
  4514. (uuid ef6abec8-a532-47ac-9f80-caf770416a14)
  4515. )
  4516. (wire (pts (xy 150.495 71.12) (xy 142.875 71.12))
  4517. (stroke (width 0) (type default) (color 0 0 0 0))
  4518. (uuid efe3efe4-9c10-42be-981e-e8a644f48249)
  4519. )
  4520. (wire (pts (xy 339.725 210.82) (xy 367.665 210.82))
  4521. (stroke (width 0) (type default) (color 0 0 0 0))
  4522. (uuid f180737b-3529-4321-9cea-d22ca7e2fe8c)
  4523. )
  4524. (wire (pts (xy 150.495 86.36) (xy 142.875 86.36))
  4525. (stroke (width 0) (type default) (color 0 0 0 0))
  4526. (uuid f1862b3d-decc-4668-9ebd-fd11bf18ff7f)
  4527. )
  4528. (wire (pts (xy 150.495 78.74) (xy 142.875 78.74))
  4529. (stroke (width 0) (type default) (color 0 0 0 0))
  4530. (uuid f1af45bc-7143-4d5c-b0a6-b50643723f73)
  4531. )
  4532. (wire (pts (xy 45.085 154.305) (xy 37.465 154.305))
  4533. (stroke (width 0) (type default) (color 0 0 0 0))
  4534. (uuid f1be1beb-6d89-4955-b5b5-e2d8ea2c1ab4)
  4535. )
  4536. (wire (pts (xy 276.86 149.225) (xy 285.75 149.225))
  4537. (stroke (width 0) (type default) (color 0 0 0 0))
  4538. (uuid f249a95a-3ab4-44e4-accb-c1c3c661dcc1)
  4539. )
  4540. (wire (pts (xy 323.215 218.44) (xy 323.215 223.52))
  4541. (stroke (width 0) (type default) (color 0 0 0 0))
  4542. (uuid f3122752-8447-4b9c-96dc-1148e82dca3f)
  4543. )
  4544. (wire (pts (xy 188.595 213.995) (xy 190.5 213.995))
  4545. (stroke (width 0) (type default) (color 0 0 0 0))
  4546. (uuid f42940ef-569f-4a4b-8dad-427af9126f55)
  4547. )
  4548. (wire (pts (xy 69.85 101.6) (xy 77.47 101.6))
  4549. (stroke (width 0) (type default) (color 0 0 0 0))
  4550. (uuid f5aad740-4e2b-499a-9c5d-648e6e699d8d)
  4551. )
  4552. (wire (pts (xy 188.595 186.055) (xy 190.5 186.055))
  4553. (stroke (width 0) (type default) (color 0 0 0 0))
  4554. (uuid f5e5ae1d-5b36-4634-9089-3e3c0894aafb)
  4555. )
  4556. (wire (pts (xy 163.83 114.3) (xy 165.735 114.3))
  4557. (stroke (width 0) (type default) (color 0 0 0 0))
  4558. (uuid f5f9b766-9d8b-40a3-8c0d-0e3e3f4d14e7)
  4559. )
  4560. (wire (pts (xy 365.125 236.22) (xy 365.125 238.76))
  4561. (stroke (width 0) (type default) (color 0 0 0 0))
  4562. (uuid f606860b-c285-4462-8fd0-a3c1c496db3b)
  4563. )
  4564. (wire (pts (xy 335.28 183.515) (xy 335.28 184.785))
  4565. (stroke (width 0) (type default) (color 0 0 0 0))
  4566. (uuid f6f80138-a24c-47cf-b450-a891f7e4a860)
  4567. )
  4568. (wire (pts (xy 45.085 146.685) (xy 37.465 146.685))
  4569. (stroke (width 0) (type default) (color 0 0 0 0))
  4570. (uuid f747f2ed-cfb0-464a-b533-0322e422200a)
  4571. )
  4572. (wire (pts (xy 57.785 139.065) (xy 65.405 139.065))
  4573. (stroke (width 0) (type default) (color 0 0 0 0))
  4574. (uuid f75843a0-9321-4b43-9e8c-3f2fd2b7510d)
  4575. )
  4576. (wire (pts (xy 276.86 146.685) (xy 285.75 146.685))
  4577. (stroke (width 0) (type default) (color 0 0 0 0))
  4578. (uuid f8566e4a-282b-43a4-b62d-5ced953802b1)
  4579. )
  4580. (wire (pts (xy 241.935 27.305) (xy 241.935 32.385))
  4581. (stroke (width 0) (type default) (color 0 0 0 0))
  4582. (uuid f9403681-72e2-4a11-8dae-d8a2943cdb96)
  4583. )
  4584. (wire (pts (xy 76.2 237.49) (xy 76.2 246.38))
  4585. (stroke (width 0) (type default) (color 0 0 0 0))
  4586. (uuid f9837e52-e387-422a-8f27-eac295380687)
  4587. )
  4588. (wire (pts (xy 180.975 67.945) (xy 188.595 67.945))
  4589. (stroke (width 0) (type default) (color 0 0 0 0))
  4590. (uuid f9b46731-92fa-4bdb-b016-f628334a22ce)
  4591. )
  4592. (wire (pts (xy 140.97 183.515) (xy 142.875 183.515))
  4593. (stroke (width 0) (type default) (color 0 0 0 0))
  4594. (uuid fa1d97e6-0bbe-4f5e-b5d7-ce6cc57b552e)
  4595. )
  4596. (wire (pts (xy 64.135 267.335) (xy 64.135 276.225))
  4597. (stroke (width 0) (type default) (color 0 0 0 0))
  4598. (uuid fadc36f6-e760-463b-9170-dad02b30ef52)
  4599. )
  4600. (wire (pts (xy 297.18 83.185) (xy 278.13 83.185))
  4601. (stroke (width 0) (type default) (color 0 0 0 0))
  4602. (uuid fb52cffd-f056-48fb-bf59-6280a641676c)
  4603. )
  4604. (wire (pts (xy 69.85 43.18) (xy 77.47 43.18))
  4605. (stroke (width 0) (type default) (color 0 0 0 0))
  4606. (uuid fbeba94d-e910-4234-9d08-1501df4b96a4)
  4607. )
  4608. (wire (pts (xy 29.21 174.625) (xy 45.085 174.625))
  4609. (stroke (width 0) (type default) (color 0 0 0 0))
  4610. (uuid fced9e88-e510-4497-a6b7-820f9a332bea)
  4611. )
  4612. (wire (pts (xy 188.595 142.875) (xy 190.5 142.875))
  4613. (stroke (width 0) (type default) (color 0 0 0 0))
  4614. (uuid fd1741ad-c196-46a3-a28b-d584223c322d)
  4615. )
  4616. (wire (pts (xy 32.385 104.14) (xy 34.29 104.14))
  4617. (stroke (width 0) (type default) (color 0 0 0 0))
  4618. (uuid fd3f5f91-a942-49a2-a01c-9ec5db9fb63a)
  4619. )
  4620. (wire (pts (xy 88.265 232.41) (xy 88.265 229.87))
  4621. (stroke (width 0) (type default) (color 0 0 0 0))
  4622. (uuid fd5acf6e-c55d-4f9e-9022-2bbfc1dd75a7)
  4623. )
  4624. (wire (pts (xy 337.82 67.945) (xy 340.36 67.945))
  4625. (stroke (width 0) (type default) (color 0 0 0 0))
  4626. (uuid fd989a54-0a7d-4b84-92bb-f019ac6ff0bc)
  4627. )
  4628. (wire (pts (xy 337.185 248.92) (xy 349.885 248.92))
  4629. (stroke (width 0) (type default) (color 0 0 0 0))
  4630. (uuid fdaf3855-0edd-46b4-b789-78901291f9ff)
  4631. )
  4632. (wire (pts (xy 188.595 196.215) (xy 190.5 196.215))
  4633. (stroke (width 0) (type default) (color 0 0 0 0))
  4634. (uuid ff047315-f0dd-4b27-aefe-6e333a0f3b89)
  4635. )
  4636. (wire (pts (xy 81.915 232.41) (xy 81.915 229.87))
  4637. (stroke (width 0) (type default) (color 0 0 0 0))
  4638. (uuid ff3e6e2f-d0ea-45da-82cf-01a699034ffb)
  4639. )
  4640. (wire (pts (xy 140.97 216.535) (xy 142.875 216.535))
  4641. (stroke (width 0) (type default) (color 0 0 0 0))
  4642. (uuid ff4e8d71-578d-4bbe-a9b1-cd3f6343294d)
  4643. )
  4644. (text "3V3 REGULATOR" (at 248.158 278.765 0)
  4645. (effects (font (size 1.27 1.27) (thickness 0.254) bold) (justify left bottom))
  4646. (uuid be27adc3-55ef-4412-920d-d4d67023372c)
  4647. )
  4648. (label "MD1" (at 140.97 196.215 180)
  4649. (effects (font (size 1.27 1.27)) (justify right bottom))
  4650. (uuid 016c077f-8217-4ddd-b3c8-c6423f515441)
  4651. )
  4652. (label "~{RESET" (at 190.5 153.035 0)
  4653. (effects (font (size 1.27 1.27)) (justify left bottom))
  4654. (uuid 017c1785-c780-4be6-aec3-890485e8fbf1)
  4655. )
  4656. (label "A0" (at 142.875 53.34 0)
  4657. (effects (font (size 1.27 1.27)) (justify left bottom))
  4658. (uuid 01c6d6d6-13d7-4f89-9418-c73bdbcb6c03)
  4659. )
  4660. (label "A1" (at 190.5 175.895 0)
  4661. (effects (font (size 1.27 1.27)) (justify left bottom))
  4662. (uuid 02703669-3337-4064-9b3e-e6ddf6b383d9)
  4663. )
  4664. (label "A9" (at 365.76 103.505 180)
  4665. (effects (font (size 1.27 1.27)) (justify right bottom))
  4666. (uuid 037295a2-95d1-4ba8-8957-51f19045debd)
  4667. )
  4668. (label "D6" (at 37.465 159.385 0)
  4669. (effects (font (size 1.27 1.27)) (justify left bottom))
  4670. (uuid 044a2399-d1ad-46c9-bbb8-9046f1122bea)
  4671. )
  4672. (label "A3" (at 142.875 60.96 0)
  4673. (effects (font (size 1.27 1.27)) (justify left bottom))
  4674. (uuid 04c52fb4-3387-4f2e-8847-ee98df5437fe)
  4675. )
  4676. (label "~{RD" (at 140.335 160.655 180)
  4677. (effects (font (size 1.27 1.27)) (justify right bottom))
  4678. (uuid 055b1dae-b822-4623-b8f6-cec02d26dc8b)
  4679. )
  4680. (label "A10" (at 142.875 78.74 0)
  4681. (effects (font (size 1.27 1.27)) (justify left bottom))
  4682. (uuid 0686bc95-5818-4795-9da5-634383c89c17)
  4683. )
  4684. (label "DA2" (at 365.76 154.305 180)
  4685. (effects (font (size 1.27 1.27)) (justify right bottom))
  4686. (uuid 06a54511-5acb-4e58-96ff-716d885fc692)
  4687. )
  4688. (label "~{HALT" (at 29.21 179.705 0)
  4689. (effects (font (size 1.27 1.27)) (justify left bottom))
  4690. (uuid 06b0c600-13c6-4858-b74c-505968e80253)
  4691. )
  4692. (label "~{RESET" (at 73.66 172.085 180)
  4693. (effects (font (size 1.27 1.27)) (justify right bottom))
  4694. (uuid 06c5c130-4cd5-42e5-adad-7b4a72bcbce3)
  4695. )
  4696. (label "FT_nTXLED" (at 478.79 140.335 0)
  4697. (effects (font (size 1.27 1.27)) (justify left bottom))
  4698. (uuid 0cb49f47-e78f-4632-94ff-31252bc2828c)
  4699. )
  4700. (label "A13" (at 190.5 216.535 0)
  4701. (effects (font (size 1.27 1.27)) (justify left bottom))
  4702. (uuid 0efa5b4a-5eb3-4f9b-9273-65ed5c70d1da)
  4703. )
  4704. (label "D1" (at 77.47 88.9 180)
  4705. (effects (font (size 1.27 1.27)) (justify right bottom))
  4706. (uuid 0efadc8c-534e-4886-9f0e-e86db32265bd)
  4707. )
  4708. (label "A6" (at 77.47 58.42 180)
  4709. (effects (font (size 1.27 1.27)) (justify right bottom))
  4710. (uuid 10291e07-d81c-461e-be2c-a711b2f97122)
  4711. )
  4712. (label "D3" (at 190.5 191.135 0)
  4713. (effects (font (size 1.27 1.27)) (justify left bottom))
  4714. (uuid 10a7e473-3579-4622-99c1-ae5bfbd66236)
  4715. )
  4716. (label "A2" (at 77.47 48.26 180)
  4717. (effects (font (size 1.27 1.27)) (justify right bottom))
  4718. (uuid 1140b843-182a-4b8d-8729-16cb24eafbc6)
  4719. )
  4720. (label "OSCI" (at 289.56 156.845 0)
  4721. (effects (font (size 1.27 1.27)) (justify left bottom))
  4722. (uuid 11f83c63-6919-451f-b9be-bf51ab3850ba)
  4723. )
  4724. (label "MD6" (at 140.97 198.755 180)
  4725. (effects (font (size 1.27 1.27)) (justify right bottom))
  4726. (uuid 12636ccc-6d70-4bcd-9f81-e8bc2a0bac54)
  4727. )
  4728. (label "D3" (at 77.47 93.98 180)
  4729. (effects (font (size 1.27 1.27)) (justify right bottom))
  4730. (uuid 12d7f677-e0ba-4fbc-9be0-7ca6ff44d32d)
  4731. )
  4732. (label "DA2" (at 140.97 175.895 180)
  4733. (effects (font (size 1.27 1.27)) (justify right bottom))
  4734. (uuid 12f77f6d-498b-45ae-87ad-fa8d374ce125)
  4735. )
  4736. (label "~{M_OE}" (at 140.97 188.595 180)
  4737. (effects (font (size 1.27 1.27)) (justify right bottom))
  4738. (uuid 1413dee5-c1b0-4d84-90c9-1e85328adcc8)
  4739. )
  4740. (label "A13" (at 77.47 76.2 180)
  4741. (effects (font (size 1.27 1.27)) (justify right bottom))
  4742. (uuid 14426e19-ed4b-446b-bb74-66849ddcace3)
  4743. )
  4744. (label "MD5" (at 140.97 203.835 180)
  4745. (effects (font (size 1.27 1.27)) (justify right bottom))
  4746. (uuid 15fffed3-2612-4969-81fb-3f16bcd7ac2a)
  4747. )
  4748. (label "A14" (at 37.465 144.145 0)
  4749. (effects (font (size 1.27 1.27)) (justify left bottom))
  4750. (uuid 168ddb65-8a07-464d-855f-4ba9a3c80f97)
  4751. )
  4752. (label "A7" (at 77.47 60.96 180)
  4753. (effects (font (size 1.27 1.27)) (justify right bottom))
  4754. (uuid 17eaa0f6-14c6-4a85-809e-28d867c2f156)
  4755. )
  4756. (label "DA1" (at 365.76 151.765 180)
  4757. (effects (font (size 1.27 1.27)) (justify right bottom))
  4758. (uuid 19369b08-2c08-441d-826b-053e65e2d7bb)
  4759. )
  4760. (label "A5" (at 77.47 55.88 180)
  4761. (effects (font (size 1.27 1.27)) (justify right bottom))
  4762. (uuid 1bb8d55a-aece-41e9-b5ef-1446dc9a1ece)
  4763. )
  4764. (label "MD4" (at 140.97 208.915 180)
  4765. (effects (font (size 1.27 1.27)) (justify right bottom))
  4766. (uuid 1d45723a-3c84-43f9-b06b-fd95c59c08a8)
  4767. )
  4768. (label "A15" (at 37.465 146.685 0)
  4769. (effects (font (size 1.27 1.27)) (justify left bottom))
  4770. (uuid 1fa795b9-a1bd-4475-a120-18b2f2bf0971)
  4771. )
  4772. (label "~{Z_BUSRQ_1}" (at 190.5 147.955 0)
  4773. (effects (font (size 1.27 1.27)) (justify left bottom))
  4774. (uuid 2016d2c6-6ba0-4391-9988-58fe47482eda)
  4775. )
  4776. (label "A0" (at 77.47 43.18 180)
  4777. (effects (font (size 1.27 1.27)) (justify right bottom))
  4778. (uuid 20835f54-b45a-468b-ada6-be0e0e7673e8)
  4779. )
  4780. (label "A3" (at 65.405 154.305 180)
  4781. (effects (font (size 1.27 1.27)) (justify right bottom))
  4782. (uuid 20ab1a5f-0bd6-4d7b-bf7f-8917965afa04)
  4783. )
  4784. (label "A9" (at 65.405 139.065 180)
  4785. (effects (font (size 1.27 1.27)) (justify right bottom))
  4786. (uuid 20bc5485-90ff-4c1e-ac8c-1a8afa803a67)
  4787. )
  4788. (label "DA3" (at 140.97 178.435 180)
  4789. (effects (font (size 1.27 1.27)) (justify right bottom))
  4790. (uuid 224d70a2-3e4c-486d-92a3-eaaf9a9dd1e6)
  4791. )
  4792. (label "A1" (at 142.875 55.88 0)
  4793. (effects (font (size 1.27 1.27)) (justify left bottom))
  4794. (uuid 22df0b8b-eaec-479e-ad95-0492560e5d8f)
  4795. )
  4796. (label "A6" (at 190.5 203.835 0)
  4797. (effects (font (size 1.27 1.27)) (justify left bottom))
  4798. (uuid 22e6bbfc-d92f-4656-8bd9-2d8843ec5f9e)
  4799. )
  4800. (label "A12" (at 142.875 83.82 0)
  4801. (effects (font (size 1.27 1.27)) (justify left bottom))
  4802. (uuid 231666e1-b452-47f6-916c-0a277630eb54)
  4803. )
  4804. (label "D7" (at 365.76 141.605 180)
  4805. (effects (font (size 1.27 1.27)) (justify right bottom))
  4806. (uuid 2575174b-d3d1-4961-990f-4e5c3d659663)
  4807. )
  4808. (label "D6" (at 365.76 139.065 180)
  4809. (effects (font (size 1.27 1.27)) (justify right bottom))
  4810. (uuid 25cd4396-5ba1-4802-a656-88adf31fbc2a)
  4811. )
  4812. (label "~{Z_NMI_2}" (at 43.18 177.165 180)
  4813. (effects (font (size 1.27 1.27)) (justify right bottom))
  4814. (uuid 25e14c1e-9cd9-4195-b6f2-8791a43f6be8)
  4815. )
  4816. (label "A8" (at 365.76 100.965 180)
  4817. (effects (font (size 1.27 1.27)) (justify right bottom))
  4818. (uuid 2670d0b8-270e-4955-ad6a-5ef6491c0dde)
  4819. )
  4820. (label "~{WR" (at 73.66 182.245 180)
  4821. (effects (font (size 1.27 1.27)) (justify right bottom))
  4822. (uuid 288b5de1-c44f-4ca4-b7ed-0a92ae38b1e4)
  4823. )
  4824. (label "~{Z_BUSACK_2}" (at 59.69 179.705 0)
  4825. (effects (font (size 1.27 1.27)) (justify left bottom))
  4826. (uuid 29b55b7f-f621-4d7f-9ae9-9a730eaf562b)
  4827. )
  4828. (label "~{M_WE" (at 140.97 211.455 180)
  4829. (effects (font (size 1.27 1.27)) (justify right bottom))
  4830. (uuid 2bafef9a-7e09-4a54-b085-1c7c00f6d1f9)
  4831. )
  4832. (label "~{INT" (at 18.415 60.96 0)
  4833. (effects (font (size 1.27 1.27)) (justify left bottom))
  4834. (uuid 2d4ee208-c2f9-4f26-8a59-99f06e8252a8)
  4835. )
  4836. (label "A4" (at 65.405 151.765 180)
  4837. (effects (font (size 1.27 1.27)) (justify right bottom))
  4838. (uuid 2ee7fb19-028c-4413-b8a8-e4816a921955)
  4839. )
  4840. (label "A5" (at 65.405 149.225 180)
  4841. (effects (font (size 1.27 1.27)) (justify right bottom))
  4842. (uuid 2fc7c5df-d1bb-40c7-b620-0878c6b13bc2)
  4843. )
  4844. (label "~{M1}" (at 18.415 68.58 0)
  4845. (effects (font (size 1.27 1.27)) (justify left bottom))
  4846. (uuid 30871127-7c72-4ea6-abc1-3edd267af86c)
  4847. )
  4848. (label "~{RD" (at 18.415 86.36 0)
  4849. (effects (font (size 1.27 1.27)) (justify left bottom))
  4850. (uuid 30f90a5e-6ce7-47ae-85b2-8b1ab9c57f30)
  4851. )
  4852. (label "D5" (at 37.465 156.845 0)
  4853. (effects (font (size 1.27 1.27)) (justify left bottom))
  4854. (uuid 31063124-4c1a-4965-8b38-5485fa4ce597)
  4855. )
  4856. (label "A10" (at 77.47 68.58 180)
  4857. (effects (font (size 1.27 1.27)) (justify right bottom))
  4858. (uuid 3328fbc3-44fa-4bbf-9237-d6912956670e)
  4859. )
  4860. (label "~{Z_BUSACK_1}" (at 140.335 150.495 180)
  4861. (effects (font (size 1.27 1.27)) (justify right bottom))
  4862. (uuid 339d7460-1003-4912-a8d4-8d6b1ab54178)
  4863. )
  4864. (label "A13" (at 37.465 141.605 0)
  4865. (effects (font (size 1.27 1.27)) (justify left bottom))
  4866. (uuid 33b6ae03-c20d-4522-b282-24861f8746e6)
  4867. )
  4868. (label "~{IORQ" (at 29.21 184.785 0)
  4869. (effects (font (size 1.27 1.27)) (justify left bottom))
  4870. (uuid 34401112-c582-4a87-9155-8b137a320b3b)
  4871. )
  4872. (label "~{WR" (at 18.415 88.9 0)
  4873. (effects (font (size 1.27 1.27)) (justify left bottom))
  4874. (uuid 346cbbf9-a1b4-4011-96b3-ad8fb9b923b5)
  4875. )
  4876. (label "D6" (at 77.47 101.6 180)
  4877. (effects (font (size 1.27 1.27)) (justify right bottom))
  4878. (uuid 34a74bac-cf8e-465e-9fa8-fd8f7ab67882)
  4879. )
  4880. (label "~{INT" (at 190.5 150.495 0)
  4881. (effects (font (size 1.27 1.27)) (justify left bottom))
  4882. (uuid 35423bd2-ec71-4371-9795-33415332b582)
  4883. )
  4884. (label "TCK" (at 219.71 29.845 180)
  4885. (effects (font (size 1.27 1.27)) (justify right bottom))
  4886. (uuid 36c859a6-a5de-40f6-b200-6d18ba474652)
  4887. )
  4888. (label "A16" (at 142.875 93.98 0)
  4889. (effects (font (size 1.27 1.27)) (justify left bottom))
  4890. (uuid 373a20e4-2f27-464e-994c-ccb9e748febd)
  4891. )
  4892. (label "D1" (at 365.76 126.365 180)
  4893. (effects (font (size 1.27 1.27)) (justify right bottom))
  4894. (uuid 3742903e-4f3e-4f4f-b5f8-30ce3e5f473a)
  4895. )
  4896. (label "A7" (at 65.405 144.145 180)
  4897. (effects (font (size 1.27 1.27)) (justify right bottom))
  4898. (uuid 37d7fe96-b73e-4177-9cd5-1dccb9866c37)
  4899. )
  4900. (label "~{Z_BUSACK_1}" (at 32.385 104.14 180)
  4901. (effects (font (size 1.27 1.27)) (justify right bottom))
  4902. (uuid 38fb95c7-abf9-4156-9a6a-4daf65515259)
  4903. )
  4904. (label "DA0" (at 140.97 170.815 180)
  4905. (effects (font (size 1.27 1.27)) (justify right bottom))
  4906. (uuid 3b53ed25-8d44-4d74-a443-630fd638c8f5)
  4907. )
  4908. (label "A8" (at 65.405 141.605 180)
  4909. (effects (font (size 1.27 1.27)) (justify right bottom))
  4910. (uuid 3dda5e48-4410-4823-9359-3ebaedf9f933)
  4911. )
  4912. (label "~{Z_NMI_1}" (at 190.5 140.335 0)
  4913. (effects (font (size 1.27 1.27)) (justify left bottom))
  4914. (uuid 3e0f55da-8841-4845-ab37-ca10ed7d6a67)
  4915. )
  4916. (label "A1" (at 65.405 159.385 180)
  4917. (effects (font (size 1.27 1.27)) (justify right bottom))
  4918. (uuid 4171269c-2db5-4894-9bb9-b897c1c46a5f)
  4919. )
  4920. (label "A13" (at 142.875 86.36 0)
  4921. (effects (font (size 1.27 1.27)) (justify left bottom))
  4922. (uuid 433e8654-44e7-4dd2-b752-0856636777a7)
  4923. )
  4924. (label "~{WAIT" (at 140.97 145.415 180)
  4925. (effects (font (size 1.27 1.27)) (justify right bottom))
  4926. (uuid 44a5ed4d-dbb2-4c21-80a5-4794f73d8b20)
  4927. )
  4928. (label "OSCO" (at 289.56 167.005 0)
  4929. (effects (font (size 1.27 1.27)) (justify left bottom))
  4930. (uuid 46b23ff6-0b78-4502-ac3c-eef097bc64d3)
  4931. )
  4932. (label "~{RD" (at 73.66 184.785 180)
  4933. (effects (font (size 1.27 1.27)) (justify right bottom))
  4934. (uuid 47bc3016-4cfb-4b92-baef-81376dd5727f)
  4935. )
  4936. (label "A12" (at 37.465 139.065 0)
  4937. (effects (font (size 1.27 1.27)) (justify left bottom))
  4938. (uuid 49a06278-3ebf-4ef8-a0b4-c28f6ab72237)
  4939. )
  4940. (label "~{IORQ" (at 18.415 93.98 0)
  4941. (effects (font (size 1.27 1.27)) (justify left bottom))
  4942. (uuid 4d0155c6-2125-456d-a5c3-55101bce0d6f)
  4943. )
  4944. (label "D5" (at 190.5 183.515 0)
  4945. (effects (font (size 1.27 1.27)) (justify left bottom))
  4946. (uuid 4f2732b4-5ad5-4886-b619-b02b64641dd8)
  4947. )
  4948. (label "A11" (at 37.465 136.525 0)
  4949. (effects (font (size 1.27 1.27)) (justify left bottom))
  4950. (uuid 4f2c1ff0-f71d-433a-b910-9052bfd7751f)
  4951. )
  4952. (label "A6" (at 65.405 146.685 180)
  4953. (effects (font (size 1.27 1.27)) (justify right bottom))
  4954. (uuid 4ff55abc-cb5e-428e-9de0-74b47db13ee4)
  4955. )
  4956. (label "TDO" (at 190.5 165.735 0)
  4957. (effects (font (size 1.27 1.27)) (justify left bottom))
  4958. (uuid 501c46ca-80f8-43b5-a12b-383b47075502)
  4959. )
  4960. (label "TCK" (at 190.5 186.055 0)
  4961. (effects (font (size 1.27 1.27)) (justify left bottom))
  4962. (uuid 514b2727-c476-496d-83c8-3493aa0456a8)
  4963. )
  4964. (label "MD5" (at 188.595 65.405 180)
  4965. (effects (font (size 1.27 1.27)) (justify right bottom))
  4966. (uuid 51d9341b-e557-49b1-929c-5ab8da0f5e46)
  4967. )
  4968. (label "A0" (at 190.5 173.355 0)
  4969. (effects (font (size 1.27 1.27)) (justify left bottom))
  4970. (uuid 52b1b988-a7e3-4dbe-8de9-9e2badc5eb9d)
  4971. )
  4972. (label "A14" (at 190.5 211.455 0)
  4973. (effects (font (size 1.27 1.27)) (justify left bottom))
  4974. (uuid 5491f5ad-3fda-4679-ae0c-13a08573f681)
  4975. )
  4976. (label "A4" (at 190.5 193.675 0)
  4977. (effects (font (size 1.27 1.27)) (justify left bottom))
  4978. (uuid 557cbb30-b012-4735-81b4-202ac22a6291)
  4979. )
  4980. (label "A10" (at 365.76 106.045 180)
  4981. (effects (font (size 1.27 1.27)) (justify right bottom))
  4982. (uuid 55bbcc75-5b03-4c0b-b8d1-2182691acafb)
  4983. )
  4984. (label "D0" (at 365.76 123.825 180)
  4985. (effects (font (size 1.27 1.27)) (justify right bottom))
  4986. (uuid 565f539a-f733-408a-ba3c-2f96a91eb875)
  4987. )
  4988. (label "CLK2" (at 190.5 145.415 0)
  4989. (effects (font (size 1.27 1.27)) (justify left bottom))
  4990. (uuid 58417c77-165c-4852-9f87-2d74b9c8edee)
  4991. )
  4992. (label "A11" (at 142.875 81.28 0)
  4993. (effects (font (size 1.27 1.27)) (justify left bottom))
  4994. (uuid 58ef887a-4cb9-4326-a0f7-e152e9b61a42)
  4995. )
  4996. (label "EE_CLK" (at 190.5 142.875 0)
  4997. (effects (font (size 1.27 1.27)) (justify left bottom))
  4998. (uuid 5a3066b4-6a32-43af-993b-35e4eafb9dc1)
  4999. )
  5000. (label "A15" (at 142.875 91.44 0)
  5001. (effects (font (size 1.27 1.27)) (justify left bottom))
  5002. (uuid 5c1d3431-fac2-45ea-845e-d9a201cd76e5)
  5003. )
  5004. (label "A16" (at 140.97 180.975 180)
  5005. (effects (font (size 1.27 1.27)) (justify right bottom))
  5006. (uuid 5d9033ff-2f9c-4e3d-b1ff-7a11244d4926)
  5007. )
  5008. (label "A5" (at 142.875 66.04 0)
  5009. (effects (font (size 1.27 1.27)) (justify left bottom))
  5010. (uuid 5dddb0ba-4095-4f9b-a30a-c1a0b70b64b6)
  5011. )
  5012. (label "~{Z_BUSACK_2}" (at 140.97 216.535 180)
  5013. (effects (font (size 1.27 1.27)) (justify right bottom))
  5014. (uuid 5e61852b-26fc-428d-8379-e660a52bfab4)
  5015. )
  5016. (label "TDI" (at 219.71 40.005 180)
  5017. (effects (font (size 1.27 1.27)) (justify right bottom))
  5018. (uuid 5ec7ba37-5d7f-44b9-8ae5-7cab49f9d59e)
  5019. )
  5020. (label "A1" (at 77.47 45.72 180)
  5021. (effects (font (size 1.27 1.27)) (justify right bottom))
  5022. (uuid 5f5dd508-6821-433e-adb9-6f20b49336c8)
  5023. )
  5024. (label "A10" (at 190.5 224.155 0)
  5025. (effects (font (size 1.27 1.27)) (justify left bottom))
  5026. (uuid 61b20224-7f81-4a6a-9ae2-cb680dadbdc2)
  5027. )
  5028. (label "~{RFSH" (at 73.66 167.005 180)
  5029. (effects (font (size 1.27 1.27)) (justify right bottom))
  5030. (uuid 62ed8a4f-bc4b-4fde-ac08-17701ab2fd44)
  5031. )
  5032. (label "A7" (at 190.5 208.915 0)
  5033. (effects (font (size 1.27 1.27)) (justify left bottom))
  5034. (uuid 65ede8da-130a-4a81-aed8-5e40f90403b8)
  5035. )
  5036. (label "MD2" (at 140.97 201.295 180)
  5037. (effects (font (size 1.27 1.27)) (justify right bottom))
  5038. (uuid 66235ebb-2113-451c-9eec-70a5753d45d5)
  5039. )
  5040. (label "~{RESET" (at 18.415 43.18 0)
  5041. (effects (font (size 1.27 1.27)) (justify left bottom))
  5042. (uuid 667e6e22-99f9-4cd8-8474-2dbd14fb3bb0)
  5043. )
  5044. (label "TMS" (at 365.76 164.465 180)
  5045. (effects (font (size 1.27 1.27)) (justify right bottom))
  5046. (uuid 674adb28-3f1f-477b-93cf-330d6da3b242)
  5047. )
  5048. (label "DA1" (at 140.97 173.355 180)
  5049. (effects (font (size 1.27 1.27)) (justify right bottom))
  5050. (uuid 67be1bf2-4390-418f-9fec-545fc6fb43f9)
  5051. )
  5052. (label "A7" (at 142.875 71.12 0)
  5053. (effects (font (size 1.27 1.27)) (justify left bottom))
  5054. (uuid 68a8d33a-ba19-4826-aaee-d329f24fb894)
  5055. )
  5056. (label "D7" (at 37.465 167.005 0)
  5057. (effects (font (size 1.27 1.27)) (justify left bottom))
  5058. (uuid 68c3ada3-81db-4608-8715-4afc01bf5b4d)
  5059. )
  5060. (label "TDO" (at 219.71 32.385 180)
  5061. (effects (font (size 1.27 1.27)) (justify right bottom))
  5062. (uuid 68d71291-fb47-45a0-a7ad-c0383bdfaaa8)
  5063. )
  5064. (label "~{M1}" (at 73.66 169.545 180)
  5065. (effects (font (size 1.27 1.27)) (justify right bottom))
  5066. (uuid 6a592925-d5f5-4461-a2a5-eb8ff8c69e89)
  5067. )
  5068. (label "~{Z_CLK_2}" (at 43.18 149.225 180)
  5069. (effects (font (size 1.27 1.27)) (justify right bottom))
  5070. (uuid 6d4cc48f-a213-4ea4-8dab-8c6e6b35cab7)
  5071. )
  5072. (label "MD4" (at 188.595 62.865 180)
  5073. (effects (font (size 1.27 1.27)) (justify right bottom))
  5074. (uuid 6d73ef86-1a7a-44f2-b4f9-304d4b64e414)
  5075. )
  5076. (label "~{Z_NMI_1}" (at 32.385 58.42 180)
  5077. (effects (font (size 1.27 1.27)) (justify right bottom))
  5078. (uuid 6e1dc768-883b-4298-83d9-9a64fbeba880)
  5079. )
  5080. (label "TMS" (at 219.71 34.925 180)
  5081. (effects (font (size 1.27 1.27)) (justify right bottom))
  5082. (uuid 6e36b1ab-c414-450e-bfb8-ad3f2a4d55de)
  5083. )
  5084. (label "A8" (at 77.47 63.5 180)
  5085. (effects (font (size 1.27 1.27)) (justify right bottom))
  5086. (uuid 6eacfe76-8ad2-4a9d-99c0-1cbba2bb90ff)
  5087. )
  5088. (label "MD6" (at 188.595 67.945 180)
  5089. (effects (font (size 1.27 1.27)) (justify right bottom))
  5090. (uuid 6ffd9236-f463-4419-b901-e10eed7c3242)
  5091. )
  5092. (label "A15" (at 365.76 118.745 180)
  5093. (effects (font (size 1.27 1.27)) (justify right bottom))
  5094. (uuid 71b179ec-a9c5-4334-8a0d-c583c2901559)
  5095. )
  5096. (label "A2" (at 65.405 156.845 180)
  5097. (effects (font (size 1.27 1.27)) (justify right bottom))
  5098. (uuid 744b7f61-ee4e-4513-a2f2-ddf2f26558ed)
  5099. )
  5100. (label "MD2" (at 188.595 57.785 180)
  5101. (effects (font (size 1.27 1.27)) (justify right bottom))
  5102. (uuid 74b9c0a1-ed3a-4bbd-8e1f-94958a6e84da)
  5103. )
  5104. (label "A15" (at 190.5 206.375 0)
  5105. (effects (font (size 1.27 1.27)) (justify left bottom))
  5106. (uuid 7584819d-a907-4326-8921-2020b830a01f)
  5107. )
  5108. (label "A14" (at 142.875 88.9 0)
  5109. (effects (font (size 1.27 1.27)) (justify left bottom))
  5110. (uuid 779be434-574b-40d9-9fa0-8cdc30a97e91)
  5111. )
  5112. (label "~{Z_BUSRQ_1}" (at 32.385 101.6 180)
  5113. (effects (font (size 1.27 1.27)) (justify right bottom))
  5114. (uuid 7a019e3f-f2a2-431b-88a7-9ab271a55883)
  5115. )
  5116. (label "D4" (at 37.465 151.765 0)
  5117. (effects (font (size 1.27 1.27)) (justify left bottom))
  5118. (uuid 7cdc8cff-7453-46d8-bf8f-bfe5fd857d77)
  5119. )
  5120. (label "A13" (at 365.76 113.665 180)
  5121. (effects (font (size 1.27 1.27)) (justify right bottom))
  5122. (uuid 7e38e4c9-3035-48a7-b49b-4ea124fcd0d7)
  5123. )
  5124. (label "A15" (at 77.47 81.28 180)
  5125. (effects (font (size 1.27 1.27)) (justify right bottom))
  5126. (uuid 7e859eb8-045b-422b-9d5c-da272fed1e78)
  5127. )
  5128. (label "A7" (at 365.76 95.885 180)
  5129. (effects (font (size 1.27 1.27)) (justify right bottom))
  5130. (uuid 7f9131be-3b17-463e-9ff7-1c8753b17b85)
  5131. )
  5132. (label "A4" (at 142.875 63.5 0)
  5133. (effects (font (size 1.27 1.27)) (justify left bottom))
  5134. (uuid 813d658f-bdcc-49e0-b47e-0e65c5303186)
  5135. )
  5136. (label "D3" (at 37.465 154.305 0)
  5137. (effects (font (size 1.27 1.27)) (justify left bottom))
  5138. (uuid 825854fe-4c41-4536-9b74-a854c0f7cfa1)
  5139. )
  5140. (label "~{Z_BUSRQ_2}" (at 140.97 221.615 180)
  5141. (effects (font (size 1.27 1.27)) (justify right bottom))
  5142. (uuid 82b88190-0c7d-442d-8221-0f0e60565747)
  5143. )
  5144. (label "A2" (at 365.76 83.185 180)
  5145. (effects (font (size 1.27 1.27)) (justify right bottom))
  5146. (uuid 847d66ef-6e65-43de-b8dc-23a6f0a9c0b5)
  5147. )
  5148. (label "D2" (at 37.465 164.465 0)
  5149. (effects (font (size 1.27 1.27)) (justify left bottom))
  5150. (uuid 86b8abeb-7142-462b-84c5-fabf2d64cf5b)
  5151. )
  5152. (label "~{HALT" (at 18.415 76.2 0)
  5153. (effects (font (size 1.27 1.27)) (justify left bottom))
  5154. (uuid 879b5e91-aaa4-4bf5-ad48-797e31a3f81c)
  5155. )
  5156. (label "A0" (at 365.76 78.105 180)
  5157. (effects (font (size 1.27 1.27)) (justify right bottom))
  5158. (uuid 87de67df-3850-4831-bda5-8c944db70d8a)
  5159. )
  5160. (label "~{M_CE}" (at 140.97 183.515 180)
  5161. (effects (font (size 1.27 1.27)) (justify right bottom))
  5162. (uuid 8bb08a12-c7b3-4b4a-a849-654ccacfc497)
  5163. )
  5164. (label "A10" (at 65.405 136.525 180)
  5165. (effects (font (size 1.27 1.27)) (justify right bottom))
  5166. (uuid 8bc9a64a-7507-46bd-96c2-edf37f36f825)
  5167. )
  5168. (label "D0" (at 77.47 86.36 180)
  5169. (effects (font (size 1.27 1.27)) (justify right bottom))
  5170. (uuid 8c7a4095-70f6-4c3d-9f6f-08ac43818997)
  5171. )
  5172. (label "MD3" (at 188.595 60.325 180)
  5173. (effects (font (size 1.27 1.27)) (justify right bottom))
  5174. (uuid 8de9381d-320e-4782-b83b-046e717bce53)
  5175. )
  5176. (label "MD7" (at 188.595 70.485 180)
  5177. (effects (font (size 1.27 1.27)) (justify right bottom))
  5178. (uuid 8e7d40d4-69f7-47f3-8a3f-1131a5c5bff5)
  5179. )
  5180. (label "D2" (at 77.47 91.44 180)
  5181. (effects (font (size 1.27 1.27)) (justify right bottom))
  5182. (uuid 8e8b5348-61cd-431e-a570-1304532bdb80)
  5183. )
  5184. (label "TCK" (at 365.76 159.385 180)
  5185. (effects (font (size 1.27 1.27)) (justify right bottom))
  5186. (uuid 8f6c5b3b-6e71-4f81-90e3-d4bda9daded6)
  5187. )
  5188. (label "CLK2" (at 365.76 146.685 180)
  5189. (effects (font (size 1.27 1.27)) (justify right bottom))
  5190. (uuid 8f742776-2d56-42f0-951e-4f3099584454)
  5191. )
  5192. (label "D2" (at 365.76 128.905 180)
  5193. (effects (font (size 1.27 1.27)) (justify right bottom))
  5194. (uuid 8f769dbb-3d3d-4c50-80c3-f71a0d3fbd3f)
  5195. )
  5196. (label "~{INT" (at 29.21 174.625 0)
  5197. (effects (font (size 1.27 1.27)) (justify left bottom))
  5198. (uuid 8f774183-9e00-42a1-ade8-425551929bec)
  5199. )
  5200. (label "~{M_CE}" (at 142.875 107.95 0)
  5201. (effects (font (size 1.27 1.27)) (justify left bottom))
  5202. (uuid 91a775a3-8af1-466f-844c-0c7f947dfcce)
  5203. )
  5204. (label "~{Z_MREQ_2}" (at 140.97 213.995 180)
  5205. (effects (font (size 1.27 1.27)) (justify right bottom))
  5206. (uuid 92171f5b-54fe-4c8e-ae38-ddc7ffd3121d)
  5207. )
  5208. (label "EE_DATA" (at 140.97 168.275 180)
  5209. (effects (font (size 1.27 1.27)) (justify right bottom))
  5210. (uuid 96424d8c-fca8-4257-ba8a-8195ac73ec88)
  5211. )
  5212. (label "A4" (at 365.76 88.265 180)
  5213. (effects (font (size 1.27 1.27)) (justify right bottom))
  5214. (uuid 9809c1ec-8ba7-451b-8f46-468e1ed81c63)
  5215. )
  5216. (label "~{M_WE" (at 142.875 102.87 0)
  5217. (effects (font (size 1.27 1.27)) (justify left bottom))
  5218. (uuid 9b8f25c2-42de-498d-a68f-713a69642a9e)
  5219. )
  5220. (label "A2" (at 190.5 180.975 0)
  5221. (effects (font (size 1.27 1.27)) (justify left bottom))
  5222. (uuid 9e2bc80d-771b-45ae-bb55-5fc4010624ea)
  5223. )
  5224. (label "~{WR" (at 140.335 155.575 180)
  5225. (effects (font (size 1.27 1.27)) (justify right bottom))
  5226. (uuid 9e5c0a70-2e6d-449d-88d1-20be3bd17b69)
  5227. )
  5228. (label "~{M1}" (at 190.5 158.115 0)
  5229. (effects (font (size 1.27 1.27)) (justify left bottom))
  5230. (uuid 9f81be38-4d85-4e65-9c44-8ffee6c5337f)
  5231. )
  5232. (label "EE_CLK" (at 276.86 146.685 180)
  5233. (effects (font (size 1.27 1.27)) (justify right bottom))
  5234. (uuid a16c88ef-20c3-4b46-9ed1-1f2fba60d9fb)
  5235. )
  5236. (label "D3" (at 365.76 131.445 180)
  5237. (effects (font (size 1.27 1.27)) (justify right bottom))
  5238. (uuid a206e6ca-563c-4c62-b506-53726c2fc223)
  5239. )
  5240. (label "D0" (at 37.465 169.545 0)
  5241. (effects (font (size 1.27 1.27)) (justify left bottom))
  5242. (uuid a2ec4027-fa8b-4ee9-8868-3c43e4592dd8)
  5243. )
  5244. (label "A3" (at 190.5 188.595 0)
  5245. (effects (font (size 1.27 1.27)) (justify left bottom))
  5246. (uuid a4389ace-3e1f-43b7-801b-16cfb5533943)
  5247. )
  5248. (label "A9" (at 190.5 219.075 0)
  5249. (effects (font (size 1.27 1.27)) (justify left bottom))
  5250. (uuid a466b32d-667d-4383-8712-674114677eb8)
  5251. )
  5252. (label "D4" (at 190.5 196.215 0)
  5253. (effects (font (size 1.27 1.27)) (justify left bottom))
  5254. (uuid a5085056-9a7f-4966-8c4f-408d37cacb0e)
  5255. )
  5256. (label "~{Z_BUSRQ_2}" (at 59.69 174.625 0)
  5257. (effects (font (size 1.27 1.27)) (justify left bottom))
  5258. (uuid a8291c6a-0990-4390-8188-a21165bff23e)
  5259. )
  5260. (label "~{M_OE}" (at 142.875 105.41 0)
  5261. (effects (font (size 1.27 1.27)) (justify left bottom))
  5262. (uuid a93a5029-0f0a-4932-899b-67b98b858829)
  5263. )
  5264. (label "D7" (at 77.47 104.14 180)
  5265. (effects (font (size 1.27 1.27)) (justify right bottom))
  5266. (uuid aa9e8aa6-b33e-4558-ad1d-9e1ecc0335b7)
  5267. )
  5268. (label "A12" (at 77.47 73.66 180)
  5269. (effects (font (size 1.27 1.27)) (justify right bottom))
  5270. (uuid abffa123-1b91-4da7-8106-2166d46717d8)
  5271. )
  5272. (label "D1" (at 37.465 172.085 0)
  5273. (effects (font (size 1.27 1.27)) (justify left bottom))
  5274. (uuid aca6de47-207a-4289-ab4e-05387c390274)
  5275. )
  5276. (label "MD7" (at 140.97 193.675 180)
  5277. (effects (font (size 1.27 1.27)) (justify right bottom))
  5278. (uuid adc19d0f-1336-4494-87b0-f20ad4ecca23)
  5279. )
  5280. (label "~{Z_MREQ_1}" (at 32.385 91.44 180)
  5281. (effects (font (size 1.27 1.27)) (justify right bottom))
  5282. (uuid aec59fb8-6af7-444f-bcab-3f17cde71af1)
  5283. )
  5284. (label "D5" (at 365.76 136.525 180)
  5285. (effects (font (size 1.27 1.27)) (justify right bottom))
  5286. (uuid b04cc6da-af73-43cb-8a3f-145787a4328e)
  5287. )
  5288. (label "A2" (at 142.875 58.42 0)
  5289. (effects (font (size 1.27 1.27)) (justify left bottom))
  5290. (uuid b1862e7d-cfe6-4c38-ade1-7b5bdba9e490)
  5291. )
  5292. (label "TDI" (at 365.76 156.845 180)
  5293. (effects (font (size 1.27 1.27)) (justify right bottom))
  5294. (uuid b2b69fad-7c80-4ef9-9f83-1e426557f892)
  5295. )
  5296. (label "A0" (at 65.405 161.925 180)
  5297. (effects (font (size 1.27 1.27)) (justify right bottom))
  5298. (uuid b336fa7a-b140-46bc-bc08-26467f596b92)
  5299. )
  5300. (label "~{HALT" (at 140.97 147.955 180)
  5301. (effects (font (size 1.27 1.27)) (justify right bottom))
  5302. (uuid b49b45c9-3b43-4b14-9cf8-3422b0dfdef5)
  5303. )
  5304. (label "~{RFSH" (at 190.5 163.195 0)
  5305. (effects (font (size 1.27 1.27)) (justify left bottom))
  5306. (uuid b6063256-811c-4242-bc0f-cffb9975ba11)
  5307. )
  5308. (label "D4" (at 365.76 133.985 180)
  5309. (effects (font (size 1.27 1.27)) (justify right bottom))
  5310. (uuid b82f1777-4fbc-493c-9e9d-313a4ca64893)
  5311. )
  5312. (label "A11" (at 140.97 224.155 180)
  5313. (effects (font (size 1.27 1.27)) (justify right bottom))
  5314. (uuid b9b2f055-436c-4a7f-a0e2-95101d8d5b4c)
  5315. )
  5316. (label "D5" (at 77.47 99.06 180)
  5317. (effects (font (size 1.27 1.27)) (justify right bottom))
  5318. (uuid b9e565a7-629e-4551-9593-4a57021fc520)
  5319. )
  5320. (label "D1" (at 190.5 155.575 0)
  5321. (effects (font (size 1.27 1.27)) (justify left bottom))
  5322. (uuid bdd703c4-1d9b-4b76-b430-700bd1dc8d16)
  5323. )
  5324. (label "DA0" (at 365.76 149.225 180)
  5325. (effects (font (size 1.27 1.27)) (justify right bottom))
  5326. (uuid bed66e51-624b-442e-bc87-56c5517b5c6e)
  5327. )
  5328. (label "D2" (at 190.5 170.815 0)
  5329. (effects (font (size 1.27 1.27)) (justify left bottom))
  5330. (uuid bfa6c75b-cb42-42fb-a6d7-5e765470e04e)
  5331. )
  5332. (label "~{Z_MREQ_2}" (at 43.18 182.245 180)
  5333. (effects (font (size 1.27 1.27)) (justify right bottom))
  5334. (uuid c097c9bb-b1c9-411c-908e-bcdb840ce8f8)
  5335. )
  5336. (label "TMS" (at 140.97 186.055 180)
  5337. (effects (font (size 1.27 1.27)) (justify right bottom))
  5338. (uuid c1656be9-fa55-4850-9bd1-ef146db208b9)
  5339. )
  5340. (label "A3" (at 365.76 85.725 180)
  5341. (effects (font (size 1.27 1.27)) (justify right bottom))
  5342. (uuid c1b03ca6-25dc-489d-a683-fef50d0ed989)
  5343. )
  5344. (label "A6" (at 142.875 68.58 0)
  5345. (effects (font (size 1.27 1.27)) (justify left bottom))
  5346. (uuid c4b560fc-d673-43d7-8931-9781cff558a6)
  5347. )
  5348. (label "A3" (at 77.47 50.8 180)
  5349. (effects (font (size 1.27 1.27)) (justify right bottom))
  5350. (uuid c5a3b88b-7dda-4ae5-a78b-74c62dcd106e)
  5351. )
  5352. (label "~{WAIT" (at 18.415 73.66 0)
  5353. (effects (font (size 1.27 1.27)) (justify left bottom))
  5354. (uuid c623a374-c4bb-4d0e-9f6c-91fc321eb113)
  5355. )
  5356. (label "~{Z_CLK_1}" (at 32.385 50.8 180)
  5357. (effects (font (size 1.27 1.27)) (justify right bottom))
  5358. (uuid c6e11bbb-ad16-41c9-8c29-d343abcfde4c)
  5359. )
  5360. (label "A5" (at 190.5 198.755 0)
  5361. (effects (font (size 1.27 1.27)) (justify left bottom))
  5362. (uuid cd303d74-2cc3-4ef3-8243-2041981c9782)
  5363. )
  5364. (label "A11" (at 365.76 108.585 180)
  5365. (effects (font (size 1.27 1.27)) (justify right bottom))
  5366. (uuid cdd91691-e7a5-4a7e-af06-1a51df9293ff)
  5367. )
  5368. (label "A8" (at 142.875 73.66 0)
  5369. (effects (font (size 1.27 1.27)) (justify left bottom))
  5370. (uuid ce26aadb-a05f-4b45-9f51-9ddf7e51a4dd)
  5371. )
  5372. (label "A14" (at 77.47 78.74 180)
  5373. (effects (font (size 1.27 1.27)) (justify right bottom))
  5374. (uuid d05b16da-d04a-45a4-9aa0-31f4178b7280)
  5375. )
  5376. (label "A11" (at 77.47 71.12 180)
  5377. (effects (font (size 1.27 1.27)) (justify right bottom))
  5378. (uuid d0b40821-72c5-4527-85a2-ce1fcd0a5d9a)
  5379. )
  5380. (label "A5" (at 365.76 90.805 180)
  5381. (effects (font (size 1.27 1.27)) (justify right bottom))
  5382. (uuid d247401f-922c-481f-9cd6-2d8604d46439)
  5383. )
  5384. (label "MD3" (at 140.97 206.375 180)
  5385. (effects (font (size 1.27 1.27)) (justify right bottom))
  5386. (uuid d2923d04-4dea-4e61-97b3-12094dc50312)
  5387. )
  5388. (label "~{WAIT" (at 73.66 177.165 180)
  5389. (effects (font (size 1.27 1.27)) (justify right bottom))
  5390. (uuid d6f26e93-120d-40a7-8415-4217205b208e)
  5391. )
  5392. (label "~{RFSH" (at 18.415 71.12 0)
  5393. (effects (font (size 1.27 1.27)) (justify left bottom))
  5394. (uuid d726b6f8-a1df-43f7-a137-53ac2e1abd29)
  5395. )
  5396. (label "A6" (at 365.76 93.345 180)
  5397. (effects (font (size 1.27 1.27)) (justify right bottom))
  5398. (uuid dbe6be7b-854c-4ae6-ac01-b753252902d2)
  5399. )
  5400. (label "EE_CS" (at 140.97 163.195 180)
  5401. (effects (font (size 1.27 1.27)) (justify right bottom))
  5402. (uuid dc2a4a8e-2dc0-4a30-84be-6b62536ba09c)
  5403. )
  5404. (label "A12" (at 365.76 111.125 180)
  5405. (effects (font (size 1.27 1.27)) (justify right bottom))
  5406. (uuid dca73153-da63-4d7e-b852-d7b4ed3c900d)
  5407. )
  5408. (label "A14" (at 365.76 116.205 180)
  5409. (effects (font (size 1.27 1.27)) (justify right bottom))
  5410. (uuid ddc774ae-a2c7-47a5-a3bc-f64c4c95e7f9)
  5411. )
  5412. (label "A12" (at 190.5 221.615 0)
  5413. (effects (font (size 1.27 1.27)) (justify left bottom))
  5414. (uuid e00361cd-73de-4b17-80f5-850b29a67cff)
  5415. )
  5416. (label "A8" (at 190.5 213.995 0)
  5417. (effects (font (size 1.27 1.27)) (justify left bottom))
  5418. (uuid e078e6ef-c89b-42db-8f24-af2fb5bede20)
  5419. )
  5420. (label "~{Z_CLK_1}" (at 190.5 201.295 0)
  5421. (effects (font (size 1.27 1.27)) (justify left bottom))
  5422. (uuid e0bf599d-c7ab-4da0-b521-b95f50637035)
  5423. )
  5424. (label "A4" (at 77.47 53.34 180)
  5425. (effects (font (size 1.27 1.27)) (justify right bottom))
  5426. (uuid e114b46b-a959-40c5-ae81-a4b4b9bc9809)
  5427. )
  5428. (label "D6" (at 190.5 178.435 0)
  5429. (effects (font (size 1.27 1.27)) (justify left bottom))
  5430. (uuid e1a7758e-8124-473f-8834-c2d13d8ddd2a)
  5431. )
  5432. (label "~{Z_MREQ_1}" (at 140.335 153.035 180)
  5433. (effects (font (size 1.27 1.27)) (justify right bottom))
  5434. (uuid e3347264-2757-48b7-9680-b1b72a4b2705)
  5435. )
  5436. (label "A9" (at 142.875 76.2 0)
  5437. (effects (font (size 1.27 1.27)) (justify left bottom))
  5438. (uuid e334e1e0-f181-43f9-9bc7-af32d202937c)
  5439. )
  5440. (label "EE_CS" (at 276.86 144.145 180)
  5441. (effects (font (size 1.27 1.27)) (justify right bottom))
  5442. (uuid e39d0699-3fdc-4ebb-9aa0-ef3160c2333e)
  5443. )
  5444. (label "A9" (at 77.47 66.04 180)
  5445. (effects (font (size 1.27 1.27)) (justify right bottom))
  5446. (uuid e3bce4f3-c90d-40f6-8290-6d3a2c3bdbae)
  5447. )
  5448. (label "MD1" (at 188.595 55.245 180)
  5449. (effects (font (size 1.27 1.27)) (justify right bottom))
  5450. (uuid e54e5b47-4cc0-4baf-b525-23d3af98b39c)
  5451. )
  5452. (label "D7" (at 190.5 168.275 0)
  5453. (effects (font (size 1.27 1.27)) (justify left bottom))
  5454. (uuid e834a77c-c9ef-44fb-8559-0aca0060b02e)
  5455. )
  5456. (label "~{Z_CLK_2}" (at 140.97 142.875 180)
  5457. (effects (font (size 1.27 1.27)) (justify right bottom))
  5458. (uuid e9934e1f-5e47-45e5-a81c-1b0855e42642)
  5459. )
  5460. (label "D4" (at 77.47 96.52 180)
  5461. (effects (font (size 1.27 1.27)) (justify right bottom))
  5462. (uuid e9f84def-bc98-4833-aaf2-2379142272f7)
  5463. )
  5464. (label "~{Z_NMI_2}" (at 140.97 219.075 180)
  5465. (effects (font (size 1.27 1.27)) (justify right bottom))
  5466. (uuid ec7e39e6-d275-4f4d-991c-585691826409)
  5467. )
  5468. (label "EE_DATA" (at 276.86 149.225 180)
  5469. (effects (font (size 1.27 1.27)) (justify right bottom))
  5470. (uuid ec9263df-1a2d-4f7f-9f30-c0a54f118119)
  5471. )
  5472. (label "MD0" (at 188.595 52.705 180)
  5473. (effects (font (size 1.27 1.27)) (justify right bottom))
  5474. (uuid eda00f8b-48de-4df3-b850-5a2ae12d0443)
  5475. )
  5476. (label "A1" (at 365.76 80.645 180)
  5477. (effects (font (size 1.27 1.27)) (justify right bottom))
  5478. (uuid eef491dc-72a5-48f3-a232-d0c0ce66832b)
  5479. )
  5480. (label "D0" (at 190.5 160.655 0)
  5481. (effects (font (size 1.27 1.27)) (justify left bottom))
  5482. (uuid f1350c22-f5d4-4dff-8785-a3d9e663637c)
  5483. )
  5484. (label "FT_nRXLED" (at 478.79 137.795 0)
  5485. (effects (font (size 1.27 1.27)) (justify left bottom))
  5486. (uuid f2fb07a6-7911-4ea4-8d33-00b060df0950)
  5487. )
  5488. (label "TDO" (at 365.76 161.925 180)
  5489. (effects (font (size 1.27 1.27)) (justify right bottom))
  5490. (uuid f9765e10-c55b-45c3-8019-3467186d44fa)
  5491. )
  5492. (label "MD0" (at 140.97 191.135 180)
  5493. (effects (font (size 1.27 1.27)) (justify right bottom))
  5494. (uuid f9b4fee1-483d-4e50-b945-061a2881b72a)
  5495. )
  5496. (label "TDI" (at 140.97 165.735 180)
  5497. (effects (font (size 1.27 1.27)) (justify right bottom))
  5498. (uuid ff152732-e2cb-4b3e-a487-e28245c7e0aa)
  5499. )
  5500. (label "~{IORQ" (at 140.335 158.115 180)
  5501. (effects (font (size 1.27 1.27)) (justify right bottom))
  5502. (uuid ff83bcfe-e865-46cc-ba36-e6b3898ede36)
  5503. )
  5504. (global_label "USB_DM" (shape input) (at 297.18 103.505 180) (fields_autoplaced)
  5505. (effects (font (size 1.27 1.27)) (justify right))
  5506. (uuid 7d57a468-7c27-4ebd-b016-8490f96d2cd9)
  5507. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.38 28.575 0)
  5508. (effects (font (size 1.27 1.27)) hide)
  5509. )
  5510. )
  5511. (global_label "USB_DP" (shape input) (at 297.18 106.045 180) (fields_autoplaced)
  5512. (effects (font (size 1.27 1.27)) (justify right))
  5513. (uuid c200a294-97e7-4aad-a80d-ffb40ddee547)
  5514. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.38 28.575 0)
  5515. (effects (font (size 1.27 1.27)) hide)
  5516. )
  5517. )
  5518. (global_label "USB_DM" (shape input) (at 354.965 248.92 0) (fields_autoplaced)
  5519. (effects (font (size 1.27 1.27)) (justify left))
  5520. (uuid ed4882df-21aa-4bbd-93d1-80ca5dbc52f5)
  5521. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 291.465 78.74 0)
  5522. (effects (font (size 1.27 1.27)) hide)
  5523. )
  5524. )
  5525. (global_label "USB_DP" (shape input) (at 354.965 220.98 0) (fields_autoplaced)
  5526. (effects (font (size 1.27 1.27)) (justify left))
  5527. (uuid fa999a23-15f3-4427-ab2d-0428d3824ec1)
  5528. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 291.465 53.34 0)
  5529. (effects (font (size 1.27 1.27)) hide)
  5530. )
  5531. )
  5532. (symbol (lib_id "power:GND") (at 88.265 246.38 0) (unit 1)
  5533. (in_bom yes) (on_board yes)
  5534. (uuid 00d6b1c6-63cf-44d7-8dff-cbc2dcba9956)
  5535. (property "Reference" "#PWR0150" (id 0) (at 88.265 252.73 0)
  5536. (effects (font (size 1.27 1.27)) hide)
  5537. )
  5538. (property "Value" "GND" (id 1) (at 88.392 250.7742 0))
  5539. (property "Footprint" "" (id 2) (at 88.265 246.38 0)
  5540. (effects (font (size 1.27 1.27)) hide)
  5541. )
  5542. (property "Datasheet" "" (id 3) (at 88.265 246.38 0)
  5543. (effects (font (size 1.27 1.27)) hide)
  5544. )
  5545. (pin "1" (uuid eba32a4b-783c-4761-b5c2-09d5b474f80b))
  5546. )
  5547. (symbol (lib_id "Device:C_Small") (at 278.13 86.995 0) (unit 1)
  5548. (in_bom yes) (on_board yes)
  5549. (uuid 057e4a51-9749-4994-b275-015088cf2c45)
  5550. (property "Reference" "C5" (id 0) (at 274.32 89.535 0)
  5551. (effects (font (size 1.27 1.27)) (justify left))
  5552. )
  5553. (property "Value" "4.7uF/25V/10%/0603" (id 1) (at 279.019 98.806 90)
  5554. (effects (font (size 0.635 0.635)) (justify left))
  5555. )
  5556. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 278.13 86.995 0)
  5557. (effects (font (size 1.27 1.27)) hide)
  5558. )
  5559. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1910111742_Murata-Electronics-GRM188R61E475KE15D_C408137.pdf" (id 3) (at 278.13 86.995 0)
  5560. (effects (font (size 1.27 1.27)) hide)
  5561. )
  5562. (property "Mfr #" "GRM188R61E475KE15D" (id 4) (at 278.13 86.995 0)
  5563. (effects (font (size 1.27 1.27)) hide)
  5564. )
  5565. (property "LCSC #" "C408137" (id 5) (at 278.13 86.995 0)
  5566. (effects (font (size 1.27 1.27)) hide)
  5567. )
  5568. (pin "1" (uuid 0b86a5a5-8b2c-45a3-8a37-7a7e4e095f07))
  5569. (pin "2" (uuid 3a02d674-64d9-4247-b165-8a96ebec73f1))
  5570. )
  5571. (symbol (lib_id "power:+5V") (at 167.005 46.355 0) (unit 1)
  5572. (in_bom yes) (on_board yes) (fields_autoplaced)
  5573. (uuid 08d9a933-d909-4769-861a-c4b5ab315cde)
  5574. (property "Reference" "#PWR0138" (id 0) (at 167.005 50.165 0)
  5575. (effects (font (size 1.27 1.27)) hide)
  5576. )
  5577. (property "Value" "+5V" (id 1) (at 167.005 41.275 0))
  5578. (property "Footprint" "" (id 2) (at 167.005 46.355 0)
  5579. (effects (font (size 1.27 1.27)) hide)
  5580. )
  5581. (property "Datasheet" "" (id 3) (at 167.005 46.355 0)
  5582. (effects (font (size 1.27 1.27)) hide)
  5583. )
  5584. (pin "1" (uuid 808f81f9-c639-4e87-b341-1f610a377865))
  5585. )
  5586. (symbol (lib_id "Device:C_Small") (at 57.15 234.95 0) (unit 1)
  5587. (in_bom yes) (on_board yes)
  5588. (uuid 0974b260-d7b6-49b7-87ca-9308b25f0938)
  5589. (property "Reference" "C19" (id 0) (at 53.34 237.49 0)
  5590. (effects (font (size 1.27 1.27)) (justify left))
  5591. )
  5592. (property "Value" "100nF/25V/10%/0402" (id 1) (at 58.039 247.015 90)
  5593. (effects (font (size 0.635 0.635)) (justify left))
  5594. )
  5595. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 57.15 234.95 0)
  5596. (effects (font (size 1.27 1.27)) hide)
  5597. )
  5598. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 57.15 234.95 0)
  5599. (effects (font (size 1.27 1.27)) hide)
  5600. )
  5601. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 57.15 234.95 0)
  5602. (effects (font (size 1.27 1.27)) hide)
  5603. )
  5604. (property "LCSC #" "C77014" (id 5) (at 57.15 234.95 0)
  5605. (effects (font (size 1.27 1.27)) hide)
  5606. )
  5607. (pin "1" (uuid f9ed879b-a43b-41eb-b92b-b52968ebb146))
  5608. (pin "2" (uuid d3993fde-50c4-4cae-a3c1-3077a83d7a72))
  5609. )
  5610. (symbol (lib_id "power:GND") (at 30.48 246.38 0) (unit 1)
  5611. (in_bom yes) (on_board yes)
  5612. (uuid 0c73a196-e7d4-45f0-b412-702cf8f01f94)
  5613. (property "Reference" "#PWR0106" (id 0) (at 30.48 252.73 0)
  5614. (effects (font (size 1.27 1.27)) hide)
  5615. )
  5616. (property "Value" "GND" (id 1) (at 30.607 250.7742 0))
  5617. (property "Footprint" "" (id 2) (at 30.48 246.38 0)
  5618. (effects (font (size 1.27 1.27)) hide)
  5619. )
  5620. (property "Datasheet" "" (id 3) (at 30.48 246.38 0)
  5621. (effects (font (size 1.27 1.27)) hide)
  5622. )
  5623. (pin "1" (uuid 5b3c029b-c6f6-40ce-acba-a59f08203b5c))
  5624. )
  5625. (symbol (lib_id "Device:C_Small") (at 271.78 86.995 0) (unit 1)
  5626. (in_bom yes) (on_board yes)
  5627. (uuid 0d9734d7-6b5f-4645-a39d-f6e943cf28b2)
  5628. (property "Reference" "C3" (id 0) (at 267.97 89.535 0)
  5629. (effects (font (size 1.27 1.27)) (justify left))
  5630. )
  5631. (property "Value" "4.7uF/25V/10%/0603" (id 1) (at 272.669 98.806 90)
  5632. (effects (font (size 0.635 0.635)) (justify left))
  5633. )
  5634. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 271.78 86.995 0)
  5635. (effects (font (size 1.27 1.27)) hide)
  5636. )
  5637. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1910111742_Murata-Electronics-GRM188R61E475KE15D_C408137.pdf" (id 3) (at 271.78 86.995 0)
  5638. (effects (font (size 1.27 1.27)) hide)
  5639. )
  5640. (property "Mfr #" "GRM188R61E475KE15D" (id 4) (at 271.78 86.995 0)
  5641. (effects (font (size 1.27 1.27)) hide)
  5642. )
  5643. (property "LCSC #" "C408137" (id 5) (at 271.78 86.995 0)
  5644. (effects (font (size 1.27 1.27)) hide)
  5645. )
  5646. (pin "1" (uuid e15e4b1a-eabe-4d8f-90e1-d9a8ff790b65))
  5647. (pin "2" (uuid f52544f7-9bad-48ce-b8fb-87dc728b1760))
  5648. )
  5649. (symbol (lib_id "power:GND") (at 279.4 159.385 90) (unit 1)
  5650. (in_bom yes) (on_board yes)
  5651. (uuid 0fab5564-99ee-4a7a-9741-e8e2e6b2e8fb)
  5652. (property "Reference" "#PWR0122" (id 0) (at 285.75 159.385 0)
  5653. (effects (font (size 1.27 1.27)) hide)
  5654. )
  5655. (property "Value" "GND" (id 1) (at 282.6512 159.258 90)
  5656. (effects (font (size 1.27 1.27)) (justify right))
  5657. )
  5658. (property "Footprint" "" (id 2) (at 279.4 159.385 0)
  5659. (effects (font (size 1.27 1.27)) hide)
  5660. )
  5661. (property "Datasheet" "" (id 3) (at 279.4 159.385 0)
  5662. (effects (font (size 1.27 1.27)) hide)
  5663. )
  5664. (pin "1" (uuid 36e9c919-4234-4802-b2b5-9ee01e65bd62))
  5665. )
  5666. (symbol (lib_id "CPU:Z80CPU") (at 52.07 73.66 0) (unit 1)
  5667. (in_bom yes) (on_board yes) (fields_autoplaced)
  5668. (uuid 102b5b78-a9ab-4d9f-994b-8c38f1ce166a)
  5669. (property "Reference" "U2" (id 0) (at 54.0894 33.655 0)
  5670. (effects (font (size 1.27 1.27)) (justify left))
  5671. )
  5672. (property "Value" "Z80CPU" (id 1) (at 54.0894 36.195 0)
  5673. (effects (font (size 1.27 1.27)) (justify left))
  5674. )
  5675. (property "Footprint" "Socket:DIP_Socket-40_W22.1_W22.86_W25.4_W27.94_W28.7_3M_240-3639-00-0602J" (id 2) (at 52.07 63.5 0)
  5676. (effects (font (size 1.27 1.27)) hide)
  5677. )
  5678. (property "Datasheet" "www.zilog.com/manage_directlink.php?filepath=docs/z80/um0080" (id 3) (at 52.07 63.5 0)
  5679. (effects (font (size 1.27 1.27)) hide)
  5680. )
  5681. (pin "1" (uuid b6f67f6f-17c2-4956-9a31-307055022dee))
  5682. (pin "10" (uuid 73b29393-9af2-4a0b-ad11-825596bf95d7))
  5683. (pin "11" (uuid d7c15a95-6cc7-4dcc-9d8f-c45e716d91bd))
  5684. (pin "12" (uuid 47f0e628-2d7e-46ac-b49e-7ff9bcb1ebbf))
  5685. (pin "13" (uuid 2141ce4f-2382-41d3-91b5-7f0a961b8156))
  5686. (pin "14" (uuid f9a95cb4-7f4b-49b0-866b-b68f8d92b625))
  5687. (pin "15" (uuid 6a2c1071-6dc3-4286-9363-f36f8c58c2fe))
  5688. (pin "16" (uuid 4254259c-d997-4dd0-b274-69f742017325))
  5689. (pin "17" (uuid 9416bbe5-8815-4fd4-8e2d-1cdab501abe8))
  5690. (pin "18" (uuid 97ae45ab-1540-4676-ad31-209e2a0757d0))
  5691. (pin "19" (uuid 471f5171-06ce-4352-83dd-cf070aef09e7))
  5692. (pin "2" (uuid de3b8fca-839c-43f4-8eb5-1bae2c72bca3))
  5693. (pin "20" (uuid ad8e43f2-5a8f-41d1-9069-61978c9e8684))
  5694. (pin "21" (uuid fc550d20-68a2-4a9e-8cb2-e1fec3c4ca92))
  5695. (pin "22" (uuid bd02a03e-ee80-43f7-8681-922ca833e433))
  5696. (pin "23" (uuid d2d6a813-4c7d-4c82-b627-b65d4216f33d))
  5697. (pin "24" (uuid 6fc4d045-f188-4961-a734-bbb2d021bdbb))
  5698. (pin "25" (uuid f12e1c0a-ad23-4b8c-bdac-a79ccbd8d831))
  5699. (pin "26" (uuid ba40a09a-8aff-4f57-b942-6c8404bbe389))
  5700. (pin "27" (uuid 296a0bc3-bcdc-4952-a6b6-7c4393817598))
  5701. (pin "28" (uuid c1ec0d6e-fbfa-4773-bca5-a3d60e686cb6))
  5702. (pin "29" (uuid 24f01003-3463-486b-b64c-64a75798bf61))
  5703. (pin "3" (uuid 750d13f5-a8c6-48b7-9c6c-54cbda45f4dd))
  5704. (pin "30" (uuid 0de77752-1764-4e10-823a-6a3abf9fca18))
  5705. (pin "31" (uuid 47279ffd-361d-428f-b3e2-33ce084656b7))
  5706. (pin "32" (uuid 2bd95e56-b5dc-4780-a5a2-80454a8e9730))
  5707. (pin "33" (uuid 59033fe4-52ed-41fd-94eb-b415da840c8c))
  5708. (pin "34" (uuid 3e0473ae-80ef-4f4c-9581-703ad30b9264))
  5709. (pin "35" (uuid 4d20b63d-f8fc-41d7-9f32-da1c5b0cdefa))
  5710. (pin "36" (uuid a26f444d-a8e5-4a80-a84a-6c8aa59dd03e))
  5711. (pin "37" (uuid 76eb7006-605a-446e-99c2-795a75413635))
  5712. (pin "38" (uuid a3e8f6fb-0f18-4db7-8a9f-b8c5c2b629df))
  5713. (pin "39" (uuid 31ad2f1c-06fd-4da8-bde2-3f3437aab262))
  5714. (pin "4" (uuid 22df87e5-45dc-4f39-bbb9-47f7ef21cb6d))
  5715. (pin "40" (uuid bb1bf040-af50-44f4-815a-b7c75b4deec6))
  5716. (pin "5" (uuid 733b24c6-f630-4642-b90e-9c64ffe5a92e))
  5717. (pin "6" (uuid 7705e80b-b58f-446b-8145-19192aae4cca))
  5718. (pin "7" (uuid ffc165ee-1232-4494-b94d-e61f5df98379))
  5719. (pin "8" (uuid 07a57d15-8cfb-4b4b-b7a8-b676b8538f54))
  5720. (pin "9" (uuid d672b215-9c8d-4f7c-9eb5-ebf8ae98f214))
  5721. )
  5722. (symbol (lib_id "power:GND") (at 57.15 246.38 0) (unit 1)
  5723. (in_bom yes) (on_board yes)
  5724. (uuid 1056bae6-1710-4309-b494-132c9aca3b2a)
  5725. (property "Reference" "#PWR0148" (id 0) (at 57.15 252.73 0)
  5726. (effects (font (size 1.27 1.27)) hide)
  5727. )
  5728. (property "Value" "GND" (id 1) (at 57.277 250.7742 0))
  5729. (property "Footprint" "" (id 2) (at 57.15 246.38 0)
  5730. (effects (font (size 1.27 1.27)) hide)
  5731. )
  5732. (property "Datasheet" "" (id 3) (at 57.15 246.38 0)
  5733. (effects (font (size 1.27 1.27)) hide)
  5734. )
  5735. (pin "1" (uuid 52f20e1f-ad59-4ada-9a83-af92c1c6f654))
  5736. )
  5737. (symbol (lib_id "power:GND") (at 273.05 183.515 0) (unit 1)
  5738. (in_bom yes) (on_board yes)
  5739. (uuid 1295c243-9fef-4826-8fde-e436bbfeedcb)
  5740. (property "Reference" "#PWR0125" (id 0) (at 273.05 189.865 0)
  5741. (effects (font (size 1.27 1.27)) hide)
  5742. )
  5743. (property "Value" "GND" (id 1) (at 273.177 187.9092 0))
  5744. (property "Footprint" "" (id 2) (at 273.05 183.515 0)
  5745. (effects (font (size 1.27 1.27)) hide)
  5746. )
  5747. (property "Datasheet" "" (id 3) (at 273.05 183.515 0)
  5748. (effects (font (size 1.27 1.27)) hide)
  5749. )
  5750. (pin "1" (uuid ce67889e-6ae6-49a1-8544-ccc9bfe18171))
  5751. )
  5752. (symbol (lib_id "power:+5V") (at 51.435 257.81 0) (unit 1)
  5753. (in_bom yes) (on_board yes) (fields_autoplaced)
  5754. (uuid 13bc8755-53c8-4324-9920-bf1b91eb8acf)
  5755. (property "Reference" "#PWR0157" (id 0) (at 51.435 261.62 0)
  5756. (effects (font (size 1.27 1.27)) hide)
  5757. )
  5758. (property "Value" "+5V" (id 1) (at 51.435 252.095 0))
  5759. (property "Footprint" "" (id 2) (at 51.435 257.81 0)
  5760. (effects (font (size 1.27 1.27)) hide)
  5761. )
  5762. (property "Datasheet" "" (id 3) (at 51.435 257.81 0)
  5763. (effects (font (size 1.27 1.27)) hide)
  5764. )
  5765. (pin "1" (uuid 43fb4852-2ed5-409f-a38d-514ad2c9eb15))
  5766. )
  5767. (symbol (lib_id "power:+1V8") (at 260.35 76.835 0) (unit 1)
  5768. (in_bom yes) (on_board yes) (fields_autoplaced)
  5769. (uuid 19080ab3-d4ed-43f6-983a-1875845e70a0)
  5770. (property "Reference" "#PWR0145" (id 0) (at 260.35 80.645 0)
  5771. (effects (font (size 1.27 1.27)) hide)
  5772. )
  5773. (property "Value" "+1V8" (id 1) (at 260.35 71.12 0))
  5774. (property "Footprint" "" (id 2) (at 260.35 76.835 0)
  5775. (effects (font (size 1.27 1.27)) hide)
  5776. )
  5777. (property "Datasheet" "" (id 3) (at 260.35 76.835 0)
  5778. (effects (font (size 1.27 1.27)) hide)
  5779. )
  5780. (pin "1" (uuid 90861d83-d918-4cf9-8c46-4183c0c426eb))
  5781. )
  5782. (symbol (lib_id "power:GND") (at 165.735 238.125 0) (unit 1)
  5783. (in_bom yes) (on_board yes)
  5784. (uuid 1b22aea5-c14a-45df-ba6b-407c18ebd943)
  5785. (property "Reference" "#PWR0142" (id 0) (at 165.735 244.475 0)
  5786. (effects (font (size 1.27 1.27)) hide)
  5787. )
  5788. (property "Value" "GND" (id 1) (at 161.29 240.03 0))
  5789. (property "Footprint" "" (id 2) (at 165.735 238.125 0)
  5790. (effects (font (size 1.27 1.27)) hide)
  5791. )
  5792. (property "Datasheet" "" (id 3) (at 165.735 238.125 0)
  5793. (effects (font (size 1.27 1.27)) hide)
  5794. )
  5795. (pin "1" (uuid 060e9619-56ef-4583-99d9-01fc2629ce97))
  5796. )
  5797. (symbol (lib_id "power:GND") (at 69.85 246.38 0) (unit 1)
  5798. (in_bom yes) (on_board yes)
  5799. (uuid 1d2c5f4e-eb65-495f-acfa-28af2da8e833)
  5800. (property "Reference" "#PWR0155" (id 0) (at 69.85 252.73 0)
  5801. (effects (font (size 1.27 1.27)) hide)
  5802. )
  5803. (property "Value" "GND" (id 1) (at 69.977 250.7742 0))
  5804. (property "Footprint" "" (id 2) (at 69.85 246.38 0)
  5805. (effects (font (size 1.27 1.27)) hide)
  5806. )
  5807. (property "Datasheet" "" (id 3) (at 69.85 246.38 0)
  5808. (effects (font (size 1.27 1.27)) hide)
  5809. )
  5810. (pin "1" (uuid 78bfd43e-6ebd-4686-abfc-580b88a6e5d9))
  5811. )
  5812. (symbol (lib_id "power:GND") (at 38.1 274.32 0) (unit 1)
  5813. (in_bom yes) (on_board yes)
  5814. (uuid 1e188cc2-b835-4356-8ae9-fa55c4982306)
  5815. (property "Reference" "#PWR0111" (id 0) (at 38.1 280.67 0)
  5816. (effects (font (size 1.27 1.27)) hide)
  5817. )
  5818. (property "Value" "GND" (id 1) (at 38.227 278.7142 0))
  5819. (property "Footprint" "" (id 2) (at 38.1 274.32 0)
  5820. (effects (font (size 1.27 1.27)) hide)
  5821. )
  5822. (property "Datasheet" "" (id 3) (at 38.1 274.32 0)
  5823. (effects (font (size 1.27 1.27)) hide)
  5824. )
  5825. (pin "1" (uuid 35126ca3-8395-4c31-8206-e7771f0bd974))
  5826. )
  5827. (symbol (lib_id "Device:C_Small") (at 297.18 55.245 0) (unit 1)
  5828. (in_bom yes) (on_board yes)
  5829. (uuid 1eed8d63-bf4b-47bc-8740-c581f0cfd918)
  5830. (property "Reference" "C8" (id 0) (at 293.37 57.785 0)
  5831. (effects (font (size 1.27 1.27)) (justify left))
  5832. )
  5833. (property "Value" "100nF/25V/10%/0402" (id 1) (at 298.069 67.31 90)
  5834. (effects (font (size 0.635 0.635)) (justify left))
  5835. )
  5836. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 297.18 55.245 0)
  5837. (effects (font (size 1.27 1.27)) hide)
  5838. )
  5839. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 297.18 55.245 0)
  5840. (effects (font (size 1.27 1.27)) hide)
  5841. )
  5842. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 297.18 55.245 0)
  5843. (effects (font (size 1.27 1.27)) hide)
  5844. )
  5845. (property "LCSC #" "C77014" (id 5) (at 297.18 55.245 0)
  5846. (effects (font (size 1.27 1.27)) hide)
  5847. )
  5848. (pin "1" (uuid 1ff88e45-ab72-4cd6-b0b5-5dd90902deac))
  5849. (pin "2" (uuid 1d35f074-dfbf-4370-a6c2-3332a5fb4967))
  5850. )
  5851. (symbol (lib_id "Device:C_Small") (at 88.265 234.95 0) (unit 1)
  5852. (in_bom yes) (on_board yes)
  5853. (uuid 20e00843-9e38-4e6c-b616-b3831ee81651)
  5854. (property "Reference" "C24" (id 0) (at 84.455 237.49 0)
  5855. (effects (font (size 1.27 1.27)) (justify left))
  5856. )
  5857. (property "Value" "100nF/25V/10%/0402" (id 1) (at 89.154 247.015 90)
  5858. (effects (font (size 0.635 0.635)) (justify left))
  5859. )
  5860. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 88.265 234.95 0)
  5861. (effects (font (size 1.27 1.27)) hide)
  5862. )
  5863. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 88.265 234.95 0)
  5864. (effects (font (size 1.27 1.27)) hide)
  5865. )
  5866. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 88.265 234.95 0)
  5867. (effects (font (size 1.27 1.27)) hide)
  5868. )
  5869. (property "LCSC #" "C77014" (id 5) (at 88.265 234.95 0)
  5870. (effects (font (size 1.27 1.27)) hide)
  5871. )
  5872. (pin "1" (uuid c8ea3bcb-8f8f-4263-b0c5-9568ca446864))
  5873. (pin "2" (uuid 8f70933f-2b5c-4a9c-b9f5-aed870a685dc))
  5874. )
  5875. (symbol (lib_id "power:+3V3") (at 340.36 64.135 0) (unit 1)
  5876. (in_bom yes) (on_board yes) (fields_autoplaced)
  5877. (uuid 2454f770-9ba4-4d59-a0c5-1a043a0be8c9)
  5878. (property "Reference" "#PWR0129" (id 0) (at 340.36 67.945 0)
  5879. (effects (font (size 1.27 1.27)) hide)
  5880. )
  5881. (property "Value" "+3V3" (id 1) (at 340.36 59.055 0))
  5882. (property "Footprint" "" (id 2) (at 340.36 64.135 0)
  5883. (effects (font (size 1.27 1.27)) hide)
  5884. )
  5885. (property "Datasheet" "" (id 3) (at 340.36 64.135 0)
  5886. (effects (font (size 1.27 1.27)) hide)
  5887. )
  5888. (pin "1" (uuid 90ffebf2-2c14-498f-80b1-9b53600e4bde))
  5889. )
  5890. (symbol (lib_id "power:GND") (at 76.2 246.38 0) (unit 1)
  5891. (in_bom yes) (on_board yes)
  5892. (uuid 25c4616c-5bec-4f67-a5ed-cd996b2326f7)
  5893. (property "Reference" "#PWR0153" (id 0) (at 76.2 252.73 0)
  5894. (effects (font (size 1.27 1.27)) hide)
  5895. )
  5896. (property "Value" "GND" (id 1) (at 76.327 250.7742 0))
  5897. (property "Footprint" "" (id 2) (at 76.2 246.38 0)
  5898. (effects (font (size 1.27 1.27)) hide)
  5899. )
  5900. (property "Datasheet" "" (id 3) (at 76.2 246.38 0)
  5901. (effects (font (size 1.27 1.27)) hide)
  5902. )
  5903. (pin "1" (uuid a8b6a4d3-78e2-4e2d-8079-6293a9315f29))
  5904. )
  5905. (symbol (lib_id "power:+5V") (at 52.07 34.29 0) (unit 1)
  5906. (in_bom yes) (on_board yes) (fields_autoplaced)
  5907. (uuid 2f5122bf-a7c6-483a-9626-60268a0c2cae)
  5908. (property "Reference" "#PWR0136" (id 0) (at 52.07 38.1 0)
  5909. (effects (font (size 1.27 1.27)) hide)
  5910. )
  5911. (property "Value" "+5V" (id 1) (at 52.07 29.21 0))
  5912. (property "Footprint" "" (id 2) (at 52.07 34.29 0)
  5913. (effects (font (size 1.27 1.27)) hide)
  5914. )
  5915. (property "Datasheet" "" (id 3) (at 52.07 34.29 0)
  5916. (effects (font (size 1.27 1.27)) hide)
  5917. )
  5918. (pin "1" (uuid 74fa3b0a-73d6-416e-934f-400bfc17aadf))
  5919. )
  5920. (symbol (lib_id "Device:C_Small") (at 57.785 264.795 0) (unit 1)
  5921. (in_bom yes) (on_board yes)
  5922. (uuid 331cfb9f-be01-4780-a3c6-e22967727e7d)
  5923. (property "Reference" "C27" (id 0) (at 53.975 267.335 0)
  5924. (effects (font (size 1.27 1.27)) (justify left))
  5925. )
  5926. (property "Value" "100nF/25V/10%/0402" (id 1) (at 58.674 276.86 90)
  5927. (effects (font (size 0.635 0.635)) (justify left))
  5928. )
  5929. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 57.785 264.795 0)
  5930. (effects (font (size 1.27 1.27)) hide)
  5931. )
  5932. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 57.785 264.795 0)
  5933. (effects (font (size 1.27 1.27)) hide)
  5934. )
  5935. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 57.785 264.795 0)
  5936. (effects (font (size 1.27 1.27)) hide)
  5937. )
  5938. (property "LCSC #" "C77014" (id 5) (at 57.785 264.795 0)
  5939. (effects (font (size 1.27 1.27)) hide)
  5940. )
  5941. (pin "1" (uuid b04363ae-a588-4a22-a311-a1f735a682a3))
  5942. (pin "2" (uuid c55d12e4-05b0-40bb-8f24-82522ff80a2f))
  5943. )
  5944. (symbol (lib_id "Device:R_Small") (at 288.29 149.225 270) (unit 1)
  5945. (in_bom yes) (on_board yes)
  5946. (uuid 35283631-fa6a-43f9-b429-2bfcbc217b04)
  5947. (property "Reference" "R4" (id 0) (at 291.465 147.955 90))
  5948. (property "Value" "33R/1%/0402" (id 1) (at 282.702 148.336 90)
  5949. (effects (font (size 0.635 0.635)))
  5950. )
  5951. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 288.29 149.225 0)
  5952. (effects (font (size 1.27 1.27)) hide)
  5953. )
  5954. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810301314_Uniroyal-Elec-0402WGF330JTCE_C25105.pdf" (id 3) (at 288.29 149.225 0)
  5955. (effects (font (size 1.27 1.27)) hide)
  5956. )
  5957. (property "Mfr #" "0402WGF330JTCE" (id 4) (at 288.29 149.225 90)
  5958. (effects (font (size 1.27 1.27)) hide)
  5959. )
  5960. (property "LCSC #" "C25105" (id 5) (at 288.29 149.225 90)
  5961. (effects (font (size 1.27 1.27)) hide)
  5962. )
  5963. (pin "1" (uuid 0b66bfb6-a791-4ce8-ab0e-964abf7df447))
  5964. (pin "2" (uuid f68ec0a6-045a-4721-bac9-2642ca4810ed))
  5965. )
  5966. (symbol (lib_id "power:GND") (at 63.5 246.38 0) (unit 1)
  5967. (in_bom yes) (on_board yes)
  5968. (uuid 3585497b-7ce4-4e56-b8a8-59ddcbc56cdf)
  5969. (property "Reference" "#PWR0149" (id 0) (at 63.5 252.73 0)
  5970. (effects (font (size 1.27 1.27)) hide)
  5971. )
  5972. (property "Value" "GND" (id 1) (at 63.627 250.7742 0))
  5973. (property "Footprint" "" (id 2) (at 63.5 246.38 0)
  5974. (effects (font (size 1.27 1.27)) hide)
  5975. )
  5976. (property "Datasheet" "" (id 3) (at 63.5 246.38 0)
  5977. (effects (font (size 1.27 1.27)) hide)
  5978. )
  5979. (pin "1" (uuid a37210c7-9559-4f98-9d80-74a0516c3528))
  5980. )
  5981. (symbol (lib_id "Connector_Generic:Conn_02x20_Odd_Even") (at 50.165 159.385 0) (unit 1)
  5982. (in_bom yes) (on_board yes) (fields_autoplaced)
  5983. (uuid 37130447-8071-4e53-aa26-a47c3640e02c)
  5984. (property "Reference" "J1" (id 0) (at 51.435 129.54 0))
  5985. (property "Value" "Conn_02x20_Counter_Clockwise" (id 1) (at 51.435 132.08 0))
  5986. (property "Footprint" "Connector_IDC:IDC-Header_2x20_P2.54mm_Vertical" (id 2) (at 50.165 159.385 0)
  5987. (effects (font (size 1.27 1.27)) hide)
  5988. )
  5989. (property "Datasheet" "~" (id 3) (at 50.165 159.385 0)
  5990. (effects (font (size 1.27 1.27)) hide)
  5991. )
  5992. (pin "1" (uuid a5c2211c-6894-4d2d-9d12-29f439af7c05))
  5993. (pin "10" (uuid 59d92050-0506-426e-b7b2-4a95ad0cd5e3))
  5994. (pin "11" (uuid f148b82f-e2f0-4085-bf4c-370f63ec50e2))
  5995. (pin "12" (uuid 4868304c-6278-47a1-a12f-6ae38a1caabe))
  5996. (pin "13" (uuid 150c4332-5a7d-4167-817b-c0205a62a1d8))
  5997. (pin "14" (uuid c9821362-f93e-48df-a182-9be7db9444e9))
  5998. (pin "15" (uuid f9609612-9717-4af5-b73a-be3d3941948a))
  5999. (pin "16" (uuid 235f5a0c-aa6b-4802-b3f8-e40d4a87f21e))
  6000. (pin "17" (uuid d333c9a5-1de4-4d46-955b-f38967685639))
  6001. (pin "18" (uuid 1a82de16-249e-4b05-bac5-b4c268f3ce2f))
  6002. (pin "19" (uuid 6cffceef-d9e6-447c-93fb-42fd73aea846))
  6003. (pin "2" (uuid d8359546-794d-4115-8b7f-8fd89180e76c))
  6004. (pin "20" (uuid 6a98b918-ae78-4a1a-87cc-01234b5b293e))
  6005. (pin "21" (uuid 53d850de-742e-46f6-ae2e-c74dc9223d31))
  6006. (pin "22" (uuid 73884ea9-01be-485c-a16b-2caa391be383))
  6007. (pin "23" (uuid 5739819c-1e37-4583-a4fc-5c3872e9008c))
  6008. (pin "24" (uuid b15bba9c-651d-48f5-8132-3fb7e7d56374))
  6009. (pin "25" (uuid f481fbd7-308a-4154-8ff5-2131b5b28857))
  6010. (pin "26" (uuid e3700d39-4746-4b61-81bb-f9e6c98490e8))
  6011. (pin "27" (uuid 421d218a-c5c2-493a-9c57-fc7807021238))
  6012. (pin "28" (uuid d09de6be-44fa-4a30-9bdd-3462a025b5e6))
  6013. (pin "29" (uuid 07fa551e-c853-4228-884a-a7778a0a9a02))
  6014. (pin "3" (uuid f0ec313f-e79b-4f40-bb2f-5d2e59104ecc))
  6015. (pin "30" (uuid 3e78dbb1-869e-4558-ac52-3e6e4902d467))
  6016. (pin "31" (uuid 99966c94-c337-48ec-b0cf-eab324709854))
  6017. (pin "32" (uuid ae44e1c7-72ed-410a-9e9b-4abc885a2b90))
  6018. (pin "33" (uuid 238a9569-95f4-4b99-8248-9619fea809e1))
  6019. (pin "34" (uuid 13ca1deb-18bc-4c23-8eca-f61d6492f342))
  6020. (pin "35" (uuid be90930b-7460-4f2e-a183-faa0d802750f))
  6021. (pin "36" (uuid 5afd3d91-6fa6-4f11-8a2d-9ed5cff6cf56))
  6022. (pin "37" (uuid d76d8d66-52fc-46f0-af0d-aa530ffe171d))
  6023. (pin "38" (uuid 66f908cd-ba4f-42ce-8581-cb11dbbf4147))
  6024. (pin "39" (uuid fe6184c6-ed50-4ad0-928d-6993392d3f18))
  6025. (pin "4" (uuid 24f1fb7b-87a4-4d07-944b-f40e936c31b1))
  6026. (pin "40" (uuid 08ede203-5805-4b0d-a94c-3a2b70516d7d))
  6027. (pin "5" (uuid 68c174b7-711f-4098-b4a8-619db85ee520))
  6028. (pin "6" (uuid d2388add-8102-40a9-82cd-856d81f180ae))
  6029. (pin "7" (uuid c9ca18b2-75a3-4ffe-8563-e353954b9423))
  6030. (pin "8" (uuid 60af999f-4b58-46ba-bc35-f441f541be63))
  6031. (pin "9" (uuid a9561864-a7a3-4465-aa20-39790f138154))
  6032. )
  6033. (symbol (lib_id "Device:LED") (at 495.3 142.875 0) (unit 1)
  6034. (in_bom yes) (on_board yes)
  6035. (uuid 39796c10-6f4e-4a28-a3be-e5b2af3c4b54)
  6036. (property "Reference" "D3" (id 0) (at 495.3 147.447 0))
  6037. (property "Value" "LED" (id 1) (at 495.3 145.415 0))
  6038. (property "Footprint" "LED_SMD:LED_0402_1005Metric" (id 2) (at 495.3 142.875 0)
  6039. (effects (font (size 1.27 1.27)) hide)
  6040. )
  6041. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131221_Bright-LED-Elec-BL-HGE37A-AV-TRB_C165979.pdf" (id 3) (at 495.3 142.875 0)
  6042. (effects (font (size 1.27 1.27)) hide)
  6043. )
  6044. (property "Mfr #" "BL-HGE37A-AV-TRB" (id 4) (at 495.3 142.875 0)
  6045. (effects (font (size 1.27 1.27)) hide)
  6046. )
  6047. (property "LCSC #" "C165979" (id 5) (at 495.3 142.875 0)
  6048. (effects (font (size 1.27 1.27)) hide)
  6049. )
  6050. (pin "1" (uuid fba9fc20-b10c-4bb8-8c38-aeea605a19eb))
  6051. (pin "2" (uuid 669367db-5330-43c8-bc3e-e73d8187e663))
  6052. )
  6053. (symbol (lib_id "Device:C_Small") (at 38.1 262.89 0) (unit 1)
  6054. (in_bom yes) (on_board yes)
  6055. (uuid 3df9bc8e-ff2a-4440-8852-ee1d3b45eef8)
  6056. (property "Reference" "C17" (id 0) (at 34.29 265.43 0)
  6057. (effects (font (size 1.27 1.27)) (justify left))
  6058. )
  6059. (property "Value" "100nF/25V/10%/0402" (id 1) (at 38.989 274.955 90)
  6060. (effects (font (size 0.635 0.635)) (justify left))
  6061. )
  6062. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 38.1 262.89 0)
  6063. (effects (font (size 1.27 1.27)) hide)
  6064. )
  6065. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 38.1 262.89 0)
  6066. (effects (font (size 1.27 1.27)) hide)
  6067. )
  6068. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 38.1 262.89 0)
  6069. (effects (font (size 1.27 1.27)) hide)
  6070. )
  6071. (property "LCSC #" "C77014" (id 5) (at 38.1 262.89 0)
  6072. (effects (font (size 1.27 1.27)) hide)
  6073. )
  6074. (pin "1" (uuid c9d4ae31-100b-474b-ac4c-a7e6b58f4476))
  6075. (pin "2" (uuid 17cbe743-3467-4b1e-8aa7-76545ab0187f))
  6076. )
  6077. (symbol (lib_id "power:+3V3") (at 21.59 228.6 0) (unit 1)
  6078. (in_bom yes) (on_board yes) (fields_autoplaced)
  6079. (uuid 3f35bb26-ced8-4ac3-937d-6858f7586540)
  6080. (property "Reference" "#PWR0132" (id 0) (at 21.59 232.41 0)
  6081. (effects (font (size 1.27 1.27)) hide)
  6082. )
  6083. (property "Value" "+3V3" (id 1) (at 21.59 223.52 0))
  6084. (property "Footprint" "" (id 2) (at 21.59 228.6 0)
  6085. (effects (font (size 1.27 1.27)) hide)
  6086. )
  6087. (property "Datasheet" "" (id 3) (at 21.59 228.6 0)
  6088. (effects (font (size 1.27 1.27)) hide)
  6089. )
  6090. (pin "1" (uuid bb2fdffa-5372-43c1-9b92-aa42f502d550))
  6091. )
  6092. (symbol (lib_id "power:GND") (at 279.4 183.515 0) (unit 1)
  6093. (in_bom yes) (on_board yes)
  6094. (uuid 3fd6940e-4f55-4f44-985b-f95e56a2c906)
  6095. (property "Reference" "#PWR0124" (id 0) (at 279.4 189.865 0)
  6096. (effects (font (size 1.27 1.27)) hide)
  6097. )
  6098. (property "Value" "GND" (id 1) (at 279.527 187.9092 0))
  6099. (property "Footprint" "" (id 2) (at 279.4 183.515 0)
  6100. (effects (font (size 1.27 1.27)) hide)
  6101. )
  6102. (property "Datasheet" "" (id 3) (at 279.4 183.515 0)
  6103. (effects (font (size 1.27 1.27)) hide)
  6104. )
  6105. (pin "1" (uuid 1e710cd4-3bd7-4fef-9683-f2be922cea30))
  6106. )
  6107. (symbol (lib_id "Device:R_Small") (at 289.56 111.125 270) (unit 1)
  6108. (in_bom yes) (on_board yes)
  6109. (uuid 41a2c7f8-9d13-4742-8a6d-d47af6cea9fc)
  6110. (property "Reference" "R5" (id 0) (at 293.37 112.395 90))
  6111. (property "Value" "12K/1%" (id 1) (at 289.56 108.458 90))
  6112. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 289.56 111.125 0)
  6113. (effects (font (size 1.27 1.27)) hide)
  6114. )
  6115. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081726_YAGEO-RC0402FR-0712KL_C114760.pdf" (id 3) (at 289.56 111.125 0)
  6116. (effects (font (size 1.27 1.27)) hide)
  6117. )
  6118. (property "Mfr #" "RC0402FR-0712KL" (id 4) (at 289.56 111.125 90)
  6119. (effects (font (size 1.27 1.27)) hide)
  6120. )
  6121. (property "LCSC #" "C114760" (id 5) (at 289.56 111.125 90)
  6122. (effects (font (size 1.27 1.27)) hide)
  6123. )
  6124. (pin "1" (uuid 4e7baf08-96e2-4e70-8164-23ee64dd4cb3))
  6125. (pin "2" (uuid 31238ba1-e274-41fb-84d4-095c45939f23))
  6126. )
  6127. (symbol (lib_id "power:GND") (at 283.21 111.125 270) (unit 1)
  6128. (in_bom yes) (on_board yes)
  6129. (uuid 43b83906-bee1-4be4-ba40-a58742e814b0)
  6130. (property "Reference" "#PWR0121" (id 0) (at 276.86 111.125 0)
  6131. (effects (font (size 1.27 1.27)) hide)
  6132. )
  6133. (property "Value" "GND" (id 1) (at 279.9588 111.252 90)
  6134. (effects (font (size 1.27 1.27)) (justify right))
  6135. )
  6136. (property "Footprint" "" (id 2) (at 283.21 111.125 0)
  6137. (effects (font (size 1.27 1.27)) hide)
  6138. )
  6139. (property "Datasheet" "" (id 3) (at 283.21 111.125 0)
  6140. (effects (font (size 1.27 1.27)) hide)
  6141. )
  6142. (pin "1" (uuid 6f4817ff-1a3a-4f22-bbca-9d7f33281f60))
  6143. )
  6144. (symbol (lib_id "power:PWR_FLAG") (at 111.125 228.6 0) (unit 1)
  6145. (in_bom yes) (on_board yes) (fields_autoplaced)
  6146. (uuid 460bf75a-834c-4daa-8408-8f58b7c0296a)
  6147. (property "Reference" "#FLG0104" (id 0) (at 111.125 226.695 0)
  6148. (effects (font (size 1.27 1.27)) hide)
  6149. )
  6150. (property "Value" "PWR_FLAG" (id 1) (at 111.125 223.52 0))
  6151. (property "Footprint" "" (id 2) (at 111.125 228.6 0)
  6152. (effects (font (size 1.27 1.27)) hide)
  6153. )
  6154. (property "Datasheet" "~" (id 3) (at 111.125 228.6 0)
  6155. (effects (font (size 1.27 1.27)) hide)
  6156. )
  6157. (pin "1" (uuid 6522f42a-7614-411f-bd05-6c0ac299aec6))
  6158. )
  6159. (symbol (lib_id "Device:C_Small") (at 63.5 234.95 0) (unit 1)
  6160. (in_bom yes) (on_board yes)
  6161. (uuid 470ad535-b11d-4c23-9387-084981820a32)
  6162. (property "Reference" "C20" (id 0) (at 59.69 237.49 0)
  6163. (effects (font (size 1.27 1.27)) (justify left))
  6164. )
  6165. (property "Value" "100nF/25V/10%/0402" (id 1) (at 64.389 247.015 90)
  6166. (effects (font (size 0.635 0.635)) (justify left))
  6167. )
  6168. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 63.5 234.95 0)
  6169. (effects (font (size 1.27 1.27)) hide)
  6170. )
  6171. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 63.5 234.95 0)
  6172. (effects (font (size 1.27 1.27)) hide)
  6173. )
  6174. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 63.5 234.95 0)
  6175. (effects (font (size 1.27 1.27)) hide)
  6176. )
  6177. (property "LCSC #" "C77014" (id 5) (at 63.5 234.95 0)
  6178. (effects (font (size 1.27 1.27)) hide)
  6179. )
  6180. (pin "1" (uuid 84e86700-4f14-4bad-a7ee-517e2f396c25))
  6181. (pin "2" (uuid 11cae56d-b73e-4f3b-a5b7-e88d1c1fab21))
  6182. )
  6183. (symbol (lib_id "Device:C_Small") (at 64.135 264.795 0) (unit 1)
  6184. (in_bom yes) (on_board yes)
  6185. (uuid 48450532-f6bf-46ef-8df8-9e0086ccf2f5)
  6186. (property "Reference" "C28" (id 0) (at 60.325 267.335 0)
  6187. (effects (font (size 1.27 1.27)) (justify left))
  6188. )
  6189. (property "Value" "100nF/25V/10%/0402" (id 1) (at 65.024 276.86 90)
  6190. (effects (font (size 0.635 0.635)) (justify left))
  6191. )
  6192. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 64.135 264.795 0)
  6193. (effects (font (size 1.27 1.27)) hide)
  6194. )
  6195. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 64.135 264.795 0)
  6196. (effects (font (size 1.27 1.27)) hide)
  6197. )
  6198. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 64.135 264.795 0)
  6199. (effects (font (size 1.27 1.27)) hide)
  6200. )
  6201. (property "LCSC #" "C77014" (id 5) (at 64.135 264.795 0)
  6202. (effects (font (size 1.27 1.27)) hide)
  6203. )
  6204. (pin "1" (uuid 7d312a16-4caf-49d5-94fe-475045894925))
  6205. (pin "2" (uuid cc4cc504-aa4d-4676-be58-f0bb11234513))
  6206. )
  6207. (symbol (lib_id "power:GND") (at 25.4 274.32 0) (unit 1)
  6208. (in_bom yes) (on_board yes)
  6209. (uuid 4965be65-426c-42ea-9249-f8569089b33a)
  6210. (property "Reference" "#PWR0110" (id 0) (at 25.4 280.67 0)
  6211. (effects (font (size 1.27 1.27)) hide)
  6212. )
  6213. (property "Value" "GND" (id 1) (at 25.527 278.7142 0))
  6214. (property "Footprint" "" (id 2) (at 25.4 274.32 0)
  6215. (effects (font (size 1.27 1.27)) hide)
  6216. )
  6217. (property "Datasheet" "" (id 3) (at 25.4 274.32 0)
  6218. (effects (font (size 1.27 1.27)) hide)
  6219. )
  6220. (pin "1" (uuid 39e1d44a-df70-46fd-bc97-9537a1b07448))
  6221. )
  6222. (symbol (lib_id "Device:C_Small") (at 31.75 262.89 0) (unit 1)
  6223. (in_bom yes) (on_board yes)
  6224. (uuid 4994864c-f7d0-4c86-948f-73dc2fec1bd9)
  6225. (property "Reference" "C14" (id 0) (at 27.94 265.43 0)
  6226. (effects (font (size 1.27 1.27)) (justify left))
  6227. )
  6228. (property "Value" "100nF/25V/10%/0402" (id 1) (at 32.639 274.955 90)
  6229. (effects (font (size 0.635 0.635)) (justify left))
  6230. )
  6231. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 31.75 262.89 0)
  6232. (effects (font (size 1.27 1.27)) hide)
  6233. )
  6234. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 31.75 262.89 0)
  6235. (effects (font (size 1.27 1.27)) hide)
  6236. )
  6237. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 31.75 262.89 0)
  6238. (effects (font (size 1.27 1.27)) hide)
  6239. )
  6240. (property "LCSC #" "C77014" (id 5) (at 31.75 262.89 0)
  6241. (effects (font (size 1.27 1.27)) hide)
  6242. )
  6243. (pin "1" (uuid 67001bf3-244e-474b-bb40-6b23a2042078))
  6244. (pin "2" (uuid 02083ef5-6bf2-4b07-afb6-041b00593eb2))
  6245. )
  6246. (symbol (lib_id "Z80ICE:FT2232H-Interface_USB") (at 327.66 126.365 0) (unit 1)
  6247. (in_bom yes) (on_board yes)
  6248. (uuid 4ab71fca-03b4-4ced-8a48-e8a112536b0d)
  6249. (property "Reference" "U4" (id 0) (at 350.52 73.025 0))
  6250. (property "Value" "FT2232H" (id 1) (at 345.44 180.975 0))
  6251. (property "Footprint" "Package_QFP:LQFP-64_10x10mm_P0.5mm" (id 2) (at 327.66 126.365 0)
  6252. (effects (font (size 1.27 1.27)) hide)
  6253. )
  6254. (property "Datasheet" "http://www.ftdichip.com/Products/ICs/FT2232H.html" (id 3) (at 327.66 126.365 0)
  6255. (effects (font (size 1.27 1.27)) hide)
  6256. )
  6257. (property "Mfr #" "FT2232HL-REEL" (id 4) (at 327.66 126.365 0)
  6258. (effects (font (size 1.27 1.27)) hide)
  6259. )
  6260. (property "LCSC #" "C27882" (id 5) (at 327.66 126.365 0)
  6261. (effects (font (size 1.27 1.27)) hide)
  6262. )
  6263. (pin "1" (uuid ffdbcfd1-a229-4297-925d-7eebdd92399f))
  6264. (pin "10" (uuid 519c1e61-1559-48de-9b3a-319388f26777))
  6265. (pin "11" (uuid b96b99d2-85e4-4d5f-9f54-7bb60e54ad64))
  6266. (pin "12" (uuid 620e9d6c-3688-4e80-acc2-a89cf5c01656))
  6267. (pin "13" (uuid f34179ba-248d-4758-bbb6-211b3e96f43c))
  6268. (pin "14" (uuid 20f0113e-ba8d-4ecc-8b60-b8931ae8c53a))
  6269. (pin "15" (uuid 1a22b44d-5eb3-4209-a2cf-3d7342563608))
  6270. (pin "16" (uuid 9d6d3360-8766-4349-ba2c-aa37e72e245a))
  6271. (pin "17" (uuid 7afb8602-5b82-48ef-a035-431751b36a8d))
  6272. (pin "18" (uuid 760f1930-aa13-415c-8779-572b4ed7b0eb))
  6273. (pin "19" (uuid 2e7da579-16ef-4723-8c90-fdabaa677c27))
  6274. (pin "2" (uuid 5e5e6d94-3b48-4c28-a876-d938fac0827a))
  6275. (pin "20" (uuid 72a0913b-420e-492a-b713-f3d44fd92fc7))
  6276. (pin "21" (uuid 6e33d1da-7c2e-4595-aa91-c5e02e43be2d))
  6277. (pin "22" (uuid 7e9e33ce-3c10-4e26-9a47-e978fe73230a))
  6278. (pin "23" (uuid 21909f6a-9acd-449f-b147-7c29d5b3f986))
  6279. (pin "24" (uuid 9cc02887-047f-4656-8fee-3f1cfded926d))
  6280. (pin "25" (uuid 0e43154f-9f91-43e9-abd2-84b91659ed35))
  6281. (pin "26" (uuid 0248da77-55aa-476f-8f53-2f90073ffbdd))
  6282. (pin "27" (uuid 49623d12-0f2b-4086-8e8a-61af23e7ce99))
  6283. (pin "28" (uuid 53797e23-e5f5-44b9-9679-025f3c09b1b2))
  6284. (pin "29" (uuid 15a007ff-e292-4c42-8ba3-982d6b832cdf))
  6285. (pin "3" (uuid e0abcf1d-2b1c-4a7a-957b-efce4bec4ebf))
  6286. (pin "30" (uuid 3f72bec4-3534-460f-8566-0ff325c34575))
  6287. (pin "31" (uuid 88c7039e-a0f7-49ef-b9f5-36e1b383469a))
  6288. (pin "32" (uuid 7e1bf0fd-d9aa-47ed-92a8-c73225c1ed5a))
  6289. (pin "33" (uuid 46c94c12-2c4d-4cb0-bfb9-cb28d86475ec))
  6290. (pin "34" (uuid 17e09579-27db-424e-b9c5-daac734b8bb9))
  6291. (pin "35" (uuid 20df147d-493b-433c-bd17-c220c069b235))
  6292. (pin "36" (uuid 8422a463-96b2-4a10-a272-db7b23cfef42))
  6293. (pin "37" (uuid f47d855e-0e2c-43fc-9511-a12d2ab42097))
  6294. (pin "38" (uuid 93985920-892a-4a89-9425-a95d76c7d465))
  6295. (pin "39" (uuid 233c2e82-3de1-4aa9-a518-8d91edf7c3cb))
  6296. (pin "4" (uuid 2bfa6c0c-8420-40e7-b83a-5f89f1536148))
  6297. (pin "40" (uuid dfdb19c9-eec6-4bfb-83a4-ce4386fd18f8))
  6298. (pin "41" (uuid 4a2d5ebb-1133-4288-9c39-3f8858a153cd))
  6299. (pin "42" (uuid 29608249-b5ca-43d6-98ec-02a212c9eb83))
  6300. (pin "43" (uuid e5abf929-45b3-493d-a84d-4ce9b5350b3e))
  6301. (pin "44" (uuid a3436575-9d3e-4593-bfcd-e2cae1c6201d))
  6302. (pin "45" (uuid 9fd389a9-1e2d-47f0-a878-4261d3e4a894))
  6303. (pin "46" (uuid 5079d647-00f9-46d8-b10f-ead0d9becd9f))
  6304. (pin "47" (uuid 6cbd1c16-7fea-4b43-a539-21a939168218))
  6305. (pin "48" (uuid d330686b-cf3d-450f-a99a-2e901e0a42b6))
  6306. (pin "49" (uuid 6d7a49ca-a2f8-4f27-b2dc-9cf34f010536))
  6307. (pin "5" (uuid 4cc45224-b75d-47c0-ae54-8a6fde19e49d))
  6308. (pin "50" (uuid a5fa4db9-e012-4eb4-b6fd-5a944c165280))
  6309. (pin "51" (uuid 90c188d7-ee7d-4d67-8053-19d7e498c84b))
  6310. (pin "52" (uuid da98465d-c8c5-455b-a2e0-951e0d522ee5))
  6311. (pin "53" (uuid d2234011-d8f4-4137-acea-491c25b906fd))
  6312. (pin "54" (uuid bc690b4d-81cb-4dbb-9b60-e70bd46d0f69))
  6313. (pin "55" (uuid 0dbc2f2c-c5b2-4d2d-8818-0c06cd75d6e0))
  6314. (pin "56" (uuid 25620f07-3315-40f0-b943-35f588cef4ca))
  6315. (pin "57" (uuid b95bd1de-56dc-4067-a521-fb137b65a05b))
  6316. (pin "58" (uuid 939aa499-f678-47fb-9621-bef8ea1ffe3f))
  6317. (pin "59" (uuid 98db3e5c-7fd3-48d7-ac02-4f6ab5800d23))
  6318. (pin "6" (uuid 479338f3-ddfb-4fe1-bbe3-6deff83e60c1))
  6319. (pin "60" (uuid 935ad145-96ff-45ad-8a36-1b4792dbf3a7))
  6320. (pin "61" (uuid 7e2cf0aa-746c-45af-a5d4-e6a7f085faab))
  6321. (pin "62" (uuid 5538cea1-245d-42fe-a1b8-8bfb0c492e6a))
  6322. (pin "63" (uuid 2b7cf76e-aae8-4782-9251-1b2ee9a7afea))
  6323. (pin "64" (uuid 49b9c320-abe2-495f-87ba-d1302efeec70))
  6324. (pin "7" (uuid 9549aa8f-4f35-421e-9b72-036251b3f8c4))
  6325. (pin "8" (uuid 2f8a3e68-5664-4c89-bee1-735ddf9447d6))
  6326. (pin "9" (uuid a783460e-06f2-4d51-8298-a354f46abe25))
  6327. )
  6328. (symbol (lib_id "Device:C_Small") (at 266.065 256.54 0) (unit 1)
  6329. (in_bom yes) (on_board yes)
  6330. (uuid 4ba1d77c-6d58-4d30-b0a7-c1e54b093936)
  6331. (property "Reference" "C2" (id 0) (at 262.255 259.08 0)
  6332. (effects (font (size 1.27 1.27)) (justify left))
  6333. )
  6334. (property "Value" "22uF/10V/20%/0603" (id 1) (at 267.335 267.97 90)
  6335. (effects (font (size 0.635 0.635)) (justify left))
  6336. )
  6337. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 266.065 256.54 0)
  6338. (effects (font (size 1.27 1.27)) hide)
  6339. )
  6340. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810311140_Murata-Electronics-GRM188R61A226ME15D_C84419.pdf" (id 3) (at 266.065 256.54 0)
  6341. (effects (font (size 1.27 1.27)) hide)
  6342. )
  6343. (property "Mfr #" "GRM188R61A226ME15D" (id 4) (at 266.065 256.54 0)
  6344. (effects (font (size 1.27 1.27)) hide)
  6345. )
  6346. (property "LCSC #" "C84419" (id 5) (at 266.065 256.54 0)
  6347. (effects (font (size 1.27 1.27)) hide)
  6348. )
  6349. (pin "1" (uuid b141287f-ddf4-4737-8e06-f3d439efc73a))
  6350. (pin "2" (uuid 5d79ef63-3e0c-405b-9e31-116777b7a2d4))
  6351. )
  6352. (symbol (lib_id "Device:C_Small") (at 76.2 234.95 0) (unit 1)
  6353. (in_bom yes) (on_board yes)
  6354. (uuid 4c45ca4f-7520-44f4-b4ab-307932644845)
  6355. (property "Reference" "C22" (id 0) (at 72.39 237.49 0)
  6356. (effects (font (size 1.27 1.27)) (justify left))
  6357. )
  6358. (property "Value" "100nF/25V/10%/0402" (id 1) (at 77.089 247.015 90)
  6359. (effects (font (size 0.635 0.635)) (justify left))
  6360. )
  6361. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 76.2 234.95 0)
  6362. (effects (font (size 1.27 1.27)) hide)
  6363. )
  6364. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 76.2 234.95 0)
  6365. (effects (font (size 1.27 1.27)) hide)
  6366. )
  6367. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 76.2 234.95 0)
  6368. (effects (font (size 1.27 1.27)) hide)
  6369. )
  6370. (property "LCSC #" "C77014" (id 5) (at 76.2 234.95 0)
  6371. (effects (font (size 1.27 1.27)) hide)
  6372. )
  6373. (pin "1" (uuid 88f0ce1d-3dab-4609-b678-c7064684a4a4))
  6374. (pin "2" (uuid 7724fc02-7764-4a9c-9123-63bc3ae01cd7))
  6375. )
  6376. (symbol (lib_id "power:GND") (at 266.065 269.24 0) (unit 1)
  6377. (in_bom yes) (on_board yes)
  6378. (uuid 4f6a9aee-48b7-463a-9d63-9b62fd1c844c)
  6379. (property "Reference" "#PWR0117" (id 0) (at 266.065 275.59 0)
  6380. (effects (font (size 1.27 1.27)) hide)
  6381. )
  6382. (property "Value" "GND" (id 1) (at 266.192 273.6342 0))
  6383. (property "Footprint" "" (id 2) (at 266.065 269.24 0)
  6384. (effects (font (size 1.27 1.27)) hide)
  6385. )
  6386. (property "Datasheet" "" (id 3) (at 266.065 269.24 0)
  6387. (effects (font (size 1.27 1.27)) hide)
  6388. )
  6389. (pin "1" (uuid 25a23320-4e4a-4958-847c-36afda8413c9))
  6390. )
  6391. (symbol (lib_id "Device:C_Small") (at 244.475 256.54 0) (unit 1)
  6392. (in_bom yes) (on_board yes)
  6393. (uuid 4f732699-10ca-49c3-a111-e29bc51387a6)
  6394. (property "Reference" "C1" (id 0) (at 240.665 259.08 0)
  6395. (effects (font (size 1.27 1.27)) (justify left))
  6396. )
  6397. (property "Value" "10uF/25V/20%/0603" (id 1) (at 245.745 267.97 90)
  6398. (effects (font (size 0.635 0.635)) (justify left))
  6399. )
  6400. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 244.475 256.54 0)
  6401. (effects (font (size 1.27 1.27)) hide)
  6402. )
  6403. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131721_Murata-Electronics-GRM188R61E106MA73D_C91606.pdf" (id 3) (at 244.475 256.54 0)
  6404. (effects (font (size 1.27 1.27)) hide)
  6405. )
  6406. (property "Mfr #" "GRM188R61E106MA73D" (id 4) (at 244.475 256.54 0)
  6407. (effects (font (size 1.27 1.27)) hide)
  6408. )
  6409. (property "LCSC #" "C91606" (id 5) (at 244.475 256.54 0)
  6410. (effects (font (size 1.27 1.27)) hide)
  6411. )
  6412. (pin "1" (uuid bdf119c6-404c-422c-88d0-3639539bca16))
  6413. (pin "2" (uuid 72666a57-1446-48b3-9815-c747494a4aa3))
  6414. )
  6415. (symbol (lib_id "Device:R_Small") (at 289.56 116.205 270) (unit 1)
  6416. (in_bom yes) (on_board yes)
  6417. (uuid 52eac967-7d94-4d8b-9b8f-c6859ea9fecb)
  6418. (property "Reference" "R6" (id 0) (at 293.37 114.935 90))
  6419. (property "Value" "1K/1%" (id 1) (at 289.56 118.745 90))
  6420. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 289.56 116.205 0)
  6421. (effects (font (size 1.27 1.27)) hide)
  6422. )
  6423. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809301716_YAGEO-RC0402FR-071KL_C106235.pdf" (id 3) (at 289.56 116.205 0)
  6424. (effects (font (size 1.27 1.27)) hide)
  6425. )
  6426. (property "Mfr #" "RC0402FR-071KL" (id 4) (at 289.56 116.205 90)
  6427. (effects (font (size 1.27 1.27)) hide)
  6428. )
  6429. (property "LCSC #" "C106235" (id 5) (at 289.56 116.205 90)
  6430. (effects (font (size 1.27 1.27)) hide)
  6431. )
  6432. (pin "1" (uuid 0991ae1c-780c-42d5-8adf-8bbf34ec815a))
  6433. (pin "2" (uuid 036c2e1a-ab31-4565-8fd7-76d8e6fe8edf))
  6434. )
  6435. (symbol (lib_id "power:GND") (at 308.61 66.675 0) (unit 1)
  6436. (in_bom yes) (on_board yes)
  6437. (uuid 543d85b9-6956-4d40-adcc-d7eb4894ec9d)
  6438. (property "Reference" "#PWR0103" (id 0) (at 308.61 73.025 0)
  6439. (effects (font (size 1.27 1.27)) hide)
  6440. )
  6441. (property "Value" "GND" (id 1) (at 308.737 71.0692 0))
  6442. (property "Footprint" "" (id 2) (at 308.61 66.675 0)
  6443. (effects (font (size 1.27 1.27)) hide)
  6444. )
  6445. (property "Datasheet" "" (id 3) (at 308.61 66.675 0)
  6446. (effects (font (size 1.27 1.27)) hide)
  6447. )
  6448. (pin "1" (uuid 382b10d5-fe17-46aa-a5ed-87ae8f353b2a))
  6449. )
  6450. (symbol (lib_id "power:GND") (at 285.75 183.515 0) (unit 1)
  6451. (in_bom yes) (on_board yes)
  6452. (uuid 544adac2-3f6a-4486-8f6c-96876e3e8065)
  6453. (property "Reference" "#PWR0123" (id 0) (at 285.75 189.865 0)
  6454. (effects (font (size 1.27 1.27)) hide)
  6455. )
  6456. (property "Value" "GND" (id 1) (at 285.877 187.9092 0))
  6457. (property "Footprint" "" (id 2) (at 285.75 183.515 0)
  6458. (effects (font (size 1.27 1.27)) hide)
  6459. )
  6460. (property "Datasheet" "" (id 3) (at 285.75 183.515 0)
  6461. (effects (font (size 1.27 1.27)) hide)
  6462. )
  6463. (pin "1" (uuid 7183f2ce-c8ee-4c2d-94f9-8186657eede3))
  6464. )
  6465. (symbol (lib_id "power:+3V3") (at 282.575 248.92 0) (unit 1)
  6466. (in_bom yes) (on_board yes) (fields_autoplaced)
  6467. (uuid 5e8f49b0-bc20-4c5a-8256-b584ef1d2905)
  6468. (property "Reference" "#PWR0127" (id 0) (at 282.575 252.73 0)
  6469. (effects (font (size 1.27 1.27)) hide)
  6470. )
  6471. (property "Value" "+3V3" (id 1) (at 282.575 243.84 0))
  6472. (property "Footprint" "" (id 2) (at 282.575 248.92 0)
  6473. (effects (font (size 1.27 1.27)) hide)
  6474. )
  6475. (property "Datasheet" "" (id 3) (at 282.575 248.92 0)
  6476. (effects (font (size 1.27 1.27)) hide)
  6477. )
  6478. (pin "1" (uuid ec5271ae-93e7-4383-92f6-d803685af782))
  6479. )
  6480. (symbol (lib_id "Z80ICE:bead-myRF") (at 285.75 48.895 270) (unit 1)
  6481. (in_bom yes) (on_board yes)
  6482. (uuid 61291441-aedb-4d0a-a7f9-a9e41f67be02)
  6483. (property "Reference" "FB1" (id 0) (at 283.972 47.117 90)
  6484. (effects (font (size 1.27 1.27)) (justify left))
  6485. )
  6486. (property "Value" "bead" (id 1) (at 283.464 44.958 90)
  6487. (effects (font (size 1.27 1.27)) (justify left))
  6488. )
  6489. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 283.972 48.895 90)
  6490. (effects (font (size 1.27 1.27)) hide)
  6491. )
  6492. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810201211_Murata-Electronics-BLM21AG601SN1D_C85837.pdf" (id 3) (at 285.75 48.895 0)
  6493. (effects (font (size 1.27 1.27)) hide)
  6494. )
  6495. (property "Mfr #" "BLM21AG601SN1D" (id 4) (at 285.75 48.895 90)
  6496. (effects (font (size 1.27 1.27)) hide)
  6497. )
  6498. (property "LCSC #" "C85837" (id 5) (at 285.75 48.895 90)
  6499. (effects (font (size 1.27 1.27)) hide)
  6500. )
  6501. (pin "1" (uuid b6726a21-b2aa-4bce-9a15-4245bed68004))
  6502. (pin "2" (uuid 11688b4d-e900-4a29-8b2d-01787f5094bb))
  6503. )
  6504. (symbol (lib_id "Device:LED") (at 274.955 265.43 90) (unit 1)
  6505. (in_bom yes) (on_board yes)
  6506. (uuid 64faa7b7-400d-423f-ac33-57935ca2e37c)
  6507. (property "Reference" "D1" (id 0) (at 277.9268 264.4394 90)
  6508. (effects (font (size 1.27 1.27)) (justify right))
  6509. )
  6510. (property "Value" "LED" (id 1) (at 277.9268 266.7508 90)
  6511. (effects (font (size 1.27 1.27)) (justify right))
  6512. )
  6513. (property "Footprint" "LED_SMD:LED_0402_1005Metric" (id 2) (at 274.955 265.43 0)
  6514. (effects (font (size 1.27 1.27)) hide)
  6515. )
  6516. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810010223_Foshan-NationStar-Optoelectronics-FC-F1005HRK-620H5_C130719.pdf" (id 3) (at 274.955 265.43 0)
  6517. (effects (font (size 1.27 1.27)) hide)
  6518. )
  6519. (property "Mfr #" "FC-F1005HRK-620H5" (id 4) (at 274.955 265.43 90)
  6520. (effects (font (size 1.27 1.27)) hide)
  6521. )
  6522. (property "LCSC #" "C130719" (id 5) (at 274.955 265.43 90)
  6523. (effects (font (size 1.27 1.27)) hide)
  6524. )
  6525. (pin "1" (uuid b43fc71a-f954-4aae-b9fe-c377c02fe6ea))
  6526. (pin "2" (uuid 79dfd56e-41c8-4f2e-96e9-ac09e5cd2ffe))
  6527. )
  6528. (symbol (lib_id "Device:C_Small") (at 100.965 234.95 0) (unit 1)
  6529. (in_bom yes) (on_board yes)
  6530. (uuid 6882bc07-bbe7-42b9-973d-3811e94777ef)
  6531. (property "Reference" "C26" (id 0) (at 97.155 237.49 0)
  6532. (effects (font (size 1.27 1.27)) (justify left))
  6533. )
  6534. (property "Value" "100nF/25V/10%/0402" (id 1) (at 101.854 247.015 90)
  6535. (effects (font (size 0.635 0.635)) (justify left))
  6536. )
  6537. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 100.965 234.95 0)
  6538. (effects (font (size 1.27 1.27)) hide)
  6539. )
  6540. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 100.965 234.95 0)
  6541. (effects (font (size 1.27 1.27)) hide)
  6542. )
  6543. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 100.965 234.95 0)
  6544. (effects (font (size 1.27 1.27)) hide)
  6545. )
  6546. (property "LCSC #" "C77014" (id 5) (at 100.965 234.95 0)
  6547. (effects (font (size 1.27 1.27)) hide)
  6548. )
  6549. (pin "1" (uuid 2e0fc932-ecf8-4985-adad-5e91e40b2c6d))
  6550. (pin "2" (uuid d2ab565d-80ae-40d2-9c52-1e8cbde99d91))
  6551. )
  6552. (symbol (lib_id "power:GND") (at 333.375 241.3 0) (unit 1)
  6553. (in_bom yes) (on_board yes)
  6554. (uuid 68d487e2-f1a5-45e6-b4df-2f0c81d53dcf)
  6555. (property "Reference" "#PWR0115" (id 0) (at 333.375 247.65 0)
  6556. (effects (font (size 1.27 1.27)) hide)
  6557. )
  6558. (property "Value" "GND" (id 1) (at 333.502 245.6942 0))
  6559. (property "Footprint" "" (id 2) (at 333.375 241.3 0)
  6560. (effects (font (size 1.27 1.27)) hide)
  6561. )
  6562. (property "Datasheet" "" (id 3) (at 333.375 241.3 0)
  6563. (effects (font (size 1.27 1.27)) hide)
  6564. )
  6565. (pin "1" (uuid 4eb0590c-e0fa-4a89-81b6-8806a3fde82e))
  6566. )
  6567. (symbol (lib_id "Z80ICE:HRO-TYPE-C-31-M-12") (at 318.135 222.25 0) (unit 1)
  6568. (in_bom yes) (on_board yes)
  6569. (uuid 693bf11b-0d1b-4d96-9e48-744408da6046)
  6570. (property "Reference" "USB1" (id 0) (at 318.135 191.6938 0)
  6571. (effects (font (size 1.524 1.524)))
  6572. )
  6573. (property "Value" "HRO-TYPE-C-31-M-12" (id 1) (at 318.135 194.3862 0)
  6574. (effects (font (size 1.524 1.524)))
  6575. )
  6576. (property "Footprint" "sm6uax:HRO-TYPE-C-31-M-12" (id 2) (at 318.135 197.0786 0)
  6577. (effects (font (size 1.524 1.524)))
  6578. )
  6579. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811131825_Korean-Hroparts-Elec-TYPE-C-31-M-12_C165948.pdf" (id 3) (at 300.355 220.98 0)
  6580. (effects (font (size 1.524 1.524)) hide)
  6581. )
  6582. (property "LCSC" "C165948" (id 4) (at 318.135 222.25 0)
  6583. (effects (font (size 1.27 1.27)) hide)
  6584. )
  6585. (pin "1" (uuid f81bfcdd-3a22-4350-bbb3-17ad778d1602))
  6586. (pin "10" (uuid ed20914d-b0e4-4243-b1ce-ae054e35bafb))
  6587. (pin "11" (uuid 62281ca7-4ed7-48e8-8862-6b2e344b495c))
  6588. (pin "12" (uuid b895ee2e-321c-448e-8333-4b87f458cc35))
  6589. (pin "13" (uuid 0fcbace6-6428-482d-85ba-800f13a839c0))
  6590. (pin "2" (uuid bfc8a999-6e2a-4f1b-bf3c-26ec3bd17b4a))
  6591. (pin "3" (uuid fb88d865-980b-41f5-936d-d4149a7fe630))
  6592. (pin "4" (uuid 3331072f-8196-44aa-9fed-ae925ded5e58))
  6593. (pin "5" (uuid 7aa67c73-e8df-4cba-9bda-691576feb75a))
  6594. (pin "6" (uuid 701d7a89-51fa-40bb-8d31-1bb3083316a9))
  6595. (pin "7" (uuid 3a23b8bc-1284-4adb-98cf-f60d3ae2347a))
  6596. (pin "8" (uuid 27497543-9a66-491b-9e1a-c6747055da0e))
  6597. (pin "9" (uuid 27f157bc-ac5d-4ccd-a255-3593d9d30bfd))
  6598. )
  6599. (symbol (lib_id "power:GND") (at 365.125 238.76 0) (unit 1)
  6600. (in_bom yes) (on_board yes)
  6601. (uuid 694a98d7-e6ec-408f-9bf7-d46935ce37b5)
  6602. (property "Reference" "#PWR0116" (id 0) (at 365.125 245.11 0)
  6603. (effects (font (size 1.27 1.27)) hide)
  6604. )
  6605. (property "Value" "GND" (id 1) (at 365.252 243.1542 0))
  6606. (property "Footprint" "" (id 2) (at 365.125 238.76 0)
  6607. (effects (font (size 1.27 1.27)) hide)
  6608. )
  6609. (property "Datasheet" "" (id 3) (at 365.125 238.76 0)
  6610. (effects (font (size 1.27 1.27)) hide)
  6611. )
  6612. (pin "1" (uuid 6c697cae-111d-4c07-b307-33f37de50188))
  6613. )
  6614. (symbol (lib_id "power:GND") (at 297.18 66.675 0) (unit 1)
  6615. (in_bom yes) (on_board yes)
  6616. (uuid 6b1bfa2c-f66d-4683-99c1-0f6cf8cfde16)
  6617. (property "Reference" "#PWR0101" (id 0) (at 297.18 73.025 0)
  6618. (effects (font (size 1.27 1.27)) hide)
  6619. )
  6620. (property "Value" "GND" (id 1) (at 297.307 71.0692 0))
  6621. (property "Footprint" "" (id 2) (at 297.18 66.675 0)
  6622. (effects (font (size 1.27 1.27)) hide)
  6623. )
  6624. (property "Datasheet" "" (id 3) (at 297.18 66.675 0)
  6625. (effects (font (size 1.27 1.27)) hide)
  6626. )
  6627. (pin "1" (uuid 8383aef1-9a65-447e-9235-c4574290ce5d))
  6628. )
  6629. (symbol (lib_id "power:GND") (at 386.715 223.52 0) (unit 1)
  6630. (in_bom yes) (on_board yes)
  6631. (uuid 6ce05476-e28f-459e-bab0-0fb22972f73f)
  6632. (property "Reference" "#PWR0109" (id 0) (at 386.715 229.87 0)
  6633. (effects (font (size 1.27 1.27)) hide)
  6634. )
  6635. (property "Value" "GND" (id 1) (at 386.842 227.9142 0))
  6636. (property "Footprint" "" (id 2) (at 386.715 223.52 0)
  6637. (effects (font (size 1.27 1.27)) hide)
  6638. )
  6639. (property "Datasheet" "" (id 3) (at 386.715 223.52 0)
  6640. (effects (font (size 1.27 1.27)) hide)
  6641. )
  6642. (pin "1" (uuid 40baed2b-dc5b-43b6-99e0-d8d758e356f7))
  6643. )
  6644. (symbol (lib_id "Device:C_Small") (at 36.83 234.95 0) (unit 1)
  6645. (in_bom yes) (on_board yes)
  6646. (uuid 6e5e4d10-d5f1-4d7b-bc02-f93f1043f025)
  6647. (property "Reference" "C16" (id 0) (at 33.02 237.49 0)
  6648. (effects (font (size 1.27 1.27)) (justify left))
  6649. )
  6650. (property "Value" "100nF/25V/10%/0402" (id 1) (at 37.719 247.015 90)
  6651. (effects (font (size 0.635 0.635)) (justify left))
  6652. )
  6653. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 36.83 234.95 0)
  6654. (effects (font (size 1.27 1.27)) hide)
  6655. )
  6656. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 36.83 234.95 0)
  6657. (effects (font (size 1.27 1.27)) hide)
  6658. )
  6659. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 36.83 234.95 0)
  6660. (effects (font (size 1.27 1.27)) hide)
  6661. )
  6662. (property "LCSC #" "C77014" (id 5) (at 36.83 234.95 0)
  6663. (effects (font (size 1.27 1.27)) hide)
  6664. )
  6665. (pin "1" (uuid ae73f589-68e1-4402-b8d5-9f0103026629))
  6666. (pin "2" (uuid c5772caa-53a9-4742-9f30-a6c0552a476c))
  6667. )
  6668. (symbol (lib_id "power:+3V3") (at 266.7 76.835 0) (unit 1)
  6669. (in_bom yes) (on_board yes) (fields_autoplaced)
  6670. (uuid 6eff8a91-4d82-40e9-909d-6abc1afb2edb)
  6671. (property "Reference" "#PWR0133" (id 0) (at 266.7 80.645 0)
  6672. (effects (font (size 1.27 1.27)) hide)
  6673. )
  6674. (property "Value" "+3V3" (id 1) (at 266.7 71.755 0))
  6675. (property "Footprint" "" (id 2) (at 266.7 76.835 0)
  6676. (effects (font (size 1.27 1.27)) hide)
  6677. )
  6678. (property "Datasheet" "" (id 3) (at 266.7 76.835 0)
  6679. (effects (font (size 1.27 1.27)) hide)
  6680. )
  6681. (pin "1" (uuid fa645303-d7b9-4dfa-b1ef-0f0217486cf6))
  6682. )
  6683. (symbol (lib_id "Z80ICE:bead-myRF") (at 285.75 51.435 90) (unit 1)
  6684. (in_bom yes) (on_board yes)
  6685. (uuid 6f8a299b-825c-4e8b-86b5-22f83635d696)
  6686. (property "Reference" "FB2" (id 0) (at 287.655 53.213 90)
  6687. (effects (font (size 1.27 1.27)) (justify left))
  6688. )
  6689. (property "Value" "bead" (id 1) (at 288.29 54.991 90)
  6690. (effects (font (size 1.27 1.27)) (justify left))
  6691. )
  6692. (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (id 2) (at 287.528 51.435 90)
  6693. (effects (font (size 1.27 1.27)) hide)
  6694. )
  6695. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810201211_Murata-Electronics-BLM21AG601SN1D_C85837.pdf" (id 3) (at 285.75 51.435 0)
  6696. (effects (font (size 1.27 1.27)) hide)
  6697. )
  6698. (property "Mfr #" "BLM21AG601SN1D" (id 4) (at 285.75 51.435 90)
  6699. (effects (font (size 1.27 1.27)) hide)
  6700. )
  6701. (property "LCSC #" "C85837" (id 5) (at 285.75 51.435 90)
  6702. (effects (font (size 1.27 1.27)) hide)
  6703. )
  6704. (pin "1" (uuid 64d5f716-89de-4fe5-9fd9-25af8d55016c))
  6705. (pin "2" (uuid ec9f4a0a-43cd-4671-8205-8bc1bf7c9871))
  6706. )
  6707. (symbol (lib_id "Regulator_Linear:AMS1117-3.3") (at 257.175 252.73 0) (unit 1)
  6708. (in_bom yes) (on_board yes)
  6709. (uuid 7049dfae-5363-4f06-bd50-caf296fe785b)
  6710. (property "Reference" "U3" (id 0) (at 257.175 246.5832 0))
  6711. (property "Value" "AMS1117-3.3" (id 1) (at 257.175 248.8946 0))
  6712. (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 257.175 247.65 0)
  6713. (effects (font (size 1.27 1.27)) hide)
  6714. )
  6715. (property "Datasheet" "http://www.advanced-monolithic.com/pdf/ds1117.pdf" (id 3) (at 259.715 259.08 0)
  6716. (effects (font (size 1.27 1.27)) hide)
  6717. )
  6718. (property "Mfr #" "AMS1117-3.3" (id 4) (at 257.175 252.73 0)
  6719. (effects (font (size 1.27 1.27)) hide)
  6720. )
  6721. (property "LCSC #" "C6186" (id 5) (at 257.175 252.73 0)
  6722. (effects (font (size 1.27 1.27)) hide)
  6723. )
  6724. (pin "1" (uuid 640270ec-4feb-4024-810e-ea82e2d91af2))
  6725. (pin "2" (uuid 54b3a07c-9089-476a-8b35-ae28f36b1dd0))
  6726. (pin "3" (uuid d5e57127-85ca-434a-9ba6-4a6dbfbbccb6))
  6727. )
  6728. (symbol (lib_id "power:GND") (at 303.53 66.675 0) (unit 1)
  6729. (in_bom yes) (on_board yes)
  6730. (uuid 764c3897-0039-4e8b-827f-ba7e1c0b435a)
  6731. (property "Reference" "#PWR0104" (id 0) (at 303.53 73.025 0)
  6732. (effects (font (size 1.27 1.27)) hide)
  6733. )
  6734. (property "Value" "GND" (id 1) (at 303.657 71.0692 0))
  6735. (property "Footprint" "" (id 2) (at 303.53 66.675 0)
  6736. (effects (font (size 1.27 1.27)) hide)
  6737. )
  6738. (property "Datasheet" "" (id 3) (at 303.53 66.675 0)
  6739. (effects (font (size 1.27 1.27)) hide)
  6740. )
  6741. (pin "1" (uuid 3c2266d8-a634-468d-bc8a-4754afe19c47))
  6742. )
  6743. (symbol (lib_id "power:+5V") (at 167.005 125.095 0) (unit 1)
  6744. (in_bom yes) (on_board yes)
  6745. (uuid 77281cde-783b-470a-b755-948418415ed5)
  6746. (property "Reference" "#PWR0140" (id 0) (at 167.005 128.905 0)
  6747. (effects (font (size 1.27 1.27)) hide)
  6748. )
  6749. (property "Value" "+5V" (id 1) (at 163.195 121.92 0))
  6750. (property "Footprint" "" (id 2) (at 167.005 125.095 0)
  6751. (effects (font (size 1.27 1.27)) hide)
  6752. )
  6753. (property "Datasheet" "" (id 3) (at 167.005 125.095 0)
  6754. (effects (font (size 1.27 1.27)) hide)
  6755. )
  6756. (pin "1" (uuid 840c6b48-25bd-4ac3-96d9-6934ee49a8cc))
  6757. )
  6758. (symbol (lib_id "Device:C") (at 386.715 218.44 0) (mirror x) (unit 1)
  6759. (in_bom yes) (on_board yes)
  6760. (uuid 7af7cadc-26a6-4b18-b8af-49ac9af1256e)
  6761. (property "Reference" "C15" (id 0) (at 380.3142 218.44 0))
  6762. (property "Value" "1uF" (id 1) (at 381.635 220.98 0))
  6763. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 387.6802 214.63 0)
  6764. (effects (font (size 1.27 1.27)) hide)
  6765. )
  6766. (property "Datasheet" "~" (id 3) (at 386.715 218.44 0)
  6767. (effects (font (size 1.27 1.27)) hide)
  6768. )
  6769. (property "LCSC" "C15849" (id 4) (at 351.155 194.31 0)
  6770. (effects (font (size 1.27 1.27)) hide)
  6771. )
  6772. (property "MOUSER" "" (id 5) (at 351.155 194.31 0)
  6773. (effects (font (size 1.27 1.27)) hide)
  6774. )
  6775. (property "MPN" "" (id 6) (at 351.155 194.31 0)
  6776. (effects (font (size 1.27 1.27)) hide)
  6777. )
  6778. (property "Supplier" "" (id 7) (at 386.715 218.44 0)
  6779. (effects (font (size 1.27 1.27)) hide)
  6780. )
  6781. (pin "1" (uuid d0e877cc-22fc-4de2-be07-61cce397c186))
  6782. (pin "2" (uuid 36ebab4e-68a9-4673-9aef-45bf98ecf048))
  6783. )
  6784. (symbol (lib_id "Device:C_Small") (at 25.4 262.89 0) (unit 1)
  6785. (in_bom yes) (on_board yes)
  6786. (uuid 7b8181fe-5e51-4e10-b3e5-ceb58c7ff6d6)
  6787. (property "Reference" "C12" (id 0) (at 21.59 265.43 0)
  6788. (effects (font (size 1.27 1.27)) (justify left))
  6789. )
  6790. (property "Value" "100nF/25V/10%/0402" (id 1) (at 26.289 274.955 90)
  6791. (effects (font (size 0.635 0.635)) (justify left))
  6792. )
  6793. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 25.4 262.89 0)
  6794. (effects (font (size 1.27 1.27)) hide)
  6795. )
  6796. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 25.4 262.89 0)
  6797. (effects (font (size 1.27 1.27)) hide)
  6798. )
  6799. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 25.4 262.89 0)
  6800. (effects (font (size 1.27 1.27)) hide)
  6801. )
  6802. (property "LCSC #" "C77014" (id 5) (at 25.4 262.89 0)
  6803. (effects (font (size 1.27 1.27)) hide)
  6804. )
  6805. (pin "1" (uuid 5ae3b1b6-4a3e-496d-bda6-2268937db7c6))
  6806. (pin "2" (uuid 4a2f9366-8e7e-4ca4-bc1f-d241b5eab343))
  6807. )
  6808. (symbol (lib_id "Device:C_Small") (at 69.85 234.95 0) (unit 1)
  6809. (in_bom yes) (on_board yes)
  6810. (uuid 7d90245e-04eb-4be4-b24b-627e25f4d5e5)
  6811. (property "Reference" "C21" (id 0) (at 66.04 237.49 0)
  6812. (effects (font (size 1.27 1.27)) (justify left))
  6813. )
  6814. (property "Value" "100nF/25V/10%/0402" (id 1) (at 70.739 247.015 90)
  6815. (effects (font (size 0.635 0.635)) (justify left))
  6816. )
  6817. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 69.85 234.95 0)
  6818. (effects (font (size 1.27 1.27)) hide)
  6819. )
  6820. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 69.85 234.95 0)
  6821. (effects (font (size 1.27 1.27)) hide)
  6822. )
  6823. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 69.85 234.95 0)
  6824. (effects (font (size 1.27 1.27)) hide)
  6825. )
  6826. (property "LCSC #" "C77014" (id 5) (at 69.85 234.95 0)
  6827. (effects (font (size 1.27 1.27)) hide)
  6828. )
  6829. (pin "1" (uuid 97a179f1-5a42-41e3-9147-9b7f017c15c6))
  6830. (pin "2" (uuid 5cad07d2-b699-4e01-89f0-5846be69efe7))
  6831. )
  6832. (symbol (lib_id "Device:LED") (at 495.3 139.065 0) (unit 1)
  6833. (in_bom yes) (on_board yes)
  6834. (uuid 80f97144-6d62-432e-8957-a92143e1d836)
  6835. (property "Reference" "D2" (id 0) (at 495.3 134.112 0))
  6836. (property "Value" "LED" (id 1) (at 495.1222 135.89 0))
  6837. (property "Footprint" "LED_SMD:LED_0402_1005Metric" (id 2) (at 495.3 139.065 0)
  6838. (effects (font (size 1.27 1.27)) hide)
  6839. )
  6840. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809221846_Bright-LED-Elec-BL-HB337A-AV-TRB_C165977.pdf" (id 3) (at 495.3 139.065 0)
  6841. (effects (font (size 1.27 1.27)) hide)
  6842. )
  6843. (property "Mfr #" "BL-HB337A-AV-TRB" (id 4) (at 495.3 139.065 0)
  6844. (effects (font (size 1.27 1.27)) hide)
  6845. )
  6846. (property "LCSC #" "C165977" (id 5) (at 495.3 139.065 0)
  6847. (effects (font (size 1.27 1.27)) hide)
  6848. )
  6849. (pin "1" (uuid 6b65e7a9-0f4c-481a-ac41-1b46ca1a33a7))
  6850. (pin "2" (uuid 0ba068db-8f1e-4a42-a2e4-1fed86df5524))
  6851. )
  6852. (symbol (lib_id "power:GND") (at 81.915 246.38 0) (unit 1)
  6853. (in_bom yes) (on_board yes)
  6854. (uuid 81c0b866-5307-4c56-a44f-b670ded4ed61)
  6855. (property "Reference" "#PWR0154" (id 0) (at 81.915 252.73 0)
  6856. (effects (font (size 1.27 1.27)) hide)
  6857. )
  6858. (property "Value" "GND" (id 1) (at 82.042 250.7742 0))
  6859. (property "Footprint" "" (id 2) (at 81.915 246.38 0)
  6860. (effects (font (size 1.27 1.27)) hide)
  6861. )
  6862. (property "Datasheet" "" (id 3) (at 81.915 246.38 0)
  6863. (effects (font (size 1.27 1.27)) hide)
  6864. )
  6865. (pin "1" (uuid 52713f03-a08a-459a-9cb3-0d72a5d553cb))
  6866. )
  6867. (symbol (lib_id "Device:Crystal_GND24") (at 279.4 167.005 0) (unit 1)
  6868. (in_bom yes) (on_board yes)
  6869. (uuid 82c18ee2-61a6-4dc4-9b18-2abfdbe5131d)
  6870. (property "Reference" "Y1" (id 0) (at 284.3276 165.8366 0)
  6871. (effects (font (size 1.27 1.27)) (justify left))
  6872. )
  6873. (property "Value" "7M12000044" (id 1) (at 281.94 163.195 0)
  6874. (effects (font (size 1.27 1.27)) (justify left))
  6875. )
  6876. (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" (id 2) (at 279.4 167.005 0)
  6877. (effects (font (size 1.27 1.27)) hide)
  6878. )
  6879. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/TXC-Corp-7M1204LCSC-EIE4S_C93114.pdf" (id 3) (at 279.4 167.005 0)
  6880. (effects (font (size 1.27 1.27)) hide)
  6881. )
  6882. (property "Mfr #" "7M12000044" (id 4) (at 279.4 167.005 0)
  6883. (effects (font (size 1.27 1.27)) hide)
  6884. )
  6885. (property "LCSC #" "C93114" (id 5) (at 279.4 167.005 0)
  6886. (effects (font (size 1.27 1.27)) hide)
  6887. )
  6888. (pin "1" (uuid e88173f8-6c33-4460-8880-e30b69ac0007))
  6889. (pin "2" (uuid 86020bc2-417c-4703-a8a8-d38949e3c45b))
  6890. (pin "3" (uuid cc6467fd-bfa5-448e-b0e0-0920cf46927f))
  6891. (pin "4" (uuid 39108dba-baef-4be9-bdaf-783588bbadda))
  6892. )
  6893. (symbol (lib_id "Z80ICE:CY7C1019D-10VXIT") (at 165.735 80.645 0) (unit 1)
  6894. (in_bom yes) (on_board yes) (fields_autoplaced)
  6895. (uuid 83a01f69-1c58-4b9b-96a1-104f416212b1)
  6896. (property "Reference" "U6" (id 0) (at 169.0244 44.45 0)
  6897. (effects (font (size 1.27 1.27)) (justify left))
  6898. )
  6899. (property "Value" "CY7C1019D-10VXIT" (id 1) (at 169.0244 46.99 0)
  6900. (effects (font (size 1.27 1.27)) (justify left))
  6901. )
  6902. (property "Footprint" "Z80ICE:SOJ-32_10.16x23.49mm_P1.27mm" (id 2) (at 153.035 51.435 0)
  6903. (effects (font (size 1.27 1.27)) hide)
  6904. )
  6905. (property "Datasheet" "https://www.mouser.se/datasheet/2/196/CYPRS13494_1-3003573.pdf" (id 3) (at 165.735 80.645 0)
  6906. (effects (font (size 1.27 1.27)) hide)
  6907. )
  6908. (pin "1" (uuid 92085461-b0a5-49e2-9490-1c08646aa26b))
  6909. (pin "10" (uuid f7b81b62-4065-4dfc-9a66-54fb92b52441))
  6910. (pin "11" (uuid 044b6021-2aed-4b69-b57a-4765d918cc80))
  6911. (pin "12" (uuid 3d626f07-a921-41e1-a30e-0ac7d3db6992))
  6912. (pin "13" (uuid 2369a951-e59c-4033-8b0d-b9508358945a))
  6913. (pin "14" (uuid b78a0e81-b5c9-46b2-a98d-833b85572f2d))
  6914. (pin "15" (uuid 799a559a-1600-42f1-be23-dfdaef6c5b08))
  6915. (pin "16" (uuid d3b8f9af-46bd-41ab-bcb3-f03a99fa6519))
  6916. (pin "17" (uuid c2166694-b778-40ab-aa0a-2603b0267df1))
  6917. (pin "18" (uuid f0ee4a50-39c6-4b1f-a7bd-b5d98097150a))
  6918. (pin "19" (uuid 7161480c-559f-4aa5-a501-cdcf06862a56))
  6919. (pin "2" (uuid 842ed149-6e08-47f1-9754-09c5bb58ca8f))
  6920. (pin "20" (uuid b93e9f90-85e5-41bc-9a4e-78762eae9635))
  6921. (pin "21" (uuid 8d010bc7-23dd-43ef-9ba0-2deb386a2d4c))
  6922. (pin "22" (uuid 4121c251-2773-4262-9436-5187c6f0cebd))
  6923. (pin "23" (uuid 2617da9e-e677-4925-ba4c-c4708688f689))
  6924. (pin "24" (uuid 829abdf4-0271-46dd-847d-4b5be52aa4fb))
  6925. (pin "25" (uuid 23650a51-c6af-4fae-b6a9-a2b4a69015cf))
  6926. (pin "26" (uuid 779f172d-30e2-4f17-a906-5df0f1bd9652))
  6927. (pin "27" (uuid c23dcc48-db6d-4e11-b1f2-fc3f53791a87))
  6928. (pin "28" (uuid 164fa8cf-0c0a-4de8-b3e4-9a70cf7d70ef))
  6929. (pin "29" (uuid 7b8b5b8e-0b4d-405f-bd76-d3d57c7d1e02))
  6930. (pin "3" (uuid d1bdd7d8-5a78-4025-a7fe-57626e0f073e))
  6931. (pin "30" (uuid 55faa1e3-7897-49dc-9d53-46a459ce8d39))
  6932. (pin "31" (uuid 494653b6-54ac-4633-b523-673d4d3aaae5))
  6933. (pin "32" (uuid e19a6980-a5d0-4bce-b529-b8eeb7d1f7aa))
  6934. (pin "4" (uuid c2baeab8-c1ff-4a54-8972-a0c5d8bfbee2))
  6935. (pin "5" (uuid 4a307879-02c4-4352-bab8-30d5ccd27264))
  6936. (pin "6" (uuid e35d123a-7cad-4535-922f-bbc791db564d))
  6937. (pin "7" (uuid 853e5a5f-27fb-4af6-8a95-f088b11ea04b))
  6938. (pin "8" (uuid 5827417c-d50b-4d46-a6fc-8bdc4424bca0))
  6939. (pin "9" (uuid 3e24caf4-e1a1-472d-92bd-dae30c19178f))
  6940. )
  6941. (symbol (lib_id "power:GND") (at 36.83 246.38 0) (unit 1)
  6942. (in_bom yes) (on_board yes)
  6943. (uuid 8ab690ea-b43d-40a3-9f93-57a95c434b58)
  6944. (property "Reference" "#PWR0107" (id 0) (at 36.83 252.73 0)
  6945. (effects (font (size 1.27 1.27)) hide)
  6946. )
  6947. (property "Value" "GND" (id 1) (at 36.957 250.7742 0))
  6948. (property "Footprint" "" (id 2) (at 36.83 246.38 0)
  6949. (effects (font (size 1.27 1.27)) hide)
  6950. )
  6951. (property "Datasheet" "" (id 3) (at 36.83 246.38 0)
  6952. (effects (font (size 1.27 1.27)) hide)
  6953. )
  6954. (pin "1" (uuid d28c13d3-ebb6-483b-bb57-75e6188f3644))
  6955. )
  6956. (symbol (lib_id "Device:C_Small") (at 81.915 234.95 0) (unit 1)
  6957. (in_bom yes) (on_board yes)
  6958. (uuid 8c901785-0792-48c1-88f4-1e26bf5cee15)
  6959. (property "Reference" "C23" (id 0) (at 78.105 237.49 0)
  6960. (effects (font (size 1.27 1.27)) (justify left))
  6961. )
  6962. (property "Value" "100nF/25V/10%/0402" (id 1) (at 82.804 247.015 90)
  6963. (effects (font (size 0.635 0.635)) (justify left))
  6964. )
  6965. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 81.915 234.95 0)
  6966. (effects (font (size 1.27 1.27)) hide)
  6967. )
  6968. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 81.915 234.95 0)
  6969. (effects (font (size 1.27 1.27)) hide)
  6970. )
  6971. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 81.915 234.95 0)
  6972. (effects (font (size 1.27 1.27)) hide)
  6973. )
  6974. (property "LCSC #" "C77014" (id 5) (at 81.915 234.95 0)
  6975. (effects (font (size 1.27 1.27)) hide)
  6976. )
  6977. (pin "1" (uuid 4ce53673-4924-4a17-ae49-b118143afcfe))
  6978. (pin "2" (uuid 964a7d08-9f4a-4eda-901b-926dd2d36cd3))
  6979. )
  6980. (symbol (lib_id "power:GND") (at 111.125 230.505 0) (unit 1)
  6981. (in_bom yes) (on_board yes)
  6982. (uuid 8f630fba-cedc-43f2-b60a-94c1645aecf4)
  6983. (property "Reference" "#PWR0162" (id 0) (at 111.125 236.855 0)
  6984. (effects (font (size 1.27 1.27)) hide)
  6985. )
  6986. (property "Value" "GND" (id 1) (at 111.252 234.8992 0))
  6987. (property "Footprint" "" (id 2) (at 111.125 230.505 0)
  6988. (effects (font (size 1.27 1.27)) hide)
  6989. )
  6990. (property "Datasheet" "" (id 3) (at 111.125 230.505 0)
  6991. (effects (font (size 1.27 1.27)) hide)
  6992. )
  6993. (pin "1" (uuid 6f9ab043-6660-4688-b451-6df28697d87a))
  6994. )
  6995. (symbol (lib_id "power:GND") (at 100.965 246.38 0) (unit 1)
  6996. (in_bom yes) (on_board yes)
  6997. (uuid 917770b2-8c31-4894-9223-a4570ba7e53c)
  6998. (property "Reference" "#PWR0151" (id 0) (at 100.965 252.73 0)
  6999. (effects (font (size 1.27 1.27)) hide)
  7000. )
  7001. (property "Value" "GND" (id 1) (at 101.092 250.7742 0))
  7002. (property "Footprint" "" (id 2) (at 100.965 246.38 0)
  7003. (effects (font (size 1.27 1.27)) hide)
  7004. )
  7005. (property "Datasheet" "" (id 3) (at 100.965 246.38 0)
  7006. (effects (font (size 1.27 1.27)) hide)
  7007. )
  7008. (pin "1" (uuid b9922354-f5a0-4bd5-b4d9-7bd70ad9ebdc))
  7009. )
  7010. (symbol (lib_id "power:GND") (at 278.13 98.425 0) (unit 1)
  7011. (in_bom yes) (on_board yes)
  7012. (uuid 92225265-a780-4d4c-b887-155952fecfeb)
  7013. (property "Reference" "#PWR0113" (id 0) (at 278.13 104.775 0)
  7014. (effects (font (size 1.27 1.27)) hide)
  7015. )
  7016. (property "Value" "GND" (id 1) (at 278.257 102.8192 0))
  7017. (property "Footprint" "" (id 2) (at 278.13 98.425 0)
  7018. (effects (font (size 1.27 1.27)) hide)
  7019. )
  7020. (property "Datasheet" "" (id 3) (at 278.13 98.425 0)
  7021. (effects (font (size 1.27 1.27)) hide)
  7022. )
  7023. (pin "1" (uuid b2d2b447-c2a4-4058-b6b3-007ebc7e80b3))
  7024. )
  7025. (symbol (lib_id "power:+5V") (at 50.8 227.965 0) (unit 1)
  7026. (in_bom yes) (on_board yes) (fields_autoplaced)
  7027. (uuid 95f112ae-ee96-4c79-b005-865b7ab0682d)
  7028. (property "Reference" "#PWR0156" (id 0) (at 50.8 231.775 0)
  7029. (effects (font (size 1.27 1.27)) hide)
  7030. )
  7031. (property "Value" "+5V" (id 1) (at 50.8 222.25 0))
  7032. (property "Footprint" "" (id 2) (at 50.8 227.965 0)
  7033. (effects (font (size 1.27 1.27)) hide)
  7034. )
  7035. (property "Datasheet" "" (id 3) (at 50.8 227.965 0)
  7036. (effects (font (size 1.27 1.27)) hide)
  7037. )
  7038. (pin "1" (uuid 57f71a3d-5ddf-4174-885e-129773d015ec))
  7039. )
  7040. (symbol (lib_id "power:GND") (at 244.475 269.24 0) (unit 1)
  7041. (in_bom yes) (on_board yes)
  7042. (uuid 97daf5a0-25a3-4f25-94b8-3877c77c3beb)
  7043. (property "Reference" "#PWR0118" (id 0) (at 244.475 275.59 0)
  7044. (effects (font (size 1.27 1.27)) hide)
  7045. )
  7046. (property "Value" "GND" (id 1) (at 244.602 273.6342 0))
  7047. (property "Footprint" "" (id 2) (at 244.475 269.24 0)
  7048. (effects (font (size 1.27 1.27)) hide)
  7049. )
  7050. (property "Datasheet" "" (id 3) (at 244.475 269.24 0)
  7051. (effects (font (size 1.27 1.27)) hide)
  7052. )
  7053. (pin "1" (uuid 25344a5f-0aef-4b47-9391-f9b80056ad60))
  7054. )
  7055. (symbol (lib_id "power:GND") (at 257.175 269.24 0) (unit 1)
  7056. (in_bom yes) (on_board yes)
  7057. (uuid 9bdf1619-aef9-4cee-b279-96ea6a2bdad0)
  7058. (property "Reference" "#PWR0119" (id 0) (at 257.175 275.59 0)
  7059. (effects (font (size 1.27 1.27)) hide)
  7060. )
  7061. (property "Value" "GND" (id 1) (at 257.302 273.6342 0))
  7062. (property "Footprint" "" (id 2) (at 257.175 269.24 0)
  7063. (effects (font (size 1.27 1.27)) hide)
  7064. )
  7065. (property "Datasheet" "" (id 3) (at 257.175 269.24 0)
  7066. (effects (font (size 1.27 1.27)) hide)
  7067. )
  7068. (pin "1" (uuid ad173ed5-a73e-44a0-acca-4182c3f24173))
  7069. )
  7070. (symbol (lib_id "Device:R_Small") (at 501.65 139.065 270) (unit 1)
  7071. (in_bom yes) (on_board yes)
  7072. (uuid 9bea29e5-370e-4174-9b02-826f44e60212)
  7073. (property "Reference" "R9" (id 0) (at 501.65 135.89 90))
  7074. (property "Value" "2.2K/1%/0402" (id 1) (at 501.65 137.414 90)
  7075. (effects (font (size 0.635 0.635)))
  7076. )
  7077. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 501.65 139.065 0)
  7078. (effects (font (size 1.27 1.27)) hide)
  7079. )
  7080. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809201112_YAGEO-RC0402FR-072K2L_C114762.pdf" (id 3) (at 501.65 139.065 0)
  7081. (effects (font (size 1.27 1.27)) hide)
  7082. )
  7083. (property "Mfr #" "RC0402FR-072K2L" (id 4) (at 501.65 139.065 90)
  7084. (effects (font (size 1.27 1.27)) hide)
  7085. )
  7086. (property "LCSC #" "C114762" (id 5) (at 501.65 139.065 90)
  7087. (effects (font (size 1.27 1.27)) hide)
  7088. )
  7089. (pin "1" (uuid cbf4b98b-4d75-4302-b181-723c6774680e))
  7090. (pin "2" (uuid b1aa2bc0-e339-4b77-bbd9-aa1dde8b9acc))
  7091. )
  7092. (symbol (lib_id "power:+5V") (at 386.715 198.12 0) (unit 1)
  7093. (in_bom yes) (on_board yes) (fields_autoplaced)
  7094. (uuid 9e2d7dc4-e340-461a-8ebe-65244b1eab0c)
  7095. (property "Reference" "#PWR0134" (id 0) (at 386.715 201.93 0)
  7096. (effects (font (size 1.27 1.27)) hide)
  7097. )
  7098. (property "Value" "+5V" (id 1) (at 386.715 193.04 0))
  7099. (property "Footprint" "" (id 2) (at 386.715 198.12 0)
  7100. (effects (font (size 1.27 1.27)) hide)
  7101. )
  7102. (property "Datasheet" "" (id 3) (at 386.715 198.12 0)
  7103. (effects (font (size 1.27 1.27)) hide)
  7104. )
  7105. (pin "1" (uuid 370fd781-ba1e-4b27-8d64-36ad2a1d3be8))
  7106. )
  7107. (symbol (lib_id "power:GND") (at 24.13 246.38 0) (unit 1)
  7108. (in_bom yes) (on_board yes)
  7109. (uuid a3036691-b885-4b7f-b58f-a9e30468aa56)
  7110. (property "Reference" "#PWR0108" (id 0) (at 24.13 252.73 0)
  7111. (effects (font (size 1.27 1.27)) hide)
  7112. )
  7113. (property "Value" "GND" (id 1) (at 24.257 250.7742 0))
  7114. (property "Footprint" "" (id 2) (at 24.13 246.38 0)
  7115. (effects (font (size 1.27 1.27)) hide)
  7116. )
  7117. (property "Datasheet" "" (id 3) (at 24.13 246.38 0)
  7118. (effects (font (size 1.27 1.27)) hide)
  7119. )
  7120. (pin "1" (uuid ee2e4804-fabc-4089-b85e-bba237c02e05))
  7121. )
  7122. (symbol (lib_id "power:GND") (at 64.135 276.225 0) (unit 1)
  7123. (in_bom yes) (on_board yes)
  7124. (uuid a3b79a08-690a-4fed-b5a5-d39f35c2e17c)
  7125. (property "Reference" "#PWR0159" (id 0) (at 64.135 282.575 0)
  7126. (effects (font (size 1.27 1.27)) hide)
  7127. )
  7128. (property "Value" "GND" (id 1) (at 64.262 280.6192 0))
  7129. (property "Footprint" "" (id 2) (at 64.135 276.225 0)
  7130. (effects (font (size 1.27 1.27)) hide)
  7131. )
  7132. (property "Datasheet" "" (id 3) (at 64.135 276.225 0)
  7133. (effects (font (size 1.27 1.27)) hide)
  7134. )
  7135. (pin "1" (uuid f7f64b90-b01d-42fb-86d6-8c5f188d28ce))
  7136. )
  7137. (symbol (lib_id "power:+1V8") (at 17.78 257.81 0) (unit 1)
  7138. (in_bom yes) (on_board yes) (fields_autoplaced)
  7139. (uuid a70219ca-9f69-42a4-96be-4a1d8faae0f4)
  7140. (property "Reference" "#PWR0147" (id 0) (at 17.78 261.62 0)
  7141. (effects (font (size 1.27 1.27)) hide)
  7142. )
  7143. (property "Value" "+1V8" (id 1) (at 17.78 252.095 0))
  7144. (property "Footprint" "" (id 2) (at 17.78 257.81 0)
  7145. (effects (font (size 1.27 1.27)) hide)
  7146. )
  7147. (property "Datasheet" "" (id 3) (at 17.78 257.81 0)
  7148. (effects (font (size 1.27 1.27)) hide)
  7149. )
  7150. (pin "1" (uuid 8cf23a5a-c660-460e-8ce8-a414fbd2e7d1))
  7151. )
  7152. (symbol (lib_id "power:+5V") (at 27.94 157.48 0) (unit 1)
  7153. (in_bom yes) (on_board yes) (fields_autoplaced)
  7154. (uuid a8b37eb2-425b-42d7-9d15-a46bf4356d9b)
  7155. (property "Reference" "#PWR0137" (id 0) (at 27.94 161.29 0)
  7156. (effects (font (size 1.27 1.27)) hide)
  7157. )
  7158. (property "Value" "+5V" (id 1) (at 27.94 152.4 0))
  7159. (property "Footprint" "" (id 2) (at 27.94 157.48 0)
  7160. (effects (font (size 1.27 1.27)) hide)
  7161. )
  7162. (property "Datasheet" "" (id 3) (at 27.94 157.48 0)
  7163. (effects (font (size 1.27 1.27)) hide)
  7164. )
  7165. (pin "1" (uuid f931cdfa-a027-42ba-a4ac-8e1a2722f200))
  7166. )
  7167. (symbol (lib_id "power:+3V3") (at 508 137.16 0) (unit 1)
  7168. (in_bom yes) (on_board yes) (fields_autoplaced)
  7169. (uuid ab53dca0-bcc3-48f4-b3f0-82ec262800d1)
  7170. (property "Reference" "#PWR0128" (id 0) (at 508 140.97 0)
  7171. (effects (font (size 1.27 1.27)) hide)
  7172. )
  7173. (property "Value" "+3V3" (id 1) (at 508 132.08 0))
  7174. (property "Footprint" "" (id 2) (at 508 137.16 0)
  7175. (effects (font (size 1.27 1.27)) hide)
  7176. )
  7177. (property "Datasheet" "" (id 3) (at 508 137.16 0)
  7178. (effects (font (size 1.27 1.27)) hide)
  7179. )
  7180. (pin "1" (uuid 32526cf5-3fa4-49dc-9602-b665462691a9))
  7181. )
  7182. (symbol (lib_id "power:GND") (at 31.75 274.32 0) (unit 1)
  7183. (in_bom yes) (on_board yes)
  7184. (uuid ad36f7bc-b206-43a3-a759-cd9031730899)
  7185. (property "Reference" "#PWR0112" (id 0) (at 31.75 280.67 0)
  7186. (effects (font (size 1.27 1.27)) hide)
  7187. )
  7188. (property "Value" "GND" (id 1) (at 31.877 278.7142 0))
  7189. (property "Footprint" "" (id 2) (at 31.75 274.32 0)
  7190. (effects (font (size 1.27 1.27)) hide)
  7191. )
  7192. (property "Datasheet" "" (id 3) (at 31.75 274.32 0)
  7193. (effects (font (size 1.27 1.27)) hide)
  7194. )
  7195. (pin "1" (uuid 1a287f1b-3fa6-491c-b1d1-0375116f294b))
  7196. )
  7197. (symbol (lib_id "power:+5V") (at 164.465 46.355 0) (unit 1)
  7198. (in_bom yes) (on_board yes) (fields_autoplaced)
  7199. (uuid af81c81b-a228-4f6a-ae53-d1a2977f27db)
  7200. (property "Reference" "#PWR0139" (id 0) (at 164.465 50.165 0)
  7201. (effects (font (size 1.27 1.27)) hide)
  7202. )
  7203. (property "Value" "+5V" (id 1) (at 164.465 41.275 0))
  7204. (property "Footprint" "" (id 2) (at 164.465 46.355 0)
  7205. (effects (font (size 1.27 1.27)) hide)
  7206. )
  7207. (property "Datasheet" "" (id 3) (at 164.465 46.355 0)
  7208. (effects (font (size 1.27 1.27)) hide)
  7209. )
  7210. (pin "1" (uuid 792a6425-c462-4d81-ae54-f489270e60ba))
  7211. )
  7212. (symbol (lib_id "Device:R_Small") (at 501.65 142.875 270) (unit 1)
  7213. (in_bom yes) (on_board yes)
  7214. (uuid b00547ee-ab49-4c21-b32b-70b65122f7de)
  7215. (property "Reference" "R10" (id 0) (at 501.65 146.304 90))
  7216. (property "Value" "2.2K/1%/0402" (id 1) (at 501.65 144.526 90)
  7217. (effects (font (size 0.635 0.635)))
  7218. )
  7219. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 501.65 142.875 0)
  7220. (effects (font (size 1.27 1.27)) hide)
  7221. )
  7222. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809201112_YAGEO-RC0402FR-072K2L_C114762.pdf" (id 3) (at 501.65 142.875 0)
  7223. (effects (font (size 1.27 1.27)) hide)
  7224. )
  7225. (property "Mfr #" "RC0402FR-072K2L" (id 4) (at 501.65 142.875 90)
  7226. (effects (font (size 1.27 1.27)) hide)
  7227. )
  7228. (property "LCSC #" "C114762" (id 5) (at 501.65 142.875 90)
  7229. (effects (font (size 1.27 1.27)) hide)
  7230. )
  7231. (pin "1" (uuid 469c4a89-0d45-4e0f-b026-ddad36765fc7))
  7232. (pin "2" (uuid 10e354af-660a-45ef-b3e0-a56dbfe27584))
  7233. )
  7234. (symbol (lib_id "power:GND") (at 80.645 165.1 0) (unit 1)
  7235. (in_bom yes) (on_board yes)
  7236. (uuid b15b1955-74db-422d-bd0a-d6dacaea5d51)
  7237. (property "Reference" "#PWR0144" (id 0) (at 80.645 171.45 0)
  7238. (effects (font (size 1.27 1.27)) hide)
  7239. )
  7240. (property "Value" "GND" (id 1) (at 76.2 167.005 0))
  7241. (property "Footprint" "" (id 2) (at 80.645 165.1 0)
  7242. (effects (font (size 1.27 1.27)) hide)
  7243. )
  7244. (property "Datasheet" "" (id 3) (at 80.645 165.1 0)
  7245. (effects (font (size 1.27 1.27)) hide)
  7246. )
  7247. (pin "1" (uuid c1aba8f6-968c-4e77-8214-8161ef06a903))
  7248. )
  7249. (symbol (lib_id "Connector_Generic:Conn_02x05_Odd_Even") (at 227.33 34.925 0) (unit 1)
  7250. (in_bom yes) (on_board yes) (fields_autoplaced)
  7251. (uuid b449a839-358d-489f-9ab2-e7f8376193b3)
  7252. (property "Reference" "J2" (id 0) (at 228.6 22.86 0))
  7253. (property "Value" "Conn_02x05_Odd_Even" (id 1) (at 228.6 25.4 0))
  7254. (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (id 2) (at 227.33 34.925 0)
  7255. (effects (font (size 1.27 1.27)) hide)
  7256. )
  7257. (property "Datasheet" "~" (id 3) (at 227.33 34.925 0)
  7258. (effects (font (size 1.27 1.27)) hide)
  7259. )
  7260. (pin "1" (uuid c683bb33-2beb-4bfb-afe0-22a8ebf72cff))
  7261. (pin "10" (uuid 82f4f9bd-8377-463a-be28-eecc7b66099d))
  7262. (pin "2" (uuid 33912e2e-9557-4446-b4e2-c1bcb73b8d00))
  7263. (pin "3" (uuid 9fa576b9-a9bf-46e2-96a5-23e44e0a63ee))
  7264. (pin "4" (uuid f396eb79-06b4-4a99-ac19-db84d4ddc6b7))
  7265. (pin "5" (uuid 26fa6519-3b8c-4ba2-8bff-935fedee849c))
  7266. (pin "6" (uuid 3fc8c838-f99d-43f3-abdf-4b871eb92df3))
  7267. (pin "7" (uuid 88b7d831-09d2-49a4-bf0b-36bf15a56748))
  7268. (pin "8" (uuid 0947912a-ec41-41ee-a68c-2d177b0b148b))
  7269. (pin "9" (uuid 4abc43d0-edae-42b2-8f8e-978fa8ae6451))
  7270. )
  7271. (symbol (lib_id "Device:R_Small") (at 288.29 144.145 270) (unit 1)
  7272. (in_bom yes) (on_board yes)
  7273. (uuid b67dbd1b-5757-4345-b9ac-898e6c900ddf)
  7274. (property "Reference" "R2" (id 0) (at 291.338 143.002 90))
  7275. (property "Value" "33R/1%/0402" (id 1) (at 282.702 143.256 90)
  7276. (effects (font (size 0.635 0.635)))
  7277. )
  7278. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 288.29 144.145 0)
  7279. (effects (font (size 1.27 1.27)) hide)
  7280. )
  7281. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810301314_Uniroyal-Elec-0402WGF330JTCE_C25105.pdf" (id 3) (at 288.29 144.145 0)
  7282. (effects (font (size 1.27 1.27)) hide)
  7283. )
  7284. (property "Mfr #" "0402WGF330JTCE" (id 4) (at 288.29 144.145 90)
  7285. (effects (font (size 1.27 1.27)) hide)
  7286. )
  7287. (property "LCSC #" "C25105" (id 5) (at 288.29 144.145 90)
  7288. (effects (font (size 1.27 1.27)) hide)
  7289. )
  7290. (pin "1" (uuid ca84a290-5894-426c-973c-b633659bf1dd))
  7291. (pin "2" (uuid a77dcde5-a9b2-4ecb-8a8c-db8b4ab42c9f))
  7292. )
  7293. (symbol (lib_id "Device:C_Small") (at 285.75 172.085 0) (unit 1)
  7294. (in_bom yes) (on_board yes)
  7295. (uuid b785cf5f-2d24-45c9-b360-35d35a95858b)
  7296. (property "Reference" "C6" (id 0) (at 281.94 174.625 0)
  7297. (effects (font (size 1.27 1.27)) (justify left))
  7298. )
  7299. (property "Value" "12pF/25V/5%/0402" (id 1) (at 287.02 183.515 90)
  7300. (effects (font (size 0.635 0.635)) (justify left))
  7301. )
  7302. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 285.75 172.085 0)
  7303. (effects (font (size 1.27 1.27)) hide)
  7304. )
  7305. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081546_Murata-Electronics-GRM1555C1E120JA01D_C161514.pdf" (id 3) (at 285.75 172.085 0)
  7306. (effects (font (size 1.27 1.27)) hide)
  7307. )
  7308. (property "Mfr #" "GRM1555C1E120JA01D" (id 4) (at 285.75 172.085 0)
  7309. (effects (font (size 1.27 1.27)) hide)
  7310. )
  7311. (property "LCSC #" "C161514" (id 5) (at 285.75 172.085 0)
  7312. (effects (font (size 1.27 1.27)) hide)
  7313. )
  7314. (pin "1" (uuid cb5ef4aa-f3ab-4f91-b06d-91c299e0c6c2))
  7315. (pin "2" (uuid 090982d7-b26d-4c7f-9fd0-eadc803a7a62))
  7316. )
  7317. (symbol (lib_id "power:GND") (at 165.735 115.57 0) (unit 1)
  7318. (in_bom yes) (on_board yes)
  7319. (uuid b7e767fc-f250-4d50-869d-96be8efe0a72)
  7320. (property "Reference" "#PWR0141" (id 0) (at 165.735 121.92 0)
  7321. (effects (font (size 1.27 1.27)) hide)
  7322. )
  7323. (property "Value" "GND" (id 1) (at 161.29 117.475 0))
  7324. (property "Footprint" "" (id 2) (at 165.735 115.57 0)
  7325. (effects (font (size 1.27 1.27)) hide)
  7326. )
  7327. (property "Datasheet" "" (id 3) (at 165.735 115.57 0)
  7328. (effects (font (size 1.27 1.27)) hide)
  7329. )
  7330. (pin "1" (uuid ec76f69f-69ac-456f-b4ef-2fd5495bdbb6))
  7331. )
  7332. (symbol (lib_id "Device:C_Small") (at 292.1 55.245 0) (unit 1)
  7333. (in_bom yes) (on_board yes)
  7334. (uuid becd77e2-b7ed-46c3-b4d3-e976446b2f80)
  7335. (property "Reference" "C7" (id 0) (at 288.29 57.785 0)
  7336. (effects (font (size 1.27 1.27)) (justify left))
  7337. )
  7338. (property "Value" "4.7uF/25V/10%/0603" (id 1) (at 292.989 67.056 90)
  7339. (effects (font (size 0.635 0.635)) (justify left))
  7340. )
  7341. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 292.1 55.245 0)
  7342. (effects (font (size 1.27 1.27)) hide)
  7343. )
  7344. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1910111742_Murata-Electronics-GRM188R61E475KE15D_C408137.pdf" (id 3) (at 292.1 55.245 0)
  7345. (effects (font (size 1.27 1.27)) hide)
  7346. )
  7347. (property "Mfr #" "GRM188R61E475KE15D" (id 4) (at 292.1 55.245 0)
  7348. (effects (font (size 1.27 1.27)) hide)
  7349. )
  7350. (property "LCSC #" "C408137" (id 5) (at 292.1 55.245 0)
  7351. (effects (font (size 1.27 1.27)) hide)
  7352. )
  7353. (pin "1" (uuid 54e57c8f-a415-4fd5-ad30-4333f98f4eaf))
  7354. (pin "2" (uuid c47bc566-9075-4e8f-ac3a-11cc1a79a386))
  7355. )
  7356. (symbol (lib_id "power:+3V3") (at 284.48 114.935 0) (unit 1)
  7357. (in_bom yes) (on_board yes)
  7358. (uuid c43a5b2a-6217-43c9-9e38-bba70fb112e5)
  7359. (property "Reference" "#PWR0131" (id 0) (at 284.48 118.745 0)
  7360. (effects (font (size 1.27 1.27)) hide)
  7361. )
  7362. (property "Value" "+3V3" (id 1) (at 280.67 113.665 0))
  7363. (property "Footprint" "" (id 2) (at 284.48 114.935 0)
  7364. (effects (font (size 1.27 1.27)) hide)
  7365. )
  7366. (property "Datasheet" "" (id 3) (at 284.48 114.935 0)
  7367. (effects (font (size 1.27 1.27)) hide)
  7368. )
  7369. (pin "1" (uuid e7e4c243-b7b6-45ed-9c5b-7dc13d9d9dc4))
  7370. )
  7371. (symbol (lib_id "Power_Protection:USBLC6-2SC6") (at 352.425 236.22 90) (unit 1)
  7372. (in_bom yes) (on_board yes)
  7373. (uuid cb233ecc-ee10-4924-a11e-2585204a55a9)
  7374. (property "Reference" "U5" (id 0) (at 358.775 227.33 90)
  7375. (effects (font (size 1.27 1.27)) (justify right))
  7376. )
  7377. (property "Value" "USBLC6-2SC6" (id 1) (at 357.505 224.79 90)
  7378. (effects (font (size 1.27 1.27)) (justify right))
  7379. )
  7380. (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (id 2) (at 342.265 255.27 0)
  7381. (effects (font (size 1.27 1.27)) hide)
  7382. )
  7383. (property "Datasheet" "" (id 3) (at 343.535 231.14 0)
  7384. (effects (font (size 1.27 1.27)) hide)
  7385. )
  7386. (property "LCSC" "C7519" (id 4) (at 352.425 236.22 0)
  7387. (effects (font (size 1.27 1.27)) hide)
  7388. )
  7389. (pin "1" (uuid 116db445-0de2-4b71-adbf-2f3638168bf1))
  7390. (pin "2" (uuid d278f62f-3aa1-44f8-9791-38b2558be9f2))
  7391. (pin "3" (uuid 3d212fd4-61bb-443e-ba98-a94c47788808))
  7392. (pin "4" (uuid d7a11df6-cef5-406b-b763-be293e12fab4))
  7393. (pin "5" (uuid 3be2d067-bf62-4eb3-a57c-3a39f6076d0f))
  7394. (pin "6" (uuid 5dbe3553-0b93-46e4-bb49-40f40fce155e))
  7395. )
  7396. (symbol (lib_id "power:GND") (at 335.28 184.785 0) (unit 1)
  7397. (in_bom yes) (on_board yes)
  7398. (uuid cd2b9d23-c14a-4049-a980-b814cece0bcb)
  7399. (property "Reference" "#PWR0126" (id 0) (at 335.28 191.135 0)
  7400. (effects (font (size 1.27 1.27)) hide)
  7401. )
  7402. (property "Value" "GND" (id 1) (at 335.407 189.1792 0))
  7403. (property "Footprint" "" (id 2) (at 335.28 184.785 0)
  7404. (effects (font (size 1.27 1.27)) hide)
  7405. )
  7406. (property "Datasheet" "" (id 3) (at 335.28 184.785 0)
  7407. (effects (font (size 1.27 1.27)) hide)
  7408. )
  7409. (pin "1" (uuid e3dbe12f-48ff-4fc4-a136-bbac0e332d27))
  7410. )
  7411. (symbol (lib_id "Device:C_Small") (at 308.61 55.245 0) (unit 1)
  7412. (in_bom yes) (on_board yes)
  7413. (uuid ceb5ce28-0a19-4a9d-9829-5efc82f79af1)
  7414. (property "Reference" "C10" (id 0) (at 304.8 57.785 0)
  7415. (effects (font (size 1.27 1.27)) (justify left))
  7416. )
  7417. (property "Value" "100nF/25V/10%/0402" (id 1) (at 309.499 67.31 90)
  7418. (effects (font (size 0.635 0.635)) (justify left))
  7419. )
  7420. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 308.61 55.245 0)
  7421. (effects (font (size 1.27 1.27)) hide)
  7422. )
  7423. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 308.61 55.245 0)
  7424. (effects (font (size 1.27 1.27)) hide)
  7425. )
  7426. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 308.61 55.245 0)
  7427. (effects (font (size 1.27 1.27)) hide)
  7428. )
  7429. (property "LCSC #" "C77014" (id 5) (at 308.61 55.245 0)
  7430. (effects (font (size 1.27 1.27)) hide)
  7431. )
  7432. (pin "1" (uuid 38f23179-77a8-494c-af9d-afdea89a85c6))
  7433. (pin "2" (uuid 6b9bfcf3-9fca-442e-80eb-da0009c54af0))
  7434. )
  7435. (symbol (lib_id "Device:C_Small") (at 94.615 234.95 0) (unit 1)
  7436. (in_bom yes) (on_board yes)
  7437. (uuid d008fc30-dee7-4702-87b1-86fcfa742c5b)
  7438. (property "Reference" "C25" (id 0) (at 90.805 237.49 0)
  7439. (effects (font (size 1.27 1.27)) (justify left))
  7440. )
  7441. (property "Value" "100nF/25V/10%/0402" (id 1) (at 95.504 247.015 90)
  7442. (effects (font (size 0.635 0.635)) (justify left))
  7443. )
  7444. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 94.615 234.95 0)
  7445. (effects (font (size 1.27 1.27)) hide)
  7446. )
  7447. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 94.615 234.95 0)
  7448. (effects (font (size 1.27 1.27)) hide)
  7449. )
  7450. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 94.615 234.95 0)
  7451. (effects (font (size 1.27 1.27)) hide)
  7452. )
  7453. (property "LCSC #" "C77014" (id 5) (at 94.615 234.95 0)
  7454. (effects (font (size 1.27 1.27)) hide)
  7455. )
  7456. (pin "1" (uuid e0d46ffd-2b95-408b-93f9-bab83d090fcc))
  7457. (pin "2" (uuid 6314284b-33d4-47c7-b7c7-bd795fac784a))
  7458. )
  7459. (symbol (lib_id "Z80ICE:ATF1508ASL-25AU100") (at 165.735 203.835 0) (unit 1)
  7460. (in_bom yes) (on_board yes) (fields_autoplaced)
  7461. (uuid d01cfa5a-bf72-4cdd-9fb9-741f9ede43bb)
  7462. (property "Reference" "U7" (id 0) (at 176.5047 127.635 0)
  7463. (effects (font (size 1.27 1.27)) (justify left))
  7464. )
  7465. (property "Value" "ATF1508ASL-25AU100" (id 1) (at 176.5047 130.175 0)
  7466. (effects (font (size 1.27 1.27)) (justify left))
  7467. )
  7468. (property "Footprint" "Package_LCC:PLCC-84_SMD-Socket" (id 2) (at 167.64 174.625 90)
  7469. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  7470. )
  7471. (property "Datasheet" "" (id 3) (at 165.735 203.835 0)
  7472. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  7473. )
  7474. (property "MANUFACTURER" "Microchip" (id 4) (at 161.925 200.66 0)
  7475. (effects (font (size 1.27 1.27)) (justify left bottom) hide)
  7476. )
  7477. (pin "1" (uuid 5525bf46-2347-41a6-bb8b-f3ccc3384eca))
  7478. (pin "10" (uuid af0990d0-3c87-452c-95e6-8e82be281eec))
  7479. (pin "11" (uuid 6560f862-daff-45ea-a261-46a7c7ca0540))
  7480. (pin "12" (uuid 4da5cded-8b0f-4e75-8380-03395f1bf370))
  7481. (pin "13" (uuid a42221f7-4b26-4df8-8c5d-bdb4fd62f0ef))
  7482. (pin "14" (uuid b0e69ad8-c585-49c3-b0e5-24263ea1181c))
  7483. (pin "15" (uuid 8d003d44-190b-4c38-8ca7-f0ce6ae8c9bf))
  7484. (pin "16" (uuid 148abb09-a88a-454c-9e9e-5aa250d6ebd6))
  7485. (pin "17" (uuid 09d81f55-0616-4b7b-9d2e-2411ce29b4df))
  7486. (pin "18" (uuid 5363c00b-2551-46be-bc20-37b1df250fc1))
  7487. (pin "19" (uuid c4e78a67-1983-4a73-8b89-eb778eb0287b))
  7488. (pin "2" (uuid da9e3297-9d95-4d4a-9a85-d6a525df0e16))
  7489. (pin "20" (uuid 3ef3ef4a-d3b2-4988-ab9f-8670d3d04bcb))
  7490. (pin "21" (uuid c86e64da-9033-479d-8521-ffbab274f4a1))
  7491. (pin "22" (uuid 084e5343-b3b5-4d7f-91e8-b42405aedb1c))
  7492. (pin "23" (uuid 18cedd10-8bd6-4323-98f1-6ca37ece5c8c))
  7493. (pin "24" (uuid ba049baf-705d-41de-a0b1-6f60a89f6a1e))
  7494. (pin "25" (uuid 80a11bca-edcd-4804-9209-01eef31194f6))
  7495. (pin "26" (uuid bc333bc0-d083-4437-b0ac-db83f029f081))
  7496. (pin "27" (uuid 1d10176a-01c6-4569-8b05-30b81e8de284))
  7497. (pin "28" (uuid 927eec8b-3884-4e89-9c21-7c1383c80432))
  7498. (pin "29" (uuid baf59167-09d2-4599-9d36-9a3a5031d582))
  7499. (pin "3" (uuid f6bd3215-c180-4a0b-955d-05d5e2a14590))
  7500. (pin "30" (uuid 9c13f895-7d16-4aac-85cf-5c5dcd1bb971))
  7501. (pin "31" (uuid 05f1ebe0-b30e-43bb-9db7-78534cabe9ac))
  7502. (pin "32" (uuid 57e9f689-ee9e-4e18-a0ba-2d94cd2ae7fa))
  7503. (pin "33" (uuid dcc10cd3-349d-4ec3-81d3-1b3142bd75f4))
  7504. (pin "34" (uuid c2d4faa4-9714-4db7-a75e-8ee44c1b7c4c))
  7505. (pin "35" (uuid c66f1d72-840e-4009-9822-f193b4c5fe6e))
  7506. (pin "36" (uuid 21cb27ed-8e2b-4ef9-bf64-96a84c8184a0))
  7507. (pin "37" (uuid bd08000c-d1bd-436c-8767-e232b6600aa4))
  7508. (pin "38" (uuid bab3f5be-3e55-4e4b-be21-956e11aa43de))
  7509. (pin "39" (uuid 3402ce4e-b02c-450f-b3f0-21d4c9f1b07e))
  7510. (pin "4" (uuid b3a01167-af9b-45bc-9936-bee693e0953a))
  7511. (pin "40" (uuid d5c53403-1128-413c-89d3-383a668739e1))
  7512. (pin "41" (uuid c8800794-7ee6-440a-88eb-1033507019a2))
  7513. (pin "42" (uuid 3844b076-7bda-4d94-819d-3c58f8bfdf49))
  7514. (pin "43" (uuid 6619118d-030b-4b3f-ac58-0af5eb989e80))
  7515. (pin "44" (uuid 6f7d90c1-521f-46db-b250-1ae4ee37b229))
  7516. (pin "45" (uuid e7a6f5c8-e251-4bd8-9812-31b2293db7e1))
  7517. (pin "46" (uuid 3418b39c-f426-4f91-8a9e-a6ab1a915c92))
  7518. (pin "47" (uuid 8d9cd5da-746b-41cc-8ab2-3fd6a5215a40))
  7519. (pin "48" (uuid c24f83a7-34c1-46bb-83f9-dccf746b311c))
  7520. (pin "49" (uuid 9cbdbcb9-d0e0-4342-8891-89ee6f08b409))
  7521. (pin "5" (uuid fac681a2-ba77-4d7e-971d-7411c8287065))
  7522. (pin "50" (uuid ad6ffb7b-6f14-4d9b-9c37-62be47287b47))
  7523. (pin "51" (uuid d85c000a-7309-4d0d-bedc-e4d8d0959bd4))
  7524. (pin "52" (uuid b6680d36-f2fb-408b-a770-1498d213fd38))
  7525. (pin "53" (uuid f889a81e-0f2f-4212-9af0-b69ef7d088b1))
  7526. (pin "54" (uuid 95f102ea-dc18-4a38-8065-f1407dd8da54))
  7527. (pin "55" (uuid ffcc1258-8314-49fa-be9e-10090fc11c5b))
  7528. (pin "56" (uuid ee08e257-fa5c-4470-bac3-38c65899808b))
  7529. (pin "57" (uuid 31425425-2ab4-481c-82da-baf01e9cc855))
  7530. (pin "58" (uuid 11f426fe-540e-4b56-acab-05fc5d2d7529))
  7531. (pin "59" (uuid 406ace6c-cd66-466b-9f2f-7a31422b41a2))
  7532. (pin "6" (uuid 7b468445-ff62-40dd-8bbb-1ce1ba3d2711))
  7533. (pin "60" (uuid b49b3376-8c52-4e2c-acb2-b7132c98c964))
  7534. (pin "61" (uuid 359a24d6-f249-4a55-a0fc-7dba7606cc47))
  7535. (pin "62" (uuid 548124cd-22f2-47fc-9f59-df3c698a3b13))
  7536. (pin "63" (uuid 143bc9b2-a45b-4185-9278-144ea55bea24))
  7537. (pin "64" (uuid ca53b484-205e-4f16-9c96-457fc8a2762c))
  7538. (pin "65" (uuid 7f1eee9e-cb3d-408b-81e5-6d77a3b5c9dd))
  7539. (pin "66" (uuid c054bd77-b92e-48c4-b89c-c60b3debbbed))
  7540. (pin "67" (uuid 39b23b18-238a-4e34-b637-f7a299dd5bca))
  7541. (pin "68" (uuid c43f423f-f6b8-4284-aba6-d690cdd35cb1))
  7542. (pin "69" (uuid 529e8fde-9ea5-41a8-b2cf-413a56ce2f23))
  7543. (pin "7" (uuid bc3813aa-2865-4fa4-8a38-edd2f04b12b4))
  7544. (pin "70" (uuid 676ae8ee-de34-4f3c-a65e-fef8797bba12))
  7545. (pin "71" (uuid 431e86b3-140e-418d-8bb4-95ccc8492152))
  7546. (pin "72" (uuid 9d9210d4-ff7c-4e05-ba86-6e517ba4fd8b))
  7547. (pin "73" (uuid 3cd994bf-6854-4aa5-8b88-3ae56fabf64f))
  7548. (pin "74" (uuid 2c567209-fe4a-4289-b248-71a01ed2854b))
  7549. (pin "75" (uuid 028241af-7150-4066-b45a-723f5d82b790))
  7550. (pin "76" (uuid 497f83c5-bfba-4f10-b705-fb7a9d08ca44))
  7551. (pin "77" (uuid 9ce428c2-3bc5-4beb-828f-cd94d465591b))
  7552. (pin "78" (uuid 19939d0d-ae01-4695-9627-2c2de9533acc))
  7553. (pin "79" (uuid 660dfef4-8a1a-4c22-9c06-2bdaf5a19794))
  7554. (pin "8" (uuid 6eeaaa75-abb0-4b6e-b93a-94cecb28b470))
  7555. (pin "80" (uuid 71f61cdb-0fe0-4acc-8ba4-bfc1fe57f4c3))
  7556. (pin "81" (uuid f3b51519-2798-4e51-b915-92890a9f5ce9))
  7557. (pin "82" (uuid 79ca06a7-ea96-4c9c-9f2f-cd86a04f24b8))
  7558. (pin "83" (uuid 6792a848-a105-4481-bef7-17587d2b40d3))
  7559. (pin "84" (uuid ffa22cdd-f137-4458-a8a5-c012a2c7b481))
  7560. (pin "9" (uuid 83c70f7c-2574-4240-9ada-8d6cebda20bb))
  7561. )
  7562. (symbol (lib_id "Device:C_Small") (at 43.18 234.95 0) (unit 1)
  7563. (in_bom yes) (on_board yes)
  7564. (uuid d40bfccd-3608-4594-bb92-d5c69c173a54)
  7565. (property "Reference" "C18" (id 0) (at 39.37 237.49 0)
  7566. (effects (font (size 1.27 1.27)) (justify left))
  7567. )
  7568. (property "Value" "100nF/25V/10%/0402" (id 1) (at 44.069 247.015 90)
  7569. (effects (font (size 0.635 0.635)) (justify left))
  7570. )
  7571. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 43.18 234.95 0)
  7572. (effects (font (size 1.27 1.27)) hide)
  7573. )
  7574. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 43.18 234.95 0)
  7575. (effects (font (size 1.27 1.27)) hide)
  7576. )
  7577. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 43.18 234.95 0)
  7578. (effects (font (size 1.27 1.27)) hide)
  7579. )
  7580. (property "LCSC #" "C77014" (id 5) (at 43.18 234.95 0)
  7581. (effects (font (size 1.27 1.27)) hide)
  7582. )
  7583. (pin "1" (uuid ced63138-2748-4be3-b6fe-7dc0fd88886d))
  7584. (pin "2" (uuid 9abb6eba-5212-40da-b0fa-18a782ab148e))
  7585. )
  7586. (symbol (lib_id "power:+3V3") (at 279.4 47.625 0) (unit 1)
  7587. (in_bom yes) (on_board yes) (fields_autoplaced)
  7588. (uuid d8db6c96-306f-4e45-89af-8c3a8ffb582d)
  7589. (property "Reference" "#PWR0130" (id 0) (at 279.4 51.435 0)
  7590. (effects (font (size 1.27 1.27)) hide)
  7591. )
  7592. (property "Value" "+3V3" (id 1) (at 279.4 42.545 0))
  7593. (property "Footprint" "" (id 2) (at 279.4 47.625 0)
  7594. (effects (font (size 1.27 1.27)) hide)
  7595. )
  7596. (property "Datasheet" "" (id 3) (at 279.4 47.625 0)
  7597. (effects (font (size 1.27 1.27)) hide)
  7598. )
  7599. (pin "1" (uuid 4337b803-88e6-488f-9388-e4a1ace58796))
  7600. )
  7601. (symbol (lib_id "Device:C_Small") (at 303.53 55.245 0) (unit 1)
  7602. (in_bom yes) (on_board yes)
  7603. (uuid da93a19b-46ea-4c7d-85a4-5096cb0d70a2)
  7604. (property "Reference" "C9" (id 0) (at 299.72 57.785 0)
  7605. (effects (font (size 1.27 1.27)) (justify left))
  7606. )
  7607. (property "Value" "4.7uF/25V/10%/0603" (id 1) (at 304.419 67.056 90)
  7608. (effects (font (size 0.635 0.635)) (justify left))
  7609. )
  7610. (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 303.53 55.245 0)
  7611. (effects (font (size 1.27 1.27)) hide)
  7612. )
  7613. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1910111742_Murata-Electronics-GRM188R61E475KE15D_C408137.pdf" (id 3) (at 303.53 55.245 0)
  7614. (effects (font (size 1.27 1.27)) hide)
  7615. )
  7616. (property "Mfr #" "GRM188R61E475KE15D" (id 4) (at 303.53 55.245 0)
  7617. (effects (font (size 1.27 1.27)) hide)
  7618. )
  7619. (property "LCSC #" "C408137" (id 5) (at 303.53 55.245 0)
  7620. (effects (font (size 1.27 1.27)) hide)
  7621. )
  7622. (pin "1" (uuid 30f21e4f-12ea-4135-99e8-cf650a192fe1))
  7623. (pin "2" (uuid 983291a1-3ad9-4d72-b27a-d3161f368895))
  7624. )
  7625. (symbol (lib_id "power:GND") (at 94.615 246.38 0) (unit 1)
  7626. (in_bom yes) (on_board yes)
  7627. (uuid de573eb2-70a8-4634-8a8a-65869c513df7)
  7628. (property "Reference" "#PWR0152" (id 0) (at 94.615 252.73 0)
  7629. (effects (font (size 1.27 1.27)) hide)
  7630. )
  7631. (property "Value" "GND" (id 1) (at 94.742 250.7742 0))
  7632. (property "Footprint" "" (id 2) (at 94.615 246.38 0)
  7633. (effects (font (size 1.27 1.27)) hide)
  7634. )
  7635. (property "Datasheet" "" (id 3) (at 94.615 246.38 0)
  7636. (effects (font (size 1.27 1.27)) hide)
  7637. )
  7638. (pin "1" (uuid 1effd31d-9300-4c56-b9d8-62883b493eab))
  7639. )
  7640. (symbol (lib_id "power:PWR_FLAG") (at 100.965 228.6 0) (unit 1)
  7641. (in_bom yes) (on_board yes) (fields_autoplaced)
  7642. (uuid debe2c90-fa3f-4afb-9dd7-6a14a5fcacc9)
  7643. (property "Reference" "#FLG0103" (id 0) (at 100.965 226.695 0)
  7644. (effects (font (size 1.27 1.27)) hide)
  7645. )
  7646. (property "Value" "PWR_FLAG" (id 1) (at 100.965 223.52 0))
  7647. (property "Footprint" "" (id 2) (at 100.965 228.6 0)
  7648. (effects (font (size 1.27 1.27)) hide)
  7649. )
  7650. (property "Datasheet" "~" (id 3) (at 100.965 228.6 0)
  7651. (effects (font (size 1.27 1.27)) hide)
  7652. )
  7653. (pin "1" (uuid 5fa96f26-b1f0-4574-836b-512fccba5ac8))
  7654. )
  7655. (symbol (lib_id "Device:R") (at 325.755 231.14 270) (unit 1)
  7656. (in_bom yes) (on_board yes)
  7657. (uuid df85ab26-b16d-44a7-b9bc-49d1057758ed)
  7658. (property "Reference" "R8" (id 0) (at 325.755 225.8822 90))
  7659. (property "Value" "5.1k" (id 1) (at 325.755 228.1936 90))
  7660. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 325.755 229.362 90)
  7661. (effects (font (size 1.27 1.27)) hide)
  7662. )
  7663. (property "Datasheet" "~" (id 3) (at 325.755 231.14 0)
  7664. (effects (font (size 1.27 1.27)) hide)
  7665. )
  7666. (property "LCSC" "C25905" (id 4) (at 325.755 231.14 0)
  7667. (effects (font (size 1.27 1.27)) hide)
  7668. )
  7669. (property "Supplier" "" (id 5) (at 325.755 231.14 0)
  7670. (effects (font (size 1.27 1.27)) hide)
  7671. )
  7672. (pin "1" (uuid 3d5b5b9d-b4c4-4936-89ec-a329a0b33895))
  7673. (pin "2" (uuid 54172b3e-dc67-42cc-80bf-a363a6635a70))
  7674. )
  7675. (symbol (lib_id "Device:C_Small") (at 30.48 234.95 0) (unit 1)
  7676. (in_bom yes) (on_board yes)
  7677. (uuid e0a65346-b563-4c5b-b0b1-b66911bb089d)
  7678. (property "Reference" "C13" (id 0) (at 26.67 237.49 0)
  7679. (effects (font (size 1.27 1.27)) (justify left))
  7680. )
  7681. (property "Value" "100nF/25V/10%/0402" (id 1) (at 31.369 247.015 90)
  7682. (effects (font (size 0.635 0.635)) (justify left))
  7683. )
  7684. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 30.48 234.95 0)
  7685. (effects (font (size 1.27 1.27)) hide)
  7686. )
  7687. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 30.48 234.95 0)
  7688. (effects (font (size 1.27 1.27)) hide)
  7689. )
  7690. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 30.48 234.95 0)
  7691. (effects (font (size 1.27 1.27)) hide)
  7692. )
  7693. (property "LCSC #" "C77014" (id 5) (at 30.48 234.95 0)
  7694. (effects (font (size 1.27 1.27)) hide)
  7695. )
  7696. (pin "1" (uuid 7d34cf10-3806-4250-a674-fa4e208d3775))
  7697. (pin "2" (uuid 47ce18ad-fe25-4df6-8be2-f98c7abe5422))
  7698. )
  7699. (symbol (lib_id "power:+5V") (at 241.935 250.825 0) (unit 1)
  7700. (in_bom yes) (on_board yes) (fields_autoplaced)
  7701. (uuid e1233353-28f8-4ba5-af26-748555061e46)
  7702. (property "Reference" "#PWR0135" (id 0) (at 241.935 254.635 0)
  7703. (effects (font (size 1.27 1.27)) hide)
  7704. )
  7705. (property "Value" "+5V" (id 1) (at 241.935 245.745 0))
  7706. (property "Footprint" "" (id 2) (at 241.935 250.825 0)
  7707. (effects (font (size 1.27 1.27)) hide)
  7708. )
  7709. (property "Datasheet" "" (id 3) (at 241.935 250.825 0)
  7710. (effects (font (size 1.27 1.27)) hide)
  7711. )
  7712. (pin "1" (uuid 667b681a-ee85-42f9-8f5c-0d93905a2694))
  7713. )
  7714. (symbol (lib_id "power:GND") (at 240.03 41.275 0) (unit 1)
  7715. (in_bom yes) (on_board yes) (fields_autoplaced)
  7716. (uuid e21a1952-eec6-4312-82a9-9b15d03a720a)
  7717. (property "Reference" "#PWR0161" (id 0) (at 240.03 47.625 0)
  7718. (effects (font (size 1.27 1.27)) hide)
  7719. )
  7720. (property "Value" "GND" (id 1) (at 240.03 45.72 0))
  7721. (property "Footprint" "" (id 2) (at 240.03 41.275 0)
  7722. (effects (font (size 1.27 1.27)) hide)
  7723. )
  7724. (property "Datasheet" "" (id 3) (at 240.03 41.275 0)
  7725. (effects (font (size 1.27 1.27)) hide)
  7726. )
  7727. (pin "1" (uuid 25569c55-e2a9-457c-b98d-4a0547510dca))
  7728. )
  7729. (symbol (lib_id "Device:R_Small") (at 288.29 146.685 270) (unit 1)
  7730. (in_bom yes) (on_board yes)
  7731. (uuid e3e786fa-4ed7-4f58-b4e3-0b768b3a0149)
  7732. (property "Reference" "R3" (id 0) (at 291.338 145.542 90))
  7733. (property "Value" "33R/1%/0402" (id 1) (at 282.702 145.796 90)
  7734. (effects (font (size 0.635 0.635)))
  7735. )
  7736. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 288.29 146.685 0)
  7737. (effects (font (size 1.27 1.27)) hide)
  7738. )
  7739. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1810301314_Uniroyal-Elec-0402WGF330JTCE_C25105.pdf" (id 3) (at 288.29 146.685 0)
  7740. (effects (font (size 1.27 1.27)) hide)
  7741. )
  7742. (property "Mfr #" "0402WGF330JTCE" (id 4) (at 288.29 146.685 90)
  7743. (effects (font (size 1.27 1.27)) hide)
  7744. )
  7745. (property "LCSC #" "C25105" (id 5) (at 288.29 146.685 90)
  7746. (effects (font (size 1.27 1.27)) hide)
  7747. )
  7748. (pin "1" (uuid 1cbb4658-9352-4a1c-8d5c-8d50021e6681))
  7749. (pin "2" (uuid e9d3abf9-25b9-4de8-a6f8-a6ec732d54f9))
  7750. )
  7751. (symbol (lib_id "power:GND") (at 43.18 246.38 0) (unit 1)
  7752. (in_bom yes) (on_board yes)
  7753. (uuid e507d102-5622-41bd-a93b-7f368be2a763)
  7754. (property "Reference" "#PWR0105" (id 0) (at 43.18 252.73 0)
  7755. (effects (font (size 1.27 1.27)) hide)
  7756. )
  7757. (property "Value" "GND" (id 1) (at 43.307 250.7742 0))
  7758. (property "Footprint" "" (id 2) (at 43.18 246.38 0)
  7759. (effects (font (size 1.27 1.27)) hide)
  7760. )
  7761. (property "Datasheet" "" (id 3) (at 43.18 246.38 0)
  7762. (effects (font (size 1.27 1.27)) hide)
  7763. )
  7764. (pin "1" (uuid 56001e05-6789-4013-89e3-03bd9555b9fa))
  7765. )
  7766. (symbol (lib_id "power:GND") (at 52.07 113.03 0) (unit 1)
  7767. (in_bom yes) (on_board yes)
  7768. (uuid e76f7ebc-2a09-4fad-b7bb-1ef55c02aa8d)
  7769. (property "Reference" "#PWR0143" (id 0) (at 52.07 119.38 0)
  7770. (effects (font (size 1.27 1.27)) hide)
  7771. )
  7772. (property "Value" "GND" (id 1) (at 47.625 114.935 0))
  7773. (property "Footprint" "" (id 2) (at 52.07 113.03 0)
  7774. (effects (font (size 1.27 1.27)) hide)
  7775. )
  7776. (property "Datasheet" "" (id 3) (at 52.07 113.03 0)
  7777. (effects (font (size 1.27 1.27)) hide)
  7778. )
  7779. (pin "1" (uuid 9d1b0dd5-5037-4b8e-8f98-87f9fa960d30))
  7780. )
  7781. (symbol (lib_id "Device:C_Small") (at 24.13 234.95 0) (unit 1)
  7782. (in_bom yes) (on_board yes)
  7783. (uuid eae9693a-eec6-4712-8442-4aeb80ea2ccb)
  7784. (property "Reference" "C11" (id 0) (at 20.32 237.49 0)
  7785. (effects (font (size 1.27 1.27)) (justify left))
  7786. )
  7787. (property "Value" "100nF/25V/10%/0402" (id 1) (at 25.019 247.015 90)
  7788. (effects (font (size 0.635 0.635)) (justify left))
  7789. )
  7790. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 24.13 234.95 0)
  7791. (effects (font (size 1.27 1.27)) hide)
  7792. )
  7793. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081616_Murata-Electronics-GRM155R71E104KE14D_C77014.pdf" (id 3) (at 24.13 234.95 0)
  7794. (effects (font (size 1.27 1.27)) hide)
  7795. )
  7796. (property "Mfr #" "GRM155R71E104KE14D" (id 4) (at 24.13 234.95 0)
  7797. (effects (font (size 1.27 1.27)) hide)
  7798. )
  7799. (property "LCSC #" "C77014" (id 5) (at 24.13 234.95 0)
  7800. (effects (font (size 1.27 1.27)) hide)
  7801. )
  7802. (pin "1" (uuid 9b97dfe6-e2b0-46ef-b781-3f39f37ec22f))
  7803. (pin "2" (uuid 6932ca92-7b31-4193-9115-ca652f244bcd))
  7804. )
  7805. (symbol (lib_id "Device:Polyfuse") (at 371.475 210.82 270) (unit 1)
  7806. (in_bom yes) (on_board yes)
  7807. (uuid ecd177b1-1d05-490a-bc0b-d1bd54a50d39)
  7808. (property "Reference" "F1" (id 0) (at 371.475 208.28 90))
  7809. (property "Value" "Polyfuse 460mA" (id 1) (at 371.475 214.63 90))
  7810. (property "Footprint" "Greaseweazle:Fuse_1206_3216Metric" (id 2) (at 366.395 212.09 0)
  7811. (effects (font (size 1.27 1.27)) (justify left) hide)
  7812. )
  7813. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811141110_TECHFUSE-nSMD020-30V_C69680.pdf" (id 3) (at 371.475 210.82 0)
  7814. (effects (font (size 1.27 1.27)) hide)
  7815. )
  7816. (property "LCSC" "C69680" (id 4) (at 333.375 176.53 0)
  7817. (effects (font (size 1.27 1.27)) hide)
  7818. )
  7819. (property "MOUSER" "" (id 5) (at 333.375 176.53 0)
  7820. (effects (font (size 1.27 1.27)) hide)
  7821. )
  7822. (property "MPN" "" (id 6) (at 333.375 176.53 0)
  7823. (effects (font (size 1.27 1.27)) hide)
  7824. )
  7825. (pin "1" (uuid a8c240a1-d418-43ef-8b5d-772d203f5af8))
  7826. (pin "2" (uuid 0a0fc352-a7d8-4753-b5f2-7a3a31112241))
  7827. )
  7828. (symbol (lib_id "power:GND") (at 271.78 98.425 0) (unit 1)
  7829. (in_bom yes) (on_board yes)
  7830. (uuid ee15600a-8855-4e32-8678-578ca04110b5)
  7831. (property "Reference" "#PWR0114" (id 0) (at 271.78 104.775 0)
  7832. (effects (font (size 1.27 1.27)) hide)
  7833. )
  7834. (property "Value" "GND" (id 1) (at 271.907 102.8192 0))
  7835. (property "Footprint" "" (id 2) (at 271.78 98.425 0)
  7836. (effects (font (size 1.27 1.27)) hide)
  7837. )
  7838. (property "Datasheet" "" (id 3) (at 271.78 98.425 0)
  7839. (effects (font (size 1.27 1.27)) hide)
  7840. )
  7841. (pin "1" (uuid 1d751e16-596f-42fa-b467-2fcf0aea7ec1))
  7842. )
  7843. (symbol (lib_id "Device:R_Small") (at 274.955 259.08 180) (unit 1)
  7844. (in_bom yes) (on_board yes)
  7845. (uuid f1370d94-cf81-4937-9a1b-efa417f60a57)
  7846. (property "Reference" "R1" (id 0) (at 276.4536 258.4196 0)
  7847. (effects (font (size 1.27 1.27)) (justify right))
  7848. )
  7849. (property "Value" "2.2K/1%/0402" (id 1) (at 276.4536 260.2484 0)
  7850. (effects (font (size 0.635 0.635)) (justify right))
  7851. )
  7852. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 274.955 259.08 0)
  7853. (effects (font (size 1.27 1.27)) hide)
  7854. )
  7855. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1809201112_YAGEO-RC0402FR-072K2L_C114762.pdf" (id 3) (at 274.955 259.08 0)
  7856. (effects (font (size 1.27 1.27)) hide)
  7857. )
  7858. (property "Mfr #" "RC0402FR-072K2L" (id 4) (at 274.955 259.08 0)
  7859. (effects (font (size 1.27 1.27)) hide)
  7860. )
  7861. (property "LCSC #" "C114762" (id 5) (at 274.955 259.08 0)
  7862. (effects (font (size 1.27 1.27)) hide)
  7863. )
  7864. (pin "1" (uuid 516be0f8-2eed-4b8b-ad3a-232f62e0df0d))
  7865. (pin "2" (uuid 439ff0f4-ad42-4eb7-a414-36f4a1befb8d))
  7866. )
  7867. (symbol (lib_id "Device:R") (at 325.755 215.9 270) (unit 1)
  7868. (in_bom yes) (on_board yes)
  7869. (uuid f34aff8b-9274-4550-a45d-3cc90c503dd6)
  7870. (property "Reference" "R7" (id 0) (at 325.755 213.36 90))
  7871. (property "Value" "5.1k" (id 1) (at 325.755 218.44 90))
  7872. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 325.755 214.122 90)
  7873. (effects (font (size 1.27 1.27)) hide)
  7874. )
  7875. (property "Datasheet" "~" (id 3) (at 325.755 215.9 0)
  7876. (effects (font (size 1.27 1.27)) hide)
  7877. )
  7878. (property "LCSC" "C25905" (id 4) (at 325.755 215.9 0)
  7879. (effects (font (size 1.27 1.27)) hide)
  7880. )
  7881. (property "Supplier" "" (id 5) (at 325.755 215.9 0)
  7882. (effects (font (size 1.27 1.27)) hide)
  7883. )
  7884. (pin "1" (uuid 051cf58c-07e8-4945-adb3-19dd1e7c9ad7))
  7885. (pin "2" (uuid a771f70f-f355-456e-9f96-042d551cd665))
  7886. )
  7887. (symbol (lib_id "power:+1V8") (at 327.66 64.135 0) (unit 1)
  7888. (in_bom yes) (on_board yes) (fields_autoplaced)
  7889. (uuid f43a0663-6e29-4423-bc62-c7e32bcb2cc6)
  7890. (property "Reference" "#PWR0146" (id 0) (at 327.66 67.945 0)
  7891. (effects (font (size 1.27 1.27)) hide)
  7892. )
  7893. (property "Value" "+1V8" (id 1) (at 327.66 58.42 0))
  7894. (property "Footprint" "" (id 2) (at 327.66 64.135 0)
  7895. (effects (font (size 1.27 1.27)) hide)
  7896. )
  7897. (property "Datasheet" "" (id 3) (at 327.66 64.135 0)
  7898. (effects (font (size 1.27 1.27)) hide)
  7899. )
  7900. (pin "1" (uuid 53aff3eb-d274-48f9-ac66-1af88ffbd64d))
  7901. )
  7902. (symbol (lib_id "power:GND") (at 292.1 66.675 0) (unit 1)
  7903. (in_bom yes) (on_board yes)
  7904. (uuid f6344501-b291-48cd-b655-b755b51b8995)
  7905. (property "Reference" "#PWR0102" (id 0) (at 292.1 73.025 0)
  7906. (effects (font (size 1.27 1.27)) hide)
  7907. )
  7908. (property "Value" "GND" (id 1) (at 292.227 71.0692 0))
  7909. (property "Footprint" "" (id 2) (at 292.1 66.675 0)
  7910. (effects (font (size 1.27 1.27)) hide)
  7911. )
  7912. (property "Datasheet" "" (id 3) (at 292.1 66.675 0)
  7913. (effects (font (size 1.27 1.27)) hide)
  7914. )
  7915. (pin "1" (uuid 6eaad618-3462-4bfb-bea4-77add3447c6f))
  7916. )
  7917. (symbol (lib_id "power:GND") (at 57.785 276.225 0) (unit 1)
  7918. (in_bom yes) (on_board yes)
  7919. (uuid f9b5630a-9f9d-43d6-bd4e-cd1b6b9445e5)
  7920. (property "Reference" "#PWR0158" (id 0) (at 57.785 282.575 0)
  7921. (effects (font (size 1.27 1.27)) hide)
  7922. )
  7923. (property "Value" "GND" (id 1) (at 57.912 280.6192 0))
  7924. (property "Footprint" "" (id 2) (at 57.785 276.225 0)
  7925. (effects (font (size 1.27 1.27)) hide)
  7926. )
  7927. (property "Datasheet" "" (id 3) (at 57.785 276.225 0)
  7928. (effects (font (size 1.27 1.27)) hide)
  7929. )
  7930. (pin "1" (uuid 8c904a4e-f2f9-406d-92ea-4b20c6cffaca))
  7931. )
  7932. (symbol (lib_id "power:+5V") (at 241.935 27.305 0) (unit 1)
  7933. (in_bom yes) (on_board yes) (fields_autoplaced)
  7934. (uuid ffa3b32e-accf-4018-9c08-bdd0dddbb58c)
  7935. (property "Reference" "#PWR0160" (id 0) (at 241.935 31.115 0)
  7936. (effects (font (size 1.27 1.27)) hide)
  7937. )
  7938. (property "Value" "+5V" (id 1) (at 241.935 21.59 0))
  7939. (property "Footprint" "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (id 2) (at 241.935 27.305 0))
  7940. (property "Datasheet" "" (id 3) (at 241.935 27.305 0)
  7941. (effects (font (size 1.27 1.27)) hide)
  7942. )
  7943. (pin "1" (uuid f9d71ca1-e23b-4f95-89dd-6ae292821540))
  7944. )
  7945. (symbol (lib_id "Device:C_Small") (at 273.05 172.085 0) (unit 1)
  7946. (in_bom yes) (on_board yes)
  7947. (uuid ffaa515e-a3a7-4ef0-b7cc-cca082ccd861)
  7948. (property "Reference" "C4" (id 0) (at 269.24 174.625 0)
  7949. (effects (font (size 1.27 1.27)) (justify left))
  7950. )
  7951. (property "Value" "12pF/25V/5%/0402" (id 1) (at 274.32 183.515 90)
  7952. (effects (font (size 0.635 0.635)) (justify left))
  7953. )
  7954. (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 273.05 172.085 0)
  7955. (effects (font (size 1.27 1.27)) hide)
  7956. )
  7957. (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/1811081546_Murata-Electronics-GRM1555C1E120JA01D_C161514.pdf" (id 3) (at 273.05 172.085 0)
  7958. (effects (font (size 1.27 1.27)) hide)
  7959. )
  7960. (property "Mfr #" "GRM1555C1E120JA01D" (id 4) (at 273.05 172.085 0)
  7961. (effects (font (size 1.27 1.27)) hide)
  7962. )
  7963. (property "LCSC #" "C161514" (id 5) (at 273.05 172.085 0)
  7964. (effects (font (size 1.27 1.27)) hide)
  7965. )
  7966. (pin "1" (uuid 26e1ddc7-6de9-4fad-a9af-ea44b8fb1f13))
  7967. (pin "2" (uuid 29421fd7-f39c-4c55-8565-218749a5f4f7))
  7968. )
  7969. (symbol (lib_id "power:GND") (at 274.955 269.24 0) (unit 1)
  7970. (in_bom yes) (on_board yes)
  7971. (uuid ffe67b36-be57-4645-aecc-ac2442cfc566)
  7972. (property "Reference" "#PWR0120" (id 0) (at 274.955 275.59 0)
  7973. (effects (font (size 1.27 1.27)) hide)
  7974. )
  7975. (property "Value" "GND" (id 1) (at 275.082 273.6342 0))
  7976. (property "Footprint" "" (id 2) (at 274.955 269.24 0)
  7977. (effects (font (size 1.27 1.27)) hide)
  7978. )
  7979. (property "Datasheet" "" (id 3) (at 274.955 269.24 0)
  7980. (effects (font (size 1.27 1.27)) hide)
  7981. )
  7982. (pin "1" (uuid f24e4ceb-778d-4ae4-8c46-a88d118ed07f))
  7983. )
  7984. (sheet_instances
  7985. (path "/" (page "1"))
  7986. )
  7987. (symbol_instances
  7988. (path "/debe2c90-fa3f-4afb-9dd7-6a14a5fcacc9"
  7989. (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
  7990. )
  7991. (path "/460bf75a-834c-4daa-8408-8f58b7c0296a"
  7992. (reference "#FLG0104") (unit 1) (value "PWR_FLAG") (footprint "")
  7993. )
  7994. (path "/6b1bfa2c-f66d-4683-99c1-0f6cf8cfde16"
  7995. (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
  7996. )
  7997. (path "/f6344501-b291-48cd-b655-b755b51b8995"
  7998. (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
  7999. )
  8000. (path "/543d85b9-6956-4d40-adcc-d7eb4894ec9d"
  8001. (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
  8002. )
  8003. (path "/764c3897-0039-4e8b-827f-ba7e1c0b435a"
  8004. (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
  8005. )
  8006. (path "/e507d102-5622-41bd-a93b-7f368be2a763"
  8007. (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
  8008. )
  8009. (path "/0c73a196-e7d4-45f0-b412-702cf8f01f94"
  8010. (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
  8011. )
  8012. (path "/8ab690ea-b43d-40a3-9f93-57a95c434b58"
  8013. (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
  8014. )
  8015. (path "/a3036691-b885-4b7f-b58f-a9e30468aa56"
  8016. (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
  8017. )
  8018. (path "/6ce05476-e28f-459e-bab0-0fb22972f73f"
  8019. (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
  8020. )
  8021. (path "/4965be65-426c-42ea-9249-f8569089b33a"
  8022. (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
  8023. )
  8024. (path "/1e188cc2-b835-4356-8ae9-fa55c4982306"
  8025. (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
  8026. )
  8027. (path "/ad36f7bc-b206-43a3-a759-cd9031730899"
  8028. (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
  8029. )
  8030. (path "/92225265-a780-4d4c-b887-155952fecfeb"
  8031. (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
  8032. )
  8033. (path "/ee15600a-8855-4e32-8678-578ca04110b5"
  8034. (reference "#PWR0114") (unit 1) (value "GND") (footprint "")
  8035. )
  8036. (path "/68d487e2-f1a5-45e6-b4df-2f0c81d53dcf"
  8037. (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
  8038. )
  8039. (path "/694a98d7-e6ec-408f-9bf7-d46935ce37b5"
  8040. (reference "#PWR0116") (unit 1) (value "GND") (footprint "")
  8041. )
  8042. (path "/4f6a9aee-48b7-463a-9d63-9b62fd1c844c"
  8043. (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
  8044. )
  8045. (path "/97daf5a0-25a3-4f25-94b8-3877c77c3beb"
  8046. (reference "#PWR0118") (unit 1) (value "GND") (footprint "")
  8047. )
  8048. (path "/9bdf1619-aef9-4cee-b279-96ea6a2bdad0"
  8049. (reference "#PWR0119") (unit 1) (value "GND") (footprint "")
  8050. )
  8051. (path "/ffe67b36-be57-4645-aecc-ac2442cfc566"
  8052. (reference "#PWR0120") (unit 1) (value "GND") (footprint "")
  8053. )
  8054. (path "/43b83906-bee1-4be4-ba40-a58742e814b0"
  8055. (reference "#PWR0121") (unit 1) (value "GND") (footprint "")
  8056. )
  8057. (path "/0fab5564-99ee-4a7a-9741-e8e2e6b2e8fb"
  8058. (reference "#PWR0122") (unit 1) (value "GND") (footprint "")
  8059. )
  8060. (path "/544adac2-3f6a-4486-8f6c-96876e3e8065"
  8061. (reference "#PWR0123") (unit 1) (value "GND") (footprint "")
  8062. )
  8063. (path "/3fd6940e-4f55-4f44-985b-f95e56a2c906"
  8064. (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
  8065. )
  8066. (path "/1295c243-9fef-4826-8fde-e436bbfeedcb"
  8067. (reference "#PWR0125") (unit 1) (value "GND") (footprint "")
  8068. )
  8069. (path "/cd2b9d23-c14a-4049-a980-b814cece0bcb"
  8070. (reference "#PWR0126") (unit 1) (value "GND") (footprint "")
  8071. )
  8072. (path "/5e8f49b0-bc20-4c5a-8256-b584ef1d2905"
  8073. (reference "#PWR0127") (unit 1) (value "+3V3") (footprint "")
  8074. )
  8075. (path "/ab53dca0-bcc3-48f4-b3f0-82ec262800d1"
  8076. (reference "#PWR0128") (unit 1) (value "+3V3") (footprint "")
  8077. )
  8078. (path "/2454f770-9ba4-4d59-a0c5-1a043a0be8c9"
  8079. (reference "#PWR0129") (unit 1) (value "+3V3") (footprint "")
  8080. )
  8081. (path "/d8db6c96-306f-4e45-89af-8c3a8ffb582d"
  8082. (reference "#PWR0130") (unit 1) (value "+3V3") (footprint "")
  8083. )
  8084. (path "/c43a5b2a-6217-43c9-9e38-bba70fb112e5"
  8085. (reference "#PWR0131") (unit 1) (value "+3V3") (footprint "")
  8086. )
  8087. (path "/3f35bb26-ced8-4ac3-937d-6858f7586540"
  8088. (reference "#PWR0132") (unit 1) (value "+3V3") (footprint "")
  8089. )
  8090. (path "/6eff8a91-4d82-40e9-909d-6abc1afb2edb"
  8091. (reference "#PWR0133") (unit 1) (value "+3V3") (footprint "")
  8092. )
  8093. (path "/9e2d7dc4-e340-461a-8ebe-65244b1eab0c"
  8094. (reference "#PWR0134") (unit 1) (value "+5V") (footprint "")
  8095. )
  8096. (path "/e1233353-28f8-4ba5-af26-748555061e46"
  8097. (reference "#PWR0135") (unit 1) (value "+5V") (footprint "")
  8098. )
  8099. (path "/2f5122bf-a7c6-483a-9626-60268a0c2cae"
  8100. (reference "#PWR0136") (unit 1) (value "+5V") (footprint "")
  8101. )
  8102. (path "/a8b37eb2-425b-42d7-9d15-a46bf4356d9b"
  8103. (reference "#PWR0137") (unit 1) (value "+5V") (footprint "")
  8104. )
  8105. (path "/08d9a933-d909-4769-861a-c4b5ab315cde"
  8106. (reference "#PWR0138") (unit 1) (value "+5V") (footprint "")
  8107. )
  8108. (path "/af81c81b-a228-4f6a-ae53-d1a2977f27db"
  8109. (reference "#PWR0139") (unit 1) (value "+5V") (footprint "")
  8110. )
  8111. (path "/77281cde-783b-470a-b755-948418415ed5"
  8112. (reference "#PWR0140") (unit 1) (value "+5V") (footprint "")
  8113. )
  8114. (path "/b7e767fc-f250-4d50-869d-96be8efe0a72"
  8115. (reference "#PWR0141") (unit 1) (value "GND") (footprint "")
  8116. )
  8117. (path "/1b22aea5-c14a-45df-ba6b-407c18ebd943"
  8118. (reference "#PWR0142") (unit 1) (value "GND") (footprint "")
  8119. )
  8120. (path "/e76f7ebc-2a09-4fad-b7bb-1ef55c02aa8d"
  8121. (reference "#PWR0143") (unit 1) (value "GND") (footprint "")
  8122. )
  8123. (path "/b15b1955-74db-422d-bd0a-d6dacaea5d51"
  8124. (reference "#PWR0144") (unit 1) (value "GND") (footprint "")
  8125. )
  8126. (path "/19080ab3-d4ed-43f6-983a-1875845e70a0"
  8127. (reference "#PWR0145") (unit 1) (value "+1V8") (footprint "")
  8128. )
  8129. (path "/f43a0663-6e29-4423-bc62-c7e32bcb2cc6"
  8130. (reference "#PWR0146") (unit 1) (value "+1V8") (footprint "")
  8131. )
  8132. (path "/a70219ca-9f69-42a4-96be-4a1d8faae0f4"
  8133. (reference "#PWR0147") (unit 1) (value "+1V8") (footprint "")
  8134. )
  8135. (path "/1056bae6-1710-4309-b494-132c9aca3b2a"
  8136. (reference "#PWR0148") (unit 1) (value "GND") (footprint "")
  8137. )
  8138. (path "/3585497b-7ce4-4e56-b8a8-59ddcbc56cdf"
  8139. (reference "#PWR0149") (unit 1) (value "GND") (footprint "")
  8140. )
  8141. (path "/00d6b1c6-63cf-44d7-8dff-cbc2dcba9956"
  8142. (reference "#PWR0150") (unit 1) (value "GND") (footprint "")
  8143. )
  8144. (path "/917770b2-8c31-4894-9223-a4570ba7e53c"
  8145. (reference "#PWR0151") (unit 1) (value "GND") (footprint "")
  8146. )
  8147. (path "/de573eb2-70a8-4634-8a8a-65869c513df7"
  8148. (reference "#PWR0152") (unit 1) (value "GND") (footprint "")
  8149. )
  8150. (path "/25c4616c-5bec-4f67-a5ed-cd996b2326f7"
  8151. (reference "#PWR0153") (unit 1) (value "GND") (footprint "")
  8152. )
  8153. (path "/81c0b866-5307-4c56-a44f-b670ded4ed61"
  8154. (reference "#PWR0154") (unit 1) (value "GND") (footprint "")
  8155. )
  8156. (path "/1d2c5f4e-eb65-495f-acfa-28af2da8e833"
  8157. (reference "#PWR0155") (unit 1) (value "GND") (footprint "")
  8158. )
  8159. (path "/95f112ae-ee96-4c79-b005-865b7ab0682d"
  8160. (reference "#PWR0156") (unit 1) (value "+5V") (footprint "")
  8161. )
  8162. (path "/13bc8755-53c8-4324-9920-bf1b91eb8acf"
  8163. (reference "#PWR0157") (unit 1) (value "+5V") (footprint "")
  8164. )
  8165. (path "/f9b5630a-9f9d-43d6-bd4e-cd1b6b9445e5"
  8166. (reference "#PWR0158") (unit 1) (value "GND") (footprint "")
  8167. )
  8168. (path "/a3b79a08-690a-4fed-b5a5-d39f35c2e17c"
  8169. (reference "#PWR0159") (unit 1) (value "GND") (footprint "")
  8170. )
  8171. (path "/ffa3b32e-accf-4018-9c08-bdd0dddbb58c"
  8172. (reference "#PWR0160") (unit 1) (value "+5V") (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical")
  8173. )
  8174. (path "/e21a1952-eec6-4312-82a9-9b15d03a720a"
  8175. (reference "#PWR0161") (unit 1) (value "GND") (footprint "")
  8176. )
  8177. (path "/8f630fba-cedc-43f2-b60a-94c1645aecf4"
  8178. (reference "#PWR0162") (unit 1) (value "GND") (footprint "")
  8179. )
  8180. (path "/4f732699-10ca-49c3-a111-e29bc51387a6"
  8181. (reference "C1") (unit 1) (value "10uF/25V/20%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8182. )
  8183. (path "/4ba1d77c-6d58-4d30-b0a7-c1e54b093936"
  8184. (reference "C2") (unit 1) (value "22uF/10V/20%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8185. )
  8186. (path "/0d9734d7-6b5f-4645-a39d-f6e943cf28b2"
  8187. (reference "C3") (unit 1) (value "4.7uF/25V/10%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8188. )
  8189. (path "/ffaa515e-a3a7-4ef0-b7cc-cca082ccd861"
  8190. (reference "C4") (unit 1) (value "12pF/25V/5%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8191. )
  8192. (path "/057e4a51-9749-4994-b275-015088cf2c45"
  8193. (reference "C5") (unit 1) (value "4.7uF/25V/10%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8194. )
  8195. (path "/b785cf5f-2d24-45c9-b360-35d35a95858b"
  8196. (reference "C6") (unit 1) (value "12pF/25V/5%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8197. )
  8198. (path "/becd77e2-b7ed-46c3-b4d3-e976446b2f80"
  8199. (reference "C7") (unit 1) (value "4.7uF/25V/10%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8200. )
  8201. (path "/1eed8d63-bf4b-47bc-8740-c581f0cfd918"
  8202. (reference "C8") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8203. )
  8204. (path "/da93a19b-46ea-4c7d-85a4-5096cb0d70a2"
  8205. (reference "C9") (unit 1) (value "4.7uF/25V/10%/0603") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8206. )
  8207. (path "/ceb5ce28-0a19-4a9d-9829-5efc82f79af1"
  8208. (reference "C10") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8209. )
  8210. (path "/eae9693a-eec6-4712-8442-4aeb80ea2ccb"
  8211. (reference "C11") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8212. )
  8213. (path "/7b8181fe-5e51-4e10-b3e5-ceb58c7ff6d6"
  8214. (reference "C12") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8215. )
  8216. (path "/e0a65346-b563-4c5b-b0b1-b66911bb089d"
  8217. (reference "C13") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8218. )
  8219. (path "/4994864c-f7d0-4c86-948f-73dc2fec1bd9"
  8220. (reference "C14") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8221. )
  8222. (path "/7af7cadc-26a6-4b18-b8af-49ac9af1256e"
  8223. (reference "C15") (unit 1) (value "1uF") (footprint "Capacitor_SMD:C_0603_1608Metric")
  8224. )
  8225. (path "/6e5e4d10-d5f1-4d7b-bc02-f93f1043f025"
  8226. (reference "C16") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8227. )
  8228. (path "/3df9bc8e-ff2a-4440-8852-ee1d3b45eef8"
  8229. (reference "C17") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8230. )
  8231. (path "/d40bfccd-3608-4594-bb92-d5c69c173a54"
  8232. (reference "C18") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8233. )
  8234. (path "/0974b260-d7b6-49b7-87ca-9308b25f0938"
  8235. (reference "C19") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8236. )
  8237. (path "/470ad535-b11d-4c23-9387-084981820a32"
  8238. (reference "C20") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8239. )
  8240. (path "/7d90245e-04eb-4be4-b24b-627e25f4d5e5"
  8241. (reference "C21") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8242. )
  8243. (path "/4c45ca4f-7520-44f4-b4ab-307932644845"
  8244. (reference "C22") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8245. )
  8246. (path "/8c901785-0792-48c1-88f4-1e26bf5cee15"
  8247. (reference "C23") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8248. )
  8249. (path "/20e00843-9e38-4e6c-b616-b3831ee81651"
  8250. (reference "C24") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8251. )
  8252. (path "/d008fc30-dee7-4702-87b1-86fcfa742c5b"
  8253. (reference "C25") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8254. )
  8255. (path "/6882bc07-bbe7-42b9-973d-3811e94777ef"
  8256. (reference "C26") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8257. )
  8258. (path "/331cfb9f-be01-4780-a3c6-e22967727e7d"
  8259. (reference "C27") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8260. )
  8261. (path "/48450532-f6bf-46ef-8df8-9e0086ccf2f5"
  8262. (reference "C28") (unit 1) (value "100nF/25V/10%/0402") (footprint "Capacitor_SMD:C_0402_1005Metric")
  8263. )
  8264. (path "/64faa7b7-400d-423f-ac33-57935ca2e37c"
  8265. (reference "D1") (unit 1) (value "LED") (footprint "LED_SMD:LED_0402_1005Metric")
  8266. )
  8267. (path "/80f97144-6d62-432e-8957-a92143e1d836"
  8268. (reference "D2") (unit 1) (value "LED") (footprint "LED_SMD:LED_0402_1005Metric")
  8269. )
  8270. (path "/39796c10-6f4e-4a28-a3be-e5b2af3c4b54"
  8271. (reference "D3") (unit 1) (value "LED") (footprint "LED_SMD:LED_0402_1005Metric")
  8272. )
  8273. (path "/ecd177b1-1d05-490a-bc0b-d1bd54a50d39"
  8274. (reference "F1") (unit 1) (value "Polyfuse 460mA") (footprint "Greaseweazle:Fuse_1206_3216Metric")
  8275. )
  8276. (path "/61291441-aedb-4d0a-a7f9-a9e41f67be02"
  8277. (reference "FB1") (unit 1) (value "bead") (footprint "Inductor_SMD:L_0805_2012Metric")
  8278. )
  8279. (path "/6f8a299b-825c-4e8b-86b5-22f83635d696"
  8280. (reference "FB2") (unit 1) (value "bead") (footprint "Inductor_SMD:L_0805_2012Metric")
  8281. )
  8282. (path "/37130447-8071-4e53-aa26-a47c3640e02c"
  8283. (reference "J1") (unit 1) (value "Conn_02x20_Counter_Clockwise") (footprint "Connector_IDC:IDC-Header_2x20_P2.54mm_Vertical")
  8284. )
  8285. (path "/b449a839-358d-489f-9ab2-e7f8376193b3"
  8286. (reference "J2") (unit 1) (value "Conn_02x05_Odd_Even") (footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical")
  8287. )
  8288. (path "/f1370d94-cf81-4937-9a1b-efa417f60a57"
  8289. (reference "R1") (unit 1) (value "2.2K/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  8290. )
  8291. (path "/b67dbd1b-5757-4345-b9ac-898e6c900ddf"
  8292. (reference "R2") (unit 1) (value "33R/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  8293. )
  8294. (path "/e3e786fa-4ed7-4f58-b4e3-0b768b3a0149"
  8295. (reference "R3") (unit 1) (value "33R/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  8296. )
  8297. (path "/35283631-fa6a-43f9-b429-2bfcbc217b04"
  8298. (reference "R4") (unit 1) (value "33R/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  8299. )
  8300. (path "/41a2c7f8-9d13-4742-8a6d-d47af6cea9fc"
  8301. (reference "R5") (unit 1) (value "12K/1%") (footprint "Resistor_SMD:R_0402_1005Metric")
  8302. )
  8303. (path "/52eac967-7d94-4d8b-9b8f-c6859ea9fecb"
  8304. (reference "R6") (unit 1) (value "1K/1%") (footprint "Resistor_SMD:R_0402_1005Metric")
  8305. )
  8306. (path "/f34aff8b-9274-4550-a45d-3cc90c503dd6"
  8307. (reference "R7") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8308. )
  8309. (path "/df85ab26-b16d-44a7-b9bc-49d1057758ed"
  8310. (reference "R8") (unit 1) (value "5.1k") (footprint "Resistor_SMD:R_0402_1005Metric")
  8311. )
  8312. (path "/9bea29e5-370e-4174-9b02-826f44e60212"
  8313. (reference "R9") (unit 1) (value "2.2K/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  8314. )
  8315. (path "/b00547ee-ab49-4c21-b32b-70b65122f7de"
  8316. (reference "R10") (unit 1) (value "2.2K/1%/0402") (footprint "Resistor_SMD:R_0402_1005Metric")
  8317. )
  8318. (path "/102b5b78-a9ab-4d9f-994b-8c38f1ce166a"
  8319. (reference "U2") (unit 1) (value "Z80CPU") (footprint "Socket:DIP_Socket-40_W22.1_W22.86_W25.4_W27.94_W28.7_3M_240-3639-00-0602J")
  8320. )
  8321. (path "/7049dfae-5363-4f06-bd50-caf296fe785b"
  8322. (reference "U3") (unit 1) (value "AMS1117-3.3") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
  8323. )
  8324. (path "/4ab71fca-03b4-4ced-8a48-e8a112536b0d"
  8325. (reference "U4") (unit 1) (value "FT2232H") (footprint "Package_QFP:LQFP-64_10x10mm_P0.5mm")
  8326. )
  8327. (path "/cb233ecc-ee10-4924-a11e-2585204a55a9"
  8328. (reference "U5") (unit 1) (value "USBLC6-2SC6") (footprint "Package_TO_SOT_SMD:SOT-23-6")
  8329. )
  8330. (path "/83a01f69-1c58-4b9b-96a1-104f416212b1"
  8331. (reference "U6") (unit 1) (value "CY7C1019D-10VXIT") (footprint "Z80ICE:SOJ-32_10.16x23.49mm_P1.27mm")
  8332. )
  8333. (path "/d01cfa5a-bf72-4cdd-9fb9-741f9ede43bb"
  8334. (reference "U7") (unit 1) (value "ATF1508ASL-25AU100") (footprint "Package_LCC:PLCC-84_SMD-Socket")
  8335. )
  8336. (path "/693bf11b-0d1b-4d96-9e48-744408da6046"
  8337. (reference "USB1") (unit 1) (value "HRO-TYPE-C-31-M-12") (footprint "sm6uax:HRO-TYPE-C-31-M-12")
  8338. )
  8339. (path "/82c18ee2-61a6-4dc4-9b18-2abfdbe5131d"
  8340. (reference "Y1") (unit 1) (value "7M12000044") (footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm")
  8341. )
  8342. )
  8343. )