aboutsummaryrefslogtreecommitdiff
path: root/hardware/blackmagic.pcb
blob: 57b3a2fb781ad2ffc635df4b1b06024b55f4a6b9 (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
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
# release: pcb 20091103
# date:    Sun Feb  6 18:56:36 2011
# user:    gareth (Gareth McMullin,,,)
# host:    gareth-desktop

# To read pcb files, the pcb version (or the cvs source date) must be >= the file version
FileVersion[20070407]

PCB["Black Magic Probe" 160000 100000]

Grid[500.000000 0 0 1]
Cursor[0 100000 0.000000]
PolyArea[200000000.000000]
Thermal[0.500000]
DRC[1000 1000 1000 1000 1500 1000]
Flags("nameonpcb,uniquename,clearnew")
Groups("1,2,3,s:4,5,6,c:7:8")
Styles["Signal,1500,2500,1500,1000:Power,5906,6000,3500,1000:Fat,2500,6000,3500,1000:Skinny,1000,2402,1181,600"]

Symbol(' ' 18)
(
)
Symbol('!' 12)
(
	SymbolLine(0 45 0 50 8)
	SymbolLine(0 10 0 35 8)
)
Symbol('"' 12)
(
	SymbolLine(0 10 0 20 8)
	SymbolLine(10 10 10 20 8)
)
Symbol('#' 12)
(
	SymbolLine(0 35 20 35 8)
	SymbolLine(0 25 20 25 8)
	SymbolLine(15 20 15 40 8)
	SymbolLine(5 20 5 40 8)
)
Symbol('$' 12)
(
	SymbolLine(15 15 20 20 8)
	SymbolLine(5 15 15 15 8)
	SymbolLine(0 20 5 15 8)
	SymbolLine(0 20 0 25 8)
	SymbolLine(0 25 5 30 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(20 35 20 40 8)
	SymbolLine(15 45 20 40 8)
	SymbolLine(5 45 15 45 8)
	SymbolLine(0 40 5 45 8)
	SymbolLine(10 10 10 50 8)
)
Symbol('%' 12)
(
	SymbolLine(0 15 0 20 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 10 10 8)
	SymbolLine(10 10 15 15 8)
	SymbolLine(15 15 15 20 8)
	SymbolLine(10 25 15 20 8)
	SymbolLine(5 25 10 25 8)
	SymbolLine(0 20 5 25 8)
	SymbolLine(0 50 40 10 8)
	SymbolLine(35 50 40 45 8)
	SymbolLine(40 40 40 45 8)
	SymbolLine(35 35 40 40 8)
	SymbolLine(30 35 35 35 8)
	SymbolLine(25 40 30 35 8)
	SymbolLine(25 40 25 45 8)
	SymbolLine(25 45 30 50 8)
	SymbolLine(30 50 35 50 8)
)
Symbol('&' 12)
(
	SymbolLine(0 45 5 50 8)
	SymbolLine(0 15 0 25 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(0 35 15 20 8)
	SymbolLine(5 50 10 50 8)
	SymbolLine(10 50 20 40 8)
	SymbolLine(0 25 25 50 8)
	SymbolLine(5 10 10 10 8)
	SymbolLine(10 10 15 15 8)
	SymbolLine(15 15 15 20 8)
	SymbolLine(0 35 0 45 8)
)
Symbol(''' 12)
(
	SymbolLine(0 20 10 10 8)
)
Symbol('(' 12)
(
	SymbolLine(0 45 5 50 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(0 15 0 45 8)
)
Symbol(')' 12)
(
	SymbolLine(0 10 5 15 8)
	SymbolLine(5 15 5 45 8)
	SymbolLine(0 50 5 45 8)
)
Symbol('*' 12)
(
	SymbolLine(0 20 20 40 8)
	SymbolLine(0 40 20 20 8)
	SymbolLine(0 30 20 30 8)
	SymbolLine(10 20 10 40 8)
)
Symbol('+' 12)
(
	SymbolLine(0 30 20 30 8)
	SymbolLine(10 20 10 40 8)
)
Symbol(',' 12)
(
	SymbolLine(0 60 10 50 8)
)
Symbol('-' 12)
(
	SymbolLine(0 30 20 30 8)
)
Symbol('.' 12)
(
	SymbolLine(0 50 5 50 8)
)
Symbol('/' 12)
(
	SymbolLine(0 45 30 15 8)
)
Symbol('0' 12)
(
	SymbolLine(0 45 5 50 8)
	SymbolLine(0 15 0 45 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 15 10 8)
	SymbolLine(15 10 20 15 8)
	SymbolLine(20 15 20 45 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(0 40 20 20 8)
)
Symbol('1' 12)
(
	SymbolLine(5 50 15 50 8)
	SymbolLine(10 10 10 50 8)
	SymbolLine(0 20 10 10 8)
)
Symbol('2' 12)
(
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 20 10 8)
	SymbolLine(20 10 25 15 8)
	SymbolLine(25 15 25 25 8)
	SymbolLine(0 50 25 25 8)
	SymbolLine(0 50 25 50 8)
)
Symbol('3' 12)
(
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 15 10 8)
	SymbolLine(15 10 20 15 8)
	SymbolLine(20 15 20 45 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 30 20 30 8)
)
Symbol('4' 12)
(
	SymbolLine(0 30 20 10 8)
	SymbolLine(0 30 25 30 8)
	SymbolLine(20 10 20 50 8)
)
Symbol('5' 12)
(
	SymbolLine(0 10 20 10 8)
	SymbolLine(0 10 0 30 8)
	SymbolLine(0 30 5 25 8)
	SymbolLine(5 25 15 25 8)
	SymbolLine(15 25 20 30 8)
	SymbolLine(20 30 20 45 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(0 45 5 50 8)
)
Symbol('6' 12)
(
	SymbolLine(15 10 20 15 8)
	SymbolLine(5 10 15 10 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(0 15 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(0 30 15 30 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(20 35 20 45 8)
)
Symbol('7' 12)
(
	SymbolLine(0 50 25 25 8)
	SymbolLine(25 10 25 25 8)
	SymbolLine(0 10 25 10 8)
)
Symbol('8' 12)
(
	SymbolLine(0 45 5 50 8)
	SymbolLine(0 35 0 45 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(20 35 20 45 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(0 25 5 30 8)
	SymbolLine(0 15 0 25 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 15 10 8)
	SymbolLine(15 10 20 15 8)
	SymbolLine(20 15 20 25 8)
	SymbolLine(15 30 20 25 8)
)
Symbol('9' 12)
(
	SymbolLine(0 50 20 30 8)
	SymbolLine(20 15 20 30 8)
	SymbolLine(15 10 20 15 8)
	SymbolLine(5 10 15 10 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(0 15 0 25 8)
	SymbolLine(0 25 5 30 8)
	SymbolLine(5 30 20 30 8)
)
Symbol(':' 12)
(
	SymbolLine(0 25 5 25 8)
	SymbolLine(0 35 5 35 8)
)
Symbol(';' 12)
(
	SymbolLine(0 50 10 40 8)
	SymbolLine(10 25 10 30 8)
)
Symbol('<' 12)
(
	SymbolLine(0 30 10 20 8)
	SymbolLine(0 30 10 40 8)
)
Symbol('=' 12)
(
	SymbolLine(0 25 20 25 8)
	SymbolLine(0 35 20 35 8)
)
Symbol('>' 12)
(
	SymbolLine(0 20 10 30 8)
	SymbolLine(0 40 10 30 8)
)
Symbol('?' 12)
(
	SymbolLine(10 30 10 35 8)
	SymbolLine(10 45 10 50 8)
	SymbolLine(0 15 0 20 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 15 10 8)
	SymbolLine(15 10 20 15 8)
	SymbolLine(20 15 20 20 8)
	SymbolLine(10 30 20 20 8)
)
Symbol('@' 12)
(
	SymbolLine(0 10 0 40 8)
	SymbolLine(0 40 10 50 8)
	SymbolLine(10 50 40 50 8)
	SymbolLine(50 35 50 10 8)
	SymbolLine(50 10 40 0 8)
	SymbolLine(40 0 10 0 8)
	SymbolLine(10 0 0 10 8)
	SymbolLine(15 20 15 30 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(20 35 30 35 8)
	SymbolLine(30 35 35 30 8)
	SymbolLine(35 30 40 35 8)
	SymbolLine(35 30 35 15 8)
	SymbolLine(35 20 30 15 8)
	SymbolLine(20 15 30 15 8)
	SymbolLine(20 15 15 20 8)
	SymbolLine(40 35 50 35 8)
)
Symbol('A' 12)
(
	SymbolLine(0 15 0 50 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 20 10 8)
	SymbolLine(20 10 25 15 8)
	SymbolLine(25 15 25 50 8)
	SymbolLine(0 30 25 30 8)
)
Symbol('B' 12)
(
	SymbolLine(0 50 20 50 8)
	SymbolLine(20 50 25 45 8)
	SymbolLine(25 35 25 45 8)
	SymbolLine(20 30 25 35 8)
	SymbolLine(5 30 20 30 8)
	SymbolLine(5 10 5 50 8)
	SymbolLine(0 10 20 10 8)
	SymbolLine(20 10 25 15 8)
	SymbolLine(25 15 25 25 8)
	SymbolLine(20 30 25 25 8)
)
Symbol('C' 12)
(
	SymbolLine(5 50 20 50 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(0 15 0 45 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 20 10 8)
)
Symbol('D' 12)
(
	SymbolLine(5 10 5 50 8)
	SymbolLine(20 10 25 15 8)
	SymbolLine(25 15 25 45 8)
	SymbolLine(20 50 25 45 8)
	SymbolLine(0 50 20 50 8)
	SymbolLine(0 10 20 10 8)
)
Symbol('E' 12)
(
	SymbolLine(0 30 15 30 8)
	SymbolLine(0 50 20 50 8)
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 10 20 10 8)
)
Symbol('F' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 10 20 10 8)
	SymbolLine(0 30 15 30 8)
)
Symbol('G' 12)
(
	SymbolLine(20 10 25 15 8)
	SymbolLine(5 10 20 10 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(0 15 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 50 20 50 8)
	SymbolLine(20 50 25 45 8)
	SymbolLine(25 35 25 45 8)
	SymbolLine(20 30 25 35 8)
	SymbolLine(10 30 20 30 8)
)
Symbol('H' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(25 10 25 50 8)
	SymbolLine(0 30 25 30 8)
)
Symbol('I' 12)
(
	SymbolLine(0 10 10 10 8)
	SymbolLine(5 10 5 50 8)
	SymbolLine(0 50 10 50 8)
)
Symbol('J' 12)
(
	SymbolLine(0 10 15 10 8)
	SymbolLine(15 10 15 45 8)
	SymbolLine(10 50 15 45 8)
	SymbolLine(5 50 10 50 8)
	SymbolLine(0 45 5 50 8)
)
Symbol('K' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 30 20 10 8)
	SymbolLine(0 30 20 50 8)
)
Symbol('L' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 50 20 50 8)
)
Symbol('M' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 10 15 25 8)
	SymbolLine(15 25 30 10 8)
	SymbolLine(30 10 30 50 8)
)
Symbol('N' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 10 0 15 8)
	SymbolLine(0 15 25 40 8)
	SymbolLine(25 10 25 50 8)
)
Symbol('O' 12)
(
	SymbolLine(0 15 0 45 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 15 10 8)
	SymbolLine(15 10 20 15 8)
	SymbolLine(20 15 20 45 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(0 45 5 50 8)
)
Symbol('P' 12)
(
	SymbolLine(5 10 5 50 8)
	SymbolLine(0 10 20 10 8)
	SymbolLine(20 10 25 15 8)
	SymbolLine(25 15 25 25 8)
	SymbolLine(20 30 25 25 8)
	SymbolLine(5 30 20 30 8)
)
Symbol('Q' 12)
(
	SymbolLine(0 15 0 45 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 15 10 8)
	SymbolLine(15 10 20 15 8)
	SymbolLine(20 15 20 45 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(10 40 20 50 8)
)
Symbol('R' 12)
(
	SymbolLine(0 10 20 10 8)
	SymbolLine(20 10 25 15 8)
	SymbolLine(25 15 25 25 8)
	SymbolLine(20 30 25 25 8)
	SymbolLine(5 30 20 30 8)
	SymbolLine(5 10 5 50 8)
	SymbolLine(5 30 25 50 8)
)
Symbol('S' 12)
(
	SymbolLine(20 10 25 15 8)
	SymbolLine(5 10 20 10 8)
	SymbolLine(0 15 5 10 8)
	SymbolLine(0 15 0 25 8)
	SymbolLine(0 25 5 30 8)
	SymbolLine(5 30 20 30 8)
	SymbolLine(20 30 25 35 8)
	SymbolLine(25 35 25 45 8)
	SymbolLine(20 50 25 45 8)
	SymbolLine(5 50 20 50 8)
	SymbolLine(0 45 5 50 8)
)
Symbol('T' 12)
(
	SymbolLine(0 10 20 10 8)
	SymbolLine(10 10 10 50 8)
)
Symbol('U' 12)
(
	SymbolLine(0 10 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(20 10 20 45 8)
)
Symbol('V' 12)
(
	SymbolLine(0 10 0 40 8)
	SymbolLine(0 40 10 50 8)
	SymbolLine(10 50 20 40 8)
	SymbolLine(20 10 20 40 8)
)
Symbol('W' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 50 15 35 8)
	SymbolLine(15 35 30 50 8)
	SymbolLine(30 10 30 50 8)
)
Symbol('X' 12)
(
	SymbolLine(0 10 0 15 8)
	SymbolLine(0 15 25 40 8)
	SymbolLine(25 40 25 50 8)
	SymbolLine(0 40 0 50 8)
	SymbolLine(0 40 25 15 8)
	SymbolLine(25 10 25 15 8)
)
Symbol('Y' 12)
(
	SymbolLine(0 10 0 15 8)
	SymbolLine(0 15 10 25 8)
	SymbolLine(10 25 20 15 8)
	SymbolLine(20 10 20 15 8)
	SymbolLine(10 25 10 50 8)
)
Symbol('Z' 12)
(
	SymbolLine(0 10 25 10 8)
	SymbolLine(25 10 25 15 8)
	SymbolLine(0 40 25 15 8)
	SymbolLine(0 40 0 50 8)
	SymbolLine(0 50 25 50 8)
)
Symbol('[' 12)
(
	SymbolLine(0 10 5 10 8)
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 50 5 50 8)
)
Symbol('\' 12)
(
	SymbolLine(0 15 30 45 8)
)
Symbol(']' 12)
(
	SymbolLine(0 10 5 10 8)
	SymbolLine(5 10 5 50 8)
	SymbolLine(0 50 5 50 8)
)
Symbol('^' 12)
(
	SymbolLine(0 15 5 10 8)
	SymbolLine(5 10 10 15 8)
)
Symbol('_' 12)
(
	SymbolLine(0 50 20 50 8)
)
Symbol('a' 12)
(
	SymbolLine(15 30 20 35 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(0 35 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(20 30 20 45 8)
	SymbolLine(20 45 25 50 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(15 50 20 45 8)
)
Symbol('b' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(20 35 20 45 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(0 35 5 30 8)
)
Symbol('c' 12)
(
	SymbolLine(5 30 20 30 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(0 35 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 50 20 50 8)
)
Symbol('d' 12)
(
	SymbolLine(20 10 20 50 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(0 35 0 45 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(15 30 20 35 8)
)
Symbol('e' 12)
(
	SymbolLine(5 50 20 50 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(0 35 0 45 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(0 40 20 40 8)
	SymbolLine(20 40 20 35 8)
)
Symbol('f' 10)
(
	SymbolLine(5 15 5 50 8)
	SymbolLine(5 15 10 10 8)
	SymbolLine(10 10 15 10 8)
	SymbolLine(0 30 10 30 8)
)
Symbol('g' 12)
(
	SymbolLine(15 30 20 35 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(0 35 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(0 60 5 65 8)
	SymbolLine(5 65 15 65 8)
	SymbolLine(15 65 20 60 8)
	SymbolLine(20 30 20 60 8)
)
Symbol('h' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(20 35 20 50 8)
)
Symbol('i' 10)
(
	SymbolLine(0 20 0 25 8)
	SymbolLine(0 35 0 50 8)
)
Symbol('j' 10)
(
	SymbolLine(5 20 5 25 8)
	SymbolLine(5 35 5 60 8)
	SymbolLine(0 65 5 60 8)
)
Symbol('k' 12)
(
	SymbolLine(0 10 0 50 8)
	SymbolLine(0 35 15 50 8)
	SymbolLine(0 35 10 25 8)
)
Symbol('l' 10)
(
	SymbolLine(0 10 0 45 8)
	SymbolLine(0 45 5 50 8)
)
Symbol('m' 12)
(
	SymbolLine(5 35 5 50 8)
	SymbolLine(5 35 10 30 8)
	SymbolLine(10 30 15 30 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(20 35 20 50 8)
	SymbolLine(20 35 25 30 8)
	SymbolLine(25 30 30 30 8)
	SymbolLine(30 30 35 35 8)
	SymbolLine(35 35 35 50 8)
	SymbolLine(0 30 5 35 8)
)
Symbol('n' 12)
(
	SymbolLine(5 35 5 50 8)
	SymbolLine(5 35 10 30 8)
	SymbolLine(10 30 15 30 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(20 35 20 50 8)
	SymbolLine(0 30 5 35 8)
)
Symbol('o' 12)
(
	SymbolLine(0 35 0 45 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(20 35 20 45 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(0 45 5 50 8)
)
Symbol('p' 12)
(
	SymbolLine(5 35 5 65 8)
	SymbolLine(0 30 5 35 8)
	SymbolLine(5 35 10 30 8)
	SymbolLine(10 30 20 30 8)
	SymbolLine(20 30 25 35 8)
	SymbolLine(25 35 25 45 8)
	SymbolLine(20 50 25 45 8)
	SymbolLine(10 50 20 50 8)
	SymbolLine(5 45 10 50 8)
)
Symbol('q' 12)
(
	SymbolLine(20 35 20 65 8)
	SymbolLine(15 30 20 35 8)
	SymbolLine(5 30 15 30 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(0 35 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(15 50 20 45 8)
)
Symbol('r' 12)
(
	SymbolLine(5 35 5 50 8)
	SymbolLine(5 35 10 30 8)
	SymbolLine(10 30 20 30 8)
	SymbolLine(0 30 5 35 8)
)
Symbol('s' 12)
(
	SymbolLine(5 50 20 50 8)
	SymbolLine(20 50 25 45 8)
	SymbolLine(20 40 25 45 8)
	SymbolLine(5 40 20 40 8)
	SymbolLine(0 35 5 40 8)
	SymbolLine(0 35 5 30 8)
	SymbolLine(5 30 20 30 8)
	SymbolLine(20 30 25 35 8)
	SymbolLine(0 45 5 50 8)
)
Symbol('t' 10)
(
	SymbolLine(5 10 5 45 8)
	SymbolLine(5 45 10 50 8)
	SymbolLine(0 25 10 25 8)
)
Symbol('u' 12)
(
	SymbolLine(0 30 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(15 50 20 45 8)
	SymbolLine(20 30 20 45 8)
)
Symbol('v' 12)
(
	SymbolLine(0 30 0 40 8)
	SymbolLine(0 40 10 50 8)
	SymbolLine(10 50 20 40 8)
	SymbolLine(20 30 20 40 8)
)
Symbol('w' 12)
(
	SymbolLine(0 30 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(5 50 10 50 8)
	SymbolLine(10 50 15 45 8)
	SymbolLine(15 30 15 45 8)
	SymbolLine(15 45 20 50 8)
	SymbolLine(20 50 25 50 8)
	SymbolLine(25 50 30 45 8)
	SymbolLine(30 30 30 45 8)
)
Symbol('x' 12)
(
	SymbolLine(0 30 20 50 8)
	SymbolLine(0 50 20 30 8)
)
Symbol('y' 12)
(
	SymbolLine(0 30 0 45 8)
	SymbolLine(0 45 5 50 8)
	SymbolLine(20 30 20 60 8)
	SymbolLine(15 65 20 60 8)
	SymbolLine(5 65 15 65 8)
	SymbolLine(0 60 5 65 8)
	SymbolLine(5 50 15 50 8)
	SymbolLine(15 50 20 45 8)
)
Symbol('z' 12)
(
	SymbolLine(0 30 20 30 8)
	SymbolLine(0 50 20 30 8)
	SymbolLine(0 50 20 50 8)
)
Symbol('{' 12)
(
	SymbolLine(5 15 10 10 8)
	SymbolLine(5 15 5 25 8)
	SymbolLine(0 30 5 25 8)
	SymbolLine(0 30 5 35 8)
	SymbolLine(5 35 5 45 8)
	SymbolLine(5 45 10 50 8)
)
Symbol('|' 12)
(
	SymbolLine(0 10 0 50 8)
)
Symbol('}' 12)
(
	SymbolLine(0 10 5 15 8)
	SymbolLine(5 15 5 25 8)
	SymbolLine(5 25 10 30 8)
	SymbolLine(5 35 10 30 8)
	SymbolLine(5 35 5 45 8)
	SymbolLine(0 50 5 45 8)
)
Symbol('~' 12)
(
	SymbolLine(0 35 5 30 8)
	SymbolLine(5 30 10 30 8)
	SymbolLine(10 30 15 35 8)
	SymbolLine(15 35 20 35 8)
	SymbolLine(20 35 25 30 8)
)
Via[132500 10000 3000 0 0 2000 "" "thermal(1X)"]
Via[39000 50000 2402 0 0 1181 "" "thermal(1X)"]
Via[43000 4000 3500 0 0 2000 "" "thermal(1X)"]
Via[5000 9500 3500 0 0 2000 "" "thermal(1X)"]
Via[73000 21500 2402 1200 0 1181 "" ""]
Via[116500 87500 2500 0 0 1500 "" "thermal(1X)"]
Via[88500 4500 2402 0 0 1181 "" "thermal(1X)"]
Via[50000 90000 3000 0 0 2000 "" ""]
Via[52000 43500 2402 1200 0 1181 "" ""]
Via[52000 47000 2402 1200 0 1181 "" ""]
Via[62500 74500 2402 2002 0 1181 "" "thermal(1X)"]
Via[93500 82000 2402 2002 0 1181 "" "thermal(1X)"]
Via[101500 56500 2402 2002 0 1181 "" "thermal(1X)"]
Via[95500 43000 2402 2002 0 1181 "" "thermal(1X)"]
Via[70000 43000 2402 2002 0 1181 "" "thermal(1X,4X)"]
Via[52000 67500 2402 1200 0 1181 "" ""]
Via[39000 43500 2402 1200 0 1181 "" ""]
Via[88500 16500 2402 0 0 1181 "" "thermal(1X)"]
Via[52000 73500 2402 1200 0 1181 "" ""]
Via[63500 29000 2402 1200 0 1181 "" ""]
Via[131000 36000 2500 0 0 1500 "" "thermal(1X)"]
Via[58000 80500 2402 1200 0 1181 "" ""]
Via[84000 94500 2402 0 0 1181 "" ""]
Via[101000 29500 2402 1200 0 1181 "" "thermal(1X)"]
Via[106500 29500 2402 1200 0 1181 "" ""]
Via[112000 58500 2402 1200 0 1181 "" ""]
Via[54500 35500 2402 1200 0 1181 "" ""]
Via[58500 43500 2402 1200 0 1181 "" ""]
Via[104500 80000 2402 1200 0 1181 "" "thermal(1X)"]
Via[79500 68000 2402 1200 0 1181 "" ""]
Via[82000 65500 2402 1200 0 1181 "" ""]
Via[140000 92000 2402 1200 0 1181 "" ""]
Via[140000 88000 2402 1200 0 1181 "" ""]
Via[110500 94500 2402 1200 0 1181 "" ""]

Element["" "" "J2" "" 35000 50000 -20500 -3000 0 100 ""]
(
	Pin[-6693 -14173 9449 2002 10049 5980 "" "9" "thermal(1X)"]
	Pin[-25591 14173 9449 2002 10049 5980 "" "7" "thermal(1X)"]
	Pin[-6693 14173 9449 2002 10049 5980 "" "6" "thermal(1X)"]
	Pin[-25591 -14173 9449 2002 10049 5980 "" "8" "thermal(1X)"]
	Pad[-11417 -6299 0 -6299 1969 2000 2369 "" "1" "square,edge2"]
	Pad[-11417 -3149 0 -3149 1969 2000 2369 "" "2" "square,edge2"]
	Pad[-11417 0 0 0 1969 2000 2369 "" "3" "square,edge2"]
	Pad[-11417 3150 0 3150 1969 2000 2369 "" "4" "square,edge2"]
	Pad[-11417 6299 0 6299 1969 2000 2369 "" "5" "square,edge2"]
	ElementLine [-1575 15355 394 15355 1000]
	ElementLine [-20473 15355 -11811 15355 1000]
	ElementLine [-35039 15355 -30709 15355 1000]
	ElementLine [-1575 -15354 394 -15354 1000]
	ElementLine [-20473 -15354 -11811 -15354 1000]
	ElementLine [394 7874 394 15355 1000]
	ElementLine [394 -15354 394 -7874 1000]
	ElementLine [-35039 -15354 -31102 -15354 1000]
	ElementLine [-35039 -15354 -35039 15355 1000]

	)

Element["hidename" "" "TP5" "" 80500 94500 7500 0 0 100 ""]
(
	Pad[0 0 0 2500 2500 2000 3100 "" "1" "square"]

	)

Element["" "Tantalum SMT capacitor (pin 1 is +)" "C6" "EIA3216" 50000 90000 -3000 -2500 0 100 ""]
(
	Pad[-1800 -5000 1800 -5000 4900 2000 5500 "1" "1" "square"]
	Pad[-1800 5000 1800 5000 4900 2000 5500 "2" "2" "square"]
	ElementLine [5500 -7200 4300 -9600 1000]
	ElementLine [5500 -7200 5500 8600 1000]
	ElementLine [-5500 8600 5500 8600 1000]
	ElementLine [-5500 -7200 -5500 8600 1000]
	ElementLine [-4300 -9600 -5500 -7200 1000]
	ElementLine [-4300 -9600 4300 -9600 2000]

	)

Element["" "Tantalum SMT capacitor (pin 1 is +)" "C1" "EIA3216" 132500 10000 -2500 -3000 0 100 ""]
(
	Pad[-1800 -5000 1800 -5000 4900 2000 5500 "1" "1" "square"]
	Pad[-1800 5000 1800 5000 4900 2000 5500 "2" "2" "square"]
	ElementLine [5500 -7200 4300 -9600 1000]
	ElementLine [5500 -7200 5500 8600 1000]
	ElementLine [-5500 8600 5500 8600 1000]
	ElementLine [-5500 -7200 -5500 8600 1000]
	ElementLine [-4300 -9600 -5500 -7200 1000]
	ElementLine [-4300 -9600 4300 -9600 2000]

	)

Element["" "SMT transistor, 4 pins" "U3" "SOT223" 10000 75000 9000 6500 0 100 ""]
(
	Pad[-3300 0 3300 0 5600 3000 6200 "1" "1" "square"]
	Pad[-3300 9000 3300 9000 5600 3000 6200 "2" "2" "square"]
	Pad[-3300 18100 3300 18100 5600 3000 6200 "3" "3" "square"]
	Pad[24400 4500 24400 13500 12200 3000 12800 "4" "4" "square"]
	ElementLine [32900 -5200 32900 23300 1000]
	ElementLine [-8500 23300 32900 23300 1000]
	ElementLine [-8500 -5200 -8500 23300 1000]
	ElementLine [-8500 -5200 32900 -5200 1000]

	)

Element["" "Standard SMT resistor, capacitor etc" "R11" "0603" 37500 19000 -2000 3000 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R1" "0603" 125000 7500 -2500 1500 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "connector 2x1 pins" "J3" "2" 64500 16000 6500 -14000 0 100 ""]
(
	Pin[0 0 6000 2002 6600 3800 "1" "1" "square"]
	Pin[0 -10000 6000 2002 6600 3800 "2" "2" ""]
	ElementLine [-5000 -5000 5000 -5000 1000]
	ElementLine [5000 -5000 5000 5000 1000]
	ElementLine [-5000 -15000 -5000 5000 1000]
	ElementLine [-5000 -15000 5000 -15000 1000]
	ElementLine [5000 -15000 5000 5000 1000]
	ElementLine [-5000 5000 5000 5000 1000]

	)

Element["" "Standard SMT resistor, capacitor etc" "R7" "0603" 116508 60941 -2008 2059 1 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Header connector, ribbon cable numbering" "J1" "HEADER20_2" 145000 5000 -11500 28000 1 100 ""]
(
	Pin[0 0 6000 2002 6600 3800 "1" "1" "square"]
	Pin[10000 0 6000 2002 6600 3800 "2" "2" ""]
	Pin[0 10000 6000 2002 6600 3800 "3" "3" ""]
	Pin[10000 10000 6000 2002 6600 3800 "4" "4" ""]
	Pin[0 20000 6000 2002 6600 3800 "5" "5" ""]
	Pin[10000 20000 6000 2002 6600 3800 "6" "6" ""]
	Pin[0 30000 6000 2002 6600 3800 "7" "7" ""]
	Pin[10000 30000 6000 2002 6600 3800 "8" "8" ""]
	Pin[0 40000 6000 2002 6600 3800 "9" "9" ""]
	Pin[10000 40000 6000 2002 6600 3800 "10" "10" "thermal(1X)"]
	Pin[0 50000 6000 2002 6600 3800 "11" "11" ""]
	Pin[10000 50000 6000 2002 6600 3800 "12" "12" "thermal(1X)"]
	Pin[0 60000 6000 2002 6600 3800 "13" "13" ""]
	Pin[10000 60000 6000 2002 6600 3800 "14" "14" "thermal(1X)"]
	Pin[0 70000 6000 2002 6600 3800 "15" "15" ""]
	Pin[10000 70000 6000 2002 6600 3800 "16" "16" "thermal(1X)"]
	Pin[0 80000 6000 2002 6600 3800 "17" "17" ""]
	Pin[10000 80000 6000 2002 6600 3800 "18" "18" "thermal(1X)"]
	Pin[0 90000 6000 2002 6600 3800 "19" "19" ""]
	Pin[10000 90000 6000 2002 6600 3800 "20" "20" "thermal(1X)"]
	ElementLine [5000 5000 5000 -5000 1000]
	ElementLine [-5000 5000 5000 5000 1000]
	ElementLine [15000 -5000 -5000 -5000 1000]
	ElementLine [15000 95000 15000 -5000 1000]
	ElementLine [-5000 95000 15000 95000 1000]
	ElementLine [-5000 -5000 -5000 95000 1000]

	)

Element["" "Standard SMT resistor, capacitor etc" "R12" "0603" 110500 86000 -2000 3000 1 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "C2" "0603" 120500 7500 -2000 1500 1 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R8" "0603" 15000 19000 -2000 2000 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "D1" "0805" 15000 7500 -3150 3150 1 100 ""]
(
	Pad[-393 3543 393 3543 5118 2000 5718 "1" "1" "square"]
	Pad[-393 -3543 393 -3543 5118 2000 5718 "2" "2" "square"]
	ElementLine [2755 -393 2755 393 800]
	ElementLine [-2755 -393 -2755 393 800]

	)

Element["" "Standard SMT resistor, capacitor etc" "C4" "0603" 116508 80941 -2008 2059 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R9" "0603" 22500 19000 -2000 2000 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "" "U2" "" 41885 50040 2615 3960 1 67 ""]
(
	Pad[0 3937 2756 3937 1181 2000 1581 "" "3" "square"]
	Pad[0 1968 2756 1968 1181 2000 1581 "" "2" "square"]
	Pad[0 0 2756 0 1181 2000 1581 "" "1" ""]
	Pad[6300 3937 9056 3937 1181 2000 1581 "" "4" "square,edge2"]
	Pad[6300 1968 9056 1968 1181 2000 1581 "" "5" "square,edge2"]
	Pad[6300 0 9056 0 1181 2000 1581 "" "6" "square,edge2"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R10" "0603" 30000 19000 -2000 3000 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Thin shrink small outline package, standard (4.4mm)" "U1" "TSSOP20" 95000 15000 -3000 -4000 0 100 ""]
(
	Pad[9311 11515 13917 11515 1299 1000 1899 "1" "1" "square,edge2"]
	Pad[9311 8956 13917 8956 1299 1000 1899 "2" "2" "square,edge2"]
	Pad[9311 6397 13917 6397 1299 1000 1899 "3" "3" "square,edge2"]
	Pad[9311 3838 13917 3838 1299 1000 1899 "4" "4" "square,edge2"]
	Pad[9311 1279 13917 1279 1299 1000 1899 "5" "5" "square,edge2"]
	Pad[9311 -1279 13917 -1279 1299 1000 1899 "6" "6" "square,edge2"]
	Pad[9311 -3838 13917 -3838 1299 1000 1899 "7" "7" "square,edge2"]
	Pad[9311 -6397 13917 -6397 1299 1000 1899 "8" "8" "square,edge2"]
	Pad[9311 -8956 13917 -8956 1299 1000 1899 "9" "9" "square,edge2"]
	Pad[9311 -11515 13917 -11515 1299 1000 1899 "10" "10" "square,edge2"]
	Pad[-13917 -11515 -9311 -11515 1299 1000 1899 "11" "11" "square"]
	Pad[-13917 -8956 -9311 -8956 1299 1000 1899 "12" "12" "square"]
	Pad[-13917 -6397 -9311 -6397 1299 1000 1899 "13" "13" "square"]
	Pad[-13917 -3838 -9311 -3838 1299 1000 1899 "14" "14" "square"]
	Pad[-13917 -1279 -9311 -1279 1299 1000 1899 "15" "15" "square"]
	Pad[-13917 1279 -9311 1279 1299 1000 1899 "16" "16" "square"]
	Pad[-13917 3838 -9311 3838 1299 1000 1899 "17" "17" "square"]
	Pad[-13917 6397 -9311 6397 1299 1000 1899 "18" "18" "square"]
	Pad[-13917 8956 -9311 8956 1299 1000 1899 "19" "19" "square"]
	Pad[-13917 11515 -9311 11515 1299 1000 1899 "20" "20" "square"]
	ElementLine [-15566 13165 -2500 13165 1000]
	ElementLine [2500 13165 15566 13165 1000]
	ElementLine [-15566 -13165 -15566 13165 1000]
	ElementLine [-15566 -13165 15566 -13165 1000]
	ElementLine [15566 -13165 15566 13165 1000]
	ElementArc [0 13165 2500 2500 180 180 1000]

	)

Element["" "Tantalum SMT capacitor (pin 1 is +)" "C5" "EIA3216" 5000 10000 -3000 -2500 0 100 ""]
(
	Pad[-1800 5000 1800 5000 4900 2000 5500 "1" "1" "square"]
	Pad[-1800 -5000 1800 -5000 4900 2000 5500 "2" "2" "square"]
	ElementLine [-5500 7200 -4300 9600 1000]
	ElementLine [-5500 -8600 -5500 7200 1000]
	ElementLine [-5500 -8600 5500 -8600 1000]
	ElementLine [5500 -8600 5500 7200 1000]
	ElementLine [4300 9600 5500 7200 1000]
	ElementLine [-4300 9600 4300 9600 2000]

	)

Element["" "Standard SMT resistor, capacitor etc" "D4" "0805" 37500 7500 -3150 3150 1 100 ""]
(
	Pad[-393 3543 393 3543 5118 2000 5718 "1" "1" "square"]
	Pad[-393 -3543 393 -3543 5118 2000 5718 "2" "2" "square"]
	ElementLine [2755 -393 2755 393 800]
	ElementLine [-2755 -393 -2755 393 800]

	)

Element["" "Standard SMT resistor, capacitor etc" "D2" "0805" 22500 7500 -3150 3150 1 100 ""]
(
	Pad[-393 3543 393 3543 5118 2000 5718 "1" "1" "square"]
	Pad[-393 -3543 393 -3543 5118 2000 5718 "2" "2" "square"]
	ElementLine [2755 -393 2755 393 800]
	ElementLine [-2755 -393 -2755 393 800]

	)

Element["" "Standard SMT resistor, capacitor etc" "D3" "0805" 30000 7500 -3150 3150 1 100 ""]
(
	Pad[-393 3543 393 3543 5118 2000 5718 "1" "1" "square"]
	Pad[-393 -3543 393 -3543 5118 2000 5718 "2" "2" "square"]
	ElementLine [2755 -393 2755 393 800]
	ElementLine [-2755 -393 -2755 393 800]

	)

Element["" "Standard SMT resistor, capacitor etc" "R6" "0603" 116500 71000 -2000 2000 1 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R3" "0603" 46000 59000 -2500 -2000 0 67 ""]
(
	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R4" "0603" 46000 66000 -2500 -2000 0 67 ""]
(
	Pad[-2559 -492 -2559 492 2952 2000 3552 "R4" "1" "square"]
	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R2" "0603" 46000 45000 -2500 -2000 0 67 ""]
(
	Pad[-2559 -492 -2559 492 2952 2000 3552 "1" "1" "square"]
	Pad[2559 -492 2559 492 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Square Quad-side flat pack" "U4" "TQFP64_10" 82000 62500 -2000 0 0 100 ""]
(
	Pad[22236 14763 27134 14763 1102 3000 1402 "1" "1" "square,edge2"]
	Pad[22236 12795 27134 12795 1102 3000 1402 "2" "2" "square,edge2"]
	Pad[22236 10826 27134 10826 1102 3000 1402 "3" "3" "square,edge2"]
	Pad[22236 8858 27134 8858 1102 3000 1402 "4" "4" "square,edge2"]
	Pad[22236 6889 27134 6889 1102 3000 1402 "5" "5" "square,edge2"]
	Pad[22236 4921 27134 4921 1102 3000 1402 "6" "6" "square,edge2"]
	Pad[22236 2952 27134 2952 1102 3000 1402 "7" "7" "square,edge2"]
	Pad[22236 984 27134 984 1102 3000 1402 "8" "8" "square,edge2"]
	Pad[22236 -985 27134 -985 1102 3000 1402 "9" "9" "square,edge2"]
	Pad[22236 -2953 27134 -2953 1102 3000 1402 "10" "10" "square,edge2"]
	Pad[22236 -4922 27134 -4922 1102 3000 1402 "11" "11" "square,edge2"]
	Pad[22236 -6890 27134 -6890 1102 3000 1402 "12" "12" "square,edge2"]
	Pad[22236 -8859 27134 -8859 1102 3000 1402 "13" "13" "square,edge2"]
	Pad[22236 -10827 27134 -10827 1102 3000 1402 "14" "14" "square,edge2"]
	Pad[22236 -12796 27134 -12796 1102 3000 1402 "15" "15" "square,edge2"]
	Pad[22236 -14764 27134 -14764 1102 3000 1402 "16" "16" "square,edge2"]
	Pad[14763 -27134 14763 -22236 1102 3000 1402 "17" "17" "square,octagon"]
	Pad[12795 -27134 12795 -22236 1102 3000 1402 "18" "18" "square,octagon"]
	Pad[10826 -27134 10826 -22236 1102 3000 1402 "19" "19" "square,octagon"]
	Pad[8858 -27134 8858 -22236 1102 3000 1402 "20" "20" "square,octagon"]
	Pad[6889 -27134 6889 -22236 1102 3000 1402 "21" "21" "square,octagon"]
	Pad[4921 -27134 4921 -22236 1102 3000 1402 "22" "22" "square,octagon"]
	Pad[2952 -27134 2952 -22236 1102 3000 1402 "23" "23" "square,octagon"]
	Pad[984 -27134 984 -22236 1102 3000 1402 "24" "24" "square,octagon"]
	Pad[-985 -27134 -985 -22236 1102 3000 1402 "25" "25" "square,octagon"]
	Pad[-2953 -27134 -2953 -22236 1102 3000 1402 "26" "26" "square,octagon"]
	Pad[-4922 -27134 -4922 -22236 1102 3000 1402 "27" "27" "square,octagon"]
	Pad[-6890 -27134 -6890 -22236 1102 3000 1402 "28" "28" "square,octagon"]
	Pad[-8859 -27134 -8859 -22236 1102 3000 1402 "29" "29" "square,octagon"]
	Pad[-10827 -27134 -10827 -22236 1102 3000 1402 "30" "30" "square,octagon"]
	Pad[-12796 -27134 -12796 -22236 1102 3000 1402 "31" "31" "square,octagon"]
	Pad[-14764 -27134 -14764 -22236 1102 3000 1402 "32" "32" "square,octagon"]
	Pad[-27134 -14763 -22236 -14763 1102 3000 1402 "33" "33" "square"]
	Pad[-27134 -12795 -22236 -12795 1102 3000 1402 "34" "34" "square"]
	Pad[-27134 -10826 -22236 -10826 1102 3000 1402 "35" "35" "square"]
	Pad[-27134 -8858 -22236 -8858 1102 3000 1402 "36" "36" "square"]
	Pad[-27134 -6889 -22236 -6889 1102 3000 1402 "37" "37" "square"]
	Pad[-27134 -4921 -22236 -4921 1102 3000 1402 "38" "38" "square"]
	Pad[-27134 -2952 -22236 -2952 1102 3000 1402 "39" "39" "square"]
	Pad[-27134 -984 -22236 -984 1102 3000 1402 "40" "40" "square"]
	Pad[-27134 985 -22236 985 1102 3000 1402 "41" "41" "square"]
	Pad[-27134 2953 -22236 2953 1102 3000 1402 "42" "42" "square"]
	Pad[-27134 4922 -22236 4922 1102 3000 1402 "43" "43" "square"]
	Pad[-27134 6890 -22236 6890 1102 3000 1402 "44" "44" "square"]
	Pad[-27134 8859 -22236 8859 1102 3000 1402 "45" "45" "square"]
	Pad[-27134 10827 -22236 10827 1102 3000 1402 "46" "46" "square"]
	Pad[-27134 12796 -22236 12796 1102 3000 1402 "47" "47" "square"]
	Pad[-27134 14764 -22236 14764 1102 3000 1402 "48" "48" "square"]
	Pad[-14763 22236 -14763 27134 1102 3000 1402 "49" "49" "square,octagon,edge2"]
	Pad[-12795 22236 -12795 27134 1102 3000 1402 "50" "50" "square,octagon,edge2"]
	Pad[-10826 22236 -10826 27134 1102 3000 1402 "51" "51" "square,octagon,edge2"]
	Pad[-8858 22236 -8858 27134 1102 3000 1402 "52" "52" "square,octagon,edge2"]
	Pad[-6889 22236 -6889 27134 1102 3000 1402 "53" "53" "square,octagon,edge2"]
	Pad[-4921 22236 -4921 27134 1102 3000 1402 "54" "54" "square,octagon,edge2"]
	Pad[-2952 22236 -2952 27134 1102 3000 1402 "55" "55" "square,octagon,edge2"]
	Pad[-984 22236 -984 27134 1102 3000 1402 "56" "56" "square,octagon,edge2"]
	Pad[985 22236 985 27134 1102 3000 1402 "57" "57" "square,octagon,edge2"]
	Pad[2953 22236 2953 27134 1102 3000 1402 "58" "58" "square,octagon,edge2"]
	Pad[4922 22236 4922 27134 1102 3000 1402 "59" "59" "square,octagon,edge2"]
	Pad[6890 22236 6890 27134 1102 3000 1402 "60" "60" "square,octagon,edge2"]
	Pad[8859 22236 8859 27134 1102 3000 1402 "61" "61" "square,octagon,edge2"]
	Pad[10827 22236 10827 27134 1102 3000 1402 "62" "62" "square,octagon,edge2"]
	Pad[12796 22236 12796 27134 1102 3000 1402 "63" "63" "square,octagon,edge2"]
	Pad[14764 22236 14764 27134 1102 3000 1402 "64" "64" "square,octagon,edge2"]
	ElementLine [19285 16385 16385 19285 800]
	ElementLine [19285 -19285 19285 16385 800]
	ElementLine [-19285 -19285 19285 -19285 800]
	ElementLine [-19285 -19285 -19285 19285 800]
	ElementLine [-19285 19285 16385 19285 800]
	ElementArc [16385 16385 1000 1000 180 360 800]

	)

Element["" "Standard SMT resistor, capacitor etc" "C7" "0603" 38500 62500 -2000 2000 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "" "S1" "" 49000 35500 -3000 -16000 1 100 ""]
(
	Pad[0 -30709 0 -30709 5906 2000 6706 "" "1" "square"]
	Pad[0 0 0 0 5906 2000 6706 "" "2" "square"]
	ElementLine [-7087 -3544 7087 -3544 1181]
	ElementLine [7087 -27166 7087 -3544 1181]
	ElementLine [-7087 -27166 7087 -27166 1181]
	ElementLine [-7087 -27166 -7087 -3544 1181]

	)

Element["" "Standard SMT resistor, capacitor etc" "C9" "0603" 96000 94000 -2000 -2000 0 67 ""]
(
	Pad[2559 -492 2559 492 2952 2000 3552 "1" "1" "square"]
	Pad[-2559 -492 -2559 492 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "C10" "0603" 116500 51500 -2000 2500 1 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "C11" "0603" 100992 35441 -1992 2559 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "C12" "0603" 48000 76500 -2000 2500 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "C13" "0603" 76500 20000 -2000 3000 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "C8" "0603" 63500 35000 -2000 1500 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "C3" "0603" 131008 42441 1992 -1941 3 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R15" "0603" 112000 35500 -2000 3000 1 67 ""]
(
	Pad[-492 2559 492 2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 -2559 492 -2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R13" "0603" 104500 86000 -2000 3000 1 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R14" "0603" 58500 35000 2000 -3000 3 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "Standard SMT resistor, capacitor etc" "R5" "0603" 106500 35500 2000 -2500 3 67 ""]
(
	Pad[-492 -2559 492 -2559 2952 2000 3552 "1" "1" "square"]
	Pad[-492 2559 492 2559 2952 2000 3552 "2" "2" "square"]

	)

Element["" "SMT transistor, 3 pins" "Q1" "SOT23" 118500 39500 1000 -6500 0 100 ""]
(
	Pad[0 -300 0 300 3400 3000 4000 "1" "1" "square,edge2"]
	Pad[7800 -300 7800 300 3400 3000 4000 "2" "2" "square,edge2"]
	Pad[3900 -8500 3900 -7900 3400 3000 4000 "3" "3" "square"]
	ElementLine [10300 -11000 -2500 -11000 1000]
	ElementLine [10300 2900 10300 -11000 1000]
	ElementLine [-2500 2900 10300 2900 1000]
	ElementLine [-2500 -11000 -2500 2900 1000]

	)

Element["hidename" "" "TP1" "" 60500 94500 2500 0 0 100 ""]
(
	Pad[0 0 0 2500 2500 2000 2900 "" "1" "square"]

	)

Element["hidename" "" "TP2" "" 65500 94500 7500 0 0 100 ""]
(
	Pad[0 0 0 2500 2500 2000 2950 "" "1" "square"]

	)

Element["hidename" "" "TP3" "" 70500 94500 17500 0 0 100 ""]
(
	Pad[0 0 0 2500 2500 2000 3000 "" "1" "square"]

	)

Element["hidename" "" "TP4" "" 75500 94500 10000 -2500 0 100 ""]
(
	Pad[0 0 0 2500 2500 2000 3050 "" "1" "square"]

	)

Element["" "" "X1" "" 129000 52501 -3000 18499 0 100 ""]
(
	Pad[0 -1 0 13778 8268 2000 9068 "" "1" "square"]
	Pad[0 28345 0 42124 8268 2000 9068 "" "2" "square,edge2"]
	ElementLine [-9448 43700 -4724 43700 1000]
	ElementLine [4725 -1575 9449 -1575 1000]
	ElementLine [4725 43699 9449 43700 1000]
	ElementLine [-9448 -1575 -9448 43700 1000]
	ElementLine [-9448 -1575 -4724 -1575 1000]
	ElementLine [9449 -1575 9449 43700 1000]

	)
Layer(1 "solder")
(
	Line[52000 43500 54500 46000 1000 1200 "clearline"]
	Line[54500 46000 54500 54500 1000 1200 "clearline"]
	Line[54500 54500 52000 57000 1000 1200 "clearline"]
	Line[52000 73500 58000 80500 1000 1200 "clearline"]
	Line[106500 29500 112000 35000 1000 1200 "clearline"]
	Line[112000 35000 112000 58500 1000 1200 "clearline"]
	Line[58500 43500 54500 39500 1000 1200 "clearline"]
	Line[54500 39500 54500 35500 1000 1200 "clearline"]
	Line[92500 99500 156500 99500 1000 1200 "clearline"]
	Line[159500 19500 159500 96500 1000 1200 "clearline"]
	Line[140000 96500 139000 97500 1000 1200 "clearline"]
	Line[156500 99500 159500 96500 1000 1200 "clearline"]
	Line[52000 57000 52000 67500 1000 1200 "clearline"]
	Line[80000 68000 80000 87000 1000 1200 "clearline"]
	Line[80000 87000 92500 99500 1000 1200 "clearline"]
	Line[82000 65500 82500 66000 1000 1200 "clearline"]
	Line[82000 65500 82000 86500 1000 1200 "clearline"]
	Line[82000 86500 93000 97500 1000 1200 "clearline"]
	Line[155000 15000 159500 19500 1000 1200 "clearline"]
	Line[140000 92000 140000 96500 1000 1200 "clearline"]
	Line[93000 97500 139000 97500 1000 1200 "clearline"]
	Line[140000 88000 137500 90500 1000 1200 "clearline"]
	Line[137500 90500 137500 95000 1000 1200 "clearline"]
	Line[137500 95000 137000 95500 1000 1200 "clearline"]
	Line[137000 95500 111500 95500 1000 1200 "clearline"]
	Line[111500 95500 110500 94500 1000 1200 "clearline"]
)
Layer(2 "sold-gnd")
(
	Polygon("clearpoly,lock")
	(
		[0 0] [160000 0] [160000 100000] [0 100000] 
	)
)
Layer(3 "sold-vcc")
(
	Line[39000 43500 48500 43500 1000 1200 "clearline"]
	Line[48500 43500 52000 47000 1000 1200 "clearline"]
	Line[73000 21500 71000 21500 1500 2000 "clearline"]
	Line[71000 21500 63500 29000 1500 2000 "clearline"]
	Line[64500 16000 65500 16000 1500 2000 "clearline"]
	Line[65500 16000 71000 21500 1500 2000 "clearline"]
)
Layer(4 "component")
(
	Line[145000 15000 142000 15000 1000 1200 "clearline"]
	Line[142000 15000 138000 19000 1000 1200 "clearline"]
	Line[111044 6044 124000 19000 1000 1200 "clearline"]
	Line[145000 25000 141000 21000 1000 1200 "clearline"]
	Line[115000 13000 123000 21000 1000 1200 "clearline"]
	Line[145000 35000 140500 30500 1000 1200 "clearline"]
	Line[140500 30500 140500 24500 1000 1200 "clearline"]
	Line[140500 24500 139000 23000 1000 1200 "clearline"]
	Line[110162 11162 122000 23000 1000 1200 "clearline"]
	Line[145000 45000 138500 38500 1000 1200 "clearline"]
	Line[138500 38500 138500 26000 1000 1200 "clearline"]
	Line[138500 26000 137500 25000 1000 1200 "clearline"]
	Line[139000 23000 122000 23000 1000 1200 "clearline"]
	Line[140000 47000 136500 43500 1000 1200 "clearline"]
	Line[136500 43500 136500 28000 1000 1200 "clearline"]
	Line[136500 28000 135500 27000 1000 1200 "clearline"]
	Line[110338 18838 118500 27000 1000 1200 "clearline"]
	Line[145000 75000 138000 68000 1000 1200 "clearline"]
	Line[134500 44500 134500 30000 1000 1200 "clearline"]
	Line[134500 30000 133500 29000 1000 1200 "clearline"]
	Line[133500 29000 126000 29000 1000 1200 "clearline"]
	Line[159500 88000 157500 90000 1000 1200 "clearline"]
	Line[140000 47000 140000 60000 1000 1200 "clearline"]
	Line[140000 60000 145000 65000 1000 1200 "clearline"]
	Line[155000 25000 159500 29500 1000 1200 "clearline"]
	Line[138000 68000 138000 48000 1000 1200 "clearline"]
	Line[138000 48000 134500 44500 1000 1200 "clearline"]
	Line[112000 63500 112000 58500 1000 1200 "clearline"]
	Line[116500 68500 129000 68500 1500 2000 "clearline"]
	Line[116500 73500 116500 78500 1500 2000 "clearline"]
	Line[116500 78500 129000 78500 1500 2000 "clearline"]
	Line[121000 25000 137500 25000 1000 1200 "clearline"]
	Line[35000 47000 40000 47000 1000 1200 "clearline"]
	Line[48185 50040 47989 50040 1000 1200 "clearline"]
	Line[47989 50040 43441 45492 1000 1200 "clearline"]
	Line[48185 53977 47972 53977 1000 1200 "clearline"]
	Line[47972 53977 43441 58508 1000 1200 "clearline"]
	Line[40000 47000 42000 49000 1000 1200 "clearline"]
	Line[42000 49000 42000 50000 1000 1200 "clearline"]
	Line[35500 50500 36000 50500 1000 1200 "clearline"]
	Line[36000 50500 39500 54000 1000 1200 "clearline"]
	Line[39500 54000 42000 54000 1000 1200 "clearline"]
	Line[52000 43500 48500 43500 1000 1200 "clearline"]
	Line[150000 40500 150000 77500 1000 1200 "clearline"]
	Line[15000 16500 15000 11000 2500 2000 "clearline"]
	Line[22500 16500 22500 11500 2500 2000 "clearline"]
	Line[30000 16500 30000 11500 2500 2000 "clearline"]
	Line[37500 16500 37500 11500 2500 2000 "clearline"]
	Line[25000 26500 65000 26500 1000 1200 "clearline"]
	Line[31000 24500 66000 24500 1000 1200 "clearline"]
	Line[71173 35366 71173 32673 1000 1200 "clearline"]
	Line[73141 35366 73141 31641 1000 1200 "clearline"]
	Line[22500 21500 22500 24000 1000 1200 "clearline"]
	Line[22500 24000 25000 26500 1000 1200 "clearline"]
	Line[71173 32673 65000 26500 1000 1200 "clearline"]
	Line[30000 22000 30000 23500 1000 1200 "clearline"]
	Line[30000 23500 31000 24500 1000 1200 "clearline"]
	Line[73141 31641 66000 24500 1000 1200 "clearline"]
	Line[38000 22500 67000 22500 1000 1200 "clearline"]
	Line[54866 69390 53890 69390 1000 1200 "clearline"]
	Line[53890 69390 52000 67500 1000 1200 "clearline"]
	Line[52000 67500 52000 67500 1000 1200 "clearline"]
	Line[65237 94237 65500 94500 1000 1200 "clearline"]
	Line[52173 73327 52000 73500 1000 1200 "clearline"]
	Line[150000 77500 147500 80000 1000 1200 "clearline"]
	Line[155000 35500 150000 40500 1000 1200 "clearline"]
	Line[75110 35366 75110 30610 1000 1200 "clearline"]
	Line[75110 30610 67000 22500 1000 1200 "clearline"]
	Line[77078 35366 77078 29578 1000 1200 "clearline"]
	Line[77078 29578 70500 23000 1000 1200 "clearline"]
	Line[79047 35366 79047 28551 1000 1200 "clearline"]
	Line[79047 28551 81083 26515 1000 1200 "clearline"]
	Line[81083 6044 79956 6044 1000 1200 "clearline"]
	Line[79956 6044 70500 15500 1000 1200 "clearline"]
	Line[70500 15500 70500 23000 1000 1200 "clearline"]
	Line[85689 21397 86897 21397 1000 1200 "clearline"]
	Line[86897 21397 88000 22500 1000 1200 "clearline"]
	Line[88000 22500 88000 28000 1000 1200 "clearline"]
	Line[90103 8603 96763 15263 1000 1200 "clearline"]
	Line[85689 18838 87838 18838 1000 1200 "clearline"]
	Line[87838 18838 90000 21000 1000 1200 "clearline"]
	Line[90000 21000 90000 29000 1000 1200 "clearline"]
	Line[85689 13721 89221 13721 1000 1200 "clearline"]
	Line[89221 13721 92000 16500 1000 1200 "clearline"]
	Line[88889 33111 92000 30000 1000 1200 "clearline"]
	Line[85689 11162 89662 11162 1000 1200 "clearline"]
	Line[89662 11162 94000 15500 1000 1200 "clearline"]
	Line[90858 34142 94000 31000 1000 1200 "clearline"]
	Line[85689 8603 90103 8603 1000 1200 "clearline"]
	Line[96763 35366 96763 15263 1000 1200 "clearline"]
	Line[84952 35366 84952 31048 1000 1200 "clearline"]
	Line[84952 31048 88000 28000 1000 1200 "clearline"]
	Line[86921 35366 86921 32079 1000 1200 "clearline"]
	Line[86921 32079 90000 29000 1000 1200 "clearline"]
	Line[88889 35366 88889 33111 1000 1200 "clearline"]
	Line[92000 16500 92000 30000 1000 1200 "clearline"]
	Line[90858 35366 90858 34142 1000 1200 "clearline"]
	Line[94000 15500 94000 31000 1000 1200 "clearline"]
	Line[108917 21397 109897 21397 1000 1200 "clearline"]
	Line[109897 21397 117500 29000 1000 1200 "clearline"]
	Line[117500 29000 126500 29000 1000 1200 "clearline"]
	Line[108917 18838 110338 18838 1000 1200 "clearline"]
	Line[135500 27000 118500 27000 1000 1200 "clearline"]
	Line[138000 19000 124000 19000 1000 1200 "clearline"]
	Line[141000 21000 123000 21000 1000 1200 "clearline"]
	Line[108917 6044 111044 6044 1000 1200 "clearline"]
	Line[110603 8603 115000 13000 1000 1200 "clearline"]
	Line[108917 8603 110603 8603 1000 1200 "clearline"]
	Line[108917 11162 110162 11162 1000 1200 "clearline"]
	Line[108917 13721 109721 13721 1000 1200 "clearline"]
	Line[109721 13721 121000 25000 1000 1200 "clearline"]
	Line[117000 58500 129000 58500 1500 2000 "clearline"]
	Line[122500 29000 122500 32500 1000 1200 "clearline"]
	Line[79048 90952 75500 94500 1000 1200 "clearline"]
	Line[79048 89634 79048 90952 1000 1200 "clearline"]
	Line[69205 93205 70500 94500 1000 1200 "clearline"]
	Line[64500 16000 65500 16000 1500 2000 "clearline"]
	Line[109134 67421 112095 67421 1000 1200 "clearline"]
	Line[112095 67421 116016 63500 1000 1200 "clearline"]
	Line[109134 69389 111838 69389 1000 1200 "clearline"]
	Line[111838 69389 116008 73559 1000 1200 "clearline"]
	Line[109134 65452 110048 65452 1000 1200 "clearline"]
	Line[142000 90000 140000 92000 1000 1200 "clearline"]
	Line[49000 35500 55000 35500 1000 1200 "clearline"]
	Line[58000 80500 60500 83000 1000 1200 "clearline"]
	Line[60500 83000 60500 94500 1000 1200 "clearline"]
	Line[131000 45000 131000 52500 1500 2000 "clearline"]
	Line[159500 29500 159500 88000 1000 1200 "clearline"]
	Line[147500 80000 141500 80000 1000 1200 "clearline"]
	Line[54866 73327 52173 73327 1000 1200 "clearline"]
	Line[67237 89634 67237 92763 1000 1200 "clearline"]
	Line[67237 92763 65500 94500 1000 1200 "clearline"]
	Line[69205 89634 69205 93205 1000 1200 "clearline"]
	Line[106500 33000 106500 29500 1000 1200 "clearline"]
	Line[109134 47736 112000 44870 1000 1200 "clearline"]
	Line[112000 44870 112000 38000 1000 1200 "clearline"]
	Line[112492 32941 112492 33192 1000 1200 "clearline"]
	Line[112492 33192 118500 39200 1000 1200 "clearline"]
	Line[110000 65500 112000 63500 1000 1200 "clearline"]
	Line[55000 35449 58008 32441 1000 1200 "clearline"]
	Line[58500 43500 58500 47500 1000 1200 "clearline"]
	Line[54866 71359 53359 71359 1000 1200 "clearline"]
	Line[53359 71359 52500 70500 1000 1200 "clearline"]
	Line[52500 70500 46949 70500 1000 1200 "clearline"]
	Line[46949 70500 43441 66992 1000 1200 "clearline"]
	Line[43441 65508 48559 59492 1000 1200 "clearline"]
	Line[54866 63485 51082 63485 1000 1200 "clearline"]
	Line[51082 63485 48559 66008 1000 1200 "clearline"]
	Line[88890 89634 88890 94890 1000 1200 "clearline"]
	Line[88890 94890 91500 97500 1000 1200 "clearline"]
	Line[91500 97500 100500 97500 1000 1200 "clearline"]
	Line[100500 97500 104500 93500 1000 1200 "clearline"]
	Line[104500 93500 104500 89051 1000 1200 "clearline"]
	Line[104500 89051 104008 88559 1000 1200 "clearline"]
	Line[104992 88559 110008 83441 1000 1200 "clearline"]
	Line[59764 65453 81953 65453 1000 1200 "clearline"]
	Line[81953 65453 82000 65500 1000 1200 "clearline"]
	Line[59764 67422 79422 67422 1000 1200 "clearline"]
	Line[79422 67422 80000 68000 1000 1200 "clearline"]
	Line[157500 90000 142000 90000 1000 1200 "clearline"]
	Line[141500 80000 140000 81500 1000 1200 "clearline"]
	Line[140000 81500 140000 88000 1000 1200 "clearline"]
	Line[110500 88500 110500 94500 1000 1200 "clearline"]
)
Layer(5 "comp-gnd")
(
	Line[120000 10118 132382 10118 2000 2000 "clearline"]
	Line[132382 10118 132500 10000 1500 2000 "clearline"]
	Line[132500 10000 132500 15000 2000 2000 "clearline"]
	Line[9500 64000 9500 75000 2500 2000 "clearline"]
	Line[5000 4000 50000 4000 2500 2000 "clearline"]
	Line[28500 56500 28500 64500 2500 2000 "clearline"]
	Line[131000 40000 126500 40000 1500 2000 "clearline"]
	Line[131000 36000 131000 40000 1500 2000 "clearline"]
	Line[87500 3500 88500 4500 1000 1200 "clearline"]
	Line[85500 3500 87500 3500 1000 1200 "clearline"]
	Line[116500 87500 116500 84000 1500 2000 "clearline"]
	Line[116500 84000 116500 83500 1500 2000 "clearline"]
	Line[81083 16279 78154 16279 1000 1200 "clearline"]
	Line[78154 16279 76992 17441 1000 1200 "clearline"]
	Line[5000 9500 5000 4000 2500 2000 "clearline"]
	Line[41000 52000 39000 50000 1000 1200 "clearline"]
	Line[42000 52000 41000 52000 1000 1200 "clearline"]
	Line[69204 40264 69204 42204 1000 1200 "clearline"]
	Line[69204 42204 70000 43000 1000 1200 "clearline"]
	Line[94795 40264 94795 42295 1000 1200 "clearline"]
	Line[94795 42295 95500 43000 1000 1200 "clearline"]
	Line[104236 55610 102390 55610 1000 1200 "clearline"]
	Line[102390 55610 101500 56500 1000 1200 "clearline"]
	Line[94796 84736 94796 83296 1000 1200 "clearline"]
	Line[94796 83296 93500 82000 1000 1200 "clearline"]
	Line[54866 75296 53904 75296 1000 1200 "clearline"]
	Line[80500 94500 84000 94500 1000 1200 "clearline"]
	Line[50500 76000 53200 76000 1000 1200 "clearline"]
	Line[59764 75296 61704 75296 1000 1200 "clearline"]
	Line[61704 75296 62500 74500 1000 1200 "clearline"]
	Line[50000 90000 50000 95000 2500 2000 "clearline"]
	Line[9500 64000 12500 64000 2500 2000 "clearline"]
	Line[49000 74500 50500 76000 1000 1200 "clearline"]
	Line[101000 29500 101000 33000 1000 1200 "clearline"]
	Line[63992 32441 67941 32441 1000 1200 "clearline"]
	Line[69204 35366 69204 33704 1000 1200 "clearline"]
	Line[67941 32441 69204 33704 1000 1200 "clearline"]
	Line[94796 89634 94796 92153 1000 1200 "clearline"]
	Line[94796 92153 93441 93508 1000 1200 "clearline"]
	Line[85689 16279 88279 16279 1000 1200 "clearline"]
	Line[88279 16279 88500 16500 1000 1200 "clearline"]
	Line[53904 75296 53200 76000 1000 1200 "clearline"]
	Line[109500 55500 114500 55500 1000 1200 "clearline"]
	Line[114500 55500 115500 54500 1000 1200 "clearline"]
	Line[104500 80000 104500 83500 1000 1200 "clearline"]
	Line[38008 59941 35000 56299 1500 2000 "clearline"]
)
Layer(6 "comp-vcc")
(
	Line[102000 3500 102000 25500 1000 1200 "clearline"]
	Line[102000 25500 103000 26500 1000 1200 "clearline"]
	Line[103000 26500 104296 26500 1000 1200 "clearline"]
	Line[104296 26500 104311 26515 1000 1200 "clearline"]
	Line[102000 24000 104267 24000 1000 1200 "clearline"]
	Line[104267 24000 104311 23956 1000 1200 "clearline"]
	Line[155000 5000 120000 5000 2500 2000 "clearline"]
	Line[108917 3485 117501 3485 1000 1200 "clearline"]
	Line[117501 3485 119016 5000 1000 1200 "clearline"]
	Line[99500 1000 102000 3500 1000 1200 "clearline"]
	Line[102000 3500 104500 3500 1000 1200 "clearline"]
	Line[53000 51500 53000 48000 1000 1200 "clearline"]
	Line[53000 48000 52000 47000 1000 1200 "clearline"]
	Line[51000 52000 52500 52000 1000 1200 "clearline"]
	Line[52500 52000 53000 51500 1000 1200 "clearline"]
	Line[96764 81692 96764 84736 1000 1200 ""]
	Line[59764 77264 63687 77264 1000 1200 ""]
	Line[100878 77263 104236 77263 1000 1200 ""]
	Line[100099 53641 104236 53641 1000 1200 ""]
	Line[92826 40264 92826 43907 1000 1200 ""]
	Line[67236 40264 67236 43811 1000 1200 ""]
	Line[39000 43500 35000 43500 1000 1200 "clearline"]
	Line[13300 93100 17400 93100 2500 2000 "clearline"]
	Line[17400 93100 20000 90500 2500 2000 "clearline"]
	Line[20000 90500 20000 35500 2500 2000 "clearline"]
	Line[20000 35500 5500 21000 2500 2000 "clearline"]
	Line[5500 21000 5500 16300 2500 2000 "clearline"]
	Line[15492 22559 21933 29000 1500 2000 "clearline"]
	Line[21933 29000 34000 29000 1500 2000 "clearline"]
	Line[48492 79059 53071 79059 1000 1200 "clearline"]
	Line[63500 29000 44000 29000 1500 2000 "clearline"]
	Line[63500 37500 63500 37500 1000 1200 "clearline"]
	Line[53071 79059 54866 77264 1000 1200 "clearline"]
	Line[60000 40500 63000 43500 1500 2000 ""]
	Line[48000 79000 48000 85000 2500 2000 "clearline"]
	Line[34000 29000 44000 29000 1500 2000 "clearline"]
	Line[96764 91713 98559 93508 1000 1200 "clearline"]
	Line[50000 85000 34000 85000 2500 2000 "clearline"]
	Line[23583 43701 20299 43701 1500 2000 "clearline"]
	Line[20299 43701 20000 44000 1500 2000 "clearline"]
	Line[37008 66059 32067 71000 1500 2000 "clearline"]
	Line[32067 71000 20000 71000 1500 2000 "clearline"]
	Line[39500 40500 60000 40500 1500 2000 "clearline"]
	Line[64500 37500 67000 37500 1000 1200 "clearline"]
	Line[96764 89634 96764 91713 1000 1200 "clearline"]
	Line[81083 23956 78389 23956 1000 1200 "clearline"]
	Line[78389 23956 76992 22559 1000 1200 "clearline"]
	Line[73000 21500 75000 21500 1000 1200 "clearline"]
	Line[109134 53641 111000 53500 1000 1200 "clearline"]
	Line[111000 53500 115692 48859 1000 1200 "clearline"]
	Line[69500 1000 99500 1000 1000 1200 "clearline"]
	Line[81000 85000 81000 81000 1000 1200 ""]
	Line[106500 38000 101000 38000 1000 1200 "clearline"]
	Line[101000 38000 101000 43500 1000 1200 ""]
	Line[64500 6000 69500 1000 1000 1200 "clearline"]
	Line[58992 37559 63008 37559 1000 1200 "clearline"]
	Line[39500 29000 39500 40500 1500 2000 "clearline"]
	Polygon("clearpoly")
	(
		[62000 42500] [102000 42500] [102000 79500] [99000 82500] [62000 82500] 
	)
)
Layer(7 "signal3")
(
)
Layer(8 "signal4")
(
)
Layer(9 "silk")
(
	Text[3000 58500 0 169 "www.blacksphere.co.nz" "auto"]
	Text[2500 97500 0 125 "BLACK MAGIC PROBE 1.0" "auto"]
	Text[3000 80500 0 114 "Licensed CC-BY-SA" "auto"]
	Text[3000 89000 0 114 "(C) 2011 Black Sphere Technologies" "auto"]
)
Layer(10 "silk")
(
	Line[12500 1000 17500 1000 1000 1200 "clearline"]
	Line[20000 1000 25000 1000 1000 1200 "clearline"]
	Line[27500 1000 32500 1000 1000 1200 "clearline"]
	Line[35000 1000 40000 1000 1000 1200 "clearline"]
)
NetList()
(
	Net("+3.3V" "(unknown)")
	(
		Connect("C6-1")
		Connect("C8-1")
		Connect("C9-1")
		Connect("C10-1")
		Connect("C11-1")
		Connect("C12-1")
		Connect("C13-1")
		Connect("J3-1")
		Connect("R5-2")
		Connect("R8-1")
		Connect("R14-2")
		Connect("U1-19")
		Connect("U3-4")
		Connect("U4-1")
		Connect("U4-13")
		Connect("U4-19")
		Connect("U4-32")
		Connect("U4-48")
		Connect("U4-56")
		Connect("U4-64")
	)
	Net("+5V" "(unknown)")
	(
		Connect("C5-1")
		Connect("C7-1")
		Connect("J2-1")
		Connect("U2-5")
		Connect("U3-3")
	)
	Net("BOOT0" "(unknown)")
	(
		Connect("J1-8")
		Connect("R12-2")
	)
	Net("LED0" "(unknown)")
	(
		Connect("R11-1")
		Connect("U4-28")
	)
	Net("LED1" "(unknown)")
	(
		Connect("R10-1")
		Connect("U4-29")
	)
	Net("LED2" "(unknown)")
	(
		Connect("R9-1")
		Connect("U4-30")
	)
	Net("U1RX" "(unknown)")
	(
		Connect("J1-4")
		Connect("U4-43")
	)
	Net("U1TX" "(unknown)")
	(
		Connect("J1-6")
		Connect("U4-42")
	)
	Net("unnamed_net1" "(unknown)")
	(
		Connect("R14-1")
		Connect("S1-2")
		Connect("U4-33")
	)
	Net("unnamed_net2" "(unknown)")
	(
		Connect("C3-2")
		Connect("R6-1")
		Connect("R7-1")
		Connect("X1-1")
	)
	Net("unnamed_net3" "(unknown)")
	(
		Connect("C4-2")
		Connect("R6-2")
		Connect("U4-5")
		Connect("X1-2")
	)
	Net("unnamed_net4" "(unknown)")
	(
		Connect("R7-2")
		Connect("U4-6")
	)
	Net("unnamed_net5" "(unknown)")
	(
		Connect("R5-1")
		Connect("U4-7")
	)
	Net("unnamed_net6" "(unknown)")
	(
		Connect("R12-1")
		Connect("R13-2")
		Connect("U4-60")
	)
	Net("unnamed_net7" "(unknown)")
	(
		Connect("TP1-1")
		Connect("U4-46")
	)
	Net("unnamed_net8" "(unknown)")
	(
		Connect("TP2-1")
		Connect("U4-49")
	)
	Net("unnamed_net9" "(unknown)")
	(
		Connect("TP3-1")
		Connect("U4-50")
	)
	Net("unnamed_net10" "(unknown)")
	(
		Connect("TP4-1")
		Connect("U4-55")
	)
	Net("unnamed_net11" "(unknown)")
	(
		Connect("J2-2")
		Connect("U2-1")
	)
	Net("unnamed_net12" "(unknown)")
	(
		Connect("J2-3")
		Connect("U2-3")
	)
	Net("unnamed_net13" "(unknown)")
	(
		Connect("R3-1")
		Connect("U2-4")
	)
	Net("unnamed_net14" "(unknown)")
	(
		Connect("R2-1")
		Connect("U2-6")
	)
	Net("unnamed_net15" "(unknown)")
	(
		Connect("C1-1")
		Connect("C2-1")
		Connect("J1-1")
		Connect("J1-2")
		Connect("J3-2")
		Connect("R1-2")
		Connect("U1-1")
		Connect("U1-2")
		Connect("U1-10")
	)
	Net("unnamed_net16" "(unknown)")
	(
		Connect("J1-15")
		Connect("Q1-3")
		Connect("U1-3")
	)
	Net("unnamed_net17" "(unknown)")
	(
		Connect("J1-13")
		Connect("U1-4")
	)
	Net("unnamed_net18" "(unknown)")
	(
		Connect("J1-9")
		Connect("U1-6")
	)
	Net("unnamed_net19" "(unknown)")
	(
		Connect("J1-7")
		Connect("U1-7")
	)
	Net("unnamed_net20" "(unknown)")
	(
		Connect("J1-5")
		Connect("U1-8")
	)
	Net("unnamed_net21" "(unknown)")
	(
		Connect("J1-3")
		Connect("U1-9")
	)
	Net("unnamed_net22" "(unknown)")
	(
		Connect("D2-1")
		Connect("R9-2")
	)
	Net("unnamed_net23" "(unknown)")
	(
		Connect("D3-1")
		Connect("R10-2")
	)
	Net("unnamed_net24" "(unknown)")
	(
		Connect("D4-1")
		Connect("R11-2")
	)
	Net("unnamed_net25" "(unknown)")
	(
		Connect("D1-1")
		Connect("R8-2")
	)
	Net("unnamed_net26" "(unknown)")
	(
		Connect("Q1-1")
		Connect("R15-2")
	)
	Net("USB_DM" "(unknown)")
	(
		Connect("R2-2")
		Connect("U4-44")
	)
	Net("USB_DP" "(unknown)")
	(
		Connect("R3-2")
		Connect("R4-1")
		Connect("U4-45")
	)
	Net("USB_PU" "(unknown)")
	(
		Connect("R4-2")
		Connect("U4-41")
	)
	Net("VSS" "(unknown)")
	(
		Connect("C1-2")
		Connect("C2-2")
		Connect("C3-1")
		Connect("C4-1")
		Connect("C5-2")
		Connect("C6-2")
		Connect("C7-2")
		Connect("C8-2")
		Connect("C9-2")
		Connect("C10-2")
		Connect("C11-2")
		Connect("C12-2")
		Connect("C13-2")
		Connect("D1-2")
		Connect("D2-2")
		Connect("D3-2")
		Connect("D4-2")
		Connect("J1-10")
		Connect("J1-12")
		Connect("J1-14")
		Connect("J1-16")
		Connect("J1-18")
		Connect("J1-20")
		Connect("J2-5")
		Connect("J2-6")
		Connect("J2-7")
		Connect("J2-8")
		Connect("J2-9")
		Connect("Q1-2")
		Connect("R1-1")
		Connect("R13-1")
		Connect("S1-1")
		Connect("TP5-1")
		Connect("U1-11")
		Connect("U1-16")
		Connect("U2-2")
		Connect("U3-1")
		Connect("U4-12")
		Connect("U4-18")
		Connect("U4-31")
		Connect("U4-47")
		Connect("U4-63")
	)
	Net("xnSRST" "(unknown)")
	(
		Connect("U1-18")
		Connect("U4-23")
	)
	Net("xnSRST_OUT" "(unknown)")
	(
		Connect("R15-1")
		Connect("U4-16")
	)
	Net("xnTRST" "(unknown)")
	(
		Connect("U1-12")
		Connect("U4-27")
	)
	Net("xTCK" "(unknown)")
	(
		Connect("U1-15")
		Connect("U4-21")
	)
	Net("xTDI" "(unknown)")
	(
		Connect("U1-13")
		Connect("U4-17")
	)
	Net("xTDO" "(unknown)")
	(
		Connect("U1-17")
		Connect("U4-22")
	)
	Net("xTMS" "(unknown)")
	(
		Connect("U1-14")
		Connect("U4-20")
	)
	Net("xTPWR" "(unknown)")
	(
		Connect("U1-20")
		Connect("U4-26")
	)
)