-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12v_reg.kicad_sch
2063 lines (2022 loc) · 73.9 KB
/
12v_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 ac3a8cc6-ec62-4f0f-b482-0a0e78763d84)
(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 248.92 73.66) (diameter 0) (color 0 0 0 0)
(uuid 056ce1c4-376f-4523-93c4-b74a61de7b7a)
)
(junction (at 259.08 73.66) (diameter 0) (color 0 0 0 0)
(uuid 0dd077bf-ae40-4c41-a1f7-32b6a667bc03)
)
(junction (at 24.13 115.57) (diameter 0) (color 0 0 0 0)
(uuid 10d6ff1f-ab93-4c5e-9d70-bec38a57b02f)
)
(junction (at 101.6 72.39) (diameter 0) (color 0 0 0 0)
(uuid 15deae73-7b67-4365-b2d9-029ab19c1b0b)
)
(junction (at 31.75 66.04) (diameter 0) (color 0 0 0 0)
(uuid 1a92acc5-d704-402d-a966-5dc871458718)
)
(junction (at 165.1 96.52) (diameter 0) (color 0 0 0 0)
(uuid 207e0b70-8891-4acd-96c3-a8c9c0a16662)
)
(junction (at 54.61 115.57) (diameter 0) (color 0 0 0 0)
(uuid 2ae54307-8e73-4f0b-9d37-286cff9f8ebc)
)
(junction (at 130.81 116.84) (diameter 0) (color 0 0 0 0)
(uuid 2f7fd49a-6003-4f48-828d-a6bf54a8adbf)
)
(junction (at 218.44 73.66) (diameter 0) (color 0 0 0 0)
(uuid 2faa44c5-5e03-4ffb-9248-9041c4b75587)
)
(junction (at 101.6 69.85) (diameter 0) (color 0 0 0 0)
(uuid 3ae243d7-8471-40d7-95a2-08296dd24b01)
)
(junction (at 76.2 115.57) (diameter 0) (color 0 0 0 0)
(uuid 3f46d5a4-a7c5-4001-a633-ac2be91072c3)
)
(junction (at 128.27 116.84) (diameter 0) (color 0 0 0 0)
(uuid 5544d39b-4895-4e1a-8ac5-a662ae83293b)
)
(junction (at 218.44 115.57) (diameter 0) (color 0 0 0 0)
(uuid 554d8ac6-7dbd-46f5-ae4e-973ef218ddc2)
)
(junction (at 228.6 115.57) (diameter 0) (color 0 0 0 0)
(uuid 61cb0e21-d5a3-46d1-8d7e-68e40adb6a46)
)
(junction (at 120.65 116.84) (diameter 0) (color 0 0 0 0)
(uuid 668174a4-0ad1-4c78-9bf4-8dc5d0dc8e74)
)
(junction (at 259.08 115.57) (diameter 0) (color 0 0 0 0)
(uuid 6908d52b-7dd0-4b5d-9d69-6eb0a95f3ba7)
)
(junction (at 142.24 78.74) (diameter 0) (color 0 0 0 0)
(uuid 6aa8a04d-0267-4e74-a4fd-4555a2f1179b)
)
(junction (at 187.96 73.66) (diameter 0) (color 0 0 0 0)
(uuid 6b526a49-39bf-4c71-b708-594eeed5af78)
)
(junction (at 238.76 73.66) (diameter 0) (color 0 0 0 0)
(uuid 6bcd6fa5-40ae-44b2-9874-a19baa17cfa7)
)
(junction (at 269.24 115.57) (diameter 0) (color 0 0 0 0)
(uuid 701e2d4e-d006-4d8c-8099-14c8dfee74a4)
)
(junction (at 43.18 115.57) (diameter 0) (color 0 0 0 0)
(uuid 76f71082-c3d8-47a3-8f6b-f2833504a55a)
)
(junction (at 198.12 115.57) (diameter 0) (color 0 0 0 0)
(uuid 80b1b31b-659f-4ee3-b8ba-449a59c81b93)
)
(junction (at 152.4 83.82) (diameter 0) (color 0 0 0 0)
(uuid 81fab8c7-4a36-43cc-b51b-80bc15e68759)
)
(junction (at 111.76 116.84) (diameter 0) (color 0 0 0 0)
(uuid 947c0a46-f5c0-4254-9dd1-01346c196563)
)
(junction (at 198.12 73.66) (diameter 0) (color 0 0 0 0)
(uuid 96b10715-1c12-4d17-85e0-5de03ba4e974)
)
(junction (at 165.1 73.66) (diameter 0) (color 0 0 0 0)
(uuid 9add09ab-8b8f-4027-b4dc-3643076ce4ff)
)
(junction (at 90.17 115.57) (diameter 0) (color 0 0 0 0)
(uuid 9aefdd46-7192-49ce-8dd1-a0fb554dd980)
)
(junction (at 120.65 121.92) (diameter 0) (color 0 0 0 0)
(uuid 9fe15bcc-fe8f-404d-b62c-8ac187faba57)
)
(junction (at 142.24 73.66) (diameter 0) (color 0 0 0 0)
(uuid a2c63243-aca6-4872-924b-321bcfe715ca)
)
(junction (at 31.75 115.57) (diameter 0) (color 0 0 0 0)
(uuid a5c9a0d6-faee-47da-8b2b-0400873e34b1)
)
(junction (at 81.28 115.57) (diameter 0) (color 0 0 0 0)
(uuid a607d45e-b3c1-40d2-8200-fcb1100d1001)
)
(junction (at 123.19 116.84) (diameter 0) (color 0 0 0 0)
(uuid a94f10b4-860c-4bef-b9a5-214c58c7c2c6)
)
(junction (at 208.28 115.57) (diameter 0) (color 0 0 0 0)
(uuid aab32f7d-a051-4ac5-b42f-f3792a9709c1)
)
(junction (at 125.73 116.84) (diameter 0) (color 0 0 0 0)
(uuid af6bf299-827f-45fa-97a6-5ab98d9fe046)
)
(junction (at 269.24 73.66) (diameter 0) (color 0 0 0 0)
(uuid afc0dd01-b460-4569-a6b2-19b128bd5b54)
)
(junction (at 43.18 66.04) (diameter 0) (color 0 0 0 0)
(uuid b2a32f28-78ef-44ab-985d-357f1db22dc9)
)
(junction (at 228.6 73.66) (diameter 0) (color 0 0 0 0)
(uuid b5ec68ca-881e-46b9-aa38-c0512e7aa7f9)
)
(junction (at 238.76 115.57) (diameter 0) (color 0 0 0 0)
(uuid baa2f93a-3e64-4044-b5cb-7ea35be8aca4)
)
(junction (at 54.61 82.55) (diameter 0) (color 0 0 0 0)
(uuid c6cc409c-e0c3-45fb-9dad-bb61e01c4c72)
)
(junction (at 161.29 73.66) (diameter 0) (color 0 0 0 0)
(uuid c85e490a-dec6-4c8a-8a60-e5d2f6175e14)
)
(junction (at 151.13 115.57) (diameter 0) (color 0 0 0 0)
(uuid c9578884-2825-4897-9be4-67c671c52750)
)
(junction (at 248.92 115.57) (diameter 0) (color 0 0 0 0)
(uuid ca322c30-ffca-4815-84c1-ff78cf03f742)
)
(junction (at 24.13 66.04) (diameter 0) (color 0 0 0 0)
(uuid ccd7cf74-8383-4e78-bca5-e8cf5564d8fa)
)
(junction (at 142.24 66.04) (diameter 0) (color 0 0 0 0)
(uuid cf789477-1f69-4774-bc1a-2d7c40dabc68)
)
(junction (at 187.96 115.57) (diameter 0) (color 0 0 0 0)
(uuid d31b6b67-eed7-443f-9773-51f69b712cf2)
)
(junction (at 142.24 81.28) (diameter 0) (color 0 0 0 0)
(uuid dbc91269-c574-404e-923e-8588f3d597aa)
)
(junction (at 62.23 102.87) (diameter 0) (color 0 0 0 0)
(uuid dd9fc9d9-8606-4163-b807-6768ba8911c3)
)
(junction (at 208.28 73.66) (diameter 0) (color 0 0 0 0)
(uuid e1a5c9d0-e1fc-40df-a2c6-6b96be081ba6)
)
(junction (at 175.26 73.66) (diameter 0) (color 0 0 0 0)
(uuid e25c173c-ece8-4ae9-84c4-cf492cf0d1f8)
)
(junction (at 62.23 66.04) (diameter 0) (color 0 0 0 0)
(uuid e2c16eb3-d8a4-40d7-bcf2-f9f21f6d6e04)
)
(junction (at 165.1 115.57) (diameter 0) (color 0 0 0 0)
(uuid e3441b76-623f-42fc-a5c3-32a83ca9890d)
)
(junction (at 142.24 76.2) (diameter 0) (color 0 0 0 0)
(uuid e4d0d7a7-8686-4c43-a848-3259de01a2c6)
)
(junction (at 175.26 115.57) (diameter 0) (color 0 0 0 0)
(uuid e72427b9-69a7-4888-abad-67744b6d33cc)
)
(junction (at 62.23 115.57) (diameter 0) (color 0 0 0 0)
(uuid f2965130-b894-4158-b70d-439f525bad5d)
)
(junction (at 101.6 66.04) (diameter 0) (color 0 0 0 0)
(uuid faeb2390-8367-45f1-b6cf-e8d38fe0961d)
)
(no_connect (at 101.6 93.98) (uuid b8a29fd4-8a08-4ebf-9195-1ad58ddd28fe))
(no_connect (at 140.97 86.36) (uuid f4bf5537-8644-4ac9-bb49-99ee687a0541))
(wire (pts (xy 248.92 73.66) (xy 259.08 73.66))
(stroke (width 0) (type default))
(uuid 02d3595a-a5e2-46ad-b55c-24e7c8d71c4a)
)
(wire (pts (xy 62.23 111.76) (xy 62.23 115.57))
(stroke (width 0) (type default))
(uuid 04637dc7-0874-4b4b-b6c8-808023d755de)
)
(wire (pts (xy 208.28 73.66) (xy 208.28 88.9))
(stroke (width 0) (type default))
(uuid 0544d981-7bfe-4fac-970b-64f8ee6e8ad6)
)
(wire (pts (xy 175.26 73.66) (xy 175.26 88.9))
(stroke (width 0) (type default))
(uuid 055130a3-4351-4bea-b84d-5aae8ba23193)
)
(wire (pts (xy 120.65 116.84) (xy 123.19 116.84))
(stroke (width 0) (type default))
(uuid 05d6c798-c5a6-4717-8bb7-8f3fcb094ed8)
)
(wire (pts (xy 187.96 73.66) (xy 187.96 88.9))
(stroke (width 0) (type default))
(uuid 06bbb3fa-d76d-4b98-9df7-2be0b9422013)
)
(wire (pts (xy 62.23 115.57) (xy 76.2 115.57))
(stroke (width 0) (type default))
(uuid 07731c35-8947-4817-8dfe-f845b1397de7)
)
(wire (pts (xy 140.97 73.66) (xy 142.24 73.66))
(stroke (width 0) (type default))
(uuid 0970c25f-5cf2-4ba3-ab41-ce0fe764bb59)
)
(wire (pts (xy 72.39 91.44) (xy 72.39 102.87))
(stroke (width 0) (type default))
(uuid 09f965f2-650d-4368-9070-5a3e3d242d9c)
)
(wire (pts (xy 156.21 73.66) (xy 161.29 73.66))
(stroke (width 0) (type default))
(uuid 0a473050-fc03-4ccd-82b0-382c2c20f02e)
)
(wire (pts (xy 97.79 104.14) (xy 97.79 106.68))
(stroke (width 0) (type default))
(uuid 0acdfa48-c208-48ad-9caa-a2653b74e7d1)
)
(wire (pts (xy 187.96 96.52) (xy 187.96 115.57))
(stroke (width 0) (type default))
(uuid 0c37c74c-e73d-40f8-996b-aeb446b6589d)
)
(wire (pts (xy 72.39 102.87) (xy 62.23 102.87))
(stroke (width 0) (type default))
(uuid 11504ac4-88cd-4dca-a041-7860a1231fe9)
)
(wire (pts (xy 175.26 96.52) (xy 175.26 115.57))
(stroke (width 0) (type default))
(uuid 118a5c7d-ba45-4eb7-8308-d98e1d91ca40)
)
(wire (pts (xy 151.13 83.82) (xy 152.4 83.82))
(stroke (width 0) (type default))
(uuid 19816cdd-79d1-43c3-8efb-975961435d93)
)
(wire (pts (xy 248.92 96.52) (xy 248.92 115.57))
(stroke (width 0) (type default))
(uuid 1a655863-ea3e-4e86-b093-f7928cdfad69)
)
(wire (pts (xy 128.27 54.61) (xy 128.27 60.96))
(stroke (width 0) (type default))
(uuid 1c3dccd6-2dbc-4048-a20a-51641d51f5e8)
)
(wire (pts (xy 198.12 96.52) (xy 198.12 115.57))
(stroke (width 0) (type default))
(uuid 1c73cdab-c917-4e4f-8b54-725536703304)
)
(wire (pts (xy 165.1 115.57) (xy 175.26 115.57))
(stroke (width 0) (type default))
(uuid 1d67e73b-175d-46d8-90c4-6b51ab369b49)
)
(wire (pts (xy 54.61 82.55) (xy 54.61 85.09))
(stroke (width 0) (type default))
(uuid 1ff4b8d7-1df8-4365-9ed5-7ac149c2651e)
)
(wire (pts (xy 149.86 91.44) (xy 152.4 91.44))
(stroke (width 0) (type default))
(uuid 231877c1-a2e1-4941-a0d6-07815f898369)
)
(wire (pts (xy 175.26 73.66) (xy 187.96 73.66))
(stroke (width 0) (type default))
(uuid 25ed7ce2-10b8-447c-8f69-c0fc6a2a30f6)
)
(wire (pts (xy 269.24 96.52) (xy 269.24 115.57))
(stroke (width 0) (type default))
(uuid 263c2cea-9e7d-4f08-ba24-2598ddf62b8b)
)
(wire (pts (xy 101.6 100.33) (xy 90.17 100.33))
(stroke (width 0) (type default))
(uuid 26f148b5-4cce-4d36-b768-37ed5248ba78)
)
(wire (pts (xy 101.6 96.52) (xy 81.28 96.52))
(stroke (width 0) (type default))
(uuid 29e14180-a3da-488f-b9de-b83755ec3de1)
)
(wire (pts (xy 142.24 73.66) (xy 148.59 73.66))
(stroke (width 0) (type default))
(uuid 2a0558af-bc3e-472f-abd6-ee7372e7073b)
)
(wire (pts (xy 43.18 92.71) (xy 43.18 115.57))
(stroke (width 0) (type default))
(uuid 2a6bfdfe-e2c1-492f-8e3b-a696cc41e83e)
)
(wire (pts (xy 208.28 96.52) (xy 208.28 115.57))
(stroke (width 0) (type default))
(uuid 2c11ee4c-6dbd-44d2-9df7-21a2ceb063c9)
)
(wire (pts (xy 123.19 116.84) (xy 125.73 116.84))
(stroke (width 0) (type default))
(uuid 2d429e65-3816-4072-ac83-4b214707378e)
)
(wire (pts (xy 238.76 73.66) (xy 238.76 88.9))
(stroke (width 0) (type default))
(uuid 2fadb531-7075-4db2-a8f4-26854eecfa0f)
)
(wire (pts (xy 142.24 83.82) (xy 143.51 83.82))
(stroke (width 0) (type default))
(uuid 31581629-5299-4b33-86da-24b1a32e2083)
)
(wire (pts (xy 20.32 66.04) (xy 24.13 66.04))
(stroke (width 0) (type default))
(uuid 320c1a3b-fca0-4f15-9069-9fe2e7685948)
)
(wire (pts (xy 90.17 109.22) (xy 90.17 115.57))
(stroke (width 0) (type default))
(uuid 38e5cf04-e717-49db-bc62-985c4c4a76d4)
)
(wire (pts (xy 143.51 114.3) (xy 143.51 115.57))
(stroke (width 0) (type default))
(uuid 39773fe5-5ebd-46ee-a89b-13318ebd67c1)
)
(wire (pts (xy 269.24 73.66) (xy 269.24 88.9))
(stroke (width 0) (type default))
(uuid 3e67671e-d9d6-45e8-a2f1-4e7c3d3f6115)
)
(wire (pts (xy 161.29 73.66) (xy 161.29 83.82))
(stroke (width 0) (type default))
(uuid 3f1d607b-ba63-400d-9d57-18aa5efc9d8f)
)
(wire (pts (xy 83.82 78.74) (xy 101.6 78.74))
(stroke (width 0) (type default))
(uuid 48128d7c-f2e9-48bb-9fc7-812833e91b86)
)
(wire (pts (xy 140.97 78.74) (xy 142.24 78.74))
(stroke (width 0) (type default))
(uuid 497d7c68-6345-448e-9d37-5cbc431f4845)
)
(wire (pts (xy 228.6 96.52) (xy 228.6 115.57))
(stroke (width 0) (type default))
(uuid 4d252ce5-1989-454e-a6e4-eec54a5cac36)
)
(wire (pts (xy 140.97 106.68) (xy 143.51 106.68))
(stroke (width 0) (type default))
(uuid 4f6039b6-5333-46ff-bf7f-48a336bd74e6)
)
(wire (pts (xy 111.76 121.92) (xy 120.65 121.92))
(stroke (width 0) (type default))
(uuid 5012f119-52eb-4fe0-883f-e1519c04dbf4)
)
(wire (pts (xy 111.76 116.84) (xy 114.3 116.84))
(stroke (width 0) (type default))
(uuid 54eeff3c-2b4f-48a1-af9e-3e163beeb0cf)
)
(wire (pts (xy 31.75 66.04) (xy 31.75 85.09))
(stroke (width 0) (type default))
(uuid 5b2a4030-219f-44d0-ba41-237b2f90bec2)
)
(wire (pts (xy 140.97 91.44) (xy 142.24 91.44))
(stroke (width 0) (type default))
(uuid 5d8153de-1271-4228-bb55-fa016ff967ca)
)
(wire (pts (xy 101.6 104.14) (xy 97.79 104.14))
(stroke (width 0) (type default))
(uuid 613dc01d-98c1-4b0a-bbac-b16df01a524e)
)
(wire (pts (xy 151.13 101.6) (xy 151.13 102.87))
(stroke (width 0) (type default))
(uuid 62fa359b-da91-448e-977a-56b74ef588c9)
)
(wire (pts (xy 208.28 73.66) (xy 218.44 73.66))
(stroke (width 0) (type default))
(uuid 64f0b0dc-93a8-46df-bf05-072ea90b6041)
)
(wire (pts (xy 101.6 69.85) (xy 101.6 72.39))
(stroke (width 0) (type default))
(uuid 65451a47-8fbc-47bd-9e7b-4910caa43618)
)
(wire (pts (xy 101.6 86.36) (xy 76.2 86.36))
(stroke (width 0) (type default))
(uuid 6624a1b4-ce4e-4924-85cf-5c6121b7cda1)
)
(wire (pts (xy 31.75 92.71) (xy 31.75 115.57))
(stroke (width 0) (type default))
(uuid 68d628d3-a488-493a-9087-d0a15ae145a4)
)
(wire (pts (xy 76.2 115.57) (xy 81.28 115.57))
(stroke (width 0) (type default))
(uuid 68f5ac34-6f55-44ee-a4de-5d6310832ca2)
)
(wire (pts (xy 90.17 115.57) (xy 97.79 115.57))
(stroke (width 0) (type default))
(uuid 6a1543c1-0fbb-4c0c-80fa-ad125e388609)
)
(wire (pts (xy 208.28 115.57) (xy 218.44 115.57))
(stroke (width 0) (type default))
(uuid 6d16c007-b959-4e17-90ab-6a3f7f308de4)
)
(wire (pts (xy 111.76 116.84) (xy 111.76 121.92))
(stroke (width 0) (type default))
(uuid 6f20c68a-7cf4-42bc-a45b-013f315e3cc6)
)
(wire (pts (xy 143.51 115.57) (xy 151.13 115.57))
(stroke (width 0) (type default))
(uuid 6f243b71-c973-4cae-8174-d9591f9868b3)
)
(wire (pts (xy 259.08 73.66) (xy 269.24 73.66))
(stroke (width 0) (type default))
(uuid 6f2bc555-62e1-4782-b9db-62ad8c8c7323)
)
(wire (pts (xy 218.44 115.57) (xy 228.6 115.57))
(stroke (width 0) (type default))
(uuid 72622bce-c64c-4d15-b189-e85741550c11)
)
(wire (pts (xy 81.28 109.22) (xy 81.28 115.57))
(stroke (width 0) (type default))
(uuid 74fc7b80-c400-4c30-9a04-c0127ce749b3)
)
(wire (pts (xy 161.29 73.66) (xy 165.1 73.66))
(stroke (width 0) (type default))
(uuid 762861f6-d3dd-41ef-919d-ff8d0faac795)
)
(wire (pts (xy 130.81 54.61) (xy 128.27 54.61))
(stroke (width 0) (type default))
(uuid 77afd756-e4a1-4ab6-b9b5-b38de5f61a9c)
)
(wire (pts (xy 128.27 116.84) (xy 130.81 116.84))
(stroke (width 0) (type default))
(uuid 78e6fb81-78ec-4af8-a61a-f7f41a1937fc)
)
(wire (pts (xy 269.24 115.57) (xy 278.13 115.57))
(stroke (width 0) (type default))
(uuid 7a2bf90f-823b-4665-9752-998b68ee40d1)
)
(wire (pts (xy 165.1 100.33) (xy 165.1 96.52))
(stroke (width 0) (type default))
(uuid 7b363635-a36f-481e-b28a-fef3ddb055af)
)
(wire (pts (xy 76.2 111.76) (xy 76.2 115.57))
(stroke (width 0) (type default))
(uuid 7ba98b1e-4838-4cbb-95c9-27c77674a5e6)
)
(wire (pts (xy 97.79 115.57) (xy 97.79 114.3))
(stroke (width 0) (type default))
(uuid 7cd4c85c-b2c3-4f07-9a95-754f614c4489)
)
(wire (pts (xy 228.6 73.66) (xy 228.6 88.9))
(stroke (width 0) (type default))
(uuid 7d0fc7a7-ff82-4d36-8a67-aeaeb5c58ab1)
)
(wire (pts (xy 140.97 96.52) (xy 165.1 96.52))
(stroke (width 0) (type default))
(uuid 7d4fce4a-c09e-4504-b94d-6e7573297ad9)
)
(wire (pts (xy 31.75 115.57) (xy 43.18 115.57))
(stroke (width 0) (type default))
(uuid 7f428bdd-0c91-43b0-b2b2-c56c0dccab69)
)
(wire (pts (xy 81.28 115.57) (xy 90.17 115.57))
(stroke (width 0) (type default))
(uuid 809d1c43-17fe-416d-9f35-21c6bf2c012d)
)
(wire (pts (xy 90.17 100.33) (xy 90.17 101.6))
(stroke (width 0) (type default))
(uuid 859e0758-1bb4-4ed8-ad99-553f2f591ab1)
)
(wire (pts (xy 238.76 73.66) (xy 248.92 73.66))
(stroke (width 0) (type default))
(uuid 873e6e8a-c940-4062-a4ae-0363a9cad88d)
)
(wire (pts (xy 152.4 91.44) (xy 152.4 83.82))
(stroke (width 0) (type default))
(uuid 893c6476-3055-485b-a904-6a30d2ed1b56)
)
(wire (pts (xy 24.13 92.71) (xy 24.13 115.57))
(stroke (width 0) (type default))
(uuid 8c5881f3-47cc-4b1c-a411-bb7113ebabea)
)
(wire (pts (xy 81.28 96.52) (xy 81.28 101.6))
(stroke (width 0) (type default))
(uuid 92ec3238-324f-46bb-90f0-599aa995fcba)
)
(wire (pts (xy 76.2 86.36) (xy 76.2 104.14))
(stroke (width 0) (type default))
(uuid 93782d08-eba7-4c6b-a233-c14d641654ae)
)
(wire (pts (xy 101.6 66.04) (xy 101.6 69.85))
(stroke (width 0) (type default))
(uuid 94f7163b-b9b9-47b5-acb9-ac1ab0490c90)
)
(wire (pts (xy 187.96 115.57) (xy 198.12 115.57))
(stroke (width 0) (type default))
(uuid 9865d0df-5cbc-48d2-bd81-64e932a03b27)
)
(wire (pts (xy 101.6 91.44) (xy 72.39 91.44))
(stroke (width 0) (type default))
(uuid 99c6c798-db0f-4a25-a3b7-6b4224be8b06)
)
(wire (pts (xy 149.86 101.6) (xy 151.13 101.6))
(stroke (width 0) (type default))
(uuid 9b8b8fc1-7221-4989-8b48-4223dd8ca7ff)
)
(wire (pts (xy 175.26 115.57) (xy 187.96 115.57))
(stroke (width 0) (type default))
(uuid 9fcdd91d-25ba-4e86-bcfd-b9ffc819e104)
)
(wire (pts (xy 24.13 66.04) (xy 31.75 66.04))
(stroke (width 0) (type default))
(uuid a2beaf69-3577-4482-aea3-a0469a4e08ec)
)
(wire (pts (xy 151.13 115.57) (xy 165.1 115.57))
(stroke (width 0) (type default))
(uuid a2e87e09-59a4-4384-9fb6-21add9c7b651)
)
(wire (pts (xy 198.12 73.66) (xy 208.28 73.66))
(stroke (width 0) (type default))
(uuid a632d7c7-a909-49a3-b612-a9d607443886)
)
(wire (pts (xy 238.76 115.57) (xy 248.92 115.57))
(stroke (width 0) (type default))
(uuid a7026d7f-7769-42c2-9024-e8a492d73e82)
)
(wire (pts (xy 20.32 115.57) (xy 24.13 115.57))
(stroke (width 0) (type default))
(uuid a76d51b7-e2d2-49bd-b8e8-e8d01a038f1c)
)
(wire (pts (xy 259.08 115.57) (xy 269.24 115.57))
(stroke (width 0) (type default))
(uuid adbb5048-c018-4ebd-b804-690335f22ddb)
)
(wire (pts (xy 259.08 73.66) (xy 259.08 88.9))
(stroke (width 0) (type default))
(uuid ae35ed38-5b74-45b5-8e23-d1ac25df712e)
)
(wire (pts (xy 62.23 102.87) (xy 62.23 104.14))
(stroke (width 0) (type default))
(uuid ae7195e7-7d71-4526-aa24-64b087bb1c4f)
)
(wire (pts (xy 142.24 83.82) (xy 142.24 81.28))
(stroke (width 0) (type default))
(uuid b0664130-cb86-41d6-83e1-339dbb0db735)
)
(wire (pts (xy 24.13 66.04) (xy 24.13 85.09))
(stroke (width 0) (type default))
(uuid b071c1f1-a9f7-4fc7-b625-ad71f032f159)
)
(wire (pts (xy 228.6 115.57) (xy 238.76 115.57))
(stroke (width 0) (type default))
(uuid b0fbcc12-3596-4f19-9a27-c262ed9040d5)
)
(wire (pts (xy 43.18 66.04) (xy 62.23 66.04))
(stroke (width 0) (type default))
(uuid b397d789-bf7c-4700-ad20-b3572b707984)
)
(wire (pts (xy 24.13 115.57) (xy 31.75 115.57))
(stroke (width 0) (type default))
(uuid b3ab4418-f780-47e9-b79a-385ddebd8ded)
)
(wire (pts (xy 130.81 116.84) (xy 133.35 116.84))
(stroke (width 0) (type default))
(uuid b4ecab63-d905-4ff7-a2a1-cb5c88f84634)
)
(wire (pts (xy 43.18 115.57) (xy 54.61 115.57))
(stroke (width 0) (type default))
(uuid b56a8f7a-30f1-4bbc-b19c-11bfcf68bc06)
)
(wire (pts (xy 43.18 66.04) (xy 43.18 85.09))
(stroke (width 0) (type default))
(uuid b7bb8514-76b1-491b-8d9c-91a2e3fd1ac1)
)
(wire (pts (xy 54.61 115.57) (xy 62.23 115.57))
(stroke (width 0) (type default))
(uuid b854ac25-84b7-4362-b8ca-487b5e4390e3)
)
(wire (pts (xy 269.24 73.66) (xy 276.86 73.66))
(stroke (width 0) (type default))
(uuid b980b852-3023-4e02-98f4-054f2f5b9042)
)
(wire (pts (xy 228.6 73.66) (xy 238.76 73.66))
(stroke (width 0) (type default))
(uuid b990b3a3-bd2a-4dff-ad06-15731ab10bd2)
)
(wire (pts (xy 142.24 68.58) (xy 140.97 68.58))
(stroke (width 0) (type default))
(uuid bb1f9ff4-5854-4b9d-b7e2-ca8870a3df5f)
)
(wire (pts (xy 62.23 66.04) (xy 101.6 66.04))
(stroke (width 0) (type default))
(uuid bb3d05c3-1802-4a34-be0a-202f64ebcce1)
)
(wire (pts (xy 248.92 73.66) (xy 248.92 88.9))
(stroke (width 0) (type default))
(uuid bbd3246b-5099-4574-90a9-f6133f223091)
)
(wire (pts (xy 248.92 115.57) (xy 259.08 115.57))
(stroke (width 0) (type default))
(uuid bbddb715-11cc-43a6-abf0-ba7152ea7d53)
)
(wire (pts (xy 198.12 115.57) (xy 208.28 115.57))
(stroke (width 0) (type default))