x37kernel2.kicad_sch 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553
  1. (kicad_sch (version 20211123) (generator eeschema)
  2. (uuid 4780a290-d25c-4459-9579-eba3f7678762)
  3. (paper "A3")
  4. (lib_symbols
  5. (symbol "74xx:74HC245" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  6. (property "Reference" "U" (id 0) (at -7.62 16.51 0)
  7. (effects (font (size 1.27 1.27)))
  8. )
  9. (property "Value" "74HC245" (id 1) (at -7.62 -16.51 0)
  10. (effects (font (size 1.27 1.27)))
  11. )
  12. (property "Footprint" "" (id 2) (at 0 0 0)
  13. (effects (font (size 1.27 1.27)) hide)
  14. )
  15. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 0 0 0)
  16. (effects (font (size 1.27 1.27)) hide)
  17. )
  18. (property "ki_locked" "" (id 4) (at 0 0 0)
  19. (effects (font (size 1.27 1.27)))
  20. )
  21. (property "ki_keywords" "HCMOS BUS 3State" (id 5) (at 0 0 0)
  22. (effects (font (size 1.27 1.27)) hide)
  23. )
  24. (property "ki_description" "Octal BUS Transceivers, 3-State outputs" (id 6) (at 0 0 0)
  25. (effects (font (size 1.27 1.27)) hide)
  26. )
  27. (property "ki_fp_filters" "DIP?20*" (id 7) (at 0 0 0)
  28. (effects (font (size 1.27 1.27)) hide)
  29. )
  30. (symbol "74HC245_1_0"
  31. (polyline
  32. (pts
  33. (xy -0.635 -1.27)
  34. (xy -0.635 1.27)
  35. (xy 0.635 1.27)
  36. )
  37. (stroke (width 0) (type default) (color 0 0 0 0))
  38. (fill (type none))
  39. )
  40. (polyline
  41. (pts
  42. (xy -1.27 -1.27)
  43. (xy 0.635 -1.27)
  44. (xy 0.635 1.27)
  45. (xy 1.27 1.27)
  46. )
  47. (stroke (width 0) (type default) (color 0 0 0 0))
  48. (fill (type none))
  49. )
  50. (pin input line (at -12.7 -10.16 0) (length 5.08)
  51. (name "A->B" (effects (font (size 1.27 1.27))))
  52. (number "1" (effects (font (size 1.27 1.27))))
  53. )
  54. (pin power_in line (at 0 -20.32 90) (length 5.08)
  55. (name "GND" (effects (font (size 1.27 1.27))))
  56. (number "10" (effects (font (size 1.27 1.27))))
  57. )
  58. (pin tri_state line (at 12.7 -5.08 180) (length 5.08)
  59. (name "B7" (effects (font (size 1.27 1.27))))
  60. (number "11" (effects (font (size 1.27 1.27))))
  61. )
  62. (pin tri_state line (at 12.7 -2.54 180) (length 5.08)
  63. (name "B6" (effects (font (size 1.27 1.27))))
  64. (number "12" (effects (font (size 1.27 1.27))))
  65. )
  66. (pin tri_state line (at 12.7 0 180) (length 5.08)
  67. (name "B5" (effects (font (size 1.27 1.27))))
  68. (number "13" (effects (font (size 1.27 1.27))))
  69. )
  70. (pin tri_state line (at 12.7 2.54 180) (length 5.08)
  71. (name "B4" (effects (font (size 1.27 1.27))))
  72. (number "14" (effects (font (size 1.27 1.27))))
  73. )
  74. (pin tri_state line (at 12.7 5.08 180) (length 5.08)
  75. (name "B3" (effects (font (size 1.27 1.27))))
  76. (number "15" (effects (font (size 1.27 1.27))))
  77. )
  78. (pin tri_state line (at 12.7 7.62 180) (length 5.08)
  79. (name "B2" (effects (font (size 1.27 1.27))))
  80. (number "16" (effects (font (size 1.27 1.27))))
  81. )
  82. (pin tri_state line (at 12.7 10.16 180) (length 5.08)
  83. (name "B1" (effects (font (size 1.27 1.27))))
  84. (number "17" (effects (font (size 1.27 1.27))))
  85. )
  86. (pin tri_state line (at 12.7 12.7 180) (length 5.08)
  87. (name "B0" (effects (font (size 1.27 1.27))))
  88. (number "18" (effects (font (size 1.27 1.27))))
  89. )
  90. (pin input inverted (at -12.7 -12.7 0) (length 5.08)
  91. (name "CE" (effects (font (size 1.27 1.27))))
  92. (number "19" (effects (font (size 1.27 1.27))))
  93. )
  94. (pin tri_state line (at -12.7 12.7 0) (length 5.08)
  95. (name "A0" (effects (font (size 1.27 1.27))))
  96. (number "2" (effects (font (size 1.27 1.27))))
  97. )
  98. (pin power_in line (at 0 20.32 270) (length 5.08)
  99. (name "VCC" (effects (font (size 1.27 1.27))))
  100. (number "20" (effects (font (size 1.27 1.27))))
  101. )
  102. (pin tri_state line (at -12.7 10.16 0) (length 5.08)
  103. (name "A1" (effects (font (size 1.27 1.27))))
  104. (number "3" (effects (font (size 1.27 1.27))))
  105. )
  106. (pin tri_state line (at -12.7 7.62 0) (length 5.08)
  107. (name "A2" (effects (font (size 1.27 1.27))))
  108. (number "4" (effects (font (size 1.27 1.27))))
  109. )
  110. (pin tri_state line (at -12.7 5.08 0) (length 5.08)
  111. (name "A3" (effects (font (size 1.27 1.27))))
  112. (number "5" (effects (font (size 1.27 1.27))))
  113. )
  114. (pin tri_state line (at -12.7 2.54 0) (length 5.08)
  115. (name "A4" (effects (font (size 1.27 1.27))))
  116. (number "6" (effects (font (size 1.27 1.27))))
  117. )
  118. (pin tri_state line (at -12.7 0 0) (length 5.08)
  119. (name "A5" (effects (font (size 1.27 1.27))))
  120. (number "7" (effects (font (size 1.27 1.27))))
  121. )
  122. (pin tri_state line (at -12.7 -2.54 0) (length 5.08)
  123. (name "A6" (effects (font (size 1.27 1.27))))
  124. (number "8" (effects (font (size 1.27 1.27))))
  125. )
  126. (pin tri_state line (at -12.7 -5.08 0) (length 5.08)
  127. (name "A7" (effects (font (size 1.27 1.27))))
  128. (number "9" (effects (font (size 1.27 1.27))))
  129. )
  130. )
  131. (symbol "74HC245_1_1"
  132. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  133. (stroke (width 0.254) (type default) (color 0 0 0 0))
  134. (fill (type background))
  135. )
  136. )
  137. )
  138. (symbol "74xx:74LS04" (in_bom yes) (on_board yes)
  139. (property "Reference" "U" (id 0) (at 0 1.27 0)
  140. (effects (font (size 1.27 1.27)))
  141. )
  142. (property "Value" "74LS04" (id 1) (at 0 -1.27 0)
  143. (effects (font (size 1.27 1.27)))
  144. )
  145. (property "Footprint" "" (id 2) (at 0 0 0)
  146. (effects (font (size 1.27 1.27)) hide)
  147. )
  148. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (id 3) (at 0 0 0)
  149. (effects (font (size 1.27 1.27)) hide)
  150. )
  151. (property "ki_locked" "" (id 4) (at 0 0 0)
  152. (effects (font (size 1.27 1.27)))
  153. )
  154. (property "ki_keywords" "TTL not inv" (id 5) (at 0 0 0)
  155. (effects (font (size 1.27 1.27)) hide)
  156. )
  157. (property "ki_description" "Hex Inverter" (id 6) (at 0 0 0)
  158. (effects (font (size 1.27 1.27)) hide)
  159. )
  160. (property "ki_fp_filters" "DIP*W7.62mm* SSOP?14* TSSOP?14*" (id 7) (at 0 0 0)
  161. (effects (font (size 1.27 1.27)) hide)
  162. )
  163. (symbol "74LS04_1_0"
  164. (polyline
  165. (pts
  166. (xy -3.81 3.81)
  167. (xy -3.81 -3.81)
  168. (xy 3.81 0)
  169. (xy -3.81 3.81)
  170. )
  171. (stroke (width 0.254) (type default) (color 0 0 0 0))
  172. (fill (type background))
  173. )
  174. (pin input line (at -7.62 0 0) (length 3.81)
  175. (name "~" (effects (font (size 1.27 1.27))))
  176. (number "1" (effects (font (size 1.27 1.27))))
  177. )
  178. (pin output inverted (at 7.62 0 180) (length 3.81)
  179. (name "~" (effects (font (size 1.27 1.27))))
  180. (number "2" (effects (font (size 1.27 1.27))))
  181. )
  182. )
  183. (symbol "74LS04_2_0"
  184. (polyline
  185. (pts
  186. (xy -3.81 3.81)
  187. (xy -3.81 -3.81)
  188. (xy 3.81 0)
  189. (xy -3.81 3.81)
  190. )
  191. (stroke (width 0.254) (type default) (color 0 0 0 0))
  192. (fill (type background))
  193. )
  194. (pin input line (at -7.62 0 0) (length 3.81)
  195. (name "~" (effects (font (size 1.27 1.27))))
  196. (number "3" (effects (font (size 1.27 1.27))))
  197. )
  198. (pin output inverted (at 7.62 0 180) (length 3.81)
  199. (name "~" (effects (font (size 1.27 1.27))))
  200. (number "4" (effects (font (size 1.27 1.27))))
  201. )
  202. )
  203. (symbol "74LS04_3_0"
  204. (polyline
  205. (pts
  206. (xy -3.81 3.81)
  207. (xy -3.81 -3.81)
  208. (xy 3.81 0)
  209. (xy -3.81 3.81)
  210. )
  211. (stroke (width 0.254) (type default) (color 0 0 0 0))
  212. (fill (type background))
  213. )
  214. (pin input line (at -7.62 0 0) (length 3.81)
  215. (name "~" (effects (font (size 1.27 1.27))))
  216. (number "5" (effects (font (size 1.27 1.27))))
  217. )
  218. (pin output inverted (at 7.62 0 180) (length 3.81)
  219. (name "~" (effects (font (size 1.27 1.27))))
  220. (number "6" (effects (font (size 1.27 1.27))))
  221. )
  222. )
  223. (symbol "74LS04_4_0"
  224. (polyline
  225. (pts
  226. (xy -3.81 3.81)
  227. (xy -3.81 -3.81)
  228. (xy 3.81 0)
  229. (xy -3.81 3.81)
  230. )
  231. (stroke (width 0.254) (type default) (color 0 0 0 0))
  232. (fill (type background))
  233. )
  234. (pin output inverted (at 7.62 0 180) (length 3.81)
  235. (name "~" (effects (font (size 1.27 1.27))))
  236. (number "8" (effects (font (size 1.27 1.27))))
  237. )
  238. (pin input line (at -7.62 0 0) (length 3.81)
  239. (name "~" (effects (font (size 1.27 1.27))))
  240. (number "9" (effects (font (size 1.27 1.27))))
  241. )
  242. )
  243. (symbol "74LS04_5_0"
  244. (polyline
  245. (pts
  246. (xy -3.81 3.81)
  247. (xy -3.81 -3.81)
  248. (xy 3.81 0)
  249. (xy -3.81 3.81)
  250. )
  251. (stroke (width 0.254) (type default) (color 0 0 0 0))
  252. (fill (type background))
  253. )
  254. (pin output inverted (at 7.62 0 180) (length 3.81)
  255. (name "~" (effects (font (size 1.27 1.27))))
  256. (number "10" (effects (font (size 1.27 1.27))))
  257. )
  258. (pin input line (at -7.62 0 0) (length 3.81)
  259. (name "~" (effects (font (size 1.27 1.27))))
  260. (number "11" (effects (font (size 1.27 1.27))))
  261. )
  262. )
  263. (symbol "74LS04_6_0"
  264. (polyline
  265. (pts
  266. (xy -3.81 3.81)
  267. (xy -3.81 -3.81)
  268. (xy 3.81 0)
  269. (xy -3.81 3.81)
  270. )
  271. (stroke (width 0.254) (type default) (color 0 0 0 0))
  272. (fill (type background))
  273. )
  274. (pin output inverted (at 7.62 0 180) (length 3.81)
  275. (name "~" (effects (font (size 1.27 1.27))))
  276. (number "12" (effects (font (size 1.27 1.27))))
  277. )
  278. (pin input line (at -7.62 0 0) (length 3.81)
  279. (name "~" (effects (font (size 1.27 1.27))))
  280. (number "13" (effects (font (size 1.27 1.27))))
  281. )
  282. )
  283. (symbol "74LS04_7_0"
  284. (pin power_in line (at 0 12.7 270) (length 5.08)
  285. (name "VCC" (effects (font (size 1.27 1.27))))
  286. (number "14" (effects (font (size 1.27 1.27))))
  287. )
  288. (pin power_in line (at 0 -12.7 90) (length 5.08)
  289. (name "GND" (effects (font (size 1.27 1.27))))
  290. (number "7" (effects (font (size 1.27 1.27))))
  291. )
  292. )
  293. (symbol "74LS04_7_1"
  294. (rectangle (start -5.08 7.62) (end 5.08 -7.62)
  295. (stroke (width 0.254) (type default) (color 0 0 0 0))
  296. (fill (type background))
  297. )
  298. )
  299. )
  300. (symbol "74xx:74LS573" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
  301. (property "Reference" "U" (id 0) (at -7.62 16.51 0)
  302. (effects (font (size 1.27 1.27)))
  303. )
  304. (property "Value" "74LS573" (id 1) (at -7.62 -16.51 0)
  305. (effects (font (size 1.27 1.27)))
  306. )
  307. (property "Footprint" "" (id 2) (at 0 0 0)
  308. (effects (font (size 1.27 1.27)) hide)
  309. )
  310. (property "Datasheet" "74xx/74hc573.pdf" (id 3) (at 0 0 0)
  311. (effects (font (size 1.27 1.27)) hide)
  312. )
  313. (property "ki_locked" "" (id 4) (at 0 0 0)
  314. (effects (font (size 1.27 1.27)))
  315. )
  316. (property "ki_keywords" "TTL DFF DFF8 LATCH 3State" (id 5) (at 0 0 0)
  317. (effects (font (size 1.27 1.27)) hide)
  318. )
  319. (property "ki_description" "8-bit Latch 3-state outputs" (id 6) (at 0 0 0)
  320. (effects (font (size 1.27 1.27)) hide)
  321. )
  322. (property "ki_fp_filters" "DIP?20*" (id 7) (at 0 0 0)
  323. (effects (font (size 1.27 1.27)) hide)
  324. )
  325. (symbol "74LS573_1_0"
  326. (pin input inverted (at -12.7 -12.7 0) (length 5.08)
  327. (name "OE" (effects (font (size 1.27 1.27))))
  328. (number "1" (effects (font (size 1.27 1.27))))
  329. )
  330. (pin power_in line (at 0 -20.32 90) (length 5.08)
  331. (name "GND" (effects (font (size 1.27 1.27))))
  332. (number "10" (effects (font (size 1.27 1.27))))
  333. )
  334. (pin input line (at -12.7 -10.16 0) (length 5.08)
  335. (name "Load" (effects (font (size 1.27 1.27))))
  336. (number "11" (effects (font (size 1.27 1.27))))
  337. )
  338. (pin tri_state line (at 12.7 -5.08 180) (length 5.08)
  339. (name "Q7" (effects (font (size 1.27 1.27))))
  340. (number "12" (effects (font (size 1.27 1.27))))
  341. )
  342. (pin tri_state line (at 12.7 -2.54 180) (length 5.08)
  343. (name "Q6" (effects (font (size 1.27 1.27))))
  344. (number "13" (effects (font (size 1.27 1.27))))
  345. )
  346. (pin tri_state line (at 12.7 0 180) (length 5.08)
  347. (name "Q5" (effects (font (size 1.27 1.27))))
  348. (number "14" (effects (font (size 1.27 1.27))))
  349. )
  350. (pin tri_state line (at 12.7 2.54 180) (length 5.08)
  351. (name "Q4" (effects (font (size 1.27 1.27))))
  352. (number "15" (effects (font (size 1.27 1.27))))
  353. )
  354. (pin tri_state line (at 12.7 5.08 180) (length 5.08)
  355. (name "Q3" (effects (font (size 1.27 1.27))))
  356. (number "16" (effects (font (size 1.27 1.27))))
  357. )
  358. (pin tri_state line (at 12.7 7.62 180) (length 5.08)
  359. (name "Q2" (effects (font (size 1.27 1.27))))
  360. (number "17" (effects (font (size 1.27 1.27))))
  361. )
  362. (pin tri_state line (at 12.7 10.16 180) (length 5.08)
  363. (name "Q1" (effects (font (size 1.27 1.27))))
  364. (number "18" (effects (font (size 1.27 1.27))))
  365. )
  366. (pin tri_state line (at 12.7 12.7 180) (length 5.08)
  367. (name "Q0" (effects (font (size 1.27 1.27))))
  368. (number "19" (effects (font (size 1.27 1.27))))
  369. )
  370. (pin input line (at -12.7 12.7 0) (length 5.08)
  371. (name "D0" (effects (font (size 1.27 1.27))))
  372. (number "2" (effects (font (size 1.27 1.27))))
  373. )
  374. (pin power_in line (at 0 20.32 270) (length 5.08)
  375. (name "VCC" (effects (font (size 1.27 1.27))))
  376. (number "20" (effects (font (size 1.27 1.27))))
  377. )
  378. (pin input line (at -12.7 10.16 0) (length 5.08)
  379. (name "D1" (effects (font (size 1.27 1.27))))
  380. (number "3" (effects (font (size 1.27 1.27))))
  381. )
  382. (pin input line (at -12.7 7.62 0) (length 5.08)
  383. (name "D2" (effects (font (size 1.27 1.27))))
  384. (number "4" (effects (font (size 1.27 1.27))))
  385. )
  386. (pin input line (at -12.7 5.08 0) (length 5.08)
  387. (name "D3" (effects (font (size 1.27 1.27))))
  388. (number "5" (effects (font (size 1.27 1.27))))
  389. )
  390. (pin input line (at -12.7 2.54 0) (length 5.08)
  391. (name "D4" (effects (font (size 1.27 1.27))))
  392. (number "6" (effects (font (size 1.27 1.27))))
  393. )
  394. (pin input line (at -12.7 0 0) (length 5.08)
  395. (name "D5" (effects (font (size 1.27 1.27))))
  396. (number "7" (effects (font (size 1.27 1.27))))
  397. )
  398. (pin input line (at -12.7 -2.54 0) (length 5.08)
  399. (name "D6" (effects (font (size 1.27 1.27))))
  400. (number "8" (effects (font (size 1.27 1.27))))
  401. )
  402. (pin input line (at -12.7 -5.08 0) (length 5.08)
  403. (name "D7" (effects (font (size 1.27 1.27))))
  404. (number "9" (effects (font (size 1.27 1.27))))
  405. )
  406. )
  407. (symbol "74LS573_1_1"
  408. (rectangle (start -7.62 15.24) (end 7.62 -15.24)
  409. (stroke (width 0.254) (type default) (color 0 0 0 0))
  410. (fill (type background))
  411. )
  412. )
  413. )
  414. (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
  415. (property "Reference" "R" (id 0) (at 0.762 0.508 0)
  416. (effects (font (size 1.27 1.27)) (justify left))
  417. )
  418. (property "Value" "R_Small" (id 1) (at 0.762 -1.016 0)
  419. (effects (font (size 1.27 1.27)) (justify left))
  420. )
  421. (property "Footprint" "" (id 2) (at 0 0 0)
  422. (effects (font (size 1.27 1.27)) hide)
  423. )
  424. (property "Datasheet" "~" (id 3) (at 0 0 0)
  425. (effects (font (size 1.27 1.27)) hide)
  426. )
  427. (property "ki_keywords" "R resistor" (id 4) (at 0 0 0)
  428. (effects (font (size 1.27 1.27)) hide)
  429. )
  430. (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
  431. (effects (font (size 1.27 1.27)) hide)
  432. )
  433. (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
  434. (effects (font (size 1.27 1.27)) hide)
  435. )
  436. (symbol "R_Small_0_1"
  437. (rectangle (start -0.762 1.778) (end 0.762 -1.778)
  438. (stroke (width 0.2032) (type default) (color 0 0 0 0))
  439. (fill (type none))
  440. )
  441. )
  442. (symbol "R_Small_1_1"
  443. (pin passive line (at 0 2.54 270) (length 0.762)
  444. (name "~" (effects (font (size 1.27 1.27))))
  445. (number "1" (effects (font (size 1.27 1.27))))
  446. )
  447. (pin passive line (at 0 -2.54 90) (length 0.762)
  448. (name "~" (effects (font (size 1.27 1.27))))
  449. (number "2" (effects (font (size 1.27 1.27))))
  450. )
  451. )
  452. )
  453. (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  454. (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
  455. (effects (font (size 1.27 1.27)) hide)
  456. )
  457. (property "Value" "+5V" (id 1) (at 0 3.556 0)
  458. (effects (font (size 1.27 1.27)))
  459. )
  460. (property "Footprint" "" (id 2) (at 0 0 0)
  461. (effects (font (size 1.27 1.27)) hide)
  462. )
  463. (property "Datasheet" "" (id 3) (at 0 0 0)
  464. (effects (font (size 1.27 1.27)) hide)
  465. )
  466. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  467. (effects (font (size 1.27 1.27)) hide)
  468. )
  469. (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
  470. (effects (font (size 1.27 1.27)) hide)
  471. )
  472. (symbol "+5V_0_1"
  473. (polyline
  474. (pts
  475. (xy -0.762 1.27)
  476. (xy 0 2.54)
  477. )
  478. (stroke (width 0) (type default) (color 0 0 0 0))
  479. (fill (type none))
  480. )
  481. (polyline
  482. (pts
  483. (xy 0 0)
  484. (xy 0 2.54)
  485. )
  486. (stroke (width 0) (type default) (color 0 0 0 0))
  487. (fill (type none))
  488. )
  489. (polyline
  490. (pts
  491. (xy 0 2.54)
  492. (xy 0.762 1.27)
  493. )
  494. (stroke (width 0) (type default) (color 0 0 0 0))
  495. (fill (type none))
  496. )
  497. )
  498. (symbol "+5V_1_1"
  499. (pin power_in line (at 0 0 90) (length 0) hide
  500. (name "+5V" (effects (font (size 1.27 1.27))))
  501. (number "1" (effects (font (size 1.27 1.27))))
  502. )
  503. )
  504. )
  505. (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
  506. (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
  507. (effects (font (size 1.27 1.27)) hide)
  508. )
  509. (property "Value" "GND" (id 1) (at 0 -3.81 0)
  510. (effects (font (size 1.27 1.27)))
  511. )
  512. (property "Footprint" "" (id 2) (at 0 0 0)
  513. (effects (font (size 1.27 1.27)) hide)
  514. )
  515. (property "Datasheet" "" (id 3) (at 0 0 0)
  516. (effects (font (size 1.27 1.27)) hide)
  517. )
  518. (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
  519. (effects (font (size 1.27 1.27)) hide)
  520. )
  521. (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
  522. (effects (font (size 1.27 1.27)) hide)
  523. )
  524. (symbol "GND_0_1"
  525. (polyline
  526. (pts
  527. (xy 0 0)
  528. (xy 0 -1.27)
  529. (xy 1.27 -1.27)
  530. (xy 0 -2.54)
  531. (xy -1.27 -1.27)
  532. (xy 0 -1.27)
  533. )
  534. (stroke (width 0) (type default) (color 0 0 0 0))
  535. (fill (type none))
  536. )
  537. )
  538. (symbol "GND_1_1"
  539. (pin power_in line (at 0 0 270) (length 0) hide
  540. (name "GND" (effects (font (size 1.27 1.27))))
  541. (number "1" (effects (font (size 1.27 1.27))))
  542. )
  543. )
  544. )
  545. )
  546. (junction (at 229.87 179.07) (diameter 0) (color 0 0 0 0)
  547. (uuid 00eb91f4-a33c-48d8-9bb2-da7675f46533)
  548. )
  549. (junction (at 118.11 87.63) (diameter 0) (color 0 0 0 0)
  550. (uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)
  551. )
  552. (junction (at 130.81 220.98) (diameter 0) (color 0 0 0 0)
  553. (uuid 076046ab-4b56-4060-b8d9-0d80806d0277)
  554. )
  555. (junction (at 165.1 43.18) (diameter 0) (color 0 0 0 0)
  556. (uuid 088f77ba-fca9-42b3-876e-a6937267f957)
  557. )
  558. (junction (at 229.87 194.31) (diameter 0) (color 0 0 0 0)
  559. (uuid 0aff8a90-7cfc-41d2-bc92-2be70bfeef89)
  560. )
  561. (junction (at 203.2 142.24) (diameter 0) (color 0 0 0 0)
  562. (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
  563. )
  564. (junction (at 229.87 181.61) (diameter 0) (color 0 0 0 0)
  565. (uuid 0d4db4a5-bd6a-4115-8f11-161b174e392d)
  566. )
  567. (junction (at 175.26 33.02) (diameter 0) (color 0 0 0 0)
  568. (uuid 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)
  569. )
  570. (junction (at 110.49 95.25) (diameter 0) (color 0 0 0 0)
  571. (uuid 1199146e-a60b-416a-b503-e77d6d2892f9)
  572. )
  573. (junction (at 123.19 82.55) (diameter 0) (color 0 0 0 0)
  574. (uuid 143ed874-a01f-4ced-ba4e-bbb66ddd1f70)
  575. )
  576. (junction (at 128.27 226.06) (diameter 0) (color 0 0 0 0)
  577. (uuid 1fbb0219-551e-409b-a61b-76e8cebdfb9d)
  578. )
  579. (junction (at 172.72 35.56) (diameter 0) (color 0 0 0 0)
  580. (uuid 224768bc-6009-43ba-aa4a-70cbaa15b5a3)
  581. )
  582. (junction (at 167.64 40.64) (diameter 0) (color 0 0 0 0)
  583. (uuid 26801cfb-b53b-4a6a-a2f4-5f4986565765)
  584. )
  585. (junction (at 162.56 265.43) (diameter 0) (color 0 0 0 0)
  586. (uuid 28981883-42e9-4254-bc1a-ff3d66275ca1)
  587. )
  588. (junction (at 199.39 149.86) (diameter 0) (color 0 0 0 0)
  589. (uuid 399fc36a-ed5d-44b5-82f7-c6f83d9acc14)
  590. )
  591. (junction (at 142.24 157.48) (diameter 0) (color 0 0 0 0)
  592. (uuid 3e915099-a18e-49f4-89bb-abe64c2dade5)
  593. )
  594. (junction (at 162.56 262.89) (diameter 0) (color 0 0 0 0)
  595. (uuid 3ff83ea8-f293-45de-a6b9-ee0e17ba7834)
  596. )
  597. (junction (at 120.65 85.09) (diameter 0) (color 0 0 0 0)
  598. (uuid 411d4270-c66c-4318-b7fb-1470d34862b8)
  599. )
  600. (junction (at 162.56 267.97) (diameter 0) (color 0 0 0 0)
  601. (uuid 42c4f915-14eb-47f1-bb08-9ab24613b3ec)
  602. )
  603. (junction (at 132.08 218.44) (diameter 0) (color 0 0 0 0)
  604. (uuid 45884597-7014-4461-83ee-9975c42b9a53)
  605. )
  606. (junction (at 115.57 90.17) (diameter 0) (color 0 0 0 0)
  607. (uuid 4ba06b66-7669-4c70-b585-f5d4c9c33527)
  608. )
  609. (junction (at 54.61 157.48) (diameter 0) (color 0 0 0 0)
  610. (uuid 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
  611. )
  612. (junction (at 139.7 233.68) (diameter 0) (color 0 0 0 0)
  613. (uuid 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7)
  614. )
  615. (junction (at 205.74 53.34) (diameter 0) (color 0 0 0 0)
  616. (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
  617. )
  618. (junction (at 204.47 55.88) (diameter 0) (color 0 0 0 0)
  619. (uuid 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75)
  620. )
  621. (junction (at 200.66 147.32) (diameter 0) (color 0 0 0 0)
  622. (uuid 6e435cd4-da2b-4602-a0aa-5dd988834dff)
  623. )
  624. (junction (at 229.87 196.85) (diameter 0) (color 0 0 0 0)
  625. (uuid 80db69a7-7b68-4cda-9b89-423c3b654174)
  626. )
  627. (junction (at 229.87 191.77) (diameter 0) (color 0 0 0 0)
  628. (uuid 87670559-63b6-40e3-80f6-b6f503e7129c)
  629. )
  630. (junction (at 170.18 38.1) (diameter 0) (color 0 0 0 0)
  631. (uuid 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe)
  632. )
  633. (junction (at 113.03 92.71) (diameter 0) (color 0 0 0 0)
  634. (uuid 9186fd02-f30d-4e17-aa38-378ab73e3908)
  635. )
  636. (junction (at 107.95 97.79) (diameter 0) (color 0 0 0 0)
  637. (uuid 98b00c9d-9188-4bce-aa70-92d12dd9cf82)
  638. )
  639. (junction (at 135.89 210.82) (diameter 0) (color 0 0 0 0)
  640. (uuid 9aedbb9e-8340-4899-b813-05b23382a36b)
  641. )
  642. (junction (at 125.73 80.01) (diameter 0) (color 0 0 0 0)
  643. (uuid 9bac9ad3-a7b9-47f0-87c7-d8630653df68)
  644. )
  645. (junction (at 229.87 186.69) (diameter 0) (color 0 0 0 0)
  646. (uuid 9d22b822-8717-4f58-baaf-b4d0466ac12b)
  647. )
  648. (junction (at 201.93 144.78) (diameter 0) (color 0 0 0 0)
  649. (uuid aa79024d-ca7e-4c24-b127-7df08bbd0c75)
  650. )
  651. (junction (at 229.87 189.23) (diameter 0) (color 0 0 0 0)
  652. (uuid b1f6cd55-c3c3-4cc6-9f40-46ce7c653860)
  653. )
  654. (junction (at 162.56 255.27) (diameter 0) (color 0 0 0 0)
  655. (uuid b24b862d-e410-4bc0-94f6-7cd7588479af)
  656. )
  657. (junction (at 177.8 30.48) (diameter 0) (color 0 0 0 0)
  658. (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
  659. )
  660. (junction (at 204.47 139.7) (diameter 0) (color 0 0 0 0)
  661. (uuid bb4b1afc-c46e-451d-8dad-36b7dec82f26)
  662. )
  663. (junction (at 162.56 260.35) (diameter 0) (color 0 0 0 0)
  664. (uuid c5374da3-612c-41d0-bf8a-e81bf402f0ae)
  665. )
  666. (junction (at 205.74 137.16) (diameter 0) (color 0 0 0 0)
  667. (uuid cada57e2-1fa7-4b9d-a2a0-2218773d5c50)
  668. )
  669. (junction (at 162.56 257.81) (diameter 0) (color 0 0 0 0)
  670. (uuid d09607ee-56cc-4a7d-a86c-3e842722bcb7)
  671. )
  672. (junction (at 134.62 213.36) (diameter 0) (color 0 0 0 0)
  673. (uuid d0a0deb1-4f0f-4ede-b730-2c6d67cb9618)
  674. )
  675. (junction (at 160.02 48.26) (diameter 0) (color 0 0 0 0)
  676. (uuid d88958ac-68cd-4955-a63f-0eaa329dec86)
  677. )
  678. (junction (at 162.56 252.73) (diameter 0) (color 0 0 0 0)
  679. (uuid e0b84752-d599-428c-a4b1-1a4b6337cfda)
  680. )
  681. (junction (at 207.01 134.62) (diameter 0) (color 0 0 0 0)
  682. (uuid e0f06b5c-de63-4833-a591-ca9e19217a35)
  683. )
  684. (junction (at 129.54 223.52) (diameter 0) (color 0 0 0 0)
  685. (uuid e17e6c0e-7e5b-43f0-ad48-0a2760b45b04)
  686. )
  687. (junction (at 229.87 184.15) (diameter 0) (color 0 0 0 0)
  688. (uuid e204b5b0-3c27-4b4b-bc3e-2bec7e87c04a)
  689. )
  690. (junction (at 137.16 208.28) (diameter 0) (color 0 0 0 0)
  691. (uuid f1a9fb80-4cc4-410f-9616-e19c969dcab5)
  692. )
  693. (junction (at 198.12 152.4) (diameter 0) (color 0 0 0 0)
  694. (uuid f9c81c26-f253-4227-a69f-53e64841cfbe)
  695. )
  696. (junction (at 133.35 215.9) (diameter 0) (color 0 0 0 0)
  697. (uuid fb30f9bb-6a0b-4d8a-82b0-266eab794bc6)
  698. )
  699. (junction (at 162.56 45.72) (diameter 0) (color 0 0 0 0)
  700. (uuid fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00)
  701. )
  702. (wire (pts (xy 118.11 87.63) (xy 40.64 87.63))
  703. (stroke (width 0) (type default) (color 0 0 0 0))
  704. (uuid 009b5465-0a65-4237-93e7-eb65321eeb18)
  705. )
  706. (wire (pts (xy 162.56 45.72) (xy 40.64 45.72))
  707. (stroke (width 0) (type default) (color 0 0 0 0))
  708. (uuid 00e38d63-5436-49db-81f5-697421f168fc)
  709. )
  710. (wire (pts (xy 224.79 196.85) (xy 229.87 196.85))
  711. (stroke (width 0) (type default) (color 0 0 0 0))
  712. (uuid 0115fa65-be2b-4a6c-95b6-66e93cffa536)
  713. )
  714. (wire (pts (xy 203.2 142.24) (xy 212.09 142.24))
  715. (stroke (width 0) (type default) (color 0 0 0 0))
  716. (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
  717. )
  718. (wire (pts (xy 157.48 267.97) (xy 162.56 267.97))
  719. (stroke (width 0) (type default) (color 0 0 0 0))
  720. (uuid 0330a726-ba05-487f-9b7d-67f228d0f878)
  721. )
  722. (wire (pts (xy 177.8 30.48) (xy 177.8 134.62))
  723. (stroke (width 0) (type default) (color 0 0 0 0))
  724. (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
  725. )
  726. (wire (pts (xy 120.65 85.09) (xy 212.09 85.09))
  727. (stroke (width 0) (type default) (color 0 0 0 0))
  728. (uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
  729. )
  730. (wire (pts (xy 40.64 43.18) (xy 165.1 43.18))
  731. (stroke (width 0) (type default) (color 0 0 0 0))
  732. (uuid 065b9982-55f2-4822-977e-07e8a06e7b35)
  733. )
  734. (wire (pts (xy 224.79 63.5) (xy 224.79 64.77))
  735. (stroke (width 0) (type default) (color 0 0 0 0))
  736. (uuid 097edb1b-8998-4e70-b670-bba125982348)
  737. )
  738. (wire (pts (xy 237.49 40.64) (xy 384.81 40.64))
  739. (stroke (width 0) (type default) (color 0 0 0 0))
  740. (uuid 099096e4-8c2a-4d84-a16f-06b4b6330e7a)
  741. )
  742. (wire (pts (xy 207.01 179.07) (xy 219.71 179.07))
  743. (stroke (width 0) (type default) (color 0 0 0 0))
  744. (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac)
  745. )
  746. (wire (pts (xy 237.49 152.4) (xy 384.81 152.4))
  747. (stroke (width 0) (type default) (color 0 0 0 0))
  748. (uuid 0ce8d3ab-2662-4158-8a2a-18b782908fc5)
  749. )
  750. (wire (pts (xy 157.48 265.43) (xy 162.56 265.43))
  751. (stroke (width 0) (type default) (color 0 0 0 0))
  752. (uuid 0dfd3943-b97a-4cfc-92d6-50b1bd446cd5)
  753. )
  754. (wire (pts (xy 237.49 147.32) (xy 384.81 147.32))
  755. (stroke (width 0) (type default) (color 0 0 0 0))
  756. (uuid 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459)
  757. )
  758. (wire (pts (xy 212.09 80.01) (xy 125.73 80.01))
  759. (stroke (width 0) (type default) (color 0 0 0 0))
  760. (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354)
  761. )
  762. (wire (pts (xy 54.61 143.51) (xy 54.61 146.05))
  763. (stroke (width 0) (type default) (color 0 0 0 0))
  764. (uuid 0fd35a3e-b394-4aae-875a-fac843f9cbb7)
  765. )
  766. (wire (pts (xy 207.01 134.62) (xy 207.01 179.07))
  767. (stroke (width 0) (type default) (color 0 0 0 0))
  768. (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9)
  769. )
  770. (wire (pts (xy 130.81 220.98) (xy 144.78 220.98))
  771. (stroke (width 0) (type default) (color 0 0 0 0))
  772. (uuid 1171ce37-6ad7-4662-bb68-5592c945ebf3)
  773. )
  774. (wire (pts (xy 162.56 149.86) (xy 162.56 45.72))
  775. (stroke (width 0) (type default) (color 0 0 0 0))
  776. (uuid 155b0b7c-70b4-4a26-a550-bac13cab0aa4)
  777. )
  778. (wire (pts (xy 134.62 257.81) (xy 152.4 257.81))
  779. (stroke (width 0) (type default) (color 0 0 0 0))
  780. (uuid 16121028-bdf5-49c0-aae7-e28fe5bfa771)
  781. )
  782. (wire (pts (xy 205.74 53.34) (xy 40.64 53.34))
  783. (stroke (width 0) (type default) (color 0 0 0 0))
  784. (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
  785. )
  786. (wire (pts (xy 130.81 220.98) (xy 130.81 265.43))
  787. (stroke (width 0) (type default) (color 0 0 0 0))
  788. (uuid 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)
  789. )
  790. (wire (pts (xy 175.26 33.02) (xy 212.09 33.02))
  791. (stroke (width 0) (type default) (color 0 0 0 0))
  792. (uuid 1c68b844-c861-46b7-b734-0242168a4220)
  793. )
  794. (wire (pts (xy 237.49 82.55) (xy 384.81 82.55))
  795. (stroke (width 0) (type default) (color 0 0 0 0))
  796. (uuid 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3)
  797. )
  798. (wire (pts (xy 199.39 149.86) (xy 162.56 149.86))
  799. (stroke (width 0) (type default) (color 0 0 0 0))
  800. (uuid 1fa508ef-df83-4c99-846b-9acf535b3ad9)
  801. )
  802. (wire (pts (xy 170.18 226.06) (xy 384.81 226.06))
  803. (stroke (width 0) (type default) (color 0 0 0 0))
  804. (uuid 20cca02e-4c4d-4961-b6b4-b40a1731b220)
  805. )
  806. (wire (pts (xy 120.65 213.36) (xy 134.62 213.36))
  807. (stroke (width 0) (type default) (color 0 0 0 0))
  808. (uuid 221bef83-3ea7-4d3f-adeb-53a8a07c6273)
  809. )
  810. (wire (pts (xy 170.18 215.9) (xy 384.81 215.9))
  811. (stroke (width 0) (type default) (color 0 0 0 0))
  812. (uuid 240c10af-51b5-420e-a6f4-a2c8f5db1db5)
  813. )
  814. (wire (pts (xy 132.08 262.89) (xy 152.4 262.89))
  815. (stroke (width 0) (type default) (color 0 0 0 0))
  816. (uuid 2454fd1b-3484-4838-8b7e-d26357238fe1)
  817. )
  818. (wire (pts (xy 224.79 191.77) (xy 229.87 191.77))
  819. (stroke (width 0) (type default) (color 0 0 0 0))
  820. (uuid 24f3eb99-8d72-4522-a290-2f73b81ef885)
  821. )
  822. (wire (pts (xy 212.09 35.56) (xy 172.72 35.56))
  823. (stroke (width 0) (type default) (color 0 0 0 0))
  824. (uuid 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf)
  825. )
  826. (wire (pts (xy 170.18 208.28) (xy 384.81 208.28))
  827. (stroke (width 0) (type default) (color 0 0 0 0))
  828. (uuid 262f1ea9-0133-4b43-be36-456207ea857c)
  829. )
  830. (wire (pts (xy 125.73 80.01) (xy 40.64 80.01))
  831. (stroke (width 0) (type default) (color 0 0 0 0))
  832. (uuid 2891767f-251c-48c4-91c0-deb1b368f45c)
  833. )
  834. (wire (pts (xy 237.49 137.16) (xy 384.81 137.16))
  835. (stroke (width 0) (type default) (color 0 0 0 0))
  836. (uuid 29e058a7-50a3-43e5-81c3-bfee53da08be)
  837. )
  838. (wire (pts (xy 229.87 196.85) (xy 229.87 199.39))
  839. (stroke (width 0) (type default) (color 0 0 0 0))
  840. (uuid 2b58571f-8932-4d7b-9c29-9eb1b3efe023)
  841. )
  842. (wire (pts (xy 384.81 213.36) (xy 170.18 213.36))
  843. (stroke (width 0) (type default) (color 0 0 0 0))
  844. (uuid 2d697cf0-e02e-4ed1-a048-a704dab0ee43)
  845. )
  846. (wire (pts (xy 162.56 252.73) (xy 162.56 255.27))
  847. (stroke (width 0) (type default) (color 0 0 0 0))
  848. (uuid 2f24573b-cfda-4189-98a3-3aecedd80bc2)
  849. )
  850. (wire (pts (xy 142.24 157.48) (xy 212.09 157.48))
  851. (stroke (width 0) (type default) (color 0 0 0 0))
  852. (uuid 30317bf0-88bb-49e7-bf8b-9f3883982225)
  853. )
  854. (wire (pts (xy 157.48 270.51) (xy 162.56 270.51))
  855. (stroke (width 0) (type default) (color 0 0 0 0))
  856. (uuid 30ea1829-e92e-47a1-a92c-b1494ab44936)
  857. )
  858. (wire (pts (xy 54.61 157.48) (xy 40.64 157.48))
  859. (stroke (width 0) (type default) (color 0 0 0 0))
  860. (uuid 3326423d-8df7-4a7e-a354-349430b8fbd7)
  861. )
  862. (wire (pts (xy 237.49 45.72) (xy 384.81 45.72))
  863. (stroke (width 0) (type default) (color 0 0 0 0))
  864. (uuid 34a74736-156e-4bf3-9200-cd137cfa59da)
  865. )
  866. (wire (pts (xy 201.93 144.78) (xy 212.09 144.78))
  867. (stroke (width 0) (type default) (color 0 0 0 0))
  868. (uuid 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d)
  869. )
  870. (wire (pts (xy 204.47 184.15) (xy 204.47 139.7))
  871. (stroke (width 0) (type default) (color 0 0 0 0))
  872. (uuid 34d03349-6d78-4165-a683-2d8b76f2bae8)
  873. )
  874. (wire (pts (xy 224.79 179.07) (xy 229.87 179.07))
  875. (stroke (width 0) (type default) (color 0 0 0 0))
  876. (uuid 37a66b57-6655-42ad-9906-28254663a195)
  877. )
  878. (wire (pts (xy 204.47 139.7) (xy 212.09 139.7))
  879. (stroke (width 0) (type default) (color 0 0 0 0))
  880. (uuid 37b6c6d6-3e12-4736-912a-ea6e2bf06721)
  881. )
  882. (wire (pts (xy 162.56 255.27) (xy 162.56 257.81))
  883. (stroke (width 0) (type default) (color 0 0 0 0))
  884. (uuid 37f7753e-35a2-4fdd-8bab-a9306eb82f09)
  885. )
  886. (wire (pts (xy 384.81 144.78) (xy 237.49 144.78))
  887. (stroke (width 0) (type default) (color 0 0 0 0))
  888. (uuid 382ca670-6ae8-4de6-90f9-f241d1337171)
  889. )
  890. (wire (pts (xy 198.12 152.4) (xy 198.12 196.85))
  891. (stroke (width 0) (type default) (color 0 0 0 0))
  892. (uuid 38a501e2-0ee8-439d-bd02-e9e90e7503e9)
  893. )
  894. (wire (pts (xy 229.87 194.31) (xy 229.87 196.85))
  895. (stroke (width 0) (type default) (color 0 0 0 0))
  896. (uuid 39c4afb0-ddc0-47d7-a554-567af157fca5)
  897. )
  898. (wire (pts (xy 237.49 90.17) (xy 384.81 90.17))
  899. (stroke (width 0) (type default) (color 0 0 0 0))
  900. (uuid 3a52f112-cb97-43db-aaeb-20afe27664d7)
  901. )
  902. (wire (pts (xy 157.48 260.35) (xy 162.56 260.35))
  903. (stroke (width 0) (type default) (color 0 0 0 0))
  904. (uuid 3a5ffdbb-3922-46ed-9e3e-5c7df3a32691)
  905. )
  906. (wire (pts (xy 229.87 189.23) (xy 229.87 186.69))
  907. (stroke (width 0) (type default) (color 0 0 0 0))
  908. (uuid 3de3f6e6-c4a8-4f79-8f6a-715a526527b0)
  909. )
  910. (wire (pts (xy 137.16 208.28) (xy 137.16 252.73))
  911. (stroke (width 0) (type default) (color 0 0 0 0))
  912. (uuid 3f43d730-2a73-49fe-9672-32428e7f5b49)
  913. )
  914. (wire (pts (xy 237.49 134.62) (xy 384.81 134.62))
  915. (stroke (width 0) (type default) (color 0 0 0 0))
  916. (uuid 3fd54105-4b7e-4004-9801-76ec66108a22)
  917. )
  918. (wire (pts (xy 177.8 30.48) (xy 40.64 30.48))
  919. (stroke (width 0) (type default) (color 0 0 0 0))
  920. (uuid 4107d40a-e5df-4255-aacc-13f9928e090c)
  921. )
  922. (wire (pts (xy 237.49 87.63) (xy 384.81 87.63))
  923. (stroke (width 0) (type default) (color 0 0 0 0))
  924. (uuid 41acfe41-fac7-432a-a7a3-946566e2d504)
  925. )
  926. (wire (pts (xy 129.54 267.97) (xy 152.4 267.97))
  927. (stroke (width 0) (type default) (color 0 0 0 0))
  928. (uuid 43707e99-bdd7-4b02-9974-540ed6c2b0aa)
  929. )
  930. (wire (pts (xy 115.57 218.44) (xy 132.08 218.44))
  931. (stroke (width 0) (type default) (color 0 0 0 0))
  932. (uuid 477892a1-722e-4cda-bb6c-fcdb8ba5f93e)
  933. )
  934. (wire (pts (xy 110.49 95.25) (xy 110.49 223.52))
  935. (stroke (width 0) (type default) (color 0 0 0 0))
  936. (uuid 479331ff-c540-41f4-84e6-b48d65171e59)
  937. )
  938. (wire (pts (xy 224.79 194.31) (xy 229.87 194.31))
  939. (stroke (width 0) (type default) (color 0 0 0 0))
  940. (uuid 4a2f615e-e578-4d0b-a1e2-68756b4edcbf)
  941. )
  942. (wire (pts (xy 205.74 137.16) (xy 205.74 181.61))
  943. (stroke (width 0) (type default) (color 0 0 0 0))
  944. (uuid 4b03e854-02fe-44cc-bece-f8268b7cae54)
  945. )
  946. (wire (pts (xy 113.03 92.71) (xy 40.64 92.71))
  947. (stroke (width 0) (type default) (color 0 0 0 0))
  948. (uuid 4d586a18-26c5-441e-a9ff-8125ee516126)
  949. )
  950. (wire (pts (xy 135.89 210.82) (xy 144.78 210.82))
  951. (stroke (width 0) (type default) (color 0 0 0 0))
  952. (uuid 4db55cb8-197b-4402-871f-ce582b65664b)
  953. )
  954. (wire (pts (xy 212.09 55.88) (xy 204.47 55.88))
  955. (stroke (width 0) (type default) (color 0 0 0 0))
  956. (uuid 4e315e69-0417-463a-8b7f-469a08d1496e)
  957. )
  958. (wire (pts (xy 54.61 151.13) (xy 54.61 157.48))
  959. (stroke (width 0) (type default) (color 0 0 0 0))
  960. (uuid 4ec618ae-096f-4256-9328-005ee04f13d6)
  961. )
  962. (wire (pts (xy 199.39 149.86) (xy 212.09 149.86))
  963. (stroke (width 0) (type default) (color 0 0 0 0))
  964. (uuid 4f411f68-04bd-4175-a406-bcaa4cf6601e)
  965. )
  966. (wire (pts (xy 384.81 218.44) (xy 170.18 218.44))
  967. (stroke (width 0) (type default) (color 0 0 0 0))
  968. (uuid 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7)
  969. )
  970. (wire (pts (xy 229.87 191.77) (xy 229.87 189.23))
  971. (stroke (width 0) (type default) (color 0 0 0 0))
  972. (uuid 50ccc7a2-47e9-49b1-8506-cda92e80e3d2)
  973. )
  974. (wire (pts (xy 170.18 220.98) (xy 384.81 220.98))
  975. (stroke (width 0) (type default) (color 0 0 0 0))
  976. (uuid 592f25e6-a01b-47fd-8172-3da01117d00a)
  977. )
  978. (wire (pts (xy 167.64 252.73) (xy 167.64 250.19))
  979. (stroke (width 0) (type default) (color 0 0 0 0))
  980. (uuid 59ec3156-036e-4049-89db-91a9dd07095f)
  981. )
  982. (wire (pts (xy 384.81 139.7) (xy 237.49 139.7))
  983. (stroke (width 0) (type default) (color 0 0 0 0))
  984. (uuid 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)
  985. )
  986. (wire (pts (xy 115.57 90.17) (xy 212.09 90.17))
  987. (stroke (width 0) (type default) (color 0 0 0 0))
  988. (uuid 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)
  989. )
  990. (wire (pts (xy 40.64 48.26) (xy 160.02 48.26))
  991. (stroke (width 0) (type default) (color 0 0 0 0))
  992. (uuid 61fe4c73-be59-4519-98f1-a634322a841d)
  993. )
  994. (wire (pts (xy 237.49 33.02) (xy 384.81 33.02))
  995. (stroke (width 0) (type default) (color 0 0 0 0))
  996. (uuid 6284122b-79c3-4e04-925e-3d32cc3ec077)
  997. )
  998. (wire (pts (xy 128.27 270.51) (xy 152.4 270.51))
  999. (stroke (width 0) (type default) (color 0 0 0 0))
  1000. (uuid 6389315b-c273-44ff-966b-fc24ba190fb1)
  1001. )
  1002. (wire (pts (xy 237.49 85.09) (xy 384.81 85.09))
  1003. (stroke (width 0) (type default) (color 0 0 0 0))
  1004. (uuid 644ae9fc-3c8e-4089-866e-a12bf371c3e9)
  1005. )
  1006. (wire (pts (xy 224.79 21.59) (xy 224.79 22.86))
  1007. (stroke (width 0) (type default) (color 0 0 0 0))
  1008. (uuid 676efd2f-1c48-4786-9e4b-2444f1e8f6ff)
  1009. )
  1010. (wire (pts (xy 237.49 30.48) (xy 384.81 30.48))
  1011. (stroke (width 0) (type default) (color 0 0 0 0))
  1012. (uuid 67763d19-f622-4e1e-81e5-5b24da7c3f99)
  1013. )
  1014. (wire (pts (xy 160.02 152.4) (xy 198.12 152.4))
  1015. (stroke (width 0) (type default) (color 0 0 0 0))
  1016. (uuid 699feae1-8cdd-4d2b-947f-f24849c73cdb)
  1017. )
  1018. (wire (pts (xy 212.09 53.34) (xy 205.74 53.34))
  1019. (stroke (width 0) (type default) (color 0 0 0 0))
  1020. (uuid 6a2b20ae-096c-4d9f-92f8-2087c865914f)
  1021. )
  1022. (wire (pts (xy 134.62 213.36) (xy 144.78 213.36))
  1023. (stroke (width 0) (type default) (color 0 0 0 0))
  1024. (uuid 6bd115d6-07e0-45db-8f2e-3cbb0429104f)
  1025. )
  1026. (wire (pts (xy 40.64 33.02) (xy 175.26 33.02))
  1027. (stroke (width 0) (type default) (color 0 0 0 0))
  1028. (uuid 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2)
  1029. )
  1030. (wire (pts (xy 200.66 147.32) (xy 212.09 147.32))
  1031. (stroke (width 0) (type default) (color 0 0 0 0))
  1032. (uuid 6f675e5f-8fe6-4148-baf1-da97afc770f8)
  1033. )
  1034. (wire (pts (xy 165.1 43.18) (xy 165.1 147.32))
  1035. (stroke (width 0) (type default) (color 0 0 0 0))
  1036. (uuid 6f80f798-dc24-438f-a1eb-4ee2936267c8)
  1037. )
  1038. (wire (pts (xy 234.315 179.07) (xy 234.315 176.53))
  1039. (stroke (width 0) (type default) (color 0 0 0 0))
  1040. (uuid 6fd4442e-30b3-428b-9306-61418a63d311)
  1041. )
  1042. (wire (pts (xy 212.09 82.55) (xy 123.19 82.55))
  1043. (stroke (width 0) (type default) (color 0 0 0 0))
  1044. (uuid 700e8b73-5976-423f-a3f3-ab3d9f3e9760)
  1045. )
  1046. (wire (pts (xy 212.09 152.4) (xy 198.12 152.4))
  1047. (stroke (width 0) (type default) (color 0 0 0 0))
  1048. (uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
  1049. )
  1050. (wire (pts (xy 165.1 43.18) (xy 212.09 43.18))
  1051. (stroke (width 0) (type default) (color 0 0 0 0))
  1052. (uuid 71989e06-8659-4605-b2da-4f729cc41263)
  1053. )
  1054. (wire (pts (xy 123.19 210.82) (xy 135.89 210.82))
  1055. (stroke (width 0) (type default) (color 0 0 0 0))
  1056. (uuid 71f92193-19b0-44ed-bc7f-77535083d769)
  1057. )
  1058. (wire (pts (xy 205.74 137.16) (xy 212.09 137.16))
  1059. (stroke (width 0) (type default) (color 0 0 0 0))
  1060. (uuid 752417ee-7d0b-4ac8-a22c-26669881a2ab)
  1061. )
  1062. (wire (pts (xy 123.19 82.55) (xy 40.64 82.55))
  1063. (stroke (width 0) (type default) (color 0 0 0 0))
  1064. (uuid 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
  1065. )
  1066. (wire (pts (xy 212.09 87.63) (xy 118.11 87.63))
  1067. (stroke (width 0) (type default) (color 0 0 0 0))
  1068. (uuid 79e31048-072a-4a40-a625-26bb0b5f046b)
  1069. )
  1070. (wire (pts (xy 128.27 226.06) (xy 107.95 226.06))
  1071. (stroke (width 0) (type default) (color 0 0 0 0))
  1072. (uuid 7bfba61b-6752-4a45-9ee6-5984dcb15041)
  1073. )
  1074. (wire (pts (xy 162.56 270.51) (xy 162.56 267.97))
  1075. (stroke (width 0) (type default) (color 0 0 0 0))
  1076. (uuid 7c4cbf7c-5c57-4242-ad35-fc72eef28053)
  1077. )
  1078. (wire (pts (xy 237.49 95.25) (xy 384.81 95.25))
  1079. (stroke (width 0) (type default) (color 0 0 0 0))
  1080. (uuid 8087f566-a94d-4bbc-985b-e49ee7762296)
  1081. )
  1082. (wire (pts (xy 207.01 134.62) (xy 212.09 134.62))
  1083. (stroke (width 0) (type default) (color 0 0 0 0))
  1084. (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd)
  1085. )
  1086. (wire (pts (xy 162.56 267.97) (xy 162.56 265.43))
  1087. (stroke (width 0) (type default) (color 0 0 0 0))
  1088. (uuid 82b95e34-307c-43ff-943a-9521821b3777)
  1089. )
  1090. (wire (pts (xy 224.79 167.64) (xy 224.79 168.91))
  1091. (stroke (width 0) (type default) (color 0 0 0 0))
  1092. (uuid 82be7aae-5d06-4178-8c3e-98760c41b054)
  1093. )
  1094. (wire (pts (xy 229.87 184.15) (xy 224.79 184.15))
  1095. (stroke (width 0) (type default) (color 0 0 0 0))
  1096. (uuid 8648b2e9-699c-40a6-9002-1a4d743aa031)
  1097. )
  1098. (wire (pts (xy 203.2 142.24) (xy 203.2 186.69))
  1099. (stroke (width 0) (type default) (color 0 0 0 0))
  1100. (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
  1101. )
  1102. (wire (pts (xy 237.49 43.18) (xy 384.81 43.18))
  1103. (stroke (width 0) (type default) (color 0 0 0 0))
  1104. (uuid 87d7448e-e139-4209-ae0b-372f805267da)
  1105. )
  1106. (wire (pts (xy 172.72 139.7) (xy 204.47 139.7))
  1107. (stroke (width 0) (type default) (color 0 0 0 0))
  1108. (uuid 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8)
  1109. )
  1110. (wire (pts (xy 157.48 252.73) (xy 162.56 252.73))
  1111. (stroke (width 0) (type default) (color 0 0 0 0))
  1112. (uuid 8f7ce7bd-169b-4943-a677-1c34302b1b8f)
  1113. )
  1114. (wire (pts (xy 199.39 194.31) (xy 199.39 149.86))
  1115. (stroke (width 0) (type default) (color 0 0 0 0))
  1116. (uuid 8fc062a7-114d-48eb-a8f8-71128838f380)
  1117. )
  1118. (wire (pts (xy 120.65 213.36) (xy 120.65 85.09))
  1119. (stroke (width 0) (type default) (color 0 0 0 0))
  1120. (uuid 8fcec304-c6b1-4655-8326-beacd0476953)
  1121. )
  1122. (wire (pts (xy 162.56 262.89) (xy 162.56 260.35))
  1123. (stroke (width 0) (type default) (color 0 0 0 0))
  1124. (uuid 902b0079-65f6-416c-9fb9-0f55bd729a31)
  1125. )
  1126. (wire (pts (xy 135.89 210.82) (xy 135.89 255.27))
  1127. (stroke (width 0) (type default) (color 0 0 0 0))
  1128. (uuid 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
  1129. )
  1130. (wire (pts (xy 219.71 194.31) (xy 199.39 194.31))
  1131. (stroke (width 0) (type default) (color 0 0 0 0))
  1132. (uuid 917920ab-0c6e-4927-974d-ef342cdd4f63)
  1133. )
  1134. (wire (pts (xy 137.16 252.73) (xy 152.4 252.73))
  1135. (stroke (width 0) (type default) (color 0 0 0 0))
  1136. (uuid 9186dae5-6dc3-4744-9f90-e697559c6ac8)
  1137. )
  1138. (wire (pts (xy 54.61 157.48) (xy 59.69 157.48))
  1139. (stroke (width 0) (type default) (color 0 0 0 0))
  1140. (uuid 92035a88-6c95-4a61-bd8a-cb8dd9e5018a)
  1141. )
  1142. (wire (pts (xy 157.48 196.85) (xy 157.48 200.66))
  1143. (stroke (width 0) (type default) (color 0 0 0 0))
  1144. (uuid 935057d5-6882-4c15-9a35-54677912ba12)
  1145. )
  1146. (wire (pts (xy 157.48 241.3) (xy 157.48 242.57))
  1147. (stroke (width 0) (type default) (color 0 0 0 0))
  1148. (uuid 935f462d-8b1e-4005-9f1e-17f537ab1756)
  1149. )
  1150. (wire (pts (xy 157.48 262.89) (xy 162.56 262.89))
  1151. (stroke (width 0) (type default) (color 0 0 0 0))
  1152. (uuid 95fa7f6b-1896-4492-96c7-6a6507aa3edb)
  1153. )
  1154. (wire (pts (xy 204.47 55.88) (xy 204.47 105.41))
  1155. (stroke (width 0) (type default) (color 0 0 0 0))
  1156. (uuid 970e0f64-111f-41e3-9f5a-fb0d0f6fa101)
  1157. )
  1158. (wire (pts (xy 133.35 215.9) (xy 133.35 260.35))
  1159. (stroke (width 0) (type default) (color 0 0 0 0))
  1160. (uuid 97fe2a5c-4eee-4c7a-9c43-47749b396494)
  1161. )
  1162. (wire (pts (xy 237.49 97.79) (xy 384.81 97.79))
  1163. (stroke (width 0) (type default) (color 0 0 0 0))
  1164. (uuid 98c78427-acd5-4f90-9ad6-9f61c4809aec)
  1165. )
  1166. (wire (pts (xy 128.27 270.51) (xy 128.27 226.06))
  1167. (stroke (width 0) (type default) (color 0 0 0 0))
  1168. (uuid 99332785-d9f1-4363-9377-26ddc18e6d2c)
  1169. )
  1170. (wire (pts (xy 224.79 71.12) (xy 224.79 72.39))
  1171. (stroke (width 0) (type default) (color 0 0 0 0))
  1172. (uuid 994b6220-4755-4d84-91b3-6122ac1c2c5e)
  1173. )
  1174. (wire (pts (xy 110.49 95.25) (xy 212.09 95.25))
  1175. (stroke (width 0) (type default) (color 0 0 0 0))
  1176. (uuid 997c2f12-73ba-4c01-9ee0-42e37cbab790)
  1177. )
  1178. (wire (pts (xy 144.78 233.68) (xy 139.7 233.68))
  1179. (stroke (width 0) (type default) (color 0 0 0 0))
  1180. (uuid 99dfa524-0366-4808-b4e8-328fc38e8656)
  1181. )
  1182. (wire (pts (xy 200.66 147.32) (xy 200.66 191.77))
  1183. (stroke (width 0) (type default) (color 0 0 0 0))
  1184. (uuid 9a0b74a5-4879-4b51-8e8e-6d85a0107422)
  1185. )
  1186. (wire (pts (xy 224.79 186.69) (xy 229.87 186.69))
  1187. (stroke (width 0) (type default) (color 0 0 0 0))
  1188. (uuid 9ae8a1c4-2ba8-4c26-abd5-166e821d6fd0)
  1189. )
  1190. (wire (pts (xy 139.7 233.68) (xy 139.7 160.02))
  1191. (stroke (width 0) (type default) (color 0 0 0 0))
  1192. (uuid 9dcdc92b-2219-4a4a-8954-45f02cc3ab25)
  1193. )
  1194. (wire (pts (xy 172.72 139.7) (xy 172.72 35.56))
  1195. (stroke (width 0) (type default) (color 0 0 0 0))
  1196. (uuid 9f80220c-1612-4589-b9ca-a5579617bdb8)
  1197. )
  1198. (wire (pts (xy 237.49 38.1) (xy 384.81 38.1))
  1199. (stroke (width 0) (type default) (color 0 0 0 0))
  1200. (uuid a13ab237-8f8d-4e16-8c47-4440653b8534)
  1201. )
  1202. (wire (pts (xy 107.95 97.79) (xy 40.64 97.79))
  1203. (stroke (width 0) (type default) (color 0 0 0 0))
  1204. (uuid a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)
  1205. )
  1206. (wire (pts (xy 40.64 38.1) (xy 170.18 38.1))
  1207. (stroke (width 0) (type default) (color 0 0 0 0))
  1208. (uuid a24ddb4f-c217-42ca-b6cb-d12da84fb2b9)
  1209. )
  1210. (wire (pts (xy 205.74 102.87) (xy 205.74 53.34))
  1211. (stroke (width 0) (type default) (color 0 0 0 0))
  1212. (uuid a53767ed-bb28-4f90-abe0-e0ea734812a4)
  1213. )
  1214. (wire (pts (xy 212.09 40.64) (xy 167.64 40.64))
  1215. (stroke (width 0) (type default) (color 0 0 0 0))
  1216. (uuid a6ccc556-da88-4006-ae1a-cc35733efef3)
  1217. )
  1218. (wire (pts (xy 170.18 142.24) (xy 203.2 142.24))
  1219. (stroke (width 0) (type default) (color 0 0 0 0))
  1220. (uuid a7531a95-7ca1-4f34-955e-18120cec99e6)
  1221. )
  1222. (wire (pts (xy 113.03 220.98) (xy 130.81 220.98))
  1223. (stroke (width 0) (type default) (color 0 0 0 0))
  1224. (uuid aa130053-a451-4f12-97f7-3d4d891a5f83)
  1225. )
  1226. (wire (pts (xy 162.56 260.35) (xy 162.56 257.81))
  1227. (stroke (width 0) (type default) (color 0 0 0 0))
  1228. (uuid aaa8bc26-b956-4191-9ca2-768d317cca41)
  1229. )
  1230. (wire (pts (xy 162.56 257.81) (xy 157.48 257.81))
  1231. (stroke (width 0) (type default) (color 0 0 0 0))
  1232. (uuid aaeeaea2-680a-4ae2-bb95-84513fc1cd92)
  1233. )
  1234. (wire (pts (xy 229.87 186.69) (xy 229.87 184.15))
  1235. (stroke (width 0) (type default) (color 0 0 0 0))
  1236. (uuid ae5a8c9b-8dbf-496c-aa08-2c48383e1005)
  1237. )
  1238. (wire (pts (xy 132.08 218.44) (xy 132.08 262.89))
  1239. (stroke (width 0) (type default) (color 0 0 0 0))
  1240. (uuid ae77c3c8-1144-468e-ad5b-a0b4090735bd)
  1241. )
  1242. (wire (pts (xy 144.78 208.28) (xy 137.16 208.28))
  1243. (stroke (width 0) (type default) (color 0 0 0 0))
  1244. (uuid af347946-e3da-4427-87ab-77b747929f50)
  1245. )
  1246. (wire (pts (xy 229.87 181.61) (xy 224.79 181.61))
  1247. (stroke (width 0) (type default) (color 0 0 0 0))
  1248. (uuid afd32714-e1f4-49e1-a889-73ecb7962d1e)
  1249. )
  1250. (wire (pts (xy 144.78 226.06) (xy 128.27 226.06))
  1251. (stroke (width 0) (type default) (color 0 0 0 0))
  1252. (uuid afd38b10-2eca-4abe-aed1-a96fb07ffdbe)
  1253. )
  1254. (wire (pts (xy 130.81 265.43) (xy 152.4 265.43))
  1255. (stroke (width 0) (type default) (color 0 0 0 0))
  1256. (uuid b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)
  1257. )
  1258. (wire (pts (xy 384.81 149.86) (xy 237.49 149.86))
  1259. (stroke (width 0) (type default) (color 0 0 0 0))
  1260. (uuid b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)
  1261. )
  1262. (wire (pts (xy 40.64 95.25) (xy 110.49 95.25))
  1263. (stroke (width 0) (type default) (color 0 0 0 0))
  1264. (uuid b09666f9-12f1-4ee9-8877-2292c94258ca)
  1265. )
  1266. (wire (pts (xy 212.09 30.48) (xy 177.8 30.48))
  1267. (stroke (width 0) (type default) (color 0 0 0 0))
  1268. (uuid b1ddb058-f7b2-429c-9489-f4e2242ad7e5)
  1269. )
  1270. (wire (pts (xy 40.64 85.09) (xy 120.65 85.09))
  1271. (stroke (width 0) (type default) (color 0 0 0 0))
  1272. (uuid b4300db7-1220-431a-b7c3-2edbdf8fa6fc)
  1273. )
  1274. (wire (pts (xy 205.74 181.61) (xy 219.71 181.61))
  1275. (stroke (width 0) (type default) (color 0 0 0 0))
  1276. (uuid b5071759-a4d7-4769-be02-251f23cd4454)
  1277. )
  1278. (wire (pts (xy 115.57 218.44) (xy 115.57 90.17))
  1279. (stroke (width 0) (type default) (color 0 0 0 0))
  1280. (uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
  1281. )
  1282. (wire (pts (xy 204.47 105.41) (xy 212.09 105.41))
  1283. (stroke (width 0) (type default) (color 0 0 0 0))
  1284. (uuid b6135480-ace6-42b2-9c47-856ef57cded1)
  1285. )
  1286. (wire (pts (xy 160.02 48.26) (xy 212.09 48.26))
  1287. (stroke (width 0) (type default) (color 0 0 0 0))
  1288. (uuid b6cd701f-4223-4e72-a305-466869ccb250)
  1289. )
  1290. (wire (pts (xy 212.09 97.79) (xy 107.95 97.79))
  1291. (stroke (width 0) (type default) (color 0 0 0 0))
  1292. (uuid b873bc5d-a9af-4bd9-afcb-87ce4d417120)
  1293. )
  1294. (wire (pts (xy 118.11 215.9) (xy 133.35 215.9))
  1295. (stroke (width 0) (type default) (color 0 0 0 0))
  1296. (uuid bc0dbc57-3ae8-4ce5-a05c-2d6003bba475)
  1297. )
  1298. (wire (pts (xy 177.8 134.62) (xy 207.01 134.62))
  1299. (stroke (width 0) (type default) (color 0 0 0 0))
  1300. (uuid c04386e0-b49e-4fff-b380-675af13a62cb)
  1301. )
  1302. (wire (pts (xy 170.18 210.82) (xy 384.81 210.82))
  1303. (stroke (width 0) (type default) (color 0 0 0 0))
  1304. (uuid c09938fd-06b9-4771-9f63-2311626243b3)
  1305. )
  1306. (wire (pts (xy 198.12 196.85) (xy 219.71 196.85))
  1307. (stroke (width 0) (type default) (color 0 0 0 0))
  1308. (uuid c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f)
  1309. )
  1310. (wire (pts (xy 229.87 179.07) (xy 234.315 179.07))
  1311. (stroke (width 0) (type default) (color 0 0 0 0))
  1312. (uuid c2cf32ca-1613-4de3-9d10-7b09ea3fb068)
  1313. )
  1314. (wire (pts (xy 133.35 215.9) (xy 144.78 215.9))
  1315. (stroke (width 0) (type default) (color 0 0 0 0))
  1316. (uuid c3c499b1-9227-4e4b-9982-f9f1aa6203b9)
  1317. )
  1318. (wire (pts (xy 201.93 144.78) (xy 167.64 144.78))
  1319. (stroke (width 0) (type default) (color 0 0 0 0))
  1320. (uuid c49d23ab-146d-4089-864f-2d22b5b414b9)
  1321. )
  1322. (wire (pts (xy 132.08 218.44) (xy 144.78 218.44))
  1323. (stroke (width 0) (type default) (color 0 0 0 0))
  1324. (uuid c514e30c-e48e-4ca5-ab44-8b3afedef1f2)
  1325. )
  1326. (wire (pts (xy 40.64 90.17) (xy 115.57 90.17))
  1327. (stroke (width 0) (type default) (color 0 0 0 0))
  1328. (uuid c76d4423-ef1b-4a6f-8176-33d65f2877bb)
  1329. )
  1330. (wire (pts (xy 167.64 144.78) (xy 167.64 40.64))
  1331. (stroke (width 0) (type default) (color 0 0 0 0))
  1332. (uuid c7af8405-da2e-4a34-b9b8-518f342f8995)
  1333. )
  1334. (wire (pts (xy 139.7 233.68) (xy 40.64 233.68))
  1335. (stroke (width 0) (type default) (color 0 0 0 0))
  1336. (uuid c8b6b273-3d20-4a46-8069-f6d608563604)
  1337. )
  1338. (wire (pts (xy 118.11 87.63) (xy 118.11 215.9))
  1339. (stroke (width 0) (type default) (color 0 0 0 0))
  1340. (uuid c8b92953-cd23-44e6-85ce-083fb8c3f20f)
  1341. )
  1342. (wire (pts (xy 107.95 226.06) (xy 107.95 97.79))
  1343. (stroke (width 0) (type default) (color 0 0 0 0))
  1344. (uuid c8fd9dd3-06ad-4146-9239-0065013959ef)
  1345. )
  1346. (wire (pts (xy 237.49 35.56) (xy 384.81 35.56))
  1347. (stroke (width 0) (type default) (color 0 0 0 0))
  1348. (uuid ca5a4651-0d1d-441b-b17d-01518ef3b656)
  1349. )
  1350. (wire (pts (xy 384.81 223.52) (xy 170.18 223.52))
  1351. (stroke (width 0) (type default) (color 0 0 0 0))
  1352. (uuid cb614b23-9af3-4aec-bed8-c1374e001510)
  1353. )
  1354. (wire (pts (xy 110.49 223.52) (xy 129.54 223.52))
  1355. (stroke (width 0) (type default) (color 0 0 0 0))
  1356. (uuid cc15f583-a41b-43af-ba94-a75455506a96)
  1357. )
  1358. (wire (pts (xy 133.35 260.35) (xy 152.4 260.35))
  1359. (stroke (width 0) (type default) (color 0 0 0 0))
  1360. (uuid ce72ea62-9343-4a4f-81bf-8ac601f5d005)
  1361. )
  1362. (wire (pts (xy 237.49 48.26) (xy 384.81 48.26))
  1363. (stroke (width 0) (type default) (color 0 0 0 0))
  1364. (uuid d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc)
  1365. )
  1366. (wire (pts (xy 170.18 38.1) (xy 170.18 142.24))
  1367. (stroke (width 0) (type default) (color 0 0 0 0))
  1368. (uuid d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e)
  1369. )
  1370. (wire (pts (xy 175.26 137.16) (xy 205.74 137.16))
  1371. (stroke (width 0) (type default) (color 0 0 0 0))
  1372. (uuid d2d7bea6-0c22-495f-8666-323b30e03150)
  1373. )
  1374. (wire (pts (xy 162.56 252.73) (xy 167.64 252.73))
  1375. (stroke (width 0) (type default) (color 0 0 0 0))
  1376. (uuid d39d813e-3e64-490c-ba5c-a64bb5ad6bd0)
  1377. )
  1378. (wire (pts (xy 142.24 231.14) (xy 142.24 157.48))
  1379. (stroke (width 0) (type default) (color 0 0 0 0))
  1380. (uuid d3d57924-54a6-421d-a3a0-a044fc909e88)
  1381. )
  1382. (wire (pts (xy 129.54 223.52) (xy 129.54 267.97))
  1383. (stroke (width 0) (type default) (color 0 0 0 0))
  1384. (uuid d4c9471f-7503-4339-928c-d1abae1eede6)
  1385. )
  1386. (wire (pts (xy 201.93 189.23) (xy 219.71 189.23))
  1387. (stroke (width 0) (type default) (color 0 0 0 0))
  1388. (uuid d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)
  1389. )
  1390. (wire (pts (xy 162.56 265.43) (xy 162.56 262.89))
  1391. (stroke (width 0) (type default) (color 0 0 0 0))
  1392. (uuid d715f2e1-adcc-49f1-b032-b5e987206966)
  1393. )
  1394. (wire (pts (xy 162.56 255.27) (xy 157.48 255.27))
  1395. (stroke (width 0) (type default) (color 0 0 0 0))
  1396. (uuid d7982637-b1f3-4c96-9a46-62a8afd80a5d)
  1397. )
  1398. (wire (pts (xy 229.87 181.61) (xy 229.87 184.15))
  1399. (stroke (width 0) (type default) (color 0 0 0 0))
  1400. (uuid da05f600-e259-443c-bd06-dfbd299734f2)
  1401. )
  1402. (wire (pts (xy 201.93 189.23) (xy 201.93 144.78))
  1403. (stroke (width 0) (type default) (color 0 0 0 0))
  1404. (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
  1405. )
  1406. (wire (pts (xy 139.7 160.02) (xy 212.09 160.02))
  1407. (stroke (width 0) (type default) (color 0 0 0 0))
  1408. (uuid dae72997-44fc-4275-b36f-cd70bf46cfba)
  1409. )
  1410. (wire (pts (xy 212.09 45.72) (xy 162.56 45.72))
  1411. (stroke (width 0) (type default) (color 0 0 0 0))
  1412. (uuid dc2801a1-d539-4721-b31f-fe196b9f13df)
  1413. )
  1414. (wire (pts (xy 229.87 179.07) (xy 229.87 181.61))
  1415. (stroke (width 0) (type default) (color 0 0 0 0))
  1416. (uuid dd898049-a404-481e-8edb-8a5776f034e6)
  1417. )
  1418. (wire (pts (xy 224.79 199.39) (xy 229.87 199.39))
  1419. (stroke (width 0) (type default) (color 0 0 0 0))
  1420. (uuid de89bd5c-5406-4c7d-96a8-efa6f11366cf)
  1421. )
  1422. (wire (pts (xy 229.87 194.31) (xy 229.87 191.77))
  1423. (stroke (width 0) (type default) (color 0 0 0 0))
  1424. (uuid df556937-1ec6-413a-9466-0c3728362481)
  1425. )
  1426. (wire (pts (xy 224.79 189.23) (xy 229.87 189.23))
  1427. (stroke (width 0) (type default) (color 0 0 0 0))
  1428. (uuid dfd80f33-65bc-4168-ac25-1844be7a576b)
  1429. )
  1430. (wire (pts (xy 40.64 199.39) (xy 219.71 199.39))
  1431. (stroke (width 0) (type default) (color 0 0 0 0))
  1432. (uuid e091e263-c616-48ef-a460-465c70218987)
  1433. )
  1434. (wire (pts (xy 170.18 38.1) (xy 212.09 38.1))
  1435. (stroke (width 0) (type default) (color 0 0 0 0))
  1436. (uuid e1c30a32-820e-4b17-aec9-5cb8b76f0ccc)
  1437. )
  1438. (wire (pts (xy 203.2 186.69) (xy 219.71 186.69))
  1439. (stroke (width 0) (type default) (color 0 0 0 0))
  1440. (uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
  1441. )
  1442. (wire (pts (xy 204.47 55.88) (xy 40.64 55.88))
  1443. (stroke (width 0) (type default) (color 0 0 0 0))
  1444. (uuid e4aa537c-eb9d-4dbb-ac87-fae46af42391)
  1445. )
  1446. (wire (pts (xy 129.54 223.52) (xy 144.78 223.52))
  1447. (stroke (width 0) (type default) (color 0 0 0 0))
  1448. (uuid e4e20505-1208-4100-a4aa-676f50844c06)
  1449. )
  1450. (wire (pts (xy 160.02 48.26) (xy 160.02 152.4))
  1451. (stroke (width 0) (type default) (color 0 0 0 0))
  1452. (uuid e5864fe6-2a71-47f0-90ce-38c3f8901580)
  1453. )
  1454. (wire (pts (xy 224.79 125.73) (xy 224.79 127))
  1455. (stroke (width 0) (type default) (color 0 0 0 0))
  1456. (uuid e65b62be-e01b-4688-a999-1d1be370c4ae)
  1457. )
  1458. (wire (pts (xy 113.03 92.71) (xy 113.03 220.98))
  1459. (stroke (width 0) (type default) (color 0 0 0 0))
  1460. (uuid e7369115-d491-4ef3-be3d-f5298992c3e8)
  1461. )
  1462. (wire (pts (xy 175.26 33.02) (xy 175.26 137.16))
  1463. (stroke (width 0) (type default) (color 0 0 0 0))
  1464. (uuid e7bb7815-0d52-4bb8-b29a-8cf960bd2905)
  1465. )
  1466. (wire (pts (xy 125.73 208.28) (xy 125.73 80.01))
  1467. (stroke (width 0) (type default) (color 0 0 0 0))
  1468. (uuid e7e08b48-3d04-49da-8349-6de530a20c67)
  1469. )
  1470. (wire (pts (xy 134.62 213.36) (xy 134.62 257.81))
  1471. (stroke (width 0) (type default) (color 0 0 0 0))
  1472. (uuid e97b5984-9f0f-43a4-9b8a-838eef4cceb2)
  1473. )
  1474. (wire (pts (xy 74.93 157.48) (xy 142.24 157.48))
  1475. (stroke (width 0) (type default) (color 0 0 0 0))
  1476. (uuid eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4)
  1477. )
  1478. (wire (pts (xy 200.66 191.77) (xy 219.71 191.77))
  1479. (stroke (width 0) (type default) (color 0 0 0 0))
  1480. (uuid eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)
  1481. )
  1482. (wire (pts (xy 237.49 80.01) (xy 384.81 80.01))
  1483. (stroke (width 0) (type default) (color 0 0 0 0))
  1484. (uuid ee41cb8e-512d-41d2-81e1-3c50fff32aeb)
  1485. )
  1486. (wire (pts (xy 224.79 113.03) (xy 224.79 114.3))
  1487. (stroke (width 0) (type default) (color 0 0 0 0))
  1488. (uuid f40d350f-0d3e-4f8a-b004-d950f2f8f1ba)
  1489. )
  1490. (wire (pts (xy 237.49 92.71) (xy 384.81 92.71))
  1491. (stroke (width 0) (type default) (color 0 0 0 0))
  1492. (uuid f4eb0267-179f-46c9-b516-9bfb06bac1ba)
  1493. )
  1494. (wire (pts (xy 165.1 147.32) (xy 200.66 147.32))
  1495. (stroke (width 0) (type default) (color 0 0 0 0))
  1496. (uuid f66398f1-1ae7-4d4d-939f-958c174c6bce)
  1497. )
  1498. (wire (pts (xy 144.78 231.14) (xy 142.24 231.14))
  1499. (stroke (width 0) (type default) (color 0 0 0 0))
  1500. (uuid f73b5500-6337-4860-a114-6e307f65ec9f)
  1501. )
  1502. (wire (pts (xy 212.09 92.71) (xy 113.03 92.71))
  1503. (stroke (width 0) (type default) (color 0 0 0 0))
  1504. (uuid f7667b23-296e-4362-a7e3-949632c8954b)
  1505. )
  1506. (wire (pts (xy 167.64 40.64) (xy 40.64 40.64))
  1507. (stroke (width 0) (type default) (color 0 0 0 0))
  1508. (uuid f78e02cd-9600-4173-be8d-67e530b5d19f)
  1509. )
  1510. (wire (pts (xy 219.71 184.15) (xy 204.47 184.15))
  1511. (stroke (width 0) (type default) (color 0 0 0 0))
  1512. (uuid f8fc38ec-0b98-40bc-ae2f-e5cc29973bca)
  1513. )
  1514. (wire (pts (xy 212.09 102.87) (xy 205.74 102.87))
  1515. (stroke (width 0) (type default) (color 0 0 0 0))
  1516. (uuid f9403623-c00c-4b71-bc5c-d763ff009386)
  1517. )
  1518. (wire (pts (xy 135.89 255.27) (xy 152.4 255.27))
  1519. (stroke (width 0) (type default) (color 0 0 0 0))
  1520. (uuid fa918b6d-f6cf-4471-be3b-4ff713f55a2e)
  1521. )
  1522. (wire (pts (xy 123.19 82.55) (xy 123.19 210.82))
  1523. (stroke (width 0) (type default) (color 0 0 0 0))
  1524. (uuid fd3499d5-6fd2-49a4-bdb0-109cee899fde)
  1525. )
  1526. (wire (pts (xy 137.16 208.28) (xy 125.73 208.28))
  1527. (stroke (width 0) (type default) (color 0 0 0 0))
  1528. (uuid fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
  1529. )
  1530. (wire (pts (xy 237.49 142.24) (xy 384.81 142.24))
  1531. (stroke (width 0) (type default) (color 0 0 0 0))
  1532. (uuid feb26ecb-9193-46ea-a41b-d09305bf0a3e)
  1533. )
  1534. (wire (pts (xy 172.72 35.56) (xy 40.64 35.56))
  1535. (stroke (width 0) (type default) (color 0 0 0 0))
  1536. (uuid fef37e8b-0ff0-4da2-8a57-acaf19551d1a)
  1537. )
  1538. (text "DMA ADR/DATA\n" (at 41.91 29.21 0)
  1539. (effects (font (size 1.27 1.27)) (justify left bottom))
  1540. (uuid 3c5e5ea9-793d-46e3-86bc-5884c4490dc7)
  1541. )
  1542. (text "FROM DMA" (at 41.91 52.07 0)
  1543. (effects (font (size 1.27 1.27)) (justify left bottom))
  1544. (uuid 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)
  1545. )
  1546. (text "PULLUP XXXX" (at 41.91 198.12 0)
  1547. (effects (font (size 1.27 1.27)) (justify left bottom))
  1548. (uuid 98914cc3-56fe-40bb-820a-3d157225c145)
  1549. )
  1550. (text "FROM DMA" (at 41.91 156.21 0)
  1551. (effects (font (size 1.27 1.27)) (justify left bottom))
  1552. (uuid c088f712-1abe-4cac-9a8b-d564931395aa)
  1553. )
  1554. (text "CPU DATA" (at 373.38 29.21 0)
  1555. (effects (font (size 1.27 1.27)) (justify left bottom))
  1556. (uuid c7e7067c-5f5e-48d8-ab59-df26f9b35863)
  1557. )
  1558. (text "DMA ADR/DATA\n" (at 41.91 78.74 0)
  1559. (effects (font (size 1.27 1.27)) (justify left bottom))
  1560. (uuid ea6fde00-59dc-4a79-a647-7e38199fae0e)
  1561. )
  1562. (text "FROM DMA" (at 41.91 232.41 0)
  1563. (effects (font (size 1.27 1.27)) (justify left bottom))
  1564. (uuid f8f3a9fc-1e34-4573-a767-508104e8d242)
  1565. )
  1566. (global_label "D9" (shape input) (at 384.81 82.55 0) (fields_autoplaced)
  1567. (effects (font (size 1.27 1.27)) (justify left))
  1568. (uuid 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)
  1569. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1570. (effects (font (size 1.27 1.27)) hide)
  1571. )
  1572. )
  1573. (global_label "DMADIR" (shape input) (at 40.64 53.34 180) (fields_autoplaced)
  1574. (effects (font (size 1.27 1.27)) (justify right))
  1575. (uuid 071522c0-d0ed-49b9-906e-6295f67fb0dc)
  1576. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1577. (effects (font (size 1.27 1.27)) hide)
  1578. )
  1579. )
  1580. (global_label "D12" (shape input) (at 384.81 90.17 0) (fields_autoplaced)
  1581. (effects (font (size 1.27 1.27)) (justify left))
  1582. (uuid 0c3dceba-7c95-4b3d-b590-0eb581444beb)
  1583. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1584. (effects (font (size 1.27 1.27)) hide)
  1585. )
  1586. )
  1587. (global_label "A11D3" (shape input) (at 40.64 38.1 180) (fields_autoplaced)
  1588. (effects (font (size 1.27 1.27)) (justify right))
  1589. (uuid 109caac1-5036-4f23-9a66-f569d871501b)
  1590. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1591. (effects (font (size 1.27 1.27)) hide)
  1592. )
  1593. )
  1594. (global_label "A21" (shape input) (at 384.81 220.98 0) (fields_autoplaced)
  1595. (effects (font (size 1.27 1.27)) (justify left))
  1596. (uuid 13c0ff76-ed71-4cd9-abb0-92c376825d5d)
  1597. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1598. (effects (font (size 1.27 1.27)) hide)
  1599. )
  1600. )
  1601. (global_label "A13" (shape input) (at 384.81 147.32 0) (fields_autoplaced)
  1602. (effects (font (size 1.27 1.27)) (justify left))
  1603. (uuid 1e8701fc-ad24-40ea-846a-e3db538d6077)
  1604. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1605. (effects (font (size 1.27 1.27)) hide)
  1606. )
  1607. )
  1608. (global_label "A19" (shape input) (at 384.81 215.9 0) (fields_autoplaced)
  1609. (effects (font (size 1.27 1.27)) (justify left))
  1610. (uuid 1f3003e6-dce5-420f-906b-3f1e92b67249)
  1611. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1612. (effects (font (size 1.27 1.27)) hide)
  1613. )
  1614. )
  1615. (global_label "S+" (shape input) (at 40.64 199.39 180) (fields_autoplaced)
  1616. (effects (font (size 1.27 1.27)) (justify right))
  1617. (uuid 28e37b45-f843-47c2-85c9-ca19f5430ece)
  1618. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1619. (effects (font (size 1.27 1.27)) hide)
  1620. )
  1621. )
  1622. (global_label "A20" (shape input) (at 384.81 218.44 0) (fields_autoplaced)
  1623. (effects (font (size 1.27 1.27)) (justify left))
  1624. (uuid 378af8b4-af3d-46e7-89ae-deff12ca9067)
  1625. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1626. (effects (font (size 1.27 1.27)) hide)
  1627. )
  1628. )
  1629. (global_label "A15" (shape input) (at 384.81 152.4 0) (fields_autoplaced)
  1630. (effects (font (size 1.27 1.27)) (justify left))
  1631. (uuid 40976bf0-19de-460f-ad64-224d4f51e16b)
  1632. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1633. (effects (font (size 1.27 1.27)) hide)
  1634. )
  1635. )
  1636. (global_label "D5" (shape input) (at 384.81 43.18 0) (fields_autoplaced)
  1637. (effects (font (size 1.27 1.27)) (justify left))
  1638. (uuid 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)
  1639. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1640. (effects (font (size 1.27 1.27)) hide)
  1641. )
  1642. )
  1643. (global_label "~{DMADBE}" (shape input) (at 40.64 55.88 180) (fields_autoplaced)
  1644. (effects (font (size 1.27 1.27)) (justify right))
  1645. (uuid 4fa10683-33cd-4dcd-8acc-2415cd63c62a)
  1646. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1647. (effects (font (size 1.27 1.27)) hide)
  1648. )
  1649. )
  1650. (global_label "D4" (shape input) (at 384.81 40.64 0) (fields_autoplaced)
  1651. (effects (font (size 1.27 1.27)) (justify left))
  1652. (uuid 4fb21471-41be-4be8-9687-66030f97befc)
  1653. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1654. (effects (font (size 1.27 1.27)) hide)
  1655. )
  1656. )
  1657. (global_label "~{OWN}" (shape input) (at 40.64 233.68 180) (fields_autoplaced)
  1658. (effects (font (size 1.27 1.27)) (justify right))
  1659. (uuid 54212c01-b363-47b8-a145-45c40df316f4)
  1660. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1661. (effects (font (size 1.27 1.27)) hide)
  1662. )
  1663. )
  1664. (global_label "D6" (shape input) (at 384.81 45.72 0) (fields_autoplaced)
  1665. (effects (font (size 1.27 1.27)) (justify left))
  1666. (uuid 60dcd1fe-7079-4cb8-b509-04558ccf5097)
  1667. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1668. (effects (font (size 1.27 1.27)) hide)
  1669. )
  1670. )
  1671. (global_label "D14" (shape input) (at 384.81 95.25 0) (fields_autoplaced)
  1672. (effects (font (size 1.27 1.27)) (justify left))
  1673. (uuid 6595b9c7-02ee-4647-bde5-6b566e35163e)
  1674. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1675. (effects (font (size 1.27 1.27)) hide)
  1676. )
  1677. )
  1678. (global_label "A14D6" (shape input) (at 40.64 45.72 180) (fields_autoplaced)
  1679. (effects (font (size 1.27 1.27)) (justify right))
  1680. (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd)
  1681. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1682. (effects (font (size 1.27 1.27)) hide)
  1683. )
  1684. )
  1685. (global_label "D11" (shape input) (at 384.81 87.63 0) (fields_autoplaced)
  1686. (effects (font (size 1.27 1.27)) (justify left))
  1687. (uuid 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)
  1688. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1689. (effects (font (size 1.27 1.27)) hide)
  1690. )
  1691. )
  1692. (global_label "D15" (shape input) (at 384.81 97.79 0) (fields_autoplaced)
  1693. (effects (font (size 1.27 1.27)) (justify left))
  1694. (uuid 770ad51a-7219-4633-b24a-bd20feb0a6c5)
  1695. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1696. (effects (font (size 1.27 1.27)) hide)
  1697. )
  1698. )
  1699. (global_label "A22D14" (shape input) (at 40.64 95.25 180) (fields_autoplaced)
  1700. (effects (font (size 1.27 1.27)) (justify right))
  1701. (uuid 7afa54c4-2181-41d3-81f7-39efc497ecae)
  1702. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1703. (effects (font (size 1.27 1.27)) hide)
  1704. )
  1705. )
  1706. (global_label "D10" (shape input) (at 384.81 85.09 0) (fields_autoplaced)
  1707. (effects (font (size 1.27 1.27)) (justify left))
  1708. (uuid 7d928d56-093a-4ca8-aed1-414b7e703b45)
  1709. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1710. (effects (font (size 1.27 1.27)) hide)
  1711. )
  1712. )
  1713. (global_label "A22" (shape input) (at 384.81 223.52 0) (fields_autoplaced)
  1714. (effects (font (size 1.27 1.27)) (justify left))
  1715. (uuid 8412992d-8754-44de-9e08-115cec1a3eff)
  1716. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1717. (effects (font (size 1.27 1.27)) hide)
  1718. )
  1719. )
  1720. (global_label "~{UAS}" (shape input) (at 40.64 157.48 180) (fields_autoplaced)
  1721. (effects (font (size 1.27 1.27)) (justify right))
  1722. (uuid 8458d41c-5d62-455d-b6e1-9f718c0faac9)
  1723. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1724. (effects (font (size 1.27 1.27)) hide)
  1725. )
  1726. )
  1727. (global_label "D7" (shape input) (at 384.81 48.26 0) (fields_autoplaced)
  1728. (effects (font (size 1.27 1.27)) (justify left))
  1729. (uuid 85b7594c-358f-454b-b2ad-dd0b1d67ed76)
  1730. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1731. (effects (font (size 1.27 1.27)) hide)
  1732. )
  1733. )
  1734. (global_label "A18D10" (shape input) (at 40.64 85.09 180) (fields_autoplaced)
  1735. (effects (font (size 1.27 1.27)) (justify right))
  1736. (uuid 88668202-3f0b-4d07-84d4-dcd790f57272)
  1737. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1738. (effects (font (size 1.27 1.27)) hide)
  1739. )
  1740. )
  1741. (global_label "A12D4" (shape input) (at 40.64 40.64 180) (fields_autoplaced)
  1742. (effects (font (size 1.27 1.27)) (justify right))
  1743. (uuid 8c1605f9-6c91-4701-96bf-e753661d5e23)
  1744. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1745. (effects (font (size 1.27 1.27)) hide)
  1746. )
  1747. )
  1748. (global_label "A18" (shape input) (at 384.81 213.36 0) (fields_autoplaced)
  1749. (effects (font (size 1.27 1.27)) (justify left))
  1750. (uuid 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)
  1751. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1752. (effects (font (size 1.27 1.27)) hide)
  1753. )
  1754. )
  1755. (global_label "D1" (shape input) (at 384.81 33.02 0) (fields_autoplaced)
  1756. (effects (font (size 1.27 1.27)) (justify left))
  1757. (uuid 911bdcbe-493f-4e21-a506-7cbc636e2c17)
  1758. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1759. (effects (font (size 1.27 1.27)) hide)
  1760. )
  1761. )
  1762. (global_label "A19D11" (shape input) (at 40.64 87.63 180) (fields_autoplaced)
  1763. (effects (font (size 1.27 1.27)) (justify right))
  1764. (uuid 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
  1765. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1766. (effects (font (size 1.27 1.27)) hide)
  1767. )
  1768. )
  1769. (global_label "A8D0" (shape input) (at 40.64 30.48 180) (fields_autoplaced)
  1770. (effects (font (size 1.27 1.27)) (justify right))
  1771. (uuid 998b7fa5-31a5-472e-9572-49d5226d6098)
  1772. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1773. (effects (font (size 1.27 1.27)) hide)
  1774. )
  1775. )
  1776. (global_label "D8" (shape input) (at 384.81 80.01 0) (fields_autoplaced)
  1777. (effects (font (size 1.27 1.27)) (justify left))
  1778. (uuid a5cd8da1-8f7f-4f80-bb23-0317de562222)
  1779. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1780. (effects (font (size 1.27 1.27)) hide)
  1781. )
  1782. )
  1783. (global_label "A11" (shape input) (at 384.81 142.24 0) (fields_autoplaced)
  1784. (effects (font (size 1.27 1.27)) (justify left))
  1785. (uuid aca4de92-9c41-4c2b-9afa-540d02dafa1c)
  1786. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1787. (effects (font (size 1.27 1.27)) hide)
  1788. )
  1789. )
  1790. (global_label "D13" (shape input) (at 384.81 92.71 0) (fields_autoplaced)
  1791. (effects (font (size 1.27 1.27)) (justify left))
  1792. (uuid b1c649b1-f44d-46c7-9dea-818e75a1b87e)
  1793. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1794. (effects (font (size 1.27 1.27)) hide)
  1795. )
  1796. )
  1797. (global_label "D0" (shape input) (at 384.81 30.48 0) (fields_autoplaced)
  1798. (effects (font (size 1.27 1.27)) (justify left))
  1799. (uuid b96fe6ac-3535-4455-ab88-ed77f5e46d6e)
  1800. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1801. (effects (font (size 1.27 1.27)) hide)
  1802. )
  1803. )
  1804. (global_label "A17D9" (shape input) (at 40.64 82.55 180) (fields_autoplaced)
  1805. (effects (font (size 1.27 1.27)) (justify right))
  1806. (uuid c106154f-d948-43e5-abfa-e1b96055d91b)
  1807. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1808. (effects (font (size 1.27 1.27)) hide)
  1809. )
  1810. )
  1811. (global_label "A14" (shape input) (at 384.81 149.86 0) (fields_autoplaced)
  1812. (effects (font (size 1.27 1.27)) (justify left))
  1813. (uuid c25a772d-af9c-4ebc-96f6-0966738c13a8)
  1814. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1815. (effects (font (size 1.27 1.27)) hide)
  1816. )
  1817. )
  1818. (global_label "A23" (shape input) (at 384.81 226.06 0) (fields_autoplaced)
  1819. (effects (font (size 1.27 1.27)) (justify left))
  1820. (uuid c332fa55-4168-4f55-88a5-f82c7c21040b)
  1821. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1822. (effects (font (size 1.27 1.27)) hide)
  1823. )
  1824. )
  1825. (global_label "A12" (shape input) (at 384.81 144.78 0) (fields_autoplaced)
  1826. (effects (font (size 1.27 1.27)) (justify left))
  1827. (uuid c830e3bc-dc64-4f65-8f47-3b106bae2807)
  1828. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1829. (effects (font (size 1.27 1.27)) hide)
  1830. )
  1831. )
  1832. (global_label "A16" (shape input) (at 384.81 208.28 0) (fields_autoplaced)
  1833. (effects (font (size 1.27 1.27)) (justify left))
  1834. (uuid c8c79177-94d4-43e2-a654-f0a5554fbb68)
  1835. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1836. (effects (font (size 1.27 1.27)) hide)
  1837. )
  1838. )
  1839. (global_label "A20D12" (shape input) (at 40.64 90.17 180) (fields_autoplaced)
  1840. (effects (font (size 1.27 1.27)) (justify right))
  1841. (uuid cf386a39-fc62-49dd-8ec5-e044f6bd67ce)
  1842. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1843. (effects (font (size 1.27 1.27)) hide)
  1844. )
  1845. )
  1846. (global_label "A17" (shape input) (at 384.81 210.82 0) (fields_autoplaced)
  1847. (effects (font (size 1.27 1.27)) (justify left))
  1848. (uuid d3c11c8f-a73d-4211-934b-a6da255728ad)
  1849. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1850. (effects (font (size 1.27 1.27)) hide)
  1851. )
  1852. )
  1853. (global_label "D2" (shape input) (at 384.81 35.56 0) (fields_autoplaced)
  1854. (effects (font (size 1.27 1.27)) (justify left))
  1855. (uuid d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a)
  1856. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1857. (effects (font (size 1.27 1.27)) hide)
  1858. )
  1859. )
  1860. (global_label "A8" (shape input) (at 384.81 134.62 0) (fields_autoplaced)
  1861. (effects (font (size 1.27 1.27)) (justify left))
  1862. (uuid db36f6e3-e72a-487f-bda9-88cc84536f62)
  1863. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1864. (effects (font (size 1.27 1.27)) hide)
  1865. )
  1866. )
  1867. (global_label "D3" (shape input) (at 384.81 38.1 0) (fields_autoplaced)
  1868. (effects (font (size 1.27 1.27)) (justify left))
  1869. (uuid dde51ae5-b215-445e-92bb-4a12ec410531)
  1870. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1871. (effects (font (size 1.27 1.27)) hide)
  1872. )
  1873. )
  1874. (global_label "A9" (shape input) (at 384.81 137.16 0) (fields_autoplaced)
  1875. (effects (font (size 1.27 1.27)) (justify left))
  1876. (uuid df68c26a-03b5-4466-aecf-ba34b7dce6b7)
  1877. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1878. (effects (font (size 1.27 1.27)) hide)
  1879. )
  1880. )
  1881. (global_label "A9D1" (shape input) (at 40.64 33.02 180) (fields_autoplaced)
  1882. (effects (font (size 1.27 1.27)) (justify right))
  1883. (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7)
  1884. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1885. (effects (font (size 1.27 1.27)) hide)
  1886. )
  1887. )
  1888. (global_label "A15D7" (shape input) (at 40.64 48.26 180) (fields_autoplaced)
  1889. (effects (font (size 1.27 1.27)) (justify right))
  1890. (uuid e5203297-b913-4288-a576-12a92185cb52)
  1891. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1892. (effects (font (size 1.27 1.27)) hide)
  1893. )
  1894. )
  1895. (global_label "A23D15" (shape input) (at 40.64 97.79 180) (fields_autoplaced)
  1896. (effects (font (size 1.27 1.27)) (justify right))
  1897. (uuid e54e5e19-1deb-49a9-8629-617db8e434c0)
  1898. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1899. (effects (font (size 1.27 1.27)) hide)
  1900. )
  1901. )
  1902. (global_label "A10D2" (shape input) (at 40.64 35.56 180) (fields_autoplaced)
  1903. (effects (font (size 1.27 1.27)) (justify right))
  1904. (uuid e67b9f8c-019b-4145-98a4-96545f6bb128)
  1905. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1906. (effects (font (size 1.27 1.27)) hide)
  1907. )
  1908. )
  1909. (global_label "A10" (shape input) (at 384.81 139.7 0) (fields_autoplaced)
  1910. (effects (font (size 1.27 1.27)) (justify left))
  1911. (uuid e8c50f1b-c316-4110-9cce-5c24c65a1eaa)
  1912. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1913. (effects (font (size 1.27 1.27)) hide)
  1914. )
  1915. )
  1916. (global_label "A21D13" (shape input) (at 40.64 92.71 180) (fields_autoplaced)
  1917. (effects (font (size 1.27 1.27)) (justify right))
  1918. (uuid eae0ab9f-65b2-44d3-aba7-873c3227fba7)
  1919. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1920. (effects (font (size 1.27 1.27)) hide)
  1921. )
  1922. )
  1923. (global_label "A16D8" (shape input) (at 40.64 80.01 180) (fields_autoplaced)
  1924. (effects (font (size 1.27 1.27)) (justify right))
  1925. (uuid eee16674-2d21-45b6-ab5e-d669125df26c)
  1926. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1927. (effects (font (size 1.27 1.27)) hide)
  1928. )
  1929. )
  1930. (global_label "A13D5" (shape input) (at 40.64 43.18 180) (fields_autoplaced)
  1931. (effects (font (size 1.27 1.27)) (justify right))
  1932. (uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd)
  1933. (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
  1934. (effects (font (size 1.27 1.27)) hide)
  1935. )
  1936. )
  1937. (symbol (lib_id "74xx:74HC245") (at 224.79 43.18 0) (unit 1)
  1938. (in_bom yes) (on_board yes)
  1939. (uuid 00000000-0000-0000-0000-000061ea38ed)
  1940. (property "Reference" "U5" (id 0) (at 218.44 25.4 0))
  1941. (property "Value" "74ALS245" (id 1) (at 231.14 25.4 0))
  1942. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 224.79 43.18 0)
  1943. (effects (font (size 1.27 1.27)) hide)
  1944. )
  1945. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 224.79 43.18 0)
  1946. (effects (font (size 1.27 1.27)) hide)
  1947. )
  1948. (pin "1" (uuid 98966de3-2364-43d8-a2e0-b03bb9487b03))
  1949. (pin "10" (uuid 278a91dc-d57d-4a5c-a045-34b6bd84131f))
  1950. (pin "11" (uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a))
  1951. (pin "12" (uuid 24adc223-60f0-4497-98a3-d664c5a13280))
  1952. (pin "13" (uuid 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32))
  1953. (pin "14" (uuid 631c7be5-8dc2-4df4-ab73-737bb928e763))
  1954. (pin "15" (uuid 929a9b03-e99e-4b88-8e16-759f8c6b59a5))
  1955. (pin "16" (uuid c210293b-1d7a-4e96-92e9-058784106727))
  1956. (pin "17" (uuid b21299b9-3c4d-43df-b399-7f9b08eb5470))
  1957. (pin "18" (uuid fc2e9f96-3bed-4896-b995-f56e799f1c77))
  1958. (pin "19" (uuid 751d823e-1d7b-4501-9658-d06d459b0e16))
  1959. (pin "2" (uuid 4cfd9a02-97ef-4af4-a6b8-db9be1a8fda5))
  1960. (pin "20" (uuid aadc3df5-0e2d-4f3d-b72e-6f184da74c89))
  1961. (pin "3" (uuid 92761c09-a591-4c8e-af4d-e0e2262cb01d))
  1962. (pin "4" (uuid 8a8c373f-9bc3-4cf7-8f41-4802da916698))
  1963. (pin "5" (uuid 749d9ed0-2ff2-4b55-abc5-f7231ec3aa28))
  1964. (pin "6" (uuid 54ed3ee1-891b-418e-ab9c-6a18747d7388))
  1965. (pin "7" (uuid fd60415a-f01a-46c5-9369-ea970e435e5b))
  1966. (pin "8" (uuid af76ce95-feca-41fb-bf31-edaa26d6766a))
  1967. (pin "9" (uuid e11ae5a5-aa10-4f10-b346-f16e33c7899a))
  1968. )
  1969. (symbol (lib_id "74xx:74HC245") (at 224.79 92.71 0) (unit 1)
  1970. (in_bom yes) (on_board yes)
  1971. (uuid 00000000-0000-0000-0000-000061ea6712)
  1972. (property "Reference" "U4" (id 0) (at 217.17 74.93 0))
  1973. (property "Value" "74ALS245" (id 1) (at 229.87 74.93 0))
  1974. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 224.79 92.71 0)
  1975. (effects (font (size 1.27 1.27)) hide)
  1976. )
  1977. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74HC245" (id 3) (at 224.79 92.71 0)
  1978. (effects (font (size 1.27 1.27)) hide)
  1979. )
  1980. (pin "1" (uuid 15699041-ed40-45ee-87d8-f5e206a88536))
  1981. (pin "10" (uuid 968a6172-7a4e-40ab-a78a-e4d03671e136))
  1982. (pin "11" (uuid 26a22c19-4cc5-4237-9651-0edc4f854154))
  1983. (pin "12" (uuid c1b11207-7c0a-49b3-a41d-2fe677d5f3b8))
  1984. (pin "13" (uuid 402c62e6-8d8e-473a-a0cf-2b86e4908cd7))
  1985. (pin "14" (uuid 3b65c51e-c243-447e-bee9-832d94c1630e))
  1986. (pin "15" (uuid a177c3b4-b04c-490e-b3fe-d3d4d7aa24a7))
  1987. (pin "16" (uuid 88deea08-baa5-4041-beb7-01c299cf00e6))
  1988. (pin "17" (uuid ad4d05f5-6957-42f8-b65c-c657b9a26485))
  1989. (pin "18" (uuid 92f063a3-7cce-4a96-8a3a-cf5767f700c6))
  1990. (pin "19" (uuid 5bab6a37-1fdf-4cf8-b571-44c962ed86e9))
  1991. (pin "2" (uuid 706c1cb9-5d96-4282-9efc-6147f0125147))
  1992. (pin "20" (uuid eb391a95-1c1d-4613-b508-c76b8bc13a73))
  1993. (pin "3" (uuid 9ed09117-33cf-45a3-85a7-2606522feaf8))
  1994. (pin "4" (uuid 3bbbbb7d-391c-4fee-ac81-3c47878edc38))
  1995. (pin "5" (uuid 4a53fa56-d65b-42a4-a4be-8f49c4c015bb))
  1996. (pin "6" (uuid 6150c02b-beb5-4af1-951e-3666a285a6ea))
  1997. (pin "7" (uuid 9c2999b2-1cf1-4204-9d23-243401b77aa3))
  1998. (pin "8" (uuid 755f94aa-38f0-4a64-a7c7-6c71cb18cddf))
  1999. (pin "9" (uuid 4970ec6e-3725-4619-b57d-dc2c2cb86ed0))
  2000. )
  2001. (symbol (lib_id "power:+5V") (at 224.79 21.59 0) (unit 1)
  2002. (in_bom yes) (on_board yes)
  2003. (uuid 00000000-0000-0000-0000-00006202cdba)
  2004. (property "Reference" "#PWR0111" (id 0) (at 224.79 25.4 0)
  2005. (effects (font (size 1.27 1.27)) hide)
  2006. )
  2007. (property "Value" "+5V" (id 1) (at 225.171 17.1958 0))
  2008. (property "Footprint" "" (id 2) (at 224.79 21.59 0)
  2009. (effects (font (size 1.27 1.27)) hide)
  2010. )
  2011. (property "Datasheet" "" (id 3) (at 224.79 21.59 0)
  2012. (effects (font (size 1.27 1.27)) hide)
  2013. )
  2014. (pin "1" (uuid 199124ca-dd64-45cf-a063-97cc545cbea7))
  2015. )
  2016. (symbol (lib_id "74xx:74LS573") (at 224.79 147.32 0) (unit 1)
  2017. (in_bom yes) (on_board yes)
  2018. (uuid 00000000-0000-0000-0000-0000621d8451)
  2019. (property "Reference" "U7" (id 0) (at 218.44 129.54 0))
  2020. (property "Value" "74ALS573" (id 1) (at 231.14 129.54 0))
  2021. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 224.79 147.32 0)
  2022. (effects (font (size 1.27 1.27)) hide)
  2023. )
  2024. (property "Datasheet" "74xx/74hc573.pdf" (id 3) (at 224.79 147.32 0)
  2025. (effects (font (size 1.27 1.27)) hide)
  2026. )
  2027. (pin "1" (uuid 8e697b96-cf4c-43ef-b321-8c2422b088bf))
  2028. (pin "10" (uuid 74855e0d-40e4-4940-a544-edae9207b2ea))
  2029. (pin "11" (uuid d68dca9b-48b3-498b-9b5f-3b3838250f82))
  2030. (pin "12" (uuid 59f60168-cced-43c9-aaa5-41a1a8a2f631))
  2031. (pin "13" (uuid f6a3288e-9575-42bb-af05-a920d59aded8))
  2032. (pin "14" (uuid ef94502b-f22d-4da7-a17f-4100090b03a1))
  2033. (pin "15" (uuid 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa))
  2034. (pin "16" (uuid 082aed28-f9e8-49e7-96ee-b5aa9f0319c7))
  2035. (pin "17" (uuid fe6d9604-2924-4f38-950b-a31e8a281973))
  2036. (pin "18" (uuid f67bbef3-6f59-49ba-8890-d1f9dc9f9ad6))
  2037. (pin "19" (uuid f503ea07-bcf1-4924-930a-6f7e9cd312f8))
  2038. (pin "2" (uuid 645bdbdc-8f65-42ef-a021-2d3e7d74a739))
  2039. (pin "20" (uuid b1ba92d5-0d41-4be9-b483-47d08dc1785d))
  2040. (pin "3" (uuid bf6104a1-a529-4c00-b4ae-92001543f7ec))
  2041. (pin "4" (uuid 8b963561-586b-4575-b721-87e7914602c6))
  2042. (pin "5" (uuid da862bae-4511-4bb9-b18d-fa60a2737feb))
  2043. (pin "6" (uuid b8c8c7a1-d546-4878-9de9-463ec76dff98))
  2044. (pin "7" (uuid 82204892-ec79-4d38-a593-52fb9a9b4b87))
  2045. (pin "8" (uuid dec284d9-246c-4619-8dcc-8f4886f9349e))
  2046. (pin "9" (uuid ae8bb5ae-95ee-4e2d-8a0c-ae5b6149b4e3))
  2047. )
  2048. (symbol (lib_id "power:GND") (at 224.79 168.91 0) (unit 1)
  2049. (in_bom yes) (on_board yes)
  2050. (uuid 00000000-0000-0000-0000-0000621e49f6)
  2051. (property "Reference" "#PWR0116" (id 0) (at 224.79 175.26 0)
  2052. (effects (font (size 1.27 1.27)) hide)
  2053. )
  2054. (property "Value" "GND" (id 1) (at 224.917 173.3042 0))
  2055. (property "Footprint" "" (id 2) (at 224.79 168.91 0)
  2056. (effects (font (size 1.27 1.27)) hide)
  2057. )
  2058. (property "Datasheet" "" (id 3) (at 224.79 168.91 0)
  2059. (effects (font (size 1.27 1.27)) hide)
  2060. )
  2061. (pin "1" (uuid db6412d3-e6c3-4bdd-abf4-a8f55d56df31))
  2062. )
  2063. (symbol (lib_id "power:+5V") (at 234.315 176.53 0) (unit 1)
  2064. (in_bom yes) (on_board yes)
  2065. (uuid 00000000-0000-0000-0000-0000621ed84d)
  2066. (property "Reference" "#PWR0117" (id 0) (at 234.315 180.34 0)
  2067. (effects (font (size 1.27 1.27)) hide)
  2068. )
  2069. (property "Value" "+5V" (id 1) (at 234.696 172.1358 0))
  2070. (property "Footprint" "" (id 2) (at 234.315 176.53 0)
  2071. (effects (font (size 1.27 1.27)) hide)
  2072. )
  2073. (property "Datasheet" "" (id 3) (at 234.315 176.53 0)
  2074. (effects (font (size 1.27 1.27)) hide)
  2075. )
  2076. (pin "1" (uuid 4ce9470f-5633-41bf-89ac-74a810939893))
  2077. )
  2078. (symbol (lib_id "74xx:74LS573") (at 157.48 220.98 0) (unit 1)
  2079. (in_bom yes) (on_board yes)
  2080. (uuid 00000000-0000-0000-0000-000062204c5c)
  2081. (property "Reference" "U6" (id 0) (at 151.13 203.2 0))
  2082. (property "Value" "74ALS573" (id 1) (at 163.83 203.2 0))
  2083. (property "Footprint" "Package_DIP:DIP-20_W7.62mm" (id 2) (at 157.48 220.98 0)
  2084. (effects (font (size 1.27 1.27)) hide)
  2085. )
  2086. (property "Datasheet" "74xx/74hc573.pdf" (id 3) (at 157.48 220.98 0)
  2087. (effects (font (size 1.27 1.27)) hide)
  2088. )
  2089. (pin "1" (uuid 5e6153e6-2c19-46de-9a8e-b310a2a07861))
  2090. (pin "10" (uuid 4346fe55-f906-453a-b81a-1c013104a598))
  2091. (pin "11" (uuid c512fed3-9770-476b-b048-e781b4f3cd72))
  2092. (pin "12" (uuid 56d2bc5d-fd72-4542-ab0f-053a5fd60efa))
  2093. (pin "13" (uuid 09bbea88-8bd7-48ec-baae-1b4a9a11a40e))
  2094. (pin "14" (uuid 41c18011-40db-4384-9ba4-c0158d0d9d6a))
  2095. (pin "15" (uuid 0fb27e11-fde6-4a25-adbb-e9684771b369))
  2096. (pin "16" (uuid 08ec951f-e7eb-41cf-9589-697107a98e88))
  2097. (pin "17" (uuid 2eea20e6-112c-411a-b615-885ae773135a))
  2098. (pin "18" (uuid 49fec31e-3712-4229-8142-b191d90a97d0))
  2099. (pin "19" (uuid 022502e0-e724-4b75-bc35-3c5984dbeb76))
  2100. (pin "2" (uuid d655bb0a-cbf9-4908-ad60-7024ff468fbd))
  2101. (pin "20" (uuid 9f969b13-1795-4747-8326-93bdc304ed56))
  2102. (pin "3" (uuid b9d4de74-d246-495d-8b63-12ab2133d6d6))
  2103. (pin "4" (uuid 66ca01b3-51ff-4294-9b77-4492e98f6aec))
  2104. (pin "5" (uuid fb0bf2a0-d317-42f7-b022-b5e05481f6be))
  2105. (pin "6" (uuid 2ee28fa9-d785-45a1-9a1b-1be02ad8cd0b))
  2106. (pin "7" (uuid 0e32af77-726b-4e11-9f99-2e2484ba9e9b))
  2107. (pin "8" (uuid 8a427111-6480-4b0c-b097-d8b6a0ee1819))
  2108. (pin "9" (uuid 152cd84e-bbed-4df5-a866-d1ab977b0966))
  2109. )
  2110. (symbol (lib_id "74xx:74LS04") (at 67.31 157.48 0) (unit 1)
  2111. (in_bom yes) (on_board yes)
  2112. (uuid 00000000-0000-0000-0000-000062222bb8)
  2113. (property "Reference" "U9" (id 0) (at 67.31 149.4282 0))
  2114. (property "Value" "74F04" (id 1) (at 67.31 151.7396 0))
  2115. (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 67.31 157.48 0)
  2116. (effects (font (size 1.27 1.27)) hide)
  2117. )
  2118. (property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (id 3) (at 67.31 157.48 0)
  2119. (effects (font (size 1.27 1.27)) hide)
  2120. )
  2121. (pin "1" (uuid 17cf1c88-8d51-4538-aa76-e35ac22d0ed0))
  2122. (pin "2" (uuid c3a69550-c4fa-45d1-9aba-0bba47699cca))
  2123. (pin "3" (uuid 0df4d86c-488c-44f0-a8f7-4038e39d63b0))
  2124. (pin "4" (uuid 900d33e6-e977-477c-9bb6-de2663d2d872))
  2125. (pin "5" (uuid 5ed509c8-0f15-466d-a460-57d25455d010))
  2126. (pin "6" (uuid e1ecc303-9af8-443a-a7e8-72badda258a9))
  2127. (pin "8" (uuid 56190403-124b-4d24-b4fb-56f0b1400a98))
  2128. (pin "9" (uuid 44a480d4-07a3-43e7-829c-9b2cd1f97067))
  2129. (pin "10" (uuid 05a0a052-e08e-4d75-ad04-81626a30dfe8))
  2130. (pin "11" (uuid b2533ff3-5073-4482-929c-d7cc6e97afc0))
  2131. (pin "12" (uuid 06504b64-6b2d-481d-8371-953c79009aff))
  2132. (pin "13" (uuid 37bec092-6a44-4074-a523-cfcbc70bd3b9))
  2133. (pin "14" (uuid b206acaa-acfd-47c1-ae09-c13e57632799))
  2134. (pin "7" (uuid 28f97568-2951-4114-be13-c36e4fbb868f))
  2135. )
  2136. (symbol (lib_id "Device:R_Small") (at 54.61 148.59 0) (unit 1)
  2137. (in_bom yes) (on_board yes)
  2138. (uuid 00000000-0000-0000-0000-00006222d0b3)
  2139. (property "Reference" "R35" (id 0) (at 56.1086 147.4216 0)
  2140. (effects (font (size 1.27 1.27)) (justify left))
  2141. )
  2142. (property "Value" "4.7k" (id 1) (at 56.1086 149.733 0)
  2143. (effects (font (size 1.27 1.27)) (justify left))
  2144. )
  2145. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 54.61 148.59 0)
  2146. (effects (font (size 1.27 1.27)) hide)
  2147. )
  2148. (property "Datasheet" "~" (id 3) (at 54.61 148.59 0)
  2149. (effects (font (size 1.27 1.27)) hide)
  2150. )
  2151. (pin "1" (uuid 112371bd-7aa2-4b47-b184-50d12afc2534))
  2152. (pin "2" (uuid 5c32b099-dba7-4228-8a5e-c2156f635ce2))
  2153. )
  2154. (symbol (lib_id "power:+5V") (at 157.48 196.85 0) (unit 1)
  2155. (in_bom yes) (on_board yes) (fields_autoplaced)
  2156. (uuid 04e7f2f0-e029-40d4-8d0e-ae4faab3346d)
  2157. (property "Reference" "#PWR0110" (id 0) (at 157.48 200.66 0)
  2158. (effects (font (size 1.27 1.27)) hide)
  2159. )
  2160. (property "Value" "+5V" (id 1) (at 157.48 191.77 0))
  2161. (property "Footprint" "" (id 2) (at 157.48 196.85 0)
  2162. (effects (font (size 1.27 1.27)) hide)
  2163. )
  2164. (property "Datasheet" "" (id 3) (at 157.48 196.85 0)
  2165. (effects (font (size 1.27 1.27)) hide)
  2166. )
  2167. (pin "1" (uuid c6af2963-5520-4de8-82ce-ee5d50499a2e))
  2168. )
  2169. (symbol (lib_id "power:+5V") (at 167.64 250.19 0) (unit 1)
  2170. (in_bom yes) (on_board yes) (fields_autoplaced)
  2171. (uuid 158550ca-0c3b-4e5f-b596-d1c9e13ff202)
  2172. (property "Reference" "#PWR0109" (id 0) (at 167.64 254 0)
  2173. (effects (font (size 1.27 1.27)) hide)
  2174. )
  2175. (property "Value" "+5V" (id 1) (at 167.64 245.11 0))
  2176. (property "Footprint" "" (id 2) (at 167.64 250.19 0)
  2177. (effects (font (size 1.27 1.27)) hide)
  2178. )
  2179. (property "Datasheet" "" (id 3) (at 167.64 250.19 0)
  2180. (effects (font (size 1.27 1.27)) hide)
  2181. )
  2182. (pin "1" (uuid 795171bf-2a7d-4ea5-8a2e-7349477fc535))
  2183. )
  2184. (symbol (lib_id "Device:R_Small") (at 222.25 191.77 90) (unit 1)
  2185. (in_bom yes) (on_board yes)
  2186. (uuid 1c5035ec-288d-4511-99de-0f3081baef67)
  2187. (property "Reference" "RN32-6" (id 0) (at 217.805 189.865 90))
  2188. (property "Value" "4.7k" (id 1) (at 226.06 189.865 90))
  2189. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 191.77 0)
  2190. (effects (font (size 1.27 1.27)) hide)
  2191. )
  2192. (property "Datasheet" "~" (id 3) (at 222.25 191.77 0)
  2193. (effects (font (size 1.27 1.27)) hide)
  2194. )
  2195. (pin "1" (uuid dd009c27-4ce9-4f84-91f1-96d9f05ea73f))
  2196. (pin "2" (uuid 3a98b264-bf93-454a-bddb-5a41ba5cf79b))
  2197. )
  2198. (symbol (lib_id "Device:R_Small") (at 222.25 184.15 90) (unit 1)
  2199. (in_bom yes) (on_board yes)
  2200. (uuid 24996b31-b9de-42a2-8267-48839913f7c5)
  2201. (property "Reference" "RN32-3" (id 0) (at 217.805 182.245 90))
  2202. (property "Value" "4.7k" (id 1) (at 226.06 182.245 90))
  2203. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 184.15 0)
  2204. (effects (font (size 1.27 1.27)) hide)
  2205. )
  2206. (property "Datasheet" "~" (id 3) (at 222.25 184.15 0)
  2207. (effects (font (size 1.27 1.27)) hide)
  2208. )
  2209. (pin "1" (uuid f551f71f-cb25-4817-b918-7c1ff10e26ef))
  2210. (pin "2" (uuid 485de4e4-3d03-4918-8a32-29223a0015df))
  2211. )
  2212. (symbol (lib_id "Device:R_Small") (at 154.94 260.35 90) (unit 1)
  2213. (in_bom yes) (on_board yes)
  2214. (uuid 260a01f9-6b46-492c-a50c-1de9464642eb)
  2215. (property "Reference" "RN33-4" (id 0) (at 150.495 258.445 90))
  2216. (property "Value" "4.7k" (id 1) (at 158.75 258.445 90))
  2217. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 260.35 0)
  2218. (effects (font (size 1.27 1.27)) hide)
  2219. )
  2220. (property "Datasheet" "~" (id 3) (at 154.94 260.35 0)
  2221. (effects (font (size 1.27 1.27)) hide)
  2222. )
  2223. (pin "1" (uuid e3be43c2-d315-43a1-8a07-927d51b4925f))
  2224. (pin "2" (uuid 57a950d8-6af1-4386-bfc9-45c63abfb680))
  2225. )
  2226. (symbol (lib_id "Device:R_Small") (at 154.94 270.51 90) (unit 1)
  2227. (in_bom yes) (on_board yes)
  2228. (uuid 2844b9cc-4618-4b44-8179-c4f5daa02415)
  2229. (property "Reference" "RN33-8" (id 0) (at 150.495 268.605 90))
  2230. (property "Value" "4.7k" (id 1) (at 158.75 268.605 90))
  2231. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 270.51 0)
  2232. (effects (font (size 1.27 1.27)) hide)
  2233. )
  2234. (property "Datasheet" "~" (id 3) (at 154.94 270.51 0)
  2235. (effects (font (size 1.27 1.27)) hide)
  2236. )
  2237. (pin "1" (uuid 4b48c676-d9e6-4421-8a84-22eb04cafa5a))
  2238. (pin "2" (uuid 38af01cb-98d3-4c88-a859-3e95e0162e7e))
  2239. )
  2240. (symbol (lib_id "power:+5V") (at 224.79 71.12 0) (unit 1)
  2241. (in_bom yes) (on_board yes)
  2242. (uuid 331e3e8d-675a-432e-a7b9-0aae9e6a2000)
  2243. (property "Reference" "#PWR0118" (id 0) (at 224.79 74.93 0)
  2244. (effects (font (size 1.27 1.27)) hide)
  2245. )
  2246. (property "Value" "+5V" (id 1) (at 221.615 69.215 0))
  2247. (property "Footprint" "" (id 2) (at 224.79 71.12 0)
  2248. (effects (font (size 1.27 1.27)) hide)
  2249. )
  2250. (property "Datasheet" "" (id 3) (at 224.79 71.12 0)
  2251. (effects (font (size 1.27 1.27)) hide)
  2252. )
  2253. (pin "1" (uuid 213f6aad-8ac3-45e2-acc6-8a0f94cc3386))
  2254. )
  2255. (symbol (lib_id "Device:R_Small") (at 154.94 252.73 90) (unit 1)
  2256. (in_bom yes) (on_board yes)
  2257. (uuid 468a2c3d-b429-4a72-a509-b9471990ed45)
  2258. (property "Reference" "RN33-1" (id 0) (at 150.495 250.825 90))
  2259. (property "Value" "4.7k" (id 1) (at 158.75 250.825 90))
  2260. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 252.73 0)
  2261. (effects (font (size 1.27 1.27)) hide)
  2262. )
  2263. (property "Datasheet" "~" (id 3) (at 154.94 252.73 0)
  2264. (effects (font (size 1.27 1.27)) hide)
  2265. )
  2266. (pin "1" (uuid c3e542bf-5767-4c32-abb6-16ec52ac6ab9))
  2267. (pin "2" (uuid a12f67c8-3c67-4647-98f3-fe178e888fc5))
  2268. )
  2269. (symbol (lib_id "Device:R_Small") (at 222.25 194.31 90) (unit 1)
  2270. (in_bom yes) (on_board yes)
  2271. (uuid 49456949-9c99-4cdf-9b38-050a18128029)
  2272. (property "Reference" "RN32-7" (id 0) (at 217.805 192.405 90))
  2273. (property "Value" "4.7k" (id 1) (at 226.06 192.405 90))
  2274. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 194.31 0)
  2275. (effects (font (size 1.27 1.27)) hide)
  2276. )
  2277. (property "Datasheet" "~" (id 3) (at 222.25 194.31 0)
  2278. (effects (font (size 1.27 1.27)) hide)
  2279. )
  2280. (pin "1" (uuid a4e42c01-5a9b-4091-bf5c-abdcfef5690e))
  2281. (pin "2" (uuid d51811ea-a409-4323-bf6e-518d77d7fdac))
  2282. )
  2283. (symbol (lib_id "Device:R_Small") (at 222.25 196.85 90) (unit 1)
  2284. (in_bom yes) (on_board yes)
  2285. (uuid 496a424b-da5c-4406-974b-c1907d3b419c)
  2286. (property "Reference" "RN32-8" (id 0) (at 217.805 194.945 90))
  2287. (property "Value" "4.7k" (id 1) (at 226.06 194.945 90))
  2288. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 196.85 0)
  2289. (effects (font (size 1.27 1.27)) hide)
  2290. )
  2291. (property "Datasheet" "~" (id 3) (at 222.25 196.85 0)
  2292. (effects (font (size 1.27 1.27)) hide)
  2293. )
  2294. (pin "1" (uuid 9d8f86d1-492d-441c-9775-772069ea8212))
  2295. (pin "2" (uuid df960b49-366a-4e4f-9b0a-e1d6917c7f15))
  2296. )
  2297. (symbol (lib_id "power:GND") (at 224.79 114.3 0) (unit 1)
  2298. (in_bom yes) (on_board yes) (fields_autoplaced)
  2299. (uuid 4cf73e82-1ef5-45f0-b054-8456be0dc9ea)
  2300. (property "Reference" "#PWR0115" (id 0) (at 224.79 120.65 0)
  2301. (effects (font (size 1.27 1.27)) hide)
  2302. )
  2303. (property "Value" "GND" (id 1) (at 224.79 119.38 0))
  2304. (property "Footprint" "" (id 2) (at 224.79 114.3 0)
  2305. (effects (font (size 1.27 1.27)) hide)
  2306. )
  2307. (property "Datasheet" "" (id 3) (at 224.79 114.3 0)
  2308. (effects (font (size 1.27 1.27)) hide)
  2309. )
  2310. (pin "1" (uuid c99cd79e-a64f-4b5a-8d92-645494748712))
  2311. )
  2312. (symbol (lib_id "Device:R_Small") (at 222.25 179.07 90) (unit 1)
  2313. (in_bom yes) (on_board yes)
  2314. (uuid 5326864b-33dc-48df-8cd7-e39318419795)
  2315. (property "Reference" "RN32-1" (id 0) (at 217.805 177.165 90))
  2316. (property "Value" "4.7k" (id 1) (at 226.06 177.165 90))
  2317. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 179.07 0)
  2318. (effects (font (size 1.27 1.27)) hide)
  2319. )
  2320. (property "Datasheet" "~" (id 3) (at 222.25 179.07 0)
  2321. (effects (font (size 1.27 1.27)) hide)
  2322. )
  2323. (pin "1" (uuid 7b00a577-de8f-4e22-83a8-8c52d949ab50))
  2324. (pin "2" (uuid 5ba9576c-3216-4aa6-8519-acfddc0ebdec))
  2325. )
  2326. (symbol (lib_id "Device:R_Small") (at 222.25 199.39 90) (unit 1)
  2327. (in_bom yes) (on_board yes)
  2328. (uuid 60929790-30bb-4ce0-b4ba-18293d933dc8)
  2329. (property "Reference" "RN32-9" (id 0) (at 217.805 197.485 90))
  2330. (property "Value" "4.7k" (id 1) (at 226.06 197.485 90))
  2331. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 199.39 0)
  2332. (effects (font (size 1.27 1.27)) hide)
  2333. )
  2334. (property "Datasheet" "~" (id 3) (at 222.25 199.39 0)
  2335. (effects (font (size 1.27 1.27)) hide)
  2336. )
  2337. (pin "1" (uuid 185360b3-e686-4411-b81a-0ce8e3b77be0))
  2338. (pin "2" (uuid fe7ace01-282e-4b84-a9c7-00b8f63344a2))
  2339. )
  2340. (symbol (lib_id "power:GND") (at 157.48 242.57 0) (unit 1)
  2341. (in_bom yes) (on_board yes) (fields_autoplaced)
  2342. (uuid 67810cda-f29c-4649-83e0-502c18aa6ba2)
  2343. (property "Reference" "#PWR0113" (id 0) (at 157.48 248.92 0)
  2344. (effects (font (size 1.27 1.27)) hide)
  2345. )
  2346. (property "Value" "GND" (id 1) (at 157.48 247.65 0))
  2347. (property "Footprint" "" (id 2) (at 157.48 242.57 0)
  2348. (effects (font (size 1.27 1.27)) hide)
  2349. )
  2350. (property "Datasheet" "" (id 3) (at 157.48 242.57 0)
  2351. (effects (font (size 1.27 1.27)) hide)
  2352. )
  2353. (pin "1" (uuid 5f69449b-3619-4353-8596-f10b312c6b05))
  2354. )
  2355. (symbol (lib_id "Device:R_Small") (at 222.25 186.69 90) (unit 1)
  2356. (in_bom yes) (on_board yes)
  2357. (uuid 735f2f55-fb44-4d1c-8d7c-412fc4741e7c)
  2358. (property "Reference" "RN32-4" (id 0) (at 217.805 184.785 90))
  2359. (property "Value" "4.7k" (id 1) (at 226.06 184.785 90))
  2360. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 186.69 0)
  2361. (effects (font (size 1.27 1.27)) hide)
  2362. )
  2363. (property "Datasheet" "~" (id 3) (at 222.25 186.69 0)
  2364. (effects (font (size 1.27 1.27)) hide)
  2365. )
  2366. (pin "1" (uuid 480bd856-7f38-459d-94c9-a5ca5c637fc2))
  2367. (pin "2" (uuid f14fbb6a-dbf8-4207-b3b8-81ebb8ea0d28))
  2368. )
  2369. (symbol (lib_id "Device:R_Small") (at 154.94 265.43 90) (unit 1)
  2370. (in_bom yes) (on_board yes)
  2371. (uuid 88307f6f-873e-4e5c-9189-dc600dc33e3a)
  2372. (property "Reference" "RN33-6" (id 0) (at 150.495 263.525 90))
  2373. (property "Value" "4.7k" (id 1) (at 158.75 263.525 90))
  2374. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 265.43 0)
  2375. (effects (font (size 1.27 1.27)) hide)
  2376. )
  2377. (property "Datasheet" "~" (id 3) (at 154.94 265.43 0)
  2378. (effects (font (size 1.27 1.27)) hide)
  2379. )
  2380. (pin "1" (uuid df29c1be-2acc-422a-ac79-8b44b14bef81))
  2381. (pin "2" (uuid c3a52c0f-cd7e-427a-9ce6-9c611f3256dc))
  2382. )
  2383. (symbol (lib_id "Device:R_Small") (at 222.25 189.23 90) (unit 1)
  2384. (in_bom yes) (on_board yes)
  2385. (uuid 8f1e88ab-d475-4e44-9341-66f388742aaf)
  2386. (property "Reference" "RN32-5" (id 0) (at 217.805 187.325 90))
  2387. (property "Value" "4.7k" (id 1) (at 226.06 187.325 90))
  2388. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 189.23 0)
  2389. (effects (font (size 1.27 1.27)) hide)
  2390. )
  2391. (property "Datasheet" "~" (id 3) (at 222.25 189.23 0)
  2392. (effects (font (size 1.27 1.27)) hide)
  2393. )
  2394. (pin "1" (uuid c63e5023-cd83-48cd-a70a-f0dd854be552))
  2395. (pin "2" (uuid 27f1a3c6-0fd2-4c67-8486-9f86042939ab))
  2396. )
  2397. (symbol (lib_id "Device:R_Small") (at 154.94 262.89 90) (unit 1)
  2398. (in_bom yes) (on_board yes)
  2399. (uuid 8f900d6f-c263-449e-8d4c-cb8dac7d3d99)
  2400. (property "Reference" "RN33-5" (id 0) (at 150.495 260.985 90))
  2401. (property "Value" "4.7k" (id 1) (at 158.75 260.985 90))
  2402. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 262.89 0)
  2403. (effects (font (size 1.27 1.27)) hide)
  2404. )
  2405. (property "Datasheet" "~" (id 3) (at 154.94 262.89 0)
  2406. (effects (font (size 1.27 1.27)) hide)
  2407. )
  2408. (pin "1" (uuid 3e472bf4-b390-4a92-8e18-4266153ad1cf))
  2409. (pin "2" (uuid 804f2abe-2ca8-4262-a088-34ae3aeae49b))
  2410. )
  2411. (symbol (lib_id "Device:R_Small") (at 154.94 255.27 90) (unit 1)
  2412. (in_bom yes) (on_board yes)
  2413. (uuid 96f44869-f266-41c3-ae5b-b1aef4d6223b)
  2414. (property "Reference" "RN33-2" (id 0) (at 150.495 253.365 90))
  2415. (property "Value" "4.7k" (id 1) (at 158.75 253.365 90))
  2416. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 255.27 0)
  2417. (effects (font (size 1.27 1.27)) hide)
  2418. )
  2419. (property "Datasheet" "~" (id 3) (at 154.94 255.27 0)
  2420. (effects (font (size 1.27 1.27)) hide)
  2421. )
  2422. (pin "1" (uuid fa31a7c5-47de-4fad-9b5e-ac0eba427175))
  2423. (pin "2" (uuid 51996bf6-36e3-452e-be21-4d81519f600b))
  2424. )
  2425. (symbol (lib_id "Device:R_Small") (at 154.94 267.97 90) (unit 1)
  2426. (in_bom yes) (on_board yes)
  2427. (uuid 97031960-9f52-43be-ac4c-678e00bb74e8)
  2428. (property "Reference" "RN33-7" (id 0) (at 150.495 266.065 90))
  2429. (property "Value" "4.7k" (id 1) (at 158.75 266.065 90))
  2430. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 267.97 0)
  2431. (effects (font (size 1.27 1.27)) hide)
  2432. )
  2433. (property "Datasheet" "~" (id 3) (at 154.94 267.97 0)
  2434. (effects (font (size 1.27 1.27)) hide)
  2435. )
  2436. (pin "1" (uuid 1e9e68a0-b6a2-4c86-82c3-150415635163))
  2437. (pin "2" (uuid b7b16b37-93f4-41d5-b863-f43e55e04d84))
  2438. )
  2439. (symbol (lib_id "Device:R_Small") (at 154.94 257.81 90) (unit 1)
  2440. (in_bom yes) (on_board yes)
  2441. (uuid 9e76d9a2-c621-4e71-bb04-39e0746d6252)
  2442. (property "Reference" "RN33-3" (id 0) (at 150.495 255.905 90))
  2443. (property "Value" "4.7k" (id 1) (at 158.75 255.905 90))
  2444. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 154.94 257.81 0)
  2445. (effects (font (size 1.27 1.27)) hide)
  2446. )
  2447. (property "Datasheet" "~" (id 3) (at 154.94 257.81 0)
  2448. (effects (font (size 1.27 1.27)) hide)
  2449. )
  2450. (pin "1" (uuid 632a618f-6a40-4bf8-9a84-47ebf23d4f71))
  2451. (pin "2" (uuid a83cf8b5-b1dc-4e74-a79a-888279863495))
  2452. )
  2453. (symbol (lib_id "power:+5V") (at 54.61 143.51 0) (unit 1)
  2454. (in_bom yes) (on_board yes) (fields_autoplaced)
  2455. (uuid a37215f7-4687-4eab-bf75-a163bcbf229c)
  2456. (property "Reference" "#PWR0112" (id 0) (at 54.61 147.32 0)
  2457. (effects (font (size 1.27 1.27)) hide)
  2458. )
  2459. (property "Value" "+5V" (id 1) (at 54.61 138.43 0))
  2460. (property "Footprint" "" (id 2) (at 54.61 143.51 0)
  2461. (effects (font (size 1.27 1.27)) hide)
  2462. )
  2463. (property "Datasheet" "" (id 3) (at 54.61 143.51 0)
  2464. (effects (font (size 1.27 1.27)) hide)
  2465. )
  2466. (pin "1" (uuid d5737f21-b3e1-4912-8d2f-bbd1eb89d40b))
  2467. )
  2468. (symbol (lib_id "power:+5V") (at 224.79 125.73 0) (unit 1)
  2469. (in_bom yes) (on_board yes) (fields_autoplaced)
  2470. (uuid afcd31c0-e580-45af-b800-46e7a868eadb)
  2471. (property "Reference" "#PWR0114" (id 0) (at 224.79 129.54 0)
  2472. (effects (font (size 1.27 1.27)) hide)
  2473. )
  2474. (property "Value" "+5V" (id 1) (at 224.79 120.65 0))
  2475. (property "Footprint" "" (id 2) (at 224.79 125.73 0)
  2476. (effects (font (size 1.27 1.27)) hide)
  2477. )
  2478. (property "Datasheet" "" (id 3) (at 224.79 125.73 0)
  2479. (effects (font (size 1.27 1.27)) hide)
  2480. )
  2481. (pin "1" (uuid 6a91b284-d51f-4ce7-8896-2ace98671043))
  2482. )
  2483. (symbol (lib_id "power:GND") (at 224.79 64.77 0) (unit 1)
  2484. (in_bom yes) (on_board yes)
  2485. (uuid b247f677-c1e3-423d-8130-e708fe68dfc1)
  2486. (property "Reference" "#PWR0119" (id 0) (at 224.79 71.12 0)
  2487. (effects (font (size 1.27 1.27)) hide)
  2488. )
  2489. (property "Value" "GND" (id 1) (at 228.6 67.31 0))
  2490. (property "Footprint" "" (id 2) (at 224.79 64.77 0)
  2491. (effects (font (size 1.27 1.27)) hide)
  2492. )
  2493. (property "Datasheet" "" (id 3) (at 224.79 64.77 0)
  2494. (effects (font (size 1.27 1.27)) hide)
  2495. )
  2496. (pin "1" (uuid bbfa041d-dc5d-484a-8cf9-743aa675e144))
  2497. )
  2498. (symbol (lib_id "Device:R_Small") (at 222.25 181.61 90) (unit 1)
  2499. (in_bom yes) (on_board yes)
  2500. (uuid c187384b-bb18-40c6-ac2d-03a9010bd2ec)
  2501. (property "Reference" "RN32-2" (id 0) (at 217.805 179.705 90))
  2502. (property "Value" "4.7k" (id 1) (at 226.06 179.705 90))
  2503. (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 222.25 181.61 0)
  2504. (effects (font (size 1.27 1.27)) hide)
  2505. )
  2506. (property "Datasheet" "~" (id 3) (at 222.25 181.61 0)
  2507. (effects (font (size 1.27 1.27)) hide)
  2508. )
  2509. (pin "1" (uuid 6a5dfadd-a26d-43bd-abd1-fd9ce3e51169))
  2510. (pin "2" (uuid deef88ba-88e8-46aa-abbb-010c615839a9))
  2511. )
  2512. )