-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolarPanel.kicad_sch
2059 lines (2006 loc) · 79.7 KB
/
SolarPanel.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 20210621) (generator eeschema)
(uuid 3a649193-b0bc-4c80-a504-4736669cf274)
(paper "A4")
(lib_symbols
(symbol "Battery_Management:BQ25504" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 20.32 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "BQ25504" (id 1) (at -7.62 22.86 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Package_DFN_QFN:QFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/bq25504.pdf" (id 3) (at -7.62 20.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "energy harvesting li-ion battery solar TEG" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Energy Harvesting Boost Converter with Battery Management, VQFN-16" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*QFN*3x3mm*P0.5mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "BQ25504_0_1"
(rectangle (start -12.7 17.78) (end 12.7 -17.78)
(stroke (width 0.254)) (fill (type background))
)
)
(symbol "BQ25504_1_1"
(pin power_in line (at -5.08 -20.32 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -5.08 0) (length 2.54)
(name "OK_PROG" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin output line (at 15.24 7.62 180) (length 2.54)
(name "VBAT_OK" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 5.08 -20.32 90) (length 2.54)
(name "AVSS" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -20.32 90) (length 2.54) hide
(name "VSS" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 10.16 20.32 270) (length 2.54)
(name "VBAT" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
(name "VSTOR" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 2.54 20.32 270) (length 2.54)
(name "LBST" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -20.32 90) (length 2.54)
(name "PAD" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -10.16 20.32 270) (length 2.54)
(name "VIN_DC" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 7.62 0) (length 2.54)
(name "VOC_SAMP" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -15.24 -7.62 0) (length 2.54)
(name "VREF_SAMP" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -10.16 0) (length 2.54)
(name "OT_PROG" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 2.54 0) (length 2.54)
(name "VBAT_OV" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin output line (at -15.24 5.08 0) (length 2.54)
(name "VRDIV" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 0 0) (length 2.54)
(name "VBAT_UV" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -15.24 -2.54 0) (length 2.54)
(name "OK_HYST" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524)) (fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254)) (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))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (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" "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_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508)) (fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508)) (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" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized_US" (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_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor, US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_US_0_1"
(arc (start -2.032 -1.27) (end 2.032 -1.27) (radius (at 0 -3.81) (length 3.2512) (angles 128.7 51.3))
(stroke (width 0.508)) (fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508)) (fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy -1.27 1.778)
(xy -1.27 2.794)
)
(stroke (width 0)) (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:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D_Schottky" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Schottky diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Schottky_0_1"
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254)) (fill (type none))
)
(polyline
(pts
(xy -1.905 0.635)
(xy -1.905 1.27)
(xy -1.27 1.27)
(xy -1.27 -1.27)
(xy -0.635 -1.27)
(xy -0.635 -0.635)
)
(stroke (width 0.254)) (fill (type none))
)
)
(symbol "D_Schottky_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (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 2.54)
(name "A" (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" (id 0) (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L" (id 1) (at 1.905 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_0_1"
(arc (start 0 -2.54) (end 0 -1.27) (radius (at 0 -1.905) (length 0.635) (angles -89.9 89.9))
(stroke (width 0)) (fill (type none))
)
(arc (start 0 -1.27) (end 0 0) (radius (at 0 -0.635) (length 0.635) (angles -89.9 89.9))
(stroke (width 0)) (fill (type none))
)
(arc (start 0 0) (end 0 1.27) (radius (at 0 0.635) (length 0.635) (angles -89.9 89.9))
(stroke (width 0)) (fill (type none))
)
(arc (start 0 1.27) (end 0 2.54) (radius (at 0 1.905) (length 0.635) (angles -89.9 89.9))
(stroke (width 0)) (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:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254)) (fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254)) (fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (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 2.54)
(name "A" (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" "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_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (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)) (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 "Switch:SW_DIP_x01" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_DIP_x01" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "dip switch" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "1x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SW?DIP?x1*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_DIP_x01_0_0"
(circle (center -2.032 0) (radius 0.508) (stroke (width 0)) (fill (type none)))
(circle (center 2.032 0) (radius 0.508) (stroke (width 0)) (fill (type none)))
(polyline
(pts
(xy -1.524 0.127)
(xy 2.3622 1.1684)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "SW_DIP_x01_0_1"
(rectangle (start -3.81 2.54) (end 3.81 -2.54)
(stroke (width 0.254)) (fill (type background))
)
)
(symbol "SW_DIP_x01_1_1"
(pin passive line (at -7.62 0 0) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0)) (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" "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)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (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)) (fill (type none))
)
)
)
)
(junction (at 70.739 52.578) (diameter 0) (color 0 0 0 0))
(junction (at 80.264 32.258) (diameter 0) (color 0 0 0 0))
(junction (at 80.391 32.258) (diameter 0) (color 0 0 0 0))
(junction (at 91.059 44.958) (diameter 0) (color 0 0 0 0))
(junction (at 138.684 69.088) (diameter 0) (color 0 0 0 0))
(junction (at 138.684 78.994) (diameter 0) (color 0 0 0 0))
(junction (at 144.272 69.088) (diameter 0) (color 0 0 0 0))
(junction (at 144.272 79.756) (diameter 0) (color 0 0 0 0))
(junction (at 168.656 99.568) (diameter 0) (color 0 0 0 0))
(junction (at 168.656 105.41) (diameter 0) (color 0 0 0 0))
(junction (at 173.736 59.817) (diameter 0) (color 0 0 0 0))
(junction (at 175.26 105.41) (diameter 0) (color 0 0 0 0))
(junction (at 186.436 105.918) (diameter 0) (color 0 0 0 0))
(junction (at 202.946 55.88) (diameter 0) (color 0 0 0 0))
(junction (at 202.946 89.916) (diameter 0) (color 0 0 0 0))
(junction (at 209.296 89.916) (diameter 0) (color 0 0 0 0))
(junction (at 221.996 89.916) (diameter 0) (color 0 0 0 0))
(junction (at 236.093 89.916) (diameter 0) (color 0 0 0 0))
(junction (at 254.889 89.916) (diameter 0) (color 0 0 0 0))
(no_connect (at 199.136 74.676) (uuid 41590746-9472-4d5d-b946-38fa4db7774d))
(wire (pts (xy 42.037 32.258) (xy 42.037 36.957))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91b385b4-8320-409d-a2f8-84af38d59fd2)
)
(wire (pts (xy 42.037 32.258) (xy 65.659 32.258))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91b385b4-8320-409d-a2f8-84af38d59fd2)
)
(wire (pts (xy 56.388 36.957) (xy 42.037 36.957))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f60b3ef4-9b5c-42eb-a828-c299781ed15c)
)
(wire (pts (xy 56.388 36.957) (xy 56.388 45.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f60b3ef4-9b5c-42eb-a828-c299781ed15c)
)
(wire (pts (xy 56.388 48.26) (xy 56.388 52.578))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f5ae85a-3bec-4598-ab95-4792117e5e8d)
)
(wire (pts (xy 56.388 52.578) (xy 70.739 52.578))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5546cc64-5950-4431-93fe-74b70c5a0045)
)
(wire (pts (xy 70.739 52.578) (xy 70.739 56.388))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9280e8d0-9f42-482f-9cee-b0358c45b14e)
)
(wire (pts (xy 70.739 52.578) (xy 80.264 52.578))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5546cc64-5950-4431-93fe-74b70c5a0045)
)
(wire (pts (xy 73.279 32.258) (xy 80.264 32.258))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be6fdb30-b263-479c-83ac-36fe822ead38)
)
(wire (pts (xy 80.264 32.258) (xy 80.264 44.323))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be6fdb30-b263-479c-83ac-36fe822ead38)
)
(wire (pts (xy 80.264 32.258) (xy 80.391 32.258))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8c165db-0da3-4fee-9596-d1d109eb20d5)
)
(wire (pts (xy 80.264 52.578) (xy 80.264 51.943))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5546cc64-5950-4431-93fe-74b70c5a0045)
)
(wire (pts (xy 80.391 26.924) (xy 82.296 26.924))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eac3f441-cc47-4196-b753-81a4d4437df9)
)
(wire (pts (xy 80.391 32.258) (xy 80.391 26.924))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eac3f441-cc47-4196-b753-81a4d4437df9)
)
(wire (pts (xy 80.391 32.258) (xy 91.059 32.258))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8c165db-0da3-4fee-9596-d1d109eb20d5)
)
(wire (pts (xy 89.916 26.924) (xy 94.488 26.924))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75a9e499-9a0c-428b-acfa-87c21cd8ba72)
)
(wire (pts (xy 91.059 32.258) (xy 91.059 35.433))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3b41af3-e7c7-4a53-b216-4ed8795e1461)
)
(wire (pts (xy 91.059 43.053) (xy 91.059 44.958))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fbf70099-f5a2-4775-8b6e-5a11b4f5873a)
)
(wire (pts (xy 91.059 44.958) (xy 91.059 46.228))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fbf70099-f5a2-4775-8b6e-5a11b4f5873a)
)
(wire (pts (xy 91.059 44.958) (xy 101.219 44.958))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc1a2d5e-20cd-40ac-8bfd-639c6281f146)
)
(wire (pts (xy 91.059 53.848) (xy 91.059 58.928))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6484d2b1-308d-45d8-b29a-f77f7bea5db6)
)
(wire (pts (xy 125.73 69.088) (xy 125.73 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc530f51-96cb-460c-af51-8a7c962a355c)
)
(wire (pts (xy 125.73 78.74) (xy 125.73 81.788))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da956362-7137-4f93-af7a-33d3db1b02dd)
)
(wire (pts (xy 125.73 89.408) (xy 125.73 94.488))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 382cc63a-3f30-402d-97f3-4dc3244d758e)
)
(wire (pts (xy 125.73 102.108) (xy 125.73 106.426))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e89eee49-63ea-40f7-9c8e-95edc1858750)
)
(wire (pts (xy 135.636 78.994) (xy 138.684 78.994))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04de71e2-9b37-4437-b9a1-fcfba6f7f00b)
)
(wire (pts (xy 138.684 69.088) (xy 125.73 69.088))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc530f51-96cb-460c-af51-8a7c962a355c)
)
(wire (pts (xy 138.684 69.088) (xy 144.272 69.088))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5dd7d5a5-a3f6-48b4-82b1-326067001c5d)
)
(wire (pts (xy 138.684 76.708) (xy 138.684 78.994))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d209f4da-750d-4127-bfa7-de2a26dbb697)
)
(wire (pts (xy 138.684 78.994) (xy 138.684 80.772))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d209f4da-750d-4127-bfa7-de2a26dbb697)
)
(wire (pts (xy 138.684 88.392) (xy 138.684 98.806))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea8b801f-6227-4210-95c8-1f2756805866)
)
(wire (pts (xy 144.272 76.708) (xy 144.272 79.756))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18623a2a-f65a-4db1-ad30-7ef1ee07b170)
)
(wire (pts (xy 144.272 79.756) (xy 168.656 79.756))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35bcc1b1-4242-4c1e-a1e2-277be70346a1)
)
(wire (pts (xy 144.272 80.772) (xy 144.272 79.756))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35bcc1b1-4242-4c1e-a1e2-277be70346a1)
)
(wire (pts (xy 144.272 88.392) (xy 144.272 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51540706-f0a2-4d69-96ec-8fdb4a30b3dd)
)
(wire (pts (xy 151.638 69.088) (xy 144.272 69.088))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5bf7bcf-3b45-46df-9c45-648b76b8c241)
)
(wire (pts (xy 151.638 77.216) (xy 151.638 69.088))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5bf7bcf-3b45-46df-9c45-648b76b8c241)
)
(wire (pts (xy 151.638 77.216) (xy 168.656 77.216))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec4479d6-f396-40d8-ba7e-d0b0b8b0c5d7)
)
(wire (pts (xy 159.512 87.376) (xy 168.656 87.376))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c25808da-83e8-4742-9958-6780589f1a8c)
)
(wire (pts (xy 159.512 89.916) (xy 159.512 91.948))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e45dd2d4-39e4-4a63-81ad-c334f20a7af8)
)
(wire (pts (xy 159.512 99.568) (xy 168.656 99.568))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ead085c2-9b4a-4970-a725-12899c280c62)
)
(wire (pts (xy 160.274 84.836) (xy 160.274 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00434bc5-8b88-4b87-be42-fb614bc5a7eb)
)
(wire (pts (xy 161.544 74.676) (xy 168.656 74.676))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e23bdeda-7e06-44ae-8c12-9c3a6ff6e610)
)
(wire (pts (xy 163.576 82.042) (xy 163.576 82.296))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6267b4ee-e85c-4fb4-a522-e9cc1c3b34e8)
)
(wire (pts (xy 168.656 82.296) (xy 163.576 82.296))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6267b4ee-e85c-4fb4-a522-e9cc1c3b34e8)
)
(wire (pts (xy 168.656 84.836) (xy 160.274 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00434bc5-8b88-4b87-be42-fb614bc5a7eb)
)
(wire (pts (xy 168.656 89.916) (xy 159.512 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e45dd2d4-39e4-4a63-81ad-c334f20a7af8)
)
(wire (pts (xy 168.656 92.456) (xy 168.656 99.568))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ead085c2-9b4a-4970-a725-12899c280c62)
)
(wire (pts (xy 168.656 99.568) (xy 168.656 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ead085c2-9b4a-4970-a725-12899c280c62)
)
(wire (pts (xy 168.656 105.41) (xy 168.656 106.934))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ead085c2-9b4a-4970-a725-12899c280c62)
)
(wire (pts (xy 173.736 58.166) (xy 173.736 59.817))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid daa332d4-fc7a-4984-9ee0-f5a34255073d)
)
(wire (pts (xy 173.736 59.817) (xy 173.736 61.976))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid daa332d4-fc7a-4984-9ee0-f5a34255073d)
)
(wire (pts (xy 175.26 105.41) (xy 168.656 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a83086cc-1816-47ed-b4a0-90a50e8d0460)
)
(wire (pts (xy 175.26 105.41) (xy 175.26 107.696))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e7981846-7c7f-4db3-9bde-e091554825bd)
)
(wire (pts (xy 178.816 102.616) (xy 178.816 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a83086cc-1816-47ed-b4a0-90a50e8d0460)
)
(wire (pts (xy 178.816 105.41) (xy 175.26 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a83086cc-1816-47ed-b4a0-90a50e8d0460)
)
(wire (pts (xy 183.896 102.616) (xy 183.896 105.918))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16a3f51a-bbf1-462b-b44a-6b0a06252808)
)
(wire (pts (xy 183.896 105.918) (xy 186.436 105.918))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16a3f51a-bbf1-462b-b44a-6b0a06252808)
)
(wire (pts (xy 186.182 57.912) (xy 186.436 57.912))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5592d2d-a937-4669-8d3b-99da99e5c453)
)
(wire (pts (xy 186.436 61.976) (xy 186.436 57.912))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5592d2d-a937-4669-8d3b-99da99e5c453)
)
(wire (pts (xy 186.436 105.918) (xy 186.436 108.458))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 529ab837-0c9c-4fd1-b42d-ec0f2ba0d3d3)
)
(wire (pts (xy 186.436 105.918) (xy 188.976 105.918))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16a3f51a-bbf1-462b-b44a-6b0a06252808)
)
(wire (pts (xy 188.976 105.918) (xy 188.976 102.616))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16a3f51a-bbf1-462b-b44a-6b0a06252808)
)
(wire (pts (xy 194.056 55.88) (xy 202.946 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c407cd9-710d-46dd-bafe-ca3ad488d9fb)
)
(wire (pts (xy 194.056 61.976) (xy 194.056 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f685b7d4-eb18-4a20-b67b-3135c3ed06b8)
)
(wire (pts (xy 199.136 89.916) (xy 202.946 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 081507ff-efea-4ef0-a559-12b3449928d1)
)
(wire (pts (xy 202.946 55.88) (xy 202.946 68.453))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid faa0e349-d672-43a9-a9b7-d25244d2dfb2)
)
(wire (pts (xy 202.946 55.88) (xy 242.6716 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10f74eab-6d2c-43c6-9abc-5cdf41586dbd)
)
(wire (pts (xy 202.946 70.993) (xy 202.946 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2143b863-304e-44a5-bc7d-0e1c1affdc00)
)
(wire (pts (xy 202.946 89.916) (xy 209.296 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 081507ff-efea-4ef0-a559-12b3449928d1)
)
(wire (pts (xy 209.296 89.916) (xy 209.296 94.742))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 081507ff-efea-4ef0-a559-12b3449928d1)
)
(wire (pts (xy 209.296 89.916) (xy 221.996 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3810d1da-2d0a-46d0-baf5-41ffe0d5e597)
)
(wire (pts (xy 209.296 102.362) (xy 209.296 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f117242c-f107-4827-8a84-0954baa29bd9)
)
(wire (pts (xy 221.996 89.916) (xy 221.996 94.742))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8cdd4fe9-0578-40b8-8181-4993c9a09808)
)
(wire (pts (xy 221.996 89.916) (xy 236.093 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49544590-47be-4a92-ae3c-eeacd10350e7)
)
(wire (pts (xy 221.996 102.362) (xy 221.996 106.934))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e6b75c5-6531-49b3-b4ab-910e956d8853)
)
(wire (pts (xy 236.093 89.916) (xy 254.889 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49544590-47be-4a92-ae3c-eeacd10350e7)
)
(wire (pts (xy 236.093 105.156) (xy 236.093 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f83b99b-7125-44ee-b550-192f45158b96)
)
(wire (pts (xy 236.093 114.3) (xy 236.093 116.713))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7bdd9b8-ac21-4204-ba62-742adc385fb0)
)
(wire (pts (xy 236.093 124.333) (xy 236.093 129.159))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40073ef0-e7e9-4e63-b01b-701db5b70e32)
)
(wire (pts (xy 242.6716 55.88) (xy 242.6716 60.706))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10f74eab-6d2c-43c6-9abc-5cdf41586dbd)
)
(wire (pts (xy 242.6716 68.326) (xy 242.6716 70.5104))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 431119aa-b63f-4bbc-b65b-213311d76692)
)
(wire (pts (xy 254.889 89.916) (xy 254.889 90.043))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid adfc6851-a723-4d67-9615-4fcb1adee82e)
)
(wire (pts (xy 254.889 89.916) (xy 274.574 89.916))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 637b0349-6c70-4c71-b5f9-d43a9251078b)
)
(wire (pts (xy 254.889 105.283) (xy 254.889 106.807))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ddd1db3b-684f-47cf-80e8-2342db63f615)
)
(wire (pts (xy 254.889 114.427) (xy 254.889 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cff1f928-7ffa-4b5d-98df-7d801aee56a2)
)
(wire (pts (xy 254.889 124.46) (xy 254.889 129.286))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0f98693-3894-4aab-b644-29b866d64cf1)
)
(wire (pts (xy 274.574 105.156) (xy 274.574 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f03a7271-18a0-40fc-b21b-48d2106b6b02)
)
(wire (pts (xy 274.574 114.3) (xy 274.574 116.713))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c60ebf5-e05b-444c-887d-09a4c46b46ea)
)
(wire (pts (xy 274.574 124.333) (xy 274.574 129.159))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebd50e0c-b0fd-43b9-ac2f-920c6f80333c)
)
(polyline (pts (xy 39.37 18.161) (xy 39.37 64.643))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11b4a4ba-919e-43c7-a63f-75fad58d6b13)
)
(polyline (pts (xy 39.37 18.161) (xy 113.03 18.161))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11b4a4ba-919e-43c7-a63f-75fad58d6b13)
)
(polyline (pts (xy 113.03 18.161) (xy 113.03 64.643))