summaryrefslogtreecommitdiff
path: root/electrical/r2/motor_driver.kicad_sch
blob: 7adae4b8cebc4f8e1223995ba7fa89eab8f1338d (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
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
(kicad_sch (version 20211123) (generator eeschema)

  (uuid fa0b1c45-4855-4d89-b307-57acc62c930a)

  (paper "A4")

  (lib_symbols
    (symbol "Driver_Motor:TMC2100-LA" (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -11.43 24.13 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "TMC2100-LA" (id 1) (at 8.89 24.13 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_DFN_QFN:QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias" (id 2) (at -5.08 -27.94 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf" (id 3) (at -29.21 26.67 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "Driver stepper motor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Standalone driver for two-phase bipolar stepper motor, 2.0A, 4.75-46V, QFN-36" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "QFN*1EP*5x6mm*P0.5mm*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "TMC2100-LA_0_1"
        (rectangle (start -12.7 22.86) (end 12.7 -22.86)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "TMC2100-LA_1_1"
        (pin input line (at -15.24 10.16 0) (length 2.54)
          (name "CLK" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -25.4 90) (length 2.54)
          (name "GNDD" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -25.4 90) (length 2.54) hide
          (name "GNDD" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 -25.4 90) (length 2.54)
          (name "GNDP" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 15.24 -7.62 180) (length 2.54)
          (name "OB1" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 15.24 -2.54 180) (length 2.54)
          (name "BRB" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 15.24 -5.08 180) (length 2.54)
          (name "OB2" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -5.08 25.4 270) (length 2.54)
          (name "VS" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin no_connect line (at 12.7 10.16 180) (length 2.54) hide
          (name "DNC" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -12.7 0) (length 2.54)
          (name "CFG4" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -15.24 0) (length 2.54)
          (name "CFG5" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -10.16 0) (length 2.54)
          (name "CFG3" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin open_collector line (at 15.24 15.24 180) (length 2.54)
          (name "ERROR" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin open_collector line (at 15.24 12.7 180) (length 2.54)
          (name "INDEX" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 12.7 0) (length 2.54)
          (name "~{CFG6_ENN}" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 15.24 0) (length 2.54)
          (name "AIN_REF" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 5.08 -25.4 90) (length 2.54)
          (name "GNDA" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at 5.08 25.4 270) (length 2.54)
          (name "5VOUT" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 25.4 270) (length 2.54)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 15.24 -15.24 180) (length 2.54)
          (name "CP0" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 15.24 -12.7 180) (length 2.54)
          (name "CPI" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 15.24 17.78 180) (length 2.54)
          (name "VCP" (effects (font (size 1.27 1.27))))
          (number "29" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -7.62 0) (length 2.54)
          (name "CFG2" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -7.62 25.4 270) (length 2.54)
          (name "VSA" (effects (font (size 1.27 1.27))))
          (number "30" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 25.4 270) (length 2.54)
          (name "VS" (effects (font (size 1.27 1.27))))
          (number "31" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 15.24 5.08 180) (length 2.54)
          (name "OA2" (effects (font (size 1.27 1.27))))
          (number "32" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 15.24 2.54 180) (length 2.54)
          (name "BRA" (effects (font (size 1.27 1.27))))
          (number "33" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 15.24 7.62 180) (length 2.54)
          (name "OA1" (effects (font (size 1.27 1.27))))
          (number "34" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 -25.4 90) (length 2.54) hide
          (name "GNDP" (effects (font (size 1.27 1.27))))
          (number "35" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -20.32 0) (length 2.54)
          (name "TST_MODE" (effects (font (size 1.27 1.27))))
          (number "36" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -25.4 90) (length 2.54) hide
          (name "GNDD" (effects (font (size 1.27 1.27))))
          (number "37" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -5.08 0) (length 2.54)
          (name "CFG1" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -2.54 0) (length 2.54)
          (name "CFG0" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 5.08 0) (length 2.54)
          (name "STEP" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 2.54 0) (length 2.54)
          (name "DIR" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 25.4 270) (length 2.54)
          (name "VCC_IO" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin no_connect line (at 12.7 0 180) (length 2.54) hide
          (name "DNC" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "dk_Trimmer-Potentiometers:TC33X-1-203E" (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "POT" (id 0) (at -5.334 4.318 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Value" "TC33X-1-203E" (id 1) (at 0.254 -2.794 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Footprint" "digikey-footprints:Trimpot_3.8mmx3.6mm_TC33X-2-103E" (id 2) (at 5.08 5.08 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Datasheet" "https://www.bourns.com/docs/Product-Datasheets/TC33.pdf" (id 3) (at 5.08 7.62 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Digi-Key_PN" "TC33X-1-203E" (id 4) (at 5.08 10.16 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "MPN" "TC33X-1-203E" (id 5) (at 5.08 12.7 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Category" "Potentiometers, Variable Resistors" (id 6) (at 5.08 15.24 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Family" "Trimmer Potentiometers" (id 7) (at 5.08 17.78 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "DK_Datasheet_Link" "https://www.bourns.com/docs/Product-Datasheets/TC33.pdf" (id 8) (at 5.08 20.32 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "DK_Detail_Page" "/product-detail/en/bourns-inc/TC33X-2-103E/TC33X-103ETR-ND/612858" (id 9) (at 5.08 22.86 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Description" "TRIMMER 10K OHM 0.1W J LEAD TOP" (id 10) (at 5.08 25.4 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Manufacturer" "Bourns Inc." (id 11) (at 5.08 27.94 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "Status" "Active" (id 12) (at 5.08 30.48 0)
        (effects (font (size 1.524 1.524)) (justify left) hide)
      )
      (property "ki_description" "TRIMMER 20K OHM 0.1W J LEAD TOP" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "TC33X-1-203E_0_1"
        (polyline
          (pts
            (xy 0 5.08)
            (xy 0 3.175)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.635 3.175)
            (xy 0.635 3.175)
            (xy 0 1.905)
            (xy -0.635 3.175)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy -2.54 0)
            (xy -1.905 1.27)
            (xy -1.27 -1.27)
            (xy -0.635 1.27)
            (xy 0 -1.27)
            (xy 0.635 1.27)
            (xy 1.27 -1.27)
            (xy 1.905 1.27)
            (xy 2.54 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "TC33X-1-203E_1_1"
        (pin passive line (at -5.08 0 0) (length 2.54)
          (name "CCW" (effects (font (size 1.016 1.016))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 7.62 270) (length 2.54)
          (name "Wiper" (effects (font (size 1.016 1.016))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 5.08 0 180) (length 2.54)
          (name "CW" (effects (font (size 1.016 1.016))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "ekd_resistors_smd:CRGCQ0603J2R2" (pin_numbers hide) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 0 -0.381 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "CRGCQ0603J2R2" (id 1) (at 13.208 -6.604 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 17.272 -4.064 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1773204-3&DocType=DS&DocLang=English" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Resistance" "2.2" (id 4) (at 4.064 -11.176 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Power Rating" "1/10W" (id 5) (at 9.144 -8.89 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "CRGCQ0603J2R2_1_1"
        (polyline
          (pts
            (xy 0 -13.716)
            (xy 0 -13.97)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -9.144)
            (xy 0 -8.89)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -12.192)
            (xy 1.016 -12.573)
            (xy 0 -12.954)
            (xy -1.016 -13.335)
            (xy 0 -13.716)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -10.668)
            (xy 1.016 -11.049)
            (xy 0 -11.43)
            (xy -1.016 -11.811)
            (xy 0 -12.192)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -9.144)
            (xy 1.016 -9.525)
            (xy 0 -9.906)
            (xy -1.016 -10.287)
            (xy 0 -10.668)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at 0 -7.62 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 -15.24 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "ekd_resistors_smd:RL1220S-R11-F" (pin_numbers hide) (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 0 -0.381 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "RL1220S-R11-F" (id 1) (at 13.208 -6.604 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Footprint" "ekd_resistors_smd:0402" (id 2) (at 17.272 -4.064 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://www.susumu.co.jp/common/pdf/n_catalog_partition08_en.pdf" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Resistance" "0.11" (id 4) (at 4.064 -11.176 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Power Rating" "1/3W" (id 5) (at 9.144 -8.89 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "RL1220S-R11-F_1_1"
        (polyline
          (pts
            (xy 0 -13.716)
            (xy 0 -13.97)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -9.144)
            (xy 0 -8.89)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -12.192)
            (xy 1.016 -12.573)
            (xy 0 -12.954)
            (xy -1.016 -13.335)
            (xy 0 -13.716)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -10.668)
            (xy 1.016 -11.049)
            (xy 0 -11.43)
            (xy -1.016 -11.811)
            (xy 0 -12.192)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -9.144)
            (xy 1.016 -9.525)
            (xy 0 -9.906)
            (xy -1.016 -10.287)
            (xy 0 -10.668)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at 0 -7.62 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 -15.24 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "mw_ceramic_caps:CL05A105MO5NNNC" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 3.81 3.81 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "CL05A105MO5NNNC" (id 1) (at 3.81 -12.7 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 3.81 -15.24 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Part Number" "CL05A105MO5NNNC" (id 4) (at 3.81 -17.78 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Capacitance" "1.0u" (id 5) (at 3.81 1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Digikey Part Number" "1276-1447-1-ND" (id 6) (at 3.81 -20.32 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Class" "X5R" (id 7) (at 3.81 -10.16 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Size" "0402" (id 8) (at 3.81 -3.81 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Voltage Rating" "16V" (id 9) (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Manufacturer" "Samsung" (id 10) (at 3.81 -22.86 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Cost" "$0.0313 CAD @ 100" (id 11) (at 13.97 -25.4 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor ceramic" (id 12) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "cap 1.0u 16V 0402 ceramic X5R" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 14) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "CL05A105MO5NNNC_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.2032) (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.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "CL05A105MO5NNNC_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 "mw_ceramic_caps:CL21A226MOCLRNC" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 3.81 1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "CL21A226MOCLRNC" (id 1) (at 3.81 -15.24 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 3.81 -17.78 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "http://www.samsungsem.com/kr/support/product-search/mlcc/CL21A226MOCLRNC.jsp" (id 3) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Part Number" "CL21A226MOCLRNC" (id 4) (at 12.7 -10.16 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Digikey Part Number" "1276-6780-1-ND" (id 5) (at 3.81 -20.32 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Manufacturer" "Samsung" (id 6) (at 3.81 -22.86 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Capacitance" "22u" (id 7) (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Class" "X5R" (id 8) (at 3.81 -12.7 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Size" "0805" (id 9) (at 3.81 -5.588 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Voltage Rating" "16V" (id 10) (at 3.81 -3.556 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Cost" "$0.303 CAD @ 10" (id 11) (at 12.7 -25.4 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor ceramic" (id 12) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "cap 22u 16V 0805 ceramic X5R" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 14) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "CL21A226MOCLRNC_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.2032) (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.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "CL21A226MOCLRNC_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 "mw_ceramic_caps:CL21B475KOFNFNE" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 3.81 3.81 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "CL21B475KOFNFNE" (id 1) (at 3.81 -12.7 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 3.81 -15.24 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Digikey Part Number" "1276-2970-1-ND" (id 4) (at 3.81 -17.78 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Manufacturer" "Samsung" (id 5) (at 3.81 -20.32 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Capacitance" "4.7u" (id 6) (at 3.81 1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Class" "X7R" (id 7) (at 3.81 -10.16 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Size" "0805" (id 8) (at 3.81 -3.81 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Voltage Rating" "16V" (id 9) (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Tolerance" "10%" (id 10) (at 3.81 -7.62 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Part Number" "CL21B475KOFNFNE" (id 11) (at 3.81 -22.86 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "ki_keywords" "cap capacitor ceramic" (id 12) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "cap 4.7u 16V 0805 ceramic X7R" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 14) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "CL21B475KOFNFNE_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.2032) (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.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "CL21B475KOFNFNE_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 "mw_ceramic_caps:GCM155R71C104KA55D" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 3.81 3.81 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "GCM155R71C104KA55D" (id 1) (at 3.81 -12.7 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 3.81 -15.24 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Part Number" "GCM155R71C104KA55D" (id 4) (at 3.81 -17.78 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Digikey Part Number" "490-4759-1-ND" (id 5) (at 3.81 -20.32 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Manufacturer" "Murata" (id 6) (at 3.81 -22.86 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Capacitance" "0.1u" (id 7) (at 3.81 1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Class" "X7R" (id 8) (at 3.81 -10.16 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Size" "0402" (id 9) (at 3.81 -7.62 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Voltage Rating" "16V" (id 10) (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "ki_keywords" "cap capacitor ceramic" (id 11) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "cap 0.1u 16V 0402 ceramic X7R" (id 12) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GCM155R71C104KA55D_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.2032) (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.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "GCM155R71C104KA55D_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 "mw_resistors_smd:RC0402FR-0720KL" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 3.81 1.27 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "RC0402FR-0720KL" (id 1) (at 2.54 6.35 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 2.54 3.81 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_10.pdf" (id 3) (at 2.54 -1.27 90)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Digikey Part Number" "311-20.0KLRCT-ND" (id 4) (at 2.54 -11.43 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Manufacturer" "Yageo" (id 5) (at 24.13 21.59 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Part Number" "RC0402FR-0720KL" (id 6) (at 2.54 -8.89 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Tolerance" "1%" (id 7) (at 2.54 -3.81 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Power" "1/16W" (id 8) (at 2.54 -6.35 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Composition" "Thick Film" (id 9) (at 2.54 -16.51 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Temperature Coefficent" "100ppm/degC" (id 10) (at 2.54 -13.97 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Resistance" "20k" (id 11) (at 2.54 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "ki_keywords" "R res resistor" (id 12) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Res 20k 0402 1% 1/16W Yageo" (id 13) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 14) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "RC0402FR-0720KL_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 "RC0402FR-0720KL_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 "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 133.35 90.17) (diameter 0) (color 0 0 0 0)
    (uuid 0ce08c3e-2006-4485-a75c-552178c0dcf0)
  )
  (junction (at 138.43 63.5) (diameter 0) (color 0 0 0 0)
    (uuid 0dd2e962-1ffa-4b6a-8e54-b5cd9cb71705)
  )
  (junction (at 125.73 72.39) (diameter 0) (color 0 0 0 0)
    (uuid 27c299f6-c098-4f98-b38b-fe19ab4f4047)
  )
  (junction (at 143.51 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 3b901f46-8f64-4c58-b8b8-f3e080870c0f)
  )
  (junction (at 119.38 100.33) (diameter 0) (color 0 0 0 0)
    (uuid 9138ddad-f0e7-4ce5-a4f7-5af2653f0c57)
  )
  (junction (at 147.32 77.47) (diameter 0) (color 0 0 0 0)
    (uuid ac59a926-397f-45cb-97ab-81a4221aa01a)
  )
  (junction (at 147.32 87.63) (diameter 0) (color 0 0 0 0)
    (uuid af8ff91a-f1f5-4417-a0af-d56b458a5ba7)
  )
  (junction (at 133.35 59.69) (diameter 0) (color 0 0 0 0)
    (uuid b807a8a8-c767-4715-a73c-3a1313a69737)
  )
  (junction (at 133.35 72.39) (diameter 0) (color 0 0 0 0)
    (uuid c146e55d-8f77-42c5-b4de-e9d9e08b1f5d)
  )
  (junction (at 130.81 86.36) (diameter 0) (color 0 0 0 0)
    (uuid cacb8dda-b42b-46fd-8540-493527678d6b)
  )
  (junction (at 143.51 140.97) (diameter 0) (color 0 0 0 0)
    (uuid d62548f1-dfe8-4015-b9c8-7a22ff522a3b)
  )
  (junction (at 140.97 140.97) (diameter 0) (color 0 0 0 0)
    (uuid dd30632f-b4b3-4c6f-bee8-82ea86a7ed16)
  )
  (junction (at 140.97 77.47) (diameter 0) (color 0 0 0 0)
    (uuid f992feca-faf5-4b3b-a78b-3a2bcb0fa1c8)
  )

  (wire (pts (xy 140.97 77.47) (xy 147.32 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0193fe51-e6ea-42c3-9bac-5a69dcd2a0dd)
  )
  (wire (pts (xy 153.67 118.11) (xy 166.37 118.11))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 078b3533-c4a8-4500-9b42-b4400fd01c36)
  )
  (wire (pts (xy 140.97 77.47) (xy 140.97 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 09d7ec62-7084-4c18-8ce9-0364f42c24b2)
  )
  (wire (pts (xy 119.38 100.33) (xy 123.19 100.33))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 12afc31b-f2c4-4701-b355-9ec0bc86b43d)
  )
  (wire (pts (xy 140.97 72.39) (xy 140.97 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1acd4637-aa93-4c1b-81a4-ccf52ed8faf1)
  )
  (wire (pts (xy 153.67 102.87) (xy 155.575 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1cd0bb28-a1d2-460c-8c11-513371a0bf67)
  )
  (wire (pts (xy 108.585 80.01) (xy 108.585 84.455))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1de07afb-e0cc-4612-bdec-194481b0777d)
  )
  (wire (pts (xy 133.35 52.07) (xy 133.35 59.69))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 224d3445-a4bd-47a6-be4e-fa578e0d8fa2)
  )
  (wire (pts (xy 153.67 128.27) (xy 153.67 125.73))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 24f95e82-6e57-4a76-bea3-8136fb177d32)
  )
  (wire (pts (xy 138.43 61.595) (xy 138.43 63.5))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 26476e61-3655-43d2-a3eb-0b2a47372fcb)
  )
  (wire (pts (xy 153.67 107.95) (xy 155.575 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2be7dcf9-29bf-407b-9a5d-e11a2f8bf2c7)
  )
  (wire (pts (xy 125.73 59.69) (xy 125.73 72.39))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3b23ad15-43f4-4f03-b1a7-fa1547ab390c)
  )
  (wire (pts (xy 153.67 125.73) (xy 158.75 125.73))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 457bff81-93d2-4506-8fb5-602961926d99)
  )
  (wire (pts (xy 153.67 123.19) (xy 155.575 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5d341691-85be-4968-a747-4612bfed67a2)
  )
  (wire (pts (xy 153.67 120.65) (xy 155.575 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5f71bc69-d3f3-48ca-b359-674d163e9df0)
  )
  (wire (pts (xy 119.38 96.52) (xy 119.38 100.33))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 601c42be-bc76-41d8-afc9-7f735055a07f)
  )
  (wire (pts (xy 121.285 110.49) (xy 123.19 110.49))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6881d776-17a8-401e-ae46-e13a52607b0b)
  )
  (wire (pts (xy 121.285 120.65) (xy 123.19 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6a8abc30-027e-4a5f-9e35-39766f487034)
  )
  (wire (pts (xy 170.18 97.79) (xy 168.91 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6de7338e-559b-4b78-86d2-6dcd8bb50e5c)
  )
  (wire (pts (xy 121.285 125.73) (xy 123.19 125.73))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 70254d73-88b7-4088-aed1-2ddb8a8407fe)
  )
  (wire (pts (xy 138.43 63.5) (xy 138.43 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 733f7f62-62b2-4a81-94b5-f091014c8711)
  )
  (wire (pts (xy 143.51 87.63) (xy 143.51 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 74ecdce8-37a6-4eac-8b17-53a4f926a5a6)
  )
  (wire (pts (xy 130.81 86.36) (xy 130.81 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 76ec87bb-1492-42ee-a709-35f63cfb2ca6)
  )
  (wire (pts (xy 116.205 100.33) (xy 119.38 100.33))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 786d6eb3-4f2a-4188-b23b-ff1db6b8e53d)
  )
  (wire (pts (xy 121.285 113.03) (xy 123.19 113.03))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 78baafa9-c2ae-48ef-9405-c228fa25b34d)
  )
  (wire (pts (xy 138.43 140.97) (xy 140.97 140.97))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7a67173d-b55e-4dcd-8f63-9ef19e45dcc0)
  )
  (wire (pts (xy 133.35 72.39) (xy 133.35 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7c4ac214-efcb-46c0-aff8-87f957b42ab7)
  )
  (wire (pts (xy 121.285 123.19) (xy 123.19 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7e792128-8a33-4354-a62c-391a50ffcc18)
  )
  (wire (pts (xy 153.67 133.35) (xy 158.75 133.35))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7ef223ac-f794-4f1d-bc1a-69e27543e9c7)
  )
  (wire (pts (xy 147.32 87.63) (xy 152.4 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 888fbcbe-101e-49a7-8826-44cc6b0705d2)
  )
  (wire (pts (xy 133.35 59.69) (xy 133.35 72.39))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 898a7019-26de-4091-b000-bb10cebd7bd9)
  )
  (wire (pts (xy 153.67 130.81) (xy 153.67 133.35))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8d4bb654-0b8d-4752-97b2-3fd05ef6d687)
  )
  (wire (pts (xy 108.585 92.075) (xy 108.585 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8d6f3649-4c1b-4fd4-91ee-571bcd659deb)
  )
  (wire (pts (xy 147.32 77.47) (xy 147.32 78.74))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9969ad52-361e-465d-99d3-9792a494088a)
  )
  (wire (pts (xy 153.67 97.79) (xy 161.29 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9b3debd6-75b6-4a8d-8d5a-c1b3c0b21480)
  )
  (wire (pts (xy 153.67 113.03) (xy 173.99 113.03))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9fca72b1-7b48-4f6b-a839-5e32cc617dbb)
  )
  (wire (pts (xy 121.285 128.27) (xy 123.19 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a13cee90-7eae-4854-b81d-1c424a963fbd)
  )
  (wire (pts (xy 138.43 63.5) (xy 144.145 63.5))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a20850a1-7491-410d-ad13-5a00d4bf6690)
  )
  (wire (pts (xy 147.32 86.36) (xy 147.32 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a80c9144-9e97-43ec-bb80-30c3eb7555cc)
  )
  (wire (pts (xy 130.81 81.28) (xy 130.81 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid aa75dd9d-dac5-4ea2-8877-b2b3905c5d83)
  )
  (wire (pts (xy 173.99 113.03) (xy 173.99 118.11))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid acc7e79c-57e9-45ac-905f-1d69347873f4)
  )
  (wire (pts (xy 153.67 100.33) (xy 155.575 100.33))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b4edaeeb-0e47-4940-9750-1f2d1bad48f2)
  )
  (wire (pts (xy 143.51 83.82) (xy 143.51 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b817aed8-708d-4cb1-839d-4084448fa9be)
  )
  (wire (pts (xy 153.67 110.49) (xy 155.575 110.49))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c61d88dc-a9db-4c5f-8fa0-e539b5834175)
  )
  (wire (pts (xy 121.285 102.87) (xy 123.19 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c646b0cb-0f41-4b5f-81b2-028cf23c8226)
  )
  (wire (pts (xy 143.51 87.63) (xy 147.32 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d85a9c34-5ec6-49b7-8711-7895a7f67990)
  )
  (wire (pts (xy 121.285 118.11) (xy 123.19 118.11))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid df0478b9-213b-4d8f-9b77-9fa7b44b0a08)
  )
  (wire (pts (xy 147.32 77.47) (xy 161.29 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e3073a7a-a69f-4544-b1c0-a6f9dd8c7542)
  )
  (wire (pts (xy 140.97 140.97) (xy 143.51 140.97))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e535cf5c-66a7-418b-9eb9-cd07750b4ecc)
  )
  (wire (pts (xy 121.285 130.81) (xy 123.19 130.81))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e5ef7532-89ce-4b89-96de-ad089ace2e1b)
  )
  (wire (pts (xy 133.35 90.17) (xy 135.89 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fdf4853d-6cfe-41ed-bb57-0dcd82617173)
  )

  (label "+5V" (at 108.585 80.01 90)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 87517861-3944-4ef6-8f88-2b2d887d6a7b)
  )
  (label "+5V" (at 143.51 83.82 90)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid cd57fa5c-4821-44e6-938b-be773fffe4fb)
  )

  (hierarchical_label "+VM" (shape input) (at 133.35 52.07 90)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 17dd2f2f-9fcd-4030-a2fb-868d2ed3d4ff)
  )
  (hierarchical_label "DIAG0" (shape input) (at 155.575 100.33 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 244fd204-fc14-441b-ad66-14b9b9f85a0c)
  )
  (hierarchical_label "+VM" (shape input) (at 130.81 81.28 90)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 40c43e2b-b6de-4f4f-977c-ab7d8b1e7d04)
  )
  (hierarchical_label "MOB1" (shape output) (at 155.575 120.65 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 4827798a-a76f-4bba-bc6c-e4036ecfb789)
  )
  (hierarchical_label "DIR" (shape input) (at 121.285 113.03 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 4fac2c31-e177-4353-8eda-c26aa1489baf)
  )
  (hierarchical_label "CFG6" (shape input) (at 121.285 102.87 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 55982ce7-4f6e-4b99-adac-919f73e61f29)
  )
  (hierarchical_label "MOA2" (shape output) (at 155.575 110.49 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 5cfcdc73-42a1-4ede-b8f0-b1da2162fbd8)
  )
  (hierarchical_label "CFG5" (shape input) (at 121.285 130.81 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 656fbf32-5bd8-43c3-ae92-dc2c25ae598e)
  )
  (hierarchical_label "IREF" (shape input) (at 119.38 96.52 90)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 9600d03d-f59f-4f56-9ba3-efa474afed1e)
  )
  (hierarchical_label "+VIO" (shape input) (at 138.43 61.595 90)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid a775c7c6-2dac-45a4-8e8a-6e0cf5519013)
  )
  (hierarchical_label "MOA1" (shape output) (at 155.575 107.95 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid b0599060-885d-4493-9481-2c44d1c92ba2)
  )
  (hierarchical_label "MOB2" (shape output) (at 155.575 123.19 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid b2b92a8f-d2d6-41cd-85b8-11f2847fc2bb)
  )
  (hierarchical_label "CFG4" (shape input) (at 121.285 128.27 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid b308e247-bf35-4648-bb73-de5549aae8d8)
  )
  (hierarchical_label "CFG1" (shape input) (at 121.285 120.65 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid bbc3b440-4d60-490f-9bb0-dcaa817c2410)
  )
  (hierarchical_label "CFG3" (shape input) (at 121.285 125.73 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid bfec1b0b-bd47-40a1-bff4-e8a86ebfbc4b)
  )
  (hierarchical_label "+VM" (shape input) (at 170.18 97.79 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c34fd97a-aa95-4454-ba6d-e4ddd3bd04df)
  )
  (hierarchical_label "CFG0" (shape input) (at 121.285 118.11 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid d76cfdac-edc6-434b-8eb1-37e3c20d3ff5)
  )
  (hierarchical_label "STEP" (shape input) (at 121.285 110.49 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid d9ec25f0-3233-4622-96c3-b7b23c53dbca)
  )
  (hierarchical_label "DIAG1" (shape input) (at 155.575 102.87 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid db444e21-0cda-492a-81bd-23bfdea59fea)
  )
  (hierarchical_label "+VIO" (shape input) (at 140.97 72.39 90)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid e7bca9e8-3303-4e26-a626-d8b59321c610)
  )
  (hierarchical_label "CFG2" (shape input) (at 121.285 123.19 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid f0fc1847-3441-4224-ad4a-7ce08775c6c6)
  )

  (symbol (lib_id "power:GND") (at 108.585 105.41 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 19983ea5-19ce-41c1-aba7-be8454edf3df)
    (property "Reference" "#PWR07" (id 0) (at 108.585 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 108.585 109.9725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 108.585 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 108.585 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 14fc9a1f-f794-4554-8fc5-1a84fbf7aec7))
  )

  (symbol (lib_id "power:GND") (at 143.51 140.97 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 224236cc-ee56-486a-b129-734cc2414f13)
    (property "Reference" "#PWR012" (id 0) (at 143.51 147.32 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 143.51 145.5325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 143.51 140.97 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 143.51 140.97 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9af07f21-7be0-4414-8bc4-534be101bb3a))
  )

  (symbol (lib_id "power:GND") (at 123.19 86.36 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2e2aa276-54ab-4c1d-96e6-19ff6c9446ed)
    (property "Reference" "#PWR08" (id 0) (at 123.19 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 123.19 90.9225 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 123.19 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 123.19 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5546be1d-8709-4145-9a17-71b0b7d95b1e))
  )

  (symbol (lib_id "power:GND") (at 123.19 105.41 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 31267534-293b-40c2-9c95-8d6049f5eab7)
    (property "Reference" "#PWR09" (id 0) (at 123.19 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 123.19 109.9725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 123.19 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 123.19 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8093a880-484f-466a-b5a5-f459b247ee27))
  )

  (symbol (lib_id "mw_ceramic_caps:GCM155R71C104KA55D") (at 165.1 97.79 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 3ee44001-b735-472e-94c1-7d4cd8e8257c)
    (property "Reference" "C8" (id 0) (at 165.1 89.5468 90))
    (property "Value" "GCM155R71C104KA55D" (id 1) (at 152.4 101.6 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 149.86 101.6 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 167.64 98.425 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Part Number" "GCM155R71C104KA55D" (id 4) (at 147.32 101.6 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Digikey Part Number" "490-4759-1-ND" (id 5) (at 144.78 101.6 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Murata" (id 6) (at 142.24 101.6 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "0.1u" (id 7) (at 165.1 92.0837 90))
    (property "Class" "X7R" (id 8) (at 154.94 101.6 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0402" (id 9) (at 157.48 101.6 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "16V" (id 10) (at 165.1 94.6206 90))
    (pin "1" (uuid 0c158263-67dc-46b3-99ae-51e780b2de2b))
    (pin "2" (uuid ad89858c-b8e2-49f8-a8c5-584c36bc9f00))
  )

  (symbol (lib_id "power:GND") (at 160.02 87.63 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 40e26a62-97dd-460b-a13c-fff6aa8cbe81)
    (property "Reference" "#PWR014" (id 0) (at 160.02 93.98 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 160.02 92.1925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 160.02 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 160.02 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 050bafef-3d48-48ff-bad7-c3a80599fb63))
  )

  (symbol (lib_id "ekd_resistors_smd:CRGCQ0603J2R2") (at 147.32 71.12 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4c4eb1a8-41cb-492c-99f8-6314571f244e)
    (property "Reference" "R2" (id 0) (at 148.971 81.6415 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "CRGCQ0603J2R2" (id 1) (at 160.528 77.724 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 164.592 75.184 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1773204-3&DocType=DS&DocLang=English" (id 3) (at 147.32 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Resistance" "2.2" (id 4) (at 148.971 84.4166 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Power Rating" "1/10W" (id 5) (at 156.464 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid abcec64e-7d00-40de-b1de-f61435a3b0d2))
    (pin "2" (uuid 3d4d6081-a182-49f5-be49-465344fcff22))
  )

  (symbol (lib_id "Driver_Motor:TMC2100-LA") (at 138.43 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4cdc19d9-428c-42d1-b1e2-fea242ee5087)
    (property "Reference" "U2" (id 0) (at 145.5294 140.5795 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "TMC2100-LA" (id 1) (at 145.5294 143.3546 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_DFN_QFN:QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias" (id 2) (at 133.35 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf" (id 3) (at 109.22 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ab6e6161-3c3f-469b-9d63-ff9900ab0882))
    (pin "10" (uuid 1f219346-7800-4b4f-b108-6bb43933ca00))
    (pin "11" (uuid 1d67f004-6865-4790-9e7d-d478f0808a9d))
    (pin "12" (uuid 8eb432ad-708b-4e4c-a970-475071dc1ccf))
    (pin "13" (uuid 4082c9b4-4080-488d-b603-1539e4db8c4f))
    (pin "14" (uuid 9794c5b5-359b-4c57-a2b5-98653e2677e0))
    (pin "15" (uuid 007af82f-06b9-4912-ba1f-6086d6e6e3d1))
    (pin "16" (uuid 31b8a69d-0563-4ada-83d1-c577f89adf4c))
    (pin "17" (uuid cb9d3868-e9d2-47d3-b844-cd9307dacffc))
    (pin "18" (uuid 39b5095c-61a9-4ad4-91e4-076f95291adc))
    (pin "19" (uuid 85a0702c-57ac-4fc3-b8f5-bb97787fedaa))
    (pin "2" (uuid 6635d2a7-c258-4f61-b8de-bf66df7d8cf1))
    (pin "20" (uuid 20ce99e6-562d-4a53-851d-338bbd4e5f61))
    (pin "21" (uuid 161435a6-ef97-4a5f-a57e-362e47b900b0))
    (pin "22" (uuid 78653bc7-190a-44f8-835d-de732ba1d946))
    (pin "23" (uuid 44e9d936-0576-462e-b960-e84221f520a5))
    (pin "24" (uuid a40dc4e1-cceb-4af6-939f-e510bbb212ed))
    (pin "25" (uuid 1af1cdb7-0d0f-41a8-8c4b-221a95a7bbb1))
    (pin "26" (uuid 64f930fd-cee2-46f9-8170-19d18d3e7454))
    (pin "27" (uuid b7f0aee2-467c-41a0-9cac-30a18dab3c38))
    (pin "28" (uuid 8c38169c-70da-4540-a67b-bc92aeb8429b))
    (pin "29" (uuid eb14fa45-79e3-4466-be4a-ce04239acd76))
    (pin "3" (uuid 52a8be9b-193c-48c1-bd6b-e015df647dba))
    (pin "30" (uuid bff6a68e-bb85-4cdf-a6d5-40e7e1a9acd6))
    (pin "31" (uuid ca314a36-8253-4ecf-8a04-3d66c0ae0189))
    (pin "32" (uuid c65b26cf-c633-407b-a25b-f4afb8dd55e8))
    (pin "33" (uuid 53ccd7e9-e8d0-4681-ad73-677fb381674e))
    (pin "34" (uuid 58336d55-1b54-4593-90ba-28feaaad4d6c))
    (pin "35" (uuid a477d65d-2096-44b9-ac0d-fdf35cbf0acd))
    (pin "36" (uuid 7d51fe3c-ca3e-4b43-af15-56f2be4c3034))
    (pin "37" (uuid 67dcdc84-2cda-43e8-917c-4d3c24289521))
    (pin "4" (uuid 2a8a98c4-f484-4a48-921a-f5143a1e07e2))
    (pin "5" (uuid e45d1ac6-38ca-4535-9354-0b97d3534574))
    (pin "6" (uuid 2e15827b-6554-4589-87b0-ce3ba7235d0a))
    (pin "7" (uuid ddb3c61d-a426-434c-8a18-7820b9e80c1c))
    (pin "8" (uuid fac07642-c753-4533-9986-7a33dff89ed9))
    (pin "9" (uuid 72395458-a271-463e-9847-0fa2ac99e351))
  )

  (symbol (lib_id "power:GND") (at 166.37 125.73 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4e427677-4a78-4265-946e-e31b52dbc405)
    (property "Reference" "#PWR015" (id 0) (at 166.37 132.08 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 166.37 130.2925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 166.37 125.73 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 166.37 125.73 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2580062e-ddbe-44ee-8aac-ce9bb927a436))
  )

  (symbol (lib_id "mw_ceramic_caps:GCM155R71C104KA55D") (at 129.54 59.69 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 60c79fdd-787c-4d4e-8400-faa4d46554a8)
    (property "Reference" "C2" (id 0) (at 129.54 51.4468 90))
    (property "Value" "GCM155R71C104KA55D" (id 1) (at 142.24 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 144.78 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 127 59.055 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Part Number" "GCM155R71C104KA55D" (id 4) (at 147.32 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Digikey Part Number" "490-4759-1-ND" (id 5) (at 149.86 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Murata" (id 6) (at 152.4 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "0.1u" (id 7) (at 129.54 53.9837 90))
    (property "Class" "X7R" (id 8) (at 139.7 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0402" (id 9) (at 137.16 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "16V" (id 10) (at 129.54 56.5206 90))
    (pin "1" (uuid 1c4d60a6-ad25-4905-ae60-6845b3a82fcd))
    (pin "2" (uuid f1b9ebac-2cef-4768-ba8d-2f6cd92bb214))
  )

  (symbol (lib_id "ekd_resistors_smd:RL1220S-R11-F") (at 173.99 133.35 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 6e8fdd1c-cb98-4791-9e20-6049cd764527)
    (property "Reference" "R4" (id 0) (at 175.641 121.0115 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "RL1220S-R11-F" (id 1) (at 160.782 126.746 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 156.718 129.286 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.susumu.co.jp/common/pdf/n_catalog_partition08_en.pdf" (id 3) (at 173.99 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Resistance" "0.11" (id 4) (at 175.641 123.7866 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Power Rating" "1/3W" (id 5) (at 164.846 124.46 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f72b86e4-08ed-4035-97d4-b907d5c9a653))
    (pin "2" (uuid 6f39f304-c2c9-451b-90f6-ebfd9b1f759c))
  )

  (symbol (lib_id "power:GND") (at 151.765 63.5 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 72ce4a30-6d5f-4921-bfbb-91b2a30cc562)
    (property "Reference" "#PWR013" (id 0) (at 151.765 69.85 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 151.765 68.0625 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 151.765 63.5 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 151.765 63.5 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid de8a766d-9a6f-4d2a-a273-54b46aa55de1))
  )

  (symbol (lib_id "power:GND") (at 125.73 72.39 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 73b6416f-458d-4886-a0fc-5e8cbe24731a)
    (property "Reference" "#PWR011" (id 0) (at 125.73 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 125.73 76.9525 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 125.73 72.39 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 125.73 72.39 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a7276051-e6ee-4247-8af3-71028afa7ddf))
  )

  (symbol (lib_id "mw_ceramic_caps:GCM155R71C104KA55D") (at 147.955 63.5 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 75ab178c-5510-48f0-9445-42a1e3abae23)
    (property "Reference" "C4" (id 0) (at 147.955 55.2568 90))
    (property "Value" "GCM155R71C104KA55D" (id 1) (at 160.655 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 163.195 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 145.415 62.865 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Part Number" "GCM155R71C104KA55D" (id 4) (at 165.735 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Digikey Part Number" "490-4759-1-ND" (id 5) (at 168.275 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Murata" (id 6) (at 170.815 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "0.1u" (id 7) (at 147.955 57.7937 90))
    (property "Class" "X7R" (id 8) (at 158.115 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0402" (id 9) (at 155.575 59.69 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "16V" (id 10) (at 147.955 60.3306 90))
    (pin "1" (uuid 6760b3d5-3244-46f8-b593-90dac9bd0318))
    (pin "2" (uuid 3460b8c8-3607-44b4-b993-bb8bf85098b3))
  )

  (symbol (lib_id "power:GND") (at 168.91 77.47 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 829a9ca9-0dfd-4ba4-965b-bafe40e7346c)
    (property "Reference" "#PWR016" (id 0) (at 168.91 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 168.91 82.0325 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 168.91 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 168.91 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7646607c-3caa-4447-a336-9515cdc47f49))
  )

  (symbol (lib_id "mw_ceramic_caps:CL21B475KOFNFNE") (at 156.21 87.63 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 860af4f8-632b-4e3d-bc32-8e903abdf211)
    (property "Reference" "C5" (id 0) (at 156.21 79.3868 90))
    (property "Value" "CL21B475KOFNFNE" (id 1) (at 168.91 83.82 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 171.45 83.82 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 153.67 86.995 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Digikey Part Number" "1276-2970-1-ND" (id 4) (at 173.99 83.82 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Samsung" (id 5) (at 176.53 83.82 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "4.7u" (id 6) (at 156.21 81.9237 90))
    (property "Class" "X7R" (id 7) (at 166.37 83.82 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0805" (id 8) (at 160.02 83.82 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "16V" (id 9) (at 156.21 84.4606 90))
    (property "Tolerance" "10%" (id 10) (at 163.83 83.82 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Part Number" "CL21B475KOFNFNE" (id 11) (at 179.07 83.82 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid 9277808c-2d2b-4541-858b-475b10ebe5e3))
    (pin "2" (uuid 6b92d335-2ce1-4afd-83d3-cd3cb5e58e36))
  )

  (symbol (lib_id "mw_ceramic_caps:CL21B475KOFNFNE") (at 165.1 77.47 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8dd8dff9-137a-4c84-8d1a-12618f0954d0)
    (property "Reference" "C7" (id 0) (at 165.1 69.2268 90))
    (property "Value" "CL21B475KOFNFNE" (id 1) (at 152.4 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 149.86 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 167.64 78.105 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Digikey Part Number" "1276-2970-1-ND" (id 4) (at 147.32 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Samsung" (id 5) (at 144.78 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "4.7u" (id 6) (at 165.1 71.7637 90))
    (property "Class" "X7R" (id 7) (at 154.94 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0805" (id 8) (at 161.29 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "16V" (id 9) (at 165.1 74.3006 90))
    (property "Tolerance" "10%" (id 10) (at 157.48 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Part Number" "CL21B475KOFNFNE" (id 11) (at 142.24 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid 672be15f-507d-4cfc-81b7-f3207119d88f))
    (pin "2" (uuid 167b975a-ff43-4659-91fc-384a894f2b52))
  )

  (symbol (lib_id "dk_Trimmer-Potentiometers:TC33X-1-203E") (at 108.585 100.33 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9a742638-358e-4eff-b71e-11d56e23d6cc)
    (property "Reference" "POT1" (id 0) (at 106.68 99.2653 90)
      (effects (font (size 1.524 1.524)) (justify right))
    )
    (property "Value" "TC33X-1-203E" (id 1) (at 106.68 102.5443 90)
      (effects (font (size 1.524 1.524)) (justify right))
    )
    (property "Footprint" "digikey-footprints:Trimpot_3.8mmx3.6mm_TC33X-2-103E" (id 2) (at 113.665 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Datasheet" "https://www.bourns.com/docs/Product-Datasheets/TC33.pdf" (id 3) (at 116.205 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Digi-Key_PN" "TC33X-1-203E" (id 4) (at 118.745 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "MPN" "TC33X-1-203E" (id 5) (at 121.285 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Category" "Potentiometers, Variable Resistors" (id 6) (at 123.825 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Family" "Trimmer Potentiometers" (id 7) (at 126.365 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "DK_Datasheet_Link" "https://www.bourns.com/docs/Product-Datasheets/TC33.pdf" (id 8) (at 128.905 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "DK_Detail_Page" "/product-detail/en/bourns-inc/TC33X-2-103E/TC33X-103ETR-ND/612858" (id 9) (at 131.445 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Description" "TRIMMER 10K OHM 0.1W J LEAD TOP" (id 10) (at 133.985 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Manufacturer" "Bourns Inc." (id 11) (at 136.525 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (property "Status" "Active" (id 12) (at 139.065 105.41 0)
      (effects (font (size 1.524 1.524)) (justify left) hide)
    )
    (pin "1" (uuid 4f32ce05-a0cf-466a-aa05-a66ad486390a))
    (pin "2" (uuid 865a4d0e-4cbe-499b-8ba0-13514207bdf7))
    (pin "3" (uuid f725f515-3ee2-40c4-8dc9-7e3f926146f2))
  )

  (symbol (lib_id "mw_ceramic_caps:CL21A226MOCLRNC") (at 158.75 129.54 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ac8d0082-e04e-4847-b258-f5a8166f78ca)
    (property "Reference" "C6" (id 0) (at 161.5186 127.4369 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "CL21A226MOCLRNC" (id 1) (at 162.56 144.78 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 162.56 147.32 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "http://www.samsungsem.com/kr/support/product-search/mlcc/CL21A226MOCLRNC.jsp" (id 3) (at 159.385 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Part Number" "CL21A226MOCLRNC" (id 4) (at 171.45 139.7 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Digikey Part Number" "1276-6780-1-ND" (id 5) (at 162.56 149.86 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Samsung" (id 6) (at 162.56 152.4 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "22u" (id 7) (at 161.5186 129.9738 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Class" "X5R" (id 8) (at 162.56 142.24 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0805" (id 9) (at 162.56 135.128 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "16V" (id 10) (at 161.5186 132.5107 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Cost" "$0.303 CAD @ 10" (id 11) (at 171.45 154.94 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b7efdaac-46b9-4271-be60-6522a7a8cba6))
    (pin "2" (uuid bdbe3d37-2051-4007-b7e0-826898116ddd))
  )

  (symbol (lib_id "power:GND") (at 123.19 135.89 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid bf37c934-dc36-4aac-871f-78918611a3f9)
    (property "Reference" "#PWR010" (id 0) (at 123.19 142.24 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 123.19 140.4525 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 123.19 135.89 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 123.19 135.89 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0f17a06e-1664-4c11-bd1c-4f014a334d42))
  )

  (symbol (lib_id "mw_ceramic_caps:CL05A105MO5NNNC") (at 129.54 72.39 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ccdcc643-2c01-4966-b94e-e28b382b05f7)
    (property "Reference" "C3" (id 0) (at 129.54 64.1468 90))
    (property "Value" "CL05A105MO5NNNC" (id 1) (at 142.24 68.58 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 144.78 68.58 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 127 71.755 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Part Number" "CL05A105MO5NNNC" (id 4) (at 147.32 68.58 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "1.0u" (id 5) (at 129.54 66.6837 90))
    (property "Digikey Part Number" "1276-1447-1-ND" (id 6) (at 149.86 68.58 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Class" "X5R" (id 7) (at 139.7 68.58 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0402" (id 8) (at 133.35 68.58 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "16V" (id 9) (at 129.54 69.2206 90))
    (property "Manufacturer" "Samsung" (id 10) (at 152.4 68.58 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Cost" "$0.0313 CAD @ 100" (id 11) (at 154.94 58.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0ce6256e-e45a-42e7-b0a3-89dadda32cfc))
    (pin "2" (uuid 988e7576-396b-4de6-942f-77bcf33291f9))
  )

  (symbol (lib_id "ekd_resistors_smd:RL1220S-R11-F") (at 166.37 133.35 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid dbbc7306-ea4b-4060-adbf-d11cd5649f02)
    (property "Reference" "R3" (id 0) (at 168.021 121.0115 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "RL1220S-R11-F" (id 1) (at 153.162 126.746 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 149.098 129.286 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.susumu.co.jp/common/pdf/n_catalog_partition08_en.pdf" (id 3) (at 166.37 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Resistance" "0.11" (id 4) (at 168.021 123.7866 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Power Rating" "1/3W" (id 5) (at 157.226 124.46 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 24cb0cb1-5fec-4452-be30-863b43657fee))
    (pin "2" (uuid 5c03df8b-ca43-4662-b8ae-d7e23b5fa8fc))
  )

  (symbol (lib_id "mw_resistors_smd:RC0402FR-0720KL") (at 108.585 88.265 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f6a42d9f-a98e-4e48-897f-f81742c18e4c)
    (property "Reference" "R1" (id 0) (at 110.236 87.3565 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "RC0402FR-0720KL" (id 1) (at 111.125 81.915 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 111.125 84.455 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "http://www.yageo.com/documents/recent/PYu-RC_Group_51_RoHS_L_10.pdf" (id 3) (at 111.125 89.535 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Digikey Part Number" "311-20.0KLRCT-ND" (id 4) (at 111.125 99.695 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Yageo" (id 5) (at 132.715 66.675 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Part Number" "RC0402FR-0720KL" (id 6) (at 111.125 97.155 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Tolerance" "1%" (id 7) (at 111.125 92.075 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Power" "1/16W" (id 8) (at 111.125 94.615 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Composition" "Thick Film" (id 9) (at 111.125 104.775 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Temperature Coefficent" "100ppm/degC" (id 10) (at 111.125 102.235 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Resistance" "20k" (id 11) (at 110.236 90.1316 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (pin "1" (uuid 07bfda41-4a7c-4e17-ad3d-1f99de98a9ad))
    (pin "2" (uuid 3dcc5fbc-c230-47d1-9a30-6fa98a85a47c))
  )

  (symbol (lib_id "mw_ceramic_caps:GCM155R71C104KA55D") (at 127 86.36 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fc2a8853-b3bd-41ee-83cd-a4b9f1d772fc)
    (property "Reference" "C1" (id 0) (at 127 78.1168 90))
    (property "Value" "GCM155R71C104KA55D" (id 1) (at 139.7 82.55 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 142.24 82.55 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "~" (id 3) (at 124.46 85.725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Part Number" "GCM155R71C104KA55D" (id 4) (at 144.78 82.55 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Digikey Part Number" "490-4759-1-ND" (id 5) (at 147.32 82.55 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Manufacturer" "Murata" (id 6) (at 149.86 82.55 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Capacitance" "0.1u" (id 7) (at 127 80.6537 90))
    (property "Class" "X7R" (id 8) (at 137.16 82.55 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Size" "0402" (id 9) (at 134.62 82.55 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Voltage Rating" "16V" (id 10) (at 127 83.1906 90))
    (pin "1" (uuid 99471016-6514-44d8-8c67-f901d03134d5))
    (pin "2" (uuid 93b1f380-4430-49f5-b39f-e6c1ef3823ef))
  )

  (symbol (lib_id "power:GND") (at 173.99 125.73 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fcf0f13a-60a0-49a5-94be-bb7cfc371842)
    (property "Reference" "#PWR017" (id 0) (at 173.99 132.08 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 173.99 130.2925 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "" (id 2) (at 173.99 125.73 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 173.99 125.73 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4ae132c9-f241-4abd-9afb-a682677c18fa))
  )
)