summaryrefslogtreecommitdiff
path: root/ice4pi.kicad_pcb
blob: e3a123038f046fcc8ca1aed86412af518c0b3cb5 (plain) (blame)
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
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
(kicad_pcb (version 20211014) (generator pcbnew)

  (general
    (thickness 1.6)
  )

  (paper "A4")
  (layers
    (0 "F.Cu" signal)
    (1 "In1.Cu" power)
    (2 "In2.Cu" power)
    (31 "B.Cu" signal)
    (32 "B.Adhes" user "B.Adhesive")
    (33 "F.Adhes" user "F.Adhesive")
    (34 "B.Paste" user)
    (35 "F.Paste" user)
    (36 "B.SilkS" user "B.Silkscreen")
    (37 "F.SilkS" user "F.Silkscreen")
    (38 "B.Mask" user)
    (39 "F.Mask" user)
    (40 "Dwgs.User" user "User.Drawings")
    (41 "Cmts.User" user "User.Comments")
    (42 "Eco1.User" user "User.Eco1")
    (43 "Eco2.User" user "User.Eco2")
    (44 "Edge.Cuts" user)
    (45 "Margin" user)
    (46 "B.CrtYd" user "B.Courtyard")
    (47 "F.CrtYd" user "F.Courtyard")
    (48 "B.Fab" user)
    (49 "F.Fab" user)
  )

  (setup
    (stackup
      (layer "F.SilkS" (type "Top Silk Screen"))
      (layer "F.Paste" (type "Top Solder Paste"))
      (layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
      (layer "F.Cu" (type "copper") (thickness 0.035))
      (layer "dielectric 1" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
      (layer "In1.Cu" (type "copper") (thickness 0.035))
      (layer "dielectric 2" (type "prepreg") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
      (layer "In2.Cu" (type "copper") (thickness 0.035))
      (layer "dielectric 3" (type "core") (thickness 0.48) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
      (layer "B.Cu" (type "copper") (thickness 0.035))
      (layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
      (layer "B.Paste" (type "Bottom Solder Paste"))
      (layer "B.SilkS" (type "Bottom Silk Screen"))
      (copper_finish "None")
      (dielectric_constraints no)
    )
    (pad_to_mask_clearance 0.051)
    (solder_mask_min_width 0.25)
    (aux_axis_origin 50 49)
    (pcbplotparams
      (layerselection 0x003ffff_ffffffff)
      (disableapertmacros false)
      (usegerberextensions false)
      (usegerberattributes false)
      (usegerberadvancedattributes false)
      (creategerberjobfile false)
      (svguseinch false)
      (svgprecision 6)
      (excludeedgelayer false)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15.000000)
      (dxfpolygonmode true)
      (dxfimperialunits true)
      (dxfusepcbnewfont true)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (sketchpadsonfab false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 0)
      (scaleselection 1)
      (outputdirectory "gerbers")
    )
  )

  (net 0 "")
  (net 1 "GND")
  (net 2 "12MHz")
  (net 3 "iCE_CDONE")
  (net 4 "iCE_CREST")
  (net 5 "iCE_MOSI")
  (net 6 "iCE_MISO")
  (net 7 "iCE_SCK")
  (net 8 "iCE_SS_B")
  (net 9 "Net-(R2-Pad2)")
  (net 10 "+3V3")
  (net 11 "+5V")
  (net 12 "+1V2")
  (net 13 "Net-(C26-Pad1)")
  (net 14 "LED4")
  (net 15 "Net-(D1-Pad1)")
  (net 16 "Net-(D2-Pad1)")
  (net 17 "LED3")
  (net 18 "Net-(D3-Pad1)")
  (net 19 "LED2")
  (net 20 "LED1")
  (net 21 "Net-(D4-Pad1)")
  (net 22 "Net-(D5-Pad1)")
  (net 23 "LED0")
  (net 24 "PIO1_02")
  (net 25 "PIO1_03")
  (net 26 "PIO1_04")
  (net 27 "PIO1_05")
  (net 28 "PIO1_06")
  (net 29 "PIO1_07")
  (net 30 "PIO1_08")
  (net 31 "PIO1_09")
  (net 32 "Net-(R16-Pad2)")
  (net 33 "PIO0_09")
  (net 34 "PIO0_08")
  (net 35 "PIO0_07")
  (net 36 "PIO0_06")
  (net 37 "PIO0_05")
  (net 38 "PIO0_04")
  (net 39 "PIO0_03")
  (net 40 "PIO0_02")
  (net 41 "Net-(D6-Pad1)")
  (net 42 "RS232_Tx_TTL")
  (net 43 "RS232_Rx_TTL")
  (net 44 "PIO0_10")
  (net 45 "PIO0_12")
  (net 46 "PIO0_11")
  (net 47 "PIO0_13")
  (net 48 "PIO0_14")
  (net 49 "PIO0_15")
  (net 50 "PIO0_16")
  (net 51 "PIO0_21")
  (net 52 "PIO0_20")
  (net 53 "PIO0_19")
  (net 54 "PIO0_18")
  (net 55 "PIO0_17")
  (net 56 "unconnected-(U3-Pad4)")
  (net 57 "unconnected-(U1-Pad144)")
  (net 58 "unconnected-(U1-Pad143)")
  (net 59 "unconnected-(U1-Pad142)")
  (net 60 "unconnected-(U1-Pad131)")
  (net 61 "unconnected-(U1-Pad130)")
  (net 62 "unconnected-(U1-Pad127)")
  (net 63 "unconnected-(U1-Pad126)")
  (net 64 "unconnected-(U1-Pad125)")
  (net 65 "unconnected-(U1-Pad124)")
  (net 66 "unconnected-(U1-Pad110)")
  (net 67 "unconnected-(U1-Pad109)")
  (net 68 "IR_SD")
  (net 69 "IR_RXD")
  (net 70 "IR_TXD")
  (net 71 "unconnected-(U1-Pad104)")
  (net 72 "unconnected-(U1-Pad102)")
  (net 73 "unconnected-(U1-Pad101)")
  (net 74 "unconnected-(U1-Pad94)")
  (net 75 "unconnected-(U1-Pad93)")
  (net 76 "unconnected-(U1-Pad85)")
  (net 77 "unconnected-(U1-Pad84)")
  (net 78 "unconnected-(U1-Pad83)")
  (net 79 "unconnected-(U1-Pad82)")
  (net 80 "unconnected-(U1-Pad77)")
  (net 81 "unconnected-(U1-Pad76)")
  (net 82 "unconnected-(U1-Pad75)")
  (net 83 "unconnected-(U1-Pad74)")
  (net 84 "unconnected-(U1-Pad73)")
  (net 85 "unconnected-(U1-Pad64)")
  (net 86 "unconnected-(U1-Pad63)")
  (net 87 "unconnected-(U1-Pad62)")
  (net 88 "unconnected-(U1-Pad61)")
  (net 89 "unconnected-(U1-Pad60)")
  (net 90 "unconnected-(U1-Pad58)")
  (net 91 "unconnected-(U1-Pad56)")
  (net 92 "unconnected-(U1-Pad55)")
  (net 93 "unconnected-(U1-Pad54)")
  (net 94 "unconnected-(U1-Pad53)")
  (net 95 "unconnected-(U1-Pad52)")
  (net 96 "unconnected-(U1-Pad50)")
  (net 97 "unconnected-(U1-Pad49)")
  (net 98 "unconnected-(U1-Pad48)")
  (net 99 "unconnected-(U1-Pad47)")
  (net 100 "unconnected-(U1-Pad45)")
  (net 101 "unconnected-(U1-Pad44)")
  (net 102 "unconnected-(U1-Pad43)")
  (net 103 "unconnected-(U1-Pad42)")
  (net 104 "unconnected-(U1-Pad41)")
  (net 105 "unconnected-(U1-Pad40)")
  (net 106 "unconnected-(U1-Pad39)")
  (net 107 "unconnected-(U1-Pad38)")
  (net 108 "unconnected-(U1-Pad37)")
  (net 109 "unconnected-(U1-Pad34)")
  (net 110 "unconnected-(U1-Pad33)")
  (net 111 "unconnected-(U1-Pad32)")
  (net 112 "unconnected-(U1-Pad31)")
  (net 113 "unconnected-(U1-Pad29)")
  (net 114 "unconnected-(U1-Pad28)")
  (net 115 "unconnected-(U1-Pad26)")
  (net 116 "unconnected-(U1-Pad25)")
  (net 117 "unconnected-(U1-Pad24)")
  (net 118 "unconnected-(U1-Pad23)")
  (net 119 "unconnected-(U1-Pad22)")
  (net 120 "unconnected-(U1-Pad20)")
  (net 121 "unconnected-(U1-Pad19)")
  (net 122 "unconnected-(U1-Pad18)")
  (net 123 "unconnected-(U1-Pad17)")
  (net 124 "unconnected-(U1-Pad16)")
  (net 125 "unconnected-(U1-Pad15)")
  (net 126 "unconnected-(U1-Pad12)")
  (net 127 "unconnected-(U1-Pad11)")
  (net 128 "unconnected-(U1-Pad10)")
  (net 129 "unconnected-(U1-Pad7)")
  (net 130 "unconnected-(U1-Pad4)")
  (net 131 "unconnected-(U1-Pad3)")
  (net 132 "unconnected-(U1-Pad2)")
  (net 133 "unconnected-(U1-Pad1)")

  (footprint "ice4pi:mount_hole" locked (layer "F.Cu")
    (tedit 55217C7B) (tstamp 00000000-0000-0000-0000-00005c471d7e)
    (at 53.5 52.5)
    (descr "Mounting hole, 2,7mm")
    (attr through_hole)
    (fp_text reference "" (at 0 -4.0005) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 44b926bf-8bdd-4191-846d-2dfabab2cecb)
    )
    (fp_text value "" (at 0.09906 3.59918) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e8274862-c966-456a-98d5-9c42f72963c1)
    )
    (fp_circle (center 0 0) (end 3.1 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp b7b00984-6ab1-482e-b4b4-67cac44d44da))
    (fp_circle (center 0 0) (end 3.1 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp c3a69550-c4fa-45d1-9aba-0bba47699cca))
    (fp_circle (center 0 0) (end 1.375 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 17cf1c88-8d51-4538-aa76-e35ac22d0ed0))
    (fp_circle (center 0 0) (end 3.1 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp f5eb7390-4215-4bb5-bc53-f82f663cc9a5))
    (fp_circle (center 0 0) (end 1.375 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp efd7a1e0-5bed-4583-a94e-5ccec9e4eb74))
    (fp_circle (center 0 0) (end 3.1 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp f7070c76-b83b-43a9-a243-491723819616))
    (pad "" np_thru_hole circle locked (at 0 0) (size 2.75 2.75) (drill 2.75) (layers *.Cu *.Mask)
      (solder_mask_margin 1.725) (clearance 1.725) (tstamp 3fa05934-8ad1-40a9-af5c-98ad298eb412))
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e35789d)
    (at 65.779546 60.244888 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "ZRB15XR61A106ME01D")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e264806")
    (attr smd)
    (fp_text reference "C16" (at 1.755112 -0.470454 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp c25449d6-d734-4953-b762-98f82a830248)
    )
    (fp_text value "10uF" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d7e4abd8-69f5-4706-b12e-898194e5bf56)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 44646447-0a8e-4aec-a74e-22bf765d0f33)
    )
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 04cf2f2c-74bf-400d-b4f6-201720df00ed))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1bdd5841-68b7-42e2-9447-cbdb608d8a08))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2878a73c-5447-4cd9-8194-14f52ab9459c))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 955cc99e-a129-42cf-abc7-aa99813fdb5f))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 008da5b9-6f95-4113-b7d0-d93ac62efd33))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5d3d7893-1d11-4f1d-9052-85cf0e07d281))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 79476267-290e-445f-995b-0afd0e11a4b5))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp aeb03be9-98f0-43f6-9432-1bb35aa04bab))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp 27b2eb82-662b-42d8-90e6-830fec4bb8d2))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 8b290a17-6328-4178-9131-29524d345539))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e3578ac)
    (at 64.779546 60.244888 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012105012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e264797")
    (attr smd)
    (fp_text reference "C17" (at 2.505112 0.029546 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 6513181c-0a6a-4560-9a18-17450c36ae2a)
    )
    (fp_text value "1 uF" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 12a24e86-2c38-4685-bba9-fff8dddb4cb0)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp f357ddb5-3f44-43b0-b00d-d64f5c62ba4a)
    )
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0ceb97d6-1b0f-4b71-921e-b0955c30c998))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 35ef9c4a-35f6-467b-a704-b1d9354880cf))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a7f25f41-0b4c-4430-b6cd-b2160b2db099))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b8b961e9-8a60-45fc-999a-a7a3baff4e0d))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 1241b7f2-e266-4f5c-8a97-9f0f9d0eef37))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 6241e6d3-a754-45b6-9f7c-e43019b93226))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7d0dab95-9e7a-486e-a1d7-fc48860fd57d))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c8a44971-63c1-4a19-879d-b6647b2dc08d))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp f1782535-55f4-4299-bd4f-6f51b0b7259c))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 2b5a9ad3-7ec4-447d-916c-47adf5f9674f))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e3578d9)
    (at 95.210392 57.797011 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "ZRB15XR61A106ME01D")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e266462")
    (attr smd)
    (fp_text reference "C20" (at -2.702989 0.039608 90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 501880c3-8633-456f-9add-0e8fa1932ba6)
    )
    (fp_text value "10uF" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c454102f-dc92-4550-9492-797fc8e6b49c)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 7a879184-fad8-4feb-afb5-86fe8d34f1f7)
    )
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 18ca5aef-6a2c-41ac-9e7f-bf7acb716e53))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 528fd7da-c9a6-40ae-9f1a-60f6a7f4d534))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e413cfad-d7bd-41ab-b8dd-4b67484671a6))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f9b1563b-384a-447c-9f47-736504e995c8))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4431c0f6-83ea-4eee-95a8-991da2f03ccd))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 90e761f6-1432-4f73-ad28-fa8869b7ec31))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp a6738794-75ae-48a6-8949-ed8717400d71))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 24b72b0d-63b8-4e06-89d0-e94dcf39a600))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e3578f7)
    (at 96.210392 57.797011 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012105012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e266469")
    (attr smd)
    (fp_text reference "C22" (at -2.702989 0.039608 90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 869d6302-ae22-478f-9723-3feacbb12eef)
    )
    (fp_text value "1 uF" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e1b88aa4-d887-4eea-83ff-5c009f4390c4)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 4a54c707-7b6f-4a3d-a74d-5e3526114aba)
    )
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 25bc3602-3fb4-4a04-94e3-21ba22562c24))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4aa97874-2fd2-414c-b381-9420384c2fd8))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7760a75a-d74b-4185-b34e-cbc7b2c339b6))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c1bac86f-cbf6-4c5b-b60d-c26fa73d9c09))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 283c990c-ae5a-4e41-a3ad-b40ca29fe90e))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 49575217-40b0-4890-8acf-12982cca52b5))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 4cafb73d-1ad8-4d24-acf7-63d78095ae46))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp be4b72db-0e02-4d9b-844a-aff689b4e648))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 38cfe839-c630-43d3-a9ec-6a89ba9e318a))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 5889287d-b845-4684-b23e-663811b25d27))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e357915)
    (at 97.210392 57.797011 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e266470")
    (attr smd)
    (fp_text reference "C24" (at -2.702989 0 90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 3a41dd27-ec14-44d5-b505-aad1d829f79a)
    )
    (fp_text value "0.1uF" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp e7d81bce-286e-41e4-9181-3511e9c0455e)
    )
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 252f1275-081d-4d77-8bd5-3b9e6916ef42))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 62e8c4d4-266c-4e53-8981-1028251d724c))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 98fe66f3-ec8b-4515-ae34-617f2124a7ec))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp fc3d51c1-8b35-4da3-a742-0ebe104989d7))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 10e52e95-44f3-4059-a86d-dcda603e0623))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp bd793ae5-cde5-43f6-8def-1f95f35b1be6))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp e70b6168-f98e-4322-bc55-500948ef7b77))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e357942)
    (at 98.210392 57.797011 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e266477")
    (attr smd)
    (fp_text reference "C27" (at -2.702989 0.039608 90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp f345e52a-8e0a-425a-b438-90809dd3b799)
    )
    (fp_text value "0.01uF" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp f2480d0c-9b08-4037-9175-b2369af04d4c)
    )
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 443bc73a-8dc0-4e2f-a292-a5eff00efa5b))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 83021f70-e61e-4ad3-bae7-b9f02b28be4f))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp cc75e5ae-3348-4e7a-bd16-4df685ee47bd))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp eac8d865-0226-4958-b547-6b5592f39713))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 014d13cd-26ad-4d0e-86ad-a43b541cab14))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 633292d3-80c5-4986-be82-ce926e9f09f4))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7744b6ee-910d-401d-b730-65c35d3d8092))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a25b7e01-1754-4cc9-8a14-3d9c461e5af5))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp d0cd3439-276c-41ba-b38d-f84f6da38415))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp dda1e6ca-91ec-4136-b90b-3c54d79454b9))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e357960)
    (at 63.779546 60.244888 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e26471f")
    (attr smd)
    (fp_text reference "C29" (at 2.505112 0.029546 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 5e7c3a32-8dda-4e6a-9838-c94d1f165575)
    )
    (fp_text value "0.01uF" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5f31b97b-d794-46d6-bbd9-7a5638bcf704)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 3c9169cc-3a77-4ae0-8afc-cbfc472a28c5)
    )
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2165c9a4-eb84-4cb6-a870-2fdc39d2511b))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3e57b728-64e6-4470-8f27-a43c0dd85050))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 75b944f9-bf25-4dc7-8104-e9f80b4f359b))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bac7c5b3-99df-445a-ade9-1e608bbbe27e))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 2de1ffee-2174-41d2-8969-68b8d21e5a7d))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 84d4e166-b429-409a-ab37-c6a10fd82ff5))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a7f2e97b-29f3-44fd-bf8a-97a3c1528b61))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e87738fc-e372-4c48-9de9-398fd8b4874c))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp 6cb93665-0bcd-4104-8633-fffd1811eee0))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 7f2b3ce3-2f20-426d-b769-e0329b6a8111))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e3579a4)
    (at 103.15 64 -90)
    (descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED")
    (property "PN" "SML-LX0603GW-TR")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2b00b9")
    (attr smd)
    (fp_text reference "D2" (at 0 -1.17 -90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 430d6d73-9de6-41ca-b788-178d709f4aae)
    )
    (fp_text value "LED" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 70d34adf-9bd8-469e-8c77-5c0d7adf511e)
    )
    (fp_circle (center -1.09 0) (end -1.04 0) (layer "F.SilkS") (width 0.1) (fill none) (tstamp 946404ba-9297-43ec-9d67-30184041145f))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 347562f5-b152-4e7b-8a69-40ca6daaaad4))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp cb083d38-4f11-4a80-8b19-ab751c405e4a))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp cbde200f-1075-469a-89f8-abbdcf30e36a))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f50dae73-c5b5-475d-ac8c-5b555be54fa3))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1b023dd4-5185-4576-b544-68a05b9c360b))
    (fp_line (start -0.3 0.25) (end -0.3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3249bd81-9fd4-4194-9b4f-2e333b2195b8))
    (fp_line (start -0.4 0.25) (end -0.4 -0.25) (layer "F.Fab") (width 0.1) (tstamp 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 90f81af1-b6de-44aa-a46b-6504a157ce6c))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 9e0e6fc0-a269-4822-b93d-4c5e6689ff11))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a64aeb89-c24a-493b-9aab-87a6be930bde))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 16 "Net-(D2-Pad1)") (pinfunction "K") (pintype "passive") (tstamp a76a574b-1cac-43eb-81e6-0e2e278cea39))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 20 "LED1") (pinfunction "A") (pintype "passive") (tstamp 76afa8e0-9b3a-439d-843c-ad039d3b6354))
    (model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e3579b6)
    (at 101.15 66 90)
    (descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED")
    (property "PN" "SML-LX0603GW-TR")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2b0000")
    (attr smd)
    (fp_text reference "D3" (at -0.05 1.2 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp df2a6036-7274-4398-9365-148b6ddab90d)
    )
    (fp_text value "LED" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 475ed8b3-90bf-48cd-bce5-d8f48b689541)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp fc83cd71-1198-4019-87a1-dc154bceead3)
    )
    (fp_circle (center -1.09 0) (end -1.04 0) (layer "F.SilkS") (width 0.1) (fill none) (tstamp 8e295ed4-82cb-4d9f-8888-7ad2dd4d5129))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 10d8ad0e-6a08-4053-92aa-23a15910fd21))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5f312b85-6822-40a3-b417-2df49696ca2d))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 99186658-0361-40ba-ae93-62f23c5622e6))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 083becc8-e25d-4206-9636-55457650bbe3))
    (fp_line (start -0.4 0.25) (end -0.4 -0.25) (layer "F.Fab") (width 0.1) (tstamp 123968c6-74e7-4754-8c36-08ea08e42555))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 3e3d55c8-e0ea-48fb-8421-a84b7cb7055b))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 725cdf26-4b92-46db-bca9-10d930002dda))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7acd513a-187b-4936-9f93-2e521ce33ad5))
    (fp_line (start -0.3 0.25) (end -0.3 -0.25) (layer "F.Fab") (width 0.1) (tstamp ee29d712-3378-4507-a00b-003526b29bb1))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 18 "Net-(D3-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 4a7e3849-3bc9-4bb3-b16a-fab2f5cee0e5))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 19 "LED2") (pinfunction "A") (pintype "passive") (tstamp 79451892-db6b-4999-916d-6392174ee493))
    (model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e3579da)
    (at 101.15 64 90)
    (descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED")
    (property "PN" "SML-LX0603IW-TR")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2c9447")
    (attr smd)
    (fp_text reference "D5" (at -0.05 1.2 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2a6075ae-c7fa-41db-86b8-3f996740bdc2)
    )
    (fp_text value "LED" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8f12311d-6f4c-4d28-a5bc-d6cb462bade7)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp db742b9e-1fed-4e0c-b783-f911ab5116aa)
    )
    (fp_circle (center -1.09 0) (end -1.04 0) (layer "F.SilkS") (width 0.1) (fill none) (tstamp ea2ea877-1ce1-4cd6-ad19-1da87f51601d))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 12c8f4c9-cb79-4390-b96c-a717c693de17))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 12f8e43c-8f83-48d3-a9b5-5f3ebc0b6c43))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4344bc11-e822-474b-8d61-d12211e719b1))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp eaa0d51a-ee4e-4d3a-a801-bddb7027e94c))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0b4c0f05-c855-4742-bad2-dbf645d5842b))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 282c8e53-3acc-42f0-a92a-6aa976b97a93))
    (fp_line (start -0.3 0.25) (end -0.3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5f38bdb2-3657-474e-8e86-d6bb0b298110))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 83c5181e-f5ee-453c-ae5c-d7256ba8837d))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp ca5b6af8-ca05-4338-b852-b51f2b49b1db))
    (fp_line (start -0.4 0.25) (end -0.4 -0.25) (layer "F.Fab") (width 0.1) (tstamp d72c89a6-7578-4468-964e-2a845431195f))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 22 "Net-(D5-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 05d3e08e-e1f9-46cf-93d0-836d1306d03a))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 14 "LED4") (pinfunction "A") (pintype "passive") (tstamp f699494a-77d6-4c73-bd50-29c1c1c5b879))
    (model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e357b22)
    (at 59.2 73.2 90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ103X")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e1e2982")
    (attr smd)
    (fp_text reference "R2" (at -1.35 1.4) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8bd46048-cab7-4adf-af9a-bc2710c1894c)
    )
    (fp_text value "10K" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 992a2b00-5e28-4edd-88b5-994891512d8d)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 18f1018d-5857-4c32-a072-f3de80352f74)
    )
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3d552623-2969-4b15-8623-368144f225e9))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 92848721-49b5-4e4c-b042-6fd51e1d562f))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c07eebcc-30d2-439d-8030-faea6ade4486))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp db1ed10a-ef86-43bf-93dc-9be76327f6d2))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 8aeae536-fd36-430e-be47-1a856eced2fc))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp bc3b3f93-69e0-44a5-b919-319b81d13095))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e65bab67-68b7-4b22-a939-6f2c05164d2a))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp eb473bfd-fc2d-4cf0-8714-6b7dd95b0a03))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp fa20e708-ec85-4e0b-8402-f74a2724f920))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 9 "Net-(R2-Pad2)") (pintype "passive") (tstamp fb35e3b1-aff6-41a7-9cf0-52694b95edeb))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e357bf4)
    (at 57.45 64.25)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ103X")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e25fc55")
    (attr smd)
    (fp_text reference "R16" (at 2.3 -0.25) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 83184391-76ed-44f0-8cd0-01f89f157bdb)
    )
    (fp_text value "10K" (at 0 1.17) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp db6412d3-e6c3-4bdd-abf4-a8f55d56df31)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 96ef76a5-90c3-4767-98ba-2b61887e28d3)
    )
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1cacb878-9da4-41fc-aa80-018bc841e19a))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4ce9470f-5633-41bf-89ac-74a810939893))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 51cc007a-3378-4ce3-909c-71e94822f8d1))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5576cd03-3bad-40c5-9316-1d286895d52a))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 1de61170-5337-44c5-ba28-bd477db4bff1))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 3a1a39fc-8030-4c93-9d9c-d79ba6824099))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 49b5f540-e128-4e08-bb09-f321f8e64056))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp aa23bfe3-454b-4a2b-bfe1-101c747eb84e))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 000b46d6-b833-4804-8f56-56d539f76d09))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 32 "Net-(R16-Pad2)") (pintype "passive") (tstamp dd70858b-2f9a-4b3f-9af5-ead3a9ba57e9))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e357c03)
    (at 57.9 73.2 90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ103X")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e25ff44")
    (attr smd)
    (fp_text reference "R17" (at -1.7 0.2 180) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 272c2a78-b5f5-4b61-aed3-ec69e0e92729)
    )
    (fp_text value "10K" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a3fab380-991d-404b-95d5-1c209b047b6e)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 7273dd21-e834-41d3-b279-d7de727709ca)
    )
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 62f15a9a-9893-486e-9ad0-ea43f88fc9e7))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b2b363dd-8e47-4a76-a142-e00e28334875))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c15b2f75-2e10-4b71-bebb-e2b872171b92))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f6a5c856-f2b5-40eb-a958-b666a0d408a0))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 162e5bdd-61a8-46a3-8485-826b5d58e1a1))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 2b25e886-ded1-450a-ada1-ece4208052e4))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 456c5e47-d71e-4708-b061-1e61634d8648))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp ffa442c7-cbef-461f-8613-c211201cec06))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 2f3fba7a-cf45-4bd8-9035-07e6fa0b4732))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 7 "iCE_SCK") (pintype "passive") (tstamp 319c683d-aed6-4e7d-aee2-ff9871746d52))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "ice4pi:lsi-logo-16mm-fcu" locked (layer "F.Cu")
    (tedit 62011DD7) (tstamp 00000000-0000-0000-0000-00005e3781cf)
    (at 99.3 75.55)
    (descr "Imported from logo-kicad-3-with-holes.svg")
    (tags "svg2mod")
    (attr exclude_from_pos_files exclude_from_bom)
    (fp_text reference "svg2mod" (at 0 -4.345797) (layer "F.SilkS") hide
      (effects (font (size 1.524 1.524) (thickness 0.3048)))
      (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388)
    )
    (fp_text value "G***" (at 0 4.345797) (layer "F.SilkS") hide
      (effects (font (size 1.524 1.524) (thickness 0.3048)))
      (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef)
    )
    (fp_poly (pts
        (xy -8.000028 -1.297796)
        (xy -0.593374 -1.16783)
        (xy 7.869933 -1.16783)
        (xy 7.869933 0.072146)
        (xy -1.346687 0.072146)
        (xy -1.346687 -0.547842)
        (xy -0.593374 -0.547842)
        (xy -0.593374 -1.16783)
        (xy -8.000028 -1.297796)
        (xy -7.127472 -1.045099)
        (xy -6.878908 -1.045099)
        (xy -6.878908 -0.445135)
        (xy -6.855524 -0.3485)
        (xy -6.785503 -0.315944)
        (xy -6.673882 -0.315944)
        (xy -6.673882 -0.235329)
        (xy -6.794805 -0.235329)
        (xy -6.927742 -0.290106)
        (xy -6.97438 -0.445135)
        (xy -6.97438 -0.970685)
        (xy -7.127472 -0.970685)
        (xy -7.127472 -1.045099)
        (xy -8.000028 -1.297796)
        (xy -6.28928 -1.039414)
        (xy -6.193808 -1.039414)
        (xy -6.193808 -0.919008)
        (xy -6.28928 -0.919008)
        (xy -6.28928 -1.039414)
        (xy -8.000028 -1.297796)
        (xy -5.191027 -1.039414)
        (xy -5.095554 -1.039414)
        (xy -5.095554 -0.727289)
        (xy -5.026566 -0.80222)
        (xy -4.923213 -0.828058)
        (xy -4.790922 -0.769663)
        (xy -4.746738 -0.593963)
        (xy -4.746738 -0.235329)
        (xy -4.842727 -0.235329)
        (xy -4.842727 -0.593963)
        (xy -4.870245 -0.708685)
        (xy -4.956416 -0.745375)
        (xy -5.059768 -0.697833)
        (xy -5.095554 -0.562441)
        (xy -5.095554 -0.235329)
        (xy -5.191027 -0.235329)
        (xy -5.191027 -1.039414)
        (xy -8.000028 -1.297796)
        (xy -3.092059 -1.039414)
        (xy -2.996587 -1.039414)
        (xy -2.996587 -0.919008)
        (xy -3.092059 -0.919008)
        (xy -3.092059 -1.039414)
        (xy -8.000028 -1.297796)
        (xy -2.289137 -1.039414)
        (xy -2.193664 -1.039414)
        (xy -2.193664 -0.235329)
        (xy -2.289137 -0.235329)
        (xy -2.289137 -0.308193)
        (xy -2.352957 -0.242564)
        (xy -2.444424 -0.220343)
        (xy -2.610435 -0.301475)
        (xy -2.670638 -0.526267)
        (xy -2.609918 -0.747442)
        (xy -2.444424 -0.828058)
        (xy -2.351923 -0.80532)
        (xy -2.289137 -0.740208)
        (xy -2.289137 -1.039414)
        (xy -8.000028 -1.297796)
        (xy -0.844522 -0.985283)
        (xy -0.844522 -0.735299)
        (xy -1.09554 -0.735299)
        (xy -1.09554 -0.985283)
        (xy -0.844522 -0.985283)
        (xy -8.000028 -1.297796)
        (xy -4.334102 -0.978436)
        (xy -4.334102 -0.814105)
        (xy -4.11719 -0.814105)
        (xy -4.11719 -0.740208)
        (xy -4.334102 -0.740208)
        (xy -4.334102 -0.426015)
        (xy -4.309685 -0.336615)
        (xy -4.224677 -0.311293)
        (xy -4.11719 -0.311293)
        (xy -4.11719 -0.235329)
        (xy -4.233979 -0.235329)
        (xy -4.38552 -0.278221)
        (xy -4.429574 -0.426015)
        (xy -4.429574 -0.740208)
        (xy -4.584862 -0.740208)
        (xy -4.584862 -0.814105)
        (xy -4.429574 -0.814105)
        (xy -4.429574 -0.978436)
        (xy -4.334102 -0.978436)
        (xy -8.000028 -1.297796)
        (xy -3.402764 -0.914745)
        (xy -3.402764 -0.820694)
        (xy -3.84253 -0.655846)
        (xy -3.795246 -0.637243)
        (xy -3.402764 -0.491515)
        (xy -3.402764 -0.48273)
        (xy -3.402764 -0.396947)
        (xy -3.951438 -0.18094)
        (xy -3.951438 -0.275507)
        (xy -3.51038 -0.439322)
        (xy -3.513351 -0.440484)
        (xy -3.951438 -0.604686)
        (xy -3.951438 -0.612955)
        (xy -3.951438 -0.698737)
        (xy -3.402764 -0.914745)
        (xy -8.000028 -1.297796)
        (xy -7.255758 -0.825991)
        (xy -7.255758 -0.73194)
        (xy -7.696817 -0.566575)
        (xy -7.255758 -0.402761)
        (xy -7.255758 -0.308193)
        (xy -7.804304 -0.5242)
        (xy -7.804304 -0.609983)
        (xy -7.255758 -0.825991)
        (xy -8.000028 -1.297796)
        (xy -8.000028 0.202241)
        (xy -5.634281 -0.007953)
        (xy -5.716834 -0.015187)
        (xy -5.803005 -0.036375)
        (xy -5.803005 -0.130426)
        (xy -5.710633 -0.095286)
        (xy -5.634281 -0.083917)
        (xy -5.521627 -0.125775)
        (xy -5.486357 -0.258583)
        (xy -5.486357 -0.262718)
        (xy -5.486357 -0.327313)
        (xy -5.548627 -0.254966)
        (xy -5.644616 -0.231195)
        (xy -5.807139 -0.312327)
        (xy -5.867859 -0.529368)
        (xy -5.807139 -0.746926)
        (xy -5.644616 -0.828058)
        (xy -5.549661 -0.805837)
        (xy -5.486357 -0.737107)
        (xy -5.486357 -0.812038)
        (xy -5.390885 -0.812038)
        (xy -5.390885 -0.272536)
        (xy -5.452638 -0.075132)
        (xy -5.634281 -0.007953)
        (xy -8.000028 0.202241)
        (xy -1.743175 -0.220343)
        (xy -1.954919 -0.300958)
        (xy -2.031271 -0.5242)
        (xy -1.956469 -0.745375)
        (xy -1.757128 -0.828058)
        (xy -1.582332 -0.753127)
        (xy -1.517866 -0.548488)
        (xy -1.517866 -0.501979)
        (xy -1.931536 -0.501979)
        (xy -1.931536 -0.498879)
        (xy -1.882314 -0.352635)
        (xy -1.742141 -0.300958)
        (xy -1.646669 -0.315428)
        (xy -1.540216 -0.359352)
        (xy -1.540216 -0.264785)
        (xy -1.645636 -0.231712)
        (xy -1.743175 -0.220343)
        (xy -8.000028 0.202241)
        (xy -6.004284 -0.235329)
        (xy -6.478674 -0.235329)
        (xy -6.478674 -0.309226)
        (xy -6.28928 -0.309226)
        (xy -6.28928 -0.740208)
        (xy -6.438237 -0.740208)
        (xy -6.438237 -0.814105)
        (xy -6.193808 -0.814105)
        (xy -6.193808 -0.309226)
        (xy -6.004284 -0.309226)
        (xy -6.004284 -0.235329)
        (xy -8.000028 0.202241)
        (xy -2.807193 -0.235329)
        (xy -3.281582 -0.235329)
        (xy -3.281582 -0.309226)
        (xy -3.092059 -0.309226)
        (xy -3.092059 -0.740208)
        (xy -3.241016 -0.740208)
        (xy -3.241016 -0.814105)
        (xy -2.996587 -0.814105)
        (xy -2.996587 -0.309226)
        (xy -2.807193 -0.309226)
        (xy -2.807193 -0.235329)
        (xy -8.000028 0.202241)
        (xy 8.000028 0.202241)
        (xy 8.000028 -1.297796)
        (xy -8.000028 -1.297796)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
    (fp_poly (pts
        (xy 1.673671 -0.978436)
        (xy 1.673671 -0.814105)
        (xy 1.518383 -0.814105)
        (xy 1.518383 -0.740208)
        (xy 1.673671 -0.740208)
        (xy 1.673671 -0.426015)
        (xy 1.717725 -0.278221)
        (xy 1.869266 -0.235329)
        (xy 1.986054 -0.235329)
        (xy 1.986054 -0.311293)
        (xy 1.878697 -0.311293)
        (xy 1.79356 -0.336615)
        (xy 1.769143 -0.426015)
        (xy 1.769143 -0.740208)
        (xy 1.986054 -0.740208)
        (xy 1.986054 -0.814105)
        (xy 1.769143 -0.814105)
        (xy 1.769143 -0.978436)
        (xy 1.673671 -0.978436)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 0dcdf1b8-13c6-48b4-bd94-5d26038ff231))
    (fp_poly (pts
        (xy 6.257112 -0.828058)
        (xy 6.095752 -0.782582)
        (xy 6.039166 -0.654425)
        (xy 6.077019 -0.550555)
        (xy 6.197425 -0.496812)
        (xy 6.233212 -0.489577)
        (xy 6.237346 -0.488543)
        (xy 6.364599 -0.397076)
        (xy 6.329717 -0.325246)
        (xy 6.231661 -0.299924)
        (xy 6.13929 -0.31336)
        (xy 6.037099 -0.354701)
        (xy 6.037099 -0.256516)
        (xy 6.13929 -0.229644)
        (xy 6.229594 -0.220343)
        (xy 6.399868 -0.268402)
        (xy 6.461104 -0.40276)
        (xy 6.424285 -0.507664)
        (xy 6.316798 -0.561407)
        (xy 6.278428 -0.568642)
        (xy 6.159573 -0.605849)
        (xy 6.135672 -0.663726)
        (xy 6.167324 -0.727288)
        (xy 6.264346 -0.748476)
        (xy 6.348967 -0.73659)
        (xy 6.431519 -0.700933)
        (xy 6.431519 -0.793951)
        (xy 6.3469 -0.819272)
        (xy 6.257112 -0.828057)
        (xy 6.257112 -0.828058)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
    (fp_poly (pts
        (xy 3.613216 -0.828058)
        (xy 3.554563 -0.811521)
        (xy 3.51206 -0.764496)
        (xy 3.51206 -0.814105)
        (xy 3.425373 -0.814105)
        (xy 3.425373 -0.235329)
        (xy 3.51206 -0.235329)
        (xy 3.51206 -0.566575)
        (xy 3.526529 -0.716437)
        (xy 3.579498 -0.748476)
        (xy 3.632466 -0.719537)
        (xy 3.647452 -0.566575)
        (xy 3.647452 -0.235329)
        (xy 3.734656 -0.235329)
        (xy 3.734656 -0.566575)
        (xy 3.749772 -0.716437)
        (xy 3.806744 -0.748476)
        (xy 3.856612 -0.718504)
        (xy 3.870694 -0.566575)
        (xy 3.870694 -0.235329)
        (xy 3.957898 -0.235329)
        (xy 3.957898 -0.570709)
        (xy 3.92883 -0.773797)
        (xy 3.830128 -0.828058)
        (xy 3.764241 -0.809971)
        (xy 3.71967 -0.755194)
        (xy 3.678587 -0.809971)
        (xy 3.613216 -0.828058)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
    (fp_poly (pts
        (xy -0.186035 -1.039414)
        (xy -0.186035 -0.919008)
        (xy -0.090563 -0.919008)
        (xy -0.090563 -1.039414)
        (xy -0.186035 -1.039414)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 1a2f72d1-0b36-4610-afc4-4ad1660d5d3b))
    (fp_poly (pts
        (xy 4.346117 -0.828058)
        (xy 4.341857 -0.747442)
        (xy 4.449861 -0.703517)
        (xy 4.489781 -0.576393)
        (xy 4.17533 -0.575877)
        (xy 4.228298 -0.701968)
        (xy 4.341857 -0.747443)
        (xy 4.341857 -0.747442)
        (xy 4.346117 -0.828058)
        (xy 4.146776 -0.745375)
        (xy 4.071974 -0.5242)
        (xy 4.148326 -0.300958)
        (xy 4.36007 -0.220343)
        (xy 4.457609 -0.231712)
        (xy 4.563029 -0.264785)
        (xy 4.563029 -0.359352)
        (xy 4.456575 -0.315428)
        (xy 4.361103 -0.300958)
        (xy 4.220931 -0.352635)
        (xy 4.171709 -0.498879)
        (xy 4.171709 -0.501979)
        (xy 4.585379 -0.501979)
        (xy 4.585379 -0.548488)
        (xy 4.521042 -0.753127)
        (xy 4.346117 -0.828057)
        (xy 4.346117 -0.828058)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
    (fp_poly (pts
        (xy -0.334992 -0.814105)
        (xy -0.334992 -0.740208)
        (xy -0.186035 -0.740208)
        (xy -0.186035 -0.309226)
        (xy -0.375429 -0.309226)
        (xy -0.375429 -0.235329)
        (xy 0.098961 -0.235329)
        (xy 0.098961 -0.309226)
        (xy -0.090563 -0.309226)
        (xy -0.090563 -0.814105)
        (xy -0.334992 -0.814105)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
    (fp_poly (pts
        (xy 0.540536 -0.828058)
        (xy 0.437312 -0.80222)
        (xy 0.368324 -0.727289)
        (xy 0.368324 -0.814105)
        (xy 0.272723 -0.814105)
        (xy 0.272723 -0.235329)
        (xy 0.368324 -0.235329)
        (xy 0.368324 -0.562441)
        (xy 0.40411 -0.697833)
        (xy 0.507333 -0.745375)
        (xy 0.593504 -0.708685)
        (xy 0.621021 -0.593963)
        (xy 0.621021 -0.235329)
        (xy 0.717011 -0.235329)
        (xy 0.717011 -0.593963)
        (xy 0.672956 -0.769663)
        (xy 0.540536 -0.828058)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4))
    (fp_poly (pts
        (xy -2.454902 -0.758688)
        (xy -2.559288 -0.70236)
        (xy -2.594557 -0.535446)
        (xy -2.559288 -0.368531)
        (xy -2.454902 -0.312203)
        (xy -2.350128 -0.369047)
        (xy -2.313696 -0.535446)
        (xy -2.350128 -0.701844)
        (xy -2.454902 -0.758688)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 5b2b5c7d-f943-4634-9f0a-e9561705c49d))
    (fp_poly (pts
        (xy 5.016619 -0.828058)
        (xy 4.913395 -0.80222)
        (xy 4.844278 -0.727289)
        (xy 4.844278 -0.814105)
        (xy 4.748806 -0.814105)
        (xy 4.748806 -0.235329)
        (xy 4.844278 -0.235329)
        (xy 4.844278 -0.562441)
        (xy 4.880193 -0.697833)
        (xy 4.983417 -0.745375)
        (xy 5.069587 -0.708685)
        (xy 5.097105 -0.593963)
        (xy 5.097105 -0.235329)
        (xy 5.193094 -0.235329)
        (xy 5.193094 -0.593963)
        (xy 5.14904 -0.769663)
        (xy 5.016619 -0.828058)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
    (fp_poly (pts
        (xy 7.250979 -0.825991)
        (xy 7.250979 -0.73194)
        (xy 7.692166 -0.566575)
        (xy 7.250979 -0.402761)
        (xy 7.250979 -0.308193)
        (xy 7.799653 -0.5242)
        (xy 7.799653 -0.609983)
        (xy 7.250979 -0.825991)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
    (fp_poly (pts
        (xy 6.963744 -1.142542)
        (xy 6.929034 -1.037612)
        (xy 6.822897 -0.71568)
        (xy 6.795735 -0.633187)
        (xy 6.747043 -0.484796)
        (xy 6.746218 -0.481877)
        (xy 6.784449 -0.481047)
        (xy 6.822476 -0.47938)
        (xy 6.706279 -0.052518)
        (xy 6.685052 0.025953)
        (xy 6.671472 0.075953)
        (xy 6.671772 0.077203)
        (xy 6.685757 0.045698)
        (xy 6.715838 -0.024927)
        (xy 6.748435 -0.101385)
        (xy 6.780628 -0.176839)
        (xy 6.8259 -0.282973)
        (xy 6.871071 -0.388912)
        (xy 6.903464 -0.464866)
        (xy 6.927509 -0.521204)
        (xy 6.935356 -0.539499)
        (xy 6.891191 -0.539499)
        (xy 6.847026 -0.539916)
        (xy 6.849651 -0.553294)
        (xy 6.862124 -0.615266)
        (xy 6.881239 -0.709832)
        (xy 6.899344 -0.799372)
        (xy 6.926506 -0.933677)
        (xy 6.953669 -1.067983)
        (xy 6.968659 -1.142328)
        (xy 6.974394 -1.172792)
        (xy 6.963729 -1.142203)
        (xy 6.963744 -1.142542)
      ) (layer "F.Cu") (width 0.000106) (fill solid) (tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e))
    (fp_poly (pts
        (xy -5.647988 -0.754037)
        (xy -5.754829 -0.698226)
        (xy -5.791649 -0.535962)
        (xy -5.754829 -0.372665)
        (xy -5.646955 -0.316854)
        (xy -5.546186 -0.373182)
        (xy -5.510917 -0.535962)
        (xy -5.546186 -0.698226)
        (xy -5.647988 -0.754037)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd))
    (fp_poly (pts
        (xy 2.56483 -0.828058)
        (xy 2.447008 -0.794985)
        (xy 2.373757 -0.700934)
        (xy 2.373757 -0.814105)
        (xy 2.277768 -0.814105)
        (xy 2.277768 -0.235329)
        (xy 2.373757 -0.235329)
        (xy 2.373757 -0.523167)
        (xy 2.421041 -0.684397)
        (xy 2.557467 -0.740208)
        (xy 2.627101 -0.729356)
        (xy 2.689371 -0.694733)
        (xy 2.689371 -0.791884)
        (xy 2.630718 -0.819273)
        (xy 2.56483 -0.828058)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381))
    (fp_poly (pts
        (xy -1.756488 -0.765085)
        (xy -1.870047 -0.71961)
        (xy -1.923015 -0.59352)
        (xy -1.608564 -0.594035)
        (xy -1.648484 -0.72116)
        (xy -1.756488 -0.765084)
        (xy -1.756488 -0.765085)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864))
    (fp_poly (pts
        (xy -1.09554 -0.360257)
        (xy -1.09554 -0.110272)
        (xy -0.844522 -0.110272)
        (xy -0.844522 -0.360257)
        (xy -1.09554 -0.360257)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b))
    (fp_poly (pts
        (xy 5.510258 -0.978436)
        (xy 5.510258 -0.814105)
        (xy 5.3551 -0.814105)
        (xy 5.3551 -0.740208)
        (xy 5.510258 -0.740208)
        (xy 5.510258 -0.426015)
        (xy 5.554313 -0.278221)
        (xy 5.705853 -0.235329)
        (xy 5.822642 -0.235329)
        (xy 5.822642 -0.311293)
        (xy 5.715284 -0.311293)
        (xy 5.630147 -0.336615)
        (xy 5.60573 -0.426015)
        (xy 5.60573 -0.740208)
        (xy 5.822642 -0.740208)
        (xy 5.822642 -0.814105)
        (xy 5.60573 -0.814105)
        (xy 5.60573 -0.978436)
        (xy 5.510258 -0.978436)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp dde3dba8-1b81-466c-93a3-c284ff4da1ef))
    (fp_poly (pts
        (xy 2.830577 -0.813072)
        (xy 2.830577 -0.454437)
        (xy 2.874114 -0.278221)
        (xy 3.007052 -0.220343)
        (xy 3.109242 -0.246181)
        (xy 3.178746 -0.322145)
        (xy 3.178746 -0.235329)
        (xy 3.274865 -0.235329)
        (xy 3.274865 -0.813072)
        (xy 3.178746 -0.813072)
        (xy 3.178746 -0.48596)
        (xy 3.142961 -0.350051)
        (xy 3.039737 -0.303025)
        (xy 2.953567 -0.339715)
        (xy 2.926049 -0.454437)
        (xy 2.926049 -0.813072)
        (xy 2.830577 -0.813072)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
    (fp_poly (pts
        (xy 1.141662 -0.828058)
        (xy 0.980173 -0.782582)
        (xy 0.923587 -0.654425)
        (xy 0.961569 -0.550555)
        (xy 1.081975 -0.496812)
        (xy 1.117761 -0.489577)
        (xy 1.121896 -0.488543)
        (xy 1.249019 -0.397076)
        (xy 1.214267 -0.325246)
        (xy 1.116211 -0.299924)
        (xy 1.02384 -0.31336)
        (xy 0.92152 -0.354701)
        (xy 0.92152 -0.256516)
        (xy 1.02384 -0.229644)
        (xy 1.114144 -0.220343)
        (xy 1.284418 -0.268402)
        (xy 1.345654 -0.40276)
        (xy 1.308706 -0.507664)
        (xy 1.201348 -0.561407)
        (xy 1.162849 -0.568642)
        (xy 1.043994 -0.605849)
        (xy 1.020222 -0.663726)
        (xy 1.051874 -0.727288)
        (xy 1.148896 -0.748476)
        (xy 1.233517 -0.73659)
        (xy 1.31607 -0.700933)
        (xy 1.31607 -0.793951)
        (xy 1.23145 -0.819272)
        (xy 1.141662 -0.828057)
        (xy 1.141662 -0.828058)
      ) (layer "F.Cu") (width 0) (fill solid) (tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f))
    (fp_poly (pts
        (xy -8 -1.3)
        (xy -8 0.21)
        (xy 8 0.21)
        (xy 8 -1.3)
      ) (layer "F.Mask") (width 0.15) (fill solid) (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a))
  )

  (footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e37971f)
    (at 101.15 62 -90)
    (descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED")
    (property "PN" "SML-LX0603GW-TR")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2b0159")
    (attr smd)
    (fp_text reference "D1" (at -0.3 -1.2 -90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e)
    )
    (fp_text value "LED" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 97dcf785-3264-40a1-a36e-8842acab24fb)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 363945f6-fbef-42be-99cf-4a8a48434d92)
    )
    (fp_circle (center -1.09 0) (end -1.04 0) (layer "F.SilkS") (width 0.1) (fill none) (tstamp be2983fa-f06e-485e-bea1-3dd96b916ec5))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0cc9bf07-55b9-458f-b8aa-41b2f51fa940))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 241e0c85-4796-48eb-a5a0-1c0f2d6e5910))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 386ad9e3-71fa-420f-8722-88548b024fc5))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6))
    (fp_line (start -0.4 0.25) (end -0.4 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5d49e9a6-41dd-4072-adde-ef1036c1979b))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7f9683c1-2203-43df-8fa1-719a0dc360df))
    (fp_line (start -0.3 0.25) (end -0.3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 87a1984f-543d-4f2e-ad8a-7a3a24ee6047))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b0054ce1-b60e-41de-a6a2-bf712784dd39))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c8ab8246-b2bb-4b06-b45e-2548482466fd))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp dc1d84c8-33da-4489-be8e-2a1de3001779))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 15 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 44035e53-ff94-45ad-801f-55a1ce042a0d))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 23 "LED0") (pinfunction "A") (pintype "passive") (tstamp 212bf70c-2324-47d9-8700-59771063baeb))
    (model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e46fc90)
    (at 58.7 76.65 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e1e51dc")
    (attr smd)
    (fp_text reference "C10" (at 0.4 1.3 -90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b)
    )
    (fp_text value "0.01uF" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b0271cdd-de22-4bf4-8f55-fc137cfbd4ec)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 076046ab-4b56-4060-b8d9-0d80806d0277)
    )
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp d4c9471f-7503-4339-928c-d1abae1eede6))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e4e20505-1208-4100-a4aa-676f50844c06))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Oscillator:Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm" (layer "F.Cu")
    (tedit 61AF84CE) (tstamp 00000000-0000-0000-0000-00005e46fcd1)
    (at 60.7 77.2 -90)
    (descr "Miniature Crystal Clock Oscillator Abracon ASDMB series, 2.5x2.0mm package, http://www.abracon.com/Oscillators/ASDMB.pdf")
    (tags "SMD SMT crystal oscillator")
    (property "PN" "DSC1001DI1-012.0000 ")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e1e4caf")
    (attr smd)
    (fp_text reference "U4" (at -2.15 -1.85) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f6a3288e-9575-42bb-af05-a920d59aded8)
    )
    (fp_text value "DSC1001DI1-012.0000" (at 0 2.45 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ef94502b-f22d-4da7-a17f-4100090b03a1)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.6 0.6) (thickness 0.105)))
      (tstamp 10b20c6b-8045-46d1-a965-0d7dd9a1b5fa)
    )
    (fp_line (start -1.35 0) (end -1.35 1.14) (layer "F.SilkS") (width 0.12) (tstamp b1ba92d5-0d41-4be9-b483-47d08dc1785d))
    (fp_line (start -1.5 1.45) (end 1.5 1.45) (layer "F.CrtYd") (width 0.05) (tstamp 8b963561-586b-4575-b721-87e7914602c6))
    (fp_line (start 1.5 -1.45) (end -1.5 -1.45) (layer "F.CrtYd") (width 0.05) (tstamp b8c8c7a1-d546-4878-9de9-463ec76dff98))
    (fp_line (start -1.5 -1.45) (end -1.5 1.45) (layer "F.CrtYd") (width 0.05) (tstamp bf6104a1-a529-4c00-b4ae-92001543f7ec))
    (fp_line (start 1.5 1.45) (end 1.5 -1.45) (layer "F.CrtYd") (width 0.05) (tstamp da862bae-4511-4bb9-b18d-fa60a2737feb))
    (fp_line (start -1.25 -1) (end 1.25 -1) (layer "F.Fab") (width 0.1) (tstamp 082aed28-f9e8-49e7-96ee-b5aa9f0319c7))
    (fp_line (start -1.25 0.5) (end -0.75 1) (layer "F.Fab") (width 0.1) (tstamp 645bdbdc-8f65-42ef-a021-2d3e7d74a739))
    (fp_line (start -1.25 0.5) (end -1.25 -1) (layer "F.Fab") (width 0.1) (tstamp f503ea07-bcf1-4924-930a-6f7e9cd312f8))
    (fp_line (start 1.25 1) (end -0.75 1) (layer "F.Fab") (width 0.1) (tstamp f67bbef3-6f59-49ba-8890-d1f9dc9f9ad6))
    (fp_line (start 1.25 -1) (end 1.25 1) (layer "F.Fab") (width 0.1) (tstamp fe6d9604-2924-4f38-950b-a31e8a281973))
    (pad "1" smd rect locked (at -0.825 0.775 270) (size 0.65 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 10 "+3V3") (pinfunction "Standby") (pintype "input") (tstamp 82204892-ec79-4d38-a593-52fb9a9b4b87))
    (pad "2" smd rect locked (at 0.825 0.775 270) (size 0.65 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp dec284d9-246c-4619-8dcc-8f4886f9349e))
    (pad "3" smd rect locked (at 0.825 -0.775 270) (size 0.65 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 2 "12MHz") (pinfunction "Out") (pintype "output") (tstamp ae8bb5ae-95ee-4e2d-8a0c-ae5b6149b4e3))
    (pad "4" smd rect locked (at -0.825 -0.775 270) (size 0.65 0.85) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 10 "+3V3") (pinfunction "VDD") (pintype "power_in") (tstamp 8b3ba7fc-20b6-43c4-a020-80151e1caecc))
    (model "${KISYS3DMOD}/Oscillator.3dshapes/microchip-dsc1001DI1.stp"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e470550)
    (at 61.85 66.5 90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ103X")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e261d36")
    (attr smd)
    (fp_text reference "R15" (at 0.3 1.2 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4970ec6e-3725-4619-b57d-dc2c2cb86ed0)
    )
    (fp_text value "10K" (at 0.1 2.4 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f8b47531-6c06-4e54-9fc9-cd9d0f3dd69f)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 0ce1dd44-f307-4f98-9f0d-478fd87daa64)
    )
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0c5dddf1-38df-43d2-b49c-e7b691dab0ab))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 254f7cc6-cee1-44ca-9afe-939b318201aa))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5f48b0f2-82cf-40ce-afac-440f97643c36))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp ca56e1ad-54bf-4df5-a4f7-99f5d61d0de9))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 1855ca44-ab48-4b76-a210-97fc81d916c4))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 3457afc5-3e4f-4220-81d1-b079f653a722))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5e755161-24a5-4650-a6e3-9836bf074412))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e86e4fae-9ca7-4857-a93c-bc6a3048f887))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 9208ea78-8dde-4b3d-91e9-5755ab5efd9a))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 8 "iCE_SS_B") (pintype "passive") (tstamp 58390862-1833-41dd-9c4e-98073ea0da33))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (layer "F.Cu")
    (tedit 5C97300E) (tstamp 00000000-0000-0000-0000-00005e470585)
    (at 58.55 68.5 -90)
    (descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
    (tags "SOIC SO")
    (property "PN" "W25Q32JVSNIQ")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e1e1709")
    (attr smd)
    (fp_text reference "U2" (at 0 -3.4 -90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079)
    )
    (fp_text value "W25Q32JVSSIQ" (at 0 3.4 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.98 0.98) (thickness 0.15)))
      (tstamp eee16674-2d21-45b6-ab5e-d669125df26c)
    )
    (fp_line (start 0 2.56) (end 1.95 2.56) (layer "F.SilkS") (width 0.12) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
    (fp_line (start 0 -2.56) (end 1.95 -2.56) (layer "F.SilkS") (width 0.12) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
    (fp_line (start 0 2.56) (end -1.95 2.56) (layer "F.SilkS") (width 0.12) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
    (fp_line (start 0 -2.56) (end -3.45 -2.56) (layer "F.SilkS") (width 0.12) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
    (fp_line (start -3.7 -2.7) (end -3.7 2.7) (layer "F.CrtYd") (width 0.05) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
    (fp_line (start 3.7 2.7) (end 3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b))
    (fp_line (start -3.7 2.7) (end 3.7 2.7) (layer "F.CrtYd") (width 0.05) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
    (fp_line (start 3.7 -2.7) (end -3.7 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a))
    (fp_line (start 1.95 2.45) (end -1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
    (fp_line (start -0.975 -2.45) (end 1.95 -2.45) (layer "F.Fab") (width 0.1) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
    (fp_line (start -1.95 -1.475) (end -0.975 -2.45) (layer "F.Fab") (width 0.1) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
    (fp_line (start -1.95 2.45) (end -1.95 -1.475) (layer "F.Fab") (width 0.1) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
    (fp_line (start 1.95 -2.45) (end 1.95 2.45) (layer "F.Fab") (width 0.1) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
    (pad "1" smd roundrect locked (at -2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 8 "iCE_SS_B") (pinfunction "~{CS}") (pintype "input") (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
    (pad "2" smd roundrect locked (at -2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 6 "iCE_MISO") (pinfunction "SDO") (pintype "output") (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
    (pad "3" smd roundrect locked (at -2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 32 "Net-(R16-Pad2)") (pinfunction "~{WP}") (pintype "input") (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
    (pad "4" smd roundrect locked (at -2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
    (pad "5" smd roundrect locked (at 2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 5 "iCE_MOSI") (pinfunction "SDI") (pintype "input") (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
    (pad "6" smd roundrect locked (at 2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 7 "iCE_SCK") (pinfunction "SCK") (pintype "input") (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
    (pad "7" smd roundrect locked (at 2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 9 "Net-(R2-Pad2)") (pinfunction "~{HOLD}") (pintype "input") (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
    (pad "8" smd roundrect locked (at 2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
    (model "${KISYS3DMOD}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e4705c5)
    (at 61.85 70.5 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2634f8")
    (attr smd)
    (fp_text reference "C28" (at -0.5 1.2 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1427bb3f-0689-4b41-a816-cd79a5202fd0)
    )
    (fp_text value "0.1uF" (at -0.6 2.4 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 590fefcc-03e7-45d6-b6c9-e51a7c3c36c4)
    )
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 14094ad2-b562-4efa-8c6f-51d7a3134345))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 637f12be-fa48-4ce4-96b2-04c21a8795c8))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp cbebc05a-c4dd-4baf-8c08-196e84e08b27))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f7447e92-4293-41c4-be3f-69b30aad1f17))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 5ff19d63-2cb4-438b-93c4-e66d37a05329))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 616287d9-a51f-498c-8b91-be46a0aa3a7f))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp a599509f-fbb9-4db4-9adf-9e96bab1138d))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 1cb22080-0f59-4c18-a6e6-8685ef44ec53))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 8bdea5f6-7a53-427a-92b8-fd15994c2e8c))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
    (tedit 5F6F9B37) (tstamp 00000000-0000-0000-0000-00005e4764bd)
    (at 56.65 59.75)
    (descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
    (tags "SOT TO_SOT_SMD")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/329e525a-cfe4-4a84-bdd9-541b463e2e75")
    (attr smd)
    (fp_text reference "U3" (at 0 -2.4) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 11f13304-bd4b-4b91-bb72-2e84ab0b85a5)
    )
    (fp_text value "MIC5504-1.2YM5" (at 0 2.4) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b8589e00-0483-400e-942d-568ea8cb1ed7)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
      (effects (font (size 0.4 0.4) (thickness 0.06)))
      (tstamp 3510a739-668e-4f11-83a1-6481b757b3f0)
    )
    (fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 0851a28a-072d-4eb8-9eb6-9182523e5197))
    (fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 4e8df529-8d47-4e77-865b-b182783e5fc5))
    (fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 5eed351f-98f5-471e-9233-df27873867e0))
    (fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 9c3da690-2fa9-46db-8a28-a3110e00961e))
    (fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 1e5f9687-68da-4fa7-a5ab-d249bf5e99b3))
    (fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 4fa7e0c7-23bb-40fb-beb5-e8a2140224b0))
    (fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp d4d1bd68-a9e6-402c-9443-93b1d7dcbad3))
    (fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp e02ef194-98aa-44c2-8b22-88f98c8d0607))
    (fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 0721f147-3ec4-43cf-9f27-709ea322fb67))
    (fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp 32126f38-74e0-48e9-8055-092c94173587))
    (fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 99b50a70-a0e7-4449-a39d-2391a4bbe067))
    (fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp dfbb3a32-5fc1-4833-adae-2237b4b9b7be))
    (fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp f0ad63ea-1ab9-4134-81c2-eb508b42ee41))
    (pad "1" smd roundrect (at -1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 11 "+5V") (pinfunction "VIN") (pintype "power_in") (tstamp 2efb1d28-ca19-43e0-bfcb-4ebd8e6a220b))
    (pad "2" smd roundrect (at -1.1375 0) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 067fb9a1-5278-4e90-ad48-93993d2ed931))
    (pad "3" smd roundrect (at -1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 11 "+5V") (pinfunction "EN") (pintype "input") (tstamp 5778953d-c3f1-4eab-88e0-47485d04ab27))
    (pad "4" smd roundrect (at 1.1375 0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 56 "unconnected-(U3-Pad4)") (pinfunction "NC") (pintype "no_connect") (tstamp 76027acc-26e3-449a-ac06-42967bcb2137))
    (pad "5" smd roundrect (at 1.1375 -0.95) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pinfunction "VOUT") (pintype "power_out") (tstamp 91ab3f4d-d809-4607-a1fa-cd4bd6a0726c))
    (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e476513)
    (at 52.15 59.15 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "ZRB15XR61A106ME01D")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e280667")
    (attr smd)
    (fp_text reference "C1" (at 0.35 1.15 -90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4)
    )
    (fp_text value "10uF" (at -0.2 1.5 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22)
    )
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 11 "+5V") (pintype "passive") (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e47653d)
    (at 61.35 59.05 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "C1005X5R0J475M050BC")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2edd40")
    (attr smd)
    (fp_text reference "C8" (at 2.45 0.35 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527)
    )
    (fp_text value "4.7uF" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8)
    )
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1199146e-a60b-416a-b503-e77d6d2892f9))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp cc15f583-a41b-43af-ba94-a75455506a96))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp afd38b10-2eca-4abe-aed1-a96fb07ffdbe))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 997c2f12-73ba-4c01-9ee0-42e37cbab790))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Diode_SMD:D_0603_1608Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e47798a)
    (at 91.75 57.55)
    (descr "Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "diode")
    (property "PN" "CDBU0520")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e3494ba")
    (attr smd)
    (fp_text reference "D6" (at -0.5 1.45) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ba116096-3ccc-4cc8-a185-5325439e4e24)
    )
    (fp_text value "CDBU0520" (at 0 1.43) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 31bfc3e7-147b-4531-a0c5-e3a305c1647d)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
      (effects (font (size 0.4 0.4) (thickness 0.06)))
      (tstamp 7668b629-abd6-4e14-be84-df90ae487fc6)
    )
    (fp_line (start -1.485 -0.735) (end -1.485 0.735) (layer "F.SilkS") (width 0.12) (tstamp 72366acb-6c86-4134-89df-01ed6e4dc8e0))
    (fp_line (start 0.8 -0.735) (end -1.485 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 7274c82d-0cb9-47de-b093-7d848f491410))
    (fp_line (start -1.485 0.735) (end 0.8 0.735) (layer "F.SilkS") (width 0.12) (tstamp de552ae9-cde6-4643-8cc7-9de2579dadae))
    (fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 363189af-2faa-46a4-b025-5a779d801f2e))
    (fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 37657eee-b379-4145-b65d-79c82b53e49e))
    (fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 386faf3f-2adf-472a-84bf-bd511edf2429))
    (fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp f934a442-23d6-4e5b-908f-bb9199ad6f8b))
    (fp_line (start -0.8 -0.1) (end -0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp 112371bd-7aa2-4b47-b184-50d12afc2534))
    (fp_line (start -0.5 -0.4) (end -0.8 -0.1) (layer "F.Fab") (width 0.1) (tstamp 5c32b099-dba7-4228-8a5e-c2156f635ce2))
    (fp_line (start 0.8 -0.4) (end -0.5 -0.4) (layer "F.Fab") (width 0.1) (tstamp 7ca71fec-e7f1-454f-9196-b80d15925fff))
    (fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "F.Fab") (width 0.1) (tstamp b66b83a0-313f-4b03-b851-c6e9577a6eb7))
    (fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "F.Fab") (width 0.1) (tstamp dad2f9a9-292b-4f7e-9524-a263f3c1ba74))
    (pad "1" smd roundrect locked (at -0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 41 "Net-(D6-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 1d0d5161-c82f-4c77-a9ca-15d017db65d3))
    (pad "2" smd roundrect locked (at 0.7875 0) (size 0.875 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "A") (pintype "passive") (tstamp 6f1beb86-67e1-46bf-8c2b-6d1e1485d5c0))
    (model "${KISYS3DMOD}/Diode_SMD.3dshapes/D_0603_1608Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Package_QFP:TQFP-144_20x20mm_P0.5mm" (layer "F.Cu")
    (tedit 5B56F227) (tstamp 00000000-0000-0000-0000-00005e477b10)
    (at 78.25 67.3)
    (descr "TQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_qfp_generator.py")
    (tags "TQFP QFP")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e1df482")
    (attr smd)
    (fp_text reference "U1" (at -11.2 -10.4) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12)
    )
    (fp_text value "ICE40HX1K-TQ144" (at 0 12.35) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2)
    )
    (fp_line (start -9.16 10.11) (end -10.11 10.11) (layer "F.SilkS") (width 0.12) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
    (fp_line (start -10.11 -10.11) (end -10.11 -9.16) (layer "F.SilkS") (width 0.12) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
    (fp_line (start 10.11 10.11) (end 10.11 9.16) (layer "F.SilkS") (width 0.12) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
    (fp_line (start -9.16 -10.11) (end -10.11 -10.11) (layer "F.SilkS") (width 0.12) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
    (fp_line (start -10.11 -9.16) (end -11.4 -9.16) (layer "F.SilkS") (width 0.12) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
    (fp_line (start 9.16 -10.11) (end 10.11 -10.11) (layer "F.SilkS") (width 0.12) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
    (fp_line (start 9.16 10.11) (end 10.11 10.11) (layer "F.SilkS") (width 0.12) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
    (fp_line (start -10.11 10.11) (end -10.11 9.16) (layer "F.SilkS") (width 0.12) (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
    (fp_line (start 10.11 -10.11) (end 10.11 -9.16) (layer "F.SilkS") (width 0.12) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
    (fp_line (start -9.15 -11.65) (end -9.15 -10.25) (layer "F.CrtYd") (width 0.05) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
    (fp_line (start 0 -11.65) (end 9.15 -11.65) (layer "F.CrtYd") (width 0.05) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
    (fp_line (start 9.15 11.65) (end 9.15 10.25) (layer "F.CrtYd") (width 0.05) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
    (fp_line (start -9.15 -10.25) (end -10.25 -10.25) (layer "F.CrtYd") (width 0.05) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
    (fp_line (start 10.25 -9.15) (end 11.65 -9.15) (layer "F.CrtYd") (width 0.05) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
    (fp_line (start -9.15 10.25) (end -10.25 10.25) (layer "F.CrtYd") (width 0.05) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
    (fp_line (start 11.65 9.15) (end 11.65 0) (layer "F.CrtYd") (width 0.05) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
    (fp_line (start -11.65 -9.15) (end -11.65 0) (layer "F.CrtYd") (width 0.05) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
    (fp_line (start 9.15 -10.25) (end 10.25 -10.25) (layer "F.CrtYd") (width 0.05) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
    (fp_line (start -10.25 10.25) (end -10.25 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
    (fp_line (start 11.65 -9.15) (end 11.65 0) (layer "F.CrtYd") (width 0.05) (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
    (fp_line (start 10.25 -10.25) (end 10.25 -9.15) (layer "F.CrtYd") (width 0.05) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
    (fp_line (start 9.15 -11.65) (end 9.15 -10.25) (layer "F.CrtYd") (width 0.05) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
    (fp_line (start 0 11.65) (end 9.15 11.65) (layer "F.CrtYd") (width 0.05) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
    (fp_line (start 0 11.65) (end -9.15 11.65) (layer "F.CrtYd") (width 0.05) (tstamp 852dabbf-de45-4470-8176-59d37a754407))
    (fp_line (start 9.15 10.25) (end 10.25 10.25) (layer "F.CrtYd") (width 0.05) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
    (fp_line (start 10.25 10.25) (end 10.25 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
    (fp_line (start -9.15 11.65) (end -9.15 10.25) (layer "F.CrtYd") (width 0.05) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
    (fp_line (start 10.25 9.15) (end 11.65 9.15) (layer "F.CrtYd") (width 0.05) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
    (fp_line (start -10.25 9.15) (end -11.65 9.15) (layer "F.CrtYd") (width 0.05) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
    (fp_line (start -10.25 -9.15) (end -11.65 -9.15) (layer "F.CrtYd") (width 0.05) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
    (fp_line (start -11.65 9.15) (end -11.65 0) (layer "F.CrtYd") (width 0.05) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
    (fp_line (start 0 -11.65) (end -9.15 -11.65) (layer "F.CrtYd") (width 0.05) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
    (fp_line (start -10.25 -10.25) (end -10.25 -9.15) (layer "F.CrtYd") (width 0.05) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
    (fp_line (start 10 -10) (end 10 10) (layer "F.Fab") (width 0.1) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
    (fp_line (start -10 -9) (end -9 -10) (layer "F.Fab") (width 0.1) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
    (fp_line (start 10 10) (end -10 10) (layer "F.Fab") (width 0.1) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
    (fp_line (start -9 -10) (end 10 -10) (layer "F.Fab") (width 0.1) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
    (fp_line (start -10 10) (end -10 -9) (layer "F.Fab") (width 0.1) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
    (pad "1" smd roundrect locked (at -10.6625 -8.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 133 "unconnected-(U1-Pad1)") (pinfunction "IOL_1A") (pintype "bidirectional") (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
    (pad "2" smd roundrect locked (at -10.6625 -8.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 132 "unconnected-(U1-Pad2)") (pinfunction "IOL_1B") (pintype "bidirectional") (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
    (pad "3" smd roundrect locked (at -10.6625 -7.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 131 "unconnected-(U1-Pad3)") (pinfunction "IOL_2A") (pintype "bidirectional") (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
    (pad "4" smd roundrect locked (at -10.6625 -7.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 130 "unconnected-(U1-Pad4)") (pinfunction "IOL_2B") (pintype "bidirectional") (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
    (pad "5" smd roundrect locked (at -10.6625 -6.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
    (pad "6" smd roundrect locked (at -10.6625 -6.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCCIO_3") (pintype "power_in") (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
    (pad "7" smd roundrect locked (at -10.6625 -5.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 129 "unconnected-(U1-Pad7)") (pinfunction "IOL_3A") (pintype "bidirectional") (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
    (pad "8" smd roundrect locked (at -10.6625 -5.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 42 "RS232_Tx_TTL") (pinfunction "IOL_3B") (pintype "bidirectional") (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
    (pad "9" smd roundrect locked (at -10.6625 -4.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 43 "RS232_Rx_TTL") (pinfunction "IOL_4A") (pintype "bidirectional") (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
    (pad "10" smd roundrect locked (at -10.6625 -4.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 128 "unconnected-(U1-Pad10)") (pinfunction "IOL_4B") (pintype "bidirectional") (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
    (pad "11" smd roundrect locked (at -10.6625 -3.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 127 "unconnected-(U1-Pad11)") (pinfunction "IOL_5A") (pintype "bidirectional") (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
    (pad "12" smd roundrect locked (at -10.6625 -3.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 126 "unconnected-(U1-Pad12)") (pinfunction "IOL_5B") (pintype "bidirectional") (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
    (pad "13" smd roundrect locked (at -10.6625 -2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
    (pad "14" smd roundrect locked (at -10.6625 -2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
    (pad "15" smd roundrect locked (at -10.6625 -1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 125 "unconnected-(U1-Pad15)") (pinfunction "NC") (pintype "no_connect") (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
    (pad "16" smd roundrect locked (at -10.6625 -1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 124 "unconnected-(U1-Pad16)") (pinfunction "NC") (pintype "no_connect") (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
    (pad "17" smd roundrect locked (at -10.6625 -0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 123 "unconnected-(U1-Pad17)") (pinfunction "NC") (pintype "no_connect") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
    (pad "18" smd roundrect locked (at -10.6625 -0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 122 "unconnected-(U1-Pad18)") (pinfunction "NC") (pintype "no_connect") (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
    (pad "19" smd roundrect locked (at -10.6625 0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 121 "unconnected-(U1-Pad19)") (pinfunction "IOL_6A") (pintype "bidirectional") (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
    (pad "20" smd roundrect locked (at -10.6625 0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 120 "unconnected-(U1-Pad20)") (pinfunction "IOL_6B_GBIN7") (pintype "bidirectional") (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
    (pad "21" smd roundrect locked (at -10.6625 1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 2 "12MHz") (pinfunction "IOL_7A_GBIN6") (pintype "bidirectional") (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
    (pad "22" smd roundrect locked (at -10.6625 1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 119 "unconnected-(U1-Pad22)") (pinfunction "IOL_7B") (pintype "bidirectional") (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
    (pad "23" smd roundrect locked (at -10.6625 2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 118 "unconnected-(U1-Pad23)") (pinfunction "IOL_8A") (pintype "bidirectional") (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
    (pad "24" smd roundrect locked (at -10.6625 2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 117 "unconnected-(U1-Pad24)") (pinfunction "IOL_8B") (pintype "bidirectional") (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
    (pad "25" smd roundrect locked (at -10.6625 3.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 116 "unconnected-(U1-Pad25)") (pinfunction "IOL_9A") (pintype "bidirectional") (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
    (pad "26" smd roundrect locked (at -10.6625 3.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 115 "unconnected-(U1-Pad26)") (pinfunction "IOL_9B") (pintype "bidirectional") (tstamp 097edb1b-8998-4e70-b670-bba125982348))
    (pad "27" smd roundrect locked (at -10.6625 4.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pinfunction "VCC") (pintype "power_in") (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
    (pad "28" smd roundrect locked (at -10.6625 4.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 114 "unconnected-(U1-Pad28)") (pinfunction "IOL_10A") (pintype "bidirectional") (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
    (pad "29" smd roundrect locked (at -10.6625 5.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 113 "unconnected-(U1-Pad29)") (pinfunction "IOL_10B") (pintype "bidirectional") (tstamp 2d67a417-188f-4014-9282-000265d80009))
    (pad "30" smd roundrect locked (at -10.6625 5.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCCIO_3") (pintype "passive") (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
    (pad "31" smd roundrect locked (at -10.6625 6.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 112 "unconnected-(U1-Pad31)") (pinfunction "IOL_11A") (pintype "bidirectional") (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
    (pad "32" smd roundrect locked (at -10.6625 6.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 111 "unconnected-(U1-Pad32)") (pinfunction "IOL_11B") (pintype "bidirectional") (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
    (pad "33" smd roundrect locked (at -10.6625 7.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 110 "unconnected-(U1-Pad33)") (pinfunction "IOL_12A") (pintype "bidirectional") (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
    (pad "34" smd roundrect locked (at -10.6625 7.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 109 "unconnected-(U1-Pad34)") (pinfunction "IOL_12B") (pintype "bidirectional") (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
    (pad "35" smd roundrect locked (at -10.6625 8.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GNDPLL") (pintype "power_in") (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
    (pad "36" smd roundrect locked (at -10.6625 8.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 13 "Net-(C26-Pad1)") (pinfunction "VCCPLL") (pintype "power_in") (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
    (pad "37" smd roundrect locked (at -8.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 108 "unconnected-(U1-Pad37)") (pinfunction "IOB_24") (pintype "bidirectional") (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
    (pad "38" smd roundrect locked (at -8.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 107 "unconnected-(U1-Pad38)") (pinfunction "IOB_25") (pintype "bidirectional") (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
    (pad "39" smd roundrect locked (at -7.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 106 "unconnected-(U1-Pad39)") (pinfunction "IOB_26") (pintype "bidirectional") (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
    (pad "40" smd roundrect locked (at -7.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 105 "unconnected-(U1-Pad40)") (pinfunction "NC") (pintype "no_connect") (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
    (pad "41" smd roundrect locked (at -6.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 104 "unconnected-(U1-Pad41)") (pinfunction "IOB_27") (pintype "bidirectional") (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
    (pad "42" smd roundrect locked (at -6.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 103 "unconnected-(U1-Pad42)") (pinfunction "IOB_28") (pintype "bidirectional") (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
    (pad "43" smd roundrect locked (at -5.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 102 "unconnected-(U1-Pad43)") (pinfunction "IOB_29") (pintype "bidirectional") (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
    (pad "44" smd roundrect locked (at -5.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 101 "unconnected-(U1-Pad44)") (pinfunction "IOB_30") (pintype "bidirectional") (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
    (pad "45" smd roundrect locked (at -4.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 100 "unconnected-(U1-Pad45)") (pinfunction "IOB_31") (pintype "bidirectional") (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
    (pad "46" smd roundrect locked (at -4.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCCIO_2") (pintype "power_in") (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
    (pad "47" smd roundrect locked (at -3.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 99 "unconnected-(U1-Pad47)") (pinfunction "IOB_32") (pintype "bidirectional") (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
    (pad "48" smd roundrect locked (at -3.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 98 "unconnected-(U1-Pad48)") (pinfunction "IOB_33") (pintype "bidirectional") (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
    (pad "49" smd roundrect locked (at -2.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 97 "unconnected-(U1-Pad49)") (pinfunction "IOB_35_GBIN5") (pintype "bidirectional") (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
    (pad "50" smd roundrect locked (at -2.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 96 "unconnected-(U1-Pad50)") (pinfunction "IOB_36_GBIN4") (pintype "bidirectional") (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
    (pad "51" smd roundrect locked (at -1.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
    (pad "52" smd roundrect locked (at -1.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 95 "unconnected-(U1-Pad52)") (pinfunction "IOB_34") (pintype "bidirectional") (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
    (pad "53" smd roundrect locked (at -0.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 94 "unconnected-(U1-Pad53)") (pinfunction "NC") (pintype "no_connect") (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
    (pad "54" smd roundrect locked (at -0.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 93 "unconnected-(U1-Pad54)") (pinfunction "NC") (pintype "no_connect") (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
    (pad "55" smd roundrect locked (at 0.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 92 "unconnected-(U1-Pad55)") (pinfunction "NC") (pintype "no_connect") (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
    (pad "56" smd roundrect locked (at 0.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 91 "unconnected-(U1-Pad56)") (pinfunction "IOB_37") (pintype "bidirectional") (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
    (pad "57" smd roundrect locked (at 1.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCCIO_2") (pintype "passive") (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
    (pad "58" smd roundrect locked (at 1.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 90 "unconnected-(U1-Pad58)") (pinfunction "IOB_38") (pintype "bidirectional") (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
    (pad "59" smd roundrect locked (at 2.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
    (pad "60" smd roundrect locked (at 2.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 89 "unconnected-(U1-Pad60)") (pinfunction "IOB_39") (pintype "bidirectional") (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
    (pad "61" smd roundrect locked (at 3.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 88 "unconnected-(U1-Pad61)") (pinfunction "IOB_40") (pintype "bidirectional") (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
    (pad "62" smd roundrect locked (at 3.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 87 "unconnected-(U1-Pad62)") (pinfunction "IOB_41") (pintype "bidirectional") (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
    (pad "63" smd roundrect locked (at 4.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 86 "unconnected-(U1-Pad63)") (pinfunction "IOB_42_CBSEL0") (pintype "bidirectional") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
    (pad "64" smd roundrect locked (at 4.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 85 "unconnected-(U1-Pad64)") (pinfunction "IOB_43_CBSEL1") (pintype "bidirectional") (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
    (pad "65" smd roundrect locked (at 5.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 3 "iCE_CDONE") (pinfunction "CDONE") (pintype "open_collector") (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
    (pad "66" smd roundrect locked (at 5.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 4 "iCE_CREST") (pinfunction "~{CRESET_B}") (pintype "input") (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
    (pad "67" smd roundrect locked (at 6.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 5 "iCE_MOSI") (pinfunction "IOB_44_SDO") (pintype "bidirectional") (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
    (pad "68" smd roundrect locked (at 6.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 6 "iCE_MISO") (pinfunction "IOB_45_SDI") (pintype "bidirectional") (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
    (pad "69" smd roundrect locked (at 7.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
    (pad "70" smd roundrect locked (at 7.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 7 "iCE_SCK") (pinfunction "IOB_46_SCK") (pintype "bidirectional") (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
    (pad "71" smd roundrect locked (at 8.25 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 8 "iCE_SS_B") (pinfunction "IOB_47_SS") (pintype "bidirectional") (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
    (pad "72" smd roundrect locked (at 8.75 10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCC_SPI") (pintype "power_in") (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
    (pad "73" smd roundrect locked (at 10.6625 8.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 84 "unconnected-(U1-Pad73)") (pinfunction "IOR_48") (pintype "bidirectional") (tstamp f3628265-0155-43e2-a467-c40ff783e265))
    (pad "74" smd roundrect locked (at 10.6625 8.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 83 "unconnected-(U1-Pad74)") (pinfunction "IOR_49") (pintype "bidirectional") (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
    (pad "75" smd roundrect locked (at 10.6625 7.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 82 "unconnected-(U1-Pad75)") (pinfunction "IOR_50") (pintype "bidirectional") (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
    (pad "76" smd roundrect locked (at 10.6625 7.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 81 "unconnected-(U1-Pad76)") (pinfunction "IOR_51") (pintype "bidirectional") (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
    (pad "77" smd roundrect locked (at 10.6625 6.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 80 "unconnected-(U1-Pad77)") (pinfunction "NC") (pintype "no_connect") (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
    (pad "78" smd roundrect locked (at 10.6625 6.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 24 "PIO1_02") (pinfunction "IOR_52") (pintype "bidirectional") (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
    (pad "79" smd roundrect locked (at 10.6625 5.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 25 "PIO1_03") (pinfunction "IOR_53") (pintype "bidirectional") (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
    (pad "80" smd roundrect locked (at 10.6625 5.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 26 "PIO1_04") (pinfunction "IOR_54") (pintype "bidirectional") (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
    (pad "81" smd roundrect locked (at 10.6625 4.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 27 "PIO1_05") (pinfunction "IOR_55") (pintype "bidirectional") (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
    (pad "82" smd roundrect locked (at 10.6625 4.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 79 "unconnected-(U1-Pad82)") (pinfunction "NC") (pintype "no_connect") (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
    (pad "83" smd roundrect locked (at 10.6625 3.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 78 "unconnected-(U1-Pad83)") (pinfunction "NC") (pintype "no_connect") (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
    (pad "84" smd roundrect locked (at 10.6625 3.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 77 "unconnected-(U1-Pad84)") (pinfunction "NC") (pintype "no_connect") (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
    (pad "85" smd roundrect locked (at 10.6625 2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 76 "unconnected-(U1-Pad85)") (pinfunction "NC") (pintype "no_connect") (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
    (pad "86" smd roundrect locked (at 10.6625 2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
    (pad "87" smd roundrect locked (at 10.6625 1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 28 "PIO1_06") (pinfunction "IOR_56") (pintype "bidirectional") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
    (pad "88" smd roundrect locked (at 10.6625 1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 29 "PIO1_07") (pinfunction "IOR_57") (pintype "bidirectional") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
    (pad "89" smd roundrect locked (at 10.6625 0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCCIO_1") (pintype "power_in") (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04))
    (pad "90" smd roundrect locked (at 10.6625 0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 30 "PIO1_08") (pinfunction "IOR_58") (pintype "bidirectional") (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
    (pad "91" smd roundrect locked (at 10.6625 -0.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 31 "PIO1_09") (pinfunction "IOR_59") (pintype "bidirectional") (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
    (pad "92" smd roundrect locked (at 10.6625 -0.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
    (pad "93" smd roundrect locked (at 10.6625 -1.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 75 "unconnected-(U1-Pad93)") (pinfunction "IOR_60_GBIN3") (pintype "bidirectional") (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
    (pad "94" smd roundrect locked (at 10.6625 -1.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 74 "unconnected-(U1-Pad94)") (pinfunction "IOR_61_GBIN2") (pintype "bidirectional") (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
    (pad "95" smd roundrect locked (at 10.6625 -2.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 14 "LED4") (pinfunction "IOR_62") (pintype "bidirectional") (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
    (pad "96" smd roundrect locked (at 10.6625 -2.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 17 "LED3") (pinfunction "IOR_63") (pintype "bidirectional") (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
    (pad "97" smd roundrect locked (at 10.6625 -3.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 19 "LED2") (pinfunction "IOR_64") (pintype "bidirectional") (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
    (pad "98" smd roundrect locked (at 10.6625 -3.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 20 "LED1") (pinfunction "IOR_65") (pintype "bidirectional") (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
    (pad "99" smd roundrect locked (at 10.6625 -4.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 23 "LED0") (pinfunction "IOR_66") (pintype "bidirectional") (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
    (pad "100" smd roundrect locked (at 10.6625 -4.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCCIO_1") (pintype "passive") (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
    (pad "101" smd roundrect locked (at 10.6625 -5.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 73 "unconnected-(U1-Pad101)") (pinfunction "IOR_67") (pintype "bidirectional") (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
    (pad "102" smd roundrect locked (at 10.6625 -5.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 72 "unconnected-(U1-Pad102)") (pinfunction "IOR_68") (pintype "bidirectional") (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
    (pad "103" smd roundrect locked (at 10.6625 -6.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
    (pad "104" smd roundrect locked (at 10.6625 -6.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 71 "unconnected-(U1-Pad104)") (pinfunction "IOR_69") (pintype "bidirectional") (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
    (pad "105" smd roundrect locked (at 10.6625 -7.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 70 "IR_TXD") (pinfunction "IOR_70") (pintype "bidirectional") (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
    (pad "106" smd roundrect locked (at 10.6625 -7.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 69 "IR_RXD") (pinfunction "IOR_71") (pintype "bidirectional") (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
    (pad "107" smd roundrect locked (at 10.6625 -8.25) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 68 "IR_SD") (pinfunction "IOR_72") (pintype "bidirectional") (tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160))
    (pad "108" smd roundrect locked (at 10.6625 -8.75) (size 1.475 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 41 "Net-(D6-Pad1)") (pinfunction "VPP_2V5") (pintype "power_in") (tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067))
    (pad "109" smd roundrect locked (at 8.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 67 "unconnected-(U1-Pad109)") (pinfunction "VPP_FAST") (pintype "power_in") (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
    (pad "110" smd roundrect locked (at 8.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 66 "unconnected-(U1-Pad110)") (pinfunction "NC") (pintype "no_connect") (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
    (pad "111" smd roundrect locked (at 7.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pinfunction "VCC") (pintype "passive") (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
    (pad "112" smd roundrect locked (at 7.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 40 "PIO0_02") (pinfunction "IOT_73") (pintype "bidirectional") (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
    (pad "113" smd roundrect locked (at 6.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 39 "PIO0_03") (pinfunction "IOT_74") (pintype "bidirectional") (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
    (pad "114" smd roundrect locked (at 6.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 38 "PIO0_04") (pinfunction "IOT_75") (pintype "bidirectional") (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
    (pad "115" smd roundrect locked (at 5.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 37 "PIO0_05") (pinfunction "IOT_76") (pintype "bidirectional") (tstamp a15a7506-eae4-4933-84da-9ad754258706))
    (pad "116" smd roundrect locked (at 5.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 36 "PIO0_06") (pinfunction "IOT_77") (pintype "bidirectional") (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
    (pad "117" smd roundrect locked (at 4.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 35 "PIO0_07") (pinfunction "IOT_78") (pintype "bidirectional") (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
    (pad "118" smd roundrect locked (at 4.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 34 "PIO0_08") (pinfunction "IOT_79") (pintype "bidirectional") (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
    (pad "119" smd roundrect locked (at 3.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 33 "PIO0_09") (pinfunction "IOT_80") (pintype "bidirectional") (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
    (pad "120" smd roundrect locked (at 3.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 44 "PIO0_10") (pinfunction "IOT_81") (pintype "bidirectional") (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
    (pad "121" smd roundrect locked (at 2.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 46 "PIO0_11") (pinfunction "IOT_82") (pintype "bidirectional") (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
    (pad "122" smd roundrect locked (at 2.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 45 "PIO0_12") (pinfunction "IOT_83") (pintype "bidirectional") (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
    (pad "123" smd roundrect locked (at 1.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCCIO_0") (pintype "power_in") (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
    (pad "124" smd roundrect locked (at 1.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 65 "unconnected-(U1-Pad124)") (pinfunction "NC") (pintype "no_connect") (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
    (pad "125" smd roundrect locked (at 0.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 64 "unconnected-(U1-Pad125)") (pinfunction "NC") (pintype "no_connect") (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
    (pad "126" smd roundrect locked (at 0.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 63 "unconnected-(U1-Pad126)") (pinfunction "NC") (pintype "no_connect") (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
    (pad "127" smd roundrect locked (at -0.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 62 "unconnected-(U1-Pad127)") (pinfunction "NC") (pintype "no_connect") (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
    (pad "128" smd roundrect locked (at -0.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 47 "PIO0_13") (pinfunction "IOT_84_GBIN1") (pintype "bidirectional") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
    (pad "129" smd roundrect locked (at -1.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 48 "PIO0_14") (pinfunction "IOT_85_GBIN0") (pintype "bidirectional") (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
    (pad "130" smd roundrect locked (at -1.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 61 "unconnected-(U1-Pad130)") (pinfunction "NC") (pintype "no_connect") (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
    (pad "131" smd roundrect locked (at -2.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 60 "unconnected-(U1-Pad131)") (pinfunction "NC") (pintype "no_connect") (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
    (pad "132" smd roundrect locked (at -2.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
    (pad "133" smd roundrect locked (at -3.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pinfunction "VCCIO_0") (pintype "passive") (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
    (pad "134" smd roundrect locked (at -3.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 49 "PIO0_15") (pinfunction "IOT_87") (pintype "bidirectional") (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
    (pad "135" smd roundrect locked (at -4.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 50 "PIO0_16") (pinfunction "IOT_88") (pintype "bidirectional") (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
    (pad "136" smd roundrect locked (at -4.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 55 "PIO0_17") (pinfunction "IOT_89") (pintype "bidirectional") (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
    (pad "137" smd roundrect locked (at -5.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 54 "PIO0_18") (pinfunction "IOT_90") (pintype "bidirectional") (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
    (pad "138" smd roundrect locked (at -5.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 53 "PIO0_19") (pinfunction "IOT_91") (pintype "bidirectional") (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
    (pad "139" smd roundrect locked (at -6.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 52 "PIO0_20") (pinfunction "IOT_92") (pintype "bidirectional") (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
    (pad "140" smd roundrect locked (at -6.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pinfunction "GND") (pintype "passive") (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
    (pad "141" smd roundrect locked (at -7.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 51 "PIO0_21") (pinfunction "IOT_93") (pintype "bidirectional") (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
    (pad "142" smd roundrect locked (at -7.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 59 "unconnected-(U1-Pad142)") (pinfunction "IOT_94") (pintype "bidirectional") (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
    (pad "143" smd roundrect locked (at -8.25 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 58 "unconnected-(U1-Pad143)") (pinfunction "IOT_95") (pintype "bidirectional") (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
    (pad "144" smd roundrect locked (at -8.75 -10.6625) (size 0.3 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 57 "unconnected-(U1-Pad144)") (pinfunction "IOT_96") (pintype "bidirectional") (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
    (model "${KISYS3DMOD}/Package_QFP.3dshapes/TQFP-144_20x20mm_P0.5mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477f1b)
    (at 65.85 77 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "ZRB15XR61A106ME01D")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e25c43a")
    (attr smd)
    (fp_text reference "C30" (at -1.5 0.15 180) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3)
    )
    (fp_text value "10uF" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171)
    )
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 13 "Net-(C26-Pad1)") (pintype "passive") (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e477f45)
    (at 65.95 73 -90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ101X")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e25c500")
    (attr smd)
    (fp_text reference "R20" (at 0 1.2 -90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b456cffc-d9d7-4c91-91f2-36ec9a65dd1b)
    )
    (fp_text value "100" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4e677390-a246-4ca0-954c-746e0870f88f)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 35fb7c56-dc85-43f7-b954-81b8040a8500)
    )
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 291935ec-f8ff-41f0-8717-e68b8af7b8c1))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 49a65079-57a9-46fc-8711-1d7f2cab8dbf))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 73ee7e03-97a8-4121-b568-c25f3934a935))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 87ba184f-bff5-4989-8217-6af375cc3dd8))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 58cc7831-f944-4d33-8c61-2fd5bebc61e0))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6ae963fb-e34f-4e11-9adf-78839a5b2ef1))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp d45d1afe-78e6-4045-862c-b274469da903))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp f203116d-f256-4611-a03e-9536bbedaf2f))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp 92a23ed4-a5ea-4cea-bc33-0a83191a0d32))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 13 "Net-(C26-Pad1)") (pintype "passive") (tstamp 9de304ba-fba7-4896-b969-9d87a3522d74))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477f6f)
    (at 64.85 77 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e25c101")
    (attr smd)
    (fp_text reference "C26" (at -1.5 -0.35 180) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 01f82238-6335-48fe-8b0a-6853e227345a)
    )
    (fp_text value "0.1uF" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0e249018-17e7-42b3-ae5d-5ebf3ae299ae)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 63489ebf-0f52-43a6-a0ab-158b1a7d4988)
    )
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7db990e4-92e1-4f99-b4d2-435bbec1ba83))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8efee08b-b92e-4ba6-8722-c058e18114fe))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp cd5e758d-cb66-484a-ae8b-21f53ceee49e))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e6d68f56-4a40-4849-b8d1-13d5ca292900))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 52a8f1be-73ca-41a8-bc24-2320706b0ec1))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d102186a-5b58-41d0-9985-3dbb3593f397))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp e300709f-6c72-488d-a598-efcbd6d3af54))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp e36988d2-ecb2-461b-a443-7006f447e828))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 13 "Net-(C26-Pad1)") (pintype "passive") (tstamp f4a8afbe-ed68-4253-959f-6be4d2cbf8c5))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 7c2008c8-0626-4a09-a873-065e83502a0e))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e499076)
    (at 89.1 56.3)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e26453b")
    (attr smd)
    (fp_text reference "C19" (at 1.9 -0.3) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981)
    )
    (fp_text value "0.1uF" (at 0 1.17) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae)
    )
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e1535036-5d36-405f-bb86-3819621c4f23))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e49e414)
    (at 97.982852 69.321589 -90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ102X ")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2d2fe4")
    (attr smd)
    (fp_text reference "R10" (at 1.678411 -0.017148 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp f33ec0db-ef0f-4576-8054-2833161a8f30)
    )
    (fp_text value "1K" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0ba17a9b-d889-426c-b4fe-048bed6b6be8)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 761c8e29-382a-475c-a37a-7201cc9cd0f5)
    )
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 653a86ba-a1ae-4175-9d4c-c788087956d0))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7233cb6b-d8fd-4fcd-9b4f-8b0ed19b1b12))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp df83f395-2d18-47e2-a370-952ca41c2b3a))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e50c80c5-80c4-46a3-8c1e-c9c3a71a0934))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 29cbb0bc-f66b-4d11-80e7-5bb270e42496))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 6a0919c2-460c-4229-b872-14e318e1ba8b))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp d1c19c11-0a13-4237-b6b4-fb2ef1db7c6d))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 22 "Net-(D5-Pad1)") (pintype "passive") (tstamp 355ced6c-c08a-4586-9a09-7a9c624536f6))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp c401e9c6-1deb-4979-99be-7c801c952098))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e49e43e)
    (at 100.082852 69.321589 -90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ102X ")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2b04dd")
    (attr smd)
    (fp_text reference "R12" (at 1.678411 0.082852 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 4641c87c-bffa-41fe-ae77-be3a97a6f797)
    )
    (fp_text value "1K" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4cc0e615-05a0-4f42-a208-4011ba8ef841)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 98966de3-2364-43d8-a2e0-b03bb9487b03)
    )
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 24adc223-60f0-4497-98a3-d664c5a13280))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 278a91dc-d57d-4a5c-a045-34b6bd84131f))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6d2a06fb-0b1e-452a-ab38-11a5f45e1b32))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 631c7be5-8dc2-4df4-ab73-737bb928e763))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 929a9b03-e99e-4b88-8e16-759f8c6b59a5))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp b21299b9-3c4d-43df-b399-7f9b08eb5470))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp c210293b-1d7a-4e96-92e9-058784106727))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 18 "Net-(D3-Pad1)") (pintype "passive") (tstamp 751d823e-1d7b-4501-9658-d06d459b0e16))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp fc2e9f96-3bed-4896-b995-f56e799f1c77))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e49e468)
    (at 102.14399 69.336959 -90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ102X ")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2b02de")
    (attr smd)
    (fp_text reference "R14" (at 1.663041 0.14399 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 968a6172-7a4e-40ab-a78a-e4d03671e136)
    )
    (fp_text value "1K" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 26a22c19-4cc5-4237-9651-0edc4f854154)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp c1b11207-7c0a-49b3-a41d-2fe677d5f3b8)
    )
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3b65c51e-c243-447e-bee9-832d94c1630e))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 402c62e6-8d8e-473a-a0cf-2b86e4908cd7))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 88deea08-baa5-4041-beb7-01c299cf00e6))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp a177c3b4-b04c-490e-b3fe-d3d4d7aa24a7))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 5bab6a37-1fdf-4cf8-b571-44c962ed86e9))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 706c1cb9-5d96-4282-9efc-6147f0125147))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 92f063a3-7cce-4a96-8a3a-cf5767f700c6))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp ad4d05f5-6957-42f8-b65c-c657b9a26485))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 15 "Net-(D1-Pad1)") (pintype "passive") (tstamp 9ed09117-33cf-45a3-85a7-2606522feaf8))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp eb391a95-1c1d-4613-b508-c76b8bc13a73))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e49e4bc)
    (at 101.132852 69.321589 -90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ102X ")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2b041c")
    (attr smd)
    (fp_text reference "R13" (at 1.678411 0.132852 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp 54ed3ee1-891b-418e-ab9c-6a18747d7388)
    )
    (fp_text value "1K" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fd60415a-f01a-46c5-9369-ea970e435e5b)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp af76ce95-feca-41fb-bf31-edaa26d6766a)
    )
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4bbde53d-6894-4e18-9480-84a6a26d5f6b))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp d3dd7cdb-b730-487d-804d-99150ba318ef))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e11ae5a5-aa10-4f10-b346-f16e33c7899a))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp f23ac723-a36d-491d-9473-7ec0ffed332d))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 099473f1-6598-46ff-a50f-4c520832170d))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1876c30c-72b2-4a8d-9f32-bf8b213530b4))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 9112ddd5-10d5-48b8-954f-f1d5adcacbd9))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c3d5daf8-d359-42b2-a7c2-0d080ba7e212))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 16 "Net-(D2-Pad1)") (pintype "passive") (tstamp 199124ca-dd64-45cf-a063-97cc545cbea7))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp ca9b74ce-0dee-401c-9544-f599f4cf538d))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "LED_SMD:LED_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e49e4e9)
    (at 99.15 64 90)
    (descr "LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED")
    (property "PN" "SML-LX0603GW-TR")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2afd5c")
    (attr smd)
    (fp_text reference "D4" (at -0.05 1.15 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 051b8cb0-ae77-4e09-98a7-bf2103319e66)
    )
    (fp_text value "LED" (at 0 1.17 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 35c09d1f-2914-4d1e-a002-df30af772f3b)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp e2b24e25-1a0d-434a-876b-c595b47d80d2)
    )
    (fp_circle (center -1.09 0) (end -1.04 0) (layer "F.SilkS") (width 0.1) (fill none) (tstamp 73fbe87f-3928-49c2-bf87-839d907c6aef))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 20901d7e-a300-4069-8967-a6a7e97a68bc))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 422b10b9-e829-44a2-8808-05edd8cb3050))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp cf21dfe3-ab4f-4ad9-b7cf-dc892d833b13))
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp fad4c712-0a2e-465d-a9f8-83d26bd66e37))
    (fp_line (start -0.3 0.25) (end -0.3 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0d993e48-cea3-4104-9c5a-d8f97b64a3ac))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 86ad0555-08b3-4dde-9a3e-c1e5e29b6615))
    (fp_line (start -0.4 0.25) (end -0.4 -0.25) (layer "F.Fab") (width 0.1) (tstamp b12e5309-5d01-40ef-a9c3-8453e00a555e))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp be6b17f9-34f5-44e9-a4c7-725d2e274a9d))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp f56d244f-1fa4-4475-ac1d-f41eed31a48b))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 21 "Net-(D4-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 02538207-54a8-4266-8d51-23871852b2ff))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 17 "LED3") (pinfunction "A") (pintype "passive") (tstamp dd334895-c8ff-4719-bac4-c0b289bb5899))
    (model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e4a1ac2)
    (at 99.032852 69.321589 -90)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ102X ")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2b05e5")
    (attr smd)
    (fp_text reference "R11" (at 1.678411 0.032852 -90) (layer "F.SilkS")
      (effects (font (size 0.5 0.5) (thickness 0.125)))
      (tstamp bb8162f0-99c8-4884-be5b-c0d0c7e81ff6)
    )
    (fp_text value "1K" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 91fc5800-6029-46b1-848d-ca0091f97267)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 275b6416-db29-42cc-9307-bf426917c3b4)
    )
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3c22d605-7855-4cc6-8ad2-906cadbd02dc))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8eb98c56-17e4-4de6-a3e3-06dcfa392040))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp bd085057-7c0e-463a-982b-968a2dc1f0f8))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c66a19ed-90c0-4502-ae75-6a4c4ab9f297))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 0554bea0-89b2-4e25-9ea3-4c73921c94cb))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp 22962957-1efd-404d-83db-5b233b6c15b0))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 88606262-3ac5-44a1-aacc-18b26cf4d396))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp cd1cff81-9d8a-4511-96d6-4ddb79484001))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 21 "Net-(D4-Pad1)") (pintype "passive") (tstamp af186015-d283-4209-aade-a247e5de01df))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 8d063f79-9282-4820-bcf4-1ff3c006cf08))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e4ac367)
    (at 53.323456 66.510966 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "ZRB15XR61A106ME01D")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e4a4ec3")
    (attr smd)
    (fp_text reference "C4" (at -0.110966 1.523456) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16)
    )
    (fp_text value "10uF" (at 0 1.17 -90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)))
      (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db)
    )
    (fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778))
    (fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
    (fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9))
    (fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29))
    (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765))
    (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75))
    (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer "F.Fab") (width 0.1) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995))
    (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer "F.Fab") (width 0.1) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "ice4pi:PinSocket_2x06_P2.54mm_Vertical_1to6_7to12" (layer "F.Cu")
    (tedit 62011EDA) (tstamp 00000000-0000-0000-0000-000062010ab2)
    (at 112.77 70.35 180)
    (descr "Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
    (tags "Through hole socket strip THT 2x06 2.54mm double row")
    (property "PN" "SSW-106-01-T-D")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e30d74f")
    (attr through_hole)
    (fp_text reference "J1" (at 5.02 -1.9 180) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6)
    )
    (fp_text value "Pmod 2x6" (at -1.27 15.47 180) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
    )
    (fp_text user "${REFERENCE}" (at 1.27 6.35 270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9)
    )
    (fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
    (fp_line (start 3.87 14.03) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
    (fp_line (start 1.27 1.27) (end -1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8))
    (fp_line (start 1.27 -1.33) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b))
    (fp_line (start 3.87 -1.33) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
    (fp_line (start 3.87 -1.33) (end 3.87 14.03) (layer "F.SilkS") (width 0.12) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
    (fp_line (start 0 -1.33) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
    (fp_line (start -1.33 -1.33) (end -1.33 0) (layer "F.SilkS") (width 0.12) (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
    (fp_line (start -1.76 -1.8) (end -1.76 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
    (fp_line (start 4.34 -1.8) (end -1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
    (fp_line (start -1.76 14.45) (end 4.34 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
    (fp_line (start 4.34 14.45) (end 4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
    (fp_line (start 3.81 -1.27) (end -0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
    (fp_line (start -1.27 -0.27) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
    (fp_line (start -1.27 13.97) (end 3.81 13.97) (layer "F.Fab") (width 0.1) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
    (fp_line (start 3.81 13.97) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
    (fp_line (start -0.27 -1.27) (end -1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
    (pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 24 "PIO1_02") (pinfunction "Pin_1") (pintype "passive") (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
    (pad "2" thru_hole oval locked (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 25 "PIO1_03") (pinfunction "Pin_2") (pintype "passive") (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
    (pad "3" thru_hole oval locked (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 26 "PIO1_04") (pinfunction "Pin_3") (pintype "passive") (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
    (pad "4" thru_hole oval locked (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 27 "PIO1_05") (pinfunction "Pin_4") (pintype "passive") (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
    (pad "5" thru_hole oval locked (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
    (pad "6" thru_hole oval locked (at 0 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 10 "+3V3") (pinfunction "Pin_6") (pintype "passive") (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
    (pad "7" thru_hole oval locked (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 28 "PIO1_06") (pinfunction "Pin_7") (pintype "passive") (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
    (pad "8" thru_hole oval locked (at 2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 29 "PIO1_07") (pinfunction "Pin_8") (pintype "passive") (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
    (pad "9" thru_hole oval locked (at 2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 30 "PIO1_08") (pinfunction "Pin_9") (pintype "passive") (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
    (pad "10" thru_hole oval locked (at 2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 31 "PIO1_09") (pinfunction "Pin_10") (pintype "passive") (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
    (pad "11" thru_hole oval locked (at 2.54 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
    (pad "12" thru_hole oval locked (at 2.54 12.7 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 10 "+3V3") (pinfunction "Pin_12") (pintype "passive") (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
    (model "${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x06_P2.54mm_Vertical.wrl"
      (offset (xyz 2.5 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "ice4pi:mount_hole" locked (layer "F.Cu")
    (tedit 55217C7B) (tstamp 0ba3fcf8-07bd-443d-be28-f69a4ad80df4)
    (at 111.5 75.5)
    (descr "Mounting hole, 2,7mm")
    (attr through_hole)
    (fp_text reference "" (at 0 -4.0005) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 234e1024-0b7f-410c-90bb-bae43af1eb25)
    )
    (fp_text value "" (at 0.09906 3.59918) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fcfb3f77-487d-44de-bd4e-948fbeca3220)
    )
    (fp_circle (center 0 0) (end 3.1 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp 4d2fd49e-2cb2-44d4-8935-68488970d97b))
    (fp_circle (center 0 0) (end 3.1 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp f220d6a7-3170-4e04-8de6-2df0c3962fe0))
    (fp_circle (center 0 0) (end 1.375 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 3335d379-08d8-4469-9fa1-495ed5a43fba))
    (fp_circle (center 0 0) (end 3.1 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 9640e044-e4b2-4c33-9e1c-1d9894a69337))
    (fp_circle (center 0 0) (end 1.375 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp e0b0947e-ec91-4d8a-8663-5a112b0a8541))
    (fp_circle (center 0 0) (end 3.1 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp fd29cce5-2d5d-4676-956a-df49a3c13d23))
    (pad "" np_thru_hole circle locked (at 0 0) (size 2.75 2.75) (drill 2.75) (layers *.Cu *.Mask)
      (solder_mask_margin 1.725) (clearance 1.725) (tstamp 22c28634-55a5-4f76-9217-6b70ddd108b8))
  )

  (footprint "ice4pi:mount_hole" locked (layer "F.Cu")
    (tedit 55217C7B) (tstamp 207932d1-3fbf-4bd3-8ef6-a6601aaaae72)
    (at 53.5 75.5)
    (descr "Mounting hole, 2,7mm")
    (attr through_hole)
    (fp_text reference "" (at 0 -4.0005) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e0d7c1d9-102e-4758-a8b7-ff248f1ce315)
    )
    (fp_text value "" (at 0.09906 3.59918) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2028d85e-9e27-4758-8c0b-559fad072813)
    )
    (fp_circle (center 0 0) (end 3.1 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp d9cf2d61-3126-40fe-a66d-ae5145f94be8))
    (fp_circle (center 0 0) (end 3.1 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp df5c9f6b-a62e-44ba-997f-b2cf3279c7d4))
    (fp_circle (center 0 0) (end 1.375 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp e04b8c10-725b-4bde-8cbf-66bfea5053e6))
    (fp_circle (center 0 0) (end 3.1 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp f4aae365-6c70-41da-9253-52b239e8f5e6))
    (fp_circle (center 0 0) (end 3.1 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp 9e2492fd-e074-42db-8129-fe39460dc1e0))
    (fp_circle (center 0 0) (end 1.375 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp a48f5fff-52e4-4ae8-8faa-7084c7ae8a28))
    (pad "" np_thru_hole circle locked (at 0 0) (size 2.75 2.75) (drill 2.75) (layers *.Cu *.Mask)
      (solder_mask_margin 1.725) (clearance 1.725) (tstamp a9d76dfc-52ba-46de-beb4-dab7b94ee663))
  )

  (footprint "ice4pi:mount_hole" locked (layer "F.Cu")
    (tedit 55217C7B) (tstamp 3ba59656-e36e-4caa-8957-90ed8686b3d3)
    (at 111.5 52.5)
    (descr "Mounting hole, 2,7mm")
    (attr through_hole)
    (fp_text reference "" (at 0 -4.0005) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp bb5d2eae-a96e-45dd-89aa-125fe22cc2fa)
    )
    (fp_text value "" (at 0.09906 3.59918) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp facb0614-068b-4c9c-a466-d374df96a94c)
    )
    (fp_circle (center 0 0) (end 3.1 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp 1cb64bfe-d819-47e3-be11-515b04f2c451))
    (fp_circle (center 0 0) (end 3.1 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp ae158d42-76cc-4911-a621-4cc28931c98b))
    (fp_circle (center 0 0) (end 3.1 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 0a1d0cbe-85ab-4f0f-b3b1-fcef21dfb600))
    (fp_circle (center 0 0) (end 1.375 0) (layer "B.Fab") (width 0.15) (fill none) (tstamp 60d26b83-9c3a-4edb-93ef-ab3d9d05e8cb))
    (fp_circle (center 0 0) (end 1.375 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp c37d3f0c-41ec-4928-8869-febc821c6326))
    (fp_circle (center 0 0) (end 3.1 0) (layer "F.Fab") (width 0.15) (fill none) (tstamp ea77ba09-319a-49bd-ad5b-49f4c76f232c))
    (pad "" np_thru_hole circle locked (at 0 0) (size 2.75 2.75) (drill 2.75) (layers *.Cu *.Mask)
      (solder_mask_margin 1.725) (clearance 1.725) (tstamp 9f4abbc0-6ac3-48f0-b823-2c1c19349540))
  )

  (footprint "ice4pi:PinSocket_2x20_P2.54mm_Vertical_1_04mm" (layer "B.Cu")
    (tedit 63EE021C) (tstamp 00000000-0000-0000-0000-00005e377842)
    (at 58.4 53.8 -90)
    (descr "Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
    (tags "Through hole socket strip THT 2x20 2.54mm double row")
    (property "PN" "SSQ-120-03-T-D")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-0000620502d1")
    (attr through_hole)
    (fp_text reference "J2" (at -1.27 2.77 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f)
    )
    (fp_text value "raspberry_pi_2_3_4_ordered" (at -1.27 -51.03 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1)
    )
    (fp_text user "${REFERENCE}" (at -1.27 -24.13 180) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8)
    )
    (fp_line (start 0 1.33) (end 1.33 1.33) (layer "B.SilkS") (width 0.12) (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
    (fp_line (start -3.87 -49.59) (end 1.33 -49.59) (layer "B.SilkS") (width 0.12) (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
    (fp_line (start -1.27 1.33) (end -1.27 -1.27) (layer "B.SilkS") (width 0.12) (tstamp 32667662-ae86-4904-b198-3e95f11851bf))
    (fp_line (start 1.33 -1.27) (end 1.33 -49.59) (layer "B.SilkS") (width 0.12) (tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5))
    (fp_line (start -1.27 -1.27) (end 1.33 -1.27) (layer "B.SilkS") (width 0.12) (tstamp 67f6e996-3c99-493c-8f6f-e739e2ed5d7a))
    (fp_line (start 1.33 1.33) (end 1.33 0) (layer "B.SilkS") (width 0.12) (tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13))
    (fp_line (start -3.87 1.33) (end -1.27 1.33) (layer "B.SilkS") (width 0.12) (tstamp b6270a28-e0d9-4655-a18a-03dbf007b940))
    (fp_line (start -3.87 1.33) (end -3.87 -49.59) (layer "B.SilkS") (width 0.12) (tstamp f3490fa5-5a27-423b-af60-53609669542c))
    (fp_line (start 1.76 -50) (end -4.34 -50) (layer "B.CrtYd") (width 0.05) (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
    (fp_line (start -4.34 -50) (end -4.34 1.8) (layer "B.CrtYd") (width 0.05) (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
    (fp_line (start -4.34 1.8) (end 1.76 1.8) (layer "B.CrtYd") (width 0.05) (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
    (fp_line (start 1.76 1.8) (end 1.76 -50) (layer "B.CrtYd") (width 0.05) (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
    (fp_line (start 1.27 -49.53) (end -3.81 -49.53) (layer "B.Fab") (width 0.1) (tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2))
    (fp_line (start 0.27 1.27) (end 1.27 0.27) (layer "B.Fab") (width 0.1) (tstamp 15875808-74d5-4210-b8ca-aa8fbc04ae21))
    (fp_line (start -3.81 1.27) (end 0.27 1.27) (layer "B.Fab") (width 0.1) (tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd))
    (fp_line (start -3.81 -49.53) (end -3.81 1.27) (layer "B.Fab") (width 0.1) (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
    (fp_line (start 1.27 0.27) (end 1.27 -49.53) (layer "B.Fab") (width 0.1) (tstamp dd00c2e1-6027-4717-b312-4fab3ee52002))
    (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 10 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 23bb2798-d93a-4696-a962-c305c4298a0c))
    (pad "2" thru_hole oval (at -2.54 0 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 11 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
    (pad "3" thru_hole oval (at 0 -2.54 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 52 "PIO0_20") (pinfunction "SDA/GPIO2") (pintype "bidirectional") (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
    (pad "4" thru_hole oval (at -2.54 -2.54 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 11 "+5V") (pinfunction "5V") (pintype "power_in") (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
    (pad "5" thru_hole oval (at 0 -5.08 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 51 "PIO0_21") (pinfunction "SCL/GPIO3") (pintype "bidirectional") (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
    (pad "6" thru_hole oval (at -2.54 -5.08 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
    (pad "7" thru_hole oval (at 0 -7.62 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 53 "PIO0_19") (pinfunction "GCLK0/GPIO4") (pintype "bidirectional") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
    (pad "8" thru_hole oval (at -2.54 -7.62 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 43 "RS232_Rx_TTL") (pinfunction "GPIO14/TXD") (pintype "bidirectional") (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
    (pad "9" thru_hole oval (at 0 -10.16 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp afb8e687-4a13-41a1-b8c0-89a749e897fe))
    (pad "10" thru_hole oval (at -2.54 -10.16 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 42 "RS232_Tx_TTL") (pinfunction "GPIO15/RXD") (pintype "bidirectional") (tstamp 5cbb5968-dbb5-4b84-864a-ead1cacf75b9))
    (pad "11" thru_hole oval (at 0 -12.7 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 54 "PIO0_18") (pinfunction "GPIO17") (pintype "bidirectional") (tstamp 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455))
    (pad "12" thru_hole oval (at -2.54 -12.7 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 55 "PIO0_17") (pinfunction "GPIO18/PWM0") (pintype "bidirectional") (tstamp bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae))
    (pad "13" thru_hole oval (at 0 -15.24 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 50 "PIO0_16") (pinfunction "GPIO27") (pintype "bidirectional") (tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14))
    (pad "14" thru_hole oval (at -2.54 -15.24 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2))
    (pad "15" thru_hole oval (at 0 -17.78 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 48 "PIO0_14") (pinfunction "GPIO22") (pintype "bidirectional") (tstamp e8314017-7be6-4011-9179-37449a29b311))
    (pad "16" thru_hole oval (at -2.54 -17.78 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 49 "PIO0_15") (pinfunction "GPIO23") (pintype "bidirectional") (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
    (pad "17" thru_hole oval (at 0 -20.32 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 10 "+3V3") (pinfunction "3V3") (pintype "power_in") (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
    (pad "18" thru_hole oval (at -2.54 -20.32 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 4 "iCE_CREST") (pinfunction "GPIO24") (pintype "bidirectional") (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
    (pad "19" thru_hole oval (at 0 -22.86 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 5 "iCE_MOSI") (pinfunction "MOSI0/GPIO10") (pintype "bidirectional") (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
    (pad "20" thru_hole oval (at -2.54 -22.86 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
    (pad "21" thru_hole oval (at 0 -25.4 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 6 "iCE_MISO") (pinfunction "MISO0/GPIO9") (pintype "bidirectional") (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
    (pad "22" thru_hole oval (at -2.54 -25.4 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 3 "iCE_CDONE") (pinfunction "GPIO25") (pintype "bidirectional") (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
    (pad "23" thru_hole oval (at 0 -27.94 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 7 "iCE_SCK") (pinfunction "SCLK0/GPIO11") (pintype "bidirectional") (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
    (pad "24" thru_hole oval (at -2.54 -27.94 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 8 "iCE_SS_B") (pinfunction "~{CE0}/GPIO8") (pintype "bidirectional") (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
    (pad "25" thru_hole oval (at 0 -30.48 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
    (pad "26" thru_hole oval (at -2.54 -30.48 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 47 "PIO0_13") (pinfunction "~{CE1}/GPIO7") (pintype "bidirectional") (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
    (pad "27" thru_hole oval (at 0 -33.02 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 46 "PIO0_11") (pinfunction "ID_SD/GPIO0") (pintype "bidirectional") (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
    (pad "28" thru_hole oval (at -2.54 -33.02 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 45 "PIO0_12") (pinfunction "ID_SC/GPIO1") (pintype "bidirectional") (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
    (pad "29" thru_hole oval (at 0 -35.56 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 44 "PIO0_10") (pinfunction "GCLK1/GPIO5") (pintype "bidirectional") (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
    (pad "30" thru_hole oval (at -2.54 -35.56 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 66116376-6967-4178-9f23-a26cdeafc400))
    (pad "31" thru_hole oval (at 0 -38.1 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 34 "PIO0_08") (pinfunction "GCLK2/GPIO6") (pintype "bidirectional") (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
    (pad "32" thru_hole oval (at -2.54 -38.1 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 33 "PIO0_09") (pinfunction "PWM0/GPIO12") (pintype "bidirectional") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
    (pad "33" thru_hole oval (at 0 -40.64 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 35 "PIO0_07") (pinfunction "PWM1/GPIO13") (pintype "bidirectional") (tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce))
    (pad "34" thru_hole oval (at -2.54 -40.64 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268))
    (pad "35" thru_hole oval (at 0 -43.18 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 37 "PIO0_05") (pinfunction "GPIO19/MISO1") (pintype "bidirectional") (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
    (pad "36" thru_hole oval (at -2.54 -43.18 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 36 "PIO0_06") (pinfunction "GPIO16") (pintype "bidirectional") (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
    (pad "37" thru_hole oval (at 0 -45.72 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 39 "PIO0_03") (pinfunction "GPIO26") (pintype "bidirectional") (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
    (pad "38" thru_hole oval (at -2.54 -45.72 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 38 "PIO0_04") (pinfunction "GPIO20/MOSI1") (pintype "bidirectional") (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
    (pad "39" thru_hole oval (at 0 -48.26 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
    (pad "40" thru_hole oval (at -2.54 -48.26 270) (size 1.7 1.7) (drill 1.04) (layers *.Cu *.Mask)
      (net 40 "PIO0_02") (pinfunction "GPIO21/SCLK1") (pintype "bidirectional") (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
    (model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x20_P2.54mm_Vertical_Stackable_11mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477908)
    (at 79.95 74.7)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e29ba0f")
    (attr smd)
    (fp_text reference "C13" (at 1.05 -1.2) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp c4cab9c5-d6e5-4660-b910-603a51b56783)
    )
    (fp_text value "0.01uF" (at 0 -1.17) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba)
    )
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477932)
    (at 75.15 59.75)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e271ff6")
    (attr smd)
    (fp_text reference "C3" (at 0 1.17) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba)
    )
    (fp_text value "0.1uF" (at -0.2 2.3) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 1c68b844-c861-46b7-b734-0242168a4220)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54)
    )
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp b5071759-a4d7-4769-be02-251f23cd4454))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 89c0bc4d-eee5-4a77-ac35-d30b35db5cbe))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 88d2c4b8-79f2-4e8b-9f70-b7e0ed9c70f8))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp e1c30a32-820e-4b17-aec9-5cb8b76f0ccc))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e4779bc)
    (at 85.5 65.4 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e264632")
    (attr smd)
    (fp_text reference "C23" (at 0 1.17 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 2e0a9f64-1b78-4597-8d50-d12d2268a95a)
    )
    (fp_text value "0.1uF" (at 0 -1.17 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 582622a2-fad4-4737-9a80-be9fffbba8ab)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 1dfbf353-5b24-4c0f-8322-8fcd514ae75e)
    )
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 337e8520-cbd2-42c0-8d17-743bab17cbbd))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp e0c7ddff-8c90-465f-be62-21fb49b059fa))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp f0ff5d1c-5481-4958-b844-4f68a17d4166))
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp fdc60c06-30fa-4dfb-96b4-809b755999e1))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 59fc765e-1357-4c94-9529-5635418c7d73))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 89a8e170-a222-41c0-b545-c9f4c5604011))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 9529c01f-e1cd-40be-b7f0-83780a544249))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 96db52e2-6336-4f5e-846e-528c594d0509))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp 6f580eb1-88cc-489d-a7ca-9efa5e590715))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp d68e5ddb-039c-483f-88a3-1b0b7964b482))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477a10)
    (at 78 74.7)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2646a2")
    (attr smd)
    (fp_text reference "C25" (at -0.4 1.3) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f6983918-fe05-46ea-b355-bc522ec53440)
    )
    (fp_text value "0.1uF" (at 0 -1.17) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f44d04c5-0d17-4d52-8328-ef3b4fdfba5f)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 759788bd-3cb9-4d38-b58c-5cb10b7dca6b)
    )
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 20caf6d2-76a7-497e-ac56-f6d31eb9027b))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 2f291a4b-4ecb-4692-9ad2-324f9784c0d4))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2))
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp f447e585-df78-4239-b8cb-4653b3837bb1))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 319639ae-c2c5-486d-93b1-d03bb1b64252))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 3a70978e-dcc2-4620-a99c-514362812927))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp a5c8e189-1ddc-4a66-984b-e0fd1529d346))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp fc4ad874-c922-4070-89f9-7262080469d8))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp 1ab71a3c-340b-469a-ada5-4f87f0b7b2fa))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp c71f56c1-5b7c-4373-9716-fffac482104c))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477a3a)
    (at 85.5 68.7 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e29a15c")
    (attr smd)
    (fp_text reference "C11" (at 0 1.17 -90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 98914cc3-56fe-40bb-820a-3d157225c145)
    )
    (fp_text value "0.01uF" (at 0 -1.17 -90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25)
    )
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 5d9921f1-08b3-4cc9-8cf7-e9a72ca2fdb7))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 92035a88-6c95-4a61-bd8a-cb8dd9e5018a))
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp c8b6b273-3d20-4a46-8069-f6d608563604))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 3326423d-8df7-4a7e-a354-349430b8fbd7))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 4ec618ae-096f-4256-9328-005ee04f13d6))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 935057d5-6882-4c15-9a35-54677912ba12))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477c92)
    (at 86.15 62.05 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e29a155")
    (attr smd)
    (fp_text reference "C9" (at 0 -1.1 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5)
    )
    (fp_text value "0.1uF" (at 0 -1.17 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7)
    )
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477cbc)
    (at 80.45 59.65)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e271ffd")
    (attr smd)
    (fp_text reference "C6" (at 0 -1.2) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b6cd701f-4223-4e72-a305-466869ccb250)
    )
    (fp_text value "0.01uF" (at 0 -1.17) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp af347946-e3da-4427-87ab-77b747929f50)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp e7e08b48-3d04-49da-8349-6de530a20c67)
    )
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 2891767f-251c-48c4-91c0-deb1b368f45c))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 71f92193-19b0-44ed-bc7f-77535083d769))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68))
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp fd3499d5-6fd2-49a4-bdb0-109cee899fde))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 143ed874-a01f-4ced-ba4e-bbb66ddd1f70))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 411d4270-c66c-4318-b7fb-1470d34862b8))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 795e68e2-c9ba-45cf-9bff-89b8fae05b5a))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 8fcec304-c6b1-4655-8326-beacd0476953))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e477d10)
    (at 74.65 70.45)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ103X")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2db2f7")
    (attr smd)
    (fp_text reference "R18" (at 0.2 -1.4) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 56d2bc5d-fd72-4542-ab0f-053a5fd60efa)
    )
    (fp_text value "10K" (at 0 -1.17) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 09bbea88-8bd7-48ec-baae-1b4a9a11a40e)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 41c18011-40db-4384-9ba4-c0158d0d9d6a)
    )
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 08ec951f-e7eb-41cf-9589-697107a98e88))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 0fb27e11-fde6-4a25-adbb-e9684771b369))
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 2eea20e6-112c-411a-b615-885ae773135a))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 49fec31e-3712-4229-8142-b191d90a97d0))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 022502e0-e724-4b75-bc35-3c5984dbeb76))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 9f969b13-1795-4747-8326-93bdc304ed56))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp b9d4de74-d246-495d-8b63-12ab2133d6d6))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp d655bb0a-cbf9-4908-ad60-7024ff468fbd))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp fb0bf2a0-d317-42f7-b022-b5e05481f6be))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 4 "iCE_CREST") (pintype "passive") (tstamp 66ca01b3-51ff-4294-9b77-4492e98f6aec))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477d3a)
    (at 70.95 74.05 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e29d489")
    (attr smd)
    (fp_text reference "C14" (at 0 1.17 -90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 3f8a5430-68a9-4732-9b89-4e00dd8ae219)
    )
    (fp_text value "0.1uF" (at 0 -1.17 -90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 96de0051-7945-413a-9219-1ab367546962)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 2db910a0-b943-40b4-b81f-068ba5265f56)
    )
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce))
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 802c2dc3-ca9f-491e-9d66-7893e89ac34c))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp eed466bf-cd88-4860-9abf-41a594ca08bd))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp f8bd6470-fafd-47f2-8ed5-9449988187ce))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 011ee658-718d-416a-85fd-961729cd1ee5))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 72508b1f-1505-46cb-9d37-2081c5a12aca))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 7d76d925-f900-42af-a03f-bb32d2381b09))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp f1e619ac-5067-41df-8384-776ec70a6093))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp ed8a7f02-cf05-41d0-97b4-4388ef205e73))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 7a74c4b1-6243-4a12-85a2-bc41d346e7aa))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBD) (tstamp 00000000-0000-0000-0000-00005e477de2)
    (at 74.65 71.45)
    (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "resistor")
    (property "PN" "ERJ-2GEJ103X")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2a0c2e")
    (attr smd)
    (fp_text reference "R19" (at 0 1.17) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 2a4111b7-8149-4814-9344-3b8119cd75e4)
    )
    (fp_text value "10K" (at 0 -1.17) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp a686ed7c-c2d1-4d29-9d54-727faf9fd6bf)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 15189cef-9045-423b-b4f6-a763d4e75704)
    )
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 06665bf8-cef1-4e75-8d5b-1537b3c1b090))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 9fdca5c2-1fbd-4774-a9c3-8795a40c206d))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp a239fd1d-dfbb-49fd-b565-8c3de9dcf42b))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp d32956af-146b-4a09-a053-d9d64b8dd86d))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 178ae27e-edb9-4ffb-bd13-c0a6dd659606))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp a0d52767-051a-423c-a600-928281f27952))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp aa8663be-9516-4b07-84d2-4c4d668b8596))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp dfcef016-1bf5-4158-8a79-72d38a522877))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 1a22eb2d-f625-4371-a918-ff1b97dc8219))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 3 "iCE_CDONE") (pintype "passive") (tstamp 6ff9bb63-d6fd-4e32-bb60-7ac65509c2e9))
    (model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e477e0c)
    (at 74.65 74.7)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e29ba08")
    (attr smd)
    (fp_text reference "C12" (at -2.35 1.3) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f)
    )
    (fp_text value "0.1uF" (at 0 -1.17) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7)
    )
    (fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp c088f712-1abe-4cac-9a8b-d564931395aa)
    )
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp cb721686-5255-4788-a3b0-ce4312e32eb7))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp f959907b-1cef-4760-b043-4260a660a2ae))
    (pad "1" smd roundrect locked (at -0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp faa1812c-fdf3-47ae-9cf4-ae06a263bfbd))
    (pad "2" smd roundrect locked (at 0.485 0) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp d4db7f11-8cfe-40d2-b021-b36f05241701))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e485083)
    (at 70.95 70.05 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e2645b5")
    (attr smd)
    (fp_text reference "C21" (at 0 1.17 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24)
    )
    (fp_text value "0.1uF" (at 0 -1.17 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp a07b6b2b-7179-4297-b163-5e47ffbe76d3)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp d1a9be32-38ba-44e6-bc35-f031541ab1fe)
    )
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 2a1de22d-6451-488d-af77-0bf8841bd695))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 6ac3ab53-7523-4805-bfd2-5de19dff127e))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp a8219a78-6b33-4efa-a789-6a67ce8f7a50))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp f3044f68-903d-4063-b253-30d8e3a83eae))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 05f2859d-2820-4e84-b395-696011feb13b))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 576f00e6-a1be-45d3-9b93-e26d9e0fe306))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 713e0777-58b2-4487-baca-60d0ebed27c3))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp a8fb8ee0-623f-4870-a716-ecc88f37ef9a))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 12 "+1V2") (pintype "passive") (tstamp a0dee8e6-f88a-4f05-aba0-bab3aafdf2bc))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp f19c9655-8ddb-411a-96dd-bd986870c3c6))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e48d159)
    (at 70.697006 60.60592 90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205012")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e29d490")
    (attr smd)
    (fp_text reference "C15" (at 0 1.17 90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 18c61c95-8af1-4986-b67e-c7af9c15ab6b)
    )
    (fp_text value "0.01uF" (at 0 -1.17 90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp a5be2cb8-c68d-4180-8412-69a6b4c5b1d4)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53)
    )
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 2035ea48-3ef5-4d7f-8c3c-50981b30c89a))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp ba6fc20e-7eff-4d5f-81e4-d1fad93be155))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 9565d2ee-a4f1-4d08-b2c9-0264233a0d2b))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp ae0e6b31-27d7-4383-a4fc-7557b0a19382))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp b287f145-851e-45cc-b200-e62677b551d5))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp d1eca865-05c5-48a4-96cf-ed5f8a640e25))
    (pad "1" smd roundrect locked (at -0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 3b686d17-1000-4762-ba31-589d599a3edf))
    (pad "2" smd roundrect locked (at 0.485 0 90) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp cebb9021-66d3-4116-98d4-5e6f3c1552be))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005e48e3c4)
    (at 86.65 75.1 180)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e25d48f")
    (attr smd)
    (fp_text reference "C18" (at -0.05 -1.25 180) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b59f18ce-2e34-4b6e-b14d-8d73b8268179)
    )
    (fp_text value "0.1uF" (at 0 -1.17 180) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 691af561-538d-4e8f-a916-26cad45eb7d6)
    )
    (fp_text user "${REFERENCE}" (at 0 0 180) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 7ce7415d-7c22-49f6-8215-488853ccc8c6)
    )
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 53e34696-241f-47e5-a477-f469335c8a61))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 5a222fb6-5159-4931-9015-19df65643140))
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 88002554-c459-46e5-8b22-6ea6fe07fd4c))
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 8cdc8ef9-532e-4bf5-9998-7213b9e692a2))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp 6325c32f-c82a-4357-b022-f9c7e76f412e))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 9390234f-bf3f-46cd-b6a0-8a438ec76e9f))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db))
    (pad "1" smd roundrect locked (at -0.485 0 180) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 84d296ba-3d39-4264-ad19-947f90c54396))
    (pad "2" smd roundrect locked (at 0.485 0 180) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp a90361cd-254c-4d27-ae1f-9a6c85bafe28))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_SMD:C_0402_1005Metric" (layer "B.Cu")
    (tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-0000620108b2)
    (at 108.37 59 -90)
    (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "capacitor")
    (property "PN" "885012205037")
    (property "Sheetfile" "ice4pi.kicad_sch")
    (property "Sheetname" "")
    (path "/00000000-0000-0000-0000-00005e314690")
    (attr smd)
    (fp_text reference "C2" (at 0 1.17 -90) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp e5203297-b913-4288-a576-12a92185cb52)
    )
    (fp_text value "0.1uF" (at 0 -1.17 -90) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f)
    )
    (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "B.Fab")
      (effects (font (size 0.25 0.25) (thickness 0.04)) (justify mirror))
      (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760)
    )
    (fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 79e31048-072a-4a40-a625-26bb0b5f046b))
    (fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc))
    (fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp c76d4423-ef1b-4a6f-8176-33d65f2877bb))
    (fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp f7667b23-296e-4362-a7e3-949632c8954b))
    (fp_line (start 0.5 0.25) (end 0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp 03c7f780-fc1b-487a-b30d-567d6c09fdc8))
    (fp_line (start 0.5 -0.25) (end -0.5 -0.25) (layer "B.Fab") (width 0.1) (tstamp b873bc5d-a9af-4bd9-afcb-87ce4d417120))
    (fp_line (start -0.5 -0.25) (end -0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5))
    (fp_line (start -0.5 0.25) (end 0.5 0.25) (layer "B.Fab") (width 0.1) (tstamp c04386e0-b49e-4fff-b380-675af13a62cb))
    (pad "1" smd roundrect locked (at -0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 10 "+3V3") (pintype "passive") (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
    (pad "2" smd roundrect locked (at 0.485 0 270) (size 0.59 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
      (net 1 "GND") (pintype "passive") (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c))
    (model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (gr_line (start 108.425 55.525) (end 108.425 49.425) (layer "Dwgs.User") (width 0.15) (tstamp 42b61d5b-39d6-462b-b2cc-57656078085f))
  (gr_line (start 108.425 49.425) (end 56.575 49.425) (layer "Dwgs.User") (width 0.15) (tstamp 6d7ff8c0-8a2a-4636-844f-c7210ff3e6f2))
  (gr_line (start 56.575 49.45) (end 56.575 55.575) (layer "Dwgs.User") (width 0.15) (tstamp 93ac15d8-5f91-4361-acff-be4992b93b51))
  (gr_line (start 56.575 55.575) (end 108.425 55.525) (layer "Dwgs.User") (width 0.15) (tstamp f284b1e2-75a4-4a3f-a5f4-6f05f15fb4f5))
  (gr_line (start 50 76) (end 50 52) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005c2259f3))
  (gr_circle (center 111.5 75.5) (end 111.47 76.87) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 00000000-0000-0000-0000-00005c225d5d))
  (gr_line (start 112 79) (end 53 79) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00005e4ac357))
  (gr_arc (start 53 79) (mid 50.87868 78.12132) (end 50 76) (layer "Edge.Cuts") (width 0.05) (tstamp 15ea3484-2685-47cb-9e01-ec01c6d477b8))
  (gr_line (start 53 49) (end 112 49) (layer "Edge.Cuts") (width 0.05) (tstamp 3f96e159-1f3b-4ee7-a46e-e60d78f2137a))
  (gr_arc (start 112 49) (mid 114.12132 49.87868) (end 115 52) (layer "Edge.Cuts") (width 0.05) (tstamp 406d491e-5b01-46dc-a768-fd0992cdb346))
  (gr_line (start 115 52) (end 115 76) (layer "Edge.Cuts") (width 0.05) (tstamp 662bafcb-dcfb-4471-a8a9-f5c777fdf249))
  (gr_circle (center 53.5 52.5) (end 53.47 53.87) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 722636b6-8ff0-452f-9357-23deb317d921))
  (gr_circle (center 53.5 75.5) (end 53.47 76.87) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp 7e509ce7-bdc7-45fb-b2d0-c14a958a5480))
  (gr_arc (start 115 76) (mid 114.12132 78.12132) (end 112 79) (layer "Edge.Cuts") (width 0.05) (tstamp c6462399-f2e4-4f1a-b34a-b49a04c8bdb9))
  (gr_circle (center 111.5 52.5) (end 111.47 53.87) (layer "Edge.Cuts") (width 0.05) (fill none) (tstamp c94b6f38-b2c7-494d-9fba-9edbdd8e122a))
  (gr_arc (start 50 52) (mid 50.87868 49.87868) (end 53 49) (layer "Edge.Cuts") (width 0.05) (tstamp d4ef5db0-5fba-4fcd-ab64-2ef2646c5c6d))
  (gr_text "IO1\n" (at 107.69 70.35 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000062010f60)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "ice4pi ver. 2.4" (at 99.25 77.25) (layer "F.SilkS") (tstamp 232ccf4f-3322-4e62-990b-290e6ff36fcd)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_text "IO5\n" (at 106.42 70.35 90) (layer "F.SilkS") (tstamp 2f29ffe5-cbdc-4a3f-81e6-c7d9f4c5145a)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "IO7\n" (at 106.42 65.27 90) (layer "F.SilkS") (tstamp 31b8e579-7afa-4dee-9f20-b2fefaae3c16)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "3.3V\n" (at 106.42 57.65 90) (layer "F.SilkS") (tstamp 4e0c0da6-a302-49a1-8b88-4dccac856a0b)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "IO3\n" (at 107.69 65.27 90) (layer "F.SilkS") (tstamp 6540157e-dd56-419f-8e12-b9f763e7e5a8)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "IO2\n" (at 107.69 67.81 90) (layer "F.SilkS") (tstamp 7c1dbd41-291a-4aad-bf3b-16497f84df7b)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "GND\n" (at 106.42 60.19 90) (layer "F.SilkS") (tstamp 82782dc2-cb84-4d0c-b85e-b3903aca1e13)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "GND\n" (at 107.69 60.19 90) (layer "F.SilkS") (tstamp 8ecc0874-e7f5-4102-a6b7-0222cf1fccc2)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "IO8\n" (at 106.42 62.73 90) (layer "F.SilkS") (tstamp 914ccec4-572a-4ec0-b281-596368eea274)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "IO4\n" (at 107.69 62.73 90) (layer "F.SilkS") (tstamp 978f967d-6cc0-4f07-b852-e2800feefa07)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "3.3V\n" (at 107.69 57.65 90) (layer "F.SilkS") (tstamp bf8d857b-70bf-41ee-a068-5771461e04e9)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )
  (gr_text "PMOD" (at 105 68 90) (layer "F.SilkS") (tstamp d5f4d798-57d3-493b-b57c-3b6e89508879)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_text "IO6\n" (at 106.42 67.81 90) (layer "F.SilkS") (tstamp d799aac7-79c2-4447-bfa3-8eb302b60af7)
    (effects (font (size 0.5 0.5) (thickness 0.125)))
  )

  (segment (start 97.210392 57.312011) (end 97.237989 57.312011) (width 0.25) (layer "F.Cu") (net 1) (tstamp 004b7456-c25a-480f-88f6-723c1bcd9939))
  (segment (start 61.85 70.015) (end 63.035 70.015) (width 0.25) (layer "F.Cu") (net 1) (tstamp 07652224-af43-42a2-841c-1883ba305bc4))
  (segment (start 58.7 77.135) (end 58.7 78.05) (width 0.25) (layer "F.Cu") (net 1) (tstamp 0e0f9829-27a5-43b2-a0ae-121d3ce72ef4))
  (segment (start 64.85 76.346095) (end 65.756961 75.439134) (width 0.25) (layer "F.Cu") (net 1) (tstamp 0e592cd4-1950-44ef-9727-8e526f4c4e12))
  (segment (start 101.132852 69.806589) (end 100.082852 69.806589) (width 0.25) (layer "F.Cu") (net 1) (tstamp 21573090-1953-4b11-9042-108ae79fe9c5))
  (segment (start 85.468356 75.47066) (end 85.468356 76.036345) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2295a793-dfca-4b86-a3e5-abf1834e2790))
  (segment (start 63.779546 60.729888) (end 63.779546 60.870454) (width 0.25) (layer "F.Cu") (net 1) (tstamp 28b01cd2-da3a-46ec-8825-b0f31a0b8987))
  (segment (start 97.982852 69.806589) (end 96.656589 69.806589) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2cd3975a-2259-4fa9-8133-e1586b9b9618))
  (segment (start 89.585 56.3) (end 90.6 56.3) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2d617fad-47fe-4db9-836a-4bceb9c31c3b))
  (segment (start 53.323456 66.995966) (end 53.323456 67.023456) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2e36ce87-4661-4b8f-956a-16dc559e1b50))
  (segment (start 65.756961 75.439134) (end 65.756961 76.421961) (width 0.25) (layer "F.Cu") (net 1) (tstamp 300aa512-2f66-4c26-a530-50c091b3a099))
  (segment (start 69.6 74.35) (end 69.200001 74.749999) (width 0.25) (layer "F.Cu") (net 1) (tstamp 348dc703-3cab-4547-b664-e8b335a6083c))
  (segment (start 65.779546 60.729888) (end 65.959434 60.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 34ddb753-e57c-4ca8-a67b-d7cdf62cae93))
  (segment (start 59.925 78.025) (end 58.725 78.025) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3579cf2f-29b0-46b6-a07d-483fb5586322))
  (segment (start 58.7 78.05) (end 58.55 78.2) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3934b2e9-06c8-499c-a6df-4d7b35cfb894))
  (segment (start 97.210392 56.339608) (end 97.25 56.3) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3b6dda98-f455-4961-854e-3c4cceecffcc))
  (segment (start 69.2 64.55) (end 69.25 64.6) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3c121a93-b189-409b-a104-2bdd37ff0b51))
  (segment (start 87 69.55) (end 88.9125 69.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3c3e06bd-c8bb-4ec8-84e0-f7f9437909b3))
  (segment (start 61.24 59.425) (end 61.35 59.535) (width 0.25) (layer "F.Cu") (net 1) (tstamp 41b4f8c6-4973-4fc7-9118-d582bc7f31e7))
  (segment (start 85.5 77.125) (end 85.5 77.9625) (width 0.25) (layer "F.Cu") (net 1) (tstamp 46491a9d-8b3d-4c74-b09a-70c876f162e5))
  (segment (start 87.8 61.05) (end 87.3 61.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 4688ff87-8262-46f4-ad96-b5f4e529cfa9))
  (segment (start 100.082852 69.806589) (end 99.032852 69.806589) (width 0.25) (layer "F.Cu") (net 1) (tstamp 53719fc4-141e-4c58-98cd-ab3bf9a4e1c0))
  (segment (start 75.6 58.25) (end 75.5 58.15) (width 0.25) (layer "F.Cu") (net 1) (tstamp 59e09498-d26e-4ba7-b47d-fece2ea7c274))
  (segment (start 66.3 60.55) (end 65.3 61.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5b70b09b-6762-4725-9d48-805300c0bdc8))
  (segment (start 65.756961 76.421961) (end 65.85 76.515) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5bbde4f9-fcdb-4d27-a2d6-3847fcdd87ba))
  (segment (start 62 61.6) (end 62 61.4) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5cff09b0-b3d4-41a7-a6a4-7f917b40eda9))
  (segment (start 86.8 69.35) (end 87 69.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5eedf685-0df3-4da8-aded-0e6ed1cb2507))
  (segment (start 53.323456 66.995966) (end 53.323456 67.026544) (width 0.25) (layer "F.Cu") (net 1) (tstamp 6316acb7-63a1-40e7-8695-2822d4a240b5))
  (segment (start 96.210392 56.389608) (end 96.25 56.35) (width 0.25) (layer "F.Cu") (net 1) (tstamp 68039801-1b0f-480a-861d-d55f24af0c17))
  (segment (start 71.5 58.4) (end 71.5 56.6375) (width 0.25) (layer "F.Cu") (net 1) (tstamp 6ce41a48-c5e2-4d5f-8548-1c7b5c309a8a))
  (segment (start 96.210392 57.312011) (end 96.210392 57.310392) (width 0.25) (layer "F.Cu") (net 1) (tstamp 6e9883d7-9642-4425-a248-b92a09f0624c))
  (segment (start 96.656589 69.806589) (end 96.65 69.8) (width 0.25) (layer "F.Cu") (net 1) (tstamp 70abf340-8b3e-403e-a5e2-d8f35caa2f87))
  (segment (start 58.725 78.025) (end 58.55 78.2) (width 0.25) (layer "F.Cu") (net 1) (tstamp 73f40fda-e6eb-4f93-9482-56cf47d84a87))
  (segment (start 55.225 66.025) (end 55.2 66.05) (width 0.4) (layer "F.Cu") (net 1) (tstamp 77ef8901-6325-4427-901a-4acd9074dd7b))
  (segment (start 75.5 58.15) (end 75.5 56.6375) (width 0.25) (layer "F.Cu") (net 1) (tstamp 7943ed8c-e760-4ace-9c5f-baf5589fae39))
  (segment (start 68.976998 60.55) (end 69.421078 60.10592) (width 0.25) (layer "F.Cu") (net 1) (tstamp 80f8c1b4-10dd-40fe-b7f7-67988bc3ad81))
  (segment (start 96.210392 57.312011) (end 96.237989 57.312011) (width 0.25) (layer "F.Cu") (net 1) (tstamp 832b5a8c-7fe2-47ff-beee-cebf840750bb))
  (segment (start 110.23 60.19) (end 112.77 60.19) (width 0.5) (layer "F.Cu") (net 1) (tstamp 843b53af-dd34-4db8-aa6b-5035b25affc7))
  (segment (start 101.148222 69.821959) (end 101.132852 69.806589) (width 0.25) (layer "F.Cu") (net 1) (tstamp 8615dae0-65cf-4932-8e6f-9a0f32429a5e))
  (segment (start 56.645 66.025) (end 55.225 66.025) (width 0.4) (layer "F.Cu") (net 1) (tstamp 88a17e56-466a-45e7-9047-7346a507f505))
  (segment (start 88.9125 61.05) (end 87.8 61.05) (width 0.25) (layer "F.Cu") (net 1) (tstamp 92bd1111-b941-4c03-b7ec-a08a9359bc50))
  (segment (start 68.425 75.55) (end 67.5875 75.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp 94c3d0e3-d7fb-421d-bbb4-5c800d76c809))
  (segment (start 64.85 76.515) (end 64.85 76.346095) (width 0.25) (layer "F.Cu") (net 1) (tstamp a150f0c9-1a23-4200-b489-18791f6d5ce5))
  (segment (start 102.14399 69.821959) (end 101.148222 69.821959) (width 0.25) (layer "F.Cu") (net 1) (tstamp b547dd70-2ea7-4cfd-a1ee-911561975d81))
  (segment (start 98.210392 57.312011) (end 98.210392 57.260392) (width 0.25) (layer "F.Cu") (net 1) (tstamp b55dabdc-b790-4740-9349-75159cff975a))
  (segment (start 95.210392 57.312011) (end 95.287989 57.312011) (width 0.25) (layer "F.Cu") (net 1) (tstamp b66731e7-61d5-4447-bf6a-e91a62b82298))
  (segment (start 97.210392 57.312011) (end 97.210392 57.310392) (width 0.25) (layer "F.Cu") (net 1) (tstamp b8b15b51-8345-4a1d-8ecf-04fc15b9e450))
  (segment (start 63.035 70.015) (end 63.05 70) (width 0.25) (layer "F.Cu") (net 1) (tstamp b8e1a8b8-63f0-4e53-a6cb-c8edf9a649c4))
  (segment (start 67.5875 60.55) (end 68.976998 60.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp be5bbcc0-5b09-43de-a42f-297f80f602a5))
  (segment (start 63.584658 60.535) (end 63.779546 60.729888) (width 0.25) (layer "F.Cu") (net 1) (tstamp bf4036b4-c410-489a-b46c-abee2c31db09))
  (segment (start 99.032852 69.806589) (end 97.982852 69.806589) (width 0.25) (layer "F.Cu") (net 1) (tstamp c5565d96-c729-4597-a74f-7f75befcc39d))
  (segment (start 67.5875 64.55) (end 69.2 64.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp c7f7bd58-1ebd-40fd-a39d-a95530a751b6))
  (segment (start 85.5 76.067989) (end 85.5 77.125) (width 0.25) (layer "F.Cu") (net 1) (tstamp cdfb661b-489b-4b76-99f4-62b92bb1ab18))
  (segment (start 69.200001 74.749999) (end 69.200001 74.774999) (width 0.25) (layer "F.Cu") (net 1) (tstamp d6040293-95f0-436a-938c-ad69875a4be8))
  (segment (start 67.5875 60.55) (end 66.3 60.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp da337fe1-c322-4637-ad26-2622b82ac8ee))
  (segment (start 80.5 75.95) (end 80.5 77.9625) (width 0.25) (layer "F.Cu") (net 1) (tstamp dd6c35f3-ae45-4706-ad6f-8028797ca8e0))
  (segment (start 95.210392 56.389608) (end 95.25 56.35) (width 0.25) (layer "F.Cu") (net 1) (tstamp dff67d5c-d976-4516-ae67-dbbdb70f8ddd))
  (segment (start 85.468356 76.036345) (end 85.5 76.067989) (width 0.25) (layer "F.Cu") (net 1) (tstamp e80b0e91-f15f-4e36-9a9c-b2cfd5a01d2a))
  (segment (start 69.200001 74.774999) (end 68.425 75.55) (width 0.25) (layer "F.Cu") (net 1) (tstamp ea28e946-b74f-4ba8-ac7b-b1884c5e7296))
  (segment (start 98.210392 56.339608) (end 98.25 56.3) (width 0.25) (layer "F.Cu") (net 1) (tstamp eafb53d1-7486-4935-b154-2efbffbed6ca))
  (segment (start 69.421078 60.10592) (end 69.547006 60.10592) (width 0.25) (layer "F.Cu") (net 1) (tstamp f8621ac5-1e7e-4e87-8c69-5fd403df9470))
  (segment (start 61.35 60.65) (end 61.3 60.7) (width 0.25) (layer "F.Cu") (net 1) (tstamp fb9a832c-737d-49fb-bbb4-29a0ba3e8178))
  (via (at 69.547006 60.10592) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00005e48d149))
  (via (at 70.95 68.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00005e49a107))
  (via (at 53.323456 68.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00005e4ac351))
  (via (at 62 61.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 09c6ca89-863f-42d4-867e-9a769c316610))
  (via (at 52.15 60.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 0a8dfc5c-35dc-4e44-a2bf-5968ebf90cca))
  (via (at 90.6 56.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 11c7c8d4-4c4b-4330-bb59-1eec2e98b255))
  (via (at 75.6 58.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 2026567f-be64-41dd-8011-b0897ba0ff2e))
  (via (at 86.8 69.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 251669f2-aed1-46fe-b2e4-9582ff1e4084))
  (via (at 87.3 61.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 3656bb3f-f8a4-4f3a-8e9a-ec6203c87a56))
  (via (at 63.05 70) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 39845449-7a31-4262-86b1-e7af14a6659f))
  (via (at 78.5 73.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 3f1ab70d-3263-42b5-9c61-0360188ff2b7))
  (via (at 98.25 56.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 42f10020-b50a-4739-a546-6b63e441c980))
  (via (at 61.3 60.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 47993d80-a37e-426e-90c9-fd54b49ed166))
  (via (at 54.35 68.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 4d3a1f72-d521-46ae-8fe1-3f8221038335))
  (via (at 65.3 61.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 64d1d0fe-4fd6-4a55-8314-56a651e1ccab))
  (via (at 80.5 75.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 692d87e9-6b70-46cc-9c78-b75193a484cc))
  (via (at 69.25 64.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 6b8ac91e-9d2b-49db-8a80-1da009ad1c5e))
  (via (at 85.468356 75.47066) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 6ea0f2f7-b064-4b8f-bd17-48195d1c83d1))
  (via (at 58.55 78.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 77aa6db5-9b8d-4983-b88e-30fe5af25975))
  (via (at 75.1 73.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 7d2eba81-aa80-4257-a5a7-9a6179da897e))
  (via (at 95.25 56.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 7de6564c-7ad6-4d57-a54c-8d2835ff5cdc))
  (via (at 71.5 58.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 883105b0-f6a6-466b-ba58-a2fcc1f18e4b))
  (via (at 69.6 74.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 9b07d532-5f76-4469-8dbf-25ac27eef589))
  (via (at 64.15 61.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp a323243c-4cab-4689-aa04-1e663cf86177))
  (via (at 63.05 61.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp a49e8613-3cd2-48ed-8977-6bb5023f7722))
  (via (at 55.2 66.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp acf5d924-0760-425a-996c-c1d965700be8))
  (via (at 97.25 56.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp af6ac8e6-193c-4bd2-ac0b-7f515b538a8b))
  (via (at 52.25 68.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp c56bbebe-0c9a-418d-911e-b8ba7c53125d))
  (via (at 84.45 64.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp d70d1cd3-1668-4688-8eb7-f773efb7bb87))
  (via (at 65.756961 75.439134) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp e77c17df-b20e-4e7d-b937-f281c75a0014))
  (via (at 80.95 58.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp ea4f0afc-785b-40cf-8ef1-cbe20404c18b))
  (via (at 56.65 62.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp ef51df0d-fc2c-482b-a0e5-e49bae94f31f))
  (via (at 96.25 56.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp f6dcb5b4-0971-448a-b9ab-6db37a750704))
  (via (at 52.15 62.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp fb1a635e-b207-4b36-b0fb-e877e480e86a))
  (via (at 96.65 69.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp fe4869dc-e96e-4bb4-a38d-2ca990635f2d))
  (segment (start 70.95 69.565) (end 70.95 68.55) (width 0.25) (layer "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00005e48506d))
  (segment (start 69.562006 60.12092) (end 69.547006 60.10592) (width 0.25) (layer "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00005e48d143))
  (segment (start 70.697006 60.12092) (end 69.562006 60.12092) (width 0.25) (layer "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00005e48d146))
  (segment (start 108.37 59.485) (end 109.525 59.485) (width 0.25) (layer "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00006201089f))
  (segment (start 109.525 59.485) (end 110.23 60.19) (width 0.25) (layer "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-0000620108a2))
  (segment (start 86.635 69.185) (end 86.8 69.35) (width 0.25) (layer "B.Cu") (net 1) (tstamp 311665d9-0fab-4325-8b46-f3638bf521df))
  (segment (start 85.5 69.185) (end 86.635 69.185) (width 0.25) (layer "B.Cu") (net 1) (tstamp 3198b8ca-7d11-4e0c-89a4-c173f9fcf724))
  (segment (start 85.5 64.915) (end 84.465 64.915) (width 0.25) (layer "B.Cu") (net 1) (tstamp 3c646c61-400f-4f60-98b8-05ed5e632a3f))
  (segment (start 80.935 58.515) (end 80.95 58.5) (width 0.25) (layer "B.Cu") (net 1) (tstamp 49d97c73-e37a-4154-9d0a-88037e40cc11))
  (segment (start 80.435 75.885) (end 80.5 75.95) (width 0.25) (layer "B.Cu") (net 1) (tstamp 4f2f68c4-6fa0-45ce-b5c2-e911daddcd12))
  (segment (start 75.135 74.7) (end 75.135 73.735) (width 0.25) (layer "B.Cu") (net 1) (tstamp 6f5a9f10-1b2c-4916-b4e5-cb5bd0f851a0))
  (segment (start 86.165 75.1) (end 85.839016 75.1) (width 0.25) (layer "B.Cu") (net 1) (tstamp 725579dd-9ec6-473d-8843-6a11e99f108c))
  (segment (start 84.465 64.915) (end 84.45 64.9) (width 0.25) (layer "B.Cu") (net 1) (tstamp 8aeda7bd-b078-427a-a185-d5bc595c6436))
  (segment (start 80.935 59.65) (end 80.935 58.515) (width 0.25) (layer "B.Cu") (net 1) (tstamp 9505be36-b21c-4db8-9484-dd0861395d26))
  (segment (start 86.15 61.565) (end 87.285 61.565) (width 0.25) (layer "B.Cu") (net 1) (tstamp 961b4579-9ee8-407a-89a7-81f36f1ad865))
  (segment (start 75.635 59.75) (end 75.635 58.285) (width 0.25) (layer "B.Cu") (net 1) (tstamp 981ff4de-0330-4757-b746-0cb983df5e7c))
  (segment (start 69.785 74.535) (end 69.6 74.35) (width 0.25) (layer "B.Cu") (net 1) (tstamp 9a595c4c-9ac1-4ae3-8ff3-1b7f2281a894))
  (segment (start 70.95 74.535) (end 69.785 74.535) (width 0.25) (layer "B.Cu") (net 1) (tstamp a26bdee6-0e16-4ea6-87f7-fb32c714896e))
  (segment (start 80.435 74.7) (end 80.435 75.885) (width 0.25) (layer "B.Cu") (net 1) (tstamp a6706c54-6a82-42d1-a6c9-48341690e19d))
  (segment (start 78.485 73.615) (end 78.5 73.6) (width 0.25) (layer "B.Cu") (net 1) (tstamp aa0466c6-766f-4bb4-abf1-502a6a06f91d))
  (segment (start 85.839016 75.1) (end 85.468356 75.47066) (width 0.25) (layer "B.Cu") (net 1) (tstamp acb0068c-c0e7-44cf-a209-296716acb6a2))
  (segment (start 75.135 73.735) (end 75.1 73.7) (width 0.25) (layer "B.Cu") (net 1) (tstamp bde3f73b-f869-498d-a8d7-18346cb7179e))
  (segment (start 78.485 74.7) (end 78.485 73.615) (width 0.25) (layer "B.Cu") (net 1) (tstamp d2db53d0-2821-4ebe-bf21-b864eac8ca44))
  (segment (start 86.685 61.565) (end 86.7 61.55) (width 0.25) (layer "B.Cu") (net 1) (tstamp eb6a726e-fed9-4891-95fa-b4d4a5f77b35))
  (segment (start 75.635 58.285) (end 75.6 58.25) (width 0.25) (layer "B.Cu") (net 1) (tstamp fead07ab-5a70-40db-ada8-c72dcc827bfc))
  (segment (start 65.2 74.975) (end 65.2 70.084318) (width 0.25) (layer "F.Cu") (net 2) (tstamp 003974b6-cb8f-491b-a226-fc7891eb9a62))
  (segment (start 66.734318 68.55) (end 66.75 68.55) (width 0.25) (layer "F.Cu") (net 2) (tstamp 122b5574-57fe-4d2d-80bf-3cabd28e7128))
  (segment (start 66.75 68.55) (end 67.5875 68.55) (width 0.25) (layer "F.Cu") (net 2) (tstamp 4f4bd227-fa4c-47f4-ad05-ee16ad4c58c2))
  (segment (start 62.15 78.025) (end 65.2 74.975) (width 0.25) (layer "F.Cu") (net 2) (tstamp 8765371a-21c2-4fe3-a3af-88f5eb1f02a0))
  (segment (start 65.2 70.084318) (end 66.734318 68.55) (width 0.25) (layer "F.Cu") (net 2) (tstamp e42fd0d4-9927-4308-81d9-4cca814c8ea9))
  (segment (start 61.475 78.025) (end 62.15 78.025) (width 0.25) (layer "F.Cu") (net 2) (tstamp ed952427-2217-4500-9bbc-0c2746b198ad))
  (segment (start 82.213609 70.250019) (end 79.2 70.250019) (width 0.25) (layer "F.Cu") (net 3) (tstamp 444b2eaf-241d-42e5-8717-27a83d099c5b))
  (segment (start 78.95 70.500019) (end 78.95 71.1) (width 0.25) (layer "F.Cu") (net 3) (tstamp 469f89fd-f629-46b7-b106-a0088168c9ec))
  (segment (start 83.3 76.284536) (end 83.3 71.33641) (width 0.25) (layer "F.Cu") (net 3) (tstamp 653e74f0-0a40-4ab5-8f5c-787bbaf1d723))
  (segment (start 83.8 51.26) (end 83.79 51.26) (width 0.25) (layer "F.Cu") (net 3) (tstamp 7c0866b5-b180-4be6-9e62-43f5b191d6d4))
  (segment (start 83.5 77.9625) (end 83.5 76.484536) (width 0.25) (layer "F.Cu") (net 3) (tstamp 8ef1307e-4e79-474d-a93c-be38f714571c))
  (segment (start 83.3 71.33641) (end 82.213609 70.250019) (width 0.25) (layer "F.Cu") (net 3) (tstamp 971d1932-4a99-4265-9c76-26e554bde4fe))
  (segment (start 83.5 76.484536) (end 83.3 76.284536) (width 0.25) (layer "F.Cu") (net 3) (tstamp b24c67bf-acb7-486e-9d7b-fb513b8c7fc6))
  (segment (start 79.2 70.250019) (end 78.95 70.500019) (width 0.25) (layer "F.Cu") (net 3) (tstamp d8dc9b6c-67d0-4a0d-a791-6f7d43ef3652))
  (via (at 78.95 71.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp ec2e3d8a-128c-4be8-b432-9738bca934ae))
  (segment (start 78.993214 70.054787) (end 78.993214 71.056786) (width 0.25) (layer "B.Cu") (net 3) (tstamp 08da8f18-02c3-4a28-a400-670f01755980))
  (segment (start 75.135 71.45) (end 75.68499 70.90001) (width 0.25) (layer "B.Cu") (net 3) (tstamp 2522909e-6f5c-4f36-9c3a-869dca14e50f))
  (segment (start 78.40002 57.19998) (end 79.3 56.3) (width 0.25) (layer "B.Cu") (net 3) (tstamp 3a45fb3b-7899-44f2-a78a-f676359df67b))
  (segment (start 78.993214 71.056786) (end 78.95 71.1) (width 0.25) (layer "B.Cu") (net 3) (tstamp 7255cbd1-8d38-4545-be9a-7fc5488ef942))
  (segment (start 78.40002 67.8272) (end 78.40002 57.19998) (width 0.25) (layer "B.Cu") (net 3) (tstamp 81b95d0d-8967-4ed1-8d40-39925d015ae8))
  (segment (start 78.993214 68.420394) (end 78.40002 67.8272) (width 0.25) (layer "B.Cu") (net 3) (tstamp 83a363ef-2850-4113-853b-2966af02d72d))
  (segment (start 82.5 52.56) (end 83.8 51.26) (width 0.25) (layer "B.Cu") (net 3) (tstamp 848c6095-3966-404d-9f2a-51150fd8dc54))
  (segment (start 78.993214 70.054787) (end 78.993214 68.420394) (width 0.25) (layer "B.Cu") (net 3) (tstamp a647641f-bf16-4177-91ee-b01f347ff91c))
  (segment (start 79.3 56.3) (end 80.499002 56.3) (width 0.25) (layer "B.Cu") (net 3) (tstamp c81031ca-cd56-4ea3-b0db-833cbbdd7b2e))
  (segment (start 80.499002 56.3) (end 82.5 54.299002) (width 0.25) (layer "B.Cu") (net 3) (tstamp d1817a81-d444-4cd9-95f6-174ec9e2a60e))
  (segment (start 82.5 54.299002) (end 82.5 52.56) (width 0.25) (layer "B.Cu") (net 3) (tstamp d4e4ffa8-e3e2-4590-b9df-630d1880f3e4))
  (segment (start 78.147991 70.90001) (end 78.993214 70.054787) (width 0.25) (layer "B.Cu") (net 3) (tstamp e07c4b69-e0b4-4217-9b28-38d44f166b31))
  (segment (start 75.68499 70.90001) (end 78.147991 70.90001) (width 0.25) (layer "B.Cu") (net 3) (tstamp fd4dd248-3e78-4985-a4fc-58bc05b74cbf))
  (segment (start 84.04999 77.07501) (end 84.04999 76.398116) (width 0.25) (layer "F.Cu") (net 4) (tstamp 2c488362-c230-4f6d-82f9-a229b1171a23))
  (segment (start 78.72 51.26) (end 78.69 51.26) (width 0.25) (layer "F.Cu") (net 4) (tstamp 37728c8e-efcc-462c-a749-47b6bfcbaf37))
  (segment (start 82.400009 69.800009) (end 78.17499 69.800009) (width 0.25) (layer "F.Cu") (net 4) (tstamp 5698a460-6e24-4857-84d8-4a43acd2325d))
  (segment (start 83.75 71.15) (end 82.400009 69.800009) (width 0.25) (layer "F.Cu") (net 4) (tstamp 8220ba36-5fda-4461-95e2-49a5bc0c76af))
  (segment (start 84 77.9625) (end 84 77.125) (width 0.25) (layer "F.Cu") (net 4) (tstamp 89df70f4-3579-42b9-861e-6beb04a3b25e))
  (segment (start 83.75 71.15) (end 83.75 76.098126) (width 0.25) (layer "F.Cu") (net 4) (tstamp 8cb5a828-8cef-4784-b78d-175b49646952))
  (segment (start 83.75 76.098126) (end 84.04999 76.398116) (width 0.25) (layer "F.Cu") (net 4) (tstamp a5e6f7cb-0a81-4357-a11f-231d23300342))
  (segment (start 84 77.125) (end 84.04999 77.07501) (width 0.25) (layer "F.Cu") (net 4) (tstamp dc628a9d-67e8-4a03-b99f-8cc7a42af6ef))
  (segment (start 78.17499 69.800009) (end 77.9 70.074999) (width 0.25) (layer "F.Cu") (net 4) (tstamp dde4c43d-f33e-48ba-86f3-779fdfce00c2))
  (via (at 77.9 70.074999) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp fdc57161-f7f8-4584-b0ec-8c1aa24339c6))
  (segment (start 77.9 70.074999) (end 76.951997 70.074999) (width 0.25) (layer "B.Cu") (net 4) (tstamp 0938c137-668b-4d2f-b92b-cadb1df72bdb))
  (segment (start 76.951997 70.074999) (end 76.9 70.023002) (width 0.25) (layer "B.Cu") (net 4) (tstamp 1b98de85-f9de-4825-baf2-c96991615275))
  (segment (start 77.95001 56.99999) (end 77.95001 68.972992) (width 0.25) (layer "B.Cu") (net 4) (tstamp 42bd0f96-a831-406e-abb7-03ed1bbd785f))
  (segment (start 80 54.95) (end 77.95001 56.99999) (width 0.25) (layer "B.Cu") (net 4) (tstamp 57543893-39bf-4d83-b4e0-8d020b4a6d48))
  (segment (start 78.72 52.060998) (end 80 53.340998) (width 0.25) (layer "B.Cu") (net 4) (tstamp 629fdb7a-7978-43d0-987e-b84465775826))
  (segment (start 76.473002 70.45) (end 76.9 70.023002) (width 0.25) (layer "B.Cu") (net 4) (tstamp 74096bdc-b668-408c-af3a-b048c20bd605))
  (segment (start 77.95001 68.972992) (end 76.9 70.023002) (width 0.25) (layer "B.Cu") (net 4) (tstamp 9bb406d9-c650-4e67-9a26-3195d4de542e))
  (segment (start 80 53.340998) (end 80 54.95) (width 0.25) (layer "B.Cu") (net 4) (tstamp 9c5933cf-1535-4465-90dd-da9b75afcdcf))
  (segment (start 78.72 51.26) (end 78.72 52.060998) (width 0.25) (layer "B.Cu") (net 4) (tstamp df9a1242-2d73-4343-b170-237bc9a8080f))
  (segment (start 75.135 70.45) (end 76.473002 70.45) (width 0.25) (layer "B.Cu") (net 4) (tstamp fbb5e77c-4b41-4796-ad13-1b9e2bbc3c81))
  (segment (start 81.26 53.8) (end 81.15 53.8) (width 0.25) (layer "F.Cu") (net 5) (tstamp 2d0d333a-99a0-4575-9433-710c8cc7ac0b))
  (segment (start 77.299999 69.349999) (end 76.9 68.95) (width 0.25) (layer "F.Cu") (net 5) (tstamp 2d16cb66-2809-411d-912c-d3db0f48bd04))
  (segment (start 84.54999 77.07501) (end 84.54999 76.261706) (width 0.25) (layer "F.Cu") (net 5) (tstamp 2d4d8c24-5b38-445b-8733-2a81ba21d33e))
  (segment (start 84.25 75.961716) (end 84.25 71) (width 0.25) (layer "F.Cu") (net 5) (tstamp 5fe7a4eb-9f04-4df6-a1fa-36c071e280d7))
  (segment (start 84.5 77.125) (end 84.54999 77.07501) (width 0.25) (layer "F.Cu") (net 5) (tstamp 7806469b-c133-4e19-b2d5-f2b690b4b2f3))
  (segment (start 82.599999 69.349999) (end 77.299999 69.349999) (width 0.25) (layer "F.Cu") (net 5) (tstamp 90fa0465-7fe5-474b-8e7c-9f955c02a0f6))
  (segment (start 84.5 77.9625) (end 84.5 77.125) (width 0.25) (layer "F.Cu") (net 5) (tstamp a10b569c-d672-485d-9c05-2cb4795deeca))
  (segment (start 84.25 71) (end 82.599999 69.349999) (width 0.25) (layer "F.Cu") (net 5) (tstamp a6891c49-3648-41ce-811e-fccb4c4653af))
  (segment (start 56.645 70.975) (end 56.645 68.795) (width 0.25) (layer "F.Cu") (net 5) (tstamp d53baa32-ba88-4646-9db3-0e9b0f0da4f0))
  (segment (start 84.54999 76.261706) (end 84.25 75.961716) (width 0.25) (layer "F.Cu") (net 5) (tstamp db902262-2864-4997-aeff-8abaa132424a))
  (segment (start 56.645 68.795) (end 56.6 68.75) (width 0.25) (layer "F.Cu") (net 5) (tstamp ef3dded2-639c-45d4-8076-84cfb5189592))
  (via (at 76.9 68.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 18cf1537-83e6-4374-a277-6e3e21479ab0))
  (via (at 56.6 68.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 7c6e532b-1afd-48d4-9389-2942dcbc7c3c))
  (segment (start 77.5 68.35) (end 76.9 68.95) (width 0.25) (layer "B.Cu") (net 5) (tstamp 16d5bf81-590a-4149-97e0-64f3b3ad6f52))
  (segment (start 78.115001 50.084999) (end 77.5 50.7) (width 0.25) (layer "B.Cu") (net 5) (tstamp 2151a218-87ec-4d43-b5fa-736242c52602))
  (segment (start 77.5 53.15) (end 77.5 53.3) (width 0.25) (layer "B.Cu") (net 5) (tstamp 4c8704fa-310a-4c01-8dc1-2b7e2727fea0))
  (segment (start 81.26 53.8) (end 79.895001 52.435001) (width 0.25) (layer "B.Cu") (net 5) (tstamp 64256223-cf3b-4a78-97d3-f1dca769968f))
  (segment (start 77.5 53.3) (end 77.5 63.35) (width 0.25) (layer "B.Cu") (net 5) (tstamp 6742a066-6a5f-4185-90ae-b7fe8c6eda52))
  (segment (start 79.894003 50.695001) (end 79.284001 50.084999) (width 0.25) (layer "B.Cu") (net 5) (tstamp 6aa022fb-09ce-49d9-86b1-c73b3ee817e2))
  (segment (start 79.284001 50.084999) (end 78.115001 50.084999) (width 0.25) (layer "B.Cu") (net 5) (tstamp 7e498af5-a41b-4f8f-8a13-10c00a9160aa))
  (segment (start 77.5 68.2) (end 77.5 68.35) (width 0.25) (layer "B.Cu") (net 5) (tstamp a6c7f556-10bb-4a6d-b61b-a732ec6fa5cc))
  (segment (start 77.5 50.7) (end 77.5 53.3) (width 0.25) (layer "B.Cu") (net 5) (tstamp a6dc1180-19c4-432b-af49-fc9179bb4519))
  (segment (start 79.895001 52.435001) (end 79.895001 50.695001) (width 0.25) (layer "B.Cu") (net 5) (tstamp b21625e3-a75b-41d7-9f13-4c0e12ba16cb))
  (segment (start 56.6 65.55) (end 58.8 63.35) (width 0.25) (layer "B.Cu") (net 5) (tstamp b4675fcd-90dd-499b-8feb-46b51a88378c))
  (segment (start 58.8 63.35) (end 77.5 63.35) (width 0.25) (layer "B.Cu") (net 5) (tstamp c8072c34-0f81-4552-9fbe-4bfe60c53e21))
  (segment (start 79.895001 50.695001) (end 79.894003 50.695001) (width 0.25) (layer "B.Cu") (net 5) (tstamp df93f76b-86da-45ae-87e2-4b691af12b00))
  (segment (start 77.5 63.35) (end 77.5 68.2) (width 0.25) (layer "B.Cu") (net 5) (tstamp fec6f717-d723-4676-89ef-8ea691e209c2))
  (segment (start 56.6 68.75) (end 56.6 65.55) (width 0.25) (layer "B.Cu") (net 5) (tstamp ff2f00dc-dff2-4a19-af27-f5c793a8d261))
  (segment (start 76.243814 64.925009) (end 76.997993 64.925009) (width 0.25) (layer "F.Cu") (net 6) (tstamp 01109662-12b4-48a3-b68d-624008909c2a))
  (segment (start 59.185 66.025) (end 59.185 64.95) (width 0.25) (layer "F.Cu") (net 6) (tstamp 05e45f00-3c6b-4c0c-9ffb-3fe26fcda007))
  (segment (start 75.843815 64.52501) (end 76.243814 64.925009) (width 0.25) (layer "F.Cu") (net 6) (tstamp 1a813eeb-ee58-4579-81e1-3f9a7227213c))
  (segment (start 85 77.125) (end 85.018346 77.106654) (width 0.25) (layer "F.Cu") (net 6) (tstamp 2a6ee718-8cdf-4fa6-be7c-8fe885d98fd7))
  (segment (start 59.41001 64.72499) (end 64.17499 64.72499) (width 0.25) (layer "F.Cu") (net 6) (tstamp 2fb9964c-4cd4-4e81-b5e8-f78759d3adb5))
  (segment (start 84.743355 75.106645) (end 85.600001 74.249999) (width 0.25) (layer "F.Cu") (net 6) (tstamp 3c66e6e2-f12d-4b23-910e-e478d272dfd5))
  (segment (start 59.185 64.95) (end 59.41001 64.72499) (width 0.25) (layer "F.Cu") (net 6) (tstamp 40b38567-9d6a-4691-bccf-1b4dbe39957b))
  (segment (start 85 77.9625) (end 85 77.125) (width 0.25) (layer "F.Cu") (net 6) (tstamp 55cff608-ab38-48d9-ac09-2d0a877ceca1))
  (segment (start 85.018346 76.093652) (end 84.743355 75.818661) (width 0.25) (layer "F.Cu") (net 6) (tstamp 6b69fc79-c78f-4df1-9a05-c51d4173705f))
  (segment (start 84.743355 75.818661) (end 84.743355 75.106645) (width 0.25) (layer "F.Cu") (net 6) (tstamp 9c8eae28-a7c3-4e6a-bd81-98cf70031070))
  (segment (start 80.019491 64.55001) (end 80.181876 64.387625) (width 0.25) (layer "F.Cu") (net 6) (tstamp b2001159-b6cb-4000-85f5-34f6c410920f))
  (segment (start 85.600001 74.249999) (end 86 73.85) (width 0.25) (layer "F.Cu") (net 6) (tstamp d8370835-89ad-4b62-9f40-d0c10470788a))
  (segment (start 64.17499 64.72499) (end 64.95 65.5) (width 0.25) (layer "F.Cu") (net 6) (tstamp e3c3d042-f4c5-4fb1-a6b8-52aa1c14cc0e))
  (segment (start 85.018346 77.106654) (end 85.018346 76.093652) (width 0.25) (layer "F.Cu") (net 6) (tstamp f2392fe0-54af-4e02-8793-9ba2471944b5))
  (segment (start 76.997993 64.925009) (end 77.372992 64.55001) (width 0.25) (layer "F.Cu") (net 6) (tstamp fab1abc4-c49d-4b88-8c7f-939d7feb7b6c))
  (segment (start 77.372992 64.55001) (end 80.019491 64.55001) (width 0.25) (layer "F.Cu") (net 6) (tstamp fb191df4-267d-4797-80dd-be346b8eeb99))
  (via (at 86 73.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 0e166909-afb5-4d70-a00b-dd78cd09b084))
  (via (at 64.95 65.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 8385d9f6-6997-423b-b38d-d0ab00c45f3f))
  (via (at 80.181876 64.387625) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp b754bfb3-a198-47be-8e7b-61bec885a5db))
  (via (at 75.843815 64.52501) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp f74eb612-4697-4cb4-afe4-9f94828b954d))
  (segment (start 69.423002 65.5) (end 69.423002 65.476998) (width 0.25) (layer "B.Cu") (net 6) (tstamp 04d60995-4f82-4f17-8f82-2f27a0a779cc))
  (segment (start 81.271434 66.1) (end 81.3 66.071434) (width 0.25) (layer "B.Cu") (net 6) (tstamp 1b5a32e4-0b8e-4f38-b679-71dc277c2087))
  (segment (start 83.8 53.8) (end 80.84999 56.75001) (width 0.25) (layer "B.Cu") (net 6) (tstamp 414f80f7-b2d5-43c3-a018-819efe44fe30))
  (segment (start 81.3 66.071434) (end 80.181876 64.95331) (width 0.25) (layer "B.Cu") (net 6) (tstamp 494d4ce3-60c4-4021-8bd1-ab41a12b14ed))
  (segment (start 86.399999 73.450001) (end 86.399999 71.171433) (width 0.25) (layer "B.Cu") (net 6) (tstamp 5a889284-4c9f-49be-8f02-e43e18550914))
  (segment (start 75.568825 64.25002) (end 75.843815 64.52501) (width 0.25) (layer "B.Cu") (net 6) (tstamp 621c8eb9-ae87-439a-b350-badb5d559a5a))
  (segment (start 69.423002 65.476998) (end 70.64998 64.25002) (width 0.25) (layer "B.Cu") (net 6) (tstamp 6f44a349-1ba9-4965-b217-aa1589a07228))
  (segment (start 70.64998 64.25002) (end 75.568825 64.25002) (width 0.25) (layer "B.Cu") (net 6) (tstamp 72cc7949-68f8-4ef8-adcb-a65c1d042672))
  (segment (start 78.850029 65.698001) (end 79.252028 66.1) (width 0.25) (layer "B.Cu") (net 6) (tstamp 84febc35-87fd-4cad-8e04-2b66390cfc12))
  (segment (start 86.399999 71.171433) (end 81.3 66.071434) (width 0.25) (layer "B.Cu") (net 6) (tstamp a419542a-0c78-421e-9ac7-81d3afba6186))
  (segment (start 79.4864 56.75001) (end 78.85003 57.38638) (width 0.25) (layer "B.Cu") (net 6) (tstamp a67dbe3b-ec7d-4ea5-b0e5-715c5263d8da))
  (segment (start 64.95 65.5) (end 69.423002 65.5) (width 0.25) (layer "B.Cu") (net 6) (tstamp b45059f3-613f-4b7a-a70a-ed75a9e941e6))
  (segment (start 80.84999 56.75001) (end 79.4864 56.75001) (width 0.25) (layer "B.Cu") (net 6) (tstamp bc1d5740-b0c7-4566-95b0-470ac47a1fb3))
  (segment (start 79.252028 66.1) (end 81.271434 66.1) (width 0.25) (layer "B.Cu") (net 6) (tstamp c480dba7-51ff-4a4f-9251-e48b2784c64a))
  (segment (start 80.181876 64.95331) (end 80.181876 64.387625) (width 0.25) (layer "B.Cu") (net 6) (tstamp dc7523a5-4408-4a51-bc92-6a47a538c094))
  (segment (start 78.85003 57.38638) (end 78.850029 65.698001) (width 0.25) (layer "B.Cu") (net 6) (tstamp eb1b2aa2-a3cc-4a96-87ec-70fcae365f0f))
  (segment (start 86 73.85) (end 86.399999 73.450001) (width 0.25) (layer "B.Cu") (net 6) (tstamp eb7e294c-b398-413b-8b78-85a66ed5f3ea))
  (segment (start 74.951878 64.977173) (end 75.351877 65.377172) (width 0.25) (layer "F.Cu") (net 7) (tstamp 042fe62b-53aa-4e86-97d0-9ccb1e16a895))
  (segment (start 57.915 70.975) (end 57.915 69.9) (width 0.25) (layer "F.Cu") (net 7) (tstamp 0cc094e7-c1c0-457d-bd94-3db91c23be55))
  (segment (start 57.9 70.99) (end 57.915 70.975) (width 0.25) (layer "F.Cu") (net 7) (tstamp 0fc912fd-5036-4a55-b598-a9af40810824))
  (segment (start 86.34 53.8) (end 86.3 53.8) (width 0.25) (layer "F.Cu") (net 7) (tstamp 1765d6b9-ca0e-49c2-8c3c-8ab35eb3909b))
  (segment (start 86 75.96359) (end 86.75 75.21359) (width 0.25) (layer "F.Cu") (net 7) (tstamp 2938bf2d-2d32-4cb0-9d4d-563ea28ffffa))
  (segment (start 75.351877 65.377172) (end 79.547858 65.377172) (width 0.25) (layer "F.Cu") (net 7) (tstamp 36696ac6-2db1-4b52-ae3d-9f3c89d2042f))
  (segment (start 79.547858 65.377172) (end 79.57503 65.35) (width 0.25) (layer "F.Cu") (net 7) (tstamp 5dbda758-e74b-4ccf-ad68-495d537d68ba))
  (segment (start 58.42001 69.39499) (end 62.467891 69.39499) (width 0.25) (layer "F.Cu") (net 7) (tstamp 680c3e83-f590-4924-85a1-36d51b076683))
  (segment (start 81 65.35) (end 79.57503 65.35) (width 0.25) (layer "F.Cu") (net 7) (tstamp 87a0ffb1-5477-4b20-a3ac-fef5af129a33))
  (segment (start 86 77.9625) (end 86 75.96359) (width 0.25) (layer "F.Cu") (net 7) (tstamp 89bd1fdd-6a91-474e-8495-7a2ba7eb6260))
  (segment (start 86.75 75.21359) (end 86.75 71.1) (width 0.25) (layer "F.Cu") (net 7) (tstamp 8b022692-69b7-4bd6-bf38-57edecf356fa))
  (segment (start 57.915 69.9) (end 58.42001 69.39499) (width 0.25) (layer "F.Cu") (net 7) (tstamp 9c0314b1-f82f-432d-95a0-65e191202552))
  (segment (start 86.75 71.1) (end 81 65.35) (width 0.25) (layer "F.Cu") (net 7) (tstamp c62adb8b-b306-48da-b0ae-f6a287e54f62))
  (segment (start 62.467891 69.39499) (end 65.625726 66.237155) (width 0.25) (layer "F.Cu") (net 7) (tstamp e07e1653-d05d-4bf2-bea3-6515a06de065))
  (segment (start 57.9 72.715) (end 57.9 70.99) (width 0.25) (layer "F.Cu") (net 7) (tstamp e0b36e60-bb2b-489c-a764-1b81e551ce62))
  (segment (start 86.34 53.8) (end 86.34 54.06) (width 0.25) (layer "F.Cu") (net 7) (tstamp f47374c3-cb2a-4769-880f-830c9b19222e))
  (via (at 79.57503 65.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp 2e6b1f7e-e4c3-43a1-ae90-c85aa40696d5))
  (via (at 65.625726 66.237155) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp be030c62-e776-405f-97d8-4a4c1aa2e428))
  (via (at 74.951878 64.977173) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp e46ecd61-0bbe-4b9f-a151-a2cacac5967b))
  (segment (start 79.300039 61.099961) (end 79.6 60.8) (width 0.25) (layer "B.Cu") (net 7) (tstamp 046ca2d8-3ca1-4c64-8090-c45e9adcf30e))
  (segment (start 85.539002 53.8) (end 84.339002 55) (width 0.25) (layer "B.Cu") (net 7) (tstamp 0f62e92c-dce6-45dc-a560-b9db10f66ff3))
  (segment (start 82.6 56.739002) (end 82.6 56.9) (width 0.25) (layer "B.Cu") (net 7) (tstamp 22ab392d-1989-4185-9178-8083812ea067))
  (segment (start 65.625726 66.237155) (end 65.625726 65.974274) (width 0.25) (layer "B.Cu") (net 7) (tstamp 2ec9be40-1d5a-4e2d-8a4d-4be2d3c079d5))
  (segment (start 81.423232 60.15) (end 81.278222 60.29501) (width 0.25) (layer "B.Cu") (net 7) (tstamp 341dde39-440e-4d05-8def-6a5cecefd88c))
  (segment (start 65.625726 65.974274) (end 65.64999 65.95001) (width 0.25) (layer "B.Cu") (net 7) (tstamp 35343f32-90ff-4059-a108-111fb444c3d2))
  (segment (start 79.300039 64.509324) (end 79.300039 61.099961) (width 0.25) (layer "B.Cu") (net 7) (tstamp 460147d8-e4b6-4910-88e9-07d1ddd6c2df))
  (segment (start 70.859382 64.70003) (end 72.9 64.70003) (width 0.25) (layer "B.Cu") (net 7) (tstamp 4b982f8b-ca29-4ebf-88fc-8a50b24e0802))
  (segment (start 86.34 53.8) (end 85.539002 53.8) (width 0.25) (layer "B.Cu") (net 7) (tstamp 53fda1fb-12bd-4536-80e1-aab5c0e3fc58))
  (segment (start 72.9 64.70003) (end 74.674735 64.70003) (width 0.25) (layer "B.Cu") (net 7) (tstamp 6e77d4d6-0239-4c20-98f8-23ae4f71d638))
  (segment (start 82.6 55.63641) (end 82.6 56.9) (width 0.25) (layer "B.Cu") (net 7) (tstamp 6fd21292-6577-40e1-bbda-18906b5e9f6f))
  (segment (start 65.64999 65.95001) (end 69.609402 65.95001) (width 0.25) (layer "B.Cu") (net 7) (tstamp 7b75907b-b2ae-4362-89fa-d520339aaa5c))
  (segment (start 81.8 60.15) (end 81.423232 60.15) (width 0.25) (layer "B.Cu") (net 7) (tstamp 8ade7975-64a0-440a-8545-11958836bf48))
  (segment (start 84.339002 55) (end 83.23641 55) (width 0.25) (layer "B.Cu") (net 7) (tstamp 929c74c0-78bf-4efe-a778-fa328e951865))
  (segment (start 74.674735 64.70003) (end 74.951878 64.977173) (width 0.25) (layer "B.Cu") (net 7) (tstamp 9666bb6a-0c1d-4c92-be6d-94a465ec5c51))
  (segment (start 79.57503 64.784315) (end 79.300039 64.509324) (width 0.25) (layer "B.Cu") (net 7) (tstamp a4541b62-7a39-4707-9c6f-80dce1be9cee))
  (segment (start 69.609402 65.95001) (end 70.859382 64.70003) (width 0.25) (layer "B.Cu") (net 7) (tstamp b632afec-1444-4246-8afb-cc14a57567e7))
  (segment (start 80.10499 60.29501) (end 79.6 60.8) (width 0.25) (layer "B.Cu") (net 7) (tstamp b853d9ac-7829-468f-99ac-dc9996502e94))
  (segment (start 79.57503 65.35) (end 79.57503 64.784315) (width 0.25) (layer "B.Cu") (net 7) (tstamp b9c0c276-e6f1-47dd-b072-0f92904248ca))
  (segment (start 80.49501 60.29501) (end 80.10499 60.29501) (width 0.25) (layer "B.Cu") (net 7) (tstamp c10ace36-a93c-4c08-ac75-059ef9e1f71c))
  (segment (start 81.278222 60.29501) (end 80.49501 60.29501) (width 0.25) (layer "B.Cu") (net 7) (tstamp d396ce56-1974-47b7-a41b-ae2b20ef835c))
  (segment (start 82.6 56.9) (end 82.6 59.35) (width 0.25) (layer "B.Cu") (net 7) (tstamp d5a7688c-7438-4b6d-999f-4f2a3cb18fd6))
  (segment (start 82.6 59.35) (end 81.8 60.15) (width 0.25) (layer "B.Cu") (net 7) (tstamp e7893166-2c2c-41b4-bd84-76ebc2e06551))
  (segment (start 83.23641 55) (end 82.6 55.63641) (width 0.25) (layer "B.Cu") (net 7) (tstamp f030cfe8-f922-4a12-a58d-2ff6e60a9bb9))
  (segment (start 63.015 66.015) (end 63.05 66.05) (width 0.25) (layer "F.Cu") (net 8) (tstamp 1527299a-08b3-47c3-929f-a75c83be365e))
  (segment (start 80.025039 63.4) (end 79.325039 64.1) (width 0.25) (layer "F.Cu") (net 8) (tstamp 153169ce-9fac-4868-bc4e-e1381c5bb726))
  (segment (start 86.5 77.9625) (end 86.5 76.1) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2276ec6c-cdcc-4369-86b4-8267d991001e))
  (segment (start 87.200009 70.850009) (end 80.906877 64.556877) (width 0.25) (layer "F.Cu") (net 8) (tstamp 29987966-1d19-4068-93f6-a61cdfb40ffa))
  (segment (start 60.465 66.015) (end 60.455 66.025) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2dc66f7e-d85d-4081-ae71-fd8851d6aeda))
  (segment (start 61.85 66.015) (end 63.015 66.015) (width 0.25) (layer "F.Cu") (net 8) (tstamp 58a87288-e2bf-4c88-9871-a753efc69e9d))
  (segment (start 86.5 76.1) (end 87.200009 75.399991) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6ba19f6c-fa3a-4bf3-8c57-119de0f02b65))
  (segment (start 80.906877 63.716153) (end 80.590724 63.4) (width 0.25) (layer "F.Cu") (net 8) (tstamp 799d9f4a-bb6b-44d5-9f4c-3a30db59943d))
  (segment (start 79.325039 64.1) (end 76.75 64.1) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9e427954-2486-4c91-89b5-6af73a073442))
  (segment (start 80.906877 64.556877) (end 80.906877 63.716153) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9f95f1fc-aa31-4ce6-996a-4b385731d8eb))
  (segment (start 87.200009 75.399991) (end 87.200009 70.850009) (width 0.25) (layer "F.Cu") (net 8) (tstamp ab0ea55a-63b3-4ece-836d-2844713a821f))
  (segment (start 80.590724 63.4) (end 80.025039 63.4) (width 0.25) (layer "F.Cu") (net 8) (tstamp b121f1ff-8472-460b-ab2d-5110ddd1ca28))
  (segment (start 61.85 66.015) (end 60.465 66.015) (width 0.25) (layer "F.Cu") (net 8) (tstamp b606e532-e4c7-444d-b9ff-879f52cfde92))
  (via (at 63.05 66.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp 0c9bbc06-f1c0-4359-8448-9c515b32a886))
  (via (at 76.75 64.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp d372e2ac-d81e-48b7-8c55-9bbe58eeffc3))
  (via (at 80.025039 63.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp db532ed2-914c-41b4-b389-de2bf235d0a7))
  (segment (start 79.874999 61.251999) (end 79.874999 62.684275) (width 0.25) (layer "B.Cu") (net 8) (tstamp 0d095387-710d-4633-a6c3-04eab60b585a))
  (segment (start 64.09999 63.80001) (end 76.45001 63.80001) (width 0.25) (layer "B.Cu") (net 8) (tstamp 0ff398d7-e6e2-4972-a7a4-438407886f34))
  (segment (start 84.525402 55.45001) (end 83.42281 55.45001) (width 0.25) (layer "B.Cu") (net 8) (tstamp 10fa1a8c-62cb-4b8f-b916-b18d737ff71b))
  (segment (start 76.45001 63.80001) (end 76.75 64.1) (width 0.25) (layer "B.Cu") (net 8) (tstamp 18dee026-9999-4f10-8c36-736131349406))
  (segment (start 87.515001 52.435001) (end 87.515001 54.364001) (width 0.25) (layer "B.Cu") (net 8) (tstamp 19515fa4-c166-4b6e-837d-c01a89e98000))
  (segment (start 79.874999 62.684275) (end 80.025039 62.834315) (width 0.25) (layer "B.Cu") (net 8) (tstamp 23345f3e-d08d-4834-b1dc-64de02569916))
  (segment (start 87.515001 54.364001) (end 86.904001 54.975001) (width 0.25) (layer "B.Cu") (net 8) (tstamp 43f341b3-06e9-4e7a-a26e-5365b89d76bf))
  (segment (start 86.904001 54.975001) (end 85.000411 54.975001) (width 0.25) (layer "B.Cu") (net 8) (tstamp 4d51bc15-1f84-46be-8e16-e836b10f854e))
  (segment (start 83.050009 59.536401) (end 81.84139 60.74502) (width 0.25) (layer "B.Cu") (net 8) (tstamp 5099f397-6fe7-454f-899c-34e2b5f22ca7))
  (segment (start 83.05001 55.82281) (end 83.050009 59.536401) (width 0.25) (layer "B.Cu") (net 8) (tstamp 6474aa6c-825c-4f0f-9938-759b68df02a5))
  (segment (start 85.000411 54.975001) (end 84.525402 55.45001) (width 0.25) (layer "B.Cu") (net 8) (tstamp 9e18f8b3-9e1a-4022-9224-10c12ca8a28d))
  (segment (start 81.84139 60.74502) (end 80.381978 60.74502) (width 0.25) (layer "B.Cu") (net 8) (tstamp a12b751e-ae7a-468c-af3d-31ed4d501b01))
  (segment (start 63.05 66.05) (end 63.05 64.85) (width 0.25) (layer "B.Cu") (net 8) (tstamp aa288a22-ea1d-474d-8dae-efe971580843))
  (segment (start 80.025039 62.834315) (end 80.025039 63.4) (width 0.25) (layer "B.Cu") (net 8) (tstamp c220da05-2a98-47be-9327-0c73c5263c41))
  (segment (start 86.34 51.26) (end 87.515001 52.435001) (width 0.25) (layer "B.Cu") (net 8) (tstamp cd48b13f-c989-4ac1-a7f0-053afcd77527))
  (segment (start 63.05 64.85) (end 64.09999 63.80001) (width 0.25) (layer "B.Cu") (net 8) (tstamp e9a9fba3-7cfa-45ca-926c-a5a8ecd7e3a4))
  (segment (start 80.381978 60.74502) (end 79.874999 61.251999) (width 0.25) (layer "B.Cu") (net 8) (tstamp ea7c53f9-3aa8-4198-9879-de95a5257915))
  (segment (start 83.42281 55.45001) (end 83.05001 55.82281) (width 0.25) (layer "B.Cu") (net 8) (tstamp f48f1d12-9008-4743-81e2-bdec45db64a1))
  (segment (start 59.2 70.99) (end 59.185 70.975) (width 0.25) (layer "F.Cu") (net 9) (tstamp 29cd9e70-9b68-44f7-96b2-fe993c246832))
  (segment (start 59.2 72.715) (end 59.2 70.99) (width 0.25) (layer "F.Cu") (net 9) (tstamp 2e1d63b8-5189-41bb-8b6a-c4ada546b2d5))
  (segment (start 59.25 70.91) (end 59.185 70.975) (width 0.25) (layer "F.Cu") (net 9) (tstamp 7114de55-86d9-46c1-a412-07f5eb895435))
  (segment (start 74.65 58.184315) (end 74.8 58.034315) (width 0.25) (layer "F.Cu") (net 10) (tstamp 0a79db37-f1d9-40b1-a24d-8bdfb8f637e2))
  (segment (start 87 77.9625) (end 87.7 77.2625) (width 0.25) (layer "F.Cu") (net 10) (tstamp 0f9b475c-adb7-41fc-b827-33d4eaa86b99))
  (segment (start 87.35 62.55) (end 88.9125 62.55) (width 0.25) (layer "F.Cu") (net 10) (tstamp 1053b01a-057e-4e79-a21c-42780a737ea9))
  (segment (start 61.85 70.985) (end 60.465 70.985) (width 0.25) (layer "F.Cu") (net 10) (tstamp 15a5a11b-0ea1-4f6e-b356-cc2d530615ed))
  (segment (start 96.210392 59.389608) (end 96.2 59.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 173fd4a7-b485-4e9d-8724-470865466784))
  (segment (start 61.85 71.85) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp 24a492d9-25a9-4fba-b51b-3effb576b351))
  (segment (start 95.210392 59.339608) (end 95.15 59.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 26296271-780a-4da9-8e69-910d9240bca1))
  (segment (start 58.7 76.165) (end 59.715 76.165) (width 0.25) (layer "F.Cu") (net 10) (tstamp 2f33286e-7553-4442-acf0-23c61fcd6ab0))
  (segment (start 74.65 58.75) (end 74.65 58.184315) (width 0.25) (layer "F.Cu") (net 10) (tstamp 315d2b15-cfe6-4672-b3ad-24773f3df12c))
  (segment (start 53.323456 66.025966) (end 53.323456 65.876544) (width 0.25) (layer "F.Cu") (net 10) (tstamp 341e67eb-d5e1-4cb7-9d11-5aa4ab832a2a))
  (segment (start 57.9 73.685) (end 59.2 73.685) (width 0.25) (layer "F.Cu") (net 10) (tstamp 3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0))
  (segment (start 79.5 76.05) (end 79.5 77.9625) (width 0.25) (layer "F.Cu") (net 10) (tstamp 3f43c2dc-daa2-45ba-b8ca-7ae5aebed882))
  (segment (start 62.725 76.375) (end 62.75 76.35) (width 0.25) (layer "F.Cu") (net 10) (tstamp 41524d81-a7f7-45af-a8c6-15609b68d1fd))
  (segment (start 53.323456 66.025966) (end 53.323456 65.773456) (width 0.25) (layer "F.Cu") (net 10) (tstamp 41ab46ed-40f5-461d-81aa-1f02dc069a49))
  (segment (start 62.935 66.985) (end 63 67.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 45484f82-420e-44d0-a58e-382bb939dac5))
  (segment (start 86.95 68.05) (end 88.9125 68.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 45a58c23-3e6d-4df0-af01-6d5948b0075c))
  (segment (start 59.75 76.2) (end 59.925 76.375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 47484446-e64c-4a82-88af-15de92cf6ad4))
  (segment (start 67.5875 61.05) (end 69.4 61.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 4e7a230a-c1a4-4455-81ee-277835acf4a2))
  (segment (start 87.5 76.25) (end 87.5 76.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 50a799a7-f8f3-4f13-9288-b10696e9a7da))
  (segment (start 69.4 61.05) (end 69.5 61.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp 51f5536d-48d2-4807-be44-93f427952b0e))
  (segment (start 59.715 76.165) (end 59.925 76.375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5206328f-de7d-41ba-bad8-f1768b7701cb))
  (segment (start 86.8 68.2) (end 86.95 68.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5641be26-f5e9-482f-8616-297f17f4eae2))
  (segment (start 92.5375 57.55) (end 92.5375 58.9125) (width 0.25) (layer "F.Cu") (net 10) (tstamp 59ee13a4-660e-47e2-a73a-01cfe11439e9))
  (segment (start 74.8 58.034315) (end 74.8 57.8) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5a319d05-1a85-43fe-a179-ebcee7212a03))
  (segment (start 95.210392 58.282011) (end 95.210392 58.410392) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5cc7655c-62f2-43d2-a7a5-eaa4635dada8))
  (segment (start 60.455 70.975) (end 60.455 71.055) (width 0.25) (layer "F.Cu") (net 10) (tstamp 665081dc-8354-4d41-8855-bde8901aee4c))
  (segment (start 97.210392 58.282011) (end 97.210392 58.389608) (width 0.25) (layer "F.Cu") (net 10) (tstamp 6a1ae8ee-dea6-4015-b83e-baf8fcdfaf0f))
  (segment (start 97.210392 59.389608) (end 97.2 59.4) (width 0.25) (layer "F.Cu") (net 10) (tstamp 6a25c4e1-7129-430c-892b-6eecb6ffdb47))
  (segment (start 53.323456 65.876544) (end 54.4 64.8) (width 0.4) (layer "F.Cu") (net 10) (tstamp 7043f61a-4f1e-4cab-9031-a6449e41a893))
  (segment (start 87.5 76.4) (end 87.7 76.6) (width 0.25) (layer "F.Cu") (net 10) (tstamp 71a9f036-1f13-462e-ac9e-81caaaa7f807))
  (segment (start 61.475 76.375) (end 62.725 76.375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 71aa3829-956e-4ff9-af3f-b06e50ab2b5a))
  (segment (start 55.65 64.25) (end 55.6 64.2) (width 0.25) (layer "F.Cu") (net 10) (tstamp 7ce4aab5-8271-4432-a4b1-bff168293b45))
  (segment (start 80 58.6) (end 80 56.6375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 7df9ce6f-7f38-4582-a049-7f92faf1abc9))
  (segment (start 75 57.6) (end 75 56.6375) (width 0.25) (layer "F.Cu") (net 10) (tstamp 80ace02d-cb21-4f08-bc25-572a9e56ff99))
  (segment (start 74.8 57.8) (end 75 57.6) (width 0.25) (layer "F.Cu") (net 10) (tstamp 82907d2e-4560-49c2-9cfc-01b127317195))
  (segment (start 69.7 73.2) (end 69.55 73.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp 8313e187-c805-4927-8002-313a51839243))
  (segment (start 59.2 73.685) (end 60.015 73.685) (width 0.25) (layer "F.Cu") (net 10) (tstamp 89fb4a63-a18d-4c7e-be12-f061ef4bf0c0))
  (segment (start 96.210392 58.282011) (end 96.210392 58.339608) (width 0.25) (layer "F.Cu") (net 10) (tstamp 8efe6411-1919-4082-b5b8-393585e068c8))
  (segment (start 87.7 77.2625) (end 87.7 76.6) (width 0.25) (layer "F.Cu") (net 10) (tstamp 9600911d-0df3-419b-8d4a-8d1432a7daf2))
  (segment (start 61.85 66.985) (end 62.935 66.985) (width 0.25) (layer "F.Cu") (net 10) (tstamp 97cc05bf-4ed5-449c-b0c8-131e5126a7ac))
  (segment (start 96.210392 58.282011) (end 96.210392 58.410392) (width 0.25) (layer "F.Cu") (net 10) (tstamp a08c061a-7f5b-4909-b673-0d0a59a012a3))
  (segment (start 87.3 62.6) (end 87.35 62.55) (width 0.25) (layer "F.Cu") (net 10) (tstamp a1701438-3c8b-4b49-8695-36ec7f9ae4d2))
  (segment (start 92.5375 58.9125) (end 92.5 58.95) (width 0.25) (layer "F.Cu") (net 10) (tstamp ac8576da-4e00-41a0-9609-eb655e96e10b))
  (segment (start 98.210392 59.439608) (end 98.2 59.45) (width 0.25) (layer "F.Cu") (net 10) (tstamp bab3431c-ede6-417b-8033-763748a11a9f))
  (segment (start 60.465 70.985) (end 60.455 70.975) (width 0.25) (layer "F.Cu") (net 10) (tstamp c482f4f0-b441-4301-a9f1-c7f9e511d699))
  (segment (start 61.85 70.985) (end 61.85 71.85) (width 0.25) (layer "F.Cu") (net 10) (tstamp c8b93f12-bc5c-4ce5-b954-377d903895f1))
  (segment (start 87.15 77.8125) (end 87 77.9625) (width 0.25) (layer "F.Cu") (net 10) (tstamp cd2580a0-9e4c-4895-a13c-3b2ee33bafc4))
  (segment (start 60.015 73.685) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp d554632b-6dd0-47f8-b59b-3ce25177ca3e))
  (segment (start 60.455 71.055) (end 61.55 72.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp d7df1f01-3f56-437b-a452-e88ad90a9805))
  (segment (start 53.323456 65.773456) (end 52.35 64.8) (width 0.4) (layer "F.Cu") (net 10) (tstamp d8d71ad3-6fd1-4a98-9c1f-70c4fbf3d1d1))
  (segment (start 98.210392 58.282011) (end 98.210392 58.389608) (width 0.25) (layer "F.Cu") (net 10) (tstamp d8f24303-7e52-49a9-9e82-8d60c3aaa009))
  (segment (start 79.95 58.65) (end 80 58.6) (width 0.25) (layer "F.Cu") (net 10) (tstamp dd3da890-32ef-4a5a-aea4-e5d2141f1ff1))
  (segment (start 59.925 76.375) (end 61.475 76.375) (width 0.25) (layer "F.Cu") (net 10) (tstamp dd5f7736-b8aa-44f2-a044-e514d63d48f3))
  (segment (start 53.323456 66.025966) (end 53.323456 64.760966) (width 0.4) (layer "F.Cu") (net 10) (tstamp de438bc3-2eba-4b9f-95e9-35ce5db157f6))
  (segment (start 69.55 73.05) (end 67.5875 73.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp e002a979-85bc-451a-a77b-29ce2a8f19f9))
  (segment (start 79.45 76) (end 79.5 76.05) (width 0.25) (layer "F.Cu") (net 10) (tstamp e1fe6230-75c5-4750-aaea-24a9b80589d8))
  (segment (start 74.05 76.1) (end 74 76.15) (width 0.25) (layer "F.Cu") (net 10) (tstamp f240e733-157e-4a15-812f-78f42d8a8322))
  (segment (start 110.23 57.65) (end 112.77 57.65) (width 0.5) (layer "F.Cu") (net 10) (tstamp f8a90052-1a8b-4ce5-a1fd-87db944dceac))
  (segment (start 74 76.15) (end 74 77.9625) (width 0.25) (layer "F.Cu") (net 10) (tstamp fc13962a-a464-4fa2-b9a6-4c26667104ee))
  (segment (start 97.210392 58.282011) (end 97.210392 58.460392) (width 0.25) (layer "F.Cu") (net 10) (tstamp fcb4f52a-a6cb-4ca0-970a-4c8a2c0f3942))
  (segment (start 56.965 64.25) (end 55.65 64.25) (width 0.25) (layer "F.Cu") (net 10) (tstamp fe1ad3bd-92cc-4e1c-8cc9-a77278095945))
  (via (at 53.323456 64.760966) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005e4ac354))
  (via (at 54.4 64.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 105d44ff-63b9-4299-9078-473af583971a))
  (via (at 96.2 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 1a7e7b16-fc7c-4e64-9ace-48cc78112437))
  (via (at 92.5 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 24fd922c-d488-4d61-b6dc-9d3e359ccc82))
  (via (at 69.5 61.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 2bbd6c26-4114-4518-8f4a-c6fdadc046b6))
  (via (at 62.75 76.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 2f5467a7-bd49-433c-92f2-60a842e66f7b))
  (via (at 86.8 68.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 48034820-9d25-4020-8e74-d44c1441e803))
  (via (at 55.6 64.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 4ef07d45-f940-4cb6-bb96-2ddec13fd099))
  (via (at 87.3 62.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 5c1d6842-15a5-4f73-b198-8836681840a1))
  (via (at 97.2 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 5f059fcf-8990-4db3-9058-7f232d9600e1))
  (via (at 95.15 59.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 7ac1ccc5-26c5-4b73-8425-7bbec927bf24))
  (via (at 61.55 72.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 8afe1dbf-1187-4362-8af8-a90ca839a6b3))
  (via (at 87.5 76.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 90d503cf-92b2-4120-a4b0-03a2eddde893))
  (via (at 98.2 59.45) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 96ee9b8e-4543-4639-b9ea-44b8baaaf94e))
  (via (at 79.95 58.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp a09cb1c4-cc63-49c7-a35f-4b80c3ba2217))
  (via (at 79.45 76) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp a4911204-1308-4d17-90a9-1ff5f9c57c9b))
  (via (at 74.05 76.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp b5cea0b5-192f-476b-a3c8-0c26e2231699))
  (via (at 52.35 64.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp b6924901-677d-424a-a3f4-52c8dd1fa5f5))
  (via (at 74.65 58.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp c38f28b6-5bd4-4cf9-b273-1e7b230f6b42))
  (via (at 69.7 73.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp d337c492-7429-4618-b378-df29f72737e3))
  (via (at 63 67.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6))
  (segment (start 108.37 58.515) (end 109.365 58.515) (width 0.25) (layer "B.Cu") (net 10) (tstamp 00000000-0000-0000-0000-0000620108cf))
  (segment (start 109.365 58.515) (end 110.23 57.65) (width 0.25) (layer "B.Cu") (net 10) (tstamp 00000000-0000-0000-0000-0000620108d2))
  (segment (start 79.465 74.7) (end 79.465 75.985) (width 0.25) (layer "B.Cu") (net 10) (tstamp 01c59306-91a3-452b-92b5-9af8f8f257d6))
  (segment (start 74.665 59.75) (end 74.665 58.765) (width 0.25) (layer "B.Cu") (net 10) (tstamp 188eabba-12a3-47b7-9be1-03f0c5a948eb))
  (segment (start 86.165 62.535) (end 87.3 62.535) (width 0.25) (layer "B.Cu") (net 10) (tstamp 2765a021-71f1-4136-b72b-81c2c6882946))
  (segment (start 87.135 75.885) (end 87.5 76.25) (width 0.25) (layer "B.Cu") (net 10) (tstamp 2ad4b4ba-3abd-4313-bed9-1edce936a95e))
  (segment (start 74.165 74.7) (end 74.165 75.985) (width 0.25) (layer "B.Cu") (net 10) (tstamp 524d7aa8-362f-459a-b2ae-4ca2a0b1612b))
  (segment (start 74.165 74.7) (end 74.165 71.45) (width 0.25) (layer "B.Cu") (net 10) (tstamp 78a228c9-bbf0-49cf-b917-2dec23b390df))
  (segment (start 87.135 75.1) (end 87.135 75.885) (width 0.25) (layer "B.Cu") (net 10) (tstamp 86143bb0-7899-4df8-b1df-baa3c0ac7889))
  (segment (start 74.165 75.985) (end 74.05 76.1) (width 0.25) (layer "B.Cu") (net 10) (tstamp 8fd0b33a-45bf-4216-9d7e-a62e1c071730))
  (segment (start 69.5 61.15) (end 70.637926 61.15) (width 0.25) (layer "B.Cu") (net 10) (tstamp 92574e8a-729f-48de-afcb-97b4f5e826f8))
  (segment (start 79.965 58.665) (end 79.95 58.65) (width 0.25) (layer "B.Cu") (net 10) (tstamp 93afd2e8-e16c-4e06-b872-cf0e624aee35))
  (segment (start 79.965 59.65) (end 79.965 58.665) (width 0.25) (layer "B.Cu") (net 10) (tstamp ab34b936-8ca5-4be1-8599-504cb86609fc))
  (segment (start 74.165 70.45) (end 74.165 71.45) (width 0.25) (layer "B.Cu") (net 10) (tstamp b83b087e-7ec9-44e7-a1c9-81d5d26bbf79))
  (segment (start 70.95 73.565) (end 70.065 73.565) (width 0.25) (layer "B.Cu") (net 10) (tstamp bc01f3e7-a131-4f66-8abc-cc13e855d5e5))
  (segment (start 85.5 68.215) (end 86.785 68.215) (width 0.25) (layer "B.Cu") (net 10) (tstamp be118b00-015b-445a-8fc5-7bf35350fda8))
  (segment (start 74.665 58.765) (end 74.65 58.75) (width 0.25) (layer "B.Cu") (net 10) (tstamp d5c86a84-6c8b-48b5-b583-2fe7052421ab))
  (segment (start 86.685 62.535) (end 86.7 62.55) (width 0.25) (layer "B.Cu") (net 10) (tstamp d70bfdec-de0f-45e5-9452-2cd5d12b83b9))
  (segment (start 86.785 68.215) (end 86.8 68.2) (width 0.25) (layer "B.Cu") (net 10) (tstamp e8312cc4-6502-4783-b578-55c01e0393af))
  (segment (start 79.465 75.985) (end 79.45 76) (width 0.25) (layer "B.Cu") (net 10) (tstamp ef3a2f4c-5879-4e98-ad30-6b8614410fba))
  (segment (start 70.065 73.565) (end 69.7 73.2) (width 0.25) (layer "B.Cu") (net 10) (tstamp fd34aa56-ded2-4e97-965a-a39457716f0c))
  (segment (start 70.637926 61.15) (end 70.697006 61.09092) (width 0.25) (layer "B.Cu") (net 10) (tstamp fe4068b9-89da-4c59-ba51-b5949772f5d8))
  (segment (start 54.9 60.7) (end 54 61.6) (width 0.25) (layer "F.Cu") (net 11) (tstamp 2f97629b-ca35-40e1-950a-976dc6d5099e))
  (segment (start 55.5125 60.7) (end 54.9 60.7) (width 0.25) (layer "F.Cu") (net 11) (tstamp 9471d016-a3eb-4002-a96a-cb5228af82b0))
  (via (at 57.15 56.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 08926936-9ea4-4894-afca-caca47f3c238))
  (via (at 55.9 56.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 21ca1c08-b8a3-4bdc-9356-70a4d86ee444))
  (via (at 55.9 56) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp a7c83b25-afbd-4974-8870-387db8f81a5c))
  (via (at 57.15 56) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp c7db4903-f95a-49f5-bcce-c52f0ca8defc))
  (via (at 54 61.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp f7240be6-efd8-42d4-8f21-54861f1de715))
  (segment (start 55.9 56) (end 55.9 56.85) (width 0.4) (layer "B.Cu") (net 11) (tstamp 2a4f1c24-6486-4fd8-8092-72bb07a81274))
  (segment (start 57.15 56.85) (end 57.15 56) (width 0.4) (layer "B.Cu") (net 11) (tstamp 2c10387c-3cac-4a7c-bbfb-95d69f41a890))
  (segment (start 54 58.75) (end 55.9 56.85) (width 0.25) (layer "B.Cu") (net 11) (tstamp b5b5f1dd-623a-471f-bd6f-a8a8993be2a7))
  (segment (start 54 61.6) (end 54 58.75) (width 0.25) (layer "B.Cu") (net 11) (tstamp b6503b25-13f0-40f0-acaa-4fa648dbee79))
  (segment (start 86.065685 67) (end 86.515685 66.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 009b0d62-e9ea-4825-9fdf-befd291c76ce))
  (segment (start 68.425 71.55) (end 67.5875 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 094dc71e-7ea9-4e30-8ba7-749216ec2a8b))
  (segment (start 65.95 72.12) (end 66.52 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 1d1a7683-c090-4798-9b40-7ed0d9f3ce3b))
  (segment (start 70.384315 71.65) (end 70.284315 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 28d267fd-6d61-43bb-9705-8d59d7a44e81))
  (segment (start 87.240692 57.70001) (end 87.8 57.140702) (width 0.25) (layer "F.Cu") (net 12) (tstamp 312474c5-a081-4cd1-b2e6-730f0718514a))
  (segment (start 66.52 71.55) (end 66.75 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 3d70e675-48ae-4edd-b95d-3ca51e634018))
  (segment (start 85.5 67) (end 86.065685 67) (width 0.25) (layer "F.Cu") (net 12) (tstamp 45836d49-cd5f-417d-b0f6-c8b43d196a36))
  (segment (start 65.8 58.95) (end 65.7 58.95) (width 0.25) (layer "F.Cu") (net 12) (tstamp 54d76293-1ce2-46f8-9be7-a3d7f9f28112))
  (segment (start 70.284315 71.55) (end 68.425 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 583b0bf3-0699-44db-b975-a241ad040fa4))
  (segment (start 65.779546 58.970454) (end 65.8 58.95) (width 0.25) (layer "F.Cu") (net 12) (tstamp 5a010660-4a0b-4680-b361-32d4c3b60537))
  (segment (start 86 56.6375) (end 86 57.475) (width 0.25) (layer "F.Cu") (net 12) (tstamp 61a18b62-4111-4a9d-8fca-04c4c6f90cc3))
  (segment (start 86.515685 66.55) (end 88.075 66.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp 62cbcc21-2cec-41ab-be06-499e1a78d7e7))
  (segment (start 88.2 56.3) (end 88.615 56.3) (width 0.25) (layer "F.Cu") (net 12) (tstamp 717b25a7-c9c2-4f6f-b744-a96113325c99))
  (segment (start 64.7 59.680342) (end 64.779546 59.759888) (width 0.25) (layer "F.Cu") (net 12) (tstamp 72f9157b-77da-4a6d-9880-0711b21f6e23))
  (segment (start 64.779546 59.759888) (end 64.779546 59.029546) (width 0.25) (layer "F.Cu") (net 12) (tstamp 771cb5c1-62ba-4cca-999e-cdcbe417213c))
  (segment (start 65.779546 59.759888) (end 65.779546 58.970454) (width 0.25) (layer "F.Cu") (net 12) (tstamp 81ab7ed7-7160-4650-b711-4daa2902dc8b))
  (segment (start 64.7 58.95) (end 64.8 58.95) (width 0.25) (layer "F.Cu") (net 12) (tstamp 830aee7f-dfce-42cd-85ef-6370f6dc02f5))
  (segment (start 76.5 74.7) (end 76.5 75.265685) (width 0.25) (layer "F.Cu") (net 12) (tstamp 868b5d0d-f911-4724-9580-d9e69eb9f709))
  (segment (start 63.779546 59.759888) (end 63.890112 59.759888) (width 0.25) (layer "F.Cu") (net 12) (tstamp 8e75264b-b45e-45ec-b230-7e1dce7d68b3))
  (segment (start 87.8 57) (end 87.8 56.7) (width 0.25) (layer "F.Cu") (net 12) (tstamp 9404ce4c-2ce6-4f88-8062-13577800d257))
  (segment (start 86.22501 57.70001) (end 87.240692 57.70001) (width 0.25) (layer "F.Cu") (net 12) (tstamp 97693043-81ba-44a2-b87b-aca6193e0970))
  (segment (start 86 57.475) (end 86.22501 57.70001) (width 0.25) (layer "F.Cu") (net 12) (tstamp a6dd3322-fcf5-4e4f-88bb-77a3d82a4d05))
  (segment (start 65.95 72.515) (end 65.95 72.12) (width 0.25) (layer "F.Cu") (net 12) (tstamp b5ffe018-0d06-4a1b-95ee-b5763a35798d))
  (segment (start 64.779546 59.759888) (end 64.990112 59.759888) (width 0.25) (layer "F.Cu") (net 12) (tstamp b7dfd91c-6180-48d0-832a-f6a5a032a686))
  (segment (start 88.075 66.55) (end 88.9125 66.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp c2211bf7-6ed0-4800-9f21-d6a078bedba2))
  (segment (start 87.8 57.140702) (end 87.8 56.865685) (width 0.25) (layer "F.Cu") (net 12) (tstamp ce55d4e5-cb2b-4927-9979-4a7fc840f632))
  (segment (start 65.779546 59.759888) (end 65.509888 59.759888) (width 0.25) (layer "F.Cu") (net 12) (tstamp dbbbcbf5-ed09-4c20-902c-70f108158aba))
  (segment (start 66.75 71.55) (end 67.5875 71.55) (width 0.25) (layer "F.Cu") (net 12) (tstamp ed247857-b2a3-4b23-90ad-758c01ae5e8e))
  (segment (start 64.779546 59.029546) (end 64.7 58.95) (width 0.25) (layer "F.Cu") (net 12) (tstamp ee9a2826-2513-480e-a552-3d07af5bf8a5))
  (segment (start 87.8 56.7) (end 88.2 56.3) (width 0.25) (layer "F.Cu") (net 12) (tstamp f2c43eeb-76da-49f4-b8e6-cd74ebb3190b))
  (segment (start 76.5 75.265685) (end 76.5 77.9625) (width 0.25) (layer "F.Cu") (net 12) (tstamp f7758f2a-e5c9-405c-960a-353b36eaf72d))
  (segment (start 61.35 58.565) (end 61.35 58.55) (width 0.4) (layer "F.Cu") (net 12) (tstamp fab985e9-e679-4dd8-a59c-e3195d08506a))
  (segment (start 70.95 71.65) (end 70.384315 71.65) (width 0.25) (layer "F.Cu") (net 12) (tstamp ffb86135-b43f-4a42-9aa6-73aa7ba972a9))
  (via (at 85.5 67) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 3273ec61-4a33-41c2-82bf-cde7c8587c1b))
  (via (at 65.8 57.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 3d2a15cb-c492-4d9a-b1dd-7d5f099d2d31))
  (via (at 76.5 74.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 6d1e2df9-cc89-4e18-a541-699f0d20dd45))
  (via (at 65.8 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 848901d5-fdee-4920-a04d-fbc03c912e79))
  (via (at 64.7 58.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 926b329f-cd0d-410a-bc4a-e36446f8965a))
  (via (at 87.8 57) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp f321809c-ab7a-4356-9b11-4c0d46c421ba))
  (via (at 64.7 57.95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp f5a3f95b-1a53-41b4-b208-bf168c9d9c6d))
  (via (at 70.95 71.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp fc12372f-6e31-40f9-8043-b00b861f0171))
  (segment (start 87.8 57) (end 85.23 59.57) (width 1) (layer "In2.Cu") (net 12) (tstamp f87a4771-a0a7-489f-9d85-4574dbea71cc))
  (segment (start 70.95 70.535) (end 70.95 71.45) (width 0.25) (layer "B.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005e48506a))
  (segment (start 70.95 71.45) (end 70.95 71.65) (width 0.25) (layer "B.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005e485070))
  (segment (start 85.5 65.885) (end 85.5 67) (width 0.25) (layer "B.Cu") (net 12) (tstamp 7247fe96-7885-4063-8282-ea2fd2b28b0d))
  (segment (start 77.515 74.7) (end 76.5 74.7) (width 0.25) (layer "B.Cu") (net 12) (tstamp f2044410-03ac-4994-9652-9e5f480320f0))
  (segment (start 64.85 77.485) (end 65.85 77.485) (width 0.25) (layer "F.Cu") (net 13) (tstamp 25625d99-d45f-4b2f-9e62-009a122611f4))
  (segment (start 67.5875 76.05) (end 66.1525 77.485) (width 0.25) (layer "F.Cu") (net 13) (tstamp 2edc487e-09a5-4e4e-9675-a7b323f56380))
  (segment (start 66.52499 74.45499) (end 66.52499 75.82499) (width 0.25) (layer "F.Cu") (net 13) (tstamp 44e77d57-d16f-4723-a95f-1ac45276c458))
  (segment (start 66.52499 75.82499) (end 66.75 76.05) (width 0.25) (layer "F.Cu") (net 13) (tstamp 5626e5e1-59f4-4773-828e-16057ddc3518))
  (segment (start 66.75 76.05) (end 67.5875 76.05) (width 0.25) (layer "F.Cu") (net 13) (tstamp 7700fef1-de5b-4197-be2d-18385e1e18f9))
  (segment (start 65.95 73.88) (end 66.52499 74.45499) (width 0.25) (layer "F.Cu") (net 13) (tstamp bcfbc157-43ce-49f7-bd18-6a9e2f2f30a3))
  (segment (start 66.1525 77.485) (end 65.85 77.485) (width 0.25) (layer "F.Cu") (net 13) (tstamp d23840a6-3c61-45ca-968a-bc57332fd7a4))
  (segment (start 65.95 73.485) (end 65.95 73.88) (width 0.25) (layer "F.Cu") (net 13) (tstamp f931f973-5615-451c-bb04-9a02aede6e6f))
  (segment (start 99.35 66.35) (end 100.25 65.45) (width 0.25) (layer "F.Cu") (net 14) (tstamp 02491520-945f-40c4-9160-4e5db9ac115d))
  (segment (start 88.9125 65.05) (end 97.15 65.05) (width 0.25) (layer "F.Cu") (net 14) (tstamp 100847e3-630c-4c13-ba45-180e92370805))
  (segment (start 100.73 63.515) (end 101.15 63.515) (width 0.25) (layer "F.Cu") (net 14) (tstamp 4c6a1dad-7acf-4a52-99b0-316025d1ab04))
  (segment (start 98.45 66.35) (end 99.35 66.35) (width 0.25) (layer "F.Cu") (net 14) (tstamp 64269ac3-771b-4c0d-91e0-eafc3dc4a07f))
  (segment (start 100.25 63.995) (end 100.73 63.515) (width 0.25) (layer "F.Cu") (net 14) (tstamp 909d0bdd-8a15-40f2-9dfd-be4a5d2d6b25))
  (segment (start 97.15 65.05) (end 98.45 66.35) (width 0.25) (layer "F.Cu") (net 14) (tstamp a43f2e19-4e11-4e86-a12a-58a691d6df28))
  (segment (start 100.25 65.45) (end 100.25 63.995) (width 0.25) (layer "F.Cu") (net 14) (tstamp a46a2b22-69cf-45fb-b1d2-32ac89bbd3c8))
  (segment (start 102.138232 61.515) (end 101.57 61.515) (width 0.25) (layer "F.Cu") (net 15) (tstamp 3e011a46-81bd-4ecd-b93e-57dffb1143e5))
  (segment (start 104.15 63.526768) (end 102.138232 61.515) (width 0.25) (layer "F.Cu") (net 15) (tstamp 4198eb99-d244-457e-8768-395280df1a66))
  (segment (start 104.15 67.265949) (end 104.15 63.526768) (width 0.25) (layer "F.Cu") (net 15) (tstamp 586ec748-563a-478a-82db-706fb951336a))
  (segment (start 101.57 61.515) (end 101.15 61.515) (width 0.25) (layer "F.Cu") (net 15) (tstamp b1240f00-ec43-4c0b-9a41-43264db8a893))
  (segment (start 102.14399 68.851959) (end 102.56399 68.851959) (width 0.25) (layer "F.Cu") (net 15) (tstamp b5d84bc0-4d9a-4d1d-a476-5c6b51309fca))
  (segment (start 102.56399 68.851959) (end 104.15 67.265949) (width 0.25) (layer "F.Cu") (net 15) (tstamp fe9bdc33-eab1-4bdc-9603-57decb38d2a2))
  (segment (start 103.6 67.1) (end 103.6 66.7) (width 0.25) (layer "F.Cu") (net 16) (tstamp 056788ec-4ecf-4826-b996-bd884a6442a0))
  (segment (start 101.132852 68.441589) (end 101.624441 67.95) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4b042b6c-c042-4cf1-ba6e-bd77c51dbedb))
  (segment (start 102.801999 66.525001) (end 102.35 66.073002) (width 0.25) (layer "F.Cu") (net 16) (tstamp 53ae21b8-f187-4817-8c27-1f06278d249b))
  (segment (start 102.75 67.95) (end 103.6 67.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 792ace59-9f73-49b7-92df-01568ab2b00b))
  (segment (start 102.35 66.073002) (end 102.35 63.895) (width 0.25) (layer "F.Cu") (net 16) (tstamp 83d85a81-e014-4ee9-9433-a9a045c80893))
  (segment (start 103.6 66.7) (end 103.425001 66.525001) (width 0.25) (layer "F.Cu") (net 16) (tstamp 900cb6c8-1d05-4537-a4f0-9a7cc1a2ea1c))
  (segment (start 101.132852 68.836589) (end 101.132852 68.441589) (width 0.25) (layer "F.Cu") (net 16) (tstamp 90f2ca05-313f-4af8-87b1-a8109224a221))
  (segment (start 101.624441 67.95) (end 102.75 67.95) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9e5fe65d-f158-4eb5-af93-2b5d0b9a0d55))
  (segment (start 102.73 63.515) (end 103.15 63.515) (width 0.25) (layer "F.Cu") (net 16) (tstamp a86cc026-cc17-4a81-85bf-4c26f61b9f32))
  (segment (start 103.425001 66.525001) (end 102.801999 66.525001) (width 0.25) (layer "F.Cu") (net 16) (tstamp c0c62e93-8e84-4f2b-96ae-e90b55e0550a))
  (segment (start 102.35 63.895) (end 102.73 63.515) (width 0.25) (layer "F.Cu") (net 16) (tstamp c1c05ce7-1c25-4382-b3b9-d3ec327783d4))
  (segment (start 98.815832 63.849168) (end 99.15 63.515) (width 0.25) (layer "F.Cu") (net 17) (tstamp 278deae2-fb37-4957-b2cb-afac30cacb12))
  (segment (start 88.9125 64.55) (end 98.096768 64.55) (width 0.25) (layer "F.Cu") (net 17) (tstamp b4fbe1fb-a9a3-4020-9a82-d3fa1900cd85))
  (segment (start 98.7976 63.849168) (end 98.815832 63.849168) (width 0.25) (layer "F.Cu") (net 17) (tstamp b500fd76-a613-4f44-aac4-99213e86ff44))
  (segment (start 98.096768 64.55) (end 98.7976 63.849168) (width 0.25) (layer "F.Cu") (net 17) (tstamp bc05cdd5-f72f-4c21-b397-0fa889871114))
  (segment (start 101.15 67.769441) (end 101.15 66.485) (width 0.25) (layer "F.Cu") (net 18) (tstamp 31070a40-077c-4123-96dd-e39f8a0007ce))
  (segment (start 100.082852 68.836589) (end 101.15 67.769441) (width 0.25) (layer "F.Cu") (net 18) (tstamp 70186eba-dcad-4878-bf16-887f6eee49df))
  (segment (start 101.15 65.515) (end 100.815832 65.849168) (width 0.25) (layer "F.Cu") (net 19) (tstamp 19a5aacd-255a-4bf3-89c1-efd2ab61016c))
  (segment (start 88.9125 64.05) (end 90.800003 64.05) (width 0.25) (layer "F.Cu") (net 19) (tstamp 27e3c71f-5a63-4710-8adf-b600b805ce02))
  (segment (start 99.5364 66.80001) (end 98.20001 66.80001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0))
  (segment (start 92.040675 65.50001) (end 96.90001 65.50001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 4b534cd1-c414-4029-9164-e46766faf60e))
  (segment (start 100.487242 65.849168) (end 99.5364 66.80001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 5fba7ff8-02f1-4ac0-93c4-5bd7becbcf63))
  (segment (start 91.2 65.775) (end 91.765685 65.775) (width 0.25) (layer "F.Cu") (net 19) (tstamp 60960af7-b938-44a8-82b5-e9c36f2e6817))
  (segment (start 98.20001 66.80001) (end 96.90001 65.50001) (width 0.25) (layer "F.Cu") (net 19) (tstamp 9c2a29da-c83f-4ec8-bbcf-9d775812af04))
  (segment (start 100.815832 65.849168) (end 100.487242 65.849168) (width 0.25) (layer "F.Cu") (net 19) (tstamp a25ec672-f935-4d0c-ae67-7c3ebe078d85))
  (segment (start 91.765685 65.775) (end 92.040675 65.50001) (width 0.25) (layer "F.Cu") (net 19) (tstamp d33c6077-a8ec-48ca-b0e0-97f3539ef54c))
  (segment (start 90.800003 64.05) (end 91.05 63.800003) (width 0.25) (layer "F.Cu") (net 19) (tstamp f8e92727-5789-4ef6-9dc3-be888ad72e45))
  (via (at 91.2 65.775) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 19) (tstamp 4be2b882-65e4-4552-9482-9d622928de2f))
  (via (at 91.05 63.800003) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 19) (tstamp de588ed9-a530-46f0-aa03-e0307ff72286))
  (segment (start 91.05 65.625) (end 91.2 65.775) (width 0.25) (layer "B.Cu") (net 19) (tstamp 8fbab3d0-cb5e-47c7-8764-6fa3c0e4e5f7))
  (segment (start 91.05 63.800003) (end 91.05 65.625) (width 0.25) (layer "B.Cu") (net 19) (tstamp ce3f834f-337d-4957-8d02-e900d7024614))
  (segment (start 88.9125 63.55) (end 89.918225 63.55) (width 0.25) (layer "F.Cu") (net 20) (tstamp 2ba21493-929b-4122-ac0f-7aeaf8602cef))
  (segment (start 103.15 65.8) (end 103.15 64.485) (width 0.25) (layer "F.Cu") (net 20) (tstamp 6e508bf2-c65e-4107-867d-a3cf9a86c69e))
  (segment (start 90.668225 62.8) (end 91.05 62.8) (width 0.25) (layer "F.Cu") (net 20) (tstamp 73a6ec8e-8641-4014-be28-4611d398be32))
  (segment (start 89.918225 63.55) (end 90.668225 62.8) (width 0.25) (layer "F.Cu") (net 20) (tstamp 8aa8d47e-f495-4049-8ac9-7f2ac3205412))
  (via (at 103.15 65.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 20) (tstamp 3388a811-b444-4ecc-a564-b22a1b731ab4))
  (via (at 91.05 62.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 20) (tstamp 47957453-fce7-4d98-833c-e34bb8a852a5))
  (segment (start 103.15 63.6) (end 103.15 65.8) (width 0.25) (layer "B.Cu") (net 20) (tstamp 846ce0b5-f99e-4df4-8803-62f82ae6f3e3))
  (segment (start 91.05 62.8) (end 102.35 62.8) (width 0.25) (layer "B.Cu") (net 20) (tstamp e8e598ff-c991-433d-8dd6-c9fce2fe1eaa))
  (segment (start 102.35 62.8) (end 103.15 63.6) (width 0.25) (layer "B.Cu") (net 20) (tstamp fb126c26-740a-4781-a5dd-5ef5455e4878))
  (segment (start 99.174847 65.499847) (end 99.174847 64.509847) (width 0.25) (layer "F.Cu") (net 21) (tstamp 02289c61-13df-495e-a809-03e3a71bb201))
  (segment (start 99.032852 68.567148) (end 100.1 67.5) (width 0.25) (layer "F.Cu") (net 21) (tstamp 5160b3d5-0622-412f-84ed-9900be82a5a6))
  (segment (start 99.174847 64.509847) (end 99.15 64.485) (width 0.25) (layer "F.Cu") (net 21) (tstamp 8202d57b-d5d2-4a80-8c03-3c6bdbbd1ddf))
  (segment (start 99.032852 68.836589) (end 99.032852 68.567148) (width 0.25) (layer "F.Cu") (net 21) (tstamp af7ed34f-31b5-4744-97e9-29e5f4d85343))
  (via (at 100.1 67.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 21) (tstamp 052acc87-8ff9-4162-8f55-f7121d221d0a))
  (via (at 99.174847 65.499847) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 21) (tstamp cfcae4a3-5d05-48fe-9a5f-9dcd4da4bd65))
  (segment (start 100.1 66.425) (end 99.174847 65.499847) (width 0.25) (layer "B.Cu") (net 21) (tstamp 2cb05d43-df82-498c-aae1-4b1a0a350f82))
  (segment (start 100.1 67.5) (end 100.1 66.425) (width 0.25) (layer "B.Cu") (net 21) (tstamp abe3c03e-744a-4406-8e50-6a10745f0c43))
  (segment (start 101.79501 65.13001) (end 101.484168 64.819168) (width 0.25) (layer "F.Cu") (net 22) (tstamp 617498ce-8469-4f4b-9f2b-09a2437561eb))
  (segment (start 97.982852 68.836589) (end 97.982852 68.267148) (width 0.25) (layer "F.Cu") (net 22) (tstamp 6999550c-f78a-4aae-9243-1b3881f5bb3b))
  (segment (start 102.15 66.584315) (end 101.79501 66.229325) (width 0.25) (layer "F.Cu") (net 22) (tstamp 7e90deb5-aef9-4d2b-a440-4cb0dbfaaa93))
  (segment (start 101.79501 66.229325) (end 101.79501 65.13001) (width 0.25) (layer "F.Cu") (net 22) (tstamp 87a32952-c8e5-40ba-af1d-1a8829a6c906))
  (segment (start 97.982852 68.267148) (end 98.65 67.6) (width 0.25) (layer "F.Cu") (net 22) (tstamp a2a33a3d-c501-4e33-b67b-7d07ef8aa4a7))
  (segment (start 102.15 67.15) (end 102.15 66.584315) (width 0.25) (layer "F.Cu") (net 22) (tstamp a8a389df-8d18-4e17-a74f-f60d5d77371e))
  (segment (start 101.484168 64.819168) (end 101.15 64.485) (width 0.25) (layer "F.Cu") (net 22) (tstamp faa605d9-8c1c-4d31-b7c1-3dc31a22eb34))
  (via (at 98.65 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 22) (tstamp 44a8a96b-3053-4222-9241-aa484f5ebe13))
  (via (at 102.15 67.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 22) (tstamp ebadfd51-5a1d-4821-b341-8a1acb4abb01))
  (segment (start 98.65 67.6) (end 99.049999 67.999999) (width 0.25) (layer "B.Cu") (net 22) (tstamp 2f4c659c-2ccb-4fb1-808e-7868af588a89))
  (segment (start 99.049999 67.999999) (end 99.526997 67.999999) (width 0.25) (layer "B.Cu") (net 22) (tstamp 37f8ba3f-cca4-4b16-b699-07a704844fc9))
  (segment (start 99.776998 68.25) (end 101.05 68.25) (width 0.25) (layer "B.Cu") (net 22) (tstamp e1c71a89-4e45-4a56-a6ef-342af5f92d5c))
  (segment (start 101.05 68.25) (end 102.15 67.15) (width 0.25) (layer "B.Cu") (net 22) (tstamp e20929e2-2c15-4a75-b1ed-9caa9bd27df7))
  (segment (start 99.526997 67.999999) (end 99.776998 68.25) (width 0.25) (layer "B.Cu") (net 22) (tstamp f6a5cab3-78e5-4acf-8c67-f401df2846d0))
  (segment (start 90.75001 62.05001) (end 100.696778 62.05001) (width 0.25) (layer "F.Cu") (net 23) (tstamp 0b43a8fb-b3d3-4444-a4b0-cf952c07dcfe))
  (segment (start 100.7976 62.150832) (end 100.815832 62.150832) (width 0.25) (layer "F.Cu") (net 23) (tstamp 1020b588-7eb0-4b70-bbff-c77a867c3142))
  (segment (start 90.75 62.05) (end 90.75001 62.05001) (width 0.25) (layer "F.Cu") (net 23) (tstamp 6df433d7-73cd-4877-8d2e-047853b9077c))
  (segment (start 88.9125 63.05) (end 89.75 63.05) (width 0.25) (layer "F.Cu") (net 23) (tstamp aa0e7fe7-e9c2-477f-bcb2-53a1ebd9e3a6))
  (segment (start 100.696778 62.05001) (end 100.7976 62.150832) (width 0.25) (layer "F.Cu") (net 23) (tstamp d5b0938b-9efb-4b58-8ac4-d92da9ed2e30))
  (segment (start 89.75 63.05) (end 90.75 62.05) (width 0.25) (layer "F.Cu") (net 23) (tstamp fd146ca2-8fb8-4c71-9277-84f69bc5d3fc))
  (segment (start 100.815832 62.150832) (end 101.15 62.485) (width 0.25) (layer "F.Cu") (net 23) (tstamp fe431a80-868e-482d-aa91-c96eb8387d6a))
  (segment (start 107.94506 73.55) (end 108.17006 73.775) (width 0.25) (layer "F.Cu") (net 24) (tstamp 36210d52-4f9a-42bc-a022-019a63c67fc2))
  (segment (start 102.2 73.55) (end 107.08 73.55) (width 0.25) (layer "F.Cu") (net 24) (tstamp 3e147ce1-21a6-4e77-a3db-fd00d575cd22))
  (segment (start 88.9125 73.55) (end 102.2 73.55) (width 0.25) (layer "F.Cu") (net 24) (tstamp 5bb32dcb-8a97-4374-8a16-bc17822d4db3))
  (segment (start 107.08 73.55) (end 107.94506 73.55) (width 0.25) (layer "F.Cu") (net 24) (tstamp 67d6d490-a9a4-4ec7-8744-7c7abc821282))
  (via (at 108.17006 73.775) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 24) (tstamp 1c92f382-4ec3-478f-a1ca-afadd3087787))
  (segment (start 108.17006 73.775) (end 109.670061 72.274999) (width 0.25) (layer "B.Cu") (net 24) (tstamp 4648968b-aa58-4f57-8f45-54b088364670))
  (segment (start 112.77 71.45) (end 112.77 70.35) (width 0.25) (layer "B.Cu") (net 24) (tstamp a7cad282-51c3-4f24-be5e-311c2c5e959b))
  (segment (start 111.945001 72.274999) (end 112.77 71.45) (width 0.25) (layer "B.Cu") (net 24) (tstamp c860c4e9-3ddd-4065-857c-b9aedc01e6ad))
  (segment (start 109.670061 72.274999) (end 111.945001 72.274999) (width 0.25) (layer "B.Cu") (net 24) (tstamp ed1f5df2-cfb6-4083-a9e5-5d196546ef9b))
  (segment (start 111.594999 70.724003) (end 111.594999 68.985001) (width 0.25) (layer "F.Cu") (net 25) (tstamp 7a6d9a4e-fe6a-4427-9f0c-a10fd3ceb923))
  (segment (start 109.269002 73.05) (end 111.594999 70.724003) (width 0.25) (layer "F.Cu") (net 25) (tstamp b31ebd25-cf4c-4c3e-b83d-0ec793b65cd9))
  (segment (start 88.9125 73.05) (end 109.269002 73.05) (width 0.25) (layer "F.Cu") (net 25) (tstamp b8382866-f10b-4adc-84fc-f6e5dd44681b))
  (segment (start 111.594999 68.985001) (end 111.920001 68.659999) (width 0.25) (layer "F.Cu") (net 25) (tstamp d1422f38-9fce-4f5e-878a-341530beaf9c))
  (segment (start 111.920001 68.659999) (end 112.77 67.81) (width 0.25) (layer "F.Cu") (net 25) (tstamp d91b4df3-08ca-4c95-92de-3004566cf2e7))
  (segment (start 92.95 72.55) (end 93.2 72.3) (width 0.25) (layer "F.Cu") (net 26) (tstamp 058e77a4-10af-4bc8-a984-5984d3bbee4c))
  (segment (start 88.9125 72.55) (end 92.95 72.55) (width 0.25) (layer "F.Cu") (net 26) (tstamp 9bac5a37-2a55-41dd-96ea-ec02b69e3ef4))
  (via (at 93.2 72.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 26) (tstamp 18e95a1d-9d1d-4b93-8e4c-2d03c344acc0))
  (segment (start 109.02 70.95) (end 109.02 69.83641) (width 0.25) (layer "B.Cu") (net 26) (tstamp 0bbd2e43-3eb0-4216-861b-a58366dbe43d))
  (segment (start 109.871409 68.985001) (end 110.794001 68.985001) (width 0.25) (layer "B.Cu") (net 26) (tstamp 1eca5f72-2356-4c55-919d-595727faf3b9))
  (segment (start 107.67 72.3) (end 109.02 70.95) (width 0.25) (layer "B.Cu") (net 26) (tstamp 44e993be-f2df-4e61-a598-dfd6e106a208))
  (segment (start 93.2 72.3) (end 107.67 72.3) (width 0.25) (layer "B.Cu") (net 26) (tstamp 45b7fe01-a2fa-40c2-a3a2-4a9ae7c34dba))
  (segment (start 111.594999 66.445001) (end 111.920001 66.119999) (width 0.25) (layer "B.Cu") (net 26) (tstamp 4c4b4317-29d0-438a-b331-525ede18773a))
  (segment (start 110.794001 68.985001) (end 111.594999 68.184003) (width 0.25) (layer "B.Cu") (net 26) (tstamp 55fa5fa0-9426-4801-b40c-682e71189d8a))
  (segment (start 109.02 69.83641) (end 109.871409 68.985001) (width 0.25) (layer "B.Cu") (net 26) (tstamp 5dffd1d6-faf9-418e-b9a0-84fb6b6b4454))
  (segment (start 111.594999 68.184003) (end 111.594999 66.445001) (width 0.25) (layer "B.Cu") (net 26) (tstamp 6239967a-77bd-4ec9-89cd-e04efd8dbe26))
  (segment (start 111.920001 66.119999) (end 112.77 65.27) (width 0.25) (layer "B.Cu") (net 26) (tstamp 83d9db3e-661a-47bf-b26c-99313ad8bac9))
  (segment (start 88.9125 72.05) (end 92.036753 72.05) (width 0.25) (layer "F.Cu") (net 27) (tstamp 29ec1a54-dea0-4d1a-a3dc-a7441a09bb9e))
  (segment (start 92.036753 72.05) (end 92.467205 71.619548) (width 0.25) (layer "F.Cu") (net 27) (tstamp 5778dc8c-60fe-435e-b75a-362eae1b81ab))
  (via (at 92.467205 71.619548) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 27) (tstamp 020b7e1f-8bb0-4882-91d4-7894bf18db84))
  (segment (start 108.56999 69.65001) (end 108.92 69.3) (width 0.25) (layer "B.Cu") (net 27) (tstamp 0ab1512b-eb91-4574-b11f-326e0ff10082))
  (segment (start 108.92 67.380998) (end 109.855997 66.445001) (width 0.25) (layer "B.Cu") (net 27) (tstamp 18208121-3872-4be3-a687-40854be3e1c8))
  (segment (start 110.958589 66.445001) (end 111.594999 65.808591) (width 0.25) (layer "B.Cu") (net 27) (tstamp 2cd2fee2-51b2-4fcd-8c94-c435e6791358))
  (segment (start 107.47 71.85) (end 108.56999 70.75001) (width 0.25) (layer "B.Cu") (net 27) (tstamp 3768cce7-1e64-480e-bb38-0c6794a852ac))
  (segment (start 111.594999 65.808591) (end 111.594999 63.905001) (width 0.25) (layer "B.Cu") (net 27) (tstamp 3d213c37-de80-490e-9f45-2814d3fc958b))
  (segment (start 109.855997 66.445001) (end 110.958589 66.445001) (width 0.25) (layer "B.Cu") (net 27) (tstamp 84d5cf13-52aa-4648-82e7-8be6e886a6b2))
  (segment (start 92.467205 71.619548) (end 92.867204 71.219549) (width 0.25) (layer "B.Cu") (net 27) (tstamp 9a458d6a-a84c-4faf-913e-90bab231d3f8))
  (segment (start 93.192551 71.219549) (end 93.823002 71.85) (width 0.25) (layer "B.Cu") (net 27) (tstamp a1d977e9-aa2c-4b7a-b2e3-8ff3b816e1f2))
  (segment (start 111.920001 63.579999) (end 112.77 62.73) (width 0.25) (layer "B.Cu") (net 27) (tstamp a2a4b1ad-c51a-492d-9e99-410eec4f55a3))
  (segment (start 92.867204 71.219549) (end 93.192551 71.219549) (width 0.25) (layer "B.Cu") (net 27) (tstamp a4a80e68-9a9c-4dac-84a7-a9f3c47a0961))
  (segment (start 111.594999 63.905001) (end 111.920001 63.579999) (width 0.25) (layer "B.Cu") (net 27) (tstamp b9f8b708-1745-43ec-9646-59495cbc6e07))
  (segment (start 108.56999 70.75001) (end 108.56999 69.65001) (width 0.25) (layer "B.Cu") (net 27) (tstamp c202ddee-78ab-4ebb-beca-559aaf118430))
  (segment (start 108.92 69.3) (end 108.92 67.380998) (width 0.25) (layer "B.Cu") (net 27) (tstamp de2abbd8-9b48-47ba-b77e-4c65ca048af6))
  (segment (start 93.823002 71.85) (end 107.47 71.85) (width 0.25) (layer "B.Cu") (net 27) (tstamp e5889358-36b5-4652-9d71-4d4aa652a144))
  (segment (start 109.07 72.6) (end 94.55 72.6) (width 0.25) (layer "F.Cu") (net 28) (tstamp 0e416ef5-3e03-4fa4-b2a6-3ab634a5ee03))
  (segment (start 110.23 71.452592) (end 110.217408 71.452592) (width 0.25) (layer "F.Cu") (net 28) (tstamp 3dfbccca-f469-4a6f-a8bd-5f55435b5cfa))
  (segment (start 110.217408 71.452592) (end 109.07 72.6) (width 0.25) (layer "F.Cu") (net 28) (tstamp 751752b1-1f0f-490c-ba43-2d34c357b41e))
  (segment (start 110.23 70.35) (end 110.23 71.452592) (width 0.25) (layer "F.Cu") (net 28) (tstamp a353a360-a1da-42d3-a5f2-38aafc184a50))
  (segment (start 94.55 72.6) (end 91 69.05) (width 0.25) (layer "F.Cu") (net 28) (tstamp d3dd0ba2-2496-4e95-8d54-12ee57bcbce2))
  (segment (start 91 69.05) (end 88.9125 69.05) (width 0.25) (layer "F.Cu") (net 28) (tstamp e463ba2a-1cbc-4995-82d8-59710b3fcd2f))
  (segment (start 89.79999 68.59999) (end 91.19999 68.59999) (width 0.25) (layer "F.Cu") (net 29) (tstamp 073c8287-235c-4712-a9a0-60a07a1119d5))
  (segment (start 88.9125 68.55) (end 89.75 68.55) (width 0.25) (layer "F.Cu") (net 29) (tstamp 19264aae-fe9e-4afc-84ac-56ec33a3b20d))
  (segment (start 93.4 70.81359) (end 94.73641 72.15) (width 0.25) (layer "F.Cu") (net 29) (tstamp 1a734ace-0cd0-489a-9380-915322ff12bd))
  (segment (start 105.89 72.15) (end 110.23 67.81) (width 0.25) (layer "F.Cu") (net 29) (tstamp 20e1c48c-ae14-4a88-835e-87633cbb6a1c))
  (segment (start 93.4 70.8) (end 93.4 70.81359) (width 0.25) (layer "F.Cu") (net 29) (tstamp 4d6dfe4f-0070-449e-bb5c-a3b1d4b26ba7))
  (segment (start 89.75 68.55) (end 89.79999 68.59999) (width 0.25) (layer "F.Cu") (net 29) (tstamp 7e232027-e1fd-4d55-a751-dd67130d7d22))
  (segment (start 91.19999 68.59999) (end 93.4 70.8) (width 0.25) (layer "F.Cu") (net 29) (tstamp c11e04e4-f63f-46b9-9a9c-9c7df49e614a))
  (segment (start 94.73641 72.15) (end 105.89 72.15) (width 0.25) (layer "F.Cu") (net 29) (tstamp ed9596e5-f4f2-4fc2-bb34-16ad21b3b120))
  (segment (start 109.02 67.280998) (end 109.02 68.3) (width 0.25) (layer "F.Cu") (net 30) (tstamp 08ac4c42-16f0-4513-b91e-bf0b3a111257))
  (segment (start 109.380001 66.119999) (end 109.380001 66.920997) (width 0.25) (layer "F.Cu") (net 30) (tstamp 09ab0b5c-3dee-42c8-b9e5-de0673874ccd))
  (segment (start 90.78641 67.55) (end 94.9364 71.69999) (width 0.25) (layer "F.Cu") (net 30) (tstamp 2b7c4f37-42c0-4571-a44b-b808484d3d74))
  (segment (start 110.23 65.27) (end 109.380001 66.119999) (width 0.25) (layer "F.Cu") (net 30) (tstamp 35431843-170f-401f-88d7-da91172bed86))
  (segment (start 94.9364 71.69999) (end 105.62001 71.69999) (width 0.25) (layer "F.Cu") (net 30) (tstamp 4c717b47-484c-4d70-8fcd-83c406ff2d17))
  (segment (start 109.380001 66.920997) (end 109.02 67.280998) (width 0.25) (layer "F.Cu") (net 30) (tstamp 6fddc16f-ccc1-4ade-884c-d6efda461da8))
  (segment (start 88.9125 67.55) (end 90.78641 67.55) (width 0.25) (layer "F.Cu") (net 30) (tstamp 85d211d4-76e7-4e49-a9c8-2e1cc8ab5805))
  (segment (start 109.02 68.3) (end 105.62001 71.69999) (width 0.25) (layer "F.Cu") (net 30) (tstamp e0781b80-6f1b-4d08-b53f-b7d3f582e2ea))
  (segment (start 95.07282 71.2) (end 105.47 71.2) (width 0.25) (layer "F.Cu") (net 31) (tstamp 133d5403-9be3-4603-824b-d3b76147e745))
  (segment (start 108.56999 66.2936) (end 108.56999 68.10001) (width 0.25) (layer "F.Cu") (net 31) (tstamp 15a0f067-831a-4ddb-bdef-5fb7df267d8f))
  (segment (start 109.054999 63.905001) (end 109.054999 65.808591) (width 0.25) (layer "F.Cu") (net 31) (tstamp 1ab4dceb-24cc-4050-aa74-e8fbb39d3760))
  (segment (start 88.9125 67.05) (end 90.92282 67.05) (width 0.25) (layer "F.Cu") (net 31) (tstamp 4fc3183f-297c-42b7-b3bd-25a9ea18c844))
  (segment (start 109.054999 65.808591) (end 108.56999 66.2936) (width 0.25) (layer "F.Cu") (net 31) (tstamp 6f78c1fb-f693-4737-b750-74e50c35a564))
  (segment (start 90.92282 67.05) (end 95.07282 71.2) (width 0.25) (layer "F.Cu") (net 31) (tstamp 9b315454-a4a0-4952-bdbe-d4a8e96c16f9))
  (segment (start 110.23 62.73) (end 109.054999 63.905001) (width 0.25) (layer "F.Cu") (net 31) (tstamp bbb99edd-f016-43ea-b1c7-0bcdd1915ee8))
  (segment (start 105.47 71.2) (end 108.56999 68.10001) (width 0.25) (layer "F.Cu") (net 31) (tstamp de5c2064-b9e1-4057-a8cc-9308019ef4d3))
  (segment (start 57.935 66.005) (end 57.915 66.025) (width 0.25) (layer "F.Cu") (net 32) (tstamp 0e18138e-f1a3-4288-bb34-3b6bcfb64ff6))
  (segment (start 57.935 64.25) (end 57.935 66.005) (width 0.25) (layer "F.Cu") (net 32) (tstamp d9198b20-68ab-4f03-9039-95a74aeba0d6))
  (segment (start 80.6 59.923002) (end 82 58.523002) (width 0.25) (layer "F.Cu") (net 33) (tstamp 7684f860-395c-40b3-8cc0-a644dcdbc220))
  (segment (start 80.6 61.6) (end 80.6 59.923002) (width 0.25) (layer "F.Cu") (net 33) (tstamp aaf0fd50-bb22-4408-be5a-88f5ba4193be))
  (segment (start 82 58.523002) (end 82 57.475) (width 0.25) (layer "F.Cu") (net 33) (tstamp acd72527-a657-482d-a530-89a1347375fc))
  (segment (start 82 57.475) (end 82 56.6375) (width 0.25) (layer "F.Cu") (net 33) (tstamp dbfb14d7-1f97-4dd2-9004-1d129d3b4221))
  (via (at 80.6 61.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 33) (tstamp e6cd2cdd-d49b-4491-8a15-4c46254b5c0a))
  (segment (start 89.444001 54.975001) (end 90.055001 54.364001) (width 0.25) (layer "B.Cu") (net 33) (tstamp 25247d0c-5910-484b-9651-5750d422a450))
  (segment (start 85.186811 55.425011) (end 87.090401 55.425011) (width 0.25) (layer "B.Cu") (net 33) (tstamp 3675ad1a-972f-4046-b23a-e6ca04304035))
  (segment (start 84.711803 55.900019) (end 85.186811 55.425011) (width 0.25) (layer "B.Cu") (net 33) (tstamp 3b19a97f-624a-48d9-8072-15bdeede0fff))
  (segment (start 83.500018 56.009212) (end 83.60921 55.90002) (width 0.25) (layer "B.Cu") (net 33) (tstamp 44509293-79e2-4fab-8860-b0cecb591afa))
  (segment (start 90.055001 54.364001) (end 90.055001 50.885997) (width 0.25) (layer "B.Cu") (net 33) (tstamp 59142adb-6887-41fc-851e-9a7f51511d60))
  (segment (start 90.855999 50.084999) (end 95.324999 50.084999) (width 0.25) (layer "B.Cu") (net 33) (tstamp 5b04e20f-8575-4362-b040-2e2133d670c8))
  (segment (start 82.02282 61.2) (end 83.500018 59.722802) (width 0.25) (layer "B.Cu") (net 33) (tstamp 6ae901e7-3f37-4fdc-9fbb-f82666744826))
  (segment (start 80.999999 61.200001) (end 82.02282 61.2) (width 0.25) (layer "B.Cu") (net 33) (tstamp 87f44303-a6e8-48e5-bb6d-f89abb09a999))
  (segment (start 90.055001 50.885997) (end 90.855999 50.084999) (width 0.25) (layer "B.Cu") (net 33) (tstamp 8e715b73-353f-4cfc-aa33-1eac54b89b6c))
  (segment (start 87.090401 55.425011) (end 87.540411 54.975001) (width 0.25) (layer "B.Cu") (net 33) (tstamp 92ec60c8-e914-4456-8d37-4b88fc0eb9c6))
  (segment (start 80.6 61.6) (end 80.999999 61.200001) (width 0.25) (layer "B.Cu") (net 33) (tstamp acfcaba7-a8b8-4c21-a793-d3e0373f34dc))
  (segment (start 83.60921 55.90002) (end 84.711803 55.900019) (width 0.25) (layer "B.Cu") (net 33) (tstamp b7ed4c31-5417-4fb5-9261-7dca42c1c776))
  (segment (start 95.324999 50.084999) (end 95.650001 50.410001) (width 0.25) (layer "B.Cu") (net 33) (tstamp baa534a0-611b-4c48-8e86-5106dc852bd8))
  (segment (start 83.500018 59.722802) (end 83.500018 56.009212) (width 0.25) (layer "B.Cu") (net 33) (tstamp bb5e8a0f-2ed5-4c2a-91b7-cb63c4c66e15))
  (segment (start 95.650001 50.410001) (end 96.5 51.26) (width 0.25) (layer "B.Cu") (net 33) (tstamp edb2db40-12f7-45b3-a514-2a1299ac0231))
  (segment (start 87.540411 54.975001) (end 89.444001 54.975001) (width 0.25) (layer "B.Cu") (net 33) (tstamp f58fca4c-73af-416f-b236-f3bb62b8fd00))
  (segment (start 81.4 59.759412) (end 81.5 59.659412) (width 0.25) (layer "F.Cu") (net 34) (tstamp 02b1295e-cf95-47ff-9c57-f8ada28f2e94))
  (segment (start 82.45001 58.659412) (end 82.450009 58.709403) (width 0.25) (layer "F.Cu") (net 34) (tstamp 4aee84d1-0859-48ac-a053-5a981ee1b24a))
  (segment (start 82.5 56.6375) (end 82.5 58.659412) (width 0.25) (layer "F.Cu") (net 34) (tstamp 5fc4054a-b929-433e-a947-747fb7ed003d))
  (segment (start 82.450009 58.709403) (end 81.5 59.659412) (width 0.25) (layer "F.Cu") (net 34) (tstamp 617edc57-1dbf-4296-b365-6d76f68a1c0f))
  (segment (start 82.5 58.659412) (end 82.45001 58.659412) (width 0.25) (layer "F.Cu") (net 34) (tstamp 811f5389-c208-4640-ab1a-b454491bb330))
  (segment (start 81.4 62.3) (end 81.4 59.759412) (width 0.25) (layer "F.Cu") (net 34) (tstamp d4876469-b949-49ce-b8fe-43cb458692a4))
  (via (at 81.4 62.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 34) (tstamp b6f041a4-3ea0-418b-94a2-50c938beafa2))
  (segment (start 81.959227 61.900001) (end 83.950028 59.909202) (width 0.25) (layer "B.Cu") (net 34) (tstamp 245a6fb4-6361-4438-82ca-8861d43ca7f5))
  (segment (start 94.524001 52.624999) (end 95.135001 53.235999) (width 0.25) (layer "B.Cu") (net 34) (tstamp 296ded40-ed53-4798-8db4-dad7b794226b))
  (segment (start 81.799999 61.900001) (end 81.959227 61.900001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 2e0f69a6-955c-44f2-af4d-b4ad566ef54b))
  (segment (start 87.251822 55.9) (end 87.726811 55.425011) (width 0.25) (layer "B.Cu") (net 34) (tstamp 337d1242-91ab-4446-8b9e-7609c6a49e3c))
  (segment (start 87.726811 55.425011) (end 89.630401 55.425011) (width 0.25) (layer "B.Cu") (net 34) (tstamp 47be24ee-e15b-4cee-b84b-350111ac1499))
  (segment (start 81.4 62.3) (end 81.799999 61.900001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 49b38f13-9789-4c6d-bbd5-2c69a9e19e69))
  (segment (start 95.5 53.7) (end 96.4 53.7) (width 0.25) (layer "B.Cu") (net 34) (tstamp 4d55ddc7-73be-49f7-98ea-a0ba474cbdb0))
  (segment (start 91.984001 54.975001) (end 92.595001 54.364001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 5290e0d7-1f24-4c0b-91ff-28c5a304ab9a))
  (segment (start 92.595001 54.364001) (end 92.595001 53.304999) (width 0.25) (layer "B.Cu") (net 34) (tstamp 61fae217-e18a-4e68-8630-42cc06a8ba2f))
  (segment (start 89.630401 55.425011) (end 90.080411 54.975001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 624c6565-c4fd-4d29-87af-f77dd1ba0898))
  (segment (start 95.135001 53.235999) (end 95.135001 53.335001) (width 0.25) (layer "B.Cu") (net 34) (tstamp 62a1b97d-067d-487c-835b-0166330d25fe))
  (segment (start 95.135001 53.235999) (end 95.135999 53.235999) (width 0.25) (layer "B.Cu") (net 34) (tstamp 69f75991-c8c0-49a9-aed8-daa6ca9a5d73))
  (segment (start 83.950028 56.4) (end 84.84823 56.4) (width 0.25) (layer "B.Cu") (net 34) (tstamp 71079b24-2e2e-494b-a607-86ccdae75c6e))
  (segment (start 84.84823 56.4) (end 85.34823 55.9) (width 0.25) (layer "B.Cu") (net 34) (tstamp 927b1eb6-e6f4-412f-9a58-8dc81a4889a0))
  (segment (start 96.4 53.7) (end 96.5 53.8) (width 0.25) (layer "B.Cu") (net 34) (tstamp ae293969-fa6d-4cb1-9969-16f8784d07e3))
  (segment (start 95.135001 53.335001) (end 95.5 53.7) (width 0.25) (layer "B.Cu") (net 34) (tstamp bb673c7a-d2b0-45b0-bfe2-0b113c092a77))
  (segment (start 83.950028 59.909202) (end 83.950028 56.4) (width 0.25) (layer "B.Cu") (net 34) (tstamp cce1404b-fc30-47cc-b852-e0061990f2bb))
  (segment (start 90.080411 54.975001) (end 91.984001 54.975001) (width 0.25) (layer "B.Cu") (net 34) (tstamp d68589fa-205b-4356-a20d-821c85f5f45e))
  (segment (start 93.275001 52.624999) (end 94.524001 52.624999) (width 0.25) (layer "B.Cu") (net 34) (tstamp d9ad01c4-9416-4b1f-8447-afc1d446fa8a))
  (segment (start 85.34823 55.9) (end 87.251822 55.9) (width 0.25) (layer "B.Cu") (net 34) (tstamp f205e125-3760-485b-b76a-dc2502dc5679))
  (segment (start 92.595001 53.304999) (end 93.275001 52.624999) (width 0.25) (layer "B.Cu") (net 34) (tstamp f60d71f9-9a8e-4a62-960d-f7b9664aea76))
  (segment (start 83 56.6375) (end 83 58.7) (width 0.25) (layer "F.Cu") (net 35) (tstamp 45676199-bb82-4d58-98c1-b606deb355be))
  (segment (start 83 58.795822) (end 83 58.7) (width 0.25) (layer "F.Cu") (net 35) (tstamp 55ac7ee1-f461-406b-8cf5-da47a7717180))
  (segment (start 82.2 63) (end 82.2 59.595822) (width 0.25) (layer "F.Cu") (net 35) (tstamp 7c3df708-fb44-40cc-b435-cd67e8cec48a))
  (segment (start 82.2 59.595822) (end 83 58.795822) (width 0.25) (layer "F.Cu") (net 35) (tstamp b14aea3f-7e9b-4416-ac0e-1c7beb3cd27c))
  (via (at 82.2 63) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 35) (tstamp f364b99f-4502-4cba-a96d-4ed35ad108b5))
  (segment (start 82.2 63) (end 82.599999 62.600001) (width 0.25) (layer "B.Cu") (net 35) (tstamp 0588e431-d56d-4df4-9ffd-6cd4bba412cb))
  (segment (start 84.400038 60.095602) (end 84.400038 58.499962) (width 0.25) (layer "B.Cu") (net 35) (tstamp 15e1670d-9e79-4a5e-88ad-fbbb238a3e8a))
  (segment (start 99.04 55.002081) (end 99.04 53.8) (width 0.25) (layer "B.Cu") (net 35) (tstamp 57121f1d-c971-4830-b974-00f7d706f0c9))
  (segment (start 97.898001 57.725001) (end 99.04 56.583002) (width 0.25) (layer "B.Cu") (net 35) (tstamp 76862e4a-1816-475c-9943-666036c637f7))
  (segment (start 82.599999 61.895638) (end 84.400038 60.095602) (width 0.25) (layer "B.Cu") (net 35) (tstamp 8019bb27-2172-4d60-932e-7bd55a890b6c))
  (segment (start 99.04 56.583002) (end 99.04 55.002081) (width 0.25) (layer "B.Cu") (net 35) (tstamp ad09de7f-a090-4e65-951a-7cf11f73b06d))
  (segment (start 85.174999 57.725001) (end 97.898001 57.725001) (width 0.25) (layer "B.Cu") (net 35) (tstamp ec13b96e-bc69-4de2-80ef-a515cc44afb5))
  (segment (start 82.599999 62.600001) (end 82.599999 61.895638) (width 0.25) (layer "B.Cu") (net 35) (tstamp f1128c56-7c01-4d79-834b-ceab4dc35180))
  (segment (start 84.400038 58.499962) (end 85.174999 57.725001) (width 0.25) (layer "B.Cu") (net 35) (tstamp f11a78b7-152e-46cf-81d1-bc8194db05a9))
  (segment (start 91.77499 58.62501) (end 91.487653 58.912347) (width 0.25) (layer "F.Cu") (net 36) (tstamp 121b7b08-bed9-441b-b060-efed31f37089))
  (segment (start 91.77499 57.068516) (end 91.77499 58.62501) (width 0.25) (layer "F.Cu") (net 36) (tstamp 14a3cbec-b1b9-4736-8e00-ba5be98954ab))
  (segment (start 92.7 55.69641) (end 92.687905 55.69641) (width 0.25) (layer "F.Cu") (net 36) (tstamp 3bdaeac5-b4b7-4a96-b0da-b5e1b46798c2))
  (segment (start 83.1 59.332232) (end 83.1 63.8) (width 0.25) (layer "F.Cu") (net 36) (tstamp 4375ab9a-cebb-448a-bb75-1fa4fe977171))
  (segment (start 101.58 51.26) (end 100.215001 52.624999) (width 0.25) (layer "F.Cu") (net 36) (tstamp 567a04d6-5dce-4e5f-9e8e-f34010ecea5b))
  (segment (start 83.5 58.932232) (end 83.1 59.332232) (width 0.25) (layer "F.Cu") (net 36) (tstamp 61eb7a4f-888e-4082-9c74-1d94f58e7c05))
  (segment (start 93.421409 54.975001) (end 92.7 55.69641) (width 0.25) (layer "F.Cu") (net 36) (tstamp 6f3f676d-a47a-4e8c-8d6e-02275a3490d7))
  (segment (start 95.135001 53.425997) (end 95.135001 54.364001) (width 0.25) (layer "F.Cu") (net 36) (tstamp 934c5f28-c928-4621-8122-b999b3ed10dd))
  (segment (start 92.6 56.35) (end 92.493506 56.35) (width 0.25) (layer "F.Cu") (net 36) (tstamp 9fa58e42-4d1f-4e7f-a5a2-6fc9857446e3))
  (segment (start 83.5 56.6375) (end 83.5 58.932232) (width 0.25) (layer "F.Cu") (net 36) (tstamp aeaaa120-9cc5-4520-9a70-067fbc8f5b7b))
  (segment (start 92.6 55.784315) (end 92.6 56.35) (width 0.25) (layer "F.Cu") (net 36) (tstamp ca2c5f3f-362b-4808-b8c2-86726d31aa11))
  (segment (start 92.687905 55.69641) (end 92.6 55.784315) (width 0.25) (layer "F.Cu") (net 36) (tstamp da7e6488-201f-4286-b86a-ca5aced3697a))
  (segment (start 92.493506 56.35) (end 91.77499 57.068516) (width 0.25) (layer "F.Cu") (net 36) (tstamp dc0df782-a446-4364-8dc7-0190637b5f77))
  (segment (start 95.135001 54.364001) (end 94.524001 54.975001) (width 0.25) (layer "F.Cu") (net 36) (tstamp e62e65e6-b466-4769-8746-eb8cd9450c76))
  (segment (start 100.215001 52.624999) (end 95.935999 52.624999) (width 0.25) (layer "F.Cu") (net 36) (tstamp ea8efd53-9e19-4e37-86f5-e6c0c681f735))
  (segment (start 95.935999 52.624999) (end 95.135001 53.425997) (width 0.25) (layer "F.Cu") (net 36) (tstamp f413d088-6fb9-4a8a-88fd-666ff68b7fdf))
  (segment (start 94.524001 54.975001) (end 93.421409 54.975001) (width 0.25) (layer "F.Cu") (net 36) (tstamp f7c5fcef-379b-481f-a910-961b8aba9e9d))
  (via (at 83.1 63.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 36) (tstamp 9475edbb-286b-4bed-b5f0-0b68a18bdc52))
  (via (at 91.487653 58.912347) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 36) (tstamp e75a90f1-d275-4ca6-86ea-4b6dddffab59))
  (segment (start 83.1 62.032049) (end 83.1 63.8) (width 0.25) (layer "B.Cu") (net 36) (tstamp 4e66ba18-389e-4ff9-97c1-8bd8fb047a01))
  (segment (start 90.750317 58.175011) (end 85.361399 58.175011) (width 0.25) (layer "B.Cu") (net 36) (tstamp aae29862-3850-48eb-b7a8-38a62a8029dd))
  (segment (start 85.361399 58.175011) (end 84.9 58.63641) (width 0.25) (layer "B.Cu") (net 36) (tstamp bf26cee8-9c9f-4547-9a40-e7028b986d1e))
  (segment (start 84.9 58.63641) (end 84.9 60.232049) (width 0.25) (layer "B.Cu") (net 36) (tstamp cc5561df-9d20-4574-af60-64f10025a0ed))
  (segment (start 91.487653 58.912347) (end 90.750317 58.175011) (width 0.25) (layer "B.Cu") (net 36) (tstamp d0111086-5d68-4ab0-b707-7da6b263c90b))
  (segment (start 84.9 60.232049) (end 83.1 62.032049) (width 0.25) (layer "B.Cu") (net 36) (tstamp f2a44eaf-666f-422c-bb4d-a717499c3d1a))
  (segment (start 84 56.6375) (end 84 62.9) (width 0.25) (layer "F.Cu") (net 37) (tstamp 0674c5a1-ca4b-4b6b-aa60-3847e1a37d52))
  (segment (start 84 62.9) (end 83.9 63) (width 0.25) (layer "F.Cu") (net 37) (tstamp 1a85ffd6-ef8b-418f-990e-456d1ffab00e))
  (via (at 83.9 63) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 37) (tstamp 835d4ac3-3fb1-48d9-8c28-6093fe917376))
  (segment (start 98.084402 58.17501) (end 100.730001 55.529411) (width 0.25) (layer "B.Cu") (net 37) (tstamp 0aa1e38d-f07a-4820-b628-a171234563bb))
  (segment (start 92.848001 59.675001) (end 90.94998 59.675001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 1cbbfee4-06dd-44ee-af91-d336edf2459c))
  (segment (start 100.730001 54.649999) (end 101.58 53.8) (width 0.25) (layer "B.Cu") (net 37) (tstamp 1f01b2a1-9ae4-4793-9d17-5ed5c0966b9f))
  (segment (start 85.35001 60.418449) (end 85.35001 58.82281) (width 0.25) (layer "B.Cu") (net 37) (tstamp 33891c62-a79f-4243-b776-6be292690ac3))
  (segment (start 84.299999 62.600001) (end 84.299999 61.46846) (width 0.25) (layer "B.Cu") (net 37) (tstamp 59058a09-f800-497d-b8e1-cdf9632c6766))
  (segment (start 100.730001 55.529411) (end 100.730001 54.649999) (width 0.25) (layer "B.Cu") (net 37) (tstamp 637c5908-9371-4d80-a19b-036e111ef5cd))
  (segment (start 84.299999 61.46846) (end 85.35001 60.418449) (width 0.25) (layer "B.Cu") (net 37) (tstamp 7c11b885-29b4-4eb2-b782-dde8e3724f0c))
  (segment (start 94.347991 58.175011) (end 92.848001 59.675001) (width 0.25) (layer "B.Cu") (net 37) (tstamp 844f01a0-ac23-4a99-910e-4e91c579bb2b))
  (segment (start 85.35001 58.82281) (end 85.547799 58.625021) (width 0.25) (layer "B.Cu") (net 37) (tstamp 9ed54841-4bec-491f-817d-b7e8b25ca06c))
  (segment (start 90.94998 59.675001) (end 89.9 58.625021) (width 0.25) (layer "B.Cu") (net 37) (tstamp c2e901e5-a4cd-4374-af38-0566255ecbea))
  (segment (start 94.347991 58.175011) (end 98.084402 58.17501) (width 0.25) (layer "B.Cu") (net 37) (tstamp e0692317-3143-4681-97c6-8fbe46592f31))
  (segment (start 83.9 63) (end 84.299999 62.600001) (width 0.25) (layer "B.Cu") (net 37) (tstamp e2df2a45-3811-4210-89e0-9a66f3cb9430))
  (segment (start 85.547799 58.625021) (end 89.9 58.625021) (width 0.25) (layer "B.Cu") (net 37) (tstamp f8e9fc00-8f60-4688-b1c9-6de1e4c0c204))
  (segment (start 84.625001 62.651999) (end 84.625001 63.774999) (width 0.25) (layer "F.Cu") (net 38) (tstamp 2949af22-2432-469e-9f07-eee60be8acbd))
  (segment (start 84.5 62.526998) (end 84.625001 62.651999) (width 0.25) (layer "F.Cu") (net 38) (tstamp 356199c8-c0f7-4995-bef0-53ad752a30c5))
  (segment (start 84.5 56.6375) (end 84.5 62.526998) (width 0.25) (layer "F.Cu") (net 38) (tstamp 3997254a-8057-4464-ba07-e37f0720cbd8))
  (segment (start 93.974154 56.325846) (end 94 56.3) (width 0.25) (layer "F.Cu") (net 38) (tstamp 5ef603f2-8407-4088-9f29-0b64dd4b046f))
  (segment (start 84.625001 63.774999) (end 84.6 63.8) (width 0.25) (layer "F.Cu") (net 38) (tstamp 7983b95c-14e4-4dec-ab4e-09c81071d9de))
  (segment (start 93.974154 59.574154) (end 93.974154 56.325846) (width 0.25) (layer "F.Cu") (net 38) (tstamp bce25bd3-0fe5-4c8f-bd6c-39e2d62ee70a))
  (via (at 84.6 63.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp 3cfddd47-0913-4692-89bb-8a69d22be5a7))
  (via (at 93.974154 59.574154) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp 76ee303c-1cfc-45a8-ae72-af3efaba6c47))
  (via (at 94 56.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 38) (tstamp 872313a4-03e6-4e4a-b850-f54dcb50f9fc))
  (segment (start 85.80002 59.49998) (end 85.80002 60.738451) (width 0.25) (layer "B.Cu") (net 38) (tstamp 03d57b22-a0ad-4d3d-9d1c-5573371e6c2f))
  (segment (start 94.334315 55.4) (end 96.588982 55.4) (width 0.25) (layer "B.Cu") (net 38) (tstamp 06b6db7e-5210-41ec-a47b-0127ebbe0786))
  (segment (start 93.423298 60.12501) (end 93.974154 59.574154) (width 0.25) (layer "B.Cu") (net 38) (tstamp 0fe3ebe2-61a9-477a-a657-d783c4c4d70e))
  (segment (start 86.224969 59.075031) (end 85.80002 59.49998) (width 0.25) (layer "B.Cu") (net 38) (tstamp 159c8092-f459-40eb-b409-c2cace814e6e))
  (segment (start 97.675001 54.364001) (end 97.675001 53.124999) (width 0.25) (layer "B.Cu") (net 38) (tstamp 39614f9f-2df5-492b-a093-45b7a48e295d))
  (segment (start 94 56.3) (end 94 55.734315) (width 0.25) (layer "B.Cu") (net 38) (tstamp 3f9f133b-59b8-4791-b0ab-6fa861da9e3f))
  (segment (start 89.675031 59.075031) (end 90.72501 60.12501) (width 0.25) (layer "B.Cu") (net 38) (tstamp 56bbedad-6259-4443-b321-0ffa1f89c336))
  (segment (start 96.613992 55.42501) (end 97.675001 54.364001) (width 0.25) (layer "B.Cu") (net 38) (tstamp 6ee71a3c-fedb-4cc6-a3c6-f3d6f3ac6767))
  (segment (start 98.364999 52.435001) (end 102.944999 52.435001) (width 0.25) (layer "B.Cu") (net 38) (tstamp 741879e3-3045-40c7-849d-7f437c35ee91))
  (segment (start 84.750009 63.084306) (end 84.750009 61.788462) (width 0.25) (layer "B.Cu") (net 38) (tstamp 832b1e20-f118-4505-ad00-93c040f2f83d))
  (segment (start 96.588982 55.4) (end 96.613992 55.42501) (width 0.25) (layer "B.Cu") (net 38) (tstamp 85621d90-361e-49b6-9449-b54a16cce021))
  (segment (start 90.72501 60.12501) (end 93.423298 60.12501) (width 0.25) (layer "B.Cu") (net 38) (tstamp 8eacb9d3-c41d-4b39-abd1-0bc8f2e97411))
  (segment (start 84.6 63.8) (end 84.6 63.234315) (width 0.25) (layer "B.Cu") (net 38) (tstamp a9ff0621-eacb-4187-ba89-29f236eec881))
  (segment (start 94 55.734315) (end 94.334315 55.4) (width 0.25) (layer "B.Cu") (net 38) (tstamp ac81fb15-6f1a-451b-a962-fb87ffd26f6b))
  (segment (start 89.675031 59.075031) (end 86.224969 59.075031) (width 0.25) (layer "B.Cu") (net 38) (tstamp b4afdd30-7a78-4cd8-8670-bb6dd787dcdc))
  (segment (start 84.6 63.234315) (end 84.750009 63.084306) (width 0.25) (layer "B.Cu") (net 38) (tstamp cb0f5a26-0827-4807-aea7-55b25947b9d5))
  (segment (start 102.944999 52.435001) (end 104.12 51.26) (width 0.25) (layer "B.Cu") (net 38) (tstamp dd4f23cd-8f89-457c-8b93-3828f8c20a8d))
  (segment (start 97.675001 53.124999) (end 98.364999 52.435001) (width 0.25) (layer "B.Cu") (net 38) (tstamp e4d60aa0-829b-452e-a0b4-f0b282cbe2f3))
  (segment (start 85.80002 60.738451) (end 84.750009 61.788462) (width 0.25) (layer "B.Cu") (net 38) (tstamp f46fb303-7470-41c0-b6e8-4553c1d6503f))
  (segment (start 85 56.6375) (end 85 59.050415) (width 0.25) (layer "F.Cu") (net 39) (tstamp 86f6faec-7eee-404c-a73a-2ae625f33d8c))
  (segment (start 85 59.050415) (end 86.52502 60.575435) (width 0.25) (layer "F.Cu") (net 39) (tstamp 90337a8b-a8c5-48e1-ad0f-b0e67716fe3c))
  (via (at 86.52502 60.575435) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 39) (tstamp d3db736b-0e33-4126-b950-5488923df40e))
  (segment (start 101.095822 55.8) (end 98.9 57.995822) (width 0.25) (layer "B.Cu") (net 39) (tstamp 0f3121ae-1081-4d81-b548-dceafa613e21))
  (segment (start 86.52502 59.550061) (end 86.55004 59.525041) (width 0.25) (layer "B.Cu") (net 39) (tstamp 644ebc55-9b92-49bd-8dfa-8a3a0dd8d76d))
  (segment (start 98.123002 60.6) (end 98.925001 59.798001) (width 0.25) (layer "B.Cu") (net 39) (tstamp 66cc4ddc-a52d-4ad7-986e-68f000539802))
  (segment (start 102.12 55.8) (end 101.095822 55.8) (width 0.25) (layer "B.Cu") (net 39) (tstamp 85ec87eb-bb51-43f3-adf5-d04ca264762d))
  (segment (start 104.12 53.8) (end 102.12 55.8) (width 0.25) (layer "B.Cu") (net 39) (tstamp 8f8bb641-6f96-48dd-a2de-b7e2aaf6efe0))
  (segment (start 98.925001 59.798001) (end 98.925001 58.020823) (width 0.25) (layer "B.Cu") (net 39) (tstamp a16dbf15-8f5b-4766-b048-90ba89efcc02))
  (segment (start 98.925001 58.020823) (end 98.9 57.995822) (width 0.25) (layer "B.Cu") (net 39) (tstamp cebfc912-6282-4a1e-923e-74c4961c2aad))
  (segment (start 89.488631 59.525041) (end 90.56359 60.6) (width 0.25) (layer "B.Cu") (net 39) (tstamp cfec88d2-05ea-4320-9be6-2559d89ee700))
  (segment (start 86.52502 60.575435) (end 86.52502 59.550061) (width 0.25) (layer "B.Cu") (net 39) (tstamp eb83440d-aa8b-4a1e-9e93-00cf0de78de9))
  (segment (start 86.55004 59.525041) (end 89.488631 59.525041) (width 0.25) (layer "B.Cu") (net 39) (tstamp f7475c2a-e91e-435c-bec2-3307ef3e1f94))
  (segment (start 90.56359 60.6) (end 98.123002 60.6) (width 0.25) (layer "B.Cu") (net 39) (tstamp fe1c93f4-4468-424b-a088-27aef08b62b4))
  (segment (start 85.5 56.6375) (end 85.5 58.296292) (width 0.25) (layer "F.Cu") (net 40) (tstamp 6579642b-a152-47f7-af0e-0d8866bdfcb8))
  (segment (start 85.5 58.296292) (end 87.478878 60.27517) (width 0.25) (layer "F.Cu") (net 40) (tstamp eac540a2-0555-4530-b9cb-9b037a65c0a7))
  (via (at 87.478878 60.27517) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 40) (tstamp 5de5a872-aa15-495b-b53b-b8a64bbfa4f0))
  (segment (start 99.375011 59.984401) (end 99.375011 58.157221) (width 0.25) (layer "B.Cu") (net 40) (tstamp 0df798c0-963e-4340-a737-18e50763521e))
  (segment (start 90.42718 61.1) (end 98.259412 61.1) (width 0.25) (layer "B.Cu") (net 40) (tstamp 1d6518e1-cfe9-4078-adc2-cf8e6477b5cb))
  (segment (start 105.484999 52.435001) (end 105.810001 52.109999) (width 0.25) (layer "B.Cu") (net 40) (tstamp 3f206607-332e-4c96-8963-5302804f476f))
  (segment (start 102.306401 56.250009) (end 103.581409 54.975001) (width 0.25) (layer "B.Cu") (net 40) (tstamp 4208e41d-1d0a-40b9-bf94-fcbeb6562f9d))
  (segment (start 104.684001 54.975001) (end 105.484999 54.174003) (width 0.25) (layer "B.Cu") (net 40) (tstamp 68f7174d-ce7a-41b4-89f8-dd7e3ded57a1))
  (segment (start 99.375011 58.157221) (end 101.282222 56.25001) (width 0.25) (layer "B.Cu") (net 40) (tstamp 6d646c30-feab-4e3e-adf0-5427b73b5f08))
  (segment (start 89.302231 59.975051) (end 90.42718 61.1) (width 0.25) (layer "B.Cu") (net 40) (tstamp 6e21d8a8-05db-450e-863d-764ba51b5b58))
  (segment (start 88.044563 60.27517) (end 88.344682 59.975051) (width 0.25) (layer "B.Cu") (net 40) (tstamp 6e416a78-df14-48ee-9842-e6e24081191e))
  (segment (start 101.282222 56.25001) (end 102.306401 56.250009) (width 0.25) (layer "B.Cu") (net 40) (tstamp 8e1983d7-818b-423d-95d2-7f219e4f6ba3))
  (segment (start 105.484999 54.174003) (end 105.484999 52.435001) (width 0.25) (layer "B.Cu") (net 40) (tstamp b20fb198-6b0b-4cab-9ba8-ea9b46e8088f))
  (segment (start 87.478878 60.27517) (end 88.044563 60.27517) (width 0.25) (layer "B.Cu") (net 40) (tstamp b2f7301d-582c-4990-a060-4a71ef08c6eb))
  (segment (start 98.259412 61.1) (end 99.375011 59.984401) (width 0.25) (layer "B.Cu") (net 40) (tstamp cf45f134-35c0-4b31-91e7-048e45f34bf8))
  (segment (start 103.581409 54.975001) (end 104.684001 54.975001) (width 0.25) (layer "B.Cu") (net 40) (tstamp d1f81642-eb3a-4277-b357-9cbb5a3aa5ac))
  (segment (start 105.810001 52.109999) (end 106.66 51.26) (width 0.25) (layer "B.Cu") (net 40) (tstamp e3903eeb-8b72-4b40-a088-cbbba270c01b))
  (segment (start 88.344682 59.975051) (end 89.302231 59.975051) (width 0.25) (layer "B.Cu") (net 40) (tstamp fa574bf3-ac2e-449d-91be-bcb1e35bdaba))
  (segment (start 90.9625 57.55) (end 89.9125 57.55) (width 0.25) (layer "F.Cu") (net 41) (tstamp 33064f56-88c0-44a1-ac52-96957fe5ad49))
  (segment (start 89.9125 57.55) (end 88.9125 58.55) (width 0.25) (layer "F.Cu") (net 41) (tstamp c2564ecf-bd43-431d-b9a2-c7be54487485))
  (segment (start 69.5 62.3) (end 69.25 62.05) (width 0.25) (layer "F.Cu") (net 42) (tstamp 0208dcec-5844-41d6-8382-4437ac8ac82d))
  (segment (start 69.25 62.05) (end 67.5875 62.05) (width 0.25) (layer "F.Cu") (net 42) (tstamp a2ead14b-89a8-4438-a7df-7876de28e69a))
  (via (at 69.5 62.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 42) (tstamp 60d30b2f-02cb-42f2-b2ed-c84cb33e3e36))
  (segment (start 68.56 55.539002) (end 68.56 61.36) (width 0.25) (layer "B.Cu") (net 42) (tstamp 00000000-0000-0000-0000-00005e49a359))
  (segment (start 67.384999 52.435001) (end 67.384999 54.364001) (width 0.25) (layer "B.Cu") (net 42) (tstamp 1569382e-a4f5-4166-a19c-b78580f8c980))
  (segment (start 68.56 51.26) (end 67.384999 52.435001) (width 0.25) (layer "B.Cu") (net 42) (tstamp 376a6f44-cf22-4d88-ac13-30f83803795f))
  (segment (start 67.384999 54.364001) (end 68.56 55.539002) (width 0.25) (layer "B.Cu") (net 42) (tstamp 52d326d4-51c9-4c17-8412-9aaf3e6cdf4c))
  (segment (start 68.56 61.36) (end 69.5 62.3) (width 0.25) (layer "B.Cu") (net 42) (tstamp df3e0d78-29b1-4811-9600-571610f4b8a8))
  (segment (start 65.6 62.55) (end 67.5875 62.55) (width 0.25) (layer "F.Cu") (net 43) (tstamp ac0e5582-f44c-4bc2-8ae7-2c3f1115fb00))
  (via (at 65.6 62.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 43) (tstamp 664ea685-f665-4315-aadf-581a656f41df))
  (segment (start 64.844999 52.435001) (end 64.844999 55.044999) (width 0.25) (layer "B.Cu") (net 43) (tstamp 291e4200-f3c9-4b61-8158-17e8c4424a24))
  (segment (start 64.844999 55.044999) (end 67.125001 57.325001) (width 0.25) (layer "B.Cu") (net 43) (tstamp 35e60fa0-27cf-4d0e-8bab-b364400c08c0))
  (segment (start 67.125001 61.024999) (end 65.6 62.55) (width 0.25) (layer "B.Cu") (net 43) (tstamp 578f33ff-8d12-4136-bb61-e55b7655fa5b))
  (segment (start 66.02 51.26) (end 64.844999 52.435001) (width 0.25) (layer "B.Cu") (net 43) (tstamp 933a17ae-06d4-4de3-aae1-d3835cc0d957))
  (segment (start 67.125001 57.325001) (end 67.125001 61.024999) (width 0.25) (layer "B.Cu") (net 43) (tstamp 9d2af601-5327-4706-9acb-978b65e95af5))
  (segment (start 81.5 55.8) (end 81.874989 55.425011) (width 0.25) (layer "F.Cu") (net 44) (tstamp 1d2d8ec8-1f1b-4d06-9a35-eff8e386bdb8))
  (segment (start 92.76 55) (end 90.055412 55) (width 0.25) (layer "F.Cu") (net 44) (tstamp 22614aba-2c26-4590-8e12-a7a6b6de48de))
  (segment (start 81.5 56.6375) (end 81.5 55.8) (width 0.25) (layer "F.Cu") (net 44) (tstamp 401b5a0c-f502-4551-9d61-fa50a303707e))
  (segment (start 81.874989 55.425011) (end 89.630402 55.42501) (width 0.25) (layer "F.Cu") (net 44) (tstamp 4c069f0b-8c76-44a0-a999-7bd72a3e8dee))
  (segment (start 89.630402 55.42501) (end 90.055412 55) (width 0.25) (layer "F.Cu") (net 44) (tstamp 92822296-9b31-4c78-bfe1-2dc7c2e425bc))
  (segment (start 93.96 53.8) (end 92.76 55) (width 0.25) (layer "F.Cu") (net 44) (tstamp bf3524aa-7451-4bff-a4df-53f0aa1c0aeb))
  (segment (start 80.5 56.6375) (end 80.5 54.779002) (width 0.25) (layer "F.Cu") (net 45) (tstamp 1a1da3ab-0792-420a-a2dd-c670f9cd52e8))
  (segment (start 90.244999 52.435001) (end 90.570001 52.109999) (width 0.25) (layer "F.Cu") (net 45) (tstamp 5e27f565-c85a-4f3b-9862-58c0accdd5e3))
  (segment (start 90.570001 52.109999) (end 91.42 51.26) (width 0.25) (layer "F.Cu") (net 45) (tstamp 9050328c-80d1-449f-94a8-27658961ba9d))
  (segment (start 80.864999 52.435001) (end 90.244999 52.435001) (width 0.25) (layer "F.Cu") (net 45) (tstamp 99c0b885-9395-4eaa-a204-8d7dea094883))
  (segment (start 80.084999 53.215001) (end 80.864999 52.435001) (width 0.25) (layer "F.Cu") (net 45) (tstamp a3a9b316-86eb-411d-82d0-37407c2e4142))
  (segment (start 80.5 54.779002) (end 80.084999 54.364001) (width 0.25) (layer "F.Cu") (net 45) (tstamp d0060422-f68b-4ffa-bca8-6f70dc4f862d))
  (segment (start 80.084999 54.364001) (end 80.084999 53.215001) (width 0.25) (layer "F.Cu") (net 45) (tstamp e315fb88-f764-4ec7-a92b-006692d5e26f))
  (segment (start 81.424999 54.975001) (end 89.444001 54.975001) (width 0.25) (layer "F.Cu") (net 46) (tstamp 09321bf4-1ea1-49b5-b1f9-ac29d6606a74))
  (segment (start 90.217919 53.8) (end 90.055001 53.962918) (width 0.25) (layer "F.Cu") (net 46) (tstamp 3742a313-c63e-4807-a7bf-be5a0ae2c781))
  (segment (start 90.055001 53.962918) (end 90.055001 54.364001) (width 0.25) (layer "F.Cu") (net 46) (tstamp 5080cf4c-abda-4232-b279-44d0e6b9bde3))
  (segment (start 80.95001 55.44999) (end 81.424999 54.975001) (width 0.25) (layer "F.Cu") (net 46) (tstamp 5b867f3d-ce38-4d21-95dd-fe114f76e9dc))
  (segment (start 81 55.8) (end 80.95001 55.75001) (width 0.25) (layer "F.Cu") (net 46) (tstamp 7d3a9372-4f99-452e-9767-51a31df66106))
  (segment (start 80.95001 55.75001) (end 80.95001 55.44999) (width 0.25) (layer "F.Cu") (net 46) (tstamp 89be6ff8-dff7-4df0-876d-d5989d658e36))
  (segment (start 89.444001 54.975001) (end 90.055001 54.364001) (width 0.25) (layer "F.Cu") (net 46) (tstamp aa52a4ee-249d-4f84-a65a-9c1702b5bb75))
  (segment (start 81 56.6375) (end 81 55.8) (width 0.25) (layer "F.Cu") (net 46) (tstamp e2349eb5-0f2d-4c2a-b154-1cfe1ab9cd91))
  (segment (start 91.42 53.8) (end 90.217919 53.8) (width 0.25) (layer "F.Cu") (net 46) (tstamp ed76cb21-0b5e-4ca2-8075-7e28e38e7199))
  (segment (start 88.030001 50.410001) (end 88.88 51.26) (width 0.25) (layer "F.Cu") (net 47) (tstamp 16aa2316-1a67-45e5-b6c4-e59dd85814f4))
  (segment (start 77.5 56.6375) (end 77.5 50.740998) (width 0.25) (layer "F.Cu") (net 47) (tstamp 3b909fd4-b382-4019-8708-80d1d9a9fe1c))
  (segment (start 77.5 50.740998) (end 78.155999 50.084999) (width 0.25) (layer "F.Cu") (net 47) (tstamp 5891aa7f-2e48-4492-8db1-d54810991036))
  (segment (start 78.155999 50.084999) (end 87.704999 50.084999) (width 0.25) (layer "F.Cu") (net 47) (tstamp 7f4b7c2c-9af8-4317-9338-c2a6d8990ded))
  (segment (start 87.704999 50.084999) (end 88.030001 50.410001) (width 0.25) (layer "F.Cu") (net 47) (tstamp 8ddee80f-a354-4a11-ae03-acb37cf50626))
  (segment (start 77 56.6375) (end 77 54.62) (width 0.25) (layer "F.Cu") (net 48) (tstamp 5f8cf0a3-5039-4ac4-8310-e201f8c0505f))
  (segment (start 77 54.62) (end 76.18 53.8) (width 0.25) (layer "F.Cu") (net 48) (tstamp b5de2bf0-583c-45d9-bc5e-15007fe3ede8))
  (segment (start 74.5 54.679002) (end 75.004999 54.174003) (width 0.25) (layer "F.Cu") (net 49) (tstamp 9fa51663-d9ff-42d5-ab2b-c96b6768fc7a))
  (segment (start 75.004999 52.435001) (end 75.330001 52.109999) (width 0.25) (layer "F.Cu") (net 49) (tstamp bfdbfa5d-af60-4bcb-aaee-563dc6121e2f))
  (segment (start 75.004999 54.174003) (end 75.004999 52.435001) (width 0.25) (layer "F.Cu") (net 49) (tstamp e8a49c58-e69f-4870-ab15-e73f66a8d02b))
  (segment (start 74.5 56.6375) (end 74.5 54.679002) (width 0.25) (layer "F.Cu") (net 49) (tstamp f61adca3-c1e4-457e-8212-9dc978cabab5))
  (segment (start 75.330001 52.109999) (end 76.18 51.26) (width 0.25) (layer "F.Cu") (net 49) (tstamp fd693e1b-ee8d-4a26-aae0-561ba4b09a82))
  (segment (start 74 54.16) (end 73.64 53.8) (width 0.25) (layer "F.Cu") (net 50) (tstamp d25a1e45-06d1-4c1c-9b3a-0fd8abd0bfed))
  (segment (start 74 56.6375) (end 74 54.16) (width 0.25) (layer "F.Cu") (net 50) (tstamp e8558fbd-ea42-43a6-966a-7bd304bdfaad))
  (segment (start 65.105011 55.425011) (end 64.329999 54.649999) (width 0.25) (layer "F.Cu") (net 51) (tstamp 2fea3f9c-a97b-4a77-88f7-98b3d8a00622))
  (segment (start 70.590713 55.425011) (end 65.105011 55.425011) (width 0.25) (layer "F.Cu") (net 51) (tstamp 46a20b99-b616-4fa4-af79-eecf92b5c191))
  (segment (start 71 55.834298) (end 70.590713 55.425011) (width 0.25) (layer "F.Cu") (net 51) (tstamp 6dfa921c-8a4f-4fcf-a0e7-8718b6271ea9))
  (segment (start 64.329999 54.649999) (end 63.48 53.8) (width 0.25) (layer "F.Cu") (net 51) (tstamp ab26a42e-b7f6-4a80-b26c-c01085e448c7))
  (segment (start 71 56.6375) (end 71 55.834298) (width 0.25) (layer "F.Cu") (net 51) (tstamp ee3188d0-94cf-4bcc-9f57-e516684fc142))
  (segment (start 69 57.440702) (end 66.484292 57.440702) (width 0.25) (layer "F.Cu") (net 52) (tstamp 062fbe79-da43-4e6a-bd6f-509557f2df9b))
  (segment (start 72.225001 58.748001) (end 71.848001 59.125001) (width 0.25) (layer "F.Cu") (net 52) (tstamp 2b894b8a-c098-4d9d-be0f-2ef41dea274e))
  (segment (start 66.484292 57.440702) (end 64.018591 54.975001) (width 0.25) (layer "F.Cu") (net 52) (tstamp 3ce4c631-4e8b-4ee6-a520-34bf7b12880c))
  (segment (start 61.789999 54.649999) (end 60.94 53.8) (width 0.25) (layer "F.Cu") (net 52) (tstamp 4116bfc2-eab3-4c29-a983-44eacd9f10f5))
  (segment (start 64.018591 54.975001) (end 62.115001 54.975001) (width 0.25) (layer "F.Cu") (net 52) (tstamp 51320c8c-9c4a-48b8-a7b8-e2c8d1f2e5ad))
  (segment (start 69.259308 57.70001) (end 69 57.440702) (width 0.25) (layer "F.Cu") (net 52) (tstamp 5f74c6fb-337b-40a9-9b79-933f2f30429a))
  (segment (start 72 57.826998) (end 72.225001 58.051999) (width 0.25) (layer "F.Cu") (net 52) (tstamp 6776c573-26e6-4a02-ab96-18129f258651))
  (segment (start 62.115001 54.975001) (end 61.789999 54.649999) (width 0.25) (layer "F.Cu") (net 52) (tstamp 704ba6e6-ee13-4d9d-b544-d836a743bdda))
  (segment (start 72.225001 58.051999) (end 72.225001 58.748001) (width 0.25) (layer "F.Cu") (net 52) (tstamp 9ba85d0a-e58f-45a8-9d86-ad6c976003b7))
  (segment (start 72 56.6375) (end 72 57.826998) (width 0.25) (layer "F.Cu") (net 52) (tstamp a067c43d-047d-48ca-a682-5bbb620e3988))
  (segment (start 71.151999 59.125001) (end 70.774999 58.748001) (width 0.25) (layer "F.Cu") (net 52) (tstamp a9ad6ea5-8293-424c-89d4-c01baf033429))
  (segment (start 70.650008 57.70001) (end 69.259308 57.70001) (width 0.25) (layer "F.Cu") (net 52) (tstamp d36e7ed4-f2bc-4d88-86ae-317d3c24af1a))
  (segment (start 71.848001 59.125001) (end 71.151999 59.125001) (width 0.25) (layer "F.Cu") (net 52) (tstamp dbd87a35-3166-440e-a8f0-c71d214a12a6))
  (segment (start 70.774999 58.748001) (end 70.774999 57.825001) (width 0.25) (layer "F.Cu") (net 52) (tstamp df1435bb-8018-455d-9925-63e774164119))
  (segment (start 70.774999 57.825001) (end 70.650008 57.70001) (width 0.25) (layer "F.Cu") (net 52) (tstamp ff203a9b-3d2e-4e1d-a6f0-12d16e5120fb))
  (segment (start 67.195001 54.975001) (end 66.869999 54.649999) (width 0.25) (layer "F.Cu") (net 53) (tstamp 226f524c-89b4-46ed-86fd-c8ea41059fd4))
  (segment (start 71.675001 54.975001) (end 67.195001 54.975001) (width 0.25) (layer "F.Cu") (net 53) (tstamp 57e17378-f1f7-42d0-9ad3-fb44c2d5cdc3))
  (segment (start 72.5 56.6375) (end 72.5 55.8) (width 0.25) (layer "F.Cu") (net 53) (tstamp 6ae47305-86b3-4e27-b3c6-46e195fdaa6d))
  (segment (start 72.5 55.8) (end 71.675001 54.975001) (width 0.25) (layer "F.Cu") (net 53) (tstamp 710852c3-85af-44f2-af12-adc5798f2795))
  (segment (start 66.869999 54.649999) (end 66.02 53.8) (width 0.25) (layer "F.Cu") (net 53) (tstamp 7147b342-4ca8-4694-a1ec-b615c151a5d0))
  (segment (start 71.264588 53.8) (end 73 55.535412) (width 0.25) (layer "F.Cu") (net 54) (tstamp 5b5611ee-3a4f-4573-978f-2e48db0ecaf5))
  (segment (start 73 55.8) (end 73 56.6375) (width 0.25) (layer "F.Cu") (net 54) (tstamp 84e154cc-34e9-48ac-ab7e-fc52b3bc90d0))
  (segment (start 73 55.535412) (end 73 55.8) (width 0.25) (layer "F.Cu") (net 54) (tstamp a57e46ab-4127-4b88-afea-d94b5d7bc928))
  (segment (start 71.1 53.8) (end 71.264588 53.8) (width 0.25) (layer "F.Cu") (net 54) (tstamp c1b73b2b-a0dd-4b0e-8d3d-c3beea420b93))
  (segment (start 72.275001 52.435001) (end 71.949999 52.109999) (width 0.25) (layer "F.Cu") (net 55) (tstamp 037a257a-ceb2-409c-ab24-48a743172dae))
  (segment (start 72.275001 54.174003) (end 72.275001 52.435001) (width 0.25) (layer "F.Cu") (net 55) (tstamp 3d8571f7-688f-49ac-8d91-22508c277f45))
  (segment (start 71.949999 52.109999) (end 71.1 51.26) (width 0.25) (layer "F.Cu") (net 55) (tstamp 45899113-d22e-4a5b-822e-9aca23b124ee))
  (segment (start 73.5 56.6375) (end 73.5 55.399002) (width 0.25) (layer "F.Cu") (net 55) (tstamp 8527ef2e-5212-4629-b6f5-b0130ab61dab))
  (segment (start 73.5 55.399002) (end 72.275001 54.174003) (width 0.25) (layer "F.Cu") (net 55) (tstamp eecd895d-4aa1-458c-8512-c9957fd00fad))

  (zone (net 1) (net_name "GND") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000062016a26) (hatch edge 0.508)
    (connect_pads (clearance 0.254))
    (min_thickness 0.2) (filled_areas_thickness no)
    (fill (thermal_gap 0.3) (thermal_bridge_width 0.254))
    (polygon
      (pts
        (xy 48 47)
        (xy 48 82)
        (xy 117 82)
        (xy 117 47)
      )
    )
  )
  (zone (net 11) (net_name "+5V") (layer "F.Cu") (tstamp 2056f16f-2d4a-4f35-8a56-49ab69eeef16) (hatch edge 0.508)
    (priority 1)
    (connect_pads (clearance 0.254))
    (min_thickness 0.2) (filled_areas_thickness no)
    (fill (thermal_gap 0.254) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 48.75 48.75)
        (xy 62 48.75)
        (xy 62 59)
        (xy 48.75 59)
      )
    )
  )
  (zone (net 12) (net_name "+1V2") (layer "F.Cu") (tstamp 914a2046-646f-4d53-b355-ce2139e25907) (hatch edge 0.508)
    (priority 2)
    (connect_pads yes (clearance 0.2))
    (min_thickness 0.2) (filled_areas_thickness no)
    (fill (thermal_gap 0.3) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 58 57.4)
        (xy 66.48 57.4)
        (xy 66.48 60.15)
        (xy 63 60.244888)
        (xy 63 59)
        (xy 58 59)
      )
    )
  )
  (zone (net 10) (net_name "+3V3") (layer "F.Cu") (tstamp c2079b33-906e-4c67-b0b6-7e228acc166b) (hatch edge 0.508)
    (priority 1)
    (connect_pads yes (clearance 0.254))
    (min_thickness 0.2) (filled_areas_thickness no)
    (fill (thermal_gap 0.3) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 94.73 57.9)
        (xy 98.73 57.9)
        (xy 98.73 59.9)
        (xy 94.73 59.9)
      )
    )
  )
  (zone (net 1) (net_name "GND") (layer "In1.Cu") (tstamp 00000000-0000-0000-0000-00005e37913c) (hatch edge 0.508)
    (connect_pads (clearance 0.508))
    (min_thickness 0.254) (filled_areas_thickness no)
    (fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 49.05 47.55)
        (xy 116.3 47.5)
        (xy 116.3 80.25)
        (xy 49 80.2)
      )
    )
  )
  (zone (net 12) (net_name "+1V2") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379133) (hatch edge 0.508)
    (priority 2)
    (connect_pads (clearance 0.508))
    (min_thickness 0.254) (filled_areas_thickness no)
    (fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 63.1 60.2)
        (xy 73.2875 60.25)
        (xy 73.2125 57.45)
        (xy 62.975 57.4)
      )
    )
  )
  (zone (net 12) (net_name "+1V2") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379136) (hatch edge 0.508)
    (priority 1)
    (connect_pads (clearance 0.508))
    (min_thickness 0.254) (filled_areas_thickness no)
    (fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 86.05 59.192486)
        (xy 86.05 60.242486)
        (xy 86.046729 60.242479)
        (xy 86 75.242486)
        (xy 70.45 75.192486)
        (xy 70.496679 60.208601)
        (xy 63.1 60.192486)
        (xy 63.1 59.142486)
        (xy 70.49995 59.158608)
        (xy 70.5 59.142486)
      )
    )
  )
  (zone (net 10) (net_name "+3V3") (layer "In2.Cu") (tstamp 00000000-0000-0000-0000-00005e379139) (hatch edge 0.508)
    (connect_pads (clearance 0.508))
    (min_thickness 0.254) (filled_areas_thickness no)
    (fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 49.05 47.55)
        (xy 116.3 47.5)
        (xy 116.3 80.25)
        (xy 49 80.2)
      )
    )
  )
  (zone (net 11) (net_name "+5V") (layer "B.Cu") (tstamp 00000000-0000-0000-0000-000062016ef4) (hatch edge 0.508)
    (priority 1)
    (connect_pads (clearance 0.254))
    (min_thickness 0.2) (filled_areas_thickness no)
    (fill (thermal_gap 0.254) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 48.75 48.75)
        (xy 62 48.75)
        (xy 62 59)
        (xy 48.75 59)
      )
    )
  )
)