-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nano 3x3 LED Cube Schematic.kicad_sch
1995 lines (1946 loc) · 74.9 KB
/
Nano 3x3 LED Cube Schematic.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 e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(title_block
(title "Nano 3x3 LED Cube")
(date "2023-04-04")
(rev "Rev 1")
(company "UnsignedArduinio")
(comment 1 "Schematic for the 3x3 LED Cube")
)
(lib_symbols
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 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" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (id 1) (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.016 -0.254 90)
(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" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_US_0_1"
(polyline
(pts
(xy 0 -2.286)
(xy 0 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -0.762)
(xy 1.016 -1.143)
(xy 0 -1.524)
(xy -1.016 -1.905)
(xy 0 -2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.762)
(xy 1.016 0.381)
(xy 0 0)
(xy -1.016 -0.381)
(xy 0 -0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 1.016 1.905)
(xy 0 1.524)
(xy -1.016 1.143)
(xy 0 0.762)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_US_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MCU_Module:Arduino_Nano_v2.x" (in_bom yes) (on_board yes)
(property "Reference" "A" (id 0) (at -10.16 23.495 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "Arduino_Nano_v2.x" (id 1) (at 5.08 -24.13 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Module:Arduino_Nano" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "https://www.arduino.cc/en/uploads/Main/ArduinoNanoManual23.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Arduino nano microcontroller module USB" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Arduino Nano v2.x" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Arduino*Nano*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Arduino_Nano_v2.x_0_1"
(rectangle (start -10.16 22.86) (end 10.16 -22.86)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "Arduino_Nano_v2.x_1_1"
(pin bidirectional line (at -12.7 12.7 0) (length 2.54)
(name "D1/TX" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -2.54 0) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -5.08 0) (length 2.54)
(name "D8" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
(name "D9" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -10.16 0) (length 2.54)
(name "D10" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -12.7 0) (length 2.54)
(name "D11" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -15.24 0) (length 2.54)
(name "D12" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -17.78 0) (length 2.54)
(name "D13" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 2.54 25.4 270) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 5.08 180) (length 2.54)
(name "AREF" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 0 180) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 15.24 0) (length 2.54)
(name "D0/RX" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -7.62 180) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -10.16 180) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -12.7 180) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -15.24 180) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -17.78 180) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 5.08 25.4 270) (length 2.54)
(name "+5V" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 15.24 180) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -25.4 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 12.7 180) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 25.4 270) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -25.4 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 10.16 0) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 7.62 0) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 5.08 0) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 2.54 0) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 0 0) (length 2.54)
(name "D6" (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 116.84 45.72) (diameter 0) (color 0 0 0 0)
(uuid 0d0deef5-e34b-407e-acd9-571477bbcd8e)
)
(junction (at 81.28 102.87) (diameter 0) (color 0 0 0 0)
(uuid 14bad2b5-14f9-4baa-bf30-ca00cdfd0fc8)
)
(junction (at 118.11 53.34) (diameter 0) (color 0 0 0 0)
(uuid 16f4f0bf-2b3e-4e6c-8fef-883a51f77935)
)
(junction (at 144.78 50.8) (diameter 0) (color 0 0 0 0)
(uuid 1854d908-2ea8-4c7f-9a59-698583526ab1)
)
(junction (at 119.38 60.96) (diameter 0) (color 0 0 0 0)
(uuid 1b662170-fa07-4253-aed3-108773c4b68e)
)
(junction (at 173.99 102.87) (diameter 0) (color 0 0 0 0)
(uuid 1b8a605b-468c-433e-aa41-8a9598226938)
)
(junction (at 52.07 102.87) (diameter 0) (color 0 0 0 0)
(uuid 1e30de74-f65d-444c-9445-45ab29578c57)
)
(junction (at 52.07 116.84) (diameter 0) (color 0 0 0 0)
(uuid 307d3a50-eab7-4387-9aff-df8c37948ae3)
)
(junction (at 185.42 55.88) (diameter 0) (color 0 0 0 0)
(uuid 4548c03b-b414-4ed5-9041-24bea26e95c7)
)
(junction (at 146.05 58.42) (diameter 0) (color 0 0 0 0)
(uuid 46500a21-58b8-452b-a4cb-b4b9e9ff93c3)
)
(junction (at 172.72 60.96) (diameter 0) (color 0 0 0 0)
(uuid 4c8fb55b-6396-4112-8e2f-f61016990be9)
)
(junction (at 81.28 120.65) (diameter 0) (color 0 0 0 0)
(uuid 5276694b-e2b6-4575-8a61-8b23fd4081ee)
)
(junction (at 105.41 116.84) (diameter 0) (color 0 0 0 0)
(uuid 5545521a-955d-46ec-97c9-50308941d49e)
)
(junction (at 186.69 63.5) (diameter 0) (color 0 0 0 0)
(uuid 589c6547-8a4a-48e7-b3f5-dc9405bf9c32)
)
(junction (at 187.96 102.87) (diameter 0) (color 0 0 0 0)
(uuid 5af772b6-d805-4cc8-ab1b-3e5b1924ce10)
)
(junction (at 132.08 55.88) (diameter 0) (color 0 0 0 0)
(uuid 5bf33c2e-6b40-422e-8930-bb1d44066b46)
)
(junction (at 158.75 102.87) (diameter 0) (color 0 0 0 0)
(uuid 5c3d2362-6e92-46a9-ae5e-07f3d9335c06)
)
(junction (at 130.81 48.26) (diameter 0) (color 0 0 0 0)
(uuid 6238693e-0a03-49d0-b046-1e976f20e194)
)
(junction (at 134.62 102.87) (diameter 0) (color 0 0 0 0)
(uuid 6488f31c-aced-4e3e-b37f-a051d57228a8)
)
(junction (at 134.62 120.65) (diameter 0) (color 0 0 0 0)
(uuid 64c3677b-a921-4250-b5dc-0850081437ae)
)
(junction (at 184.15 48.26) (diameter 0) (color 0 0 0 0)
(uuid 66602015-ee24-4ddc-a48b-960c5bf17868)
)
(junction (at 199.39 58.42) (diameter 0) (color 0 0 0 0)
(uuid 6a00ac78-2468-4726-a64b-a20f69a58a8a)
)
(junction (at 81.28 116.84) (diameter 0) (color 0 0 0 0)
(uuid 6b21c5f6-20ec-4993-bcfb-9ea8cb698898)
)
(junction (at 236.22 82.55) (diameter 0) (color 0 0 0 0)
(uuid 740dece0-e560-46ff-848e-126e835f66fb)
)
(junction (at 173.99 116.84) (diameter 0) (color 0 0 0 0)
(uuid 828dd4ff-eb93-4460-8373-4f328e4e590d)
)
(junction (at 67.31 116.84) (diameter 0) (color 0 0 0 0)
(uuid 84a24784-274d-4047-b018-7778422a86b3)
)
(junction (at 147.32 66.04) (diameter 0) (color 0 0 0 0)
(uuid 9e6f07b4-c986-4cff-9dae-b2e36de603da)
)
(junction (at 120.65 116.84) (diameter 0) (color 0 0 0 0)
(uuid a4ae5efd-0c3c-406d-bfb1-7d47705f89de)
)
(junction (at 67.31 120.65) (diameter 0) (color 0 0 0 0)
(uuid a4c50b89-7e73-411b-9c5a-b63ba3991f54)
)
(junction (at 105.41 102.87) (diameter 0) (color 0 0 0 0)
(uuid a7fac4a1-bee4-4e3f-ba2e-f3bfe2890c29)
)
(junction (at 120.65 102.87) (diameter 0) (color 0 0 0 0)
(uuid b24e3754-0241-455f-b692-0f133ac51005)
)
(junction (at 198.12 50.8) (diameter 0) (color 0 0 0 0)
(uuid b4437f58-0bf2-46cc-b836-06aaad3449fb)
)
(junction (at 120.65 120.65) (diameter 0) (color 0 0 0 0)
(uuid b88c8a84-8238-47df-aaf5-f2d5c7025459)
)
(junction (at 133.35 63.5) (diameter 0) (color 0 0 0 0)
(uuid ba0fcd1b-a335-4709-be7a-c9e05bc8c589)
)
(junction (at 173.99 120.65) (diameter 0) (color 0 0 0 0)
(uuid d66135fc-e446-40f7-8f8b-3ed0be063b6c)
)
(junction (at 158.75 116.84) (diameter 0) (color 0 0 0 0)
(uuid ddca08fb-877e-4c8b-bfed-a3ebdefab9ff)
)
(junction (at 171.45 53.34) (diameter 0) (color 0 0 0 0)
(uuid de044f3d-44d1-498a-a6b2-5c912ad61f2d)
)
(junction (at 170.18 45.72) (diameter 0) (color 0 0 0 0)
(uuid deecb9ea-0905-4798-a0f7-2da994372d6a)
)
(junction (at 200.66 66.04) (diameter 0) (color 0 0 0 0)
(uuid e1c41d4d-56d3-4b78-864a-75ac26f3b808)
)
(junction (at 187.96 120.65) (diameter 0) (color 0 0 0 0)
(uuid eebb90dd-0127-4018-bbd1-928f5b0c89ad)
)
(junction (at 67.31 102.87) (diameter 0) (color 0 0 0 0)
(uuid f699775e-0c41-4306-a639-894281b2ef39)
)
(junction (at 134.62 116.84) (diameter 0) (color 0 0 0 0)
(uuid f9e9de7c-6395-4278-b154-3ab6d08675a6)
)
(junction (at 187.96 116.84) (diameter 0) (color 0 0 0 0)
(uuid fa5eb1f4-7812-4dfd-80fd-d0beed2cc05c)
)
(wire (pts (xy 236.22 82.55) (xy 237.49 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 046484b9-cf69-4602-81aa-42c9a6e6e838)
)
(wire (pts (xy 52.07 102.87) (xy 52.07 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 071e6508-25a4-401a-a9c3-b980920cc249)
)
(wire (pts (xy 116.84 116.84) (xy 119.38 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07538b47-204c-41c2-be94-8f289c52ae23)
)
(wire (pts (xy 146.05 58.42) (xy 92.71 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ba4236a-b729-49ba-86ba-057872cbf96d)
)
(wire (pts (xy 116.84 45.72) (xy 170.18 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ffbf712-c0f5-460a-ac3d-43c78522166b)
)
(wire (pts (xy 184.15 102.87) (xy 185.42 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 105498e1-573b-42c4-bf3d-35963fe6ca08)
)
(wire (pts (xy 158.75 102.87) (xy 162.56 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 105b867b-f700-459f-869b-c98ce3e2cd24)
)
(wire (pts (xy 146.05 58.42) (xy 199.39 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11450103-2a33-45ba-90ed-c43b98c39142)
)
(wire (pts (xy 172.72 60.96) (xy 119.38 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12d03f61-7f46-4047-a176-39aa6fa32ef7)
)
(wire (pts (xy 156.21 120.65) (xy 156.21 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1599eca0-14e9-4594-b8e1-c3ac992de321)
)
(wire (pts (xy 69.85 88.9) (xy 67.31 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15f854e0-32ef-413c-86b4-288c3a7003f7)
)
(wire (pts (xy 120.65 116.84) (xy 123.19 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15fdb541-e3be-414f-8ce4-54c3071ca42f)
)
(wire (pts (xy 185.42 55.88) (xy 132.08 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17c1e25b-c975-43e9-ae6b-62e9c19688af)
)
(wire (pts (xy 173.99 88.9) (xy 173.99 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 184e329a-0f92-4ef6-bf9d-11333a9f984d)
)
(wire (pts (xy 105.41 102.87) (xy 109.22 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c83edd7-91f8-4853-b843-e0e60787c63b)
)
(wire (pts (xy 134.62 116.84) (xy 137.16 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c9715da-3300-46d2-849e-3514e2eb93d5)
)
(wire (pts (xy 52.07 88.9) (xy 52.07 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ed6ccbe-78ac-45f9-9fc0-f0630022da49)
)
(wire (pts (xy 147.32 66.04) (xy 147.32 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20fe07ab-f0a9-4907-80ba-dbb8c364030e)
)
(wire (pts (xy 80.01 63.5) (xy 80.01 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 214ff57d-997e-42f2-a7ee-2f1e91877299)
)
(wire (pts (xy 247.65 55.88) (xy 259.08 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21f3d284-326d-4662-82f0-7f7603cb8c70)
)
(wire (pts (xy 105.41 102.87) (xy 105.41 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22928bda-5efb-414e-bab1-4e6a30afd2d0)
)
(wire (pts (xy 52.07 102.87) (xy 55.88 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 272c1c40-1f27-4ff8-9edd-855c746707e2)
)
(wire (pts (xy 187.96 116.84) (xy 187.96 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2790c0bc-a73b-46d4-8e0c-bf3677b2d15c)
)
(wire (pts (xy 158.75 116.84) (xy 158.75 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28729872-cf37-4f56-b166-2b9ed446b4ca)
)
(wire (pts (xy 199.39 58.42) (xy 212.09 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a0f20cd-65b5-447d-a448-a1046c12cbbc)
)
(wire (pts (xy 130.81 48.26) (xy 130.81 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a4201a4-a805-4094-a68e-91deac045b02)
)
(wire (pts (xy 120.65 116.84) (xy 120.65 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c175f4a-b3c7-452c-9b57-d534d626b902)
)
(wire (pts (xy 173.99 102.87) (xy 176.53 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c34a780-67a1-49b4-b1ba-1f099088f9dd)
)
(wire (pts (xy 77.47 48.26) (xy 77.47 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 306a23c0-32e6-48d9-8075-ae15e9559568)
)
(wire (pts (xy 187.96 116.84) (xy 190.5 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30822ed7-0fbb-4ec9-abf3-c3d91ae3cddd)
)
(wire (pts (xy 144.78 116.84) (xy 147.32 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35628fc9-8251-4fb1-977b-04501bc449a4)
)
(wire (pts (xy 170.18 116.84) (xy 172.72 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35d57630-ef8a-478d-b2ad-03b9fafea6a0)
)
(wire (pts (xy 212.09 63.5) (xy 186.69 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37a9409c-a687-4645-9c09-2b07236f280a)
)
(wire (pts (xy 219.71 55.88) (xy 222.25 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a0bdb46-0a76-4639-87e8-61f6c27fdd98)
)
(wire (pts (xy 123.19 88.9) (xy 120.65 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3af8d9f2-3c3d-43e0-85be-62745b8fc40c)
)
(wire (pts (xy 261.62 123.19) (xy 261.62 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d4a0e69-596e-477d-99e7-cae09713ca20)
)
(wire (pts (xy 130.81 102.87) (xy 132.08 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3daf7cd9-5670-4228-bbbf-c0c53a701900)
)
(wire (pts (xy 105.41 116.84) (xy 105.41 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f6540fd-caf8-4bc1-b2f5-ff8d95595629)
)
(wire (pts (xy 119.38 60.96) (xy 66.04 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f6a9dcb-3b2a-4d28-aeca-d3bf16c960fb)
)
(wire (pts (xy 219.71 60.96) (xy 222.25 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 403b9617-f1d2-417c-afb6-1a11a075bf2a)
)
(wire (pts (xy 118.11 53.34) (xy 64.77 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4292018a-8d2a-4762-bdde-b79acf9ee18d)
)
(wire (pts (xy 55.88 88.9) (xy 52.07 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 435940ff-64c0-4955-9b31-4c578829ebd1)
)
(wire (pts (xy 190.5 88.9) (xy 187.96 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45984a7c-1945-4d6a-9f18-1b71b4ce0eb8)
)
(wire (pts (xy 184.15 48.26) (xy 212.09 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46a76afe-38f5-48af-a813-697ef0ef8368)
)
(wire (pts (xy 134.62 102.87) (xy 137.16 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47400847-dfde-41cc-9d8f-6009512a854b)
)
(wire (pts (xy 172.72 60.96) (xy 172.72 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48f2cd19-c155-439b-ac8a-c0b8b4679524)
)
(wire (pts (xy 187.96 120.65) (xy 259.08 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a7040c0-8d2e-42f0-8a06-cf59a35999a2)
)
(wire (pts (xy 133.35 63.5) (xy 133.35 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ace3002-ca98-4130-8119-977b74a86d3a)
)
(wire (pts (xy 63.5 102.87) (xy 64.77 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4adcce12-6427-48fe-bf42-ba00df70b433)
)
(wire (pts (xy 102.87 123.19) (xy 261.62 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c7600d7-e8a2-4b72-a989-f91c88eda976)
)
(wire (pts (xy 219.71 53.34) (xy 222.25 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53467846-820b-4d89-ac8d-604a3bacb8c5)
)
(wire (pts (xy 187.96 88.9) (xy 187.96 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55aea216-6ad9-4e4c-999a-e082416fe988)
)
(wire (pts (xy 219.71 63.5) (xy 222.25 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55aed3b6-0268-459d-a4c1-16654fe7966c)
)
(wire (pts (xy 81.28 120.65) (xy 102.87 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56057c1b-6aba-4185-92a2-2b33585318a1)
)
(wire (pts (xy 234.95 81.28) (xy 234.95 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57b41e7a-b44c-4037-a94b-8414866a308f)
)
(wire (pts (xy 184.15 48.26) (xy 184.15 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58757211-1d30-449c-aeda-884bd551c6f4)
)
(wire (pts (xy 93.98 66.04) (xy 93.98 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5881fdc3-f9f6-45ae-8d3e-c55257fda8e7)
)
(wire (pts (xy 212.09 66.04) (xy 200.66 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a89d5ea-ca5a-4e2f-9297-8afb76b18c9e)
)
(wire (pts (xy 109.22 88.9) (xy 105.41 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60f154e1-9fdd-43c2-8194-f957e8c4ffba)
)
(wire (pts (xy 52.07 116.84) (xy 52.07 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 614b2de3-67c1-43ea-9d1e-44db660ae462)
)
(wire (pts (xy 77.47 102.87) (xy 78.74 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61651000-3d34-4e7e-9d8a-c8608a9a4a10)
)
(wire (pts (xy 67.31 116.84) (xy 67.31 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61b6bcdc-9e70-4c01-9f10-5e3fc82ca57b)
)
(wire (pts (xy 63.5 45.72) (xy 63.5 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6373185f-9250-48bd-9b53-a490713be34a)
)
(wire (pts (xy 120.65 102.87) (xy 123.19 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 652bed12-3356-419d-ab4c-4d64f976939a)
)
(wire (pts (xy 105.41 88.9) (xy 105.41 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 659c6e69-ff08-4495-b5ac-63ab1cfc2ca8)
)
(wire (pts (xy 158.75 120.65) (xy 173.99 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 673ff2f4-f968-47ba-b285-26cc3304873d)
)
(wire (pts (xy 67.31 88.9) (xy 67.31 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6837b7c0-55ef-48f9-9f7b-bb6da267d0c9)
)
(wire (pts (xy 77.47 116.84) (xy 80.01 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d7ddeb5-2d06-42a6-b184-8c856be74d91)
)
(wire (pts (xy 198.12 102.87) (xy 199.39 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6fb953d8-32cb-4cee-b51a-c7f433f93766)
)
(wire (pts (xy 137.16 88.9) (xy 134.62 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6fd3c4a9-69eb-4baf-b0cc-82a1d7f1ecac)
)
(wire (pts (xy 67.31 120.65) (xy 81.28 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 709e4e97-2e75-4628-9510-45d305a85e32)
)
(wire (pts (xy 184.15 116.84) (xy 186.69 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72136bbe-4f31-4c84-9765-7858b7d3fdee)
)
(wire (pts (xy 173.99 116.84) (xy 176.53 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72577d74-c97c-4488-880f-2a67faa90e8f)
)
(wire (pts (xy 234.95 82.55) (xy 236.22 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 746ce1c3-06a8-41ac-84fb-c220b3d79c9d)
)
(wire (pts (xy 105.41 120.65) (xy 120.65 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 749a5a07-2b58-454f-89a5-039182591f93)
)
(wire (pts (xy 162.56 88.9) (xy 158.75 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 750a3d68-35af-4f42-b1a3-00d00044c09f)
)
(wire (pts (xy 247.65 60.96) (xy 261.62 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75f0e4cd-e605-4a6d-a607-e7eee567dc07)
)
(wire (pts (xy 173.99 102.87) (xy 173.99 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 785fc902-ce1c-4a7c-8537-2c298d9076bd)
)
(wire (pts (xy 247.65 58.42) (xy 260.35 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7930808b-f097-4150-a300-30a0f36621b5)
)
(wire (pts (xy 66.04 60.96) (xy 66.04 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79927320-6aa4-4480-9baa-547c1d0d89dc)
)
(wire (pts (xy 170.18 45.72) (xy 212.09 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ed5902b-4a1d-4cb4-97c2-17474db3252e)
)
(wire (pts (xy 173.99 120.65) (xy 187.96 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 807e08b1-0f09-426b-aabf-aabc354ad55f)
)
(wire (pts (xy 171.45 53.34) (xy 118.11 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8219ca41-1e9e-4f2c-919d-0f5dec39d852)
)
(wire (pts (xy 170.18 45.72) (xy 170.18 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 835e98e5-b93a-4dbf-944a-8ed50dacd300)
)
(wire (pts (xy 240.03 29.21) (xy 240.03 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8624e255-6c97-4f8f-9fe8-b21c5c0976b2)
)
(wire (pts (xy 130.81 116.84) (xy 133.35 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87279f7a-cb26-4aa6-8562-725fcf55a761)
)
(wire (pts (xy 52.07 120.65) (xy 67.31 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a42384e-0491-42ee-8401-94580cd01932)
)
(wire (pts (xy 118.11 53.34) (xy 118.11 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d8e803f-a5c8-4188-bfb4-26b89c8ee41c)
)
(wire (pts (xy 132.08 55.88) (xy 78.74 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e455918-85f1-4269-99ef-a47d9b63a005)
)
(wire (pts (xy 219.71 48.26) (xy 222.25 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8fdb35e9-6c85-4399-93d2-af2d782997b9)
)
(wire (pts (xy 83.82 88.9) (xy 81.28 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91131d11-60b3-49b7-8fba-bac4ffb2c8df)
)
(wire (pts (xy 236.22 82.55) (xy 236.22 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 917d66ba-6948-4577-84e2-28ceebf9a718)
)
(wire (pts (xy 219.71 66.04) (xy 222.25 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93673860-0375-44a7-bec3-6265829ccae7)
)
(wire (pts (xy 185.42 55.88) (xy 185.42 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94cc6e33-6453-4299-900a-1333ae6c9db7)
)
(wire (pts (xy 219.71 50.8) (xy 222.25 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96b69095-dccf-478b-bc2f-c86b2e2ae643)
)
(wire (pts (xy 212.09 55.88) (xy 185.42 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98953f8e-0c12-4e19-b474-b32448beeb84)
)
(wire (pts (xy 81.28 116.84) (xy 83.82 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98d86c16-e96e-4eec-99a4-afd04f2a8a5f)
)
(wire (pts (xy 186.69 63.5) (xy 186.69 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98e6bd14-c4d9-4f1a-af49-7e228c75d69d)
)
(wire (pts (xy 92.71 58.42) (xy 92.71 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99cc4060-f641-4504-905c-a91dcc8456ab)
)
(wire (pts (xy 199.39 58.42) (xy 199.39 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a67c5c1-d6c2-47b7-bde8-ec7e0a5ab983)
)
(wire (pts (xy 120.65 120.65) (xy 134.62 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a835db6-7a54-4cc2-bfc8-a662087f4e27)
)
(wire (pts (xy 184.15 48.26) (xy 130.81 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9abf2733-7baa-4bd6-be6e-a6f2ba780277)
)
(wire (pts (xy 176.53 88.9) (xy 173.99 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b8b9e46-76a0-4748-bf33-8597d820dc2d)
)
(wire (pts (xy 200.66 66.04) (xy 200.66 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9cdd89f3-a4b9-4830-a0b5-414d8dd774b2)
)
(wire (pts (xy 171.45 53.34) (xy 171.45 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e40453c-ae46-41e3-89a2-8665651d97a2)
)
(wire (pts (xy 198.12 50.8) (xy 198.12 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ea1c4e5-d9c9-42cb-9b5d-af7c5be3ed19)
)
(wire (pts (xy 200.66 66.04) (xy 147.32 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9eaba890-d9d7-47a7-966e-6ec9110a136b)
)
(wire (pts (xy 147.32 66.04) (xy 93.98 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9fb01e19-efd9-4de0-83c0-8679621a898f)
)
(wire (pts (xy 158.75 88.9) (xy 158.75 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0388f6f-4d84-412c-8aa6-fa0e058b2449)
)
(wire (pts (xy 198.12 50.8) (xy 212.09 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a138fcda-a22f-4481-afd0-8a03ede5c128)
)
(wire (pts (xy 146.05 58.42) (xy 146.05 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))