summaryrefslogtreecommitdiff
path: root/base/base.kicad_sch
blob: eb3bc5dba2d04661d6309e8f8d99307b1e8764b7 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
(kicad_sch (version 20211123) (generator eeschema)

  (uuid fa3072d2-8631-4bc3-8dd3-cef90198c55e)

  (paper "USLetter")

  (title_block
    (title "2021 Ornament")
    (date "2021-10-24")
    (rev "A")
    (company "Blaise Thompson")
  )

  (lib_symbols
    (symbol "Connector_Generic:Conn_01x20" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 0 25.4 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_01x20" (id 1) (at 0 -27.94 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, 01x20, 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_01x20_1_1"
        (rectangle (start -1.27 -25.273) (end 0 -25.527)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -22.733) (end 0 -22.987)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -20.193) (end 0 -20.447)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -17.653) (end 0 -17.907)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -15.113) (end 0 -15.367)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -12.573) (end 0 -12.827)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -10.033) (end 0 -10.287)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 7.747) (end 0 7.493)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 10.287) (end 0 10.033)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 12.827) (end 0 12.573)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 15.367) (end 0 15.113)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 17.907) (end 0 17.653)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 20.447) (end 0 20.193)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 22.987) (end 0 22.733)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 24.13) (end 1.27 -26.67)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (pin passive line (at -5.08 22.86 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 0 0) (length 3.81)
          (name "Pin_10" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_11" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 3.81)
          (name "Pin_12" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -7.62 0) (length 3.81)
          (name "Pin_13" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -10.16 0) (length 3.81)
          (name "Pin_14" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -12.7 0) (length 3.81)
          (name "Pin_15" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -15.24 0) (length 3.81)
          (name "Pin_16" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -17.78 0) (length 3.81)
          (name "Pin_17" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -20.32 0) (length 3.81)
          (name "Pin_18" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -22.86 0) (length 3.81)
          (name "Pin_19" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 20.32 0) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -25.4 0) (length 3.81)
          (name "Pin_20" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 17.78 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 15.24 0) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 12.7 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 10.16 0) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 7.62 0) (length 3.81)
          (name "Pin_7" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 5.08 0) (length 3.81)
          (name "Pin_8" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 2.54 0) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Battery_Cell" (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "BT" (id 0) (at 2.54 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "Battery_Cell" (id 1) (at 2.54 0 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0 1.524 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 1.524 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "battery cell" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Single-cell battery" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Battery_Cell_0_1"
        (rectangle (start -2.286 1.778) (end 2.286 1.524)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start -1.5748 1.1938) (end 1.4732 0.6858)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy 0 0.762)
            (xy 0 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 1.778)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.508 3.429)
            (xy 1.524 3.429)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.016 3.937)
            (xy 1.016 2.921)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Battery_Cell_1_1"
        (pin passive line (at 0 5.08 270) (length 2.54)
          (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 2.54)
          (name "-" (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) (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: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) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 0)
            (xy 1.27 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 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) (type default) (color 0 0 0 0))
          (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) (type default) (color 0 0 0 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) (type default) (color 0 0 0 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_US" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 2.54 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R_US" (id 1) (at -2.54 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 1.016 -0.254 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, US symbol" (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_US_0_1"
        (polyline
          (pts
            (xy 0 -2.286)
            (xy 0 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.286)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -0.762)
            (xy 1.016 -1.143)
            (xy 0 -1.524)
            (xy -1.016 -1.905)
            (xy 0 -2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0.762)
            (xy 1.016 0.381)
            (xy 0 0)
            (xy -1.016 -0.381)
            (xy 0 -0.762)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.286)
            (xy 1.016 1.905)
            (xy 0 1.524)
            (xy -1.016 1.143)
            (xy 0 0.762)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_US_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Diode:1N4148" (pin_numbers hide) (pin_names 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" "1N4148" (id 1) (at 0 -2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "diode" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "100V 0.15A standard switching diode, DO-35" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "D*DO?35*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "1N4148_0_1"
        (polyline
          (pts
            (xy -1.27 1.27)
            (xy -1.27 -1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 0)
            (xy -1.27 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 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) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "1N4148_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 "SRF4532-510Y:SRF4532-510Y" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "L" (id 0) (at 0 -6.35 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Value" "SRF4532-510Y" (id 1) (at 0 7.62 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.524 1.524)))
      )
      (symbol "SRF4532-510Y_0_1"
        (circle (center -9.652 5.334) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (arc (start -3.81 -2.54) (mid -4.7246 -2.9029) (end -5.08 -3.81)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start -3.81 5.08) (mid -4.7246 4.7171) (end -5.08 3.81)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start -2.54 -3.81) (mid -2.9029 -2.8954) (end -3.81 -2.54)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start -2.54 3.81) (mid -2.9029 4.7246) (end -3.81 5.08)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start -1.27 -2.54) (mid -2.1846 -2.9029) (end -2.54 -3.81)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start -1.27 5.08) (mid -2.1846 4.7171) (end -2.54 3.81)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 0 -3.81) (mid -0.3629 -2.8954) (end -1.27 -2.54)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -6.35 0.635)
            (xy 6.35 0.635)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 6.35 -0.635)
            (xy -6.35 -0.635)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 0 3.81) (mid -0.3629 4.7246) (end -1.27 5.08)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 1.27 -2.54) (mid 0.3554 -2.9029) (end 0 -3.81)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 1.27 5.08) (mid 0.3554 4.7171) (end 0 3.81)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 2.54 -3.81) (mid 2.1771 -2.8954) (end 1.27 -2.54)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 2.54 3.81) (mid 2.1771 4.7246) (end 1.27 5.08)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 3.81 -2.54) (mid 2.8954 -2.9029) (end 2.54 -3.81)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 3.81 5.08) (mid 2.8954 4.7171) (end 2.54 3.81)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 5.08 -3.81) (mid 4.7171 -2.8954) (end 3.81 -2.54)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 5.08 3.81) (mid 4.7171 4.7246) (end 3.81 5.08)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 9.652 -5.334) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "SRF4532-510Y_1_1"
        (pin input line (at -10.16 3.81 0) (length 5.08)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 10.16 3.81 180) (length 5.08)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -10.16 -3.81 0) (length 5.08)
          (name "3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 10.16 -3.81 180) (length 5.08)
          (name "4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Switch:SW_Push_DPDT" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "SW" (id 0) (at 0 8.89 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "SW_Push_DPDT" (id 1) (at 0 -10.16 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 5.08 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 5.08 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "switch dual-pole double-throw spdt ON-ON" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Momentary Switch, dual pole double throw" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "SW_Push_DPDT_0_0"
        (circle (center -2.032 -5.08) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center -2.032 5.08) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 2.032 -7.62) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 2.032 2.54) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "SW_Push_DPDT_0_1"
        (polyline
          (pts
            (xy -1.524 -4.826)
            (xy 2.54 -3.048)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.524 5.334)
            (xy 2.54 7.112)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -2.286)
            (xy 0 -4.064)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -1.016)
            (xy 0 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 1.27)
            (xy 0 2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 3.556)
            (xy 0 4.572)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 7.874)
            (xy 0 6.096)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 2.032 -2.54) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 2.032 7.62) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "SW_Push_DPDT_1_1"
        (pin passive line (at 5.08 7.62 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 5.08 0) (length 2.54)
          (name "B" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 5.08 2.54 180) (length 2.54)
          (name "C" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 5.08 -2.54 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 2.54)
          (name "B" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 5.08 -7.62 180) (length 2.54)
          (name "C" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Transistor_BJT:BC817" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "Q" (id 0) (at 5.08 1.905 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "BC817" (id 1) (at 5.08 0 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 5.08 -1.905 0)
        (effects (font (size 1.27 1.27) italic) (justify left) hide)
      )
      (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BC818-D.pdf" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "ki_keywords" "NPN Transistor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "0.8A Ic, 45V Vce, NPN Transistor, SOT-23" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SOT?23*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "BC817_0_1"
        (polyline
          (pts
            (xy 0.635 0.635)
            (xy 2.54 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.635 -0.635)
            (xy 2.54 -2.54)
            (xy 2.54 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.635 1.905)
            (xy 0.635 -1.905)
            (xy 0.635 -1.905)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -1.778)
            (xy 1.778 -1.27)
            (xy 2.286 -2.286)
            (xy 1.27 -1.778)
            (xy 1.27 -1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center 1.27 0) (radius 2.8194)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "BC817_1_1"
        (pin input line (at -5.08 0 0) (length 5.715)
          (name "B" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 -5.08 90) (length 2.54)
          (name "E" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54)
          (name "C" (effects (font (size 1.27 1.27))))
          (number "3" (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) (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))))
        )
      )
    )
  )

  (junction (at 101.6 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 2589ef65-beea-4bb7-b4d0-14b0a904d578)
  )
  (junction (at 38.1 114.3) (diameter 0) (color 0 0 0 0)
    (uuid 5ac68e34-9538-4d39-8552-5d03d576ba9f)
  )
  (junction (at 63.5 88.9) (diameter 0) (color 0 0 0 0)
    (uuid 60c714b2-cb0f-435d-ad06-9338044a047a)
  )
  (junction (at 114.3 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 76471e62-efb2-44b1-a252-3b9990c663ac)
  )
  (junction (at 45.72 88.9) (diameter 0) (color 0 0 0 0)
    (uuid 80646c0b-88c2-46ad-8169-1d3b37f9d4ce)
  )

  (wire (pts (xy 63.5 88.9) (xy 63.5 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2b8a0bad-94ca-4e99-a083-83f7aaaf76cc)
  )
  (wire (pts (xy 127 101.6) (xy 114.3 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2cf27ed3-c385-4528-ae85-0ae3ab1a60a2)
  )
  (wire (pts (xy 38.1 114.3) (xy 43.18 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3373c3ae-eea6-4d19-9560-bd967fdc73ed)
  )
  (wire (pts (xy 83.82 92.71) (xy 88.9 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 49899343-1d36-40f5-b3c8-cd5fd844b99d)
  )
  (wire (pts (xy 114.3 101.6) (xy 114.3 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 66854715-379b-423e-8bc0-eee3ed07fb8a)
  )
  (wire (pts (xy 88.9 114.3) (xy 93.98 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 70bc9a75-8668-415a-825b-8d3743e9ec6e)
  )
  (wire (pts (xy 114.3 85.09) (xy 127 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7dd2db60-639d-44e9-9048-8c20aa73b374)
  )
  (wire (pts (xy 127 101.6) (xy 127 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7e77dc97-5c57-46ec-814d-abf78c276be6)
  )
  (wire (pts (xy 35.56 88.9) (xy 45.72 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 826083ea-d518-4492-a68c-53590bb826ba)
  )
  (wire (pts (xy 63.5 88.9) (xy 63.5 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 83516758-f527-4f1a-842e-6d21939f82f5)
  )
  (wire (pts (xy 45.72 88.9) (xy 45.72 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 892a3ff4-2520-48d4-9c8b-4ea87a34e8b5)
  )
  (wire (pts (xy 43.18 114.3) (xy 43.18 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8adbef62-d660-4cf6-ae42-64ca1a56beb4)
  )
  (wire (pts (xy 35.56 101.6) (xy 35.56 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid aeca382a-ec6c-4e66-8f36-7fd00739edbb)
  )
  (wire (pts (xy 45.72 88.9) (xy 63.5 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b5a76ee5-dc65-49d9-8020-5aafe735ce11)
  )
  (wire (pts (xy 88.9 92.71) (xy 88.9 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b6250820-4990-4985-872f-dd123a164cd8)
  )
  (wire (pts (xy 33.02 114.3) (xy 38.1 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b7848f51-1894-49e1-8397-986b65ae9b03)
  )
  (wire (pts (xy 88.9 101.6) (xy 88.9 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bb66fef8-5c0a-4dfb-beec-88e35c3b69a2)
  )
  (wire (pts (xy 101.6 85.09) (xy 114.3 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c168bda9-7694-49ff-85c5-61d4a945c93b)
  )
  (wire (pts (xy 83.82 85.09) (xy 101.6 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d5a4d8d4-6476-4380-b8a2-ef8495de5629)
  )
  (wire (pts (xy 33.02 111.76) (xy 33.02 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e623ab04-f079-4a93-8092-012ebb425f5e)
  )
  (wire (pts (xy 101.6 85.09) (xy 101.6 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f0ad6735-390c-4648-a795-61907ed86935)
  )

  (text "https://samueldperry.com/2017/12/25/multi-led-joule-thief-v2/"
    (at 24.13 198.12 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 09bc6a40-b4bc-4ab2-958e-7caa32e676c5)
  )

  (global_label "CATHODE" (shape output) (at 203.2 106.68 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 018f5318-edf3-406e-8b34-1239774f7ef0)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 106.6006 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 190.5 50.8 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 17ea664d-352f-44e0-87fd-e672f738f282)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 81.28 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 21f01b60-d294-4c4d-937b-a4418327d128)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 81.2006 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 177.8 50.8 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 283a47d3-ea91-4832-8c39-ad6cd4b6fbd7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 93.98 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2d963135-d8e9-4856-b8af-b58dc790eeb9)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 259.08 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 124.46 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 36509990-310b-486d-8f77-839d82581019)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 289.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 121.92 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 38735479-75bd-4e0e-b684-259b5a943999)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 121.8406 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 109.22 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 38d094cc-a325-4c37-8d66-5481c966812d)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 274.32 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 86.36 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 3bd2392a-f99e-43c9-9fc5-573c0db1ba82)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 86.2806 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 165.1 50.8 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 40639e0f-8680-4c2a-8132-574f15ae6d43)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 104.14 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 411323c1-b0bb-4165-9fe9-dd689ae28d39)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 269.24 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 101.6 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 788844de-2d54-419d-add9-2b83e98bda1c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 101.5206 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 116.84 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 7a18a1cd-da21-41d2-a76b-59f96a0d6720)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 116.7606 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 50.8 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 7a50e93c-2534-482c-8022-443744ed0919)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 190.5 58.42 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 807bf318-5572-481e-abab-b2e3e0bed252)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 190.4206 69.1504 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 83.82 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 809ec048-d0c9-4547-afa8-eb621426953c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 248.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 58.42 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 870f0ec5-276f-4e81-beb9-796e452a72d9)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.1206 69.1504 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 91.44 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 88fea392-e71b-4b72-8de5-d3f97afeb0d8)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 91.3606 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 88.9 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 90eab063-20da-480e-8fec-291b0332f690)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 254 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 165.1 58.42 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 943a4f2f-26bb-4299-a929-30415992dbf7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 165.0206 69.1504 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 114.3 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9516cf37-085c-4e09-9dd4-447e4a372f19)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 279.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 99.06 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9b261fa2-abce-4f77-bfc5-8624c241f51e)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 264.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 78.74 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9dcd273b-e6b3-4117-8518-920710a3d38b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 243.84 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 127 85.09 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 9ecbfc49-5e98-469e-88a3-b42c3da15f05)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 12.7 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 76.2 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid ad14e09f-36a3-4f59-a151-174cce205d46)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 76.1206 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 111.76 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid b0bc1ebb-75a4-4dd7-9141-68ae1f07126b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 111.6806 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 203.2 96.52 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid bd2cefa3-38b0-4c4a-8e86-6ab3eaae238e)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 192.4696 96.4406 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CATHODE" (shape output) (at 177.8 58.42 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid dd69728a-92d7-4467-9c97-22294a15c873)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 177.7206 69.1504 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 203.2 119.38 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid e1b8f244-f4e1-4d43-8825-02309f9e6ada)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.4 284.48 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "CATHODE" (shape input) (at 127 101.6 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid e915d62d-9267-4aa0-8f2a-f8ce938d8a11)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 137.7304 101.5206 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )

  (symbol (lib_id "Device:Battery_Cell") (at 38.1 119.38 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00006175b4ff)
    (property "Reference" "BT1" (id 0) (at 41.0972 115.7986 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BK-92" (id 1) (at 41.0972 118.11 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "footprints:AA_PCB-Clip" (id 2) (at 41.0972 120.4214 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Datasheet" "~" (id 3) (at 38.1 117.856 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 786a057b-0a8c-42e2-bb3b-d6306a8517d7))
    (pin "2" (uuid 3367eb84-3fa1-44ab-b3e4-93576c7a30ca))
  )

  (symbol (lib_id "SRF4532-510Y:SRF4532-510Y") (at 73.66 88.9 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00006175b9cb)
    (property "Reference" "L1" (id 0) (at 73.66 75.8698 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Value" "SRF4532-510Y" (id 1) (at 73.66 78.5622 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Footprint" "footprints:SRF4532-510Y" (id 2) (at 73.66 81.2546 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Datasheet" "" (id 3) (at 73.66 88.9 0)
      (effects (font (size 1.524 1.524)))
    )
    (pin "1" (uuid f23d44e1-74ba-4a60-90df-e6cf0334edf7))
    (pin "2" (uuid fb37abe7-1d84-4dc4-a950-cc8c24220124))
    (pin "3" (uuid 666ed83a-1bd0-4f68-839a-0e30e829f316))
    (pin "4" (uuid 22f9ec4c-2953-450d-9b60-f6b78d1520ba))
  )

  (symbol (lib_id "Transistor_BJT:BC817") (at 99.06 114.3 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00006175dcb4)
    (property "Reference" "Q1" (id 0) (at 103.9114 113.1316 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BC817" (id 1) (at 103.9114 115.443 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 104.14 116.205 0)
      (effects (font (size 1.27 1.27) italic) (justify left) hide)
    )
    (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BC818-D.pdf" (id 3) (at 99.06 114.3 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid d7bd8d0b-26e2-4422-9ba6-325cca5b83f2))
    (pin "2" (uuid 9aa8a374-cb07-4ed3-810f-f3d720d84eba))
    (pin "3" (uuid aa8a0f12-f6ef-46db-97d0-2171030d44be))
  )

  (symbol (lib_id "Device:R_US") (at 88.9 97.79 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00006175e276)
    (property "Reference" "R1" (id 0) (at 90.6272 96.6216 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "R_US" (id 1) (at 90.6272 98.933 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (id 2) (at 89.916 98.044 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 88.9 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 32d06a13-2f54-4cfe-9ada-2c23aee6a42f))
    (pin "2" (uuid de6209e9-56c3-447e-b3d2-69255cb58f69))
  )

  (symbol (lib_id "Device:LED") (at 165.1 54.61 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00006175fb65)
    (property "Reference" "D1" (id 0) (at 168.0972 53.6194 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 168.0972 55.9308 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 165.1 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 165.1 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5281c9a7-346f-46df-a236-7b6907811395))
    (pin "2" (uuid b0f36657-7e5f-43a3-99d2-fff3132e9631))
  )

  (symbol (lib_id "Device:LED") (at 177.8 54.61 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00006175fec5)
    (property "Reference" "D2" (id 0) (at 180.7972 53.6194 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 180.7972 55.9308 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 177.8 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 177.8 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ec490be0-69bf-4570-ae4f-d0253cc13f6e))
    (pin "2" (uuid c1b48e01-94be-4a18-ac9a-b752c7c425e1))
  )

  (symbol (lib_id "Device:LED") (at 190.5 54.61 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-0000617601b8)
    (property "Reference" "D3" (id 0) (at 193.4972 53.6194 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 193.4972 55.9308 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 190.5 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 190.5 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 12ff45d5-1ed6-4db4-bda1-9b55e82d4a15))
    (pin "2" (uuid 5177eabe-0ff1-4c2c-8f35-e04d35838442))
  )

  (symbol (lib_id "Device:LED") (at 203.2 54.61 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00006176057d)
    (property "Reference" "D4" (id 0) (at 206.1972 53.6194 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 206.1972 55.9308 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (id 2) (at 203.2 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 203.2 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f3ad352f-d36f-4c8c-bbaa-55b0b155f1f7))
    (pin "2" (uuid 3a62c4fb-6565-484f-9392-543394da6455))
  )

  (symbol (lib_id "power:GND") (at 38.1 121.92 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000061765aa9)
    (property "Reference" "#PWR01" (id 0) (at 38.1 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 38.227 126.3142 0))
    (property "Footprint" "" (id 2) (at 38.1 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 38.1 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bce36b24-516f-43ff-b976-1a37f98b521f))
  )

  (symbol (lib_id "power:GND") (at 101.6 119.38 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000061773757)
    (property "Reference" "#PWR02" (id 0) (at 101.6 125.73 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 101.727 123.7742 0))
    (property "Footprint" "" (id 2) (at 101.6 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 101.6 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d4dfda70-4442-44c1-9618-95f50e4c089a))
  )

  (symbol (lib_id "Switch:SW_Push_DPDT") (at 38.1 106.68 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-0000617a9b96)
    (property "Reference" "SW1" (id 0) (at 47.9552 105.5116 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "JS202011JCQN" (id 1) (at 47.9552 107.823 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Button_Switch_SMD:SW_DPDT_CK_JS202011JCQN" (id 2) (at 33.02 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 33.02 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 789c74bf-4611-4f33-9ae8-083efbd0556f))
    (pin "2" (uuid 1893b066-4430-4624-8d37-61716b6e165b))
    (pin "3" (uuid 5fb53d17-6976-4ad6-8ae5-cfb727011a68))
    (pin "4" (uuid e8e08c27-a3a2-4bd0-9b28-407f0bee563a))
    (pin "5" (uuid 55a5566f-00bf-4d64-a1fe-9d43114149f3))
    (pin "6" (uuid 922216a2-1b7a-43db-ac72-3b6ef3063048))
  )

  (symbol (lib_id "Connector_Generic:Conn_01x20") (at 208.28 99.06 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0a142063-5e64-4f32-aad9-cc9df6081d3e)
    (property "Reference" "J1" (id 0) (at 210.82 99.0599 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Conn_01x20" (id 1) (at 210.82 101.5999 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x20_P2.54mm_Vertical" (id 2) (at 208.28 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 208.28 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3c0d0017-b9fa-4ef9-9016-095c11541672))
    (pin "10" (uuid 22a88c4c-f4e0-46b2-939b-d62f5a1bad16))
    (pin "11" (uuid 6ae12a35-53bc-42dd-aa86-7d209ecf76f1))
    (pin "12" (uuid 266a4a80-172e-4801-9a3c-e3317b7a8303))
    (pin "13" (uuid d9231fc1-ac92-43c6-9ffd-38fd35ca2619))
    (pin "14" (uuid f8adfd25-c8ce-4476-878a-1dc00b607954))
    (pin "15" (uuid fc346ad7-3a36-488d-a178-ab887ec8db36))
    (pin "16" (uuid 6a794d80-e289-4898-8726-6c1b75d2e56b))
    (pin "17" (uuid ca125daf-b7ab-4710-9fc7-3556c5eb866e))
    (pin "18" (uuid fcd23ba7-6978-4663-99ad-ba55be603188))
    (pin "19" (uuid 46d298ef-25fd-4bd2-8790-ccb4f67cf1a4))
    (pin "2" (uuid f47e4c6d-aec2-40ce-b74e-fcdae844fba4))
    (pin "20" (uuid 1a3de243-2660-47ec-b889-fee6bd756ed7))
    (pin "3" (uuid 70058a33-b869-4b66-a4f2-64ab274a9e25))
    (pin "4" (uuid 84142b85-e86b-4da4-9e39-c7094d8cbe26))
    (pin "5" (uuid 85c0d087-a7b7-47e6-9c91-01c27f97637d))
    (pin "6" (uuid 871b8a38-4b9f-4d29-9c6d-72ad3ce908ee))
    (pin "7" (uuid 20bf8fc9-2bcf-4a6b-a320-d1c90e4375cf))
    (pin "8" (uuid aa46d042-0fde-4631-812f-2313ba20c8e3))
    (pin "9" (uuid d2842c57-0c30-4144-bd32-333154192201))
  )

  (symbol (lib_id "power:GND") (at 127 114.3 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 587fb533-e022-4f8e-a8cc-898a71e409fa)
    (property "Reference" "#PWR0101" (id 0) (at 127 120.65 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 127 119.38 0))
    (property "Footprint" "" (id 2) (at 127 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 127 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid db2672ec-3103-4186-9add-5c02cc5217b9))
  )

  (symbol (lib_id "Diode:1N4148") (at 127 110.49 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 72ecdfc4-13fb-4e88-8891-2113f0749176)
    (property "Reference" "D5" (id 0) (at 129.54 109.2199 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1N4148" (id 1) (at 129.54 111.7599 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" (id 2) (at 127 110.49 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf" (id 3) (at 127 110.49 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b91cb3e4-0a7a-4ec9-93e3-b056416502f2))
    (pin "2" (uuid d9bd1cd4-660c-4d84-ac72-a871b7707701))
  )

  (symbol (lib_id "Device:C") (at 114.3 88.9 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid faf349ba-46a7-45f4-96f2-6b70795d0e97)
    (property "Reference" "C1" (id 0) (at 118.11 87.6299 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10u" (id 1) (at 118.11 90.1699 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (id 2) (at 115.2652 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 114.3 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c23c19a1-b0c0-4e5e-a1fc-c7093dc93e99))
    (pin "2" (uuid 685dded8-916e-470d-9459-505a5c82d4d9))
  )

  (sheet_instances
    (path "/" (page "1"))
  )

  (symbol_instances
    (path "/00000000-0000-0000-0000-000061765aa9"
      (reference "#PWR01") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000061773757"
      (reference "#PWR02") (unit 1) (value "GND") (footprint "")
    )
    (path "/587fb533-e022-4f8e-a8cc-898a71e409fa"
      (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00006175b4ff"
      (reference "BT1") (unit 1) (value "BK-92") (footprint "footprints:AA_PCB-Clip")
    )
    (path "/faf349ba-46a7-45f4-96f2-6b70795d0e97"
      (reference "C1") (unit 1) (value "10u") (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00006175fb65"
      (reference "D1") (unit 1) (value "LED") (footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00006175fec5"
      (reference "D2") (unit 1) (value "LED") (footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-0000617601b8"
      (reference "D3") (unit 1) (value "LED") (footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00006176057d"
      (reference "D4") (unit 1) (value "LED") (footprint "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder")
    )
    (path "/72ecdfc4-13fb-4e88-8891-2113f0749176"
      (reference "D5") (unit 1) (value "1N4148") (footprint "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal")
    )
    (path "/0a142063-5e64-4f32-aad9-cc9df6081d3e"
      (reference "J1") (unit 1) (value "Conn_01x20") (footprint "Connector_PinSocket_2.54mm:PinSocket_1x20_P2.54mm_Vertical")
    )
    (path "/00000000-0000-0000-0000-00006175b9cb"
      (reference "L1") (unit 1) (value "SRF4532-510Y") (footprint "footprints:SRF4532-510Y")
    )
    (path "/00000000-0000-0000-0000-00006175dcb4"
      (reference "Q1") (unit 1) (value "BC817") (footprint "Package_TO_SOT_SMD:SOT-23")
    )
    (path "/00000000-0000-0000-0000-00006175e276"
      (reference "R1") (unit 1) (value "R_US") (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-0000617a9b96"
      (reference "SW1") (unit 1) (value "JS202011JCQN") (footprint "Button_Switch_SMD:SW_DPDT_CK_JS202011JCQN")
    )
  )
)