-
Notifications
You must be signed in to change notification settings - Fork 0
/
LEDs.kicad_sch
3229 lines (3117 loc) · 125 KB
/
LEDs.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 8bb2eb58-be45-4379-8318-3ce3ea7b834e)
(paper "A4")
(lib_symbols
(symbol "74xGxx:74AHCT1G125" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U5" (id 0) (at -0.635 -7.1104 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74AHCT1G125" (id 1) (at -0.635 -9.6473 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 0 12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (id 3) (at 0 12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Single Gate Buff Tri-State LVC CMOS" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Single Buffer Gate Tri-State, Low-Voltage CMOS" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT* SG-*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74AHCT1G125_0_0"
(text "GND" (at 1.27 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(text "VCC" (at -5.08 -3.81 0)
(effects (font (size 1.27 1.27)))
)
)
(symbol "74AHCT1G125_0_1"
(rectangle (start -7.62 -2.54) (end 3.81 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(polyline
(pts
(xy -5.08 3.81)
(xy -5.08 -1.27)
(xy 1.27 1.27)
(xy -5.08 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "74AHCT1G125_1_1"
(pin input inverted (at -1.27 6.35 270) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin input line (at -8.89 1.27 0) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin output line (at 6.35 -3.81 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin tri_state line (at 5.08 1.27 180) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin input line (at -10.16 -3.81 0) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 2.54 90) (length 0) hide
(name "VCC" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
)
)
(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 "marbastlib-various:SK6812MINI-E" (in_bom yes) (on_board yes)
(property "Reference" "LED" (id 0) (at 2.54 -6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6812MINI-E" (id 1) (at 7.62 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "marbastlib-various:LED_6028R" (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" "reverse mount led revmount rgb" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Reverse mount adressable LED (WS2812 protocol)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SK6812MINI-E_0_0"
(text "RGB" (at 2.286 -4.191 0)
(effects (font (size 0.762 0.762)))
)
)
(symbol "SK6812MINI-E_0_1"
(polyline
(pts
(xy 1.27 -3.556)
(xy 1.778 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 1.778 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -3.556)
(xy 2.667 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -2.54)
(xy 1.27 -3.556)
(xy 1.27 -3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.524)
(xy 1.27 -2.54)
(xy 1.27 -2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.683 -1.016)
(xy 3.683 -3.556)
(xy 3.683 -4.064)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -1.524)
(xy 2.667 -1.524)
(xy 3.683 -3.556)
(xy 4.699 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 5.08) (end -5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "SK6812MINI-E_1_1"
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "DOUT" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "DIN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "4" (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 102.87 124.46) (diameter 0) (color 0 0 0 0)
(uuid 0574b424-c06a-43d1-8fb9-24c7f6a781fa)
)
(junction (at 161.29 106.68) (diameter 0) (color 0 0 0 0)
(uuid 109a3925-844d-4e9c-a147-302fcc03590f)
)
(junction (at 102.87 153.67) (diameter 0) (color 0 0 0 0)
(uuid 115791a6-bdce-43a9-8710-6b8c30ae49f0)
)
(junction (at 219.71 78.74) (diameter 0) (color 0 0 0 0)
(uuid 144df356-9a76-4db9-ac1f-99ef3cd0eddc)
)
(junction (at 219.71 39.37) (diameter 0) (color 0 0 0 0)
(uuid 1aefd241-42d6-491e-83dc-4ad9e862e669)
)
(junction (at 102.87 39.37) (diameter 0) (color 0 0 0 0)
(uuid 1c58bca3-092e-457d-a310-5a4e600fa578)
)
(junction (at 248.92 130.81) (diameter 0) (color 0 0 0 0)
(uuid 1d91b02a-5f1f-42fa-909f-5c28d0d3435a)
)
(junction (at 73.66 88.9) (diameter 0) (color 0 0 0 0)
(uuid 1f52b9fc-6414-47f6-95e1-2eed62f4d9eb)
)
(junction (at 190.5 124.46) (diameter 0) (color 0 0 0 0)
(uuid 1fadde46-0369-49d6-99f9-ec1a5b393687)
)
(junction (at 132.08 60.96) (diameter 0) (color 0 0 0 0)
(uuid 229d2829-0cdc-4f3d-95db-aa3f26f65bc2)
)
(junction (at 161.29 124.46) (diameter 0) (color 0 0 0 0)
(uuid 26ebeee2-2c66-4813-8374-41dbc2ab9e47)
)
(junction (at 102.87 60.96) (diameter 0) (color 0 0 0 0)
(uuid 28791780-23de-41b0-beb8-16f82a740239)
)
(junction (at 248.92 78.74) (diameter 0) (color 0 0 0 0)
(uuid 324a51de-8adc-4877-963e-9bfcb8a18dbc)
)
(junction (at 73.66 39.37) (diameter 0) (color 0 0 0 0)
(uuid 3372f7e8-0434-4dd2-80e0-a5d64ae0aa0b)
)
(junction (at 73.66 106.68) (diameter 0) (color 0 0 0 0)
(uuid 38277180-f717-475e-b0ba-d02fe5c45b18)
)
(junction (at 190.5 78.74) (diameter 0) (color 0 0 0 0)
(uuid 39016d05-7c8c-4303-838c-a80f371dd33d)
)
(junction (at 132.08 130.81) (diameter 0) (color 0 0 0 0)
(uuid 39dac140-16f1-47bd-9e4b-5c9809dacad8)
)
(junction (at 73.66 60.96) (diameter 0) (color 0 0 0 0)
(uuid 3aca5c4d-64f7-44c9-84b8-66dba3ddbe56)
)
(junction (at 190.5 106.68) (diameter 0) (color 0 0 0 0)
(uuid 3b1da5d4-990d-4b04-b0a9-e816a2524606)
)
(junction (at 132.08 78.74) (diameter 0) (color 0 0 0 0)
(uuid 3e2fb635-ecaa-40f7-ab27-24331cee51aa)
)
(junction (at 73.66 80.01) (diameter 0) (color 0 0 0 0)
(uuid 3f58a748-5a20-4a62-b058-b4607b2dd9f9)
)
(junction (at 190.5 43.18) (diameter 0) (color 0 0 0 0)
(uuid 41493c3e-7d04-4e01-a6e5-5d44ca7d0301)
)
(junction (at 73.66 153.67) (diameter 0) (color 0 0 0 0)
(uuid 44e37513-0eea-4368-b153-9d54dc5f0add)
)
(junction (at 161.29 130.81) (diameter 0) (color 0 0 0 0)
(uuid 45b6e1f0-47b0-44e1-a7d6-193109037011)
)
(junction (at 132.08 39.37) (diameter 0) (color 0 0 0 0)
(uuid 4638afaa-9ad9-4d74-876f-f21f686d680c)
)
(junction (at 161.29 88.9) (diameter 0) (color 0 0 0 0)
(uuid 4c08455b-f4b1-41ed-a330-ee87b3ae29d4)
)
(junction (at 161.29 43.18) (diameter 0) (color 0 0 0 0)
(uuid 4cb21b9e-5feb-4921-b05b-72fd26dc4d5e)
)
(junction (at 102.87 43.18) (diameter 0) (color 0 0 0 0)
(uuid 51737e89-c3ac-40d6-bea1-b1786233db2d)
)
(junction (at 190.5 60.96) (diameter 0) (color 0 0 0 0)
(uuid 54a9152a-0ea7-4868-b4f3-935ea2a0db74)
)
(junction (at 248.92 88.9) (diameter 0) (color 0 0 0 0)
(uuid 56862385-25f9-4b3c-bb81-d3aeae248ba0)
)
(junction (at 219.71 130.81) (diameter 0) (color 0 0 0 0)
(uuid 59752873-4247-4802-a88f-54e8bf64add0)
)
(junction (at 248.92 106.68) (diameter 0) (color 0 0 0 0)
(uuid 63a09aca-53da-4f5b-8a74-32434b50967f)
)
(junction (at 132.08 153.67) (diameter 0) (color 0 0 0 0)
(uuid 6e9d2996-9c34-49a8-abda-83cd2823748f)
)
(junction (at 132.08 135.89) (diameter 0) (color 0 0 0 0)
(uuid 77ef0eb4-2081-4e5e-a2ad-b74f703b35b6)
)
(junction (at 73.66 125.73) (diameter 0) (color 0 0 0 0)
(uuid 7be18f35-3a5c-44c9-bdcb-47ecd8659ea9)
)
(junction (at 248.92 124.46) (diameter 0) (color 0 0 0 0)
(uuid 7c4d88e3-473c-4389-b0c5-70ba90f7b251)
)
(junction (at 73.66 85.09) (diameter 0) (color 0 0 0 0)
(uuid 7fcad248-4059-431a-94ef-dd66fe6fe331)
)
(junction (at 132.08 85.09) (diameter 0) (color 0 0 0 0)
(uuid 846a0130-05dc-400c-96fb-e5ea4b683e32)
)
(junction (at 161.29 78.74) (diameter 0) (color 0 0 0 0)
(uuid 873bf62d-d03d-4a99-b9c0-87739d0409a0)
)
(junction (at 102.87 78.74) (diameter 0) (color 0 0 0 0)
(uuid 88958f2e-65b3-4e68-b205-e5117413ddd8)
)
(junction (at 55.88 60.96) (diameter 0) (color 0 0 0 0)
(uuid 89973a8b-be6d-41db-95f6-76689b363f83)
)
(junction (at 190.5 39.37) (diameter 0) (color 0 0 0 0)
(uuid 8c0ab989-33d0-4609-a1f8-1d6dda012322)
)
(junction (at 190.5 85.09) (diameter 0) (color 0 0 0 0)
(uuid 8d4ea2c2-f233-46be-aa27-d7e6e4a6d95d)
)
(junction (at 102.87 130.81) (diameter 0) (color 0 0 0 0)
(uuid 8f4c1232-f16d-452f-b99d-ea1325b6905b)
)
(junction (at 73.66 130.81) (diameter 0) (color 0 0 0 0)
(uuid 91b1954a-db83-420e-8de9-13e8a5aba1f7)
)
(junction (at 161.29 39.37) (diameter 0) (color 0 0 0 0)
(uuid 94731e27-2b4d-4bf3-954b-b5d34d34f4a0)
)
(junction (at 102.87 106.68) (diameter 0) (color 0 0 0 0)
(uuid 948176dc-a462-4fef-96ba-e2bb8cdd04d4)
)
(junction (at 219.71 106.68) (diameter 0) (color 0 0 0 0)
(uuid 9b098829-bf03-4bcc-9cc6-9cda397ce769)
)
(junction (at 73.66 43.18) (diameter 0) (color 0 0 0 0)
(uuid 9d3f911a-8154-46c0-9fc6-0735150b112b)
)
(junction (at 132.08 106.68) (diameter 0) (color 0 0 0 0)
(uuid 9e7f57cc-f400-4fe9-9c1c-f55002e1e7a3)
)
(junction (at 248.92 60.96) (diameter 0) (color 0 0 0 0)
(uuid 9f7f3f83-b006-4cff-9783-165ac73e234f)
)
(junction (at 102.87 85.09) (diameter 0) (color 0 0 0 0)
(uuid a12c3beb-4f93-440d-8247-b139cb523e92)
)
(junction (at 219.71 88.9) (diameter 0) (color 0 0 0 0)
(uuid a2dd804c-db22-44c1-9d20-89a6f4739cf7)
)
(junction (at 248.92 85.09) (diameter 0) (color 0 0 0 0)
(uuid a505d50a-a050-4a19-8469-76902f043697)
)
(junction (at 161.29 60.96) (diameter 0) (color 0 0 0 0)
(uuid ad45a082-b037-45ca-9846-48db55d46fd5)
)
(junction (at 219.71 43.18) (diameter 0) (color 0 0 0 0)
(uuid ad8256db-c228-4af8-b3c1-a1d57041ecce)
)
(junction (at 102.87 135.89) (diameter 0) (color 0 0 0 0)
(uuid b2e77383-cec5-48c7-9de8-1307a6b78138)
)
(junction (at 73.66 135.89) (diameter 0) (color 0 0 0 0)
(uuid b3de15eb-ae52-4d7a-a555-15320d755550)
)
(junction (at 219.71 124.46) (diameter 0) (color 0 0 0 0)
(uuid b40f7834-59ab-4f21-a664-42f42ef2472b)
)
(junction (at 132.08 88.9) (diameter 0) (color 0 0 0 0)
(uuid b662830b-04a3-4709-872e-acb369de5784)
)
(junction (at 190.5 88.9) (diameter 0) (color 0 0 0 0)
(uuid ba1dca14-8d99-492c-8970-5c1d10e08ff0)
)
(junction (at 190.5 130.81) (diameter 0) (color 0 0 0 0)
(uuid bb8c1475-f755-45ce-8e23-d63140276be1)
)
(junction (at 248.92 43.18) (diameter 0) (color 0 0 0 0)
(uuid be8fe919-c1b8-45a9-917b-b3d97d17315a)
)
(junction (at 219.71 60.96) (diameter 0) (color 0 0 0 0)
(uuid ce83d6eb-3579-4dfa-87cd-764f52744d3c)
)
(junction (at 161.29 85.09) (diameter 0) (color 0 0 0 0)
(uuid d0e972e0-50a2-4902-939d-4edf27bf3f91)
)
(junction (at 132.08 124.46) (diameter 0) (color 0 0 0 0)
(uuid d61db201-518a-480a-80b7-c4152094d95a)
)
(junction (at 219.71 85.09) (diameter 0) (color 0 0 0 0)
(uuid d881a90c-f3ec-4bc1-bb9d-268069b7ab25)
)
(junction (at 161.29 135.89) (diameter 0) (color 0 0 0 0)
(uuid dde58dff-eed1-4b83-8a13-e4257ea536dc)
)
(junction (at 132.08 43.18) (diameter 0) (color 0 0 0 0)
(uuid df043939-1c9f-4a31-9c5a-19164facb837)
)
(junction (at 102.87 88.9) (diameter 0) (color 0 0 0 0)
(uuid ec129120-a686-4742-992c-ffa1c60c1abc)
)
(no_connect (at 168.91 144.78) (uuid d7d7980e-59cb-488c-8c17-881a453e5be3))
(wire (pts (xy 248.92 78.74) (xy 246.38 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 019a05da-6671-470d-9f9b-8a8ca299e689)
)
(wire (pts (xy 161.29 78.74) (xy 161.29 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03a52a84-8866-4500-9585-813c12ac0974)
)
(wire (pts (xy 73.66 125.73) (xy 73.66 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04fb4cd4-9ffe-4d5d-bbee-3a0bd0f23190)
)
(wire (pts (xy 110.49 88.9) (xy 118.11 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b47df7b-b27c-4241-b03d-b4fd2704f7dc)
)
(wire (pts (xy 119.38 124.46) (xy 124.46 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e0483ab-0771-4ec1-ad44-6e7906951585)
)
(wire (pts (xy 57.15 153.67) (xy 73.66 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e346947-2fcd-4573-96fd-2543d13006d6)
)
(wire (pts (xy 177.8 124.46) (xy 182.88 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e8fa18c-0cb2-40fb-95b5-8741f7733e22)
)
(wire (pts (xy 102.87 124.46) (xy 102.87 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ed85922-428a-4272-bc15-7745568f5715)
)
(wire (pts (xy 219.71 78.74) (xy 219.71 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fa2a218-2131-485f-95e0-718e285a29f7)
)
(wire (pts (xy 132.08 130.81) (xy 132.08 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10d84cff-1c01-426b-bd68-3dd5b9eb34fa)
)
(wire (pts (xy 248.92 106.68) (xy 248.92 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12a8c33c-54b2-4c9a-9861-4c23e12879da)
)
(wire (pts (xy 102.87 39.37) (xy 132.08 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 152c16c9-4d8b-48ac-a465-bcda37b35452)
)
(wire (pts (xy 132.08 85.09) (xy 132.08 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 157a86c4-b412-4421-bffb-0123807bd857)
)
(wire (pts (xy 236.22 124.46) (xy 241.3 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 158e175b-f8f0-4bdb-80bf-ddc511179a2e)
)
(wire (pts (xy 139.7 144.78) (xy 153.67 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15d932c7-5e8e-442e-9f99-d91ae26df5f2)
)
(wire (pts (xy 73.66 88.9) (xy 73.66 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 179eed62-41ed-4ae8-be0b-fb61b97ebebf)
)
(wire (pts (xy 60.96 125.73) (xy 66.04 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a7dd825-5805-4069-8df0-e820e501a88e)
)
(wire (pts (xy 73.66 43.18) (xy 73.66 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b28247e-55ab-49f6-b125-418d0a824516)
)
(wire (pts (xy 190.5 124.46) (xy 187.96 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b67c54d-7e3e-4217-9f4c-af2bd804bdca)
)
(wire (pts (xy 102.87 60.96) (xy 132.08 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bef5d03-28cb-4b72-8cca-93765ca695c9)
)
(wire (pts (xy 44.45 45.72) (xy 44.45 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bfe04ef-dd4f-4898-86a0-a5449f78bd7a)
)
(wire (pts (xy 132.08 88.9) (xy 132.08 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c029504-8d3b-4964-8929-5188f1d217df)
)
(wire (pts (xy 219.71 124.46) (xy 219.71 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cd093b9-f660-4719-bd0d-4504978b3ef9)
)
(wire (pts (xy 102.87 135.89) (xy 105.41 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d8aca3a-33fd-42e4-853b-433b44dd9c6d)
)
(wire (pts (xy 102.87 43.18) (xy 102.87 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e24873a-ffa8-442d-a67f-6ccf5f52414c)
)
(wire (pts (xy 20.32 57.15) (xy 35.56 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f7f87c5-3999-44fb-8d4e-83cafd517ea5)
)
(wire (pts (xy 132.08 153.67) (xy 161.29 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fcfbbad-1603-4794-9d71-563a659367ec)
)
(wire (pts (xy 132.08 78.74) (xy 132.08 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 207d4db5-a032-4ab9-9e0a-4acfd7ed174d)
)
(wire (pts (xy 190.5 130.81) (xy 161.29 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 214b62fc-f4ec-4ef4-a379-a20fdf779f8b)
)
(wire (pts (xy 102.87 88.9) (xy 102.87 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21632564-d912-46e2-b1db-825a46d5e681)
)
(wire (pts (xy 161.29 106.68) (xy 161.29 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24ec1232-8f2c-44bb-a607-f7b932515bd2)
)
(wire (pts (xy 73.66 153.67) (xy 102.87 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25b343fe-839b-4c1b-a30e-28cd06375c3c)
)
(wire (pts (xy 161.29 130.81) (xy 161.29 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25ce9494-597d-4d43-953d-92277d416297)
)
(wire (pts (xy 57.15 69.85) (xy 57.15 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26c38e70-17a1-4ed4-8b09-1c2c25a09992)
)
(wire (pts (xy 132.08 135.89) (xy 132.08 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28da9325-b773-4465-8152-b2be45e51da2)
)
(wire (pts (xy 219.71 85.09) (xy 190.5 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29409cf2-87d5-4d3b-a1c6-1d383f17b74a)
)
(wire (pts (xy 190.5 78.74) (xy 187.96 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29484715-b26a-41c6-b6ba-f84784f51479)
)
(wire (pts (xy 219.71 124.46) (xy 219.71 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2aeec2c3-a213-4e7d-a95b-dbea19958a45)
)
(wire (pts (xy 219.71 88.9) (xy 219.71 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b3b2416-2490-4ca2-b838-230f28f8069b)
)
(wire (pts (xy 132.08 43.18) (xy 134.62 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2fa1196a-dc06-439f-8da6-04846fca57c9)
)
(wire (pts (xy 161.29 39.37) (xy 161.29 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30a2a581-d329-4f78-87c6-908e8cc3d382)
)
(wire (pts (xy 161.29 78.74) (xy 161.29 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30ed20a9-e827-4804-9c7d-c00594920805)
)
(wire (pts (xy 60.96 80.01) (xy 66.04 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3315fbbb-9528-42e0-9b2f-3571722befe3)
)
(wire (pts (xy 102.87 130.81) (xy 102.87 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 332f84c7-7137-453e-9885-ee1228d638ae)
)
(wire (pts (xy 73.66 80.01) (xy 73.66 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3386c574-19e1-48ce-a9d3-76cb4205a288)
)
(wire (pts (xy 161.29 85.09) (xy 161.29 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33cdd6b5-bf2f-4d0e-b485-0a3f60c43ff3)
)
(wire (pts (xy 248.92 43.18) (xy 248.92 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33ee992f-f696-4de5-a2e1-30a432c04fb4)
)
(wire (pts (xy 248.92 60.96) (xy 248.92 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36a05148-f672-4615-99b4-6f978c4db1ac)
)
(wire (pts (xy 90.17 78.74) (xy 95.25 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3836bb17-eefa-4b1b-a89c-b3f0cac8abc0)
)
(wire (pts (xy 227.33 97.79) (xy 241.3 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d46d432-8498-4022-b2fb-42321a502b0f)
)
(wire (pts (xy 132.08 43.18) (xy 132.08 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3dedaf20-4dda-4edc-97dc-9239e41fecbd)
)
(wire (pts (xy 161.29 88.9) (xy 163.83 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3efe7372-6280-4ddc-af28-b42ba9c24d81)
)
(wire (pts (xy 73.66 105.41) (xy 73.66 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fd645d0-2bc0-464c-b881-f42a19c45ece)
)
(wire (pts (xy 102.87 124.46) (xy 100.33 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40506a3f-0fa6-45fb-a918-944c16eeb1ff)
)
(wire (pts (xy 132.08 135.89) (xy 134.62 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40b82604-073d-4866-a900-f7842e6ee08f)
)
(wire (pts (xy 161.29 85.09) (xy 132.08 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4134fbeb-87b1-4668-947f-6f1699dc3cd7)
)
(wire (pts (xy 168.91 52.07) (xy 182.88 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42e8c016-9404-458d-98e0-ba077a05c6d1)
)
(wire (pts (xy 132.08 60.96) (xy 132.08 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 432aa865-7699-4fff-833d-214e8c42fe09)
)
(wire (pts (xy 190.5 39.37) (xy 190.5 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43413a39-a76b-47eb-a306-edde29f0f915)
)
(wire (pts (xy 119.38 78.74) (xy 124.46 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4384038b-4af4-4f8f-a78a-b111c1e62278)
)
(wire (pts (xy 73.66 80.01) (xy 73.66 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4388c1fb-e88f-4bf8-bd2e-cf6c740ad66f)
)
(wire (pts (xy 207.01 124.46) (xy 212.09 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 446b6474-e01e-432a-b7c6-07884816ad10)
)
(wire (pts (xy 190.5 106.68) (xy 219.71 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44760710-2c78-43b4-83d7-33409e160865)
)
(wire (pts (xy 168.91 97.79) (xy 182.88 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 473df0cc-d61f-4430-96d0-cf6c3733c3fe)
)
(wire (pts (xy 161.29 106.68) (xy 161.29 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 474227fd-d9b6-40de-9971-6568294a7238)
)
(wire (pts (xy 102.87 60.96) (xy 102.87 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 480ebac9-2c4b-40b2-8076-c71f94ff04d3)
)
(wire (pts (xy 81.28 52.07) (xy 95.25 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 495d4535-a74e-4f36-8927-272a0549d872)
)
(wire (pts (xy 102.87 130.81) (xy 73.66 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 497fb450-5537-45fd-8887-4d704d429513)
)
(wire (pts (xy 248.92 78.74) (xy 248.92 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a482bad-4637-45d1-bd90-8e05b3f43894)
)
(wire (pts (xy 139.7 88.9) (xy 147.32 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d5d14c5-7f4e-4053-a0f0-7636493ffb3e)
)
(wire (pts (xy 161.29 43.18) (xy 163.83 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4df93918-2f45-47a7-8fb9-e281ed8449e6)
)
(wire (pts (xy 161.29 60.96) (xy 161.29 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 516e56aa-4d40-4f0d-adda-d8f664261c6c)
)
(wire (pts (xy 248.92 60.96) (xy 248.92 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51c45fc9-4fc5-4a6c-96b5-f77416587c4d)
)
(wire (pts (xy 256.54 88.9) (xy 264.16 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52fada97-a635-4de0-9705-5579a374562c)
)
(wire (pts (xy 161.29 124.46) (xy 158.75 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53106f54-164e-4b31-8978-dad12b596c91)
)
(wire (pts (xy 161.29 124.46) (xy 161.29 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 541d6d04-7c43-4002-94a4-66da588278dc)
)
(wire (pts (xy 139.7 135.89) (xy 147.32 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 551148cb-2490-4944-9172-724feb3862f2)
)
(wire (pts (xy 110.49 135.89) (xy 118.11 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5559037e-4c5a-4bac-8575-4f2d50fbdba8)
)
(wire (pts (xy 256.54 97.79) (xy 259.08 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56747eb7-3f8e-44c5-a20e-f16d4cff9b0f)
)
(wire (pts (xy 190.5 78.74) (xy 190.5 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58ac3624-d9f9-40a8-b24b-0dea28015939)
)
(wire (pts (xy 90.17 124.46) (xy 95.25 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58f5f118-0e80-4c9b-9ef0-e2220463f848)
)
(wire (pts (xy 66.04 69.85) (xy 57.15 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a33daf9-0c46-401e-827d-dc20308fd777)
)
(wire (pts (xy 168.91 69.85) (xy 182.88 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a388314-9bc0-4245-84a3-81dd63f87ad8)
)
(wire (pts (xy 58.42 106.68) (xy 73.66 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a77c4aa-4a76-46f8-9bb6-baf58f7131ef)
)
(wire (pts (xy 168.91 43.18) (xy 176.53 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cda58d9-4a40-4c5c-9d93-3d62e7da658a)
)
(wire (pts (xy 102.87 78.74) (xy 102.87 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ef7ea6f-ef9b-4c4a-a142-a2f60be16bd3)
)
(wire (pts (xy 81.28 43.18) (xy 88.9 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f5f036b-e1c7-494d-9d99-8a8c4ad3b29e)
)
(wire (pts (xy 177.8 78.74) (xy 182.88 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fa99989-9be1-4ec6-ae87-e35519e0e6e3)
)
(wire (pts (xy 102.87 106.68) (xy 102.87 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60124da6-abf9-4d6b-a6b7-e210c032db95)
)
(wire (pts (xy 161.29 135.89) (xy 161.29 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60c1723c-aaf6-4858-9361-3052149b8138)
)
(wire (pts (xy 248.92 124.46) (xy 246.38 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60cbce8f-a07c-478d-ad02-89f1f6347490)
)
(wire (pts (xy 73.66 39.37) (xy 73.66 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6207c583-7d6e-47cd-b956-3e3fc9ee2be7)
)
(wire (pts (xy 132.08 60.96) (xy 161.29 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 627e3361-c253-4c80-a8a8-12f30de44537)
)
(wire (pts (xy 227.33 115.57) (xy 241.3 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64598bd1-4490-4a7a-9bd9-6c1394d86c11)
)
(wire (pts (xy 256.54 43.18) (xy 264.16 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 680f8a14-7064-4306-acb6-af9592dee064)
)
(wire (pts (xy 132.08 78.74) (xy 129.54 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 681f05d9-72f5-4965-925f-01e832e0c844)
)
(wire (pts (xy 132.08 124.46) (xy 132.08 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68aeed43-6139-49c1-b599-aea5561da1de)
)
(wire (pts (xy 50.8 52.07) (xy 66.04 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68cf2c5c-f706-4ae9-aeaa-91fcda77e163)
)
(wire (pts (xy 110.49 144.78) (xy 124.46 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6908359d-cfd0-46d9-8516-c1ff340ea508)
)
(wire (pts (xy 248.92 124.46) (xy 248.92 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69115f11-5692-43ec-966b-9884e2e108c3)
)
(wire (pts (xy 256.54 52.07) (xy 259.08 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6996e337-1383-4832-a642-974095a8cdb7)
)
(wire (pts (xy 219.71 124.46) (xy 217.17 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 699975d8-e3ca-4802-ad9f-d4a75a159bd3)
)
(wire (pts (xy 273.05 130.81) (xy 248.92 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a7095b2-4cb6-4d4a-8704-897751a09429)
)
(wire (pts (xy 102.87 153.67) (xy 132.08 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6dc19ec3-bde4-4930-bc7f-27300d43e599)
)
(wire (pts (xy 55.88 57.15) (xy 55.88 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ea49e7b-0c9e-4201-abc3-5ac9f1d761ec)
)
(wire (pts (xy 73.66 106.68) (xy 102.87 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f017055-5b18-493f-9f0c-22e5afd33fa8)
)
(wire (pts (xy 227.33 43.18) (xy 234.95 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f9088a8-fe84-430d-8d80-5283cf2c91cb)
)
(wire (pts (xy 73.66 60.96) (xy 102.87 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72673706-0d28-41b2-8603-f41b07e8fc15)
)
(wire (pts (xy 161.29 130.81) (xy 132.08 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 731fab06-fdbf-4900-8eef-f4f6513804c9)
)
(wire (pts (xy 161.29 60.96) (xy 161.29 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73655c0a-ab9f-4cd9-b922-084fb918cc4b)
)
(wire (pts (xy 248.92 78.74) (xy 248.92 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74bdfc5a-eee3-439a-8c4c-a4578f72f572)
)
(wire (pts (xy 66.04 115.57) (xy 57.15 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7505b183-6ff5-4788-8d32-ca09fd1d33e9)
)