forked from guszhang/pcb-stylophone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pcb-stylophone.kicad_sch
3670 lines (3607 loc) · 189 KB
/
pcb-stylophone.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 fb3bb672-61dc-42e5-a4cd-1cfd7037603e)
(paper "A4")
(title_block
(title "PCB Stylophone")
(date "2023-05-19")
(rev "1")
(company "The University of Manchester")
(comment 1 "Author: Gus Zhang")
)
(lib_symbols
(symbol "Connector:Conn_01x02_Pin" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02_Pin" (at 0 -5.08 0)
(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_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_Pin_1_1"
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x01" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x01" (at 0 -2.54 0)
(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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x01_1_1"
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (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" (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:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 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" (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_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(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 "Device:Speaker_Crystal" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "LS" (at 0.635 5.715 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "Speaker_Crystal" (at 0.635 3.81 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (at -0.889 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at -0.889 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "crystal speaker ultrasonic transducer" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Crystal speaker/transducer" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Speaker_Crystal_0_0"
(rectangle (start -2.54 1.27) (end 1.143 -3.81)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start -2.032 -0.635) (end 0.635 -1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.651 -2.286)
(xy 0.381 -2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.651 -0.254)
(xy 0.381 -0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.635 -2.286)
(xy -0.635 -3.048)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.635 -0.254)
(xy -0.635 0.508)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.143 1.27)
(xy 3.683 3.81)
(xy 3.683 -6.35)
(xy 1.143 -3.81)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "Speaker_Crystal_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 -2.54 0) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Timer:NE555P" (in_bom yes) (on_board yes)
(property "Reference" "U" (at -10.16 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "NE555P" (at 2.54 8.89 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_DIP:DIP-8_W7.62mm" (at 16.51 -10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/ne555.pdf" (at 21.59 -10.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "single timer 555" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Precision Timers, 555 compatible, PDIP-8" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NE555P_0_0"
(pin power_in line (at 0 -10.16 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 10.16 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
(symbol "NE555P_0_1"
(rectangle (start -8.89 -7.62) (end 8.89 7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start -8.89 -7.62) (end 8.89 7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "NE555P_1_1"
(pin input line (at -12.7 5.08 0) (length 3.81)
(name "TR" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 3.81)
(name "Q" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -12.7 -5.08 0) (length 3.81)
(name "R" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 3.81)
(name "CV" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -5.08 180) (length 3.81)
(name "THR" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 0 180) (length 3.81)
(name "DIS" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(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" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (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))
(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" (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (at 0 3.81 0)
(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" "flag power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (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))
(fill (type none))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (at 0 3.81 0)
(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" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 228.6 99.06) (diameter 0) (color 0 0 0 0)
(uuid 0cc63118-0bed-4941-b13e-a1facc0794ce)
)
(junction (at 147.32 99.06) (diameter 0) (color 0 0 0 0)
(uuid 0e7313f1-9478-4717-9c5c-6228e75ba230)
)
(junction (at 238.76 99.06) (diameter 0) (color 0 0 0 0)
(uuid 10b3bba6-dde7-498a-b5a6-07a58c881142)
)
(junction (at 106.68 99.06) (diameter 0) (color 0 0 0 0)
(uuid 19205234-8538-4492-b01f-2a7d02891db3)
)
(junction (at 218.44 99.06) (diameter 0) (color 0 0 0 0)
(uuid 2eb83901-b52b-4257-a00a-c5c016713f8f)
)
(junction (at 63.5 99.06) (diameter 0) (color 0 0 0 0)
(uuid 3f2f1837-98a5-41ae-8e05-589789f44b0a)
)
(junction (at 167.64 99.06) (diameter 0) (color 0 0 0 0)
(uuid 41c417e3-793e-41e6-8548-d7b181329745)
)
(junction (at 259.08 99.06) (diameter 0) (color 0 0 0 0)
(uuid 42753a0f-42bd-4fa4-8f2d-c7bde4664799)
)
(junction (at 46.99 82.55) (diameter 0) (color 0 0 0 0)
(uuid 42839593-3eaa-4b85-9712-4b1ba8ff6095)
)
(junction (at 157.48 99.06) (diameter 0) (color 0 0 0 0)
(uuid 5b2d91c0-36db-4ed0-bd2d-f2c744fcd4d5)
)
(junction (at 39.37 59.69) (diameter 0) (color 0 0 0 0)
(uuid 5e660abc-d0af-45a2-a311-e10908f60d3e)
)
(junction (at 96.52 99.06) (diameter 0) (color 0 0 0 0)
(uuid 5ed588e2-cb55-474e-a3d5-a811927f1ce6)
)
(junction (at 46.99 123.19) (diameter 0) (color 0 0 0 0)
(uuid 6e363775-4a35-49d2-bb5b-ad22e050faba)
)
(junction (at 127 99.06) (diameter 0) (color 0 0 0 0)
(uuid 70d9e555-7c11-4144-a026-32e7edbaa64b)
)
(junction (at 39.37 49.53) (diameter 0) (color 0 0 0 0)
(uuid 717eecea-859e-4cbd-b0cd-49bb134bc8b3)
)
(junction (at 63.5 111.76) (diameter 0) (color 0 0 0 0)
(uuid 915bc8b6-b11e-41f6-a746-7a62697f3c10)
)
(junction (at 208.28 99.06) (diameter 0) (color 0 0 0 0)
(uuid 9f55fb9a-60cc-40a6-92a8-b888175db122)
)
(junction (at 187.96 99.06) (diameter 0) (color 0 0 0 0)
(uuid a4157654-fce9-4b03-b90f-aae34cb993b3)
)
(junction (at 177.8 99.06) (diameter 0) (color 0 0 0 0)
(uuid ab2fba52-42d8-4022-adef-eaac6867be93)
)
(junction (at 198.12 99.06) (diameter 0) (color 0 0 0 0)
(uuid b46cf174-8921-4687-be33-cdf4259e58b8)
)
(junction (at 137.16 99.06) (diameter 0) (color 0 0 0 0)
(uuid bb2cc867-cc66-411a-bca8-4505bd057eb3)
)
(junction (at 76.2 99.06) (diameter 0) (color 0 0 0 0)
(uuid c2741893-c65b-4e47-8e6a-ba21734ef51a)
)
(junction (at 116.84 99.06) (diameter 0) (color 0 0 0 0)
(uuid d94030b5-b0f8-4acf-b22b-3cfa54f16da1)
)
(junction (at 86.36 99.06) (diameter 0) (color 0 0 0 0)
(uuid dc80fcfc-2ef4-43eb-b7d5-7a1b42474ea0)
)
(junction (at 248.92 99.06) (diameter 0) (color 0 0 0 0)
(uuid e7a53b08-3a80-40b7-9025-74e9bd1a95a6)
)
(junction (at 46.99 49.53) (diameter 0) (color 0 0 0 0)
(uuid eaf55473-59a1-4061-a448-dd5d17c44f7e)
)
(junction (at 46.99 59.69) (diameter 0) (color 0 0 0 0)
(uuid ec7b28e1-41bd-4365-9baf-9d93a0f7adee)
)
(no_connect (at 34.29 99.06) (uuid a879bd9e-0fbe-4230-9216-107cf0b7bb65))
(wire (pts (xy 227.33 99.06) (xy 228.6 99.06))
(stroke (width 0) (type default))
(uuid 064cea01-95a1-4f08-8c49-48a764e13691)
)
(wire (pts (xy 116.84 99.06) (xy 118.11 99.06))
(stroke (width 0) (type default))
(uuid 0aa70692-07c8-408a-ac2d-959db439523c)
)
(wire (pts (xy 63.5 111.76) (xy 64.77 111.76))
(stroke (width 0) (type default))
(uuid 0b1b961e-c5d1-44d0-8b39-936d1673643c)
)
(wire (pts (xy 34.29 93.98) (xy 30.48 93.98))
(stroke (width 0) (type default))
(uuid 0b242b3d-2bd2-45f7-92fb-1cf8fa1e1ff5)
)
(wire (pts (xy 115.57 99.06) (xy 116.84 99.06))
(stroke (width 0) (type default))
(uuid 0d0d1265-085f-4bde-a05b-2bf39dd5215c)
)
(wire (pts (xy 39.37 55.88) (xy 39.37 59.69))
(stroke (width 0) (type default))
(uuid 0dcc9b7d-328f-4021-9dcf-f2a024676495)
)
(wire (pts (xy 86.36 72.39) (xy 83.82 72.39))
(stroke (width 0) (type default))
(uuid 0fc47619-90ff-4999-aa22-d1d681a7a3fb)
)
(wire (pts (xy 137.16 99.06) (xy 138.43 99.06))
(stroke (width 0) (type default))
(uuid 105538e7-ebcd-45a1-9e8b-0ff65797cb5f)
)
(wire (pts (xy 86.36 99.06) (xy 86.36 100.33))
(stroke (width 0) (type default))
(uuid 11b6a938-b3cc-40e4-b013-92545100a842)
)
(wire (pts (xy 63.5 99.06) (xy 63.5 82.55))
(stroke (width 0) (type default))
(uuid 1c37fbc9-2f72-4d67-9e05-1c025a4e8377)
)
(wire (pts (xy 46.99 78.74) (xy 46.99 82.55))
(stroke (width 0) (type default))
(uuid 1c5627e2-77a8-4085-aea9-58ca2026f191)
)
(wire (pts (xy 127 99.06) (xy 127 100.33))
(stroke (width 0) (type default))
(uuid 1d50d662-549d-4ff1-b288-8eec010f81a3)
)
(wire (pts (xy 218.44 99.06) (xy 219.71 99.06))
(stroke (width 0) (type default))
(uuid 21c82702-5d53-48a2-b9f5-237f83ef0b32)
)
(wire (pts (xy 269.24 99.06) (xy 269.24 100.33))
(stroke (width 0) (type default))
(uuid 2509bfe3-3922-4cf6-a3b8-3a5fb6c9866a)
)
(wire (pts (xy 156.21 99.06) (xy 157.48 99.06))
(stroke (width 0) (type default))
(uuid 256b067b-4733-4469-b0f1-cd0f4b828ea4)
)
(wire (pts (xy 59.69 99.06) (xy 63.5 99.06))
(stroke (width 0) (type default))
(uuid 288ab296-537e-42b5-ae92-012e3b7e696b)
)
(wire (pts (xy 259.08 99.06) (xy 259.08 100.33))
(stroke (width 0) (type default))
(uuid 28ea04af-e861-4e05-8fb2-6f6c2b29b124)
)
(wire (pts (xy 46.99 109.22) (xy 46.99 123.19))
(stroke (width 0) (type default))
(uuid 2b4e571a-833d-4d11-a42b-3182cd0865fe)
)
(wire (pts (xy 146.05 99.06) (xy 147.32 99.06))
(stroke (width 0) (type default))
(uuid 2cacd2e9-b297-4e18-b738-574d14d7ebff)
)
(wire (pts (xy 63.5 104.14) (xy 63.5 111.76))
(stroke (width 0) (type default))
(uuid 2cf42620-2d6f-40ef-8c1e-a4d3dee9ecca)
)
(wire (pts (xy 228.6 99.06) (xy 228.6 100.33))
(stroke (width 0) (type default))
(uuid 35d0c430-ef6c-48ee-95fe-21a210602898)
)
(wire (pts (xy 106.68 99.06) (xy 106.68 100.33))
(stroke (width 0) (type default))
(uuid 3e7a330d-fb1e-43a0-8941-77022ae561d2)
)
(wire (pts (xy 34.29 62.23) (xy 34.29 63.5))
(stroke (width 0) (type default))
(uuid 3e91653d-414d-40db-bce4-0214b3cbadd0)
)
(wire (pts (xy 46.99 58.42) (xy 46.99 59.69))
(stroke (width 0) (type default))
(uuid 3ea1913c-2424-4ee1-a0a4-d86da2fbdf49)
)
(wire (pts (xy 39.37 59.69) (xy 46.99 59.69))
(stroke (width 0) (type default))
(uuid 3f36db5d-3442-4291-84eb-1b9a372c359c)
)
(wire (pts (xy 30.48 111.76) (xy 63.5 111.76))
(stroke (width 0) (type default))
(uuid 45174b1c-3751-4f94-9a69-10341e0cad57)
)
(wire (pts (xy 95.25 99.06) (xy 96.52 99.06))
(stroke (width 0) (type default))
(uuid 45af4e08-6f26-4848-ad3e-fd02b1a03488)
)
(wire (pts (xy 46.99 49.53) (xy 46.99 50.8))
(stroke (width 0) (type default))
(uuid 49094022-f70f-4c79-9b32-f272831ee4b5)
)
(wire (pts (xy 125.73 99.06) (xy 127 99.06))
(stroke (width 0) (type default))
(uuid 50347486-b114-4738-b33a-e359b364103b)
)
(wire (pts (xy 26.67 104.14) (xy 26.67 82.55))
(stroke (width 0) (type default))
(uuid 5343dde0-db99-4a0d-89b4-9c88729d5a39)
)
(wire (pts (xy 137.16 99.06) (xy 137.16 100.33))
(stroke (width 0) (type default))
(uuid 5497a725-8e37-4777-bbdb-b92d6747b691)
)
(wire (pts (xy 167.64 99.06) (xy 168.91 99.06))
(stroke (width 0) (type default))
(uuid 59dd7b21-9670-48ba-81fd-0f4142f90b9e)
)
(wire (pts (xy 248.92 99.06) (xy 250.19 99.06))
(stroke (width 0) (type default))
(uuid 634724f4-3538-419f-9e80-38df1203334b)
)
(wire (pts (xy 63.5 114.3) (xy 63.5 111.76))
(stroke (width 0) (type default))
(uuid 647a972a-26e6-4cbf-adec-54a6ff17aac0)
)
(wire (pts (xy 208.28 99.06) (xy 209.55 99.06))
(stroke (width 0) (type default))
(uuid 66934836-c756-471c-a329-60794089e58c)
)
(wire (pts (xy 127 99.06) (xy 128.27 99.06))
(stroke (width 0) (type default))
(uuid 67d93775-dc4d-4ddb-96be-628358666248)
)
(wire (pts (xy 86.36 69.85) (xy 66.04 69.85))
(stroke (width 0) (type default))
(uuid 68d9933e-8ecf-4230-adb4-01f91fe47f6f)
)
(wire (pts (xy 63.5 99.06) (xy 67.31 99.06))
(stroke (width 0) (type default))
(uuid 741e2065-8a5c-498b-ba49-6d9c8a996899)
)
(wire (pts (xy 86.36 99.06) (xy 87.63 99.06))
(stroke (width 0) (type default))
(uuid 760ea918-17e0-4dc0-a540-808197017ba9)
)
(wire (pts (xy 198.12 99.06) (xy 198.12 100.33))
(stroke (width 0) (type default))
(uuid 76618b77-7201-4178-a8ef-de779289be82)
)
(wire (pts (xy 157.48 99.06) (xy 158.75 99.06))
(stroke (width 0) (type default))
(uuid 76a6edd9-97f3-4f0c-8771-27a97173baab)
)
(wire (pts (xy 96.52 99.06) (xy 97.79 99.06))
(stroke (width 0) (type default))
(uuid 795814ea-3c43-4183-901f-dc92b34a3b94)
)
(wire (pts (xy 46.99 59.69) (xy 46.99 60.96))
(stroke (width 0) (type default))
(uuid 7aeff487-137d-4ea9-83d3-bd03f6be201b)
)
(wire (pts (xy 267.97 99.06) (xy 269.24 99.06))
(stroke (width 0) (type default))
(uuid 7c82134e-738f-4420-a6e1-06c7f0a6a4b7)
)
(wire (pts (xy 46.99 123.19) (xy 63.5 123.19))
(stroke (width 0) (type default))
(uuid 7ea3081c-7282-43d2-a5ce-ca8ffaface1e)
)
(wire (pts (xy 35.56 55.88) (xy 39.37 55.88))
(stroke (width 0) (type default))
(uuid 80c00e24-7a78-43f2-a0bf-b6eefe6573ba)
)
(wire (pts (xy 46.99 123.19) (xy 46.99 125.73))
(stroke (width 0) (type default))
(uuid 81a33e49-12a3-4223-bfde-94f9cef0c108)
)
(wire (pts (xy 106.68 99.06) (xy 107.95 99.06))
(stroke (width 0) (type default))
(uuid 82281194-d3ff-45fa-888e-42d6f5a194ae)
)
(wire (pts (xy 237.49 99.06) (xy 238.76 99.06))
(stroke (width 0) (type default))
(uuid 82c01c08-d872-48e1-947a-f7fc5805cc38)
)
(wire (pts (xy 105.41 99.06) (xy 106.68 99.06))
(stroke (width 0) (type default))
(uuid 8c4af38a-9995-47e6-9583-3b1f27716898)
)
(wire (pts (xy 196.85 99.06) (xy 198.12 99.06))
(stroke (width 0) (type default))
(uuid 8fe381c2-c23e-42d9-add8-e8e646952f67)
)
(wire (pts (xy 238.76 99.06) (xy 238.76 100.33))
(stroke (width 0) (type default))
(uuid 93184c47-6642-4cc0-87c3-43ca845a03bd)
)
(wire (pts (xy 218.44 99.06) (xy 218.44 100.33))
(stroke (width 0) (type default))
(uuid 987690bf-260f-4a1e-9ed5-6a728f8d4790)
)
(wire (pts (xy 39.37 63.5) (xy 39.37 59.69))
(stroke (width 0) (type default))
(uuid 9c9f3f60-49bf-4473-9d8f-cbef3e659000)
)
(wire (pts (xy 96.52 99.06) (xy 96.52 100.33))
(stroke (width 0) (type default))
(uuid 9ce87b27-fd87-4e7a-a526-335d074e2b7f)
)
(wire (pts (xy 257.81 99.06) (xy 259.08 99.06))
(stroke (width 0) (type default))
(uuid 9e8da263-9cbe-42ee-a2f5-ade7bad954bb)
)
(wire (pts (xy 76.2 99.06) (xy 76.2 100.33))
(stroke (width 0) (type default))
(uuid a17a8d87-14ef-4b6c-a9f8-f3f6787829d2)
)
(wire (pts (xy 135.89 99.06) (xy 137.16 99.06))
(stroke (width 0) (type default))
(uuid a44e3d7d-8fa4-46eb-ba7b-13c33e1b0908)
)
(wire (pts (xy 187.96 99.06) (xy 189.23 99.06))
(stroke (width 0) (type default))
(uuid ac816d38-b9bf-46df-8e7c-59169ae72c73)
)
(wire (pts (xy 59.69 104.14) (xy 63.5 104.14))
(stroke (width 0) (type default))
(uuid ad814a8b-2d2f-45cb-b414-004c5a34319f)
)
(wire (pts (xy 147.32 99.06) (xy 148.59 99.06))
(stroke (width 0) (type default))
(uuid b0759585-7c86-443c-8119-1579bc1110f3)
)
(wire (pts (xy 66.04 69.85) (xy 66.04 93.98))
(stroke (width 0) (type default))
(uuid b3b8983f-ea8f-4f7f-bb84-aeb01b8d82cb)
)
(wire (pts (xy 259.08 99.06) (xy 260.35 99.06))
(stroke (width 0) (type default))
(uuid b3bc72d3-9d24-4d48-ab8e-905cedb5a4fd)
)
(wire (pts (xy 176.53 99.06) (xy 177.8 99.06))
(stroke (width 0) (type default))
(uuid b5e603e7-4ee0-41fc-82b9-0d76215bd183)
)
(wire (pts (xy 238.76 99.06) (xy 240.03 99.06))
(stroke (width 0) (type default))
(uuid bf0887da-e1a6-4c70-b5e7-34cb19546171)
)
(wire (pts (xy 147.32 99.06) (xy 147.32 100.33))
(stroke (width 0) (type default))
(uuid c39d3c23-510b-4fdf-b01c-6ed30205da08)
)
(wire (pts (xy 167.64 99.06) (xy 167.64 100.33))
(stroke (width 0) (type default))
(uuid c3e473bd-5a52-446a-954f-3fa325f89060)
)
(wire (pts (xy 26.67 104.14) (xy 34.29 104.14))
(stroke (width 0) (type default))
(uuid c794c7e3-8325-47e9-899c-0205d2325201)
)
(wire (pts (xy 76.2 99.06) (xy 77.47 99.06))
(stroke (width 0) (type default))
(uuid ca6b0994-5a78-4198-b028-ebe4854e5a13)
)
(wire (pts (xy 46.99 82.55) (xy 46.99 88.9))
(stroke (width 0) (type default))
(uuid cddf3d45-e626-4eeb-9db7-53a5df07f315)
)
(wire (pts (xy 198.12 99.06) (xy 199.39 99.06))
(stroke (width 0) (type default))
(uuid d4f8b17d-4c80-4af1-b40f-8152769fca63)
)
(wire (pts (xy 35.56 53.34) (xy 39.37 53.34))
(stroke (width 0) (type default))
(uuid d51b06c6-b8d1-4883-abcf-e7807aa52e79)
)
(wire (pts (xy 157.48 99.06) (xy 157.48 100.33))
(stroke (width 0) (type default))
(uuid d5c20975-8464-43b6-931c-11658034eec7)
)
(wire (pts (xy 116.84 99.06) (xy 116.84 100.33))
(stroke (width 0) (type default))
(uuid d82ef3b3-036d-4e00-9f65-48b58356fb6c)
)
(wire (pts (xy 207.01 99.06) (xy 208.28 99.06))
(stroke (width 0) (type default))
(uuid dad61a2e-5ecd-4c03-80f4-7de10fb4add0)
)
(wire (pts (xy 46.99 82.55) (xy 52.07 82.55))
(stroke (width 0) (type default))
(uuid dcfb6b7c-28e8-4334-9a51-4a3488892037)
)
(wire (pts (xy 39.37 49.53) (xy 46.99 49.53))
(stroke (width 0) (type default))
(uuid dda394c4-846d-4e91-9b02-c020109354ac)
)
(wire (pts (xy 247.65 99.06) (xy 248.92 99.06))
(stroke (width 0) (type default))
(uuid ddeb870e-66c0-4f4a-8584-24380ff660f0)
)
(wire (pts (xy 166.37 99.06) (xy 167.64 99.06))
(stroke (width 0) (type default))
(uuid dea2fb34-cf0d-46b5-83c1-ee30039d2ad7)
)
(wire (pts (xy 187.96 99.06) (xy 187.96 100.33))
(stroke (width 0) (type default))
(uuid e1fb5916-4fa3-4c77-968c-6215189465b7)
)
(wire (pts (xy 30.48 93.98) (xy 30.48 111.76))
(stroke (width 0) (type default))
(uuid e7fcb3fc-263d-4910-a648-47175505b641)
)
(wire (pts (xy 39.37 53.34) (xy 39.37 49.53))
(stroke (width 0) (type default))
(uuid e81cf272-87e2-4002-b416-e34891118cb8)
)
(wire (pts (xy 26.67 82.55) (xy 46.99 82.55))
(stroke (width 0) (type default))
(uuid e96163af-2189-445b-8ff2-a57aef16fbe0)
)
(wire (pts (xy 248.92 99.06) (xy 248.92 100.33))
(stroke (width 0) (type default))
(uuid ea0adebe-fe46-4e74-8682-cadc96c638e0)
)
(wire (pts (xy 66.04 93.98) (xy 59.69 93.98))
(stroke (width 0) (type default))
(uuid eb129180-a562-41dc-8d9c-9f404a0747d5)
)
(wire (pts (xy 63.5 121.92) (xy 63.5 123.19))
(stroke (width 0) (type default))
(uuid ebc51584-b861-43c8-846c-8ead07cce64b)
)
(wire (pts (xy 34.29 63.5) (xy 39.37 63.5))
(stroke (width 0) (type default))
(uuid ecf41c63-63b9-4323-a690-7cd97e42309f)
)
(wire (pts (xy 83.82 72.39) (xy 83.82 82.55))
(stroke (width 0) (type default))
(uuid edf1a02b-7171-4e97-b7b8-666636ec1e78)
)
(wire (pts (xy 85.09 99.06) (xy 86.36 99.06))
(stroke (width 0) (type default))
(uuid ee3f8e15-ddd1-4d7b-8c70-50119ed19b73)
)
(wire (pts (xy 217.17 99.06) (xy 218.44 99.06))
(stroke (width 0) (type default))
(uuid f0129219-5628-4716-9bb2-e5957c4d7083)
)
(wire (pts (xy 208.28 99.06) (xy 208.28 100.33))
(stroke (width 0) (type default))
(uuid f13c3138-a5bd-4841-a610-12940b39a37e)
)
(wire (pts (xy 46.99 49.53) (xy 46.99 48.26))
(stroke (width 0) (type default))
(uuid f2a2546e-3c6e-41a0-836f-5c3663b8ea44)
)
(wire (pts (xy 228.6 99.06) (xy 229.87 99.06))
(stroke (width 0) (type default))
(uuid f7006bd9-442c-4d3c-9535-0a5033631770)
)
(wire (pts (xy 59.69 82.55) (xy 63.5 82.55))
(stroke (width 0) (type default))
(uuid f9a57597-5722-43fb-8471-5925daa468a3)
)
(wire (pts (xy 177.8 99.06) (xy 179.07 99.06))
(stroke (width 0) (type default))
(uuid faf52902-1e7e-462c-b399-eef89c87edd9)
)
(wire (pts (xy 74.93 99.06) (xy 76.2 99.06))
(stroke (width 0) (type default))
(uuid fb2d6c8c-efbf-4a88-a08d-4a731dacdb0d)
)
(wire (pts (xy 177.8 99.06) (xy 177.8 100.33))
(stroke (width 0) (type default))
(uuid fd155364-6824-43e8-b269-fb48d7742c79)
)
(wire (pts (xy 186.69 99.06) (xy 187.96 99.06))
(stroke (width 0) (type default))
(uuid fd9f3ba7-54e4-4556-906a-a9d8384d8ddb)
)
(wire (pts (xy 39.37 48.26) (xy 39.37 49.53))
(stroke (width 0) (type default))
(uuid fdd523d0-752b-4c5d-a0ca-3f582b670bf9)
)
(image (at 266.7 173.99) (scale 0.772726)
(uuid 3cc13b21-9a3e-43a7-bcc3-5bca5f661d99)
(data
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