-
Notifications
You must be signed in to change notification settings - Fork 0
/
audio.kicad_sch
2530 lines (2462 loc) · 94.9 KB
/
audio.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 791a5e22-eefd-4c9f-8145-64da9c193893)
(paper "A")
(title_block
(title "Audio")
(date "2022-01-11")
(rev "${Version}")
(company "RetroComputing Reproductions")
)
(lib_symbols
(symbol "Connector:AudioJack3" (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Connector_AudioJack3" (id 1) (at 0 6.35 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_fp_filters" "Jack*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AudioJack3_0_1"
(rectangle (start -5.08 -5.08) (end -6.35 -2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0.635 -3.175)
(xy 1.27 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -2.54)
(xy -1.27 -3.175)
(xy -0.635 -2.54)
(xy -0.635 0)
(xy 2.54 0)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy -2.54 2.54)
(xy -2.54 -2.54)
(xy -3.175 -3.175)
(xy -3.81 -2.54)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.54 3.81) (end -5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "AudioJack3_1_1"
(pin passive line (at 5.08 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "R" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "S" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "T" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Device_C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 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_fp_filters" "C_*" (id 4) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(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:CP1" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Device_CP1" (id 1) (at 0.635 -2.54 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_fp_filters" "CP_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CP1_0_1"
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.778)
(xy -1.27 2.794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 2.032 -1.27) (mid 0 -0.5572) (end -2.032 -1.27)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "CP1_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:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (id 0) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Device_Crystal" (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_fp_filters" "Crystal*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -1.905 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -1.27)
(xy -1.905 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.905 -1.27)
(xy 1.905 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 1.905 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Crystal_1_1"
(pin passive line (at -3.81 0 0) (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 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Ferrite_Bead_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (id 0) (at 1.905 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Device_Ferrite_Bead_Small" (id 1) (at 1.905 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Ferrite_Bead_Small_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -0.7874)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0.889)
(xy 0 1.2954)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.8288 0.2794)
(xy -1.1176 1.4986)
(xy 1.8288 -0.2032)
(xy 1.1176 -1.4224)
(xy -1.8288 0.2794)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Ferrite_Bead_Small_1_1"
(pin passive line (at 0 2.54 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 -2.54 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Device_R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_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 "myLib:SSM2603" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 25.4 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "myLib_SSM2603" (id 1) (at 0 11.43 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_fp_filters" "lfcsp-28-1ep_5x5mm_p0.5mm* ssm2603*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SSM2603_0_1"
(rectangle (start 0 10.16) (end 27.94 -62.23)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "SSM2603_1_1"
(pin input line (at -2.54 -49.53 0) (length 2.54)
(name "MCLK/XTI" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -25.4 0) (length 2.54)
(name "RECDAT" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -2.54 -27.94 0) (length 2.54)
(name "RECLRC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 12.7 12.7 270) (length 2.54)
(name "HPVDD" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -10.16 180) (length 2.54)
(name "LHPOUT" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -15.24 180) (length 2.54)
(name "RHPOUT" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 12.7 -64.77 90) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -5.08 180) (length 2.54)
(name "LOUT" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 0 180) (length 2.54)
(name "ROUT" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 7.62 12.7 270) (length 2.54)
(name "AVDD" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 7.62 -64.77 90) (length 2.54)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin output line (at -2.54 -54.61 0) (length 2.54)
(name "XTO" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -38.1 180) (length 2.54)
(name "VMID" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin output line (at -2.54 -10.16 0) (length 2.54)
(name "MICBIAS" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -15.24 0) (length 2.54)
(name "MICIN" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -5.08 0) (length 2.54)
(name "RLINEIN" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 0 0) (length 2.54)
(name "LLINEIN" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -35.56 0) (length 2.54)
(name "MUTE" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -38.1 0) (length 2.54)
(name "CSB" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -2.54 -40.64 0) (length 2.54)
(name "SDIN" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -43.18 0) (length 2.54)
(name "SDCLK" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 22.86 -64.77 90) (length 2.54)
(name "EP" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 22.86 12.7 270) (length 2.54)
(name "DCVDD" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -64.77 90) (length 2.54)
(name "DGND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 12.7 270) (length 2.54)
(name "DBVDD" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output line (at 30.48 -30.48 180) (length 2.54)
(name "CLKOUT" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional clock (at -2.54 -30.48 0) (length 2.54)
(name "BCLK" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -22.86 0) (length 2.54)
(name "PBDAT" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -2.54 -20.32 0) (length 2.54)
(name "PBLRC" (effects (font (size 1.27 1.27))))
(number "9" (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" "power_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)
)
(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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "power_PWR_FLAG" (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)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 99.06 60.96) (diameter 0) (color 0 0 0 0)
(uuid 051d4750-b73a-474f-abf5-a58dadb01c92)
)
(junction (at 214.63 95.25) (diameter 0) (color 0 0 0 0)
(uuid 0fc92961-6e51-49df-b0eb-dd1791483003)
)
(junction (at 138.43 33.02) (diameter 0) (color 0 0 0 0)
(uuid 1330eb77-c16f-4a58-a897-f5af49736826)
)
(junction (at 143.51 33.02) (diameter 0) (color 0 0 0 0)
(uuid 15f86f86-6612-462a-a1d2-f730a8788a9a)
)
(junction (at 74.93 82.55) (diameter 0) (color 0 0 0 0)
(uuid 1c55eaff-dfb6-4adc-bdb2-1121eb73358d)
)
(junction (at 160.02 60.96) (diameter 0) (color 0 0 0 0)
(uuid 1e362064-1c5c-469c-8576-28390879d190)
)
(junction (at 171.45 127) (diameter 0) (color 0 0 0 0)
(uuid 1fbda89d-82ba-4f0a-b113-988f269883dc)
)
(junction (at 209.55 95.25) (diameter 0) (color 0 0 0 0)
(uuid 23d269d6-d694-442a-bf5d-98bf3544fc31)
)
(junction (at 67.31 123.19) (diameter 0) (color 0 0 0 0)
(uuid 251bbd6b-00ad-4956-8621-28b4b522b62b)
)
(junction (at 195.58 78.74) (diameter 0) (color 0 0 0 0)
(uuid 2629f374-664b-4a6a-877f-847eba3a2928)
)
(junction (at 157.48 50.8) (diameter 0) (color 0 0 0 0)
(uuid 31ae1ddb-55f8-4875-b94d-87a4d0c86414)
)
(junction (at 186.69 100.33) (diameter 0) (color 0 0 0 0)
(uuid 3655f956-9a76-438c-8e5d-c0f5921a3841)
)
(junction (at 212.09 110.49) (diameter 0) (color 0 0 0 0)
(uuid 463e71c6-e035-4ed0-9a41-c3c9633f2c78)
)
(junction (at 106.68 132.08) (diameter 0) (color 0 0 0 0)
(uuid 4cb674e3-7fd0-4bdf-83d4-7b2424e2e5c0)
)
(junction (at 69.85 123.19) (diameter 0) (color 0 0 0 0)
(uuid 5d4ed9ca-985c-4d79-b913-0fd671b604bc)
)
(junction (at 63.5 134.62) (diameter 0) (color 0 0 0 0)
(uuid 606cc23c-679a-4fa3-b3b1-c023026298b1)
)
(junction (at 127.635 50.8) (diameter 0) (color 0 0 0 0)
(uuid 677a1070-c11b-49a9-8186-12e0a3e880b1)
)
(junction (at 117.475 48.26) (diameter 0) (color 0 0 0 0)
(uuid 6db6b2d8-cd53-4924-910c-ce03370c85ba)
)
(junction (at 119.38 132.08) (diameter 0) (color 0 0 0 0)
(uuid 71c1b4b1-fe29-4ef4-89f5-de4386e105a9)
)
(junction (at 125.73 50.8) (diameter 0) (color 0 0 0 0)
(uuid 753c83e3-0e5d-49a7-99fa-14d791ee9328)
)
(junction (at 143.51 143.51) (diameter 0) (color 0 0 0 0)
(uuid 8157d0c3-4115-4fef-882d-18ff9f3b1e49)
)
(junction (at 123.19 60.96) (diameter 0) (color 0 0 0 0)
(uuid 822cf157-ecb8-46d7-8cc6-5f0248fd6b37)
)
(junction (at 69.85 134.62) (diameter 0) (color 0 0 0 0)
(uuid 85c4eb9a-1efe-40fd-86af-36f89108b5f9)
)
(junction (at 160.02 115.57) (diameter 0) (color 0 0 0 0)
(uuid 8847e751-6992-4f80-92c5-c3bef4b5dbf6)
)
(junction (at 189.23 110.49) (diameter 0) (color 0 0 0 0)
(uuid 9cb0289b-897f-4a33-9575-6ead0989832a)
)
(junction (at 193.04 90.17) (diameter 0) (color 0 0 0 0)
(uuid a1f64cc6-dc73-41aa-a86c-99d2c0c7e9e8)
)
(junction (at 140.97 143.51) (diameter 0) (color 0 0 0 0)
(uuid a3c07522-2d1f-4d1c-a6e5-18097136531a)
)
(junction (at 133.35 33.02) (diameter 0) (color 0 0 0 0)
(uuid a5e5a32b-d259-4833-9676-56ada82e83c2)
)
(junction (at 191.77 100.33) (diameter 0) (color 0 0 0 0)
(uuid a66bd857-144e-4ab0-ab7a-3c10ed80cb1e)
)
(junction (at 148.59 50.8) (diameter 0) (color 0 0 0 0)
(uuid a6e0def8-4f4c-4324-b688-07d61c9eec31)
)
(junction (at 113.03 142.24) (diameter 0) (color 0 0 0 0)
(uuid afd59d07-bfd6-4bc9-8176-e0ddec1872a1)
)
(junction (at 133.35 50.8) (diameter 0) (color 0 0 0 0)
(uuid b34ce9ce-d270-4842-8d95-94720e40d3ca)
)
(junction (at 190.5 73.66) (diameter 0) (color 0 0 0 0)
(uuid b81cd904-69d1-4c8b-81f2-302fdf1cfeb0)
)
(junction (at 143.51 48.26) (diameter 0) (color 0 0 0 0)
(uuid d8e238b6-5437-4b14-9ba7-0337f0b828ab)
)
(junction (at 138.43 143.51) (diameter 0) (color 0 0 0 0)
(uuid d9209bac-cc1b-4bd5-9b0c-8896b0dbce47)
)
(junction (at 63.5 123.19) (diameter 0) (color 0 0 0 0)
(uuid dc538eb4-034b-4b8a-a5e5-4a3e1e9a8cd3)
)
(junction (at 82.55 77.47) (diameter 0) (color 0 0 0 0)
(uuid dcbc5a2e-2561-4663-8736-09acc9fe0209)
)
(junction (at 182.88 60.96) (diameter 0) (color 0 0 0 0)
(uuid de044b0e-b1ea-4e31-a233-e607dfa30726)
)
(junction (at 180.34 48.26) (diameter 0) (color 0 0 0 0)
(uuid df48a6c9-82c3-4d2f-b81e-04590b6597d8)
)
(junction (at 101.6 48.26) (diameter 0) (color 0 0 0 0)
(uuid e2d57c80-00fb-4077-9c97-5541d2825a6b)
)
(junction (at 138.43 48.26) (diameter 0) (color 0 0 0 0)
(uuid e42b8b80-020c-4fee-b000-fd91abf3966d)
)
(junction (at 81.28 123.19) (diameter 0) (color 0 0 0 0)
(uuid e4438bcc-e238-4937-8435-31b6e844807b)
)
(no_connect (at 156.21 107.95) (uuid 27b5a6bb-bf08-4e16-abae-290afd548f36))
(wire (pts (xy 156.21 92.71) (xy 162.56 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 019b9904-3bfd-4fd4-9d41-96b38c16849e)
)
(wire (pts (xy 97.79 123.19) (xy 97.79 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02ca9350-9e0f-471f-a345-bee2587bb572)
)
(wire (pts (xy 69.85 123.19) (xy 81.28 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0368658f-3125-4888-be8d-2d00cf819e46)
)
(wire (pts (xy 186.69 100.33) (xy 191.77 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 050ccb9c-c92e-4885-96ad-3c8ee62baa70)
)
(wire (pts (xy 217.17 78.74) (xy 224.79 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 058fedcc-704d-4293-8197-34a17ef8dc07)
)
(wire (pts (xy 138.43 35.56) (xy 138.43 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05fda319-28dc-4877-8331-02cb10501361)
)
(wire (pts (xy 191.77 110.49) (xy 191.77 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 066893ee-f587-4ad1-a5e3-e3171a7f7252)
)
(wire (pts (xy 74.93 114.3) (xy 67.31 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07e820f6-5352-4622-89c6-9dc8d877ae52)
)
(wire (pts (xy 67.31 114.3) (xy 67.31 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08895aac-0eaf-4885-9893-39d7cbab257b)
)
(wire (pts (xy 62.23 85.09) (xy 63.5 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0afc6592-c2db-4caa-a22b-f13f9e7e1c40)
)
(wire (pts (xy 180.34 60.96) (xy 182.88 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b264411-5df7-4227-b41c-4ba7687d2096)
)
(wire (pts (xy 97.79 82.55) (xy 123.19 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e0a4b84-f32d-4d0d-bb01-e1a33da32acb)
)
(wire (pts (xy 214.63 101.6) (xy 214.63 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13126287-e9cb-4238-b299-7176f08d4c96)
)
(wire (pts (xy 92.71 114.3) (xy 82.55 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13d0922b-6304-4dca-bf30-664d82859d66)
)
(wire (pts (xy 157.48 60.96) (xy 160.02 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1452f510-68cb-471e-a2d7-5f55b38265b4)
)
(wire (pts (xy 138.43 143.51) (xy 140.97 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14b6a088-e29e-4f65-bb62-fd783c1ab88e)
)
(wire (pts (xy 138.43 33.02) (xy 133.35 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 163cdeae-7841-4f2c-b738-e36b081d5e19)
)
(wire (pts (xy 186.69 101.6) (xy 186.69 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1675ce03-54b6-4252-90b1-150b2d4729ec)
)
(wire (pts (xy 125.73 52.07) (xy 125.73 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16ea365c-d7f5-4c44-b4c6-7d8ef461a0ca)
)
(wire (pts (xy 214.63 110.49) (xy 214.63 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 191379e4-86ba-4bf3-8d2d-4cd5385d32c3)
)
(wire (pts (xy 63.5 80.01) (xy 63.5 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a657991-5c9c-41a4-9f2e-22f0c7450b3a)
)
(wire (pts (xy 143.51 143.51) (xy 148.59 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d3dd843-278a-491c-aee7-c4ca56549357)
)
(wire (pts (xy 63.5 125.73) (xy 63.5 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20a40fd4-4825-456a-b45d-96e8fe1622a5)
)
(wire (pts (xy 223.52 104.14) (xy 223.52 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20cc5dd3-f607-44c7-ac7e-e7aebd9790dd)
)
(wire (pts (xy 186.69 109.22) (xy 186.69 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2330a65f-a667-4564-b2ea-fd267508069a)
)
(wire (pts (xy 148.59 50.8) (xy 148.59 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2361ed9d-44ac-40c1-ab71-db1419d4ef87)
)
(wire (pts (xy 143.51 33.02) (xy 138.43 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2415334a-b998-4d19-a8b5-e60e8af2aff4)
)
(wire (pts (xy 138.43 143.51) (xy 138.43 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26584013-aa69-4f6e-9469-cf96829118fe)
)
(wire (pts (xy 184.15 78.74) (xy 195.58 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a891096-042c-4004-b161-8bd2c0b59fd7)
)
(wire (pts (xy 156.21 87.63) (xy 165.1 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a9ff3d1-92b0-4583-8230-9357a432a3ac)
)
(wire (pts (xy 121.92 105.41) (xy 123.19 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bf34b7c-94ca-4ac8-94c5-6312536f342f)
)
(wire (pts (xy 96.52 52.07) (xy 96.52 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d0a1cd4-a5be-46cc-a28f-17278e9b94e9)
)
(wire (pts (xy 162.56 50.8) (xy 157.48 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d6a4f0e-aa68-4d44-9390-8ea258fa2bc4)
)
(wire (pts (xy 96.52 59.69) (xy 96.52 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e2c4431-7ad4-4101-b72a-e48147e24a71)
)
(wire (pts (xy 125.73 50.8) (xy 127.635 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3191783e-5075-4348-8aac-846f923d21cb)
)
(wire (pts (xy 209.55 101.6) (xy 209.55 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31d127b8-e8f8-47b6-acc4-5f7197d756d8)
)
(wire (pts (xy 214.63 95.25) (xy 219.71 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 345b5742-5f5b-4133-bd63-f955ca19a62c)
)
(wire (pts (xy 74.93 92.71) (xy 74.93 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3491c78b-620e-46ca-a1c1-053b49774cc7)
)
(wire (pts (xy 186.69 110.49) (xy 189.23 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34bb2d5a-a1fd-4187-b623-25a5b805199b)
)
(wire (pts (xy 81.28 125.73) (xy 81.28 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36915340-9dd2-4d10-bb2e-946e32cc121b)
)
(wire (pts (xy 165.1 95.25) (xy 171.45 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37b282c6-a944-47fd-a51e-f59b7e5f431e)
)
(wire (pts (xy 106.68 127) (xy 123.19 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 389820b3-dc0f-41a8-9487-f37594ec848d)
)
(wire (pts (xy 119.38 132.08) (xy 123.19 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39549a53-fe72-4509-a12d-de170bbf0433)
)
(wire (pts (xy 121.92 100.33) (xy 123.19 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39f65f62-d48a-4aa3-a9a3-c17d058105fe)
)
(wire (pts (xy 185.42 48.26) (xy 180.34 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a41f6b2-d64e-4fc9-9c78-62461e28f42c)
)
(wire (pts (xy 190.5 90.17) (xy 193.04 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bd1d24a-0ba6-444e-896e-ab4ac7dd5127)
)
(wire (pts (xy 117.475 48.26) (xy 138.43 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d0ee88c-fab5-44ff-91c4-a21e663a09de)
)
(wire (pts (xy 160.02 118.11) (xy 160.02 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d927ca0-f4ad-42ab-b902-dfef8d84eebb)
)
(wire (pts (xy 63.5 85.09) (xy 63.5 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f6533ba-c4f9-46fc-b56b-e4570f6ba8d8)
)
(wire (pts (xy 160.02 127) (xy 160.02 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fc3a397-ec3a-4314-aa6a-44925ef4cbbe)
)
(wire (pts (xy 119.38 134.62) (xy 119.38 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4035093c-8c14-4085-bfea-fcb41c163f69)
)
(wire (pts (xy 117.475 47.625) (xy 117.475 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 418a0e9c-c95f-4d4a-a88f-ec13faf3303c)
)
(wire (pts (xy 148.59 143.51) (xy 148.59 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42921c6f-25e8-4512-9139-83b5b81397a7)
)
(wire (pts (xy 179.07 73.66) (xy 190.5 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42dd1fad-d6e1-4a22-bcd7-61c29a70aea6)
)
(wire (pts (xy 63.5 77.47) (xy 82.55 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4445e598-1c38-4291-936b-eafc95d0cf78)
)
(wire (pts (xy 222.25 73.66) (xy 217.17 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46c31fef-8b6d-4892-b7d6-1b9818ed82f5)
)
(wire (pts (xy 160.02 115.57) (xy 171.45 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4736f749-4a0e-4a05-b1aa-d51f1c3fc23d)
)
(wire (pts (xy 162.56 100.33) (xy 176.53 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4829bee0-faa8-43f7-b2d7-8a6e5d1b3050)
)
(wire (pts (xy 157.48 52.07) (xy 157.48 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a8c099c-07ef-47db-b188-6f8b7978d1d4)
)
(wire (pts (xy 190.5 88.9) (xy 190.5 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e26d1df-a557-446c-8724-16a2959e6714)
)
(wire (pts (xy 106.68 134.62) (xy 106.68 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ed59335-4075-4e12-a596-bab87aafc796)
)
(wire (pts (xy 62.23 128.27) (xy 63.5 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f4277d9-4ff1-4fe4-9af0-84cedee4b2b6)
)
(wire (pts (xy 143.51 48.26) (xy 180.34 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 502090da-c5a3-4316-9f8a-2de92274b2b8)
)
(wire (pts (xy 81.28 123.19) (xy 86.36 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 538901db-4e4f-4274-95cc-c6b69a9a74e7)
)
(wire (pts (xy 140.97 143.51) (xy 143.51 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53d63574-d294-4160-8943-1f901b80728f)
)
(wire (pts (xy 195.58 90.17) (xy 195.58 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5417d93e-ea72-4615-a825-50b48895bd92)
)
(wire (pts (xy 101.6 60.96) (xy 101.6 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5600b446-cc57-4d99-a6dd-3cb2f076483c)
)
(wire (pts (xy 62.23 125.73) (xy 63.5 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 572f678c-7489-4a0c-81c3-6f024e0707be)
)
(wire (pts (xy 106.68 132.08) (xy 106.68 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58518ef0-9375-45b7-b518-1100f14f6963)
)
(wire (pts (xy 162.56 73.66) (xy 162.56 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 588d3cbf-6c0a-4102-8f72-574f6ea20133)
)
(wire (pts (xy 82.55 92.71) (xy 82.55 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5baacfaf-4f9b-484a-b0ad-900c2c96f940)
)
(wire (pts (xy 148.59 33.02) (xy 148.59 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cfe5589-d53d-4797-82e8-c31b86c5fbb8)
)
(wire (pts (xy 165.1 87.63) (xy 165.1 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f883bdf-20bc-42c6-8194-9d44dfe04af6)
)
(wire (pts (xy 121.92 107.95) (xy 123.19 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61e795c9-5bb5-48b3-b7a0-cb64f04c7adc)
)
(wire (pts (xy 209.55 110.49) (xy 212.09 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65d50500-96c3-4685-9691-5f83fde7ff57)
)
(wire (pts (xy 143.51 143.51) (xy 143.51 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b4ae552-c3dc-4d02-ab1a-556e15ae247d)
)
(wire (pts (xy 107.95 77.47) (xy 123.19 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d4529c3-e736-41f4-9e85-842fded7472a)
)
(wire (pts (xy 101.6 48.26) (xy 117.475 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7288ce3d-ad6e-43f5-96ca-99065d7798d0)
)
(wire (pts (xy 101.6 52.07) (xy 101.6 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 736f4bca-0539-488f-ab5b-c659fa9836b0)
)
(wire (pts (xy 120.65 60.96) (xy 123.19 60.96))