-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5v_reg.kicad_sch
2063 lines (2022 loc) · 73.8 KB
/
5v_reg.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 20230121) (generator eeschema)
(uuid 2888b1c8-c58c-4898-9355-2630f2184953)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized_US" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized_US" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_US_0_1"
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.778)
(xy -1.27 2.794)
)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 2.032 -1.27) (mid 0 -0.5572) (end -2.032 -1.27)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_Polarized_US_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 3.302)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L" (at 1.905 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_0_1"
(arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "L_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (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 "2" (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" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_US" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.016 -0.254 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, US symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (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))
(fill (type none))
)
(polyline
(pts
(xy 0 2.286)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(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))
(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))
(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))
(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 "crush-power-lib:SIC461ED-T1-GE3" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -10.16 24.13 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "SIC461ED-T1-GE3" (at -15.24 21.59 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "CONV_SIC461ED-T1-GE3" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "Datasheet" "" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "STANDARD" "Manufacturer Recommendations" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "MANUFACTURER" "VISHAY" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(property "PARTREV" "M" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) (justify bottom) hide)
)
(symbol "SIC461ED-T1-GE3_0_1"
(rectangle (start -16.51 21.59) (end 17.78 -29.21)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "SIC461ED-T1-GE3_1_1"
(pin unspecified line (at -19.05 19.05 0) (length 2.54)
(name "VCin" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 2.54 -31.75 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 5.08 -31.75 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 11.43 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 8.89 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 6.35 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 3.81 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "14.1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 -1.27 180) (length 2.54)
(name "GL" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 -1.27 0) (length 2.54)
(name "VDRV" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 12.7 -31.75 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 -8.89 0) (length 2.54)
(name "ULTRASONIC" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 -19.05 0) (length 2.54)
(name "SS" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 6.35 0) (length 2.54)
(name "PGOOD" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 -6.35 180) (length 2.54)
(name "VSNS" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 -16.51 180) (length 2.54)
(name "COMP" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 -11.43 180) (length 2.54)
(name "VFB" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -6.35 -31.75 90) (length 2.54)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 -21.59 180) (length 2.54)
(name "fsw" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 -15.24 0) (length 2.54)
(name "Ilimit" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 2.54 0) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 -11.43 0) (length 2.54)
(name "Mode" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -8.89 -31.75 90) (length 2.54)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 10.16 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 -6.35 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 7.62 -31.75 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "30.1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 10.16 -31.75 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "30.2" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 7.62 24.13 270) (length 2.54)
(name "BOOT" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 19.05 180) (length 2.54)
(name "PHASE" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 20.32 16.51 180) (length 2.54)
(name "PHASE" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 15.24 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at -19.05 12.7 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -31.75 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 220.98 127) (diameter 0) (color 0 0 0 0)
(uuid 017bf6fe-247b-4bad-9bce-7114c536a6af)
)
(junction (at 100.33 83.82) (diameter 0) (color 0 0 0 0)
(uuid 04f0a6b5-6af3-45d2-b4a9-2dafaa284a97)
)
(junction (at 231.14 127) (diameter 0) (color 0 0 0 0)
(uuid 05fc496e-4a95-45f0-9468-76c0acba5723)
)
(junction (at 163.83 127) (diameter 0) (color 0 0 0 0)
(uuid 062946f5-e803-4ca2-bd8d-6afc55cb2f1a)
)
(junction (at 271.78 127) (diameter 0) (color 0 0 0 0)
(uuid 088ce45a-c795-4773-b56a-b2cb387509c4)
)
(junction (at 173.99 85.09) (diameter 0) (color 0 0 0 0)
(uuid 091f7ee6-0b30-4011-89f7-5babfa23b341)
)
(junction (at 100.33 81.28) (diameter 0) (color 0 0 0 0)
(uuid 093c9158-b704-4664-9711-ce81eec98f9f)
)
(junction (at 53.34 93.98) (diameter 0) (color 0 0 0 0)
(uuid 0b495ecd-2169-4034-853f-e052e2153690)
)
(junction (at 251.46 127) (diameter 0) (color 0 0 0 0)
(uuid 129e3f22-0574-4cde-9fd5-7613b6c1453e)
)
(junction (at 140.97 85.09) (diameter 0) (color 0 0 0 0)
(uuid 1514ae42-bfd3-4c2b-ad06-7a38069b1694)
)
(junction (at 220.98 85.09) (diameter 0) (color 0 0 0 0)
(uuid 1557fe76-0285-45e0-9b25-a4732548361b)
)
(junction (at 121.92 128.27) (diameter 0) (color 0 0 0 0)
(uuid 157282ae-19db-41c6-b97b-090db93e4f6a)
)
(junction (at 30.48 127) (diameter 0) (color 0 0 0 0)
(uuid 15f84a47-1ab6-47e0-91b0-770014f7f056)
)
(junction (at 261.62 85.09) (diameter 0) (color 0 0 0 0)
(uuid 1e7b8451-1794-4b14-ac79-457675c5ef58)
)
(junction (at 140.97 92.71) (diameter 0) (color 0 0 0 0)
(uuid 2679cb49-eea5-4630-987d-a790b57ec7c1)
)
(junction (at 271.78 85.09) (diameter 0) (color 0 0 0 0)
(uuid 29244e73-6296-4804-80a2-b77b2734192c)
)
(junction (at 119.38 133.35) (diameter 0) (color 0 0 0 0)
(uuid 2d9e53ad-0470-4cb2-bf13-ee2e3a754cf4)
)
(junction (at 251.46 85.09) (diameter 0) (color 0 0 0 0)
(uuid 34b77f88-afd4-4c93-bc0f-c9590e4a2f62)
)
(junction (at 76.2 127) (diameter 0) (color 0 0 0 0)
(uuid 39bf9c6e-cf4a-48fd-b546-013c6fd794d7)
)
(junction (at 261.62 127) (diameter 0) (color 0 0 0 0)
(uuid 3e5db637-5f23-430a-9d06-b5f5c5d2624a)
)
(junction (at 124.46 128.27) (diameter 0) (color 0 0 0 0)
(uuid 47d0a376-2653-42ed-86bd-73d6fa43c4d8)
)
(junction (at 90.17 127) (diameter 0) (color 0 0 0 0)
(uuid 4f02428c-6ebc-4fce-92ff-6f96a46cacb5)
)
(junction (at 163.83 85.09) (diameter 0) (color 0 0 0 0)
(uuid 5773f5d9-a066-4ca3-b9c6-6f1f05a5e976)
)
(junction (at 60.96 114.3) (diameter 0) (color 0 0 0 0)
(uuid 5e41943a-c83f-450f-915d-3de58b8d523b)
)
(junction (at 160.02 85.09) (diameter 0) (color 0 0 0 0)
(uuid 709473e6-49ed-4e40-84e9-64a1b6b8e746)
)
(junction (at 30.48 77.47) (diameter 0) (color 0 0 0 0)
(uuid 727771b6-a798-40e2-970d-faa474d249f4)
)
(junction (at 129.54 128.27) (diameter 0) (color 0 0 0 0)
(uuid 762ed33c-d70c-49b7-8c53-49b804a1bc11)
)
(junction (at 173.99 127) (diameter 0) (color 0 0 0 0)
(uuid 7b7e8316-5e85-4831-87bc-2e654c8bef0b)
)
(junction (at 41.91 77.47) (diameter 0) (color 0 0 0 0)
(uuid 7e16c542-bc56-4eeb-95e2-aa7195289ba0)
)
(junction (at 241.3 85.09) (diameter 0) (color 0 0 0 0)
(uuid 7fa41a03-0e68-4c27-acf5-7a7bec88e0ce)
)
(junction (at 41.91 127) (diameter 0) (color 0 0 0 0)
(uuid 853f0cfe-f3de-4f66-af2f-e046a37ae604)
)
(junction (at 163.83 107.95) (diameter 0) (color 0 0 0 0)
(uuid 8af8eb91-6d8e-47da-8435-d7cbd59cd457)
)
(junction (at 60.96 127) (diameter 0) (color 0 0 0 0)
(uuid 8b3fa927-7f89-4bf1-b429-db0343255e15)
)
(junction (at 110.49 128.27) (diameter 0) (color 0 0 0 0)
(uuid 8ca1bdde-98f2-4fca-9d23-4e7c1c7e7069)
)
(junction (at 22.86 77.47) (diameter 0) (color 0 0 0 0)
(uuid 96d78069-c8db-4123-85fb-94b9b58ae6fd)
)
(junction (at 60.96 77.47) (diameter 0) (color 0 0 0 0)
(uuid b26d75ae-9818-47b1-aca5-2ee9dabb3a28)
)
(junction (at 186.69 127) (diameter 0) (color 0 0 0 0)
(uuid b56b4c2d-8ca4-45cc-b2a4-963d8f0e6ded)
)
(junction (at 22.86 127) (diameter 0) (color 0 0 0 0)
(uuid b69aa40e-8eae-421f-ac70-9b04320b4783)
)
(junction (at 140.97 90.17) (diameter 0) (color 0 0 0 0)
(uuid ba5b8499-fd55-4750-ab05-a30635de464c)
)
(junction (at 241.3 127) (diameter 0) (color 0 0 0 0)
(uuid bbf0124a-0a47-4960-ae6b-f8a0ba0d7c06)
)
(junction (at 198.12 127) (diameter 0) (color 0 0 0 0)
(uuid c0c4d182-0e10-4cd6-9c5a-31f9b5055733)
)
(junction (at 53.34 127) (diameter 0) (color 0 0 0 0)
(uuid c1bf6076-2f85-46dd-9cb2-c5241354eb46)
)
(junction (at 151.13 95.25) (diameter 0) (color 0 0 0 0)
(uuid c7fa7063-dc1e-42ad-88fe-bd3da495d0c0)
)
(junction (at 140.97 77.47) (diameter 0) (color 0 0 0 0)
(uuid c802f5b8-ac9f-4567-b52a-2ce97c200a40)
)
(junction (at 152.4 127) (diameter 0) (color 0 0 0 0)
(uuid cb123afa-5150-49ea-b3cb-9ed8236c1e67)
)
(junction (at 231.14 85.09) (diameter 0) (color 0 0 0 0)
(uuid d65dde56-7d10-449e-819a-2d4652a0341c)
)
(junction (at 100.33 77.47) (diameter 0) (color 0 0 0 0)
(uuid e122b2a8-f53a-44f7-8066-4eec6a342496)
)
(junction (at 209.55 127) (diameter 0) (color 0 0 0 0)
(uuid e8041710-cf3b-4df8-bbb4-091f047e1418)
)
(junction (at 119.38 128.27) (diameter 0) (color 0 0 0 0)
(uuid e8265269-7927-481c-b9a0-f23db979d097)
)
(junction (at 140.97 87.63) (diameter 0) (color 0 0 0 0)
(uuid ea9ffb98-ab44-4aa9-9c9b-d1c34ce85eb1)
)
(junction (at 186.69 85.09) (diameter 0) (color 0 0 0 0)
(uuid eb749ee8-b636-44fc-925d-b30ea827fe1d)
)
(junction (at 81.28 127) (diameter 0) (color 0 0 0 0)
(uuid ecd09985-f66c-437d-8548-ea3580446220)
)
(junction (at 209.55 85.09) (diameter 0) (color 0 0 0 0)
(uuid ef6309de-9679-4512-baf7-0bcaa4e07a20)
)
(junction (at 127 128.27) (diameter 0) (color 0 0 0 0)
(uuid f0a781a0-0362-449c-aa3d-9ea189bc898b)
)
(junction (at 198.12 85.09) (diameter 0) (color 0 0 0 0)
(uuid f5c820bd-61cc-44bf-baad-be26c0b57dd5)
)
(no_connect (at 139.7 97.79) (uuid 2cff72e0-58fe-495c-90dd-2d6fed9c8139))
(no_connect (at 100.33 105.41) (uuid 415258b0-3da0-4598-9e41-8d1e7ac7147a))
(wire (pts (xy 97.79 127) (xy 97.79 125.73))
(stroke (width 0) (type default))
(uuid 064cb80f-6ba0-4ca6-89d7-094f8dc4e013)
)
(wire (pts (xy 140.97 80.01) (xy 139.7 80.01))
(stroke (width 0) (type default))
(uuid 0cf2dfde-4d06-4385-b589-fed18eef0a3d)
)
(wire (pts (xy 81.28 127) (xy 90.17 127))
(stroke (width 0) (type default))
(uuid 116b0c9a-91c0-409a-8ded-43ef2d9aa5a3)
)
(wire (pts (xy 60.96 77.47) (xy 60.96 106.68))
(stroke (width 0) (type default))
(uuid 121a4775-f877-4627-8d4f-0b2905662e5f)
)
(wire (pts (xy 142.24 127) (xy 152.4 127))
(stroke (width 0) (type default))
(uuid 135a9283-8d03-4127-95d2-dbd8f79a9aa6)
)
(wire (pts (xy 100.33 77.47) (xy 100.33 81.28))
(stroke (width 0) (type default))
(uuid 138b4ad6-1d69-41af-ab7a-8760d194ca2d)
)
(wire (pts (xy 261.62 107.95) (xy 261.62 127))
(stroke (width 0) (type default))
(uuid 153b1b0f-cecd-48d8-aff9-1e86979a6b6f)
)
(wire (pts (xy 163.83 101.6) (xy 163.83 107.95))
(stroke (width 0) (type default))
(uuid 1877dd01-b8e2-4109-8e89-398b904a9397)
)
(wire (pts (xy 163.83 85.09) (xy 163.83 93.98))
(stroke (width 0) (type default))
(uuid 1933cfbc-cd75-48ae-9465-a4278da5fe8d)
)
(wire (pts (xy 119.38 133.35) (xy 135.89 133.35))
(stroke (width 0) (type default))
(uuid 1ad4854b-30e8-467c-a890-6367e8e5f949)
)
(wire (pts (xy 151.13 95.25) (xy 152.4 95.25))
(stroke (width 0) (type default))
(uuid 1c962879-6725-4e05-92fd-71769990dc5f)
)
(wire (pts (xy 160.02 85.09) (xy 163.83 85.09))
(stroke (width 0) (type default))
(uuid 1cd7391f-0c0b-4367-a828-fe1a9d6f8549)
)
(wire (pts (xy 100.33 107.95) (xy 81.28 107.95))
(stroke (width 0) (type default))
(uuid 1d2fd0ec-9e94-4d24-a9af-df0f1b7e1994)
)
(wire (pts (xy 220.98 107.95) (xy 220.98 127))
(stroke (width 0) (type default))
(uuid 1ff3a697-7236-4f78-81ea-1a1374f313fd)
)
(wire (pts (xy 186.69 85.09) (xy 198.12 85.09))
(stroke (width 0) (type default))
(uuid 21238ebb-1b7c-46d1-9186-5934f9ac9d0e)
)
(wire (pts (xy 209.55 85.09) (xy 220.98 85.09))
(stroke (width 0) (type default))
(uuid 233894a1-346b-4d76-8675-cd932fb8a598)
)
(wire (pts (xy 100.33 97.79) (xy 76.2 97.79))
(stroke (width 0) (type default))
(uuid 24b26a92-4f8d-4b22-a7b6-2a3d9ec5c2e5)
)
(wire (pts (xy 241.3 85.09) (xy 241.3 100.33))
(stroke (width 0) (type default))
(uuid 27f34d1b-2dc0-44b7-91fd-701c4a73647b)
)
(wire (pts (xy 30.48 77.47) (xy 41.91 77.47))
(stroke (width 0) (type default))
(uuid 2de7804c-4279-4493-8223-c6efee1a0c51)
)
(wire (pts (xy 251.46 85.09) (xy 251.46 100.33))
(stroke (width 0) (type default))
(uuid 2e502bad-177f-4fb1-a676-13d50a56cbe0)
)
(wire (pts (xy 148.59 102.87) (xy 151.13 102.87))
(stroke (width 0) (type default))
(uuid 31860910-505c-4281-8cfe-e5d6263c3142)
)
(wire (pts (xy 60.96 114.3) (xy 60.96 115.57))
(stroke (width 0) (type default))
(uuid 36fb81db-5d7d-44a5-8fdc-0c952a6f41ae)
)
(wire (pts (xy 90.17 127) (xy 97.79 127))
(stroke (width 0) (type default))
(uuid 3746c12a-050b-44b0-8ed0-cc02b2432d2e)
)
(wire (pts (xy 271.78 85.09) (xy 271.78 100.33))
(stroke (width 0) (type default))
(uuid 38724e93-02b1-444b-81a3-15f6d55e3a6f)
)
(wire (pts (xy 241.3 127) (xy 251.46 127))
(stroke (width 0) (type default))
(uuid 3885dce5-a38c-47ae-a03f-1f077eb08f9b)
)
(wire (pts (xy 19.05 127) (xy 22.86 127))
(stroke (width 0) (type default))
(uuid 39a0e320-4ac8-4ead-99c7-6a357e530276)
)
(wire (pts (xy 41.91 77.47) (xy 60.96 77.47))
(stroke (width 0) (type default))
(uuid 3b5a7e11-16aa-4c22-a7b0-2cb724aa4d8d)
)
(wire (pts (xy 271.78 85.09) (xy 275.59 85.09))
(stroke (width 0) (type default))
(uuid 3e9c2b4f-a429-451c-9b0d-3be1113011ec)
)
(wire (pts (xy 139.7 113.03) (xy 140.97 113.03))
(stroke (width 0) (type default))
(uuid 43293fd5-9dee-4d06-9cd5-5898dfa0a9c0)
)
(wire (pts (xy 139.7 107.95) (xy 163.83 107.95))
(stroke (width 0) (type default))
(uuid 44aa70c9-cb4e-411e-a583-6c9ad39ddb81)
)
(wire (pts (xy 148.59 113.03) (xy 152.4 113.03))
(stroke (width 0) (type default))
(uuid 464e75fb-8cc3-4281-87b7-10ec096522c9)
)
(wire (pts (xy 198.12 85.09) (xy 198.12 100.33))
(stroke (width 0) (type default))
(uuid 4a546b99-40e5-4b36-9774-2334090adeec)
)
(wire (pts (xy 60.96 123.19) (xy 60.96 127))
(stroke (width 0) (type default))
(uuid 4a820fdd-7d91-4ffc-8b50-86b7c286726e)
)
(wire (pts (xy 139.7 85.09) (xy 140.97 85.09))
(stroke (width 0) (type default))
(uuid 4b7ce25d-3468-48bf-9b54-9162b17f5d23)
)
(wire (pts (xy 140.97 95.25) (xy 140.97 92.71))
(stroke (width 0) (type default))
(uuid 4bec28a9-4647-452d-b9de-29f99ae4b8aa)
)
(wire (pts (xy 139.7 118.11) (xy 142.24 118.11))
(stroke (width 0) (type default))
(uuid 4d7c46d8-2f32-4301-8a67-7e802d44e7cf)
)
(wire (pts (xy 152.4 127) (xy 163.83 127))
(stroke (width 0) (type default))
(uuid 5168a096-1cf9-464a-9a82-b943314f47b9)
)
(wire (pts (xy 173.99 107.95) (xy 173.99 127))
(stroke (width 0) (type default))
(uuid 5551cb9f-f426-4c62-ad83-498f1374ad64)
)
(wire (pts (xy 100.33 115.57) (xy 97.79 115.57))
(stroke (width 0) (type default))
(uuid 570efae5-748e-498e-8235-6e8559a15194)
)
(wire (pts (xy 121.92 128.27) (xy 124.46 128.27))
(stroke (width 0) (type default))
(uuid 5a01216a-c1e8-4777-8ccc-803345fbbf8c)
)
(wire (pts (xy 152.4 121.92) (xy 152.4 127))
(stroke (width 0) (type default))
(uuid 5a5525b4-be32-4bb1-a6cf-0b3e26ac3c03)
)
(wire (pts (xy 139.7 77.47) (xy 140.97 77.47))
(stroke (width 0) (type default))
(uuid 5d77c7ca-1301-4bf6-be99-f2e623f09c44)
)
(wire (pts (xy 140.97 90.17) (xy 140.97 87.63))
(stroke (width 0) (type default))
(uuid 61862a2c-598a-4240-b776-6c8cc3420813)
)
(wire (pts (xy 152.4 113.03) (xy 152.4 114.3))
(stroke (width 0) (type default))
(uuid 63396f70-6c13-4904-80ef-7003a1f4b782)
)
(wire (pts (xy 100.33 111.76) (xy 90.17 111.76))
(stroke (width 0) (type default))
(uuid 642aa046-e51b-4260-a2ad-45e818cc4f5e)
)
(wire (pts (xy 142.24 125.73) (xy 142.24 127))
(stroke (width 0) (type default))
(uuid 649400fd-caef-46a5-aaad-71a829b282d8)
)
(wire (pts (xy 271.78 107.95) (xy 271.78 127))
(stroke (width 0) (type default))
(uuid 660ca81c-bdfc-4664-9854-f6ac9f679b40)
)
(wire (pts (xy 140.97 95.25) (xy 142.24 95.25))
(stroke (width 0) (type default))
(uuid 676ff494-b4bc-41b9-b37d-a89f01a7a716)
)
(wire (pts (xy 100.33 102.87) (xy 71.12 102.87))
(stroke (width 0) (type default))
(uuid 680c7c44-a707-4097-b9b2-074693c3af0f)
)
(wire (pts (xy 140.97 85.09) (xy 147.32 85.09))
(stroke (width 0) (type default))
(uuid 6a680389-7608-4f9d-bf47-7274e7984cca)
)
(wire (pts (xy 100.33 81.28) (xy 100.33 83.82))
(stroke (width 0) (type default))
(uuid 6c9c83be-d1e0-4eb6-ab7e-befa25e6ddb2)
)
(wire (pts (xy 139.7 87.63) (xy 140.97 87.63))
(stroke (width 0) (type default))
(uuid 6cb38a36-c661-4a19-b5df-e50cd4848072)
)
(wire (pts (xy 271.78 127) (xy 276.86 127))
(stroke (width 0) (type default))
(uuid 70e3ccb2-79d2-4ae9-bba7-5b522ef6599c)
)
(wire (pts (xy 90.17 124.46) (xy 90.17 127))
(stroke (width 0) (type default))
(uuid 71195e4a-0ac3-4de4-8171-cbd2186f908e)
)
(wire (pts (xy 76.2 97.79) (xy 76.2 118.11))
(stroke (width 0) (type default))
(uuid 712547cc-ed1d-4251-9a39-fdf9b1fa504b)
)
(wire (pts (xy 154.94 85.09) (xy 160.02 85.09))
(stroke (width 0) (type default))
(uuid 754c0d43-c33a-4a07-8288-5bddcd002d7b)
)
(wire (pts (xy 53.34 93.98) (xy 100.33 93.98))
(stroke (width 0) (type default))
(uuid 7c0831b5-b303-43c1-8979-9e30bfd6f0b9)
)
(wire (pts (xy 198.12 127) (xy 209.55 127))
(stroke (width 0) (type default))
(uuid 7e1a2bed-d698-4c22-af92-ad880cc4bb35)
)
(wire (pts (xy 261.62 127) (xy 271.78 127))
(stroke (width 0) (type default))
(uuid 7e849821-5f0a-4b91-905d-2023c4e77823)
)
(wire (pts (xy 127 128.27) (xy 129.54 128.27))
(stroke (width 0) (type default))
(uuid 7e8db7a3-b3b3-43b8-9fd2-61f67abf74b1)
)
(wire (pts (xy 140.97 73.66) (xy 140.97 77.47))
(stroke (width 0) (type default))
(uuid 7facd343-88fa-4948-b8b6-37c6c824fb0a)
)
(wire (pts (xy 100.33 83.82) (xy 100.33 86.36))
(stroke (width 0) (type default))
(uuid 81a56994-d43e-4f41-b78d-eaf1d4fd572e)
)
(wire (pts (xy 231.14 85.09) (xy 241.3 85.09))
(stroke (width 0) (type default))
(uuid 8243b2e4-24cd-4a50-9e1e-ab2b362b9d06)
)
(wire (pts (xy 81.28 107.95) (xy 81.28 109.22))
(stroke (width 0) (type default))
(uuid 84838815-f99c-4fb6-9c7f-041c815b170a)
)
(wire (pts (xy 71.12 102.87) (xy 71.12 114.3))
(stroke (width 0) (type default))
(uuid 8658cba7-08cf-4a09-937c-8122f243ab89)
)
(wire (pts (xy 251.46 107.95) (xy 251.46 127))
(stroke (width 0) (type default))
(uuid 8763b50c-e586-4a19-a4af-d224f1f9ec72)
)
(wire (pts (xy 209.55 127) (xy 220.98 127))
(stroke (width 0) (type default))
(uuid 89f9a3bd-b2ff-49a6-bb30-0235b93ffcaa)
)
(wire (pts (xy 163.83 127) (xy 173.99 127))
(stroke (width 0) (type default))
(uuid 8ad2e9f3-1256-41b8-977c-68b83fe62fc0)
)
(wire (pts (xy 53.34 90.17) (xy 53.34 93.98))
(stroke (width 0) (type default))
(uuid 8b9c96b7-78cb-4e80-a641-95d8f135ac70)
)
(wire (pts (xy 124.46 128.27) (xy 127 128.27))
(stroke (width 0) (type default))
(uuid 8fe59389-1e0a-43a2-a6e4-55c682d91d12)
)
(wire (pts (xy 160.02 85.09) (xy 160.02 95.25))
(stroke (width 0) (type default))
(uuid 9121ce5e-6a69-452e-afb1-b1f4d6359a33)
)
(wire (pts (xy 231.14 107.95) (xy 231.14 127))
(stroke (width 0) (type default))
(uuid 91b2d9f7-2999-4798-a97c-2ac3210fb705)
)
(wire (pts (xy 76.2 127) (xy 81.28 127))
(stroke (width 0) (type default))
(uuid 941e0425-4530-4da2-9b20-5c2fb8bebd37)
)
(wire (pts (xy 261.62 85.09) (xy 261.62 100.33))
(stroke (width 0) (type default))
(uuid 9530906d-5d32-4d6e-a48d-5c104abdb7f5)
)
(wire (pts (xy 149.86 95.25) (xy 151.13 95.25))
(stroke (width 0) (type default))
(uuid 9c41799c-8e03-47fd-819d-ba7fef34145e)
)
(wire (pts (xy 220.98 85.09) (xy 231.14 85.09))
(stroke (width 0) (type default))
(uuid 9d7920f1-d38d-4a7b-af26-44a6964b34b8)
)
(wire (pts (xy 173.99 85.09) (xy 186.69 85.09))
(stroke (width 0) (type default))
(uuid 9da2a087-ae78-4c20-aa9a-6d11e27ae842)
)
(wire (pts (xy 139.7 90.17) (xy 140.97 90.17))
(stroke (width 0) (type default))
(uuid 9f2937b8-7551-46c0-bd39-6d00cb046baa)
)
(wire (pts (xy 173.99 85.09) (xy 173.99 100.33))
(stroke (width 0) (type default))
(uuid a033975c-915a-405b-abe9-29d9d6ba2dc0)
)
(wire (pts (xy 140.97 77.47) (xy 140.97 80.01))
(stroke (width 0) (type default))
(uuid a1fc9a56-1ade-4e52-bb7a-c0ee65d4c5fa)
)
(wire (pts (xy 129.54 128.27) (xy 132.08 128.27))
(stroke (width 0) (type default))
(uuid a2c5961d-609d-44c3-af27-0352d9b8ac5f)
)
(wire (pts (xy 220.98 85.09) (xy 220.98 100.33))
(stroke (width 0) (type default))
(uuid a3c195fc-3258-41fc-aa82-139a56072ddc)
)
(wire (pts (xy 137.16 66.04) (xy 140.97 66.04))
(stroke (width 0) (type default))
(uuid a9310ebb-a988-48d0-ab67-e15997f68104)
)
(wire (pts (xy 220.98 127) (xy 231.14 127))
(stroke (width 0) (type default))
(uuid acce7b9c-ed1c-4430-ba40-9d0cc33923b0)
)
(wire (pts (xy 119.38 128.27) (xy 119.38 133.35))
(stroke (width 0) (type default))
(uuid accee1c9-4c24-4b25-8516-cf094de52d9c)
)
(wire (pts (xy 209.55 107.95) (xy 209.55 127))
(stroke (width 0) (type default))
(uuid ad0bddbd-7c4a-4671-b8cb-26f37c460dc6)
)
(wire (pts (xy 241.3 85.09) (xy 251.46 85.09))
(stroke (width 0) (type default))
(uuid adca9c6b-1253-4c24-a790-10aca1b05c16)
)
(wire (pts (xy 251.46 127) (xy 261.62 127))
(stroke (width 0) (type default))
(uuid ae0fabdc-6d69-4b48-b664-ce30678cff37)
)
(wire (pts (xy 82.55 90.17) (xy 100.33 90.17))
(stroke (width 0) (type default))
(uuid af428e15-a34d-4e2b-b267-d1b85ef645a1)
)
(wire (pts (xy 163.83 85.09) (xy 173.99 85.09))
(stroke (width 0) (type default))
(uuid b08de054-596e-4e70-8842-c5f2da9e0ff9)
)
(wire (pts (xy 119.38 128.27) (xy 121.92 128.27))
(stroke (width 0) (type default))
(uuid b153eed6-6256-40b0-bc52-3dc48f0c62e8)
)
(wire (pts (xy 74.93 90.17) (xy 53.34 90.17))
(stroke (width 0) (type default))
(uuid b1c2a7de-f0e6-4311-b0f9-8687bef1554c)
)
(wire (pts (xy 22.86 77.47) (xy 30.48 77.47))
(stroke (width 0) (type default))
(uuid b25b5508-2810-43cd-9f7a-c7d0223abc15)
)
(wire (pts (xy 110.49 128.27) (xy 113.03 128.27))
(stroke (width 0) (type default))
(uuid b2794483-8346-4021-8bc1-4039fdcc7bc6)
)
(wire (pts (xy 30.48 77.47) (xy 30.48 96.52))
(stroke (width 0) (type default))
(uuid b31dd6f6-77d6-4f61-94db-270f3b098238)
)
(wire (pts (xy 127 66.04) (xy 127 72.39))
(stroke (width 0) (type default))
(uuid b36bcbc3-04b1-4c3f-8ca4-2c700b981b74)
)
(wire (pts (xy 30.48 104.14) (xy 30.48 127))
(stroke (width 0) (type default))
(uuid b665d795-e42a-4ed5-a660-1930d0816b04)
)
(wire (pts (xy 231.14 127) (xy 241.3 127))
(stroke (width 0) (type default))
(uuid b7c18ae7-fdd9-4722-bfe5-a1f4416c2e4a)
)
(wire (pts (xy 41.91 77.47) (xy 41.91 96.52))
(stroke (width 0) (type default))
(uuid b825fd46-dce8-4b12-ac48-03a2fc3b5b33)
)
(wire (pts (xy 261.62 85.09) (xy 271.78 85.09))
(stroke (width 0) (type default))
(uuid b94d1fb2-e6f5-4ce4-a1e7-150941e0441f)
)
(wire (pts (xy 97.79 115.57) (xy 97.79 118.11))
(stroke (width 0) (type default))
(uuid b9c2f26a-bbff-489e-a066-fbfd36a59520)
)
(wire (pts (xy 22.86 127) (xy 30.48 127))
(stroke (width 0) (type default))
(uuid bdae8e92-5d9d-408c-bf65-dfc96c147f28)
)
(wire (pts (xy 198.12 107.95) (xy 198.12 127))
(stroke (width 0) (type default))
(uuid be88ad60-8137-46bf-8fe6-32bb95977f49)
)
(wire (pts (xy 60.96 127) (xy 76.2 127))
(stroke (width 0) (type default))