-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory.kicad_sch
2637 lines (2561 loc) · 102 KB
/
memory.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 707f34a8-140c-4c08-95dd-006f97d7cc1b)
(paper "A4")
(title_block
(title "Memory Connections")
(date "2022-02-02")
(rev "2")
(company "Jackson Miller")
(comment 1 "2x 32kB RAM, 2x 32kB ROM")
)
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCD_Symbols:AS6C62256" (in_bom yes) (on_board yes)
(property "Reference" "U7" (id 0) (at 2.0194 27.0617 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AS6C62256" (id 1) (at 2.0194 24.2866 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_DIP:DIP-28_W15.24mm" (id 2) (at 26.67 -16.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "www.alliancememory.com/wp-content/uploads/pdf/AS6C62256.pdf" (id 3) (at 43.18 -19.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Name" "RAM_HIGH" (id 4) (at -4.445 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "ki_keywords" "RAM SRAM CMOS MEMORY" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "32Kx8 bit Low Power CMOS Static RAM, 55/70ns, DIP-28" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm*" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AS6C62256_0_0"
(pin power_in line (at 0 -22.86 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 22.86 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
)
(symbol "AS6C62256_0_1"
(rectangle (start -10.16 20.32) (end 10.16 -20.32)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AS6C62256_1_1"
(pin input line (at -12.7 -17.78 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 17.78 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 17.78 180) (length 2.54)
(name "DQ0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 15.24 180) (length 2.54)
(name "DQ1" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 12.7 180) (length 2.54)
(name "DQ2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 10.16 180) (length 2.54)
(name "DQ3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 7.62 180) (length 2.54)
(name "DQ4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 5.08 180) (length 2.54)
(name "DQ5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 2.54 180) (length 2.54)
(name "DQ6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 0 180) (length 2.54)
(name "DQ7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -12.7 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -5.08 180) (length 2.54)
(name "~{CE}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -7.62 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -10.16 180) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -10.16 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -15.24 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -12.7 180) (length 2.54)
(name "~{WE}" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 12.7 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 15.24 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCD_Symbols:AT28C256" (in_bom yes) (on_board yes)
(property "Reference" "U?" (id 0) (at 2.0194 29.3665 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AT28C256" (id 1) (at 2.0194 26.5914 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_LCC:PLCC-32_11.4x14.0mm_P1.27mm" (id 2) (at 30.48 -24.13 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://ww1.microchip.com/downloads/en/DeviceDoc/AT28C256-%E2%80%93-Industrial-Grade-256-Kbit-(32,768-x-8)-Paged-Parallel-EEPROM.pdf" (id 3) (at 82.55 -21.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Parallel EEPROM 256Kb" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Paged Parallel EEPROM 256Kb (32K x 8), PLCC-32" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm* SOIC*7.5x17.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AT28C256_0_0"
(pin no_connect line (at 10.16 -7.62 180) (length 2.54)
(name "DC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 22.86 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 10.16 -10.16 180) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 10.16 -5.08 180) (length 2.54)
(name "DC" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 10.16 -12.7 180) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
)
(symbol "AT28C256_1_1"
(rectangle (start -7.62 25.4) (end 7.62 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -10.16 20.32 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 22.86 180) (length 2.54)
(name "D0" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 20.32 180) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 17.78 180) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 15.24 180) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 12.7 180) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -12.7 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 10.16 180) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 7.62 180) (length 2.54)
(name "D6" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 5.08 180) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -22.86 0) (length 2.54)
(name "~{CE}" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -20.32 0) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -17.78 0) (length 2.54)
(name "~{WE}" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 12.7 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 15.24 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 171.45 19.05) (diameter 0) (color 255 153 0 1)
(uuid 11114785-2f0e-412a-98b6-32559fa000f6)
)
(junction (at 141.605 25.4) (diameter 0) (color 0 0 0 0)
(uuid 2a729bb7-e129-4b90-a0c9-ce7b8183c0a7)
)
(junction (at 119.38 19.05) (diameter 0) (color 255 153 0 1)
(uuid 3aff2b2f-ad32-4166-9ae4-304ec0999fb8)
)
(junction (at 206.375 34.29) (diameter 0) (color 0 0 0 0)
(uuid 5ce24224-4970-4777-ac74-04a70b73329e)
)
(junction (at 43.815 34.29) (diameter 0) (color 0 0 0 0)
(uuid 5f408e66-854d-4002-bd36-828a59a0e40f)
)
(junction (at 155.575 34.29) (diameter 0) (color 0 0 0 0)
(uuid 6c166950-f137-4b86-b378-5a2cfaa774f8)
)
(junction (at 62.23 19.05) (diameter 0) (color 255 153 0 1)
(uuid 7f99c794-b6e6-416f-94db-9700cfd4d408)
)
(junction (at 27.305 25.4) (diameter 0) (color 0 0 0 0)
(uuid aacbdf7c-27b5-4b1d-baa2-494057665c88)
)
(junction (at 84.455 25.4) (diameter 0) (color 0 0 0 0)
(uuid d8255fe1-644e-474c-9fd5-9a99e06a3789)
)
(junction (at 100.965 34.29) (diameter 0) (color 0 0 0 0)
(uuid e47f8202-0eb6-4fb3-a372-f5e41508f69a)
)
(bus_entry (at 192.405 45.72) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0130ec8a-83d8-4507-8899-f3825d2562bd)
)
(bus_entry (at 171.45 43.18) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0194eae9-9c9e-410b-9a8f-1a095904e5fb)
)
(bus_entry (at 141.605 63.5) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e42993b-9bea-47d2-9a6b-a68fc6a5739d)
)
(bus_entry (at 141.605 55.88) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10fc288a-4e4b-43d7-8097-4d7aaba737a9)
)
(bus_entry (at 171.45 55.88) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16b0ae6e-4e6e-4c0a-b235-bd05800aa7e9)
)
(bus_entry (at 171.45 48.26) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16b5f2d2-61a1-4dd9-97a4-36af42bc9e36)
)
(bus_entry (at 192.405 60.96) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ef0bab2-e599-4320-9180-6d369e835c98)
)
(bus_entry (at 192.405 71.12) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23d7df97-2d73-4c17-bf86-671834019bb7)
)
(bus_entry (at 222.25 45.72) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25f1ae14-f161-448d-a2fa-f39b19fe7b74)
)
(bus_entry (at 27.305 58.42) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26e9c57b-14a0-44f8-adde-44f55a37ed4b)
)
(bus_entry (at 192.405 43.18) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2978f021-3f2f-40cd-993e-fb0f7c3fa429)
)
(bus_entry (at 27.305 53.34) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 309c76d6-dec6-4384-b8e1-a0320bda63c4)
)
(bus_entry (at 27.305 71.12) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 325b0a80-c62f-40b4-bbe3-f84715ccda0c)
)
(bus_entry (at 171.45 45.72) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35e7cb57-2820-454e-8aee-07f1ad5109a0)
)
(bus_entry (at 168.91 40.64) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 393ffd2b-d3db-4af5-9cd0-444e7d75b449)
)
(bus_entry (at 192.405 68.58) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c562222-4952-45b6-b30a-4ad1d8da50c0)
)
(bus_entry (at 222.25 43.18) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c8fdf4d-69c6-4b9e-8adc-3a89ffdd0a76)
)
(bus_entry (at 222.25 40.64) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3cfb02e9-c965-4cf1-bad3-baa4b21b529c)
)
(bus_entry (at 222.25 50.8) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3dc6c280-454f-4755-8bed-85f81100c28e)
)
(bus_entry (at 84.455 60.96) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e4b65d0-5e93-45cf-9134-3e1f13c7ec6a)
)
(bus_entry (at 27.305 45.72) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e82e136-69e6-4948-83ef-9b8b9ed2b84a)
)
(bus_entry (at 119.38 50.8) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4044557a-ee26-4311-a196-1e6f0f7cb3dc)
)
(bus_entry (at 62.23 43.18) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41d9c78c-42ab-4dee-83bb-8b4cdfe6ad73)
)
(bus_entry (at 222.25 55.88) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43df7e2e-cd93-4fd1-a60e-0cfe7aa0e179)
)
(bus_entry (at 27.305 38.1) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46bdd035-8725-4604-b568-5a1525e1233e)
)
(bus_entry (at 84.455 55.88) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 475d1fec-ab30-4096-915b-6a0ecde3eb05)
)
(bus_entry (at 119.38 53.34) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48c86a6e-170c-4c67-b31c-4d55608e107f)
)
(bus_entry (at 141.605 38.1) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4992a0ac-7875-4431-a6d9-027383dd9526)
)
(bus_entry (at 27.305 60.96) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a3dd672-9597-4249-9229-291e9bd0e60c)
)
(bus_entry (at 84.455 50.8) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b17f476-a3dd-4843-9703-a69011f22e70)
)
(bus_entry (at 141.605 48.26) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c36338f-2cae-4bda-b801-a7dd41928656)
)
(bus_entry (at 84.455 40.64) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52489076-688d-4de3-9983-d682db1845e5)
)
(bus_entry (at 84.455 48.26) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 583dda1c-c129-4c54-bcc5-5b7e134ce22f)
)
(bus_entry (at 192.405 58.42) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a0258ea-c7d6-4850-bbe8-272dd7362dea)
)
(bus_entry (at 222.25 53.34) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e77d574-3a77-48f1-a97f-003892c58b68)
)
(bus_entry (at 84.455 73.66) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 635be50c-3c59-41f2-9319-52e0fce60e3e)
)
(bus_entry (at 141.605 53.34) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64f7cc6b-fa5d-4698-8f25-8093c679d6df)
)
(bus_entry (at 62.23 55.88) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b5b8a43-df2c-402c-beab-7bf13cff0e99)
)
(bus_entry (at 59.69 40.64) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6eeb9337-457e-4dc5-aa77-1e91baf610c0)
)
(bus_entry (at 84.455 71.12) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6fdb79e2-e4be-4798-9e69-ff73641fdca5)
)
(bus_entry (at 141.605 43.18) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7327915a-24b3-467b-8730-e4d26ff5d981)
)
(bus_entry (at 84.455 58.42) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73d2f2ef-ac52-4637-a01d-9ee7c282efea)
)
(bus_entry (at 84.455 38.1) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 763671e3-4f25-4172-81ad-56bdb0e87c71)
)
(bus_entry (at 141.605 73.66) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77d191fe-02e3-41d4-b636-805957e305ff)
)
(bus_entry (at 222.25 48.26) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 795d06c3-3d5d-4931-8ece-27ba60a749e7)
)
(bus_entry (at 27.305 63.5) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c0f2aa1-77cd-4c1e-a53e-02e675daa6f9)
)
(bus_entry (at 27.305 40.64) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e461ae7-3b1a-46d6-8b8e-13e11228c8fc)
)
(bus_entry (at 141.605 66.04) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80509541-4f68-4d1b-9bd1-8220cf5304dc)
)
(bus_entry (at 62.23 48.26) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80cf88c3-abc4-40df-a31a-f63117fe028d)
)
(bus_entry (at 192.405 40.64) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8175f099-e4c9-4bfc-8e78-69efa6864bb9)
)
(bus_entry (at 84.455 66.04) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 826e9a25-c059-4241-baa8-0b5a0c0b48ab)
)
(bus_entry (at 84.455 45.72) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 838bb970-eb0e-44ae-8970-ef382cab8333)
)
(bus_entry (at 27.305 50.8) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84f8aec6-e6ae-468b-9934-56295341ba5a)
)
(bus_entry (at 119.38 55.88) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8bc3efc1-7f60-4c1c-a7f9-e4d19a4edc94)
)
(bus_entry (at 141.605 68.58) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c0e8f29-6639-4e2f-82e8-32d80f6d1944)
)
(bus_entry (at 192.405 53.34) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99be1205-7f15-46cd-87cc-021ddf3c7627)
)
(bus_entry (at 141.605 60.96) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a75d0343-430e-48a6-adcd-25756019c6ba)
)
(bus_entry (at 141.605 71.12) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8cadd13-d328-43cf-b2a2-caa4f2f4c53b)
)
(bus_entry (at 171.45 50.8) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a903c915-853b-4191-80ae-d8b88a524daa)
)
(bus_entry (at 119.38 43.18) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid afa6d700-fc04-40c9-a4e5-895c35ff16c9)
)
(bus_entry (at 119.38 45.72) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b23fa593-2423-4048-b158-0c4e47eff907)
)
(bus_entry (at 192.405 55.88) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b259f3c2-1c75-4037-a5a3-5c96759b012f)
)
(bus_entry (at 27.305 48.26) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b438eccb-9505-484b-9949-3e69078e1fdd)
)
(bus_entry (at 62.23 50.8) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9e1b2e6-b208-4093-b097-4e432634a477)
)
(bus_entry (at 141.605 50.8) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba6a19e0-6bda-48d1-a997-82e8681326fd)
)
(bus_entry (at 119.38 40.64) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be09d13c-61ec-4040-a67e-9ce1b80a86c5)
)
(bus_entry (at 27.305 43.18) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c09392df-a2ed-4450-a96b-3ad4ef624863)
)
(bus_entry (at 84.455 68.58) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1387002-b2b5-4659-9f24-2fce5938489e)
)
(bus_entry (at 192.405 38.1) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1d0e9f2-ccf6-4ce0-8378-d3d8a1984dcc)
)
(bus_entry (at 141.605 40.64) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c396691e-84f8-4750-a56e-6237c646576f)
)
(bus_entry (at 141.605 58.42) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c51a1e9b-946b-4235-b744-ffcd4dd288eb)
)
(bus_entry (at 62.23 40.64) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6271770-2897-4906-a4f8-f6a6f48c4894)
)
(bus_entry (at 219.71 40.64) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c88c025b-31b4-4122-9b95-521193d6fe70)
)
(bus_entry (at 171.45 40.64) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd7b7b14-37fc-4888-a9fc-3e8b05469047)
)
(bus_entry (at 27.305 66.04) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce45ff22-d4d3-41e2-839e-246984d13d39)
)
(bus_entry (at 27.305 73.66) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce697df4-dff0-455c-92ac-83381359c0ed)
)
(bus_entry (at 27.305 55.88) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce7bc795-93ad-44b1-9990-4548f4fdcbc2)
)
(bus_entry (at 171.45 53.34) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d07b9863-45cc-4818-aae9-5317f59d81dc)
)
(bus_entry (at 119.38 48.26) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d32d60db-7289-452f-acae-bc84d9b6bbe5)
)
(bus_entry (at 84.455 53.34) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d382e04d-f199-4550-a3a4-3490c85b956f)
)
(bus_entry (at 62.23 53.34) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d49df7c5-b65a-4eca-b19e-37f54d5d127b)
)
(bus_entry (at 116.84 40.64) (size 2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d587931e-0692-41af-adf5-7763d48eca23)
)
(bus_entry (at 192.405 66.04) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dadf4509-e6cd-4ff0-9c52-69956124e587)
)
(bus_entry (at 84.455 43.18) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de7985e2-572f-4424-9595-ab50b11ac49c)
)
(bus_entry (at 84.455 63.5) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid def6d87f-3213-4498-9740-35836ae13836)
)
(bus_entry (at 141.605 45.72) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df1e5feb-ac8f-4d8a-bbd2-ff81a4716dd0)
)
(bus_entry (at 192.405 50.8) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e08abf3d-205e-43f0-987c-dc4541d61f5c)
)
(bus_entry (at 62.23 45.72) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e1dbd1a2-34f3-4c73-84e4-0bc49b69fda9)
)
(bus_entry (at 192.405 73.66) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e43c56f7-445b-41ce-a6cc-7f420ce3847b)
)
(bus_entry (at 192.405 63.5) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e9a02502-336e-4e6f-bb33-26b911f106e7)
)
(bus_entry (at 27.305 68.58) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f38f040d-18b8-4adb-80e0-9f7aba0598b0)
)
(bus_entry (at 192.405 48.26) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6d57859-0f2c-4e1c-96ec-524c6ef95900)
)
(wire (pts (xy 116.84 48.26) (xy 113.665 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0001afd9-4184-4f08-b50b-fb186387cd2b)
)
(wire (pts (xy 194.945 53.34) (xy 196.215 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02fd1628-2f58-4513-93d3-52100042aaae)
)
(wire (pts (xy 144.145 60.96) (xy 145.415 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 048aa41b-d570-40b2-a6ee-cf83d9597c97)
)
(wire (pts (xy 86.995 76.2) (xy 88.265 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0808f71d-5f40-41d5-8083-16d808327a84)
)
(wire (pts (xy 93.345 34.29) (xy 92.075 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0923c4e5-530f-4cfa-973a-ab45b25f7705)
)
(wire (pts (xy 194.945 66.04) (xy 196.215 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09499908-60a9-4377-8b26-42007606e269)
)
(bus (pts (xy 222.25 53.34) (xy 222.25 55.88))
(stroke (width 0) (type default) (color 255 153 0 1))
(uuid 0a5275f3-78b0-45f7-b1c7-388f5152896e)
)
(wire (pts (xy 86.995 50.8) (xy 88.265 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bb976de-d17a-4e8b-923b-f6dbb97d9df4)
)
(bus (pts (xy 84.455 68.58) (xy 84.455 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bbd6db6-1d68-4543-8598-aabe982a327a)
)
(wire (pts (xy 86.995 45.72) (xy 88.265 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c7c3ce2-2ebe-4e1f-80ce-3660856c6d44)
)
(bus (pts (xy 62.23 38.1) (xy 62.23 19.05))
(stroke (width 0) (type default) (color 255 153 0 1))
(uuid 0cadf887-aa80-4cd4-9885-fa6d4966228f)
)
(bus (pts (xy 27.305 71.12) (xy 27.305 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f41c6ff-f1e6-477e-8071-ca15a5b75a37)
)
(bus (pts (xy 84.455 48.26) (xy 84.455 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 106802e7-abad-4031-b6d4-b1f144dc98b1)
)
(wire (pts (xy 56.515 40.64) (xy 59.69 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10cebafa-500c-48aa-bc00-b6c0dbb24ab1)
)
(wire (pts (xy 29.845 71.12) (xy 31.115 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1280fade-7286-469d-ab24-3af213758c4d)
)
(bus (pts (xy 141.605 40.64) (xy 141.605 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12830a89-7db9-4c86-a333-c22c87e92a12)
)
(bus (pts (xy 84.455 38.1) (xy 84.455 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12e86911-3be4-4bb3-8eac-2415b0e81d44)
)
(wire (pts (xy 113.665 40.64) (xy 116.84 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 138b5a2a-ff34-465d-b459-9e8ca9c50edf)
)
(bus (pts (xy 192.405 38.1) (xy 192.405 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 142e762d-c41c-43a1-87b7-51a58266fa15)
)
(wire (pts (xy 86.995 43.18) (xy 88.265 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14d67d6a-53fb-4334-b4b6-017875a53091)
)
(bus (pts (xy 27.305 53.34) (xy 27.305 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17fdf325-095b-4048-bee4-221ce7cdcd15)
)
(bus (pts (xy 192.405 50.8) (xy 192.405 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1aa852e6-d0ef-4a2b-899a-2f9d189bef9a)
)
(bus (pts (xy 84.455 55.88) (xy 84.455 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b117949-5601-4e89-8c30-4256ab248f46)
)
(bus (pts (xy 222.25 40.64) (xy 222.25 43.18))
(stroke (width 0) (type default) (color 255 153 0 1))
(uuid 1b54674d-7d67-427a-b2e0-f5ee9e90b549)
)
(bus (pts (xy 222.25 50.8) (xy 222.25 53.34))
(stroke (width 0) (type default) (color 255 153 0 1))
(uuid 1c0f3ba3-c449-4e4c-ac55-ab9d910940c9)
)
(bus (pts (xy 141.605 55.88) (xy 141.605 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ffc911b-2c6b-44a8-8876-992ff072ed78)
)
(bus (pts (xy 27.305 38.1) (xy 27.305 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23b32f59-7b35-4a1c-8d0d-76e8ccc2cdd2)
)
(bus (pts (xy 27.305 58.42) (xy 27.305 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26cead96-1f0c-46a1-aea5-fc63f1a83434)
)
(bus (pts (xy 171.45 45.72) (xy 171.45 48.26))
(stroke (width 0) (type default) (color 255 153 0 1))
(uuid 2719b367-0998-4aef-ae1b-115d3deefcf4)
)
(bus (pts (xy 141.605 66.04) (xy 141.605 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27cbb69c-b950-4483-9d68-50e179d00f6b)
)
(bus (pts (xy 119.38 19.05) (xy 171.45 19.05))
(stroke (width 0) (type default) (color 255 153 0 1))
(uuid 28380ad7-2c2c-4a61-b954-1fe98ed47956)
)
(bus (pts (xy 84.455 53.34) (xy 84.455 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2aa3670d-eb18-4d69-a1bd-b8ccedae1add)
)