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
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
|
# release: pcb-bin 1.99q
# date: Thu Mar 2 12:12:18 2006
# user: matt (Matt Ettus)
# host: localhost.localdomain
PCB["RX Daughterboard" 275000 250000]
Grid[1000.00000000 0 0 1]
Cursor[195412 138504 3.180460]
Thermal[0.500000]
DRC[699 400 800 800]
Flags(0x0000000000001ad8)
Groups("1,s:4,c:2:3:5,6,7,8:")
Styles["Signal,1000,4000,2000,1000:Power,2500,6000,3500,1000:Fat,4000,6000,3500,1000:Skinny,800,3600,2000,1000"]
Symbol[' ' 1800]
(
)
Symbol['!' 1200]
(
SymbolLine[0 3500 0 4000 800]
SymbolLine[0 0 0 2500 800]
)
Symbol['"' 1200]
(
SymbolLine[0 0 0 1000 800]
SymbolLine[1000 0 1000 1000 800]
)
Symbol['#' 1200]
(
SymbolLine[0 2500 2000 2500 800]
SymbolLine[0 1500 2000 1500 800]
SymbolLine[1500 1000 1500 3000 800]
SymbolLine[500 1000 500 3000 800]
)
Symbol['$' 1200]
(
SymbolLine[1500 500 2000 1000 800]
SymbolLine[500 500 1500 500 800]
SymbolLine[0 1000 500 500 800]
SymbolLine[0 1000 0 1500 800]
SymbolLine[0 1500 500 2000 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[2000 2500 2000 3000 800]
SymbolLine[1500 3500 2000 3000 800]
SymbolLine[500 3500 1500 3500 800]
SymbolLine[0 3000 500 3500 800]
SymbolLine[1000 0 1000 4000 800]
)
Symbol['%' 1200]
(
SymbolLine[0 500 0 1000 800]
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 1000 0 800]
SymbolLine[1000 0 1500 500 800]
SymbolLine[1500 500 1500 1000 800]
SymbolLine[1000 1500 1500 1000 800]
SymbolLine[500 1500 1000 1500 800]
SymbolLine[0 1000 500 1500 800]
SymbolLine[0 4000 4000 0 800]
SymbolLine[3500 4000 4000 3500 800]
SymbolLine[4000 3000 4000 3500 800]
SymbolLine[3500 2500 4000 3000 800]
SymbolLine[3000 2500 3500 2500 800]
SymbolLine[2500 3000 3000 2500 800]
SymbolLine[2500 3000 2500 3500 800]
SymbolLine[2500 3500 3000 4000 800]
SymbolLine[3000 4000 3500 4000 800]
)
Symbol['&' 1200]
(
SymbolLine[0 3500 500 4000 800]
SymbolLine[0 500 0 1500 800]
SymbolLine[0 500 500 0 800]
SymbolLine[0 2500 1500 1000 800]
SymbolLine[500 4000 1000 4000 800]
SymbolLine[1000 4000 2000 3000 800]
SymbolLine[0 1500 2500 4000 800]
SymbolLine[500 0 1000 0 800]
SymbolLine[1000 0 1500 500 800]
SymbolLine[1500 500 1500 1000 800]
SymbolLine[0 2500 0 3500 800]
)
Symbol[''' 1200]
(
SymbolLine[0 1000 1000 0 800]
)
Symbol['(' 1200]
(
SymbolLine[0 3500 500 4000 800]
SymbolLine[0 500 500 0 800]
SymbolLine[0 500 0 3500 800]
)
Symbol[')' 1200]
(
SymbolLine[0 0 500 500 800]
SymbolLine[500 500 500 3500 800]
SymbolLine[0 4000 500 3500 800]
)
Symbol['*' 1200]
(
SymbolLine[0 1000 2000 3000 800]
SymbolLine[0 3000 2000 1000 800]
SymbolLine[0 2000 2000 2000 800]
SymbolLine[1000 1000 1000 3000 800]
)
Symbol['+' 1200]
(
SymbolLine[0 2000 2000 2000 800]
SymbolLine[1000 1000 1000 3000 800]
)
Symbol[',' 1200]
(
SymbolLine[0 5000 1000 4000 800]
)
Symbol['-' 1200]
(
SymbolLine[0 2000 2000 2000 800]
)
Symbol['.' 1200]
(
SymbolLine[0 4000 500 4000 800]
)
Symbol['/' 1200]
(
SymbolLine[0 3500 3000 500 800]
)
Symbol['0' 1200]
(
SymbolLine[0 3500 500 4000 800]
SymbolLine[0 500 0 3500 800]
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 1500 0 800]
SymbolLine[1500 0 2000 500 800]
SymbolLine[2000 500 2000 3500 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[0 3000 2000 1000 800]
)
Symbol['1' 1200]
(
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1000 0 1000 4000 800]
SymbolLine[0 1000 1000 0 800]
)
Symbol['2' 1200]
(
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 2000 0 800]
SymbolLine[2000 0 2500 500 800]
SymbolLine[2500 500 2500 1500 800]
SymbolLine[0 4000 2500 1500 800]
SymbolLine[0 4000 2500 4000 800]
)
Symbol['3' 1200]
(
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 1500 0 800]
SymbolLine[1500 0 2000 500 800]
SymbolLine[2000 500 2000 3500 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 2000 2000 2000 800]
)
Symbol['4' 1200]
(
SymbolLine[0 2000 2000 0 800]
SymbolLine[0 2000 2500 2000 800]
SymbolLine[2000 0 2000 4000 800]
)
Symbol['5' 1200]
(
SymbolLine[0 0 2000 0 800]
SymbolLine[0 0 0 2000 800]
SymbolLine[0 2000 500 1500 800]
SymbolLine[500 1500 1500 1500 800]
SymbolLine[1500 1500 2000 2000 800]
SymbolLine[2000 2000 2000 3500 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[0 3500 500 4000 800]
)
Symbol['6' 1200]
(
SymbolLine[1500 0 2000 500 800]
SymbolLine[500 0 1500 0 800]
SymbolLine[0 500 500 0 800]
SymbolLine[0 500 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[0 2000 1500 2000 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[2000 2500 2000 3500 800]
)
Symbol['7' 1200]
(
SymbolLine[0 4000 2500 1500 800]
SymbolLine[2500 0 2500 1500 800]
SymbolLine[0 0 2500 0 800]
)
Symbol['8' 1200]
(
SymbolLine[0 3500 500 4000 800]
SymbolLine[0 2500 0 3500 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[2000 2500 2000 3500 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[0 1500 500 2000 800]
SymbolLine[0 500 0 1500 800]
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 1500 0 800]
SymbolLine[1500 0 2000 500 800]
SymbolLine[2000 500 2000 1500 800]
SymbolLine[1500 2000 2000 1500 800]
)
Symbol['9' 1200]
(
SymbolLine[0 4000 2000 2000 800]
SymbolLine[2000 500 2000 2000 800]
SymbolLine[1500 0 2000 500 800]
SymbolLine[500 0 1500 0 800]
SymbolLine[0 500 500 0 800]
SymbolLine[0 500 0 1500 800]
SymbolLine[0 1500 500 2000 800]
SymbolLine[500 2000 2000 2000 800]
)
Symbol[':' 1200]
(
SymbolLine[0 1500 500 1500 800]
SymbolLine[0 2500 500 2500 800]
)
Symbol[';' 1200]
(
SymbolLine[0 4000 1000 3000 800]
SymbolLine[1000 1500 1000 2000 800]
)
Symbol['<' 1200]
(
SymbolLine[0 2000 1000 1000 800]
SymbolLine[0 2000 1000 3000 800]
)
Symbol['=' 1200]
(
SymbolLine[0 1500 2000 1500 800]
SymbolLine[0 2500 2000 2500 800]
)
Symbol['>' 1200]
(
SymbolLine[0 1000 1000 2000 800]
SymbolLine[0 3000 1000 2000 800]
)
Symbol['?' 1200]
(
SymbolLine[1000 2000 1000 2500 800]
SymbolLine[1000 3500 1000 4000 800]
SymbolLine[0 500 0 1000 800]
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 1500 0 800]
SymbolLine[1500 0 2000 500 800]
SymbolLine[2000 500 2000 1000 800]
SymbolLine[1000 2000 2000 1000 800]
)
Symbol['A' 1200]
(
SymbolLine[0 500 0 4000 800]
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 2000 0 800]
SymbolLine[2000 0 2500 500 800]
SymbolLine[2500 500 2500 4000 800]
SymbolLine[0 2000 2500 2000 800]
)
Symbol['B' 1200]
(
SymbolLine[0 4000 2000 4000 800]
SymbolLine[2000 4000 2500 3500 800]
SymbolLine[2500 2500 2500 3500 800]
SymbolLine[2000 2000 2500 2500 800]
SymbolLine[500 2000 2000 2000 800]
SymbolLine[500 0 500 4000 800]
SymbolLine[0 0 2000 0 800]
SymbolLine[2000 0 2500 500 800]
SymbolLine[2500 500 2500 1500 800]
SymbolLine[2000 2000 2500 1500 800]
)
Symbol['C' 1200]
(
SymbolLine[500 4000 2000 4000 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[0 500 0 3500 800]
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 2000 0 800]
)
Symbol['D' 1200]
(
SymbolLine[500 0 500 4000 800]
SymbolLine[2000 0 2500 500 800]
SymbolLine[2500 500 2500 3500 800]
SymbolLine[2000 4000 2500 3500 800]
SymbolLine[0 4000 2000 4000 800]
SymbolLine[0 0 2000 0 800]
)
Symbol['E' 1200]
(
SymbolLine[0 2000 1500 2000 800]
SymbolLine[0 4000 2000 4000 800]
SymbolLine[0 0 0 4000 800]
SymbolLine[0 0 2000 0 800]
)
Symbol['F' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 0 2000 0 800]
SymbolLine[0 2000 1500 2000 800]
)
Symbol['G' 1200]
(
SymbolLine[2000 0 2500 500 800]
SymbolLine[500 0 2000 0 800]
SymbolLine[0 500 500 0 800]
SymbolLine[0 500 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 4000 2000 4000 800]
SymbolLine[2000 4000 2500 3500 800]
SymbolLine[2500 2500 2500 3500 800]
SymbolLine[2000 2000 2500 2500 800]
SymbolLine[1000 2000 2000 2000 800]
)
Symbol['H' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[2500 0 2500 4000 800]
SymbolLine[0 2000 2500 2000 800]
)
Symbol['I' 1200]
(
SymbolLine[0 0 1000 0 800]
SymbolLine[500 0 500 4000 800]
SymbolLine[0 4000 1000 4000 800]
)
Symbol['J' 1200]
(
SymbolLine[0 0 1500 0 800]
SymbolLine[1500 0 1500 3500 800]
SymbolLine[1000 4000 1500 3500 800]
SymbolLine[500 4000 1000 4000 800]
SymbolLine[0 3500 500 4000 800]
)
Symbol['K' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 2000 2000 0 800]
SymbolLine[0 2000 2000 4000 800]
)
Symbol['L' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 4000 2000 4000 800]
)
Symbol['M' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 0 1500 1500 800]
SymbolLine[1500 1500 3000 0 800]
SymbolLine[3000 0 3000 4000 800]
)
Symbol['N' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 0 0 500 800]
SymbolLine[0 500 2500 3000 800]
SymbolLine[2500 0 2500 4000 800]
)
Symbol['O' 1200]
(
SymbolLine[0 500 0 3500 800]
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 1500 0 800]
SymbolLine[1500 0 2000 500 800]
SymbolLine[2000 500 2000 3500 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[0 3500 500 4000 800]
)
Symbol['P' 1200]
(
SymbolLine[500 0 500 4000 800]
SymbolLine[0 0 2000 0 800]
SymbolLine[2000 0 2500 500 800]
SymbolLine[2500 500 2500 1500 800]
SymbolLine[2000 2000 2500 1500 800]
SymbolLine[500 2000 2000 2000 800]
)
Symbol['Q' 1200]
(
SymbolLine[0 500 0 3500 800]
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 1500 0 800]
SymbolLine[1500 0 2000 500 800]
SymbolLine[2000 500 2000 3500 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[1000 3000 2000 4000 800]
)
Symbol['R' 1200]
(
SymbolLine[0 0 2000 0 800]
SymbolLine[2000 0 2500 500 800]
SymbolLine[2500 500 2500 1500 800]
SymbolLine[2000 2000 2500 1500 800]
SymbolLine[500 2000 2000 2000 800]
SymbolLine[500 0 500 4000 800]
SymbolLine[500 2000 2500 4000 800]
)
Symbol['S' 1200]
(
SymbolLine[2000 0 2500 500 800]
SymbolLine[500 0 2000 0 800]
SymbolLine[0 500 500 0 800]
SymbolLine[0 500 0 1500 800]
SymbolLine[0 1500 500 2000 800]
SymbolLine[500 2000 2000 2000 800]
SymbolLine[2000 2000 2500 2500 800]
SymbolLine[2500 2500 2500 3500 800]
SymbolLine[2000 4000 2500 3500 800]
SymbolLine[500 4000 2000 4000 800]
SymbolLine[0 3500 500 4000 800]
)
Symbol['T' 1200]
(
SymbolLine[0 0 2000 0 800]
SymbolLine[1000 0 1000 4000 800]
)
Symbol['U' 1200]
(
SymbolLine[0 0 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[2000 0 2000 3500 800]
)
Symbol['V' 1200]
(
SymbolLine[0 0 0 3000 800]
SymbolLine[0 3000 1000 4000 800]
SymbolLine[1000 4000 2000 3000 800]
SymbolLine[2000 0 2000 3000 800]
)
Symbol['W' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 4000 1500 2500 800]
SymbolLine[1500 2500 3000 4000 800]
SymbolLine[3000 0 3000 4000 800]
)
Symbol['X' 1200]
(
SymbolLine[0 0 0 500 800]
SymbolLine[0 500 2500 3000 800]
SymbolLine[2500 3000 2500 4000 800]
SymbolLine[0 3000 0 4000 800]
SymbolLine[0 3000 2500 500 800]
SymbolLine[2500 0 2500 500 800]
)
Symbol['Y' 1200]
(
SymbolLine[0 0 0 500 800]
SymbolLine[0 500 1000 1500 800]
SymbolLine[1000 1500 2000 500 800]
SymbolLine[2000 0 2000 500 800]
SymbolLine[1000 1500 1000 4000 800]
)
Symbol['Z' 1200]
(
SymbolLine[0 0 2500 0 800]
SymbolLine[2500 0 2500 500 800]
SymbolLine[0 3000 2500 500 800]
SymbolLine[0 3000 0 4000 800]
SymbolLine[0 4000 2500 4000 800]
)
Symbol['[' 1200]
(
SymbolLine[0 0 500 0 800]
SymbolLine[0 0 0 4000 800]
SymbolLine[0 4000 500 4000 800]
)
Symbol['\' 1200]
(
SymbolLine[0 500 3000 3500 800]
)
Symbol[']' 1200]
(
SymbolLine[0 0 500 0 800]
SymbolLine[500 0 500 4000 800]
SymbolLine[0 4000 500 4000 800]
)
Symbol['^' 1200]
(
SymbolLine[0 500 500 0 800]
SymbolLine[500 0 1000 500 800]
)
Symbol['_' 1200]
(
SymbolLine[0 4000 2000 4000 800]
)
Symbol['a' 1200]
(
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[0 2500 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[2000 2000 2000 3500 800]
SymbolLine[2000 3500 2500 4000 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1500 4000 2000 3500 800]
)
Symbol['b' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[2000 2500 2000 3500 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[0 2500 500 2000 800]
)
Symbol['c' 1200]
(
SymbolLine[500 2000 2000 2000 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[0 2500 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 4000 2000 4000 800]
)
Symbol['d' 1200]
(
SymbolLine[2000 0 2000 4000 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[0 2500 0 3500 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[1500 2000 2000 2500 800]
)
Symbol['e' 1200]
(
SymbolLine[500 4000 2000 4000 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[0 2500 0 3500 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[0 3000 2000 3000 800]
SymbolLine[2000 3000 2000 2500 800]
)
Symbol['f' 1000]
(
SymbolLine[500 500 500 4000 800]
SymbolLine[500 500 1000 0 800]
SymbolLine[1000 0 1500 0 800]
SymbolLine[0 2000 1000 2000 800]
)
Symbol['g' 1200]
(
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[0 2500 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[0 5000 500 5500 800]
SymbolLine[500 5500 1500 5500 800]
SymbolLine[1500 5500 2000 5000 800]
SymbolLine[2000 2000 2000 5000 800]
)
Symbol['h' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[2000 2500 2000 4000 800]
)
Symbol['i' 1000]
(
SymbolLine[0 1000 0 1500 800]
SymbolLine[0 2500 0 4000 800]
)
Symbol['j' 1000]
(
SymbolLine[500 1000 500 1500 800]
SymbolLine[500 2500 500 5000 800]
SymbolLine[0 5500 500 5000 800]
)
Symbol['k' 1200]
(
SymbolLine[0 0 0 4000 800]
SymbolLine[0 2500 1500 4000 800]
SymbolLine[0 2500 1000 1500 800]
)
Symbol['l' 1000]
(
SymbolLine[0 0 0 3500 800]
SymbolLine[0 3500 500 4000 800]
)
Symbol['m' 1200]
(
SymbolLine[500 2500 500 4000 800]
SymbolLine[500 2500 1000 2000 800]
SymbolLine[1000 2000 1500 2000 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[2000 2500 2000 4000 800]
SymbolLine[2000 2500 2500 2000 800]
SymbolLine[2500 2000 3000 2000 800]
SymbolLine[3000 2000 3500 2500 800]
SymbolLine[3500 2500 3500 4000 800]
SymbolLine[0 2000 500 2500 800]
)
Symbol['n' 1200]
(
SymbolLine[500 2500 500 4000 800]
SymbolLine[500 2500 1000 2000 800]
SymbolLine[1000 2000 1500 2000 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[2000 2500 2000 4000 800]
SymbolLine[0 2000 500 2500 800]
)
Symbol['o' 1200]
(
SymbolLine[0 2500 0 3500 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[2000 2500 2000 3500 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[0 3500 500 4000 800]
)
Symbol['p' 1200]
(
SymbolLine[500 2500 500 5500 800]
SymbolLine[0 2000 500 2500 800]
SymbolLine[500 2500 1000 2000 800]
SymbolLine[1000 2000 2000 2000 800]
SymbolLine[2000 2000 2500 2500 800]
SymbolLine[2500 2500 2500 3500 800]
SymbolLine[2000 4000 2500 3500 800]
SymbolLine[1000 4000 2000 4000 800]
SymbolLine[500 3500 1000 4000 800]
)
Symbol['q' 1200]
(
SymbolLine[2000 2500 2000 5500 800]
SymbolLine[1500 2000 2000 2500 800]
SymbolLine[500 2000 1500 2000 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[0 2500 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1500 4000 2000 3500 800]
)
Symbol['r' 1200]
(
SymbolLine[500 2500 500 4000 800]
SymbolLine[500 2500 1000 2000 800]
SymbolLine[1000 2000 2000 2000 800]
SymbolLine[0 2000 500 2500 800]
)
Symbol['s' 1200]
(
SymbolLine[500 4000 2000 4000 800]
SymbolLine[2000 4000 2500 3500 800]
SymbolLine[2000 3000 2500 3500 800]
SymbolLine[500 3000 2000 3000 800]
SymbolLine[0 2500 500 3000 800]
SymbolLine[0 2500 500 2000 800]
SymbolLine[500 2000 2000 2000 800]
SymbolLine[2000 2000 2500 2500 800]
SymbolLine[0 3500 500 4000 800]
)
Symbol['t' 1000]
(
SymbolLine[500 0 500 3500 800]
SymbolLine[500 3500 1000 4000 800]
SymbolLine[0 1500 1000 1500 800]
)
Symbol['u' 1200]
(
SymbolLine[0 2000 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1500 4000 2000 3500 800]
SymbolLine[2000 2000 2000 3500 800]
)
Symbol['v' 1200]
(
SymbolLine[0 2000 0 3000 800]
SymbolLine[0 3000 1000 4000 800]
SymbolLine[1000 4000 2000 3000 800]
SymbolLine[2000 2000 2000 3000 800]
)
Symbol['w' 1200]
(
SymbolLine[0 2000 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[500 4000 1000 4000 800]
SymbolLine[1000 4000 1500 3500 800]
SymbolLine[1500 2000 1500 3500 800]
SymbolLine[1500 3500 2000 4000 800]
SymbolLine[2000 4000 2500 4000 800]
SymbolLine[2500 4000 3000 3500 800]
SymbolLine[3000 2000 3000 3500 800]
)
Symbol['x' 1200]
(
SymbolLine[0 2000 2000 4000 800]
SymbolLine[0 4000 2000 2000 800]
)
Symbol['y' 1200]
(
SymbolLine[0 2000 0 3500 800]
SymbolLine[0 3500 500 4000 800]
SymbolLine[2000 2000 2000 5000 800]
SymbolLine[1500 5500 2000 5000 800]
SymbolLine[500 5500 1500 5500 800]
SymbolLine[0 5000 500 5500 800]
SymbolLine[500 4000 1500 4000 800]
SymbolLine[1500 4000 2000 3500 800]
)
Symbol['z' 1200]
(
SymbolLine[0 2000 2000 2000 800]
SymbolLine[0 4000 2000 2000 800]
SymbolLine[0 4000 2000 4000 800]
)
Symbol['{' 1200]
(
SymbolLine[500 500 1000 0 800]
SymbolLine[500 500 500 1500 800]
SymbolLine[0 2000 500 1500 800]
SymbolLine[0 2000 500 2500 800]
SymbolLine[500 2500 500 3500 800]
SymbolLine[500 3500 1000 4000 800]
)
Symbol['|' 1200]
(
SymbolLine[0 0 0 4000 800]
)
Symbol['}' 1200]
(
SymbolLine[0 0 500 500 800]
SymbolLine[500 500 500 1500 800]
SymbolLine[500 1500 1000 2000 800]
SymbolLine[500 2500 1000 2000 800]
SymbolLine[500 2500 500 3500 800]
SymbolLine[0 4000 500 3500 800]
)
Symbol['~' 1200]
(
SymbolLine[0 2500 500 2000 800]
SymbolLine[500 2000 1000 2000 800]
SymbolLine[1000 2000 1500 2500 800]
SymbolLine[1500 2500 2000 2500 800]
SymbolLine[2000 2500 2500 2000 800]
)
Via[15000 235000 13200 2000 11000 12800 "" "hole"]
Via[92500 132000 4000 2000 0 2000 "" ""]
Via[260000 15000 13200 2000 11000 12800 "" "hole"]
Via[260000 235000 13200 2000 11000 12800 "" "hole"]
Via[82000 199000 4000 2000 0 2000 "" "thermal(1)"]
Via[55000 55000 13200 2000 11000 12800 "" "hole"]
Via[223000 113000 4000 2000 0 2000 "" "thermal(1)"]
Via[141499 133398 4000 2000 0 2000 "" "auto"]
Via[85000 115000 4000 2000 0 2000 "" "thermal(1)"]
Via[202500 120500 4000 2000 0 2000 "" ""]
Via[106000 123000 4000 2000 0 2000 "" "auto"]
Via[141499 139901 4000 2000 0 2000 "" "auto"]
Via[165500 79000 4000 2000 0 2000 "" "thermal(1)"]
Via[156792 122699 4000 2000 0 2000 "" "auto"]
Via[159900 135400 4000 2000 0 2000 "" "auto"]
Via[123500 127000 4000 2000 0 2000 "" ""]
Via[99500 141000 4000 2000 0 2000 "" ""]
Via[109500 127000 4000 2000 0 2000 "" ""]
Via[87000 91500 4000 2000 0 2000 "" "thermal(1)"]
Via[188000 74000 4000 2000 0 2000 "" ""]
Via[194000 74000 4000 2000 0 2000 "" ""]
Via[211000 74000 4000 2000 0 2000 "" ""]
Via[216000 77000 4000 2000 0 2000 "" ""]
Via[196000 162000 4000 2000 0 2000 "" "thermal(1)"]
Via[224000 195000 4000 2000 0 2000 "" "thermal(1)"]
Via[157000 196000 4000 2000 0 2000 "" "thermal(1)"]
Via[159000 189000 4000 2000 0 2000 "" "usetherm,thermal(2)"]
Via[226000 188000 4000 2000 0 2000 "" "usetherm,thermal(2)"]
Via[198000 186000 4000 2000 0 2000 "" "usetherm,thermal(2)"]
Via[206000 178000 3600 2000 0 2000 "" ""]
Via[229000 199000 3600 2000 0 2000 "" ""]
Via[128000 183000 3600 2000 0 2000 "" ""]
Via[137000 176000 3600 2000 0 2000 "" ""]
Via[191000 231000 3600 2000 0 2000 "" "thermal(2)"]
Element["" "0603" "R3" "49.9" 167000 209000 6000 -2000 0 100 ""]
(
Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "square"]
Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "square"]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [4200 -2700 4200 2700 600]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [-4200 -2700 -4200 2700 600]
)
Element["" "0603" "R32" "24.9" 245000 217000 4000 -1200 0 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["onsolder" "PMC-REVERSE" "J2" "unknown" 94993 95811 -18000 9000 0 100 "auto"]
(
Pin[-6693 7189 7200 2000 7200 5800 "" "1" "hole,edge2"]
Pin[128740 7189 7200 2000 7200 5800 "" "2" "hole,edge2"]
Pad[0 9900 0 19000 2400 1000 3400 "" "1" "auto,edge2"]
Pad[122047 -4622 122047 4478 2400 1000 3400 "" "64" "auto"]
Pad[7874 9900 7874 19000 2400 1000 3400 "" "5" "auto,edge2"]
Pad[3937 9900 3937 19000 2400 1000 3400 "" "3" "auto,edge2"]
Pad[11811 9900 11811 19000 2400 1000 3400 "" "7" "auto,edge2"]
Pad[0 -4622 0 4478 2400 1000 3400 "" "2" "auto"]
Pad[15748 9900 15748 19000 2400 1000 3400 "" "9" "auto,edge2"]
Pad[7874 -4622 7874 4478 2400 1000 3400 "" "6" "auto"]
Pad[19685 9900 19685 19000 2400 1000 3400 "" "11" "auto,edge2"]
Pad[11811 -4622 11811 4478 2400 1000 3400 "" "8" "auto"]
Pad[23622 9900 23622 19000 2400 1000 3400 "" "13" "auto,edge2"]
Pad[15748 -4622 15748 4478 2400 1000 3400 "" "10" "auto"]
Pad[27559 9900 27559 19000 2400 1000 3400 "" "15" "auto,edge2"]
Pad[19685 -4622 19685 4478 2400 1000 3400 "" "12" "auto"]
Pad[31496 9900 31496 19000 2400 1000 3400 "" "17" "auto,edge2"]
Pad[23622 -4622 23622 4478 2400 1000 3400 "" "14" "auto"]
Pad[35433 9900 35433 19000 2400 1000 3400 "" "19" "auto,edge2"]
Pad[27559 -4622 27559 4478 2400 1000 3400 "" "16" "auto"]
Pad[39370 9900 39370 19000 2400 1000 3400 "" "21" "auto,edge2"]
Pad[31496 -4622 31496 4478 2400 1000 3400 "" "18" "auto"]
Pad[35433 -4622 35433 4478 2400 1000 3400 "" "20" "auto"]
Pad[39370 -4622 39370 4478 2400 1000 3400 "" "22" "auto"]
Pad[43307 -4622 43307 4478 2400 1000 3400 "" "24" "auto"]
Pad[47244 -4622 47244 4478 2400 1000 3400 "" "26" "auto"]
Pad[51181 -4622 51181 4478 2400 1000 3400 "" "28" "auto"]
Pad[55118 -4622 55118 4478 2400 1000 3400 "" "30" "auto"]
Pad[59055 -4622 59055 4478 2400 1000 3400 "" "32" "auto"]
Pad[62992 -4622 62992 4478 2400 1000 3400 "" "34" "auto"]
Pad[66929 -4622 66929 4478 2400 1000 3400 "" "36" "auto"]
Pad[70866 -4622 70866 4478 2400 1000 3400 "" "38" "auto"]
Pad[74803 -4622 74803 4478 2400 1000 3400 "" "40" "auto"]
Pad[78740 -4622 78740 4478 2400 1000 3400 "" "42" "auto"]
Pad[82677 -4622 82677 4478 2400 1000 3400 "" "44" "auto"]
Pad[86614 -4622 86614 4478 2400 1000 3400 "" "46" "auto"]
Pad[90551 -4622 90551 4478 2400 1000 3400 "" "48" "auto"]
Pad[98425 -4622 98425 4478 2400 1000 3400 "" "52" "auto"]
Pad[94488 -4622 94488 4478 2400 1000 3400 "" "50" "auto"]
Pad[102362 -4622 102362 4478 2400 1000 3400 "" "54" "auto"]
Pad[106299 -4622 106299 4478 2400 1000 3400 "" "56" "auto"]
Pad[110236 -4622 110236 4478 2400 1000 3400 "" "58" "auto"]
Pad[114173 -4622 114173 4478 2400 1000 3400 "" "60" "auto"]
Pad[3937 -4622 3937 4478 2400 1000 3400 "" "4" "auto"]
Pad[43307 9900 43307 19000 2400 1000 3400 "" "23" "auto,edge2"]
Pad[47244 9900 47244 19000 2400 1000 3400 "" "25" "auto,edge2"]
Pad[51181 9900 51181 19000 2400 1000 3400 "" "27" "auto,edge2"]
Pad[55118 9900 55118 19000 2400 1000 3400 "" "29" "auto,edge2"]
Pad[59055 9900 59055 19000 2400 1000 3400 "" "31" "auto,edge2"]
Pad[62992 9900 62992 19000 2400 1000 3400 "" "33" "auto,edge2"]
Pad[66929 9900 66929 19000 2400 1000 3400 "" "35" "auto,edge2"]
Pad[70866 9900 70866 19000 2400 1000 3400 "" "37" "auto,edge2"]
Pad[74803 9900 74803 19000 2400 1000 3400 "" "39" "auto,edge2"]
Pad[78740 9900 78740 19000 2400 1000 3400 "" "41" "auto,edge2"]
Pad[82677 9900 82677 19000 2400 1000 3400 "" "43" "auto,edge2"]
Pad[86614 9900 86614 19000 2400 1000 3400 "" "45" "auto,edge2"]
Pad[90551 9900 90551 19000 2400 1000 3400 "" "47" "auto,edge2"]
Pad[94488 9900 94488 19000 2400 1000 3400 "" "49" "auto,edge2"]
Pad[98425 9900 98425 19000 2400 1000 3400 "" "51" "auto,edge2"]
Pad[102362 9900 102362 19000 2400 1000 3400 "" "53" "auto,edge2"]
Pad[106299 9900 106299 19000 2400 1000 3400 "" "55" "auto,edge2"]
Pad[110236 9900 110236 19000 2400 1000 3400 "" "57" "auto,edge2"]
Pad[114173 9900 114173 19000 2400 1000 3400 "" "59" "auto,edge2"]
Pad[118110 9900 118110 19000 2400 1000 3400 "" "61" "auto,edge2"]
Pad[122047 9900 122047 19000 2400 1000 3400 "" "63" "auto,edge2"]
Pad[118110 -4622 118110 4478 2400 1000 3400 "" "62" "auto"]
ElementLine [134000 -9000 134000 24000 1000]
ElementLine [-11000 24000 134000 24000 1000]
ElementLine [-11000 -9000 134000 -9000 1000]
ElementLine [-11000 -9000 -11000 24000 1000]
)
Element["" "0603" "R10" "49.9" 218000 170500 4500 5000 1 100 ""]
(
Pad[-900 2400 900 2400 2400 3000 2400 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 3000 2400 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "CONNECTOR-10-2" "J15" "unknown" 77000 40500 -17200 -13200 0 100 ""]
(
Pin[0 0 6000 3000 6600 4000 "1" "1" "square,edge2"]
Pin[0 -10000 6000 3000 6600 4000 "2" "2" "edge2"]
Pin[10000 0 6000 3000 6600 4000 "3" "3" "edge2"]
Pin[10000 -10000 6000 3000 6600 4000 "4" "4" "edge2"]
Pin[20000 0 6000 3000 6600 4000 "5" "5" "edge2"]
Pin[20000 -10000 6000 3000 6600 4000 "6" "6" "edge2"]
Pin[30000 0 6000 3000 6600 4000 "7" "7" "edge2"]
Pin[30000 -10000 6000 3000 6600 4000 "8" "8" "edge2"]
Pin[40000 0 6000 3000 6600 4000 "9" "9" "edge2"]
Pin[40000 -10000 6000 3000 6600 4000 "10" "10" "edge2"]
Pin[50000 0 6000 3000 6600 4000 "11" "11" "edge2"]
Pin[50000 -10000 6000 3000 6600 4000 "12" "12" "edge2"]
Pin[60000 0 6000 3000 6600 4000 "13" "13" "edge2"]
Pin[60000 -10000 6000 3000 6600 4000 "14" "14" "edge2"]
Pin[70000 0 6000 3000 6600 4000 "15" "15" "edge2"]
Pin[70000 -10000 6000 3000 6600 4000 "16" "16" "edge2"]
Pin[80000 0 6000 3000 6600 4000 "17" "17" "edge2"]
Pin[80000 -10000 6000 3000 6600 4000 "18" "18" "edge2"]
Pin[90000 0 6000 3000 6600 4000 "19" "19" "edge2"]
Pin[90000 -10000 6000 3000 6600 4000 "20" "20" "edge2,thermal(1)"]
ElementLine [-5000 -5000 5000 -5000 1000]
ElementLine [5000 -5000 5000 5000 1000]
ElementLine [-5000 -15000 -5000 5000 2000]
ElementLine [-5000 -15000 95000 -15000 2000]
ElementLine [95000 -15000 95000 5000 2000]
ElementLine [-5000 5000 95000 5000 2000]
)
Element["" "CONNECTOR-5-2" "J17" "unknown" 183500 137500 49000 -12000 0 100 ""]
(
Pin[0 0 6000 3000 6600 4000 "1" "1" "square,usetherm,edge2,thermal(2)"]
Pin[0 -10000 6000 3000 6600 4000 "2" "2" "edge2"]
Pin[10000 0 6000 3000 6600 4000 "3" "3" "edge2"]
Pin[10000 -10000 6000 3000 6600 4000 "4" "4" "edge2"]
Pin[20000 0 6000 3000 6600 4000 "5" "5" "edge2"]
Pin[20000 -10000 6000 3000 6600 4000 "6" "6" "edge2"]
Pin[30000 0 6000 3000 6600 4000 "7" "7" "edge2"]
Pin[30000 -10000 6000 3000 6600 4000 "8" "8" "edge2"]
Pin[40000 0 6000 3000 6600 4000 "9" "9" "edge2,thermal(1)"]
Pin[40000 -10000 6000 3000 6600 4000 "10" "10" "edge2,thermal(1)"]
ElementLine [-5000 -5000 5000 -5000 1000]
ElementLine [5000 -5000 5000 5000 1000]
ElementLine [-5000 -15000 -5000 5000 2000]
ElementLine [-5000 -15000 45000 -15000 2000]
ElementLine [45000 -15000 45000 5000 2000]
ElementLine [-5000 5000 45000 5000 2000]
)
Element["" "SMA_VERT" "J18" "unknown" 160500 231500 17000 12000 0 100 ""]
(
Pin[0 0 9000 3000 9000 6000 "1" "1" ""]
Pin[-10000 -10000 9000 3000 9000 6000 "2" "2" "thermal(1,6)"]
Pin[10000 -10000 9000 3000 9000 6000 "3" "3" "thermal(1,6)"]
Pin[-10000 10000 9000 3000 9000 6000 "4" "4" "thermal(1,6)"]
Pin[10000 10000 9000 3000 9000 6000 "5" "5" "thermal(1,6)"]
ElementLine [-16000 -16000 16000 -16000 1000]
ElementLine [-16000 -16000 -16000 16000 1000]
ElementLine [-16000 16000 16000 16000 1000]
ElementLine [16000 -16000 16000 16000 1000]
)
Element["" "SMA_VERT" "J19" "unknown" 223500 231500 18000 11000 0 100 ""]
(
Pin[0 0 9000 3000 9000 6000 "1" "1" ""]
Pin[-10000 -10000 9000 3000 9000 6000 "2" "2" "thermal(1,6)"]
Pin[10000 -10000 9000 3000 9000 6000 "3" "3" "thermal(1,6)"]
Pin[-10000 10000 9000 3000 9000 6000 "4" "4" "thermal(1,6)"]
Pin[10000 10000 9000 3000 9000 6000 "5" "5" "thermal(1,6)"]
ElementLine [-16000 -16000 16000 -16000 1000]
ElementLine [-16000 -16000 -16000 16000 1000]
ElementLine [-16000 16000 16000 16000 1000]
ElementLine [16000 -16000 16000 16000 1000]
)
Element["" "0603" "R5" "49.9" 166000 174000 3500 -3000 0 100 ""]
(
Pad[-900 2400 900 2400 2400 3000 2400 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 3000 2400 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "0603" "R11" "49.9" 231000 171000 5000 3500 1 100 ""]
(
Pad[-900 2400 900 2400 2400 3000 2400 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 3000 2400 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["onsolder" "0603" "C25" "82pF" 216000 81000 -3000 -4500 0 100 "auto"]
(
Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "auto,square"]
Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "auto,square"]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [4200 2700 4200 -2700 600]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [-4200 2700 -4200 -2700 600]
)
Element["onsolder" "0603" "C26" "82pF" 206000 81000 -4000 -4000 0 100 "auto"]
(
Pad[2400 -900 2400 900 2400 3000 2400 "1" "1" "auto,square"]
Pad[-2400 -900 -2400 900 2400 3000 2400 "2" "2" "auto,square"]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [-4200 2700 -4200 -2700 600]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [4200 2700 4200 -2700 600]
)
Element["" "0603" "R9" "49.9" 229000 211000 5000 -1500 0 100 ""]
(
Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "square"]
Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "square"]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [4200 -2700 4200 2700 600]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [-4200 -2700 -4200 2700 600]
)
Element["" "0603" "C24" ".1uF" 197000 175000 3000 -9000 0 100 ""]
(
Pad[-900 2400 900 2400 2400 3000 2400 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 3000 2400 "2" "2" "square"]
ElementLine [-2700 4200 2700 4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [-2700 -4200 -2700 4200 600]
)
Element["" "0603" "R6" "1K" 188500 179500 -10500 -4000 0 100 ""]
(
Pad[-900 2400 900 2400 2400 3000 2400 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 3000 2400 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "0603" "R7" "1K" 189000 170000 -5500 -10000 0 100 ""]
(
Pad[-900 2400 900 2400 2400 3000 2400 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 3000 2400 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "0603" "R4" "49.9" 158000 174000 -10500 1500 0 100 ""]
(
Pad[-900 2400 900 2400 2400 3000 2400 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 3000 2400 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["onsolder" "0603" "C22" "82pF" 186000 81000 -6500 -4500 0 100 "auto"]
(
Pad[2400 -900 2400 900 2400 3000 2400 "1" "1" "auto,square"]
Pad[-2400 -900 -2400 900 2400 3000 2400 "2" "2" "auto,square"]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [-4200 2700 -4200 -2700 600]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [4200 2700 4200 -2700 600]
)
Element["" "0603" "R28" "0" 120000 184000 -6500 4500 0 100 ""]
(
Pad[2400 -900 2400 900 2400 3000 2400 "1" "1" "selected,square"]
Pad[-2400 -900 -2400 900 2400 3000 2400 "2" "2" "square"]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [-4200 -2700 -4200 2700 600]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [4200 -2700 4200 2700 600]
)
Element["" "CONNECTOR-8-2" "J16" "unknown" 70500 162500 -16000 -9000 0 100 ""]
(
Pin[0 0 6000 3000 6600 4000 "1" "1" "square,edge2"]
Pin[0 -10000 6000 3000 6600 4000 "2" "2" "edge2,thermal(1)"]
Pin[10000 0 6000 3000 6600 4000 "3" "3" "edge2"]
Pin[10000 -10000 6000 3000 6600 4000 "4" "4" "edge2,thermal(1)"]
Pin[20000 0 6000 3000 6600 4000 "5" "5" "edge2"]
Pin[20000 -10000 6000 3000 6600 4000 "6" "6" "edge2"]
Pin[30000 0 6000 3000 6600 4000 "7" "7" "edge2"]
Pin[30000 -10000 6000 3000 6600 4000 "8" "8" "edge2"]
Pin[40000 0 6000 3000 6600 4000 "9" "9" "edge2"]
Pin[40000 -10000 6000 3000 6600 4000 "10" "10" "edge2"]
Pin[50000 0 6000 3000 6600 4000 "11" "11" "edge2"]
Pin[50000 -10000 6000 3000 6600 4000 "12" "12" "edge2"]
Pin[60000 0 6000 3000 6600 4000 "13" "13" "edge2"]
Pin[60000 -10000 6000 3000 6600 4000 "14" "14" "edge2"]
Pin[70000 0 6000 3000 6600 4000 "15" "15" "edge2"]
Pin[70000 -10000 6000 3000 6600 4000 "16" "16" "edge2,thermal(1)"]
ElementLine [-5000 -5000 5000 -5000 1000]
ElementLine [5000 -5000 5000 5000 1000]
ElementLine [-5000 -15000 -5000 5000 2000]
ElementLine [-5000 -15000 75000 -15000 2000]
ElementLine [75000 -15000 75000 5000 2000]
ElementLine [-5000 5000 75000 5000 2000]
)
Element["" "0603" "R37" "348" 156000 209000 -16000 -2200 0 100 ""]
(
Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [-4200 -2700 -4200 2700 600]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [4200 -2700 4200 2700 600]
)
Element["" "CONNECTOR-8-2" "J24" "unknown" 10500 132500 19800 -3100 0 100 ""]
(
Pin[0 0 6000 3000 6600 4000 "1" "1" "square"]
Pin[10000 0 6000 3000 6600 4000 "2" "2" "thermal(1)"]
Pin[0 10000 6000 3000 6600 4000 "3" "3" ""]
Pin[10000 10000 6000 3000 6600 4000 "4" "4" "thermal(1)"]
Pin[0 20000 6000 3000 6600 4000 "5" "5" ""]
Pin[10000 20000 6000 3000 6600 4000 "6" "6" "thermal(1)"]
Pin[0 30000 6000 3000 6600 4000 "7" "7" ""]
Pin[10000 30000 6000 3000 6600 4000 "8" "8" "thermal(1)"]
Pin[0 40000 6000 3000 6600 4000 "9" "9" ""]
Pin[10000 40000 6000 3000 6600 4000 "10" "10" "thermal(1)"]
Pin[0 50000 6000 3000 6600 4000 "11" "11" ""]
Pin[10000 50000 6000 3000 6600 4000 "12" "12" "thermal(1)"]
Pin[0 60000 6000 3000 6600 4000 "13" "13" ""]
Pin[10000 60000 6000 3000 6600 4000 "14" "14" "thermal(1)"]
Pin[0 70000 6000 3000 6600 4000 "15" "15" ""]
Pin[10000 70000 6000 3000 6600 4000 "16" "16" "thermal(1)"]
ElementLine [5000 -5000 5000 5000 1000]
ElementLine [-5000 5000 5000 5000 1000]
ElementLine [-5000 -5000 15000 -5000 2000]
ElementLine [15000 -5000 15000 75000 2000]
ElementLine [-5000 75000 15000 75000 2000]
ElementLine [-5000 -5000 -5000 75000 2000]
)
Element["" "CONNECTOR-8-2" "J25" "unknown" 11000 15000 19200 -2600 0 100 ""]
(
Pin[0 0 6000 3000 6600 4000 "1" "1" "square"]
Pin[10000 0 6000 3000 6600 4000 "2" "2" "thermal(1)"]
Pin[0 10000 6000 3000 6600 4000 "3" "3" ""]
Pin[10000 10000 6000 3000 6600 4000 "4" "4" "thermal(1)"]
Pin[0 20000 6000 3000 6600 4000 "5" "5" ""]
Pin[10000 20000 6000 3000 6600 4000 "6" "6" "thermal(1)"]
Pin[0 30000 6000 3000 6600 4000 "7" "7" ""]
Pin[10000 30000 6000 3000 6600 4000 "8" "8" "thermal(1)"]
Pin[0 40000 6000 3000 6600 4000 "9" "9" ""]
Pin[10000 40000 6000 3000 6600 4000 "10" "10" "thermal(1)"]
Pin[0 50000 6000 3000 6600 4000 "11" "11" ""]
Pin[10000 50000 6000 3000 6600 4000 "12" "12" "thermal(1)"]
Pin[0 60000 6000 3000 6600 4000 "13" "13" ""]
Pin[10000 60000 6000 3000 6600 4000 "14" "14" "thermal(1)"]
Pin[0 70000 6000 3000 6600 4000 "15" "15" ""]
Pin[10000 70000 6000 3000 6600 4000 "16" "16" "thermal(1)"]
ElementLine [5000 -5000 5000 5000 1000]
ElementLine [-5000 5000 5000 5000 1000]
ElementLine [-5000 -5000 15000 -5000 2000]
ElementLine [15000 -5000 15000 75000 2000]
ElementLine [-5000 75000 15000 75000 2000]
ElementLine [-5000 -5000 -5000 75000 2000]
)
Element["" "0603" "R33" "348" 245000 208000 4000 -1200 0 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "0603" "R34" "348" 246000 193000 5000 -2200 0 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "SO8" "U1" "unknown" 88500 179000 18000 20000 0 100 ""]
(
Pad[-1900 0 900 0 2000 3000 2000 "1" "1" ""]
Pad[-1900 5000 900 5000 2000 3000 2000 "2" "2" "square"]
Pad[-1900 10000 900 10000 2000 3000 2000 "3" "3" "square"]
Pad[-1900 15000 900 15000 2000 3000 2000 "4" "4" "square"]
Pad[18500 15000 21300 15000 2000 3000 2000 "5" "5" "square,edge2"]
Pad[18500 10000 21300 10000 2000 3000 2000 "6" "6" "square,edge2"]
Pad[18500 5000 21300 5000 2000 3000 2000 "7" "7" "square,edge2"]
Pad[18500 0 21300 0 2000 3000 2000 "8" "8" "square,edge2"]
ElementLine [-2900 -2500 -2900 17500 1000]
ElementLine [-2900 17500 22300 17500 1000]
ElementLine [22300 -2500 22300 17500 1000]
ElementLine [7200 -2500 22300 -2500 1000]
ElementLine [-2900 -2500 12200 -2500 1000]
ElementArc [9700 -2500 2500 2500 0 180 1000]
)
Element["" "SO8" "U2" "unknown" 225000 194000 -3000 -15000 0 100 ""]
(
Pad[7000 7500 13500 7500 2000 1000 3000 "1" "1" "square,edge2"]
Pad[7000 2500 13500 2500 2000 1000 3000 "2" "2" "square,edge2"]
Pad[7000 -2500 13500 -2500 2000 1000 3000 "3" "3" "square,edge2"]
Pad[7000 -7500 13500 -7500 2000 1000 3000 "4" "4" "square,edge2"]
Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "5" "5" "square"]
Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "6" "6" "square"]
Pad[-13500 2500 -7000 2500 2000 1000 3000 "7" "7" "square"]
Pad[-13500 7500 -7000 7500 2000 1000 3000 "8" "8" "square"]
ElementLine [-15500 9500 -2500 9500 1000]
ElementLine [2500 9500 15500 9500 1000]
ElementLine [-15500 -9500 -15500 9500 1000]
ElementLine [-15500 -9500 15500 -9500 1000]
ElementLine [15500 -9500 15500 9500 1000]
ElementArc [0 9500 2500 2500 180 180 1000]
)
Element["" "0603" "R30" "348" 218000 211000 -15000 -1200 0 100 ""]
(
Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [-4200 -2700 -4200 2700 600]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [4200 -2700 4200 2700 600]
)
Element["onsolder" "0603" "C23" "82pF" 196000 81000 -5000 -4500 0 100 "auto"]
(
Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "auto,square"]
Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "auto,square"]
ElementLine [-4200 2700 4200 2700 600]
ElementLine [4200 2700 4200 -2700 600]
ElementLine [-4200 -2700 4200 -2700 600]
ElementLine [-4200 2700 -4200 -2700 600]
)
Element["" "0603" "R31" "348" 205000 194000 -12000 -4200 0 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "0603" "R36" "348" 184000 209000 4000 -2200 0 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "0603" "R38" "348" 139000 196000 -8200 4000 1 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "0603" "R39" "348" 178000 195000 3000 800 0 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "SO8" "U3" "unknown" 158000 195000 -3000 -14000 0 100 ""]
(
Pad[7000 7500 13500 7500 2000 1000 3000 "1" "1" "square,edge2"]
Pad[7000 2500 13500 2500 2000 1000 3000 "2" "2" "square,edge2"]
Pad[7000 -2500 13500 -2500 2000 1000 3000 "3" "3" "square,edge2"]
Pad[7000 -7500 13500 -7500 2000 1000 3000 "4" "4" "square,edge2"]
Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "5" "5" "square"]
Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "6" "6" "square"]
Pad[-13500 2500 -7000 2500 2000 1000 3000 "7" "7" "square"]
Pad[-13500 7500 -7000 7500 2000 1000 3000 "8" "8" "square"]
ElementLine [-15500 9500 -2500 9500 1000]
ElementLine [2500 9500 15500 9500 1000]
ElementLine [-15500 -9500 -15500 9500 1000]
ElementLine [-15500 -9500 15500 -9500 1000]
ElementLine [15500 -9500 15500 9500 1000]
ElementArc [0 9500 2500 2500 180 180 1000]
)
Element["" "0603" "R35" "24.9" 184000 219400 4000 -2200 0 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Element["" "0603" "C50" ".1uF" 184000 229000 -2000 6800 0 100 ""]
(
Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "found,square"]
Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
ElementLine [-2700 -4200 -2700 4200 600]
ElementLine [-2700 -4200 2700 -4200 600]
ElementLine [2700 -4200 2700 4200 600]
ElementLine [-2700 4200 2700 4200 600]
)
Layer(1 "solder")
(
Line[197355 100289 197500 100616 1000 2000 ""]
Line[141499 139901 141499 139901 1000 1000 "auto"]
Line[223000 113000 217040 112811 1000 2000 ""]
Line[165493 90823 165500 79500 1000 2000 ""]
Line[225000 191000 229000 195000 800 2000 "clearline"]
Line[130426 114811 130433 115000 1000 1000 "auto"]
Line[94871 91311 87000 91500 1000 2000 ""]
Line[156792 122699 156792 122699 1000 1000 "auto"]
Line[20500 202500 23000 200000 1000 2000 "clearline"]
Line[140500 162500 140500 162500 1000 1000 "auto"]
Line[165859 114811 165859 91311 1000 2000 ""]
Line[219000 191000 225000 191000 800 2000 "clearline"]
Line[94993 114811 85000 115000 1000 2000 ""]
Line[161993 114811 161500 114500 1000 2000 ""]
Line[142237 114811 142500 115256 1000 2000 ""]
Line[177500 131500 177500 130500 1000 2000 ""]
Line[107199 148000 107199 148000 1000 1000 "auto"]
Line[73000 162500 71000 162500 1000 2000 "clearline"]
Line[92500 132000 102500 122000 1000 2000 ""]
Line[183500 137500 177500 131500 1000 2000 ""]
Line[177670 114811 177677 142177 1000 2000 ""]
Line[102500 122000 102500 120000 1000 2000 ""]
Line[94993 91189 94993 114811 1000 2000 ""]
Line[189493 114811 189500 121500 1000 2000 ""]
Line[189500 121500 183500 127500 1000 2000 ""]
Line[193493 114811 193500 127500 1000 2000 ""]
Line[197493 115311 197500 121500 1000 2000 ""]
Line[197500 121500 203500 127500 1000 2000 ""]
Line[212993 114811 213000 117500 1000 2000 ""]
Line[213000 118000 215500 120500 1000 2000 ""]
Line[215500 120500 224500 120500 1000 2000 ""]
Line[224500 120500 229500 125500 1000 2000 ""]
Line[229500 125500 229500 139000 1000 2000 ""]
Line[229500 139000 224500 144000 1000 2000 ""]
Line[224500 144000 220000 144000 1000 2000 ""]
Line[220000 144000 213500 137500 1000 2000 ""]
Line[204993 114811 205000 116500 1000 2000 ""]
Line[204993 116311 208500 120000 1000 2000 ""]
Line[201493 114811 201500 119500 1000 2000 ""]
Line[208500 120000 208500 130000 1000 2000 ""]
Line[208500 130000 205500 132500 1000 2000 ""]
Line[205500 132500 198500 132500 1000 2000 ""]
Line[198500 132500 193500 137500 1000 2000 ""]
Line[208993 114811 209000 117000 1000 2000 ""]
Line[209000 117000 209500 117500 1000 2000 ""]
Line[209500 117500 209500 118000 1000 2000 ""]
Line[209500 118000 214500 123000 1000 2000 ""]
Line[214500 123000 216000 123000 1000 2000 ""]
Line[216000 123000 218500 125500 1000 2000 ""]
Line[218500 125500 218500 130500 1000 2000 ""]
Line[218500 130500 216500 132500 1000 2000 ""]
Line[216500 132500 210500 132500 1000 2000 ""]
Line[201500 119500 202500 120500 1000 2000 ""]
Line[210500 132500 208500 133500 1000 2000 ""]
Line[208500 133500 204500 137500 1000 2000 ""]
Line[87000 30500 87000 31000 1000 2000 ""]
Line[87000 31000 92000 36000 1000 2000 ""]
Line[92000 36000 92000 74500 1000 2000 ""]
Line[92000 74500 102500 85000 1000 2000 ""]
Line[102500 85000 102493 92811 1000 2000 ""]
Line[97000 40500 97000 76000 1000 2000 ""]
Line[97000 76000 106500 85500 1000 2000 ""]
Line[106500 85500 106493 92311 1000 2000 ""]
Line[106493 92311 107000 93000 1000 2000 ""]
Line[97000 30500 97500 30500 1000 2000 ""]
Line[97500 30500 102000 35000 1000 2000 ""]
Line[102000 35000 102000 76000 1000 2000 ""]
Line[102000 76000 110500 84500 1000 2000 ""]
Line[110500 84500 110493 92311 1000 2000 ""]
Line[110493 92311 111000 93000 1000 2000 ""]
Line[107000 40500 107000 74500 1000 2000 ""]
Line[107000 74500 107500 75000 1000 2000 ""]
Line[107500 75000 114500 82000 1000 2000 ""]
Line[114500 82000 114493 91811 1000 2000 ""]
Line[107000 30500 112000 35500 1000 2000 ""]
Line[112000 35500 112000 74500 1000 2000 ""]
Line[112000 74500 118500 81000 1000 2000 ""]
Line[118500 81000 118493 91811 1000 2000 ""]
Line[118493 91811 119500 93000 1000 2000 ""]
Line[117000 40000 117000 40500 1000 2000 ""]
Line[117000 74500 122500 80000 1000 2000 ""]
Line[122500 80000 122493 92311 1000 2000 ""]
Line[117000 30500 122000 35500 1000 2000 ""]
Line[122000 35500 122000 74000 1000 2000 ""]
Line[122000 74000 126500 78500 1000 2000 ""]
Line[126500 78500 126493 92311 1000 2000 ""]
Line[126493 92311 127000 93000 1000 2000 ""]
Line[127000 41000 127000 73500 1000 2000 ""]
Line[127000 73500 130500 77000 1000 2000 ""]
Line[130500 77000 130493 95811 1000 2000 ""]
Line[127000 30500 127000 31000 1000 2000 ""]
Line[127000 31000 132000 36000 1000 2000 ""]
Line[132000 36000 132000 73500 1000 2000 ""]
Line[132000 73500 134500 76000 1000 2000 ""]
Line[134500 76000 134493 92311 1000 2000 ""]
Line[134493 92311 135000 93000 1000 2000 ""]
Line[134993 92811 134500 93000 1000 2000 ""]
Line[137000 40500 136993 89811 1000 2000 ""]
Line[136993 89811 138000 91000 1000 2000 ""]
Line[137000 30500 141500 35000 1000 2000 ""]
Line[141500 35000 141493 91311 1000 2000 ""]
Line[147000 41000 145500 42500 1000 2000 ""]
Line[145500 42500 145493 91811 1000 2000 ""]
Line[145493 91811 146000 92000 1000 2000 ""]
Line[147000 30500 147500 30500 1000 2000 ""]
Line[147500 30500 151500 34500 1000 2000 ""]
Line[151500 34500 151500 53000 1000 2000 ""]
Line[151500 53000 148500 56000 1000 2000 ""]
Line[148500 56000 148500 89500 1000 2000 ""]
Line[148500 89500 149993 90811 1000 2000 ""]
Line[157000 40500 157000 56500 1000 2000 ""]
Line[157000 56500 154000 59500 1000 2000 ""]
Line[154000 59500 153993 93311 1000 2000 ""]
Line[157000 30500 157000 31000 1000 2000 ""]
Line[157000 31000 162000 36000 1000 2000 ""]
Line[162000 36000 162000 59500 1000 2000 ""]
Line[162000 59500 158000 63500 1000 2000 ""]
Line[158000 63500 157993 91311 1000 2000 ""]
Line[161993 91811 162000 64500 1000 2000 ""]
Line[162000 64500 167000 59500 1000 2000 ""]
Line[167000 59500 167000 41000 1000 2000 ""]
Line[102993 114811 98930 114811 1000 2000 ""]
Line[98493 114811 98500 121000 1000 2000 ""]
Line[134363 114811 134500 115130 1000 2000 ""]
Line[94993 91189 94878 91500 1000 2000 ""]
Line[98500 121000 75500 144000 1000 2000 ""]
Line[75500 144000 75500 156500 1000 2000 ""]
Line[75500 156500 80500 161500 1000 2000 ""]
Line[80500 161500 80500 162500 1000 2000 ""]
Line[106000 123000 115000 123000 1000 1000 "auto"]
Line[102867 114811 103000 115000 1000 2000 ""]
Line[90500 152500 92699 152500 1000 1000 "auto"]
Line[12000 15500 11000 15500 1000 2000 ""]
Line[99199 146000 99697 146000 1000 1000 "auto"]
Line[167000 40500 167000 41000 1000 2000 ""]
Line[17000 10500 12000 15500 1000 2000 ""]
Line[137992 115119 138307 115000 1000 1000 "auto"]
Line[137992 115119 137999 117200 1000 1000 "auto"]
Line[67000 10500 17000 10500 1000 2000 ""]
Line[106000 149199 106000 158000 1000 1000 "auto"]
Line[87000 30500 67000 10500 1000 2000 ""]
Line[145500 42500 145500 40500 1000 2000 ""]
Line[141499 139901 141500 139900 1000 1000 "auto"]
Line[202172 103000 205229 99747 1000 2000 ""]
Line[146174 114811 146181 141900 1000 1000 "auto"]
Line[145000 143081 146181 141900 1000 1000 "auto"]
Line[145000 143081 145000 158000 1000 1000 "auto"]
Line[185500 103000 202172 103000 1000 2000 ""]
Line[157985 114811 157992 121499 1000 1000 "auto"]
Line[185544 100289 185544 108811 1000 2000 ""]
Line[161922 114811 161929 133399 1000 1000 "auto"]
Line[161929 133399 160692 134636 1000 1000 "auto"]
Line[106493 115811 106500 115000 1000 2000 ""]
Line[106493 114811 110493 114811 1000 2000 ""]
Line[165859 91189 165500 91012 1000 2000 ""]
Line[141500 139900 141500 139900 1000 1000 "auto"]
Line[197500 103000 217000 103000 1000 2000 ""]
Line[197493 100427 197500 103000 1000 2000 ""]
Line[55000 55000 57000 55000 1000 1000 ""]
Line[145500 40500 147000 40500 1000 2000 ""]
Line[213103 91311 213000 91500 1000 2000 ""]
Line[213103 114811 213000 115000 1000 2000 ""]
Line[209166 114811 209000 115000 1000 2000 ""]
Line[204993 116311 205000 115000 1000 2000 ""]
Line[204993 114811 205236 115000 1000 2000 ""]
Line[201292 114811 201500 115000 1000 2000 ""]
Line[147000 40500 147000 41000 1000 2000 ""]
Line[197355 115311 197500 115500 1000 2000 ""]
Line[193418 114811 193500 115000 1000 2000 ""]
Line[189481 114811 189500 115000 1000 2000 ""]
Line[127000 40500 127000 41000 1000 2000 ""]
Line[161686 114311 161500 114500 1000 1000 "auto"]
Line[161922 114811 162000 115000 1000 1000 "auto"]
Line[117000 40500 117000 40000 1000 2000 ""]
Line[142237 115067 142500 115256 1000 2000 ""]
Line[203500 137500 204500 137500 1000 2000 ""]
Line[209166 92811 209000 93000 1000 2000 ""]
Line[80500 162500 80500 163000 1000 2000 ""]
Line[217040 91189 217040 114311 1000 2000 ""]
Line[142237 115067 142244 139156 1000 1000 "auto"]
Line[189481 92311 189500 92500 1000 2000 ""]
Line[80500 162500 80500 163000 1000 2000 ""]
Line[193418 91811 193000 92000 1000 2000 ""]
Line[98500 121000 98500 121500 1000 2000 ""]
Line[161922 91811 162000 92000 1000 2000 ""]
Line[98930 114811 98500 115000 1000 2000 ""]
Line[157985 91311 158000 91500 1000 2000 ""]
Line[117000 40500 117000 74500 1000 2000 ""]
Line[154048 93311 154000 93500 1000 2000 ""]
Line[161922 114547 161693 114500 1000 1000 "auto"]
Line[150111 90811 150000 91000 1000 2000 ""]
Line[102500 120000 106493 115811 1000 2000 ""]
Line[146174 91811 146000 92000 1000 2000 ""]
Line[157992 121499 156792 122699 1000 1000 "auto"]
Line[142237 91311 141500 91500 1000 2000 ""]
Line[145000 158000 140500 162500 1000 1000 "auto"]
Line[138300 90811 138000 91000 1000 2000 ""]
Line[229000 195000 229000 199000 800 2000 "clearline"]
Line[134363 92811 134500 93000 1000 2000 ""]
Line[142244 139156 141500 139900 1000 1000 "auto"]
Line[130426 95811 130500 96000 1000 2000 ""]
Line[106000 158000 110500 162500 1000 1000 "auto"]
Line[126489 92811 127000 93000 1000 2000 ""]
Line[107199 148000 106000 149199 1000 1000 "auto"]
Line[134363 114941 134500 115130 1000 2000 ""]
Line[130099 115138 130433 115000 1000 1000 "auto"]
Line[122552 92311 122500 92500 1000 2000 ""]
Line[99697 146000 130099 115402 1000 1000 "auto"]
Line[118615 92811 119500 93000 1000 2000 ""]
Line[96000 149199 99199 146000 1000 1000 "auto"]
Line[114678 91811 114500 92000 1000 2000 ""]
Line[92699 152500 96000 149199 1000 1000 "auto"]
Line[110741 92811 111000 93000 1000 2000 ""]
Line[115000 123000 122552 115075 1000 1000 "auto"]
Line[106804 92811 107000 93000 1000 2000 ""]
Line[137999 117200 107199 148000 1000 1000 "auto"]
Line[102867 92811 102500 93000 1000 2000 ""]
Line[98493 114811 98937 115000 1000 2000 ""]
Line[126489 114811 100500 140996 1000 2000 ""]
Line[96000 149199 96000 149199 1000 1000 "auto"]
Line[90500 162500 85500 157500 1000 2000 ""]
Line[85500 157500 85500 144000 1000 2000 ""]
Line[85500 144000 102500 127000 1000 2000 ""]
Line[102500 127000 108500 127000 1000 2000 ""]
Line[123500 127000 134993 115811 1000 2000 ""]
Line[134993 115811 135000 114000 1000 2000 ""]
Line[154048 114811 153500 115555 1000 2000 ""]
Line[153493 115366 153500 163000 1000 2000 ""]
Line[153500 163000 146000 170500 1000 2000 ""]
Line[146000 170500 127000 170500 1000 2000 ""]
Line[127000 170500 120000 163500 1000 2000 ""]
Line[120000 163500 120000 163000 1000 2000 ""]
Line[150111 114811 150118 160382 1000 2000 ""]
Line[150118 160382 143000 167500 1000 2000 ""]
Line[143000 167500 129559 167500 1000 2000 ""]
Line[129559 167500 125000 162941 1000 2000 ""]
Line[125000 162941 125000 157500 1000 2000 ""]
Line[125000 157500 120500 153000 1000 2000 ""]
Line[177670 91189 181607 91189 1000 2000 ""]
Line[177670 114811 181493 114811 1000 2000 ""]
Line[181607 91189 181607 114811 1000 2000 ""]
Line[185544 91189 183600 89245 1000 2000 "clearline"]
Line[183600 89245 183600 81000 1000 2000 "clearline"]
Line[189481 91189 189000 90708 1000 2000 "clearline"]
Line[189000 90708 189000 82000 1000 2000 "clearline"]
Line[193418 91189 193600 91007 1000 2000 "clearline"]
Line[194000 74000 193600 74400 1000 2000 "clearline"]
Line[205229 91189 203600 89560 1000 2000 "clearline"]
Line[203600 89560 203600 81000 1000 2000 "clearline"]
Line[198400 80100 197000 81500 1000 2000 "clearline"]
Line[197000 81500 197000 93000 1000 2000 "clearline"]
Line[209166 91189 208400 90423 1000 2000 "clearline"]
Line[208400 90423 208400 81000 1000 2000 "clearline"]
Line[213103 91189 213600 90692 1000 2000 "clearline"]
Line[213600 90692 213600 81000 1000 2000 "clearline"]
Line[217040 91189 218400 89829 1000 2000 "clearline"]
Line[218400 89829 218400 81000 1000 2000 "clearline"]
Line[193600 91007 193600 74400 1000 2000 "clearline"]
Line[188000 74000 188400 74400 1000 2000 "clearline"]
Line[188400 74400 188400 81000 1000 2000 "clearline"]
Line[211000 74000 209000 76000 1000 2000 "clearline"]
Line[209000 76000 209000 81000 1000 2000 "clearline"]
Line[216000 77000 213000 80000 1000 2000 "clearline"]
Line[213000 80000 213000 81000 1000 2000 "clearline"]
Line[206000 178000 219000 191000 800 2000 "clearline"]
Line[173733 114811 174000 114544 1000 2000 "clearline"]
Line[174000 114544 174000 99000 1000 2000 "clearline"]
Line[173733 91189 177922 87000 1000 2000 "clearline"]
Line[177922 87000 183000 87000 1000 2000 "clearline"]
Line[128000 183000 135000 176000 800 2000 "clearline"]
Line[135000 176000 137000 176000 800 2000 "clearline"]
Text[224500 47000 0 100 "SOLDER SIDE" "auto"]
)
Layer(2 "GND-sldr")
(
Polygon("clearpoly")
(
[1500 1000] [168000 1000] [168000 145500] [1500 145500]
)
Polygon("clearpoly")
(
[155000 147500] [176500 147500] [176500 246500] [155000 246500]
)
Polygon("clearpoly")
(
[142000 198000] [4000 198000] [4000 245500] [142000 245500]
)
Polygon("clearpoly")
(
[146500 204000] [159000 204000] [159000 246500] [146500 246500]
)
Polygon("clearpoly")
(
[4000 145500] [153500 145500] [153500 202000] [4000 202000]
)
Polygon("clearpoly")
(
[169000 55000] [272500 55000] [272500 246500] [169000 246500]
)
)
Layer(3 "Vcc-sldr")
(
Line[97000 30500 92500 26000 1000 2000 ""]
Line[92500 26000 51000 26000 1000 2000 ""]
Line[51000 26000 46000 31000 1000 2000 ""]
Line[46000 31000 16500 31000 1000 2000 ""]
Line[16500 31000 12000 35500 1000 2000 ""]
Line[12000 35500 11000 35500 1000 2000 ""]
Line[107000 40500 102000 35500 1000 2000 ""]
Line[102000 35500 31000 35500 1000 2000 ""]
Line[31000 35500 26000 40500 1000 2000 ""]
Line[26000 40500 17500 40500 1000 2000 ""]
Line[17500 40500 12500 45500 1000 2000 ""]
Line[12500 45500 11000 45500 1000 2000 ""]
Line[107000 30500 111500 35000 1000 2000 ""]
Line[111500 35000 111500 42500 1000 2000 ""]
Line[111500 42500 108000 46500 1000 2000 ""]
Line[11000 88000 11000 86000 1000 2000 ""]
Line[26941 45500 21941 50500 1000 2000 ""]
Line[21941 50500 15500 50500 1000 2000 ""]
Line[15500 50500 11000 55000 1000 2000 ""]
Line[117000 40500 87000 70500 1000 2000 ""]
Line[87000 70500 18000 70500 1000 2000 ""]
Line[18000 70500 13500 66000 1000 2000 ""]
Line[13500 66000 11000 66000 1000 2000 ""]
Line[117000 30500 122000 35500 1000 2000 ""]
Line[122000 35500 122000 43500 1000 2000 ""]
Line[122000 43500 85500 80000 1000 2000 ""]
Line[85500 80000 16000 80000 1000 2000 ""]
Line[16000 80000 11500 75500 1000 2000 ""]
Line[11500 75500 11000 75500 1000 2000 ""]
Line[127000 40500 127000 42500 1000 2000 ""]
Line[127000 42500 87000 82500 1000 2000 ""]
Line[87000 82500 33500 82500 1000 2000 ""]
Line[33500 82500 25500 90500 1000 2000 ""]
Line[25500 90500 13500 90500 1000 2000 ""]
Line[13500 90500 11000 88000 1000 2000 ""]
Line[27000 45500 34500 45500 1000 2000 ""]
Line[34500 45500 41000 39000 1000 2000 ""]
Line[41000 39000 68000 39000 1000 2000 ""]
Line[68000 39000 68000 41500 1000 2000 ""]
Line[68000 41500 73500 47000 1000 2000 ""]
Line[73500 47000 107500 47000 1000 2000 ""]
Line[107500 47000 108000 46500 1000 2000 ""]
Line[127000 30500 132000 35500 1000 2000 ""]
Line[132000 35500 132000 46500 1000 2000 ""]
Line[132000 46500 93500 85000 1000 2000 ""]
Line[93500 85000 37500 85000 1000 2000 ""]
Line[37500 85000 11000 111500 1000 2000 ""]
Line[11000 111500 11000 132500 1000 2000 ""]
Line[137000 40500 137000 45500 1000 2000 ""]
Line[137000 45500 95500 87000 1000 2000 ""]
Line[95500 87000 45500 87000 1000 2000 ""]
Line[45500 87000 16000 116500 1000 2000 ""]
Line[16000 116500 16000 138000 1000 2000 ""]
Line[16000 138000 11000 143000 1000 2000 ""]
Line[137000 30500 142000 35500 1000 2000 ""]
Line[142000 35500 142000 45500 1000 2000 ""]
Line[142000 45500 92500 95000 1000 2000 ""]
Line[92500 95000 46000 95000 1000 2000 ""]
Line[46000 95000 26500 114500 1000 2000 ""]
Line[26500 114500 26500 142441 1000 2000 ""]
Line[26500 142441 22441 146500 1000 2000 ""]
Line[22441 146500 17000 146500 1000 2000 ""]
Line[17000 146500 11000 152500 1000 2000 ""]
Line[147000 40500 147000 44000 1000 2000 ""]
Line[147000 44000 93500 97500 1000 2000 ""]
Line[93500 97500 48500 97500 1000 2000 ""]
Line[48500 97500 29000 117000 1000 2000 ""]
Line[29000 117000 29000 149941 1000 2000 ""]
Line[29000 149941 21441 157500 1000 2000 ""]
Line[21441 157500 17000 157500 1000 2000 ""]
Line[17000 157500 11500 163000 1000 2000 ""]
Line[147000 30500 151500 35000 1000 2000 ""]
Line[151500 35000 151500 46785 1000 2000 ""]
Line[151500 46785 89285 109000 1000 2000 ""]
Line[89285 109000 43500 109000 1000 2000 ""]
Line[43500 109000 32000 120500 1000 2000 ""]
Line[32000 120500 32000 156941 1000 2000 ""]
Line[32000 156941 21941 167000 1000 2000 ""]
Line[21941 167000 16500 167000 1000 2000 ""]
Line[16500 167000 11000 172500 1000 2000 ""]
Line[157000 40500 157000 43690 1000 2000 ""]
Line[157000 43690 89690 111000 1000 2000 ""]
Line[89690 111000 46000 111000 1000 2000 ""]
Line[46000 111000 34500 122500 1000 2000 ""]
Line[34500 122500 34500 164441 1000 2000 ""]
Line[34500 164441 21941 177000 1000 2000 ""]
Line[21941 177000 17000 177000 1000 2000 ""]
Line[17000 177000 11000 183000 1000 2000 ""]
Line[157000 30500 161500 35000 1000 2000 ""]
Line[161500 35000 161500 47000 1000 2000 ""]
Line[161500 47000 90000 118500 1000 2000 ""]
Line[90000 118500 45000 118500 1000 2000 ""]
Line[45000 118500 36500 127000 1000 2000 ""]
Line[36500 127000 36500 172441 1000 2000 ""]
Line[36500 172441 21441 187500 1000 2000 ""]
Line[21441 187500 16000 187500 1000 2000 ""]
Line[16000 187500 11500 192000 1000 2000 ""]
Line[167000 40500 167000 47000 1000 2000 ""]
Line[167000 47000 30000 184000 1000 2000 ""]
Line[30000 184000 30000 188941 1000 2000 ""]
Line[30000 188941 21941 197000 1000 2000 ""]
Line[21941 197000 16500 197000 1000 2000 ""]
Line[16500 197000 11000 202500 1000 2000 ""]
Line[36500 169500 36500 166000 1000 2000 "clearline"]
Polygon("clearpoly")
(
[259000 120000] [169000 120000] [169000 208000] [259000 208000]
)
Polygon("clearpoly")
(
[130000 208000] [185000 208000] [185000 180000] [130000 180000]
)
Polygon("clearpoly")
(
[179000 203000] [205000 203000] [205000 241000] [179000 241000]
)
)
Layer(4 "component")
(
Line[206500 120500 213500 127500 1000 2000 ""]
Line[107000 194000 107000 194500 1000 2000 ""]
Line[126059 136941 120101 142899 1000 1000 "auto"]
Line[146398 122698 156790 122698 1000 1000 "auto"]
Line[90500 189000 87500 189000 1000 2000 ""]
Line[109000 127000 110000 127500 1000 2000 ""]
Line[109500 127500 124000 127500 1000 2000 ""]
Line[89400 179000 89400 178500 1000 2000 ""]
Line[151401 146899 159500 135500 1000 1000 "auto,rubberend"]
Line[132778 185351 117278 196851 1000 2000 ""]
Line[202500 120500 206500 120500 1000 2000 ""]
Line[70000 182000 70500 182000 1000 2000 "clearline"]
Line[130500 152500 130500 152500 1000 1000 "auto"]
Line[123000 178500 132630 178499 1000 2000 ""]
Line[110300 178500 123000 178500 1000 2000 ""]
Line[101801 159000 101801 159000 1000 1000 "auto"]
Line[98500 197000 90500 189000 1000 2000 ""]
Line[120101 142899 120101 142899 1000 1000 "auto"]
Line[126000 158000 130500 162500 1000 1000 "auto"]
Line[103801 157000 103801 157000 1000 1000 "auto"]
Line[100500 160301 101801 159000 1000 1000 "auto"]
Line[122400 183100 122500 183200 1000 2000 ""]
Line[160292 120398 159093 119199 1000 1000 "auto"]
Line[144999 124097 139198 129898 1000 1000 "auto"]
Line[132630 178499 132778 185351 1000 2000 ""]
Line[70500 162500 70500 182500 1000 2000 ""]
Line[130500 162500 130500 162500 1000 1000 "auto"]
Line[107500 189000 107000 189500 1000 2000 ""]
Line[151894 133398 160292 125000 1000 1000 "auto"]
Line[136101 146899 144999 146899 1000 1000 "auto"]
Line[16000 30500 11500 26000 1000 2000 ""]
Line[126059 136941 126059 136941 1000 1000 "auto"]
Line[117278 196851 98500 197000 1000 2000 ""]
Line[103499 157302 103499 157302 1000 1000 "auto"]
Line[75500 148500 92000 132000 1000 2000 ""]
Line[143801 119199 159093 119199 1000 1000 "auto"]
Line[160500 231500 160500 232000 1000 2000 ""]
Line[103801 157000 106000 154801 1000 1000 "auto"]
Line[130300 144899 130300 144899 1000 1000 "auto"]
Line[100500 152500 100500 150000 1000 2000 ""]
Line[100500 152500 100500 150000 1000 2000 ""]
Line[152000 146900 145000 146900 1000 1000 "auto"]
Line[101801 159000 103499 157302 1000 1000 "auto"]
Line[144999 124097 144999 124097 1000 1000 "auto"]
Line[117600 184500 117000 184500 1000 2000 ""]
Line[110500 152500 110500 152500 1000 1000 "auto"]
Line[139198 129898 139198 129898 1000 1000 "auto"]
Line[96000 183000 107500 194500 1000 2000 ""]
Line[109800 184000 116500 184000 1000 2000 ""]
Line[116500 184000 117000 184500 1000 2000 ""]
Line[101000 183000 107500 189500 1000 2000 ""]
Line[100500 153000 100500 152500 1000 2000 ""]
Line[83500 181000 86500 184000 1000 2000 ""]
Line[89500 178500 89000 179000 1000 2000 ""]
Line[137106 138093 130300 144899 1000 1000 "auto"]
Line[90500 152500 85500 157500 1000 2000 ""]
Line[85500 157500 85500 173000 1000 2000 ""]
Line[85500 173000 83500 175000 1000 2000 ""]
Line[83500 175000 83500 181000 1000 2000 ""]
Line[90500 162500 89000 164000 1000 2000 ""]
Line[89000 164000 89000 179000 1000 2000 ""]
Line[100500 162500 101000 163000 1000 2000 ""]
Line[101000 163000 101000 183500 1000 2000 ""]
Line[100500 152500 96000 157000 1000 2000 ""]
Line[96000 157000 96000 183000 1000 2000 ""]
Line[96000 183000 96500 183500 1000 2000 ""]
Line[100500 162500 100500 160301 1000 1000 "auto"]
Line[32500 30500 16000 30500 1000 2000 ""]
Line[103801 157000 103499 157302 1000 1000 "auto"]
Line[37000 35000 32500 30500 1000 2000 ""]
Line[106000 123000 106000 154801 1000 1000 "auto"]
Line[141499 133398 141499 139901 1000 1000 "auto"]
Line[141499 133398 151894 133398 1000 1000 "auto"]
Line[160292 125000 160292 120398 1000 1000 "auto"]
Line[126059 136941 143801 119199 1000 1000 "auto"]
Line[91500 35000 37000 35000 1000 2000 ""]
Line[110500 152500 120101 142899 1000 1000 "auto"]
Line[97000 40500 91500 35000 1000 2000 ""]
Line[156791 122699 156792 122699 1000 1000 "auto"]
Line[156790 122698 156791 122699 1000 1000 "auto"]
Line[144999 124097 146398 122698 1000 1000 "auto"]
Line[109800 179000 110300 178500 1000 2000 ""]
Line[137106 131990 139198 129898 1000 1000 "auto"]
Line[137106 131990 137106 138093 1000 1000 "auto"]
Line[126000 149199 130300 144899 1000 1000 "auto"]
Line[126000 149199 126000 158000 1000 1000 "auto"]
Line[70500 182500 77000 189000 1000 2000 ""]
Line[92000 132000 92500 132000 1000 2000 ""]
Line[70500 162500 75500 157500 1000 2000 ""]
Line[77000 189000 87000 189000 1000 2000 ""]
Line[75500 157500 75500 148500 1000 2000 ""]
Line[144999 146899 145000 146900 1000 1000 "auto"]
Line[130500 152500 136101 146899 1000 1000 "auto"]
Line[100500 153000 100500 141000 1000 2000 ""]
Line[170500 221500 171000 222000 1000 2000 "clearline"]
Line[171000 222000 183000 222000 1000 2000 "clearline"]
Line[160500 231500 159000 230000 1000 2000 "clearline"]
Line[159000 230000 159000 209000 1000 2000 "clearline"]
Line[158400 208100 159300 209000 1000 2000 "clearline"]
Line[159300 209000 164600 209000 1000 2000 "clearline"]
Line[169400 208100 171000 209700 1000 2000 "clearline"]
Line[171000 209700 171000 221000 1000 2000 "clearline"]
Line[183100 217000 184000 216100 1000 2000 "clearline"]
Line[184000 216100 184000 211400 1000 2000 "clearline"]
Line[138100 193600 144700 187000 1000 2000 "clearline"]
Line[144700 187000 145000 187000 1000 2000 "clearline"]
Line[138100 198400 142700 203000 1000 2000 "clearline"]
Line[142700 203000 146000 203000 1000 2000 "clearline"]
Line[144500 202500 151000 209000 1000 2000 "clearline"]
Line[151000 209000 153600 209000 1000 2000 "clearline"]
Line[171500 202500 176000 198000 1000 2000 "clearline"]
Line[176000 198000 179000 198000 1000 2000 "clearline"]
Line[171500 202500 175000 206000 1000 2000 "clearline"]
Line[175000 206000 184000 206000 1000 2000 "clearline"]
Line[177100 192600 172500 188000 1000 2000 "clearline"]
Line[172500 188000 171000 188000 1000 2000 "clearline"]
Line[220400 211900 220500 212000 1000 2000 "clearline"]
Line[220500 212000 226000 212000 1000 2000 "clearline"]
Line[226000 212000 224000 214000 1000 2000 "clearline"]
Line[224000 214000 224000 230000 1000 2000 "clearline"]
Line[231400 211900 233000 213500 1000 2000 "clearline"]
Line[233000 213500 233000 220000 1000 2000 "clearline"]
Line[233000 220000 245000 220000 1000 2000 "clearline"]
Line[244100 214600 244000 214500 1000 2000 "clearline"]
Line[244000 214500 244000 211000 1000 2000 "clearline"]
Line[244100 205600 240500 202000 1000 2000 "clearline"]
Line[240500 202000 236000 202000 1000 2000 "clearline"]
Line[238500 201500 244600 195400 1000 2000 "clearline"]
Line[244600 195400 246000 195400 1000 2000 "clearline"]
Line[215600 210100 216000 209700 1000 2000 "clearline"]
Line[216000 209700 216000 202000 1000 2000 "clearline"]
Line[204100 196400 209700 202000 1000 2000 "clearline"]
Line[209700 202000 212000 202000 1000 2000 "clearline"]
Line[205900 191600 210500 187000 1000 2000 "clearline"]
Line[210500 187000 213000 187000 1000 2000 "clearline"]
Line[245100 190600 241500 187000 1000 2000 "clearline"]
Line[241500 187000 236000 187000 1000 2000 "clearline"]
Line[165100 171600 172000 164700 1000 2000 "clearline"]
Line[172000 164700 172000 85000 1000 2000 "clearline"]
Line[172000 85000 177000 80000 1000 2000 "clearline"]
Line[177000 80000 191000 80000 1000 2000 "clearline"]
Line[191000 80000 194000 77000 1000 2000 "clearline"]
Line[194000 77000 194000 74000 1000 2000 "clearline"]
Line[157100 171600 170000 158700 1000 2000 "clearline"]
Line[170000 158700 170000 84000 1000 2000 "clearline"]
Line[170000 84000 176000 78000 1000 2000 "clearline"]
Line[176000 78000 187000 78000 1000 2000 "clearline"]
Line[187000 78000 189000 76000 1000 2000 "clearline"]
Line[189000 76000 189000 75000 1000 2000 "clearline"]
Line[230100 168600 231000 167700 1000 2000 "clearline"]
Line[231000 167700 231000 79000 1000 2000 "clearline"]
Line[231000 79000 226000 74000 1000 2000 "clearline"]
Line[226000 74000 211000 74000 1000 2000 "clearline"]
Line[217100 168100 229000 156200 1000 2000 "clearline"]
Line[229000 156200 229000 81000 1000 2000 "clearline"]
Line[229000 81000 225000 77000 1000 2000 "clearline"]
Line[225000 77000 216000 77000 1000 2000 "clearline"]
Line[151000 187500 159000 179500 1000 2000 "clearline"]
Line[159000 179500 159000 177000 1000 2000 "clearline"]
Line[165000 187500 166000 186500 1000 2000 "clearline"]
Line[166000 186500 166000 176400 1000 2000 "clearline"]
Line[218000 186500 218000 172900 1000 2000 "clearline"]
Line[232000 186500 232000 173000 1000 2000 "clearline"]
Line[196100 172600 196000 172500 1000 2000 "clearline"]
Line[196000 172500 196000 162000 1000 2000 "clearline"]
Line[188100 167600 193700 162000 1000 2000 "clearline"]
Line[193700 162000 195000 162000 1000 2000 "clearline"]
Line[218000 191500 218500 192000 1000 2000 "clearline"]
Line[218500 192000 224000 195000 1000 2000 "clearline"]
Line[151000 192500 152500 194000 1000 2000 "clearline"]
Line[152500 194000 157000 196000 1000 2000 "clearline"]
Line[188100 172400 188500 172800 1000 2000 "clearline"]
Line[188500 172800 188500 177100 1000 2000 "clearline"]
Line[188500 177100 188600 177000 1000 2000 "clearline"]
Line[188600 177000 198000 177000 1000 2000 "clearline"]
Line[165000 192500 161500 189000 1000 2000 "clearline"]
Line[161500 189000 159000 189000 1000 2000 "clearline"]
Line[226000 188000 230000 192000 1000 2000 "clearline"]
Line[230000 192000 234000 192000 1000 2000 "clearline"]
Line[189400 181900 193500 186000 1000 2000 "clearline"]
Line[193500 186000 197000 186000 1000 2000 "clearline"]
Line[171500 197500 174000 195000 1000 2000 "clearline"]
Line[187600 177100 183000 181700 800 2000 "clearline"]
Line[183000 181700 183000 192457 800 2000 "clearline"]
Line[183000 192457 180457 195000 800 2000 "clearline"]
Line[180457 195000 173000 195000 800 2000 "clearline"]
Line[197900 177400 198500 178000 800 2000 "clearline"]
Line[198500 178000 206000 178000 800 2000 "clearline"]
Line[229000 199000 231000 197000 800 2000 "clearline"]
Line[231000 197000 233000 197000 800 2000 "clearline"]
Line[86600 194000 82000 198600 1000 2000 "clearline"]
Line[82000 198600 82000 199000 1000 2000 "clearline"]
Line[122400 183100 123300 184000 1000 2000 "clearline"]
Line[122400 184900 124300 183000 800 2000 "clearline"]
Line[124300 183000 128000 183000 800 2000 "clearline"]
Line[137000 176000 135000 174000 800 2000 "clearline"]
Line[135000 174000 135000 158000 800 2000 "clearline"]
Line[135000 158000 140000 153000 800 2000 "clearline"]
Line[183100 226600 184000 225700 800 2000 "clearline"]
Line[184000 225700 184000 222000 800 2000 "clearline"]
Line[183100 231400 183500 231000 800 2000 "found,clearline"]
Line[183500 231000 191000 231000 800 2000 "found,clearline"]
Text[224500 48000 0 100 "COMPONENT" ""]
)
Layer(5 "GND-comp")
(
)
Layer(6 "Vcc-comp")
(
)
Layer(7 "GND")
(
)
Layer(8 "internal")
(
)
Layer(9 "silk")
(
Text[224500 43000 0 100 "BACK SILK" "auto"]
)
Layer(10 "silk")
(
Line[64000 192000 64000 115000 1000 2000 "clearline"]
Line[64000 115000 135000 115000 1000 2000 "found,clearline"]
Line[85000 115000 85000 175000 1000 2000 "found,clearline"]
Line[105000 115000 105000 176000 1000 2000 "found,clearline"]
Line[116000 115000 116000 179000 1000 2000 "found,clearline"]
Line[135000 115000 135000 179000 1000 2000 "found,clearline"]
Line[64000 125000 135000 125000 1000 2000 "found,clearline"]
Text[224500 34000 0 100 "SILK" ""]
Text[230000 145000 1 78 "AGND" ""]
Text[165400 22600 1 100 "DGND" ""]
Text[27500 160500 1 100 "DGND" ""]
Text[67300 143400 1 100 "DGND" ""]
Text[28500 56500 1 100 "DGND" ""]
Text[10700 107300 1 78 "io_rx[8]" ""]
Text[8600 225900 1 78 "io_rx[0]" ""]
Text[2100 4500 0 78 "io_rx[15]" ""]
Text[6800 125600 1 78 "io_rx[7]" ""]
Text[155400 21600 1 78 "io_rx[1]" ""]
Text[166400 65600 1 78 "io_rx[0]" ""]
Text[105400 65600 1 78 "io_rx[12]" ""]
Text[95400 65600 1 78 "io_rx[14]" ""]
Text[145400 65600 1 78 "io_rx[4]" ""]
Text[135400 65600 1 78 "io_rx[6]" ""]
Text[125400 65600 1 78 "io_rx[8]" ""]
Text[156100 65400 1 78 "io_rx[2]" ""]
Text[115400 65600 1 78 "io_rx[10]" ""]
Text[86000 22800 1 78 "io_rx[15]" ""]
Text[95800 22500 1 78 "io_rx[13]" ""]
Text[105900 21900 1 78 "io_rx[11]" ""]
Text[115100 21900 1 78 "io_rx[9]" ""]
Text[125400 21600 1 78 "io_rx[7]" ""]
Text[135400 21600 1 78 "io_rx[5]" ""]
Text[145400 21600 1 78 "io_rx[3]" ""]
Text[78300 143400 1 100 "DGND" ""]
Text[136300 145400 1 100 "DGND" ""]
Text[137000 242000 1 144 "RX-B" ""]
Text[199000 241000 1 144 "RX-A" ""]
Text[59000 196000 0 122 "RS232" ""]
Text[88000 144000 1 100 "A1" ""]
Text[88000 175000 1 100 "A0" ""]
Text[98000 139000 1 100 "SDA" ""]
Text[96000 170000 0 78 "SCL" ""]
Text[118000 144000 1 100 "SCLK" ""]
Text[128000 145000 1 100 "SEN_RX" ""]
Text[129000 179000 1 100 "SDI" ""]
Text[119000 180000 1 100 "SDO" ""]
Text[139000 185000 1 100 "Reset" ""]
Text[108000 144000 1 100 "RXD" ""]
Text[106000 170000 0 78 "TXD" ""]
Text[67000 191000 1 100 "3.3V_Dig" ""]
Text[79000 177000 1 100 "6V" ""]
Text[69000 118000 0 100 "PWR" ""]
Text[121000 117000 0 100 "SPI" ""]
Text[90000 118000 0 100 "I2C" ""]
Text[107000 118000 0 78 "232" ""]
Text[211000 120000 1 100 "DAC_C" ""]
Text[180000 120000 1 100 "DAC_D" ""]
Text[203000 156000 1 56 "ADC_A1" ""]
Text[180000 145000 0 56 "3.3VA" ""]
Text[192000 120000 1 100 "DAC_A" ""]
Text[201000 119000 1 100 "DAC_B" ""]
Text[208000 144000 0 56 "ADC_B1" ""]
Text[194000 156000 1 56 "ADCREF" ""]
Text[225000 121000 1 78 "AGND" ""]
Text[80000 245000 0 100 "" ""]
Text[33000 240000 0 130 "(c) 2006 Ettus Research LLC" ""]
Text[32000 232000 0 130 "DC-50 MHz Receiver" ""]
Text[33000 220000 0 200 "LFRX" ""]
)
NetList()
(
Net("5V" "(unknown)")
(
Connect("J2-3")
Connect("J2-5")
Connect("J16-3")
)
Net("AGND" "(unknown)")
(
Connect("C22-2")
Connect("C23-2")
Connect("C24-2")
Connect("C25-2")
Connect("C26-2")
Connect("C50-2")
Connect("J2-41")
Connect("J2-42")
Connect("J2-47")
Connect("J2-48")
Connect("J2-54")
Connect("J2-58")
Connect("J2-63")
Connect("J2-64")
Connect("J17-9")
Connect("J17-10")
Connect("J18-2")
Connect("J18-3")
Connect("J18-4")
Connect("J18-5")
Connect("J19-2")
Connect("J19-3")
Connect("J19-4")
Connect("J19-5")
Connect("R3-2")
Connect("R7-2")
Connect("R9-2")
Connect("R32-1")
Connect("R35-1")
Connect("U2-6")
Connect("U3-6")
)
Net("AUX_ADC_A1" "(unknown)")
(
Connect("J2-59")
Connect("J17-5")
)
Net("AUX_ADC_B1" "(unknown)")
(
Connect("J2-61")
Connect("J17-7")
)
Net("AUX_ADC_REF" "(unknown)")
(
Connect("J2-57")
Connect("J17-3")
)
Net("AUX_DAC_A" "(unknown)")
(
Connect("J2-51")
Connect("J17-4")
)
Net("AUX_DAC_B" "(unknown)")
(
Connect("J2-53")
Connect("J17-6")
)
Net("AUX_DAC_C" "(unknown)")
(
Connect("J2-55")
Connect("J17-8")
)
Net("AUX_DAC_D" "(unknown)")
(
Connect("J2-49")
Connect("J17-2")
)
Net("AVDD" "(unknown)")
(
Connect("C50-1")
Connect("J2-43")
Connect("J2-44")
Connect("J2-45")
Connect("J2-46")
Connect("J17-1")
Connect("R6-1")
Connect("U2-3")
Connect("U3-3")
)
Net("CLKOUT1" "(unknown)")
(
Connect("J2-11")
)
Net("CLKOUT2" "(unknown)")
(
Connect("J2-13")
)
Net("DVDD" "(unknown)")
(
Connect("J2-7")
Connect("J2-9")
Connect("J16-1")
Connect("U1-3")
Connect("U1-8")
)
Net("GND" "(unknown)")
(
Connect("J2-1")
Connect("J2-2")
Connect("J2-37")
Connect("J2-38")
Connect("J15-20")
Connect("J16-2")
Connect("J16-4")
Connect("J16-16")
Connect("J24-2")
Connect("J24-4")
Connect("J24-6")
Connect("J24-8")
Connect("J24-10")
Connect("J24-12")
Connect("J24-14")
Connect("J24-16")
Connect("J25-2")
Connect("J25-4")
Connect("J25-6")
Connect("J25-8")
Connect("J25-10")
Connect("J25-12")
Connect("J25-14")
Connect("J25-16")
Connect("R28-1")
Connect("U1-4")
)
Net("I2C_A0" "(unknown)")
(
Connect("J2-21")
Connect("J16-5")
Connect("U1-1")
)
Net("I2C_A1" "(unknown)")
(
Connect("J2-19")
Connect("J16-6")
Connect("U1-2")
)
Net("io_rx_00" "(unknown)")
(
Connect("J2-36")
Connect("J15-19")
Connect("J24-15")
)
Net("io_rx_01" "(unknown)")
(
Connect("J2-34")
Connect("J15-18")
Connect("J24-13")
)
Net("io_rx_02" "(unknown)")
(
Connect("J2-32")
Connect("J15-17")
Connect("J24-11")
)
Net("io_rx_03" "(unknown)")
(
Connect("J2-30")
Connect("J15-16")
Connect("J24-9")
)
Net("io_rx_04" "(unknown)")
(
Connect("J2-28")
Connect("J15-15")
Connect("J24-7")
)
Net("io_rx_05" "(unknown)")
(
Connect("J2-26")
Connect("J15-14")
Connect("J24-5")
)
Net("io_rx_06" "(unknown)")
(
Connect("J2-24")
Connect("J15-13")
Connect("J24-3")
)
Net("io_rx_07" "(unknown)")
(
Connect("J2-22")
Connect("J15-12")
Connect("J24-1")
)
Net("io_rx_08" "(unknown)")
(
Connect("J2-20")
Connect("J15-11")
Connect("J25-15")
)
Net("io_rx_09" "(unknown)")
(
Connect("J2-18")
Connect("J15-10")
Connect("J25-13")
)
Net("io_rx_10" "(unknown)")
(
Connect("J2-16")
Connect("J15-9")
Connect("J25-11")
)
Net("io_rx_11" "(unknown)")
(
Connect("J2-14")
Connect("J15-8")
Connect("J25-9")
)
Net("io_rx_12" "(unknown)")
(
Connect("J2-12")
Connect("J15-7")
Connect("J25-7")
)
Net("io_rx_13" "(unknown)")
(
Connect("J2-10")
Connect("J15-6")
Connect("J25-5")
)
Net("io_rx_14" "(unknown)")
(
Connect("J2-8")
Connect("J15-5")
Connect("J25-3")
)
Net("io_rx_15" "(unknown)")
(
Connect("J2-6")
Connect("J15-4")
Connect("J25-1")
)
Net("RESET" "(unknown)")
(
Connect("J2-27")
Connect("J16-15")
)
Net("RS232_RXD" "(unknown)")
(
Connect("J2-25")
Connect("J16-10")
)
Net("RS232_TXD" "(unknown)")
(
Connect("J2-23")
Connect("J16-9")
)
Net("SCL" "(unknown)")
(
Connect("J2-15")
Connect("J16-7")
Connect("U1-6")
)
Net("SCLK" "(unknown)")
(
Connect("J2-29")
Connect("J16-12")
)
Net("SDA" "(unknown)")
(
Connect("J2-17")
Connect("J16-8")
Connect("U1-5")
)
Net("SDI" "(unknown)")
(
Connect("J2-33")
Connect("J16-13")
)
Net("SDO" "(unknown)")
(
Connect("J2-31")
Connect("J16-11")
)
Net("SEN_RX" "(unknown)")
(
Connect("J2-35")
Connect("J16-14")
)
Net("unnamed_net1" "(unknown)")
(
Connect("R28-2")
Connect("U1-7")
)
Net("unnamed_net2" "(unknown)")
(
Connect("J18-1")
Connect("R3-1")
Connect("R37-1")
)
Net("unnamed_net3" "(unknown)")
(
Connect("R4-1")
Connect("R38-2")
Connect("U3-5")
)
Net("unnamed_net4" "(unknown)")
(
Connect("R5-1")
Connect("R39-2")
Connect("U3-4")
)
Net("unnamed_net5" "(unknown)")
(
Connect("J19-1")
Connect("R9-1")
Connect("R30-1")
)
Net("unnamed_net6" "(unknown)")
(
Connect("R10-1")
Connect("R31-2")
Connect("U2-5")
)
Net("unnamed_net7" "(unknown)")
(
Connect("R11-1")
Connect("R34-2")
Connect("U2-4")
)
Net("unnamed_net8" "(unknown)")
(
Connect("R37-2")
Connect("R38-1")
Connect("U3-8")
)
Net("unnamed_net9" "(unknown)")
(
Connect("R36-2")
Connect("R39-1")
Connect("U3-1")
)
Net("unnamed_net10" "(unknown)")
(
Connect("R35-2")
Connect("R36-1")
)
Net("unnamed_net11" "(unknown)")
(
Connect("R30-2")
Connect("R31-1")
Connect("U2-8")
)
Net("unnamed_net12" "(unknown)")
(
Connect("R33-2")
Connect("R34-1")
Connect("U2-1")
)
Net("unnamed_net13" "(unknown)")
(
Connect("R32-2")
Connect("R33-1")
)
Net("V_BIAS" "(unknown)")
(
Connect("C24-1")
Connect("R6-2")
Connect("R7-1")
Connect("U2-2")
Connect("U3-2")
)
Net("VINN_A" "(unknown)")
(
Connect("C26-1")
Connect("J2-60")
Connect("R11-2")
)
Net("VINN_B" "(unknown)")
(
Connect("C23-1")
Connect("J2-52")
Connect("R5-2")
)
Net("VINP_A" "(unknown)")
(
Connect("C25-1")
Connect("J2-62")
Connect("R10-2")
)
Net("VINP_B" "(unknown)")
(
Connect("C22-1")
Connect("J2-50")
Connect("R4-2")
)
Net("VREF" "(unknown)")
(
Connect("J2-56")
)
)
|