| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714 | (kicad_sch	(version 20231120)	(generator "eeschema")	(generator_version "8.0")	(uuid "91b81ee9-3a35-4b19-bbda-9b13aadc5bca")	(paper "A4")	(title_block		(title "BlueSCSI V2, Desktop 50 Pin, Top Connector, 2023.10a")		(date "October 2023")		(rev "1")		(company "Tech by Androda, LLC")	)	(lib_symbols		(symbol "74xx:74HC14"			(pin_names				(offset 1.016)			)			(exclude_from_sim no)			(in_bom yes)			(on_board yes)			(property "Reference" "U"				(at 0 1.27 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Value" "74HC14"				(at 0 -1.27 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Footprint" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Description" "Hex inverter schmitt trigger"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_locked" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "ki_keywords" "HCMOS not inverter"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_fp_filters" "DIP*W7.62mm*"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(symbol "74HC14_1_0"				(polyline					(pts						(xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)					)					(stroke						(width 0.254)						(type default)					)					(fill						(type background)					)				)				(pin input line					(at -7.62 0 0)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "1"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin output inverted					(at 7.62 0 180)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "2"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)			(symbol "74HC14_1_1"				(polyline					(pts						(xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "74HC14_2_0"				(polyline					(pts						(xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)					)					(stroke						(width 0.254)						(type default)					)					(fill						(type background)					)				)				(pin input line					(at -7.62 0 0)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "3"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin output inverted					(at 7.62 0 180)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "4"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)			(symbol "74HC14_2_1"				(polyline					(pts						(xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "74HC14_3_0"				(polyline					(pts						(xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)					)					(stroke						(width 0.254)						(type default)					)					(fill						(type background)					)				)				(pin input line					(at -7.62 0 0)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "5"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin output inverted					(at 7.62 0 180)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "6"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)			(symbol "74HC14_3_1"				(polyline					(pts						(xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "74HC14_4_0"				(polyline					(pts						(xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)					)					(stroke						(width 0.254)						(type default)					)					(fill						(type background)					)				)				(pin output inverted					(at 7.62 0 180)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "8"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin input line					(at -7.62 0 0)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "9"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)			(symbol "74HC14_4_1"				(polyline					(pts						(xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "74HC14_5_0"				(polyline					(pts						(xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)					)					(stroke						(width 0.254)						(type default)					)					(fill						(type background)					)				)				(pin output inverted					(at 7.62 0 180)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "10"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin input line					(at -7.62 0 0)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "11"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)			(symbol "74HC14_5_1"				(polyline					(pts						(xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "74HC14_6_0"				(polyline					(pts						(xy -3.81 3.81) (xy -3.81 -3.81) (xy 3.81 0) (xy -3.81 3.81)					)					(stroke						(width 0.254)						(type default)					)					(fill						(type background)					)				)				(pin output inverted					(at 7.62 0 180)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "12"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin input line					(at -7.62 0 0)					(length 3.81)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "13"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)			(symbol "74HC14_6_1"				(polyline					(pts						(xy -1.905 -1.27) (xy -1.905 1.27) (xy -0.635 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -2.54 -1.27) (xy -0.635 -1.27) (xy -0.635 1.27) (xy 0 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "74HC14_7_0"				(pin power_in line					(at 0 12.7 270)					(length 5.08)					(name "VCC"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "14"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin power_in line					(at 0 -12.7 90)					(length 5.08)					(name "GND"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "7"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)			(symbol "74HC14_7_1"				(rectangle					(start -5.08 7.62)					(end 5.08 -7.62)					(stroke						(width 0.254)						(type default)					)					(fill						(type background)					)				)			)		)		(symbol "Connector:Conn_01x03_Male"			(pin_names				(offset 1.016) hide)			(exclude_from_sim no)			(in_bom yes)			(on_board yes)			(property "Reference" "J"				(at 0 5.08 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Value" "Conn_01x03_Male"				(at 0 -5.08 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Footprint" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Datasheet" "~"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_keywords" "connector"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_fp_filters" "Connector*:*_1x??_*"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(symbol "Conn_01x03_Male_1_1"				(polyline					(pts						(xy 1.27 -2.54) (xy 0.8636 -2.54)					)					(stroke						(width 0.1524)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy 1.27 0) (xy 0.8636 0)					)					(stroke						(width 0.1524)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy 1.27 2.54) (xy 0.8636 2.54)					)					(stroke						(width 0.1524)						(type default)					)					(fill						(type none)					)				)				(rectangle					(start 0.8636 -2.413)					(end 0 -2.667)					(stroke						(width 0.1524)						(type default)					)					(fill						(type outline)					)				)				(rectangle					(start 0.8636 0.127)					(end 0 -0.127)					(stroke						(width 0.1524)						(type default)					)					(fill						(type outline)					)				)				(rectangle					(start 0.8636 2.667)					(end 0 2.413)					(stroke						(width 0.1524)						(type default)					)					(fill						(type outline)					)				)				(pin passive line					(at 5.08 2.54 180)					(length 3.81)					(name "Pin_1"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "1"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin passive line					(at 5.08 0 180)					(length 3.81)					(name "Pin_2"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "2"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin passive line					(at 5.08 -2.54 180)					(length 3.81)					(name "Pin_3"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "3"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)		)		(symbol "Device:LED"			(pin_numbers hide)			(pin_names				(offset 1.016) hide)			(exclude_from_sim no)			(in_bom yes)			(on_board yes)			(property "Reference" "D"				(at 0 2.54 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Value" "LED"				(at 0 -2.54 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Footprint" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Datasheet" "~"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Description" "Light emitting diode"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_keywords" "LED diode"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(symbol "LED_0_1"				(polyline					(pts						(xy -1.27 -1.27) (xy -1.27 1.27)					)					(stroke						(width 0.254)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -1.27 0) (xy 1.27 0)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27)					)					(stroke						(width 0.254)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "LED_1_1"				(pin passive line					(at -3.81 0 0)					(length 2.54)					(name "K"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "1"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin passive line					(at 3.81 0 180)					(length 2.54)					(name "A"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "2"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)		)		(symbol "Device:R"			(pin_numbers hide)			(pin_names				(offset 0)			)			(exclude_from_sim no)			(in_bom yes)			(on_board yes)			(property "Reference" "R"				(at 2.032 0 90)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Value" "R"				(at 0 0 90)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Footprint" ""				(at -1.778 0 90)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Datasheet" "~"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Description" "Resistor"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_keywords" "R res resistor"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_fp_filters" "R_*"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(symbol "R_0_1"				(rectangle					(start -1.016 -2.54)					(end 1.016 2.54)					(stroke						(width 0.254)						(type default)					)					(fill						(type none)					)				)			)			(symbol "R_1_1"				(pin passive line					(at 0 3.81 270)					(length 1.27)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "1"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin passive line					(at 0 -3.81 90)					(length 1.27)					(name "~"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "2"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)		)		(symbol "Jumper:SolderJumper_2_Open"			(pin_names				(offset 0) hide)			(exclude_from_sim no)			(in_bom yes)			(on_board yes)			(property "Reference" "JP"				(at 0 2.032 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Value" "SolderJumper_2_Open"				(at 0 -2.54 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Footprint" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Datasheet" "~"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Description" "Solder Jumper, 2-pole, open"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_keywords" "solder jumper SPST"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_fp_filters" "SolderJumper*Open*"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(symbol "SolderJumper_2_Open_0_1"				(arc					(start -0.254 1.016)					(mid -1.2656 0)					(end -0.254 -1.016)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(arc					(start -0.254 1.016)					(mid -1.2656 0)					(end -0.254 -1.016)					(stroke						(width 0)						(type default)					)					(fill						(type outline)					)				)				(polyline					(pts						(xy -0.254 1.016) (xy -0.254 -1.016)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy 0.254 1.016) (xy 0.254 -1.016)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(arc					(start 0.254 -1.016)					(mid 1.2656 0)					(end 0.254 1.016)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(arc					(start 0.254 -1.016)					(mid 1.2656 0)					(end 0.254 1.016)					(stroke						(width 0)						(type default)					)					(fill						(type outline)					)				)			)			(symbol "SolderJumper_2_Open_1_1"				(pin passive line					(at -3.81 0 0)					(length 2.54)					(name "A"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "1"						(effects							(font								(size 1.27 1.27)							)						)					)				)				(pin passive line					(at 3.81 0 180)					(length 2.54)					(name "B"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "2"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)		)		(symbol "power:+5F"			(power)			(pin_names				(offset 0)			)			(exclude_from_sim no)			(in_bom yes)			(on_board yes)			(property "Reference" "#PWR"				(at 0 -3.81 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Value" "+5F"				(at 0 3.556 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Footprint" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Datasheet" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Description" "Power symbol creates a global label with name \"+5F\""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_keywords" "power-flag"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(symbol "+5F_0_1"				(polyline					(pts						(xy -0.762 1.27) (xy 0 2.54)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy 0 0) (xy 0 2.54)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)				(polyline					(pts						(xy 0 2.54) (xy 0.762 1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "+5F_1_1"				(pin power_in line					(at 0 0 90)					(length 0) hide					(name "+5F"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "1"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)		)		(symbol "power:GND"			(power)			(pin_names				(offset 0)			)			(exclude_from_sim no)			(in_bom yes)			(on_board yes)			(property "Reference" "#PWR"				(at 0 -6.35 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Value" "GND"				(at 0 -3.81 0)				(effects					(font						(size 1.27 1.27)					)				)			)			(property "Footprint" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Datasheet" ""				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "Description" "Power symbol creates a global label with name \"GND\" , ground"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(property "ki_keywords" "power-flag"				(at 0 0 0)				(effects					(font						(size 1.27 1.27)					)					(hide yes)				)			)			(symbol "GND_0_1"				(polyline					(pts						(xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27)					)					(stroke						(width 0)						(type default)					)					(fill						(type none)					)				)			)			(symbol "GND_1_1"				(pin power_in line					(at 0 0 270)					(length 0) hide					(name "GND"						(effects							(font								(size 1.27 1.27)							)						)					)					(number "1"						(effects							(font								(size 1.27 1.27)							)						)					)				)			)		)	)	(junction		(at 147.32 113.03)		(diameter 0)		(color 0 0 0 0)		(uuid "c0f7dcb4-f69d-43b2-a2a4-193cf483a0f1")	)	(junction		(at 154.94 113.03)		(diameter 0)		(color 0 0 0 0)		(uuid "d11cbda7-214d-4792-8d5e-6080a0759efa")	)	(junction		(at 139.7 113.03)		(diameter 0)		(color 0 0 0 0)		(uuid "d5196dff-d5be-4da0-8f4a-63009cfaffae")	)	(polyline		(pts			(xy 188.595 95.25) (xy 106.045 95.25)		)		(stroke			(width 0)			(type default)		)		(uuid "0aef4f2f-f7ff-44c9-88bb-59ebab52c9da")	)	(polyline		(pts			(xy 188.595 130.81) (xy 188.595 95.25)		)		(stroke			(width 0)			(type default)		)		(uuid "1ebced05-d94b-4545-b22b-ca6affa191c9")	)	(wire		(pts			(xy 154.94 113.03) (xy 173.99 113.03)		)		(stroke			(width 0)			(type default)		)		(uuid "2c58a957-11b3-4e6e-8b82-8062fa59a050")	)	(wire		(pts			(xy 147.32 105.41) (xy 147.32 113.03)		)		(stroke			(width 0)			(type default)		)		(uuid "39ce55a4-7981-4e23-9970-fa7fa009018c")	)	(polyline		(pts			(xy 188.595 49.53) (xy 188.595 71.755)		)		(stroke			(width 0)			(type default)		)		(uuid "3ae066ba-31f8-440b-98af-96d99b9e642c")	)	(wire		(pts			(xy 137.16 113.03) (xy 139.7 113.03)		)		(stroke			(width 0)			(type default)		)		(uuid "456801c6-0cec-45a5-8d17-2cef220324ce")	)	(polyline		(pts			(xy 106.045 49.53) (xy 106.045 151.13)		)		(stroke			(width 0)			(type default)		)		(uuid "4d9dd994-fdcd-441a-bfe7-b2db00b758fe")	)	(polyline		(pts			(xy 188.595 95.25) (xy 188.595 71.755)		)		(stroke			(width 0)			(type default)		)		(uuid "6a3ca8d2-286c-4d6b-96b7-f273b09a833b")	)	(polyline		(pts			(xy 106.045 49.53) (xy 188.595 49.53)		)		(stroke			(width 0)			(type default)		)		(uuid "9b7285bd-6eb2-4f36-a561-82959404b14f")	)	(polyline		(pts			(xy 106.045 130.81) (xy 188.595 130.81)		)		(stroke			(width 0)			(type default)		)		(uuid "a547c755-bcfe-46ea-9c57-8faecf4c7341")	)	(wire		(pts			(xy 154.94 105.41) (xy 154.94 113.03)		)		(stroke			(width 0)			(type default)		)		(uuid "bd5694e1-c310-4ef8-af9b-4127618f6ed6")	)	(wire		(pts			(xy 147.32 113.03) (xy 147.32 119.38)		)		(stroke			(width 0)			(type default)		)		(uuid "c0bee9d3-13a4-4a36-9282-c39e78cdf1ad")	)	(polyline		(pts			(xy 188.595 151.13) (xy 188.595 130.81)		)		(stroke			(width 0)			(type default)		)		(uuid "d69731d3-a32f-4d10-8cbd-91a7a7102a3d")	)	(polyline		(pts			(xy 147.955 130.81) (xy 147.955 151.13)		)		(stroke			(width 0)			(type default)		)		(uuid "d6ac2571-bf38-44de-984e-0130655598a1")	)	(wire		(pts			(xy 139.7 113.03) (xy 139.7 119.38)		)		(stroke			(width 0)			(type default)		)		(uuid "debcfc1a-38ba-4e18-9336-7ba716c2ad13")	)	(polyline		(pts			(xy 106.045 151.13) (xy 188.595 151.13)		)		(stroke			(width 0)			(type default)		)		(uuid "f3691aa6-9d5e-4b06-adb3-8e7f2247873f")	)	(polyline		(pts			(xy 188.595 71.755) (xy 106.045 71.755)		)		(stroke			(width 0)			(type default)		)		(uuid "ff9a11e0-0afd-4aff-8a99-a7f7311e28bf")	)	(text "Onboard Power LED"		(exclude_from_sim no)		(at 129.54 76.835 0)		(effects			(font				(size 1.27 1.27)			)			(justify left bottom)		)		(uuid "302d59f2-6268-4c15-a422-1445d402a74a")	)	(text "Unused Inverter Pin"		(exclude_from_sim no)		(at 159.385 133.985 0)		(effects			(font				(size 1.27 1.27)			)			(justify left bottom)		)		(uuid "320b45bf-7199-4096-a07c-d82dcb3bfcce")	)	(text "oBSY Signal Inverter"		(exclude_from_sim no)		(at 115.57 133.985 0)		(effects			(font				(size 1.27 1.27)			)			(justify left bottom)		)		(uuid "699041fe-b2cf-4bcc-8e53-7c910a16fea7")	)	(text "Onboard Activity LED"		(exclude_from_sim no)		(at 136.525 55.245 0)		(effects			(font				(size 1.27 1.27)			)			(justify left bottom)		)		(uuid "7fffdd4e-d184-4966-896e-9314a551ee12")	)	(text "BlueSCSI © Eric Helgeson\nPCB © Tech by Androda, LLC\n\nLicensed under CERN-OHL-S v2\nhttps://ohwr.org/cern_ohl_s_v2.txt\n\nThis source is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY,          \nINCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A         \nPARTICULAR PURPOSE. Please see the CERN-OHL-S v2 for applicable conditions.\n\nAs per CERN-OHL-S v2 section 4, should You produce hardware based on this    \nsource, You must where practicable maintain the Source Location visible      \non the external case of the Device or other products you make using this source.  \n"		(exclude_from_sim no)		(at 233.934 147.066 0)		(effects			(font				(size 1.27 1.27)			)		)		(uuid "a8c65b6e-ede7-44f7-bbaf-c1f17823dd45")	)	(text "Adjustable Brightness"		(exclude_from_sim no)		(at 148.59 121.285 0)		(effects			(font				(size 1.27 1.27)			)			(justify left bottom)		)		(uuid "ad047a98-ef63-4f37-9e76-7e6108dc51f5")	)	(text "External Activity LED"		(exclude_from_sim no)		(at 113.665 99.695 0)		(effects			(font				(size 1.27 1.27)			)			(justify left bottom)		)		(uuid "c2cae2fb-9e79-4ce2-8bb9-80668da626b6")	)	(global_label "oBSY"		(shape input)		(at 132.715 65.405 180)		(fields_autoplaced yes)		(effects			(font				(size 1.27 1.27)			)			(justify right)		)		(uuid "274580f6-0c65-4978-9582-90f81497c9d2")		(property "Intersheetrefs" "${INTERSHEET_REFS}"			(at 125.6737 65.3256 0)			(effects				(font					(size 1.27 1.27)				)				(justify right)				(hide yes)			)		)	)	(global_label "!oBSY"		(shape input)		(at 133.35 144.145 0)		(fields_autoplaced yes)		(effects			(font				(size 1.27 1.27)			)			(justify left)		)		(uuid "5f66b9c2-d9fe-410d-a319-f466c328eb51")		(property "Intersheetrefs" "${INTERSHEET_REFS}"			(at 140.9961 144.0656 0)			(effects				(font					(size 1.27 1.27)				)				(justify left)				(hide yes)			)		)	)	(global_label "oBSY"		(shape input)		(at 118.11 144.145 180)		(fields_autoplaced yes)		(effects			(font				(size 1.27 1.27)			)			(justify right)		)		(uuid "95dc2d8d-bcdf-4655-8f98-130c39c38dfb")		(property "Intersheetrefs" "${INTERSHEET_REFS}"			(at 111.0687 144.0656 0)			(effects				(font					(size 1.27 1.27)				)				(justify right)				(hide yes)			)		)	)	(global_label "oBSY"		(shape input)		(at 121.92 113.03 180)		(fields_autoplaced yes)		(effects			(font				(size 1.27 1.27)			)			(justify right)		)		(uuid "e99bbad7-6d19-429e-b0f4-fd3463d16a40")		(property "Intersheetrefs" "${INTERSHEET_REFS}"			(at 114.8787 112.9506 0)			(effects				(font					(size 1.27 1.27)				)				(justify right)				(hide yes)			)		)	)	(symbol		(lib_id "Device:R")		(at 151.13 113.03 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "03142d3f-f27d-4d9f-9f6c-b0498a9f3df9")		(property "Reference" "R59"			(at 149.86 110.49 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "330"			(at 151.13 113.03 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder"			(at 151.13 114.808 90)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 151.13 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 151.13 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "e7101d2f-ab9d-404e-9ca4-564bb4cfbb23")		)		(pin "2"			(uuid "d85ffc81-68c2-479c-bc36-fa131800b493")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "R59")					(unit 1)				)			)		)	)	(symbol		(lib_id "power:GND")		(at 153.67 38.1 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "0aebfa8f-00c7-4f1f-bf5d-f58e13cb19f6")		(property "Reference" "#PWR041"			(at 160.02 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Value" "GND"			(at 158.0642 37.973 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 153.67 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" ""			(at 153.67 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 153.67 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "c8da37af-a1e7-4d82-aa44-025df7221b8c")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "#PWR041")					(unit 1)				)			)		)	)	(symbol		(lib_id "Device:R")		(at 143.51 113.03 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "0e7581f4-5fdd-4863-a8e3-8d5161063b63")		(property "Reference" "R58"			(at 142.24 110.49 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "150"			(at 143.51 113.03 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder"			(at 143.51 114.808 90)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 143.51 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 143.51 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "8c91fa9e-9ea9-483d-ad47-5be33505966e")		)		(pin "2"			(uuid "8bc0e0c3-1075-4b8b-ba12-2f37050cc5f5")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "R58")					(unit 1)				)			)		)	)	(symbol		(lib_id "74xx:74HC14")		(at 140.335 65.405 0)		(unit 4)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "141b1b15-36f3-451e-b947-2e9470712c8d")		(property "Reference" "U8"			(at 140.335 57.785 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "74HC14"			(at 140.335 60.325 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 140.335 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"			(at 140.335 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 140.335 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "16da7fa3-8142-4e01-8cfd-ebabb8cb299c")		)		(pin "2"			(uuid "ce215639-a5db-4994-a85e-f31a4670ff8a")		)		(pin "3"			(uuid "615cba83-8dfb-4c46-9ee0-31e04281958c")		)		(pin "4"			(uuid "b4b8552c-8859-43b1-87f3-6e3882ad6a54")		)		(pin "5"			(uuid "923fef84-55e0-4d10-a0d1-9deb223c8316")		)		(pin "6"			(uuid "99e46c0d-5f7e-46eb-af78-df54b8f5d01f")		)		(pin "8"			(uuid "519e34ba-1bda-4c85-8b22-749102450a80")		)		(pin "9"			(uuid "25fbf094-1df6-47b9-9ea0-b359b87caa9b")		)		(pin "10"			(uuid "a36d74ac-740d-4574-afa8-cea08e00c5ce")		)		(pin "11"			(uuid "6a03f87c-7e30-4c15-8327-50fd71c52a41")		)		(pin "12"			(uuid "24846f92-ebf5-456f-9227-bfecdd50def5")		)		(pin "13"			(uuid "217491ec-1d7f-4fed-84a2-53f0d7d9cacc")		)		(pin "14"			(uuid "0ef45af2-1c5b-4c35-b5c9-7874b7a409ed")		)		(pin "7"			(uuid "e27f918c-c842-42d6-ab6a-98d34ad30ffa")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "U8")					(unit 4)				)			)		)	)	(symbol		(lib_id "74xx:74HC14")		(at 170.815 144.145 0)		(unit 3)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "1c997544-c68d-4ebb-bcb7-971a5922e34c")		(property "Reference" "U8"			(at 170.815 136.525 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "74HC14"			(at 170.815 139.065 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 170.815 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"			(at 170.815 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 170.815 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "d2b367b7-4790-419c-8242-745d4a3b40d9")		)		(pin "2"			(uuid "31c66e07-8ff0-4e72-a937-e902ee9cbe28")		)		(pin "3"			(uuid "3eee84f7-0594-4885-80e2-c37d4fe25300")		)		(pin "4"			(uuid "64d78021-3583-4a0e-a653-704ea5c6c9bc")		)		(pin "5"			(uuid "c2652a2c-8465-4334-8755-8a9b5b2b500f")		)		(pin "6"			(uuid "6e6c6102-dbf1-4895-83cd-5caef2744695")		)		(pin "8"			(uuid "73bf6468-e7a1-4920-8ed0-12eb6fc3a867")		)		(pin "9"			(uuid "9d3a51f2-980b-4bf8-a0fd-a065ecd76cea")		)		(pin "10"			(uuid "ded85e50-e3f7-46a0-998b-69691b41c6b8")		)		(pin "11"			(uuid "64db64c9-b182-4f0a-ac25-02a638c90605")		)		(pin "12"			(uuid "4495ba03-3ad7-4d47-bf49-d352f3b2e1af")		)		(pin "13"			(uuid "095c76fb-936a-4cce-8cac-40d9e936e556")		)		(pin "14"			(uuid "5860eea9-3005-4138-82a9-0e19088ba689")		)		(pin "7"			(uuid "9591bf45-e436-4b8d-ae06-05ba68b37055")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "U8")					(unit 3)				)			)		)	)	(symbol		(lib_id "Jumper:SolderJumper_2_Open")		(at 143.51 119.38 0)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "2de70ce8-1ae0-4c74-b56f-c1191fa8e250")		(property "Reference" "JP1"			(at 143.51 128.27 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "SolderJumper_2_Open"			(at 143.51 124.46 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm"			(at 143.51 119.38 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 143.51 119.38 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 143.51 119.38 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "5d98f46e-f53d-4d71-875d-a99eb75da47a")		)		(pin "2"			(uuid "4ad152c9-7559-477c-be92-772abdefc59e")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "JP1")					(unit 1)				)			)		)	)	(symbol		(lib_id "Jumper:SolderJumper_2_Open")		(at 151.13 105.41 0)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "2e4317c4-aac7-453f-a079-7fbec4fe7cb0")		(property "Reference" "JP2"			(at 151.13 99.06 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "SolderJumper_2_Open"			(at 151.13 101.6 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm"			(at 151.13 105.41 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 151.13 105.41 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 151.13 105.41 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "62d766e0-2377-48f7-bba6-c1d8bde97cfd")		)		(pin "2"			(uuid "faa93709-af01-4c11-aa32-1deca8703476")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "JP2")					(unit 1)				)			)		)	)	(symbol		(lib_id "power:GND")		(at 173.99 115.57 270)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "2efea9f0-7cc8-422a-a8fd-5b3e4f07e3f9")		(property "Reference" "#PWR069"			(at 167.64 115.57 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Value" "GND"			(at 169.5958 115.697 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 173.99 115.57 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" ""			(at 173.99 115.57 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 173.99 115.57 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "5b9837a4-5069-4f2a-a1dc-84dac46dbb53")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "#PWR069")					(unit 1)				)			)		)	)	(symbol		(lib_id "74xx:74HC14")		(at 132.08 87.63 0)		(unit 6)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "62f81cd8-d464-4ba8-95bb-cac38e9a3906")		(property "Reference" "U8"			(at 132.08 80.01 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "74HC14"			(at 132.08 82.55 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 132.08 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"			(at 132.08 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 132.08 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "205e8fcf-3253-4945-b6f8-324d458809bf")		)		(pin "2"			(uuid "fcd22ee9-efeb-4045-bff8-f7abbe6790da")		)		(pin "3"			(uuid "b8ec2111-ae0a-4854-9ce0-2ad10723ad95")		)		(pin "4"			(uuid "79030c41-db28-4298-8a76-f2f9a43e7b62")		)		(pin "5"			(uuid "1c630057-dc46-430c-ac3d-00e82dc14f00")		)		(pin "6"			(uuid "bfa6623d-1136-43b9-b56d-051dccbece3c")		)		(pin "8"			(uuid "3c53f71d-9ffe-421d-ae29-ed09a8eb0279")		)		(pin "9"			(uuid "5e894e57-2b96-4ace-b80a-583c8e3467cc")		)		(pin "10"			(uuid "5137dac0-e4ce-43f9-b647-1826f53ec2fb")		)		(pin "11"			(uuid "a06c441e-8723-485b-a577-8940d508e87e")		)		(pin "12"			(uuid "8cc3a301-d076-42e4-82f6-68d32827174e")		)		(pin "13"			(uuid "470d9ef6-7530-4b82-abaa-138d6c231937")		)		(pin "14"			(uuid "dc9125a4-86ca-401d-bb5a-3cddfc684513")		)		(pin "7"			(uuid "e95818cd-3677-4fb7-8f15-8a9076b017a4")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "U8")					(unit 6)				)			)		)	)	(symbol		(lib_id "Device:R")		(at 158.75 87.63 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "6ca8997b-a36f-4abc-8df3-7255061bc846")		(property "Reference" "R56"			(at 157.48 85.09 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "4.7k"			(at 158.75 87.63 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder"			(at 158.75 89.408 90)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 158.75 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 158.75 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "d98833c7-753b-4785-b87f-2393c2b1bbee")		)		(pin "2"			(uuid "9baabfd2-7534-4904-82d8-d5111c7aedb9")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "R56")					(unit 1)				)			)		)	)	(symbol		(lib_id "power:+5F")		(at 128.27 38.1 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "6ef47171-a576-4917-bb7f-860b1d601318")		(property "Reference" "#PWR038"			(at 132.08 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Value" "+5F"			(at 123.8758 37.719 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 128.27 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" ""			(at 128.27 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 128.27 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "7f577f61-f871-40b8-aa7c-c877ad22645d")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "#PWR038")					(unit 1)				)			)		)	)	(symbol		(lib_id "power:GND")		(at 170.18 87.63 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "73356ba7-efc3-4b42-ac5c-6a8d7efb2002")		(property "Reference" "#PWR035"			(at 176.53 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Value" "GND"			(at 174.5742 87.503 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 170.18 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" ""			(at 170.18 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 170.18 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "9f73b5ce-ded7-4d7b-b083-ab6406a4e444")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "#PWR035")					(unit 1)				)			)		)	)	(symbol		(lib_id "74xx:74HC14")		(at 129.54 113.03 0)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "7fef15f8-6850-412e-9c4d-3c06bb5765f1")		(property "Reference" "U8"			(at 129.54 105.41 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "74HC14"			(at 129.54 107.95 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 129.54 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"			(at 129.54 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 129.54 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "8d01a91e-9654-4464-a145-8e4c7fed5574")		)		(pin "2"			(uuid "e02b34f1-6638-4f2d-9233-62b8edffab71")		)		(pin "3"			(uuid "a9da58b9-f44d-440e-be7b-4e4452316ea3")		)		(pin "4"			(uuid "5197cb7f-2b30-44c7-80c9-23d5538c7383")		)		(pin "5"			(uuid "b8aa591e-cc69-4a61-bc5d-d225c0dc60c4")		)		(pin "6"			(uuid "9af8c29f-027c-4cbe-b49a-39d2537431d9")		)		(pin "8"			(uuid "de186d07-61d2-4e4f-b647-274d0477c735")		)		(pin "9"			(uuid "d78c1397-66c2-48d3-84c2-d3d0ddee9b92")		)		(pin "10"			(uuid "baea6228-708a-42f3-8ed3-5766becd5ae8")		)		(pin "11"			(uuid "34408a97-d0c8-4eaf-9c52-b414aa28e3c5")		)		(pin "12"			(uuid "9cf1061f-c850-46fc-a1a1-c443ad45170e")		)		(pin "13"			(uuid "9cd196f7-2c04-4144-9cf4-21ef1d671444")		)		(pin "14"			(uuid "6c44e151-b85b-4f83-bb1c-1122bd0c97a5")		)		(pin "7"			(uuid "d0c9f060-4a05-4e91-baf1-f04c6d39b47e")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "U8")					(unit 1)				)			)		)	)	(symbol		(lib_id "74xx:74HC14")		(at 140.97 38.1 90)		(unit 7)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "89f51bb8-c154-4014-ab70-ce4d8ca3c2ad")		(property "Reference" "U8"			(at 140.97 29.21 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "74HC14"			(at 140.97 31.75 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "Package_SO:SO-14_3.9x8.65mm_P1.27mm"			(at 140.97 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"			(at 140.97 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 140.97 38.1 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "JLC Part #" "C5605"			(at 140.97 38.1 90)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "c29c2c5b-9def-4f91-ac90-70975914e0b2")		)		(pin "2"			(uuid "fad76b35-d12f-45f5-a800-584163c194d3")		)		(pin "3"			(uuid "f75ad69b-2d6a-4a93-839e-17e469956c12")		)		(pin "4"			(uuid "cd700d4c-9c3c-4bd2-bb0e-c218423dad86")		)		(pin "5"			(uuid "52ebd9f7-9888-40f9-89e4-d9b2dc160aaa")		)		(pin "6"			(uuid "139d3128-253a-41f2-86d9-29eb85df08e4")		)		(pin "8"			(uuid "491668ea-f5be-450c-b89e-9daa7f3f998d")		)		(pin "9"			(uuid "e3a98c90-80ab-48e1-ada3-bf29f9635bf1")		)		(pin "10"			(uuid "7a81eec1-5fd8-4873-b98e-c9f495d4f895")		)		(pin "11"			(uuid "2e0205ba-66d7-471a-8a2c-e9b3a56c3727")		)		(pin "12"			(uuid "1b9bb519-447b-4a86-9194-861b646d904f")		)		(pin "13"			(uuid "9aa3b67d-5d59-4dbf-8446-59e13966053d")		)		(pin "14"			(uuid "c639a0c3-a230-4835-80c3-f5d1f89769c6")		)		(pin "7"			(uuid "44cd969e-3d8d-4682-ba79-5dee0918b0a0")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "U8")					(unit 7)				)			)		)	)	(symbol		(lib_id "Device:LED")		(at 159.385 65.405 180)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "8d0a51c9-9e20-4a99-b2e5-75425b930be7")		(property "Reference" "D3"			(at 160.9725 59.055 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "LED"			(at 160.9725 61.595 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder"			(at 159.385 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 159.385 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 159.385 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "JLCPCB Part Number" "C72041"			(at 159.385 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "95e3e880-62d7-44e0-9bc3-e519748082f0")		)		(pin "2"			(uuid "12f0e50f-3297-4878-849c-16d5cb16f324")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "D3")					(unit 1)				)			)		)	)	(symbol		(lib_id "power:GND")		(at 163.195 144.145 270)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "8dad90a8-bdcd-4452-b63b-3cbb02090de4")		(property "Reference" "#PWR059"			(at 156.845 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Value" "GND"			(at 158.8008 144.272 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 163.195 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" ""			(at 163.195 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 163.195 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "e70f6f2e-2236-43a2-a0e9-321c04bbf3e7")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "#PWR059")					(unit 1)				)			)		)	)	(symbol		(lib_id "74xx:74HC14")		(at 125.73 144.145 0)		(unit 2)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "97aa4e0d-8b58-42e7-a51b-e21522a5aa78")		(property "Reference" "U8"			(at 125.73 136.525 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "74HC14"			(at 125.73 139.065 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 125.73 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"			(at 125.73 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 125.73 144.145 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "f9428684-561b-4647-8104-7f9326b7e450")		)		(pin "2"			(uuid "6083480d-4cc4-4c05-85fe-7a6256046947")		)		(pin "3"			(uuid "0fb75a28-92ad-4ed4-b9d8-317b99910922")		)		(pin "4"			(uuid "3128ab97-d293-4472-836d-a74f99048b8e")		)		(pin "5"			(uuid "9814ee64-818b-4332-ac4c-6ded20e91ab7")		)		(pin "6"			(uuid "89e4b0f0-c6d8-4804-b3b3-38596314a4d6")		)		(pin "8"			(uuid "0dbc4ff6-2cad-4b1b-b73b-a333b24dcc01")		)		(pin "9"			(uuid "9e33de11-5ea4-467e-8d57-f3d65665c5af")		)		(pin "10"			(uuid "cdb10a53-507c-4d14-8ad0-5059f1955c20")		)		(pin "11"			(uuid "053ca136-ade9-4b03-98cf-ed5283a2653d")		)		(pin "12"			(uuid "0c386475-1bea-45c6-9135-0d092c52fce2")		)		(pin "13"			(uuid "d535f82b-aac8-4cc4-9912-3cc0f9fb79e9")		)		(pin "14"			(uuid "e79e4797-25a9-4af8-b937-196c0fa535d0")		)		(pin "7"			(uuid "7d1361a0-cd2c-41de-8527-e6d4b5170260")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "U8")					(unit 2)				)			)		)	)	(symbol		(lib_id "Device:LED")		(at 166.37 87.63 180)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "98a58317-1c0f-4f61-b2e6-224f79d56787")		(property "Reference" "D4"			(at 167.9575 81.28 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "LED"			(at 167.9575 83.82 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder"			(at 166.37 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 166.37 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 166.37 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "JLCPCB Part #" "C2290"			(at 166.37 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "3b092105-7e66-44ab-8514-bc6593c50f00")		)		(pin "2"			(uuid "38da5fb5-c91d-48c6-b37f-dca28d1f74f3")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "D4")					(unit 1)				)			)		)	)	(symbol		(lib_id "Device:R")		(at 151.765 65.405 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "9f41e0b8-7a06-4a29-9f5f-e5231c34c97e")		(property "Reference" "R30"			(at 150.495 62.865 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "470"			(at 151.765 65.405 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder"			(at 151.765 67.183 90)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 151.765 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 151.765 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "0933b6c8-6a69-482b-b6f6-86535e99de24")		)		(pin "2"			(uuid "19fbcf66-9b02-432d-b75e-b4e2118116e9")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "R30")					(unit 1)				)			)		)	)	(symbol		(lib_id "Connector:Conn_01x03_Male")		(at 179.07 113.03 180)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "a414ff08-189a-4004-8a5d-041c3b067e5c")		(property "Reference" "J5"			(at 172.72 104.14 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "Conn_01x03_Male"			(at 172.72 106.68 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical"			(at 179.07 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "~"			(at 179.07 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 179.07 113.03 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "50df69c5-96ed-42cb-8d72-e07dcbfdce3b")		)		(pin "2"			(uuid "6c67bdbf-3922-496a-b3d7-6b0a54a75f0b")		)		(pin "3"			(uuid "60a19285-6ceb-434b-be04-41acc7a3e2aa")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "J5")					(unit 1)				)			)		)	)	(symbol		(lib_id "power:+5F")		(at 124.46 87.63 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "aea32f12-6a9e-4985-9c35-b2338aa502e3")		(property "Reference" "#PWR014"			(at 128.27 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Value" "+5F"			(at 120.0658 87.249 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 124.46 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" ""			(at 124.46 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 124.46 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "8aa68a60-2748-4d8b-92c6-b828f5170ab0")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "#PWR014")					(unit 1)				)			)		)	)	(symbol		(lib_id "power:GND")		(at 163.195 65.405 90)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "ebb76b7e-c643-40cc-a2ba-b8249780a53c")		(property "Reference" "#PWR017"			(at 169.545 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Value" "GND"			(at 167.5892 65.278 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 163.195 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" ""			(at 163.195 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 163.195 65.405 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "1129bee9-57fc-4765-8d64-b9ee8074c79a")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "#PWR017")					(unit 1)				)			)		)	)	(symbol		(lib_id "74xx:74HC14")		(at 147.32 87.63 0)		(unit 5)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(fields_autoplaced yes)		(uuid "f13cd28c-60ea-402d-9a58-02c4e004be93")		(property "Reference" "U8"			(at 147.32 80.01 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Value" "74HC14"			(at 147.32 82.55 0)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 147.32 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC14"			(at 147.32 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 147.32 87.63 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "b9ef80a1-68da-481d-9613-d55fbddea7e5")		)		(pin "2"			(uuid "e4eefa5c-c1c5-47ee-822a-5a8bd5804a0c")		)		(pin "3"			(uuid "c5066379-62fe-4fda-9b68-43882d18e6da")		)		(pin "4"			(uuid "b625180d-409b-48a5-aeed-21fcc15971e3")		)		(pin "5"			(uuid "dddccf7e-1b8b-48be-ae3a-1a98876d7364")		)		(pin "6"			(uuid "6ee838f0-c00f-480f-9604-ca5547799de5")		)		(pin "8"			(uuid "fc8b1751-7316-4ea8-8bb1-ff4869247aae")		)		(pin "9"			(uuid "ff0bb5e1-6300-43a0-a6b0-9e22dbe356bb")		)		(pin "10"			(uuid "68deaf0d-4abc-439a-b35a-489dbd9f3785")		)		(pin "11"			(uuid "b3db311a-82c0-447e-8351-355aa756ffa7")		)		(pin "12"			(uuid "9010d396-22f0-4115-90c1-47bd8148ad1f")		)		(pin "13"			(uuid "d19c0c55-5f4c-4160-b9a3-dd54fe9fcf5f")		)		(pin "14"			(uuid "a3da6bfd-2907-4172-aa43-7b18224955bd")		)		(pin "7"			(uuid "9f374e83-aac5-4725-93cb-9d377b9c209e")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "U8")					(unit 5)				)			)		)	)	(symbol		(lib_id "power:GND")		(at 173.99 110.49 270)		(unit 1)		(exclude_from_sim no)		(in_bom yes)		(on_board yes)		(dnp no)		(uuid "fff78d24-24db-4cd7-ae59-a9a1e7f0a3bd")		(property "Reference" "#PWR068"			(at 167.64 110.49 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Value" "GND"			(at 169.5958 110.617 90)			(effects				(font					(size 1.27 1.27)				)			)		)		(property "Footprint" ""			(at 173.99 110.49 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Datasheet" ""			(at 173.99 110.49 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(property "Description" ""			(at 173.99 110.49 0)			(effects				(font					(size 1.27 1.27)				)				(hide yes)			)		)		(pin "1"			(uuid "f178c068-e060-4864-b5c0-19c8d2364a6e")		)		(instances			(project "Desktop_50_Pin_TopConn"				(path "/e40e8cef-4fb0-4fc3-be09-3875b2cc8469/d5fc13d4-1ca0-477a-91ea-84605f39f5f9"					(reference "#PWR068")					(unit 1)				)			)		)	))
 |