summaryrefslogtreecommitdiff
path: root/board/boards/power/board.lp
blob: ebe6751fe1c694faf7af862430c0f91953e0e120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
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
(librepcb_board b11a65fa-6c4c-431c-8545-341aca355aaf
 (name "power")
 (default_font "newstroke.bene")
 (grid (interval 0.25) (unit millimeters))
 (layers (inner 0))
 (thickness 1.6)
 (solder_resist green)
 (silkscreen white)
 (silkscreen_layers_top top_legend top_names top_values)
 (silkscreen_layers_bot bot_legend bot_names bot_values)
 (design_rules
  (stopmask_max_via_drill_diameter 0.5)
  (stopmask_clearance (ratio 0.0) (min 0.1) (max 0.1))
  (solderpaste_clearance (ratio 0.1) (min 0.0) (max 1.0))
  (pad_annular_ring (outer full) (inner auto) (ratio 0.25) (min 0.25) (max 2.0))
  (via_annular_ring (ratio 0.25) (min 0.2) (max 2.0))
 )
 (design_rule_check
  (min_copper_copper_clearance 0.127)
  (min_copper_board_clearance 0.3)
  (min_copper_npth_clearance 0.25)
  (min_drill_drill_clearance 0.35)
  (min_drill_board_clearance 0.5)
  (min_silkscreen_stopmask_clearance 0.127)
  (min_copper_width 0.2)
  (min_annular_ring 0.2)
  (min_npth_drill_diameter 0.3)
  (min_pth_drill_diameter 0.3)
  (min_npth_slot_width 1.0)
  (min_pth_slot_width 0.7)
  (min_silkscreen_width 0.15)
  (min_silkscreen_text_height 0.8)
  (min_outline_tool_diameter 2.0)
  (blind_vias_allowed false)
  (buried_vias_allowed false)
  (allowed_npth_slots single_segment_straight)
  (allowed_pth_slots single_segment_straight)
  (approvals_version "1")
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (device 05fb3408-c9fb-401b-b8bf-a72c462cae4c)
    (pad a29e8718-e513-4e04-a066-9c16eb98db2d)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (device 0f474324-9bc7-4322-8304-01e88a920696)
    (pad d3c8b567-b538-4b79-aeaf-321e6990de8b)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (device 9eac99f9-953f-42e3-ab87-ec108ec4bd03)
    (pad 5eb43e50-29c4-47aa-8a6d-60999d8f4729)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 0cb9ea06-2cb0-4642-b790-8dee6b682f82)
    (trace 2e27937a-64f0-4ee4-96a6-de93f7d2d4a1)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 0cb9ea06-2cb0-4642-b790-8dee6b682f82)
    (trace 561a6b10-e83d-45df-b7a5-33f2c3ee1354)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 0cb9ea06-2cb0-4642-b790-8dee6b682f82)
    (trace c29d8435-30e5-4a55-a619-165cdb4106e3)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 0cb9ea06-2cb0-4642-b790-8dee6b682f82)
    (trace eaf9b4b6-d13f-452d-bfe7-b90d7ae35df9)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 17633f04-a26e-441f-9558-8955411610d6)
    (trace 88655e01-28ea-4dcb-a5ef-dcb01daeeca7)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 17633f04-a26e-441f-9558-8955411610d6)
    (trace a5fd2b06-dfee-4ba0-ab36-6ad40690ffe6)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 17633f04-a26e-441f-9558-8955411610d6)
    (trace d6108638-7775-4e3b-8211-4efa229e2412)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 5052c45a-bf2c-41b3-b01e-a500e6f742a9)
    (trace 4eb484d2-b93a-496e-b9d1-0d5469e0b790)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 5052c45a-bf2c-41b3-b01e-a500e6f742a9)
    (trace 65e18876-066d-4711-8c89-0181f32438ad)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 22952059-260b-4340-bfee-169ad7987f8b))
   (object
    (netsegment 5052c45a-bf2c-41b3-b01e-a500e6f742a9)
    (trace 86318aa3-285f-4ad6-a669-4736d41e052c)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (device 0f474324-9bc7-4322-8304-01e88a920696)
    (pad 49b7dd66-a2e0-4d4b-b947-5b506fd12d89)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (device 0f474324-9bc7-4322-8304-01e88a920696)
    (pad afc31e08-24d7-43db-955c-3d47a7b2551e)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (device 0f474324-9bc7-4322-8304-01e88a920696)
    (pad d8ec911a-921f-4e39-b497-7581c2cbfc6a)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (device 0f474324-9bc7-4322-8304-01e88a920696)
    (pad ff85e090-199c-47f9-aacb-3b8aa7c10fda)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 1e3cc59f-f96b-4f44-8dd4-026dfed07cff)
    (trace 25fb2ccc-6d95-48e2-8ded-3a11e5ec590c)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 3241fab9-1dd3-41f7-bb4c-fba7ca20201d)
    (trace 0826ed36-b379-4e1b-a5ff-0b0f33c3216d)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 3241fab9-1dd3-41f7-bb4c-fba7ca20201d)
    (trace 898d51b7-64b4-4199-93a4-f6cfd350cde4)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 3241fab9-1dd3-41f7-bb4c-fba7ca20201d)
    (trace aef5dd92-22f8-4d72-9096-915cccb05158)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 3241fab9-1dd3-41f7-bb4c-fba7ca20201d)
    (trace d08a10d3-bdff-4337-9a60-50b032276860)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 67262076-d24e-4608-a6b9-f40acc22eb5e)
    (trace 3b3eb709-bf62-4ac2-ba4b-d29af11df629)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 67262076-d24e-4608-a6b9-f40acc22eb5e)
    (trace 491110fa-7676-447e-a6fa-fe5dbe4c73c6)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 67262076-d24e-4608-a6b9-f40acc22eb5e)
    (trace 7e42fe8a-3ab7-4f12-9fda-e8ede124388d)
   )
  )
  (approved copper_clearance_violation
   (object (polygon 44147107-eb67-42ba-9c92-be0656acd0bd))
   (object
    (netsegment 67262076-d24e-4608-a6b9-f40acc22eb5e)
    (trace c8c79fc3-a372-4e2a-87d6-e8c9826ee427)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device 05fb3408-c9fb-401b-b8bf-a72c462cae4c)
    (pad f1377a22-9cc7-46bc-b34d-88f8e54e1ee0)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device 31596a36-1fa4-4c96-bc6d-79771f142df4)
    (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device 98efd561-45f9-4931-8033-c38ccf5f5da5)
    (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device 98efd561-45f9-4931-8033-c38ccf5f5da5)
    (pad 8aba3f21-607c-49f0-8447-d059b3f77304)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device a594577f-b967-41dd-9ba3-7401df235978)
    (pad a1cf62e8-b075-4c6e-aab3-5ac98aa998c8)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device a594577f-b967-41dd-9ba3-7401df235978)
    (pad d6bf9808-e8fa-4e18-944d-cd4422121d30)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device c0f64001-86fb-4cad-914e-168f9a486196)
    (pad af3ead15-37a6-474d-8698-e4a22bd117de)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device e6a6bef4-31c9-4997-b5f4-8e413fa676e2)
    (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (device ee87f9fc-38f5-4fec-9344-36b08952008e)
    (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 014bf8d1-6af8-4dcc-ae1b-58ac7c743e58)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 13c7dd28-d814-4875-a864-e61abec99751)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 1b6e2c9c-528d-4654-a900-0045570022a1)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 1bafbff7-a6ac-431d-a8ca-588c468950ed)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 200500a6-964e-4bf4-85b7-398401afb879)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 2dc1c1f7-5faf-448b-a19d-c003d622e4d9)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 4ca0994e-1dca-4521-bdbe-18358a23948d)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 572ab9eb-9cf9-494d-9544-a4d94adc708d)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 75006b60-18ce-4ea6-af1b-a8b38e31e8a9)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace 9b976ac4-12a2-454e-a372-352d7912a380)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace aef0af9c-e118-4205-a389-cc4258e6e0ae)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace c3f3c834-4fcc-4c7e-84f2-eb37efb7aecb)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace c4dd3c89-be66-4a28-8df1-25065b737fe8)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace e01c54c8-713d-4d5a-8f4f-11d783b41754)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace f6cf2604-e646-42f4-80de-20dc7bd15bd3)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace f8c7d296-5e10-434e-ac40-35e00e9580ea)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 04008fe5-c951-48bf-bd80-8ebed85be142)
    (trace fb71683c-5380-4658-a808-d9e2662aabf1)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 074ca14c-046f-40dc-8b6c-cba0d6314485)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 0e24e7c7-0c89-4471-a6ea-21c51522f42a)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 23689385-15f0-461a-a86c-fa8f4c48fd99)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 2841e176-8af4-4db3-affb-6cf52db2227c)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 490e0f4b-5ae6-41bf-90c0-bd9aef4bfea9)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 60bf6d3e-4367-44ac-8428-cbef9612ca04)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 76923d68-105a-40b9-a21d-5d22b6ba40b5)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 7d3f18ab-03e4-472e-ab6d-65d0e202f25d)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 8b725a4c-788c-40cf-b51f-99c83e9d1239)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 9803eafb-58d8-4eb6-b619-bc24c3b31652)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 9abd0da7-0225-4197-9067-2e742a8dd5ab)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 9c30ea79-1dd4-4ae4-ac9b-46911ddef109)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace 9dd79634-c74c-4789-88d7-e4d07b5eb8be)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace a7abd546-9f86-478d-9ca8-7afe6d1b5072)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace baefc7e3-fb08-4ae9-a7ba-253967b5f278)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace c45baf69-337a-4a06-978c-6f6e5a9f4e5b)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace d6634971-e2a3-4764-91af-1db6b9fead76)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 4bb514bd-34d5-4c20-8c98-b05f534b655e)
    (trace f98218f2-d203-481f-a7d7-d6f5b1e761e8)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 03de1d97-4c74-4927-b9fc-e3364642a2d8)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 136abf43-b568-4d3f-80b7-e836f65fa0ad)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 22fcce78-f194-4f75-8fda-ebd9502d281b)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 2608d01c-fbe9-4040-9c89-9c951f3851b0)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 33540f29-7119-496b-96f5-3ae277f37dfe)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 5a3faea7-5c7e-47df-91b5-4eb055d160ad)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 715cc268-37bd-47f2-9a01-9a374c4a14f0)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 7491027f-6f1e-49e7-bf83-ab7313df372a)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 87206c2e-4061-4a99-9b9a-bc2d9b77aba0)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 8797c1a3-cf90-4664-8fb0-d5b38f196f96)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace 95ee37f6-6c2d-4c72-8733-a2ddb772f9be)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace a1e8dd82-f177-4c26-a5b0-9b8c5b5937ee)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace aa551658-561c-4b33-9a15-5c94c618f166)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace af34aba0-5ae9-4e52-bf17-f3309f07695f)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace e00f8501-59dd-4268-b6ba-fe652c6fc930)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace e149aa17-4006-41e0-860a-f42a58819208)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace ed6c7b39-a5a3-4ece-ac41-f7aa6e191ebb)
   )
  )
  (approved copper_clearance_violation
   (object (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8))
   (object
    (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb)
    (trace f3c7d578-f8f5-42b8-8a45-f77ce8618bd4)
   )
  )
  (approved copper_clearance_violation
   (object (polygon eeed1c87-3fe8-49a9-80bb-c518c3a95eac))
   (object
    (device 0f474324-9bc7-4322-8304-01e88a920696)
    (pad f777d05d-8a7e-44bc-9ccf-96e9d47cd6f0)
   )
  )
  (approved copper_clearance_violation
   (object (polygon eeed1c87-3fe8-49a9-80bb-c518c3a95eac))
   (object
    (netsegment ff7b0b37-0fda-413e-b23c-5fa43e01cdc1)
    (trace 04e11b41-83e6-4858-838b-340c2d51c8fa)
   )
  )
  (approved copper_clearance_violation
   (object (polygon eeed1c87-3fe8-49a9-80bb-c518c3a95eac))
   (object
    (netsegment ff7b0b37-0fda-413e-b23c-5fa43e01cdc1)
    (trace 3f46902b-c247-4bef-a74e-90c6f8aa2338)
   )
  )
  (approved device_in_courtyard
   (device 05fb3408-c9fb-401b-b8bf-a72c462cae4c)
   (device 9eac99f9-953f-42e3-ab87-ec108ec4bd03)
  )
  (approved minimum_width_violation
   (device 05fb3408-c9fb-401b-b8bf-a72c462cae4c)
   (stroke_text f77a8d41-d0c0-4a9c-9d08-51d3af6a4f00)
  )
  (approved minimum_width_violation
   (device 0f474324-9bc7-4322-8304-01e88a920696)
   (stroke_text 5c205543-be15-400a-9cb1-1440d067bcde)
  )
  (approved minimum_width_violation
   (device 5a823968-958d-4e08-ae30-8ee87cb53a9f)
   (stroke_text 17d4c23f-837a-47bb-877f-a2bad5ba44f6)
  )
  (approved minimum_width_violation
   (device c32fb448-94d5-423f-9d08-5575b3bdf98c)
   (polygon 136012c5-c00e-497d-9553-b8492afae78f)
  )
  (approved minimum_width_violation
   (device c32fb448-94d5-423f-9d08-5575b3bdf98c)
   (stroke_text de7612a1-beca-4e68-b5e5-56c16bb19314)
  )
  (approved missing_connection
   (from
    (device 31596a36-1fa4-4c96-bc6d-79771f142df4)
    (pad 4db0526d-822f-4db6-b9df-b22ee2002163)
   )
   (to
    (device c0f64001-86fb-4cad-914e-168f9a486196)
    (pad 4db0526d-822f-4db6-b9df-b22ee2002163)
   )
  )
 )
 (fabrication_output_settings
  (base_path "./output/{{VERSION}}/gerber/{{PROJECT}}")
  (outlines (suffix "_OUTLINES.gbr"))
  (copper_top (suffix "_COPPER-TOP.gbr"))
  (copper_inner (suffix "_COPPER-IN{{CU_LAYER}}.gbr"))
  (copper_bot (suffix "_COPPER-BOTTOM.gbr"))
  (soldermask_top (suffix "_SOLDERMASK-TOP.gbr"))
  (soldermask_bot (suffix "_SOLDERMASK-BOTTOM.gbr"))
  (silkscreen_top (suffix "_SILKSCREEN-TOP.gbr"))
  (silkscreen_bot (suffix "_SILKSCREEN-BOTTOM.gbr"))
  (drills (merge false)
   (suffix_pth "_DRILLS-PTH.drl")
   (suffix_npth "_DRILLS-NPTH.drl")
   (suffix_merged "_DRILLS.drl")
   (suffix_buried "_DRILLS-PLATED-{{START_LAYER}}-{{END_LAYER}}.drl")
   (g85_slots false)
  )
  (solderpaste_top (create true) (suffix "_SOLDERPASTE-TOP.gbr"))
  (solderpaste_bot (create true) (suffix "_SOLDERPASTE-BOTTOM.gbr"))
 )
 (device 003e5a09-081d-4b51-a79f-a99d94d66249
  (lib_device ceb68c45-629b-4a96-9bc0-169332666600)
  (lib_footprint a4e4ad11-c543-4de2-8e38-555683fffb0c)
  (lib_3d_model none)
  (position 59.5 -48.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 448eeae9-bec8-4333-94c8-08604c1369c1 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 66.9 -53.7) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text aedcf677-7bc8-4299-992c-2adc4bb6a10d (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 66.9 -49.7) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 04c02e94-7b29-475e-b3fc-f0d3cf3d3fd4
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 84.5 -49.5) (rotation 90.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 86.0 -49.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 83.0 -47.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 05fb3408-c9fb-401b-b8bf-a72c462cae4c
  (lib_device e38e8284-6632-44de-a936-65ce53e3c7e5)
  (lib_footprint 586f33bb-fdca-4caf-9396-f1c6493149f8)
  (lib_3d_model none)
  (position 31.5 -28.5) (rotation 270.0) (flip false) (lock false)
  (stroke_text 890f50d6-e03a-4734-b89b-6c21fe167f54 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 27.5 -28.5) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text f77a8d41-d0c0-4a9c-9d08-51d3af6a4f00 (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 35.5 -28.5) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 0a110ffa-5f43-443c-a85e-7bb140f43500
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 84.5 -37.0) (rotation 90.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 86.0 -37.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 83.0 -35.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 0e2a5346-270d-49d4-85d8-1cbb5fd36efc
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 84.5 -12.0) (rotation 90.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 86.0 -12.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 83.0 -10.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 0f474324-9bc7-4322-8304-01e88a920696
  (lib_device bdfd8f9d-2eb7-4623-993e-f1e777239202)
  (lib_footprint 2ee6f224-1e1c-4493-bce5-adcc9d0d1016)
  (lib_3d_model none)
  (position 31.5 -36.0) (rotation 180.0) (flip false) (lock false)
  (stroke_text 5c205543-be15-400a-9cb1-1440d067bcde (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 31.5 -38.2) (rotation 180.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 6921474c-21f8-4e61-9df7-cd769c85eca5 (layer top_values)
   (height 0.3) (stroke_width 0.08) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 29.0 -35.8) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 1201fa9f-0c31-4146-83aa-d5afafce5184
  (lib_device 078650d3-483c-4b9e-a848-b14f1aad2edc)
  (lib_footprint e8596efa-bd51-4063-87aa-a44fa5640576)
  (lib_3d_model 70a52ef3-ce4d-480a-a79b-5929f52ddf44)
  (position 36.5 -34.0) (rotation 270.0) (flip false) (lock false)
  (stroke_text bb6f494d-576b-4b13-b10c-fd0781c5b8c3 (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 38.075 -34.0) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 1733362b-3bae-470b-9ba7-7a872bf41510
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 82.0 -19.5) (rotation 270.0) (flip false) (lock false)
  (stroke_text 49a0d0fc-aeb5-43ac-a7d9-a5d687ab224c (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 83.6 -19.5) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 80.4 -19.5) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 19182516-3872-4ee7-8ad5-54ab3a974fcf
  (lib_device 2704f5e1-f8c2-4565-b8bd-5a7ea9946f08)
  (lib_footprint aecdaa8d-2033-4d4e-aa55-bce599619b07)
  (lib_3d_model 351c3b6e-ccf6-4b55-8f82-c32f2ddd35fe)
  (position 29.0 -38.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 69f46c6d-835a-449b-b38f-92af308280b1 (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 27.0 -38.05) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 2b11e799-b468-4c1b-94f2-b016b72ab792
  (lib_device d0691a38-acb7-4a41-b889-99d7a2f92b10)
  (lib_footprint 0ff03d40-c63a-4add-bd3c-5de12051d696)
  (lib_3d_model 37a28abd-4fb8-4ba6-80cb-f6e9a26a9798)
  (position 28.5 -40.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 42d1737c-8a35-40b5-aa4d-ae690c62bd5d (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 24.5 -40.1) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 31596a36-1fa4-4c96-bc6d-79771f142df4
  (lib_device 27c53d40-ec5f-42f7-b2f7-c766f77b2ba8)
  (lib_footprint 06e32be2-156c-4456-b124-38864dcec522)
  (lib_3d_model 5ac76b31-6b62-4222-9c1c-1c18a81ff3be)
  (position 28.5 -19.0) (rotation 180.0) (flip false) (lock false)
  (stroke_text 16437b16-e13b-48e8-bb60-84e1b835a068 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 24.5 -19.65) (rotation 180.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 33484fb5-97b5-4d9e-8135-f1cfb52a56e0
  (lib_device 078650d3-483c-4b9e-a848-b14f1aad2edc)
  (lib_footprint e8596efa-bd51-4063-87aa-a44fa5640576)
  (lib_3d_model 70a52ef3-ce4d-480a-a79b-5929f52ddf44)
  (position 36.5 -37.5) (rotation -90.0) (flip false) (lock false)
  (stroke_text bb6f494d-576b-4b13-b10c-fd0781c5b8c3 (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 35.075 -37.5) (rotation -90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 35099bc2-2343-44fe-8368-b22441aa6a3c
  (lib_device b8f448cd-6ee9-4a2c-882d-2c0e14987552)
  (lib_footprint 747a588f-728e-4173-a358-4ee1483e2de8)
  (lib_3d_model none)
  (position 52.0 -42.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 34993a6c-6bcd-4a52-be21-265301f90976 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 52.0 -40.75) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 8664d080-1b06-4124-981c-2fa721479afa (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 52.0 -44.25) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 3df65d78-dc62-4bf1-bb5f-767975e464c8
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 33.0 -40.5) (rotation 90.0) (flip false) (lock false)
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 34.6 -40.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 551683f7-f0dc-4950-9fa0-9834115972fe
  (lib_device 27c53d40-ec5f-42f7-b2f7-c766f77b2ba8)
  (lib_footprint 06e32be2-156c-4456-b124-38864dcec522)
  (lib_3d_model 5ac76b31-6b62-4222-9c1c-1c18a81ff3be)
  (position 28.5 -46.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 16437b16-e13b-48e8-bb60-84e1b835a068 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 24.5 -45.35) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 5a823968-958d-4e08-ae30-8ee87cb53a9f
  (lib_device d5d5cb14-e55f-430b-9d8f-711115e72d4d)
  (lib_footprint b44df312-b0fb-47cb-ad52-db6d3e0cccbb)
  (lib_3d_model none)
  (position 30.5 -50.5) (rotation 270.0) (flip false) (lock false)
  (stroke_text 17d4c23f-837a-47bb-877f-a2bad5ba44f6 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 29.1 -55.3) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 7da6a3c1-52ec-40e0-acec-4cc01c70323d (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 26.9 -55.3) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 6c91ba05-d8ee-4290-87f9-3de392a15d35
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 48.5 -38.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 49a0d0fc-aeb5-43ac-a7d9-a5d687ab224c (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 48.5 -36.4) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 48.5 -39.6) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 72b5484a-906a-4e99-a49b-04dbf24cf835
  (lib_device ceb68c45-629b-4a96-9bc0-169332666600)
  (lib_footprint a4e4ad11-c543-4de2-8e38-555683fffb0c)
  (lib_3d_model none)
  (position 59.5 -36.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 448eeae9-bec8-4333-94c8-08604c1369c1 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 66.9 -41.2) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text aedcf677-7bc8-4299-992c-2adc4bb6a10d (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 66.9 -37.2) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 75d0d62e-62b5-40f2-b4b5-1318679c936a
  (lib_device ceb68c45-629b-4a96-9bc0-169332666600)
  (lib_footprint a4e4ad11-c543-4de2-8e38-555683fffb0c)
  (lib_3d_model none)
  (position 88.5 -43.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 448eeae9-bec8-4333-94c8-08604c1369c1 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 95.9 -48.7) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text aedcf677-7bc8-4299-992c-2adc4bb6a10d (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 95.9 -44.7) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 7ab90019-26ee-4ae5-b669-d978dfa62995
  (lib_device ceb68c45-629b-4a96-9bc0-169332666600)
  (lib_footprint a4e4ad11-c543-4de2-8e38-555683fffb0c)
  (lib_3d_model none)
  (position 59.5 -11.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 448eeae9-bec8-4333-94c8-08604c1369c1 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 66.9 -16.2) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text aedcf677-7bc8-4299-992c-2adc4bb6a10d (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 66.9 -12.2) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 83aa6fb6-653b-4e28-a917-a411b326c0fb
  (lib_device b8f448cd-6ee9-4a2c-882d-2c0e14987552)
  (lib_footprint 747a588f-728e-4173-a358-4ee1483e2de8)
  (lib_3d_model none)
  (position 81.0 -50.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 34993a6c-6bcd-4a52-be21-265301f90976 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 81.0 -48.25) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 8664d080-1b06-4124-981c-2fa721479afa (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 81.0 -51.75) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 8a8113d2-9964-4898-b9fa-6fd5b5f10f0c
  (lib_device 2704f5e1-f8c2-4565-b8bd-5a7ea9946f08)
  (lib_footprint aecdaa8d-2033-4d4e-aa55-bce599619b07)
  (lib_3d_model 351c3b6e-ccf6-4b55-8f82-c32f2ddd35fe)
  (position 33.0 -33.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 69f46c6d-835a-449b-b38f-92af308280b1 (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 34.5 -33.05) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 98efd561-45f9-4931-8033-c38ccf5f5da5
  (lib_device 27c53d40-ec5f-42f7-b2f7-c766f77b2ba8)
  (lib_footprint 06e32be2-156c-4456-b124-38864dcec522)
  (lib_3d_model 5ac76b31-6b62-4222-9c1c-1c18a81ff3be)
  (position 28.5 -22.5) (rotation 180.0) (flip false) (lock false)
  (stroke_text 16437b16-e13b-48e8-bb60-84e1b835a068 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 24.5 -23.15) (rotation 180.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 9a2b9f0a-10b0-4bf4-ad17-11cbf48de9d4
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 55.5 -42.0) (rotation 90.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 57.0 -42.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 54.0 -40.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 9b7ef3ec-66cc-4313-868c-7389eaf71af3
  (lib_device ceb68c45-629b-4a96-9bc0-169332666600)
  (lib_footprint a4e4ad11-c543-4de2-8e38-555683fffb0c)
  (lib_3d_model none)
  (position 88.5 -31.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 448eeae9-bec8-4333-94c8-08604c1369c1 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 95.9 -36.2) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text aedcf677-7bc8-4299-992c-2adc4bb6a10d (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 95.9 -32.2) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 9c759720-44cf-4b19-b8b1-98adb63935ab
  (lib_device ceb68c45-629b-4a96-9bc0-169332666600)
  (lib_footprint a4e4ad11-c543-4de2-8e38-555683fffb0c)
  (lib_3d_model none)
  (position 59.5 -23.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 448eeae9-bec8-4333-94c8-08604c1369c1 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 66.9 -28.7) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text aedcf677-7bc8-4299-992c-2adc4bb6a10d (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 66.9 -24.7) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device 9eac99f9-953f-42e3-ab87-ec108ec4bd03
  (lib_device 2704f5e1-f8c2-4565-b8bd-5a7ea9946f08)
  (lib_footprint aecdaa8d-2033-4d4e-aa55-bce599619b07)
  (lib_3d_model 351c3b6e-ccf6-4b55-8f82-c32f2ddd35fe)
  (position 30.5 -33.5) (rotation 180.0) (flip false) (lock false)
  (stroke_text 69f46c6d-835a-449b-b38f-92af308280b1 (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 28.5 -33.45) (rotation 180.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device 9f4dcc83-1e4a-4ab3-b45b-17444fee35d6
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 55.5 -54.5) (rotation 90.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 57.0 -54.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 54.0 -52.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device a594577f-b967-41dd-9ba3-7401df235978
  (lib_device e845b3fc-c663-44be-870d-30df1b5fb483)
  (lib_footprint 5bd4b630-da73-45b1-a23b-274f9a6e42fd)
  (lib_3d_model c2e3d283-b102-4b46-9f9f-9fcd0e4f3f61)
  (position 33.0 -7.5) (rotation 270.0) (flip false) (lock false)
  (stroke_text 038de4c6-a0aa-4e4f-a079-bc22ee3d0953 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 26.57 -4.0) (rotation 180.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text 1c8a6d96-af43-46e8-b0bb-2e7b21b32ab4 (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 42.43 -3.0) (rotation 180.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device a81cb96b-e5a8-4a52-bb1b-33e1a83cf458
  (lib_device b8f448cd-6ee9-4a2c-882d-2c0e14987552)
  (lib_footprint 747a588f-728e-4173-a358-4ee1483e2de8)
  (lib_3d_model none)
  (position 52.0 -17.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 34993a6c-6bcd-4a52-be21-265301f90976 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 52.0 -15.75) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 8664d080-1b06-4124-981c-2fa721479afa (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 52.0 -19.25) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device aa9c354e-5fc5-4ace-90b1-84edcb8a5769
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 84.5 -24.5) (rotation 90.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 86.0 -24.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 83.0 -22.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device aad60047-b273-4e60-98a0-fab1fd947585
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 48.5 -50.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 49a0d0fc-aeb5-43ac-a7d9-a5d687ab224c (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 48.5 -48.9) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 48.5 -52.1) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device b679c88a-a60d-4dc5-a265-dc34eccdc1b0
  (lib_device b8f448cd-6ee9-4a2c-882d-2c0e14987552)
  (lib_footprint 747a588f-728e-4173-a358-4ee1483e2de8)
  (lib_3d_model none)
  (position 81.0 -12.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 34993a6c-6bcd-4a52-be21-265301f90976 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 81.0 -10.75) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 8664d080-1b06-4124-981c-2fa721479afa (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 81.0 -14.25) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device bac0dff3-b09f-49b9-a27c-4c6df328363d
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 48.5 -13.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 49a0d0fc-aeb5-43ac-a7d9-a5d687ab224c (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 48.5 -11.4) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 48.5 -14.6) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device bf8c2ac6-6bef-4681-8d40-49de366fb199
  (lib_device b8f448cd-6ee9-4a2c-882d-2c0e14987552)
  (lib_footprint 747a588f-728e-4173-a358-4ee1483e2de8)
  (lib_3d_model none)
  (position 52.0 -30.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 34993a6c-6bcd-4a52-be21-265301f90976 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 52.0 -28.25) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 8664d080-1b06-4124-981c-2fa721479afa (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 52.0 -31.75) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device c0f64001-86fb-4cad-914e-168f9a486196
  (lib_device d0691a38-acb7-4a41-b889-99d7a2f92b10)
  (lib_footprint 0ff03d40-c63a-4add-bd3c-5de12051d696)
  (lib_3d_model 37a28abd-4fb8-4ba6-80cb-f6e9a26a9798)
  (position 34.5 -16.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 42d1737c-8a35-40b5-aa4d-ae690c62bd5d (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 38.5 -15.6) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device c1e03e9a-25ac-4b1c-ae4a-e3d78e085399
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 82.0 -7.0) (rotation 270.0) (flip false) (lock false)
  (stroke_text 49a0d0fc-aeb5-43ac-a7d9-a5d687ab224c (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 83.6 -7.0) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 80.4 -7.0) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device c2acd434-b6cf-46b0-9bbd-a690c3276c17
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 82.0 -44.5) (rotation 270.0) (flip false) (lock false)
  (stroke_text 49a0d0fc-aeb5-43ac-a7d9-a5d687ab224c (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 83.6 -44.5) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 80.4 -44.5) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device c2ad6a93-1320-4b1c-9d59-cd319f1eb66f
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 55.5 -29.5) (rotation 90.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 57.0 -29.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 54.0 -27.5) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device c30bf2b0-e5b2-4bcf-96a2-8aa3df6f25cd
  (lib_device b8f448cd-6ee9-4a2c-882d-2c0e14987552)
  (lib_footprint 747a588f-728e-4173-a358-4ee1483e2de8)
  (lib_3d_model none)
  (position 52.0 -55.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 34993a6c-6bcd-4a52-be21-265301f90976 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 52.0 -53.25) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 8664d080-1b06-4124-981c-2fa721479afa (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 52.0 -56.75) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device c32fb448-94d5-423f-9d08-5575b3bdf98c
  (lib_device 2ab846d7-ad74-4ea4-bc8b-d9ca57b7d3c8)
  (lib_footprint 104bf113-5936-4a1a-b23c-5d5fa883d52c)
  (lib_3d_model none)
  (position 40.5 -50.5) (rotation 270.0) (flip false) (lock false)
  (stroke_text de7612a1-beca-4e68-b5e5-56c16bb19314 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 42.0 -50.5) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text ef5ecb2c-5a7f-4c73-b43f-7b6061f39b0f (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 39.0 -50.5) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device d827ca0b-9f27-4a2e-a718-4fa07b329918
  (lib_device b8f448cd-6ee9-4a2c-882d-2c0e14987552)
  (lib_footprint 747a588f-728e-4173-a358-4ee1483e2de8)
  (lib_3d_model none)
  (position 81.0 -25.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 34993a6c-6bcd-4a52-be21-265301f90976 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 81.0 -23.25) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 8664d080-1b06-4124-981c-2fa721479afa (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 81.0 -26.75) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device dc014bad-d340-48fe-ae9e-eba0d2251cbd
  (lib_device ca621dbc-dcfb-4f3f-8d8e-38c58da22829)
  (lib_footprint 66c75f17-648c-4c61-9f5f-ab047bde3fd6)
  (lib_3d_model none)
  (position 130.0 -40.0) (rotation 90.0) (flip false) (lock false)
  (stroke_text 5c4be77e-69e3-45c3-87cc-696c0f30cbc4 (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 125.0 -60.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text e8314d10-75e3-4ea5-8b82-1f5fadc8efd2 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 125.0 -20.0) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device e16a780c-11c3-4b8f-a2de-06133720f133
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 48.5 -25.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 49a0d0fc-aeb5-43ac-a7d9-a5d687ab224c (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 48.5 -23.9) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 48.5 -27.1) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device e2c6eb62-ec6b-46b0-b57e-814a087ac89a
  (lib_device a6a6744d-7d3b-450a-b782-feca43939ca5)
  (lib_footprint 3983cdc8-617d-4016-b8ba-5bc3002994cb)
  (lib_3d_model a7b6870c-f390-4ad3-ae99-bc5b9e654210)
  (position 82.0 -32.0) (rotation 270.0) (flip false) (lock false)
  (stroke_text 49a0d0fc-aeb5-43ac-a7d9-a5d687ab224c (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 83.6 -32.0) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text a39099cd-ce19-488d-8e25-ba869e6e9fd5 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 80.4 -32.0) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device e6a6bef4-31c9-4997-b5f4-8e413fa676e2
  (lib_device 27c53d40-ec5f-42f7-b2f7-c766f77b2ba8)
  (lib_footprint 06e32be2-156c-4456-b124-38864dcec522)
  (lib_3d_model 5ac76b31-6b62-4222-9c1c-1c18a81ff3be)
  (position 34.5 -22.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 16437b16-e13b-48e8-bb60-84e1b835a068 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 38.5 -21.85) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device ee778887-31b4-4f01-9018-a9d0bdad38b4
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 55.5 -17.0) (rotation 90.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 57.0 -17.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 54.0 -15.0) (rotation 90.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device ee7abbb7-1d4b-46e9-8e35-a146efe1261a
  (lib_device 2704f5e1-f8c2-4565-b8bd-5a7ea9946f08)
  (lib_footprint aecdaa8d-2033-4d4e-aa55-bce599619b07)
  (lib_3d_model 351c3b6e-ccf6-4b55-8f82-c32f2ddd35fe)
  (position 39.0 -34.0) (rotation 270.0) (flip false) (lock false)
  (stroke_text 69f46c6d-835a-449b-b38f-92af308280b1 (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 40.45 -34.0) (rotation 270.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device ee87f9fc-38f5-4fec-9344-36b08952008e
  (lib_device 27c53d40-ec5f-42f7-b2f7-c766f77b2ba8)
  (lib_footprint 06e32be2-156c-4456-b124-38864dcec522)
  (lib_3d_model 5ac76b31-6b62-4222-9c1c-1c18a81ff3be)
  (position 34.5 -19.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 16437b16-e13b-48e8-bb60-84e1b835a068 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 38.5 -18.35) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device f3339ff3-9520-4dbd-a242-95fd88c470f7
  (lib_device ceb68c45-629b-4a96-9bc0-169332666600)
  (lib_footprint a4e4ad11-c543-4de2-8e38-555683fffb0c)
  (lib_3d_model none)
  (position 88.5 -18.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 448eeae9-bec8-4333-94c8-08604c1369c1 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 95.9 -23.7) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text aedcf677-7bc8-4299-992c-2adc4bb6a10d (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 95.9 -19.7) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device f699f4ae-d728-4a7e-bd2f-a08ce56eb74d
  (lib_device ceb68c45-629b-4a96-9bc0-169332666600)
  (lib_footprint a4e4ad11-c543-4de2-8e38-555683fffb0c)
  (lib_3d_model none)
  (position 88.5 -6.0) (rotation 0.0) (flip false) (lock false)
  (stroke_text 448eeae9-bec8-4333-94c8-08604c1369c1 (layer top_values)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 95.9 -11.2) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text aedcf677-7bc8-4299-992c-2adc4bb6a10d (layer top_names)
   (height 1.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 95.9 -7.2) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (device f6cb19ea-2420-4966-a665-144c8aea3a39
  (lib_device b8f448cd-6ee9-4a2c-882d-2c0e14987552)
  (lib_footprint 747a588f-728e-4173-a358-4ee1483e2de8)
  (lib_3d_model none)
  (position 81.0 -37.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 34993a6c-6bcd-4a52-be21-265301f90976 (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 81.0 -35.75) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
  (stroke_text 8664d080-1b06-4124-981c-2fa721479afa (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 81.0 -39.25) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
 )
 (device fa699f55-aa8c-4f8e-ae23-47f51683b51b
  (lib_device 21b0f6b9-144b-4b48-a361-1f53f2c45232)
  (lib_footprint 31f79c8e-7f56-4ec8-aff5-db9c77e43d39)
  (lib_3d_model none)
  (position 53.5 -6.5) (rotation 0.0) (flip false) (lock false)
  (stroke_text 69493fd1-3dd1-4b69-a92a-ad9e182655ff (layer top_values)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center top) (position 53.5 -8.0) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{VALUE}}")
  )
  (stroke_text a99f2113-a2cc-44be-bc65-6c27233ec3cc (layer top_names)
   (height 0.5) (stroke_width 0.1) (letter_spacing auto) (line_spacing auto)
   (align center bottom) (position 53.5 -5.0) (rotation 0.0)
   (auto_rotate true) (mirror false) (lock false) (value "{{NAME}}")
  )
 )
 (netsegment 00a53300-e75c-4330-bd3c-a878d17b4083
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via a01e0f6f-59f8-4003-821e-fc38a274dad1 (from top_cu) (to bot_cu)
   (position 49.5 -29.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 01332c6c-1983-489e-bc2c-319d6f9f954a
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 735cb93f-b164-403b-a6f5-2b8706949ec7 (from top_cu) (to bot_cu)
   (position 84.5 -17.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 03705d6e-7a98-4837-b4cb-0696c1ff3be6
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via cca4c24a-17a9-41f7-8189-b5984723e244 (from top_cu) (to bot_cu)
   (position 18.0 -39.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 056954ca-acce-49a1-bbfe-22756be9dd48
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 8a515a4c-56c4-4a87-a4c3-b8a1554b1fca (from top_cu) (to bot_cu)
   (position 44.5 -65.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 06485034-b4f0-4c35-8a32-f9d700390a99
  (net bcc7f942-323c-4efa-9e9c-ce7e7abce278)
  (via aae6fdaf-ca0b-4081-ac88-4fdca7db10ca (from top_cu) (to bot_cu)
   (position 50.0 -35.0) (size 0.7) (drill 0.3) (exposure off)
  )
  (junction c85420c8-3906-491d-9c28-53c9ca296f2d (position 26.65 -11.65))
  (junction e5591913-dc9d-4656-b3b0-969b14592a31 (position 50.0 -38.5))
  (junction ee0fc759-ee44-4574-bff8-6893b9217d50 (position 50.0 -37.925))
  (trace 08370bf3-ace2-4c84-b092-86def7102928 (layer bot_cu) (width 0.5)
   (from (junction c85420c8-3906-491d-9c28-53c9ca296f2d))
   (to (via aae6fdaf-ca0b-4081-ac88-4fdca7db10ca))
  )
  (trace 38249c0a-0d55-409a-be8e-8213c1030437 (layer top_cu) (width 0.5)
   (from (via aae6fdaf-ca0b-4081-ac88-4fdca7db10ca))
   (to (junction ee0fc759-ee44-4574-bff8-6893b9217d50))
  )
  (trace 4f9523bd-a582-4b27-88a1-6baf3d98bea5 (layer top_cu) (width 0.5)
   (from (junction e5591913-dc9d-4656-b3b0-969b14592a31))
   (to (device 35099bc2-2343-44fe-8368-b22441aa6a3c) (pad 1255a445-c357-4495-a024-49447ed8945f))
  )
  (trace 6544e2e4-15b8-4000-be06-28c171863eb9 (layer top_cu) (width 0.5)
   (from (junction ee0fc759-ee44-4574-bff8-6893b9217d50))
   (to (device 6c91ba05-d8ee-4290-87f9-3de392a15d35) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace c0a8af56-f5c2-44f8-b269-39630920b1f2 (layer bot_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad 59933ce5-6651-4978-b9d1-47cd21d6d631))
   (to (junction c85420c8-3906-491d-9c28-53c9ca296f2d))
  )
  (trace c3e4519e-8558-4237-8503-3dabcee68078 (layer top_cu) (width 0.5)
   (from (junction ee0fc759-ee44-4574-bff8-6893b9217d50))
   (to (junction e5591913-dc9d-4656-b3b0-969b14592a31))
  )
 )
 (netsegment 066a757d-3d8f-4170-938e-28c2df24a608
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 0d42fca5-bc2d-4865-ac19-5c5a3acc16d0 (from top_cu) (to bot_cu)
   (position 22.5 -49.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 06e66f11-c63f-42f1-bafb-7d31128059cf
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 39f41d9a-2245-42b8-9427-8534e4bfd865 (from top_cu) (to bot_cu)
   (position 115.0 -39.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 0775f840-f9f2-4d63-9011-f7e4354a021e
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via df5872ac-06fd-4113-b557-3e44a246daae (from top_cu) (to bot_cu)
   (position 22.5 -50.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 099209c3-404a-4367-aca4-c405acd3e0fd
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 1aa5a4db-634b-41f8-80cf-e6cef206e064 (from top_cu) (to bot_cu)
   (position 49.5 -54.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 0afe4cd3-f91e-461e-adc4-392a95dfd722
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 3c834426-09f9-4af2-94ca-1ddadddb1a20 (from top_cu) (to bot_cu)
   (position 97.0 -22.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 0cb9ea06-2cb0-4642-b790-8dee6b682f82
  (net 510139b0-5b7b-4254-8b9d-003afc9e5274)
  (junction a0da0bd6-14c2-458b-9eb1-e14fefb7adff (position 31.234826 -33.5))
  (junction b58de4c0-c77e-4093-8074-c8e3290e31c3 (position 31.258397 -33.476429))
  (trace 2e27937a-64f0-4ee4-96a6-de93f7d2d4a1 (layer top_cu) (width 0.3)
   (from (junction a0da0bd6-14c2-458b-9eb1-e14fefb7adff))
   (to (junction b58de4c0-c77e-4093-8074-c8e3290e31c3))
  )
  (trace 561a6b10-e83d-45df-b7a5-33f2c3ee1354 (layer top_cu) (width 0.3)
   (from (junction b58de4c0-c77e-4093-8074-c8e3290e31c3))
   (to (device 05fb3408-c9fb-401b-b8bf-a72c462cae4c) (pad a29e8718-e513-4e04-a066-9c16eb98db2d))
  )
  (trace c29d8435-30e5-4a55-a619-165cdb4106e3 (layer top_cu) (width 0.3)
   (from (junction b58de4c0-c77e-4093-8074-c8e3290e31c3))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad d3c8b567-b538-4b79-aeaf-321e6990de8b))
  )
  (trace eaf9b4b6-d13f-452d-bfe7-b90d7ae35df9 (layer top_cu) (width 0.3)
   (from (device 9eac99f9-953f-42e3-ab87-ec108ec4bd03) (pad 5eb43e50-29c4-47aa-8a6d-60999d8f4729))
   (to (junction a0da0bd6-14c2-458b-9eb1-e14fefb7adff))
  )
 )
 (netsegment 1b1aa884-9697-4c0b-8272-e1f2a5885aff
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via cdbe9b53-bf08-4f3d-a8b1-22c6e1095c9d (from top_cu) (to bot_cu)
   (position 121.0 -50.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 1bef11a5-abfa-4547-a113-e1cf4a096304
  (net e796368f-2bc3-4e6b-8ec6-4221cd57f218)
  (junction 3ce86c80-7345-4a28-bc9f-5e7b391d2279 (position 42.0 -48.7))
  (junction 761e8de3-5a0e-4bb2-8223-104cca4be61d (position 42.0 -17.0))
  (junction 9b2fecc1-0b67-4cf1-9578-938ea16759f9 (position 39.35 -14.35))
  (trace 043c0245-7e6b-4e1d-b2e9-e92ddc8a3eaa (layer top_cu) (width 0.3)
   (from (junction 9b2fecc1-0b67-4cf1-9578-938ea16759f9))
   (to (device a594577f-b967-41dd-9ba3-7401df235978) (pad 2538d74b-9771-4e55-bf42-0b7972246509))
  )
  (trace 09fab1c1-0a14-4fde-a1f9-dfae2841b59d (layer top_cu) (width 0.3)
   (from (junction 761e8de3-5a0e-4bb2-8223-104cca4be61d))
   (to (junction 9b2fecc1-0b67-4cf1-9578-938ea16759f9))
  )
  (trace 2741a7c4-561f-43d5-a25c-5b2ec0a891e5 (layer top_cu) (width 0.3)
   (from (device c32fb448-94d5-423f-9d08-5575b3bdf98c) (pad 53335aba-e8c4-477c-bba2-0cfc30c55d2e))
   (to (junction 3ce86c80-7345-4a28-bc9f-5e7b391d2279))
  )
  (trace d761290b-27df-4969-adc9-4bfed4ddb40f (layer top_cu) (width 0.3)
   (from (junction 3ce86c80-7345-4a28-bc9f-5e7b391d2279))
   (to (junction 761e8de3-5a0e-4bb2-8223-104cca4be61d))
  )
 )
 (netsegment 26455137-b372-4ea2-8eb5-4acd36543bb7
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 44bb516a-3c7e-42a6-b350-bce028f96638 (from top_cu) (to bot_cu)
   (position 34.0 -37.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 3102babe-88f0-4cd7-a2c8-40ccb40f9423
  (net 062006c5-6ec3-4dd1-aabd-19940323e782)
  (via 68ac8071-34fb-4387-ae6c-a79674ff010f (from top_cu) (to bot_cu)
   (position 79.5 -8.5) (size 0.7) (drill 0.3) (exposure off)
  )
  (junction 13f9f9b3-9ba9-4059-903a-f1d0a8eaec9a (position 79.5 -5.5))
  (junction bd72fde5-a3ed-4e0d-b993-178e3db5a9b0 (position 29.34 -1.0))
  (junction fff2447d-9adc-415d-a401-81547698304a (position 75.0 -1.0))
  (trace 2ed4e795-f1d8-4624-914c-4b1b61ecec0e (layer bot_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad 1bdee6bb-3a6e-4c67-8fa3-dc9d43ec6e35))
   (to (junction bd72fde5-a3ed-4e0d-b993-178e3db5a9b0))
  )
  (trace 4375778c-597c-4e38-804b-0c07e74c3e7d (layer bot_cu) (width 0.5)
   (from (junction bd72fde5-a3ed-4e0d-b993-178e3db5a9b0))
   (to (junction fff2447d-9adc-415d-a401-81547698304a))
  )
  (trace 61c7a92f-c894-42aa-8af9-4bdfcc894f33 (layer bot_cu) (width 0.5)
   (from (junction 13f9f9b3-9ba9-4059-903a-f1d0a8eaec9a))
   (to (via 68ac8071-34fb-4387-ae6c-a79674ff010f))
  )
  (trace 84dbd80b-af2f-4479-b32b-d5ee185db0ad (layer top_cu) (width 0.5)
   (from (device c1e03e9a-25ac-4b1c-ae4a-e3d78e085399) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
   (to (device b679c88a-a60d-4dc5-a265-dc34eccdc1b0) (pad 1255a445-c357-4495-a024-49447ed8945f))
  )
  (trace 85ee3bea-b5cc-4990-a874-3c11d6bebff0 (layer bot_cu) (width 0.5)
   (from (junction fff2447d-9adc-415d-a401-81547698304a))
   (to (junction 13f9f9b3-9ba9-4059-903a-f1d0a8eaec9a))
  )
  (trace c321819d-5cdb-4423-932e-d0a2a09cdbc0 (layer top_cu) (width 0.5)
   (from (device c1e03e9a-25ac-4b1c-ae4a-e3d78e085399) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
   (to (via 68ac8071-34fb-4387-ae6c-a79674ff010f))
  )
 )
 (netsegment 31aaba03-9e3b-42b0-967c-0616823a79ce
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 9a7fd4a3-e6c4-4423-a138-8a74759958e3 (from top_cu) (to bot_cu)
   (position 35.0 -68.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 327add08-511b-44cf-a9ac-cadb379564d6
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 3a489804-e204-40a6-a6df-c035e20c44ee (from top_cu) (to bot_cu)
   (position 37.5 -25.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 32b2c1ed-2252-4b63-93d6-981bf4be3406
  (net d63ded29-0579-4d8b-a2dd-be5fa6ae9e3d)
  (via 2b2dd5a7-b04a-4b76-aced-31b89d3d10af (from top_cu) (to bot_cu)
   (position 77.5 -8.5) (size 0.7) (drill 0.3) (exposure off)
  )
  (junction 8531b8ba-b06a-4176-b487-f94f68a08b1b (position 74.0 -3.0))
  (junction 8d83a479-d10d-4a03-b834-8acc88c56c2d (position 77.5 -28.925))
  (junction a20efd65-9817-4a6b-a5f8-df6d3d1d98ea (position 77.5 -6.5))
  (junction bd96420f-452b-4690-a058-6350ba89f3f4 (position 34.96 -3.0))
  (trace 0abcc4e1-577b-4218-936c-8683a9122e33 (layer top_cu) (width 0.5)
   (from (junction 8d83a479-d10d-4a03-b834-8acc88c56c2d))
   (to (device e2c6eb62-ec6b-46b0-b57e-814a087ac89a) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace 426c5ba3-064f-49ba-9cd2-c3ae5b4c5125 (layer bot_cu) (width 0.5)
   (from (junction a20efd65-9817-4a6b-a5f8-df6d3d1d98ea))
   (to (via 2b2dd5a7-b04a-4b76-aced-31b89d3d10af))
  )
  (trace 5e9d49e9-d85e-4162-9291-8cb3598fd96f (layer bot_cu) (width 0.5)
   (from (junction bd96420f-452b-4690-a058-6350ba89f3f4))
   (to (junction 8531b8ba-b06a-4176-b487-f94f68a08b1b))
  )
  (trace 625aff46-91c2-4b54-b8f2-5c643bb95658 (layer bot_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad 7cf8675f-e543-466d-b548-15cbcf7de5aa))
   (to (junction bd96420f-452b-4690-a058-6350ba89f3f4))
  )
  (trace 8b4b0c71-c9d7-42e6-87d2-96cad0cd7b97 (layer bot_cu) (width 0.5)
   (from (junction 8531b8ba-b06a-4176-b487-f94f68a08b1b))
   (to (junction a20efd65-9817-4a6b-a5f8-df6d3d1d98ea))
  )
  (trace d6a482e1-ce12-4ead-ba16-c79851f37e09 (layer top_cu) (width 0.5)
   (from (device f6cb19ea-2420-4966-a665-144c8aea3a39) (pad 1255a445-c357-4495-a024-49447ed8945f))
   (to (device e2c6eb62-ec6b-46b0-b57e-814a087ac89a) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace f7ca80d2-1710-4d5e-a893-d0b8512c2d96 (layer top_cu) (width 0.5)
   (from (via 2b2dd5a7-b04a-4b76-aced-31b89d3d10af))
   (to (junction 8d83a479-d10d-4a03-b834-8acc88c56c2d))
  )
 )
 (netsegment 34e2a27e-b5b3-4d8d-a85d-94872b2671b0
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via d5a82c4f-3b1e-4eb3-afdd-aa77de444098 (from top_cu) (to bot_cu)
   (position 110.5 -20.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 3fc81e37-d332-41bd-b2c2-4927b74b7890
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via cab413f9-cf2a-437f-aaf1-95c489ec672e (from top_cu) (to bot_cu)
   (position 117.0 -65.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 41ce4bf0-a84f-45e5-adf0-0ccc4ca82e87
  (net 88b03d91-3993-4c36-b5d8-a20d2eb96ccc)
  (junction 29cf68c3-4840-48a7-9c8f-13b08c944800 (position 52.15 -43.65))
  (trace 2140c3c9-24cd-4038-a358-31ad1682068e (layer top_cu) (width 0.5)
   (from (junction 29cf68c3-4840-48a7-9c8f-13b08c944800))
   (to (device 9a2b9f0a-10b0-4bf4-ad17-11cbf48de9d4) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
  )
  (trace 269ac7e6-1528-46ab-acff-0a3f4a434b07 (layer top_cu) (width 0.5)
   (from (device 35099bc2-2343-44fe-8368-b22441aa6a3c) (pad 9847dc0f-c20b-4104-bd9f-66a17f7c3213))
   (to (junction 29cf68c3-4840-48a7-9c8f-13b08c944800))
  )
  (trace e24a55f6-97f7-4ee3-8a39-b62538f90442 (layer top_cu) (width 0.5)
   (from (device 9a2b9f0a-10b0-4bf4-ad17-11cbf48de9d4) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (device 72b5484a-906a-4e99-a49b-04dbf24cf835) (pad df2fd529-472d-4193-a31d-ad00f12273a7))
  )
 )
 (netsegment 44cfbf0a-e5c5-4f00-8f0e-683d429960c3
  (net 99d1572a-d0ac-4c5d-b055-32a1b8efd5cc)
  (junction 2cf462fd-8eae-42cb-9965-91c09006a9d7 (position 106.0 -53.5))
  (junction 3cd4b097-ef57-4d41-b083-e1d145ab2866 (position 122.0 -37.5))
  (junction 95099b59-d0fc-410b-8a4b-c20d3e8fc061 (position 86.0 -53.5))
  (junction e3a1393f-5319-4cee-9a87-78fefb58b992 (position 81.5 -19.0))
  (junction fb28a2a9-d0de-4ef7-b47d-497d9945cff8 (position 81.5 -49.0))
  (trace 22391ff6-b958-4e25-b7fa-4ddfbb29968e (layer bot_cu) (width 1.0)
   (from (junction 3cd4b097-ef57-4d41-b083-e1d145ab2866))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad 19736fbe-aa67-454b-8048-6bed372bb1a3))
  )
  (trace 404e6658-8101-44a9-8fab-648069b7ef5b (layer bot_cu) (width 1.0)
   (from (junction e3a1393f-5319-4cee-9a87-78fefb58b992))
   (to (junction fb28a2a9-d0de-4ef7-b47d-497d9945cff8))
  )
  (trace 49617f15-9fe2-490d-bb7c-20ab49f1ba3a (layer bot_cu) (width 1.0)
   (from (junction fb28a2a9-d0de-4ef7-b47d-497d9945cff8))
   (to (junction 95099b59-d0fc-410b-8a4b-c20d3e8fc061))
  )
  (trace 6133bcc7-539f-4837-bc05-c0cd710a2890 (layer bot_cu) (width 1.0)
   (from (junction 2cf462fd-8eae-42cb-9965-91c09006a9d7))
   (to (junction 3cd4b097-ef57-4d41-b083-e1d145ab2866))
  )
  (trace 8b7bf79d-5e2a-4b20-8946-4e841ed314be (layer bot_cu) (width 1.0)
   (from (junction 95099b59-d0fc-410b-8a4b-c20d3e8fc061))
   (to (junction 2cf462fd-8eae-42cb-9965-91c09006a9d7))
  )
  (trace 8c0f31b8-a96c-4ce1-af02-d3e16cc8eb78 (layer bot_cu) (width 1.0)
   (from (device 7ab90019-26ee-4ae5-b669-d978dfa62995) (pad 00b3a9a8-f5e1-4507-874a-38b9b198dd73))
   (to (junction e3a1393f-5319-4cee-9a87-78fefb58b992))
  )
 )
 (netsegment 4557c595-cbd5-419c-a8aa-af8524021c5a
  (net 6183b9b9-8433-4e01-9196-0ffe79bbf5f3)
  (via a02c8963-6553-46a2-b1e4-5addad9af1df (from top_cu) (to bot_cu)
   (position 78.5 -8.5) (size 0.7) (drill 0.3) (exposure off)
  )
  (junction 2dde4109-6959-4201-ba36-bf87d7da915f (position 74.5 -2.0))
  (junction 36dc90dd-b212-4462-a507-75ea5a6ba9f7 (position 78.5 -17.425))
  (junction 3dd19c8c-4150-451e-8fdf-f3a069048ed3 (position 78.5 -6.0))
  (junction 92a7514e-9fb0-4a68-8d89-2e27e928c388 (position 33.42 -2.0))
  (trace 00094244-48e3-46a5-a5fc-4c7c6fb7a961 (layer bot_cu) (width 0.5)
   (from (junction 3dd19c8c-4150-451e-8fdf-f3a069048ed3))
   (to (via a02c8963-6553-46a2-b1e4-5addad9af1df))
  )
  (trace 2703e2ef-1236-437e-ad58-8d2f296d75e1 (layer bot_cu) (width 0.5)
   (from (junction 92a7514e-9fb0-4a68-8d89-2e27e928c388))
   (to (junction 2dde4109-6959-4201-ba36-bf87d7da915f))
  )
  (trace 49359cc7-0ce7-424f-87a1-508e9f4b759a (layer bot_cu) (width 0.5)
   (from (junction 2dde4109-6959-4201-ba36-bf87d7da915f))
   (to (junction 3dd19c8c-4150-451e-8fdf-f3a069048ed3))
  )
  (trace 61c4e66e-44d9-452e-9063-a0480e018e82 (layer top_cu) (width 0.5)
   (from (junction 36dc90dd-b212-4462-a507-75ea5a6ba9f7))
   (to (device 1733362b-3bae-470b-9ba7-7a872bf41510) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace 74930f04-a740-4fac-9606-ccd2caecb5cb (layer top_cu) (width 0.5)
   (from (via a02c8963-6553-46a2-b1e4-5addad9af1df))
   (to (junction 36dc90dd-b212-4462-a507-75ea5a6ba9f7))
  )
  (trace 9a71d929-f394-4f85-8a73-1b388a3f052b (layer top_cu) (width 0.5)
   (from (device 1733362b-3bae-470b-9ba7-7a872bf41510) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
   (to (device d827ca0b-9f27-4a2e-a718-4fa07b329918) (pad 1255a445-c357-4495-a024-49447ed8945f))
  )
  (trace ce8d6159-0ebd-42bc-a1ac-c51943dc6c0a (layer bot_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad 60bda5c0-7edb-4f74-b8a4-e9e3bbecb626))
   (to (junction 92a7514e-9fb0-4a68-8d89-2e27e928c388))
  )
 )
 (netsegment 48cc3a6e-5b39-4de5-94e4-450e4da5a177
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 224b60fc-9246-421b-bb15-1d478143b445 (from top_cu) (to bot_cu)
   (position 16.0 -26.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 4f9c2385-6de2-4eed-b17f-ec43113d6a82
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 36a11669-5fea-4826-b0b3-73bb11d39ed7 (from top_cu) (to bot_cu)
   (position 69.0 -69.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 5289f52c-3c4c-4261-a0ab-f783bb349653
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 07b05401-59ed-47b4-a622-566ac56ab489 (from top_cu) (to bot_cu)
   (position 24.5 -49.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 53da86c4-9d90-488d-a15c-16350c6d393c
  (net d348e811-dd63-4199-a8b3-92572406c4ab)
  (junction 0dce481f-9938-458c-a3b3-00779dde0eb9 (position 43.0 -9.88))
  (junction 75e0eacc-0edd-4d25-97ac-d63553949384 (position 43.0 -53.0))
  (junction a0fccc2c-ff12-47c2-9ff7-155127448913 (position 42.0 -54.0))
  (junction a53fbcbf-7245-4f7b-b378-eb04535b0964 (position 40.1 -53.1))
  (junction e0a035bf-64dc-4c94-9f18-0b21af63b5df (position 41.0 -54.0))
  (trace 5485669a-3c13-47bf-bfc3-ca686a184638 (layer top_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad b9218a25-7bff-4f95-8e91-3dc42f81399c))
   (to (junction 0dce481f-9938-458c-a3b3-00779dde0eb9))
  )
  (trace 59831cfb-942a-478d-a990-5738a45c8ca0 (layer top_cu) (width 0.5)
   (from (junction a0fccc2c-ff12-47c2-9ff7-155127448913))
   (to (junction e0a035bf-64dc-4c94-9f18-0b21af63b5df))
  )
  (trace a93b2938-68e1-4da5-a705-7f3beca977a5 (layer top_cu) (width 0.5)
   (from (junction 75e0eacc-0edd-4d25-97ac-d63553949384))
   (to (junction a0fccc2c-ff12-47c2-9ff7-155127448913))
  )
  (trace bb30932b-9348-445f-bcd4-854a8a27d011 (layer top_cu) (width 0.5)
   (from (junction e0a035bf-64dc-4c94-9f18-0b21af63b5df))
   (to (junction a53fbcbf-7245-4f7b-b378-eb04535b0964))
  )
  (trace bbe3d7f8-f468-444b-a296-0388e64e338c (layer top_cu) (width 0.5)
   (from (junction 0dce481f-9938-458c-a3b3-00779dde0eb9))
   (to (junction 75e0eacc-0edd-4d25-97ac-d63553949384))
  )
  (trace df19f39a-1e42-441f-a670-0402522a346b (layer top_cu) (width 0.5)
   (from (junction a53fbcbf-7245-4f7b-b378-eb04535b0964))
   (to (device c32fb448-94d5-423f-9d08-5575b3bdf98c) (pad c2050dc2-f5d7-42bd-8d59-2adb6cfffeaa))
  )
 )
 (netsegment 53f0a5ba-bfc1-4032-b9fa-ee4a847518df
  (net 15ce32e9-5052-44a5-b7e0-de6b02b306b8)
  (junction 46bbcf31-69ae-4f48-8646-0fca535ad6a7 (position 52.149725 -56.149725))
  (trace 5c05cdd6-4c8f-4e56-9c39-17526e42247f (layer top_cu) (width 0.5)
   (from (device c30bf2b0-e5b2-4bcf-96a2-8aa3df6f25cd) (pad 9847dc0f-c20b-4104-bd9f-66a17f7c3213))
   (to (junction 46bbcf31-69ae-4f48-8646-0fca535ad6a7))
  )
  (trace 67d51717-eb65-4699-8049-0f7f87184042 (layer top_cu) (width 0.5)
   (from (junction 46bbcf31-69ae-4f48-8646-0fca535ad6a7))
   (to (device 9f4dcc83-1e4a-4ab3-b45b-17444fee35d6) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
  )
  (trace c91acf26-1550-447d-a2f8-0b73bbdeb102 (layer top_cu) (width 0.5)
   (from (device 9f4dcc83-1e4a-4ab3-b45b-17444fee35d6) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (device 003e5a09-081d-4b51-a79f-a99d94d66249) (pad df2fd529-472d-4193-a31d-ad00f12273a7))
  )
 )
 (netsegment 599e55b4-de8b-44ff-a1a7-86224263656f
  (net 92404067-50aa-4a1d-81fa-31d45eaf1b12)
  (junction 2dcb9ff4-7c04-45f9-925e-5e5fa4af47d1 (position 52.15 -18.65))
  (trace 9932b5a1-591c-48cc-9fe3-532f826e472a (layer top_cu) (width 0.5)
   (from (device ee778887-31b4-4f01-9018-a9d0bdad38b4) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (device 7ab90019-26ee-4ae5-b669-d978dfa62995) (pad df2fd529-472d-4193-a31d-ad00f12273a7))
  )
  (trace 9a0f3861-f15e-42ef-81ce-332a68337a11 (layer top_cu) (width 0.5)
   (from (junction 2dcb9ff4-7c04-45f9-925e-5e5fa4af47d1))
   (to (device ee778887-31b4-4f01-9018-a9d0bdad38b4) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
  )
  (trace a1f3ae2d-cb55-4b01-99f9-83a1943252e1 (layer top_cu) (width 0.5)
   (from (device a81cb96b-e5a8-4a52-bb1b-33e1a83cf458) (pad 9847dc0f-c20b-4104-bd9f-66a17f7c3213))
   (to (junction 2dcb9ff4-7c04-45f9-925e-5e5fa4af47d1))
  )
 )
 (netsegment 5c15358f-3b22-4fcb-adf7-22f1c7d83d82
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 92acf727-d794-4f5c-b605-bdb8ccfe7ecf (from top_cu) (to bot_cu)
   (position 132.5 -69.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 5d7afb66-bcb7-4999-8b5c-5644e402f8f3
  (net 8858ff8a-6d48-4a72-9d56-d48bb68c5886)
  (junction 3ca9d05f-4cf4-4f9d-b934-c703aa7c9d1f (position 115.9 -32.5))
  (trace 0708b80f-35f2-4f24-ab12-84078e0e6b74 (layer bot_cu) (width 1.0)
   (from (device 75d0d62e-62b5-40f2-b4b5-1318679c936a) (pad 00b3a9a8-f5e1-4507-874a-38b9b198dd73))
   (to (junction 3ca9d05f-4cf4-4f9d-b934-c703aa7c9d1f))
  )
  (trace 0f234869-49cb-400a-9e21-759fe063697e (layer bot_cu) (width 1.0)
   (from (junction 3ca9d05f-4cf4-4f9d-b934-c703aa7c9d1f))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad 7b14605f-785d-481a-9d0d-8cdabbd70312))
  )
 )
 (netsegment 5f464367-09b2-4f46-b626-5e69e9a2db7b
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via a1c9aecb-6efc-45fb-abca-714b9ee19232 (from top_cu) (to bot_cu)
   (position 68.5 -40.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 6165a4b3-1c9f-4069-b974-b84af995a8de
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 716c25af-8f64-4f39-82c4-2f18cec03304 (from top_cu) (to bot_cu)
   (position 38.0 -20.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 6605b17f-6b8b-4baa-91f4-39b368828c3f
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (junction 1b6af674-d66b-4d7b-811c-f6b0f7412a4c (position 33.5 -35.75))
  (junction 3d599458-e3f1-4e92-902c-921d890f7eda (position 33.0 -35.75))
  (junction 3e342cdf-f104-4ce3-9152-3684f1cada95 (position 32.25 -35.75))
  (junction 71e64d25-435a-4301-82d2-1385e02b6763 (position 33.75 -35.5))
  (trace 55b309c2-5fa6-4b7b-bdb0-4a6426062941 (layer top_cu) (width 0.3)
   (from (junction 3e342cdf-f104-4ce3-9152-3684f1cada95))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad f777d05d-8a7e-44bc-9ccf-96e9d47cd6f0))
  )
  (trace bae820c7-666f-45f0-b235-43ec4182cb48 (layer top_cu) (width 0.3)
   (from (junction 1b6af674-d66b-4d7b-811c-f6b0f7412a4c))
   (to (junction 71e64d25-435a-4301-82d2-1385e02b6763))
  )
  (trace da4fba42-e6b1-4bcf-aee1-e4dda206f239 (layer top_cu) (width 0.3)
   (from (junction 3d599458-e3f1-4e92-902c-921d890f7eda))
   (to (junction 1b6af674-d66b-4d7b-811c-f6b0f7412a4c))
  )
  (trace f95b8fdf-a313-476c-8250-2ac6fa594c6a (layer top_cu) (width 0.3)
   (from (junction 3d599458-e3f1-4e92-902c-921d890f7eda))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad 1f8aed33-86eb-473e-9fff-5ca425b02ddb))
  )
  (trace fc94462f-1451-4efc-839f-b64cbf9b1e3a (layer top_cu) (width 0.3)
   (from (junction 3d599458-e3f1-4e92-902c-921d890f7eda))
   (to (junction 3e342cdf-f104-4ce3-9152-3684f1cada95))
  )
 )
 (netsegment 67262076-d24e-4608-a6b9-f40acc22eb5e
  (net 8c869aee-5efd-4881-81d2-fa37b74485ea)
  (junction 3f0e7131-e900-4864-a8b9-39ce6a7a6dc8 (position 30.5 -40.5))
  (junction 4b43b16c-9544-452a-b116-997312c74765 (position 30.5 -38.5))
  (junction bcee23a6-eefc-4929-b988-b9156af2f64b (position 30.5 -46.0))
  (trace 07c2c1b3-2d77-4eb8-8ed4-c49471d5cb02 (layer top_cu) (width 1.0)
   (from (junction bcee23a6-eefc-4929-b988-b9156af2f64b))
   (to (device 5a823968-958d-4e08-ae30-8ee87cb53a9f) (pad 3341b336-6f70-407c-8cf2-62ee5b8d660a))
  )
  (trace 1ae845ac-ed7c-4d08-8fb3-112b0ff807ba (layer top_cu) (width 0.5)
   (from (device 2b11e799-b468-4c1b-94f2-b016b72ab792) (pad 40c1ac36-0911-4d9a-9109-8897d1953d94))
   (to (junction 3f0e7131-e900-4864-a8b9-39ce6a7a6dc8))
  )
  (trace 3b3eb709-bf62-4ac2-ba4b-d29af11df629 (layer top_cu) (width 0.3)
   (from (device 0f474324-9bc7-4322-8304-01e88a920696) (pad afc31e08-24d7-43db-955c-3d47a7b2551e))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad 49b7dd66-a2e0-4d4b-b947-5b506fd12d89))
  )
  (trace 491110fa-7676-447e-a6fa-fe5dbe4c73c6 (layer top_cu) (width 0.3)
   (from (device 0f474324-9bc7-4322-8304-01e88a920696) (pad afc31e08-24d7-43db-955c-3d47a7b2551e))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad d8ec911a-921f-4e39-b497-7581c2cbfc6a))
  )
  (trace 4c365658-7c68-4031-8bd7-5cc8f90a0be1 (layer top_cu) (width 1.0)
   (from (junction 3f0e7131-e900-4864-a8b9-39ce6a7a6dc8))
   (to (junction bcee23a6-eefc-4929-b988-b9156af2f64b))
  )
  (trace 7e42fe8a-3ab7-4f12-9fda-e8ede124388d (layer top_cu) (width 0.3)
   (from (device 0f474324-9bc7-4322-8304-01e88a920696) (pad afc31e08-24d7-43db-955c-3d47a7b2551e))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad ff85e090-199c-47f9-aacb-3b8aa7c10fda))
  )
  (trace 8aa61d20-c2b0-490f-b3c5-75e54a469b04 (layer top_cu) (width 1.0)
   (from (junction 3f0e7131-e900-4864-a8b9-39ce6a7a6dc8))
   (to (junction 4b43b16c-9544-452a-b116-997312c74765))
  )
  (trace c052b4cc-c0b7-4be6-a3e4-eed0c6d93fb6 (layer top_cu) (width 0.5)
   (from (junction 4b43b16c-9544-452a-b116-997312c74765))
   (to (device 19182516-3872-4ee7-8ad5-54ab3a974fcf) (pad 743b2b74-2a71-49ed-938d-23d70a81e3af))
  )
  (trace c8c79fc3-a372-4e2a-87d6-e8c9826ee427 (layer top_cu) (width 1.0)
   (from (junction 4b43b16c-9544-452a-b116-997312c74765))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad afc31e08-24d7-43db-955c-3d47a7b2551e))
  )
  (trace ce6fe3e9-eceb-4ab4-a023-382ca11cda15 (layer top_cu) (width 0.5)
   (from (device 551683f7-f0dc-4950-9fa0-9834115972fe) (pad 30e142f2-8bd0-4543-ae76-2b8f19715546))
   (to (junction bcee23a6-eefc-4929-b988-b9156af2f64b))
  )
 )
 (netsegment 6a6544c1-06f4-4ec0-849c-90fff3b10d73
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via a484c98b-7456-45e2-8d0d-1952c5e55771 (from top_cu) (to bot_cu)
   (position 22.5 -20.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 6f24b46b-ca86-44ab-82da-1ad81fb35736
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 1e713f17-f18d-4d68-a8f1-6b0502fb2ff3 (from top_cu) (to bot_cu)
   (position 118.0 -56.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 7186f20c-1be6-4931-a804-f66893f47ba1
  (net fa4a56c1-cc6a-428c-b9b2-ee888d670e7c)
  (junction 21a64b9d-ab78-4eb3-bc3d-8d2447c1e892 (position 81.149725 -38.649725))
  (trace 5c51e0a6-dc6e-4ce5-8bab-6326d1bc181e (layer top_cu) (width 0.5)
   (from (junction 21a64b9d-ab78-4eb3-bc3d-8d2447c1e892))
   (to (device 0a110ffa-5f43-443c-a85e-7bb140f43500) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
  )
  (trace 6f593d85-719d-4129-aa37-7c1ff708eb1d (layer top_cu) (width 0.5)
   (from (device 0a110ffa-5f43-443c-a85e-7bb140f43500) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (device 9b7ef3ec-66cc-4313-868c-7389eaf71af3) (pad df2fd529-472d-4193-a31d-ad00f12273a7))
  )
  (trace e0aa8045-07cb-41df-b305-e6177dfbcefe (layer top_cu) (width 0.5)
   (from (device f6cb19ea-2420-4966-a665-144c8aea3a39) (pad 9847dc0f-c20b-4104-bd9f-66a17f7c3213))
   (to (junction 21a64b9d-ab78-4eb3-bc3d-8d2447c1e892))
  )
 )
 (netsegment 728d4783-b6b4-43c3-992f-eb40378823b8
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via e6a0f00e-61db-41f1-996c-c320d4be0e33 (from top_cu) (to bot_cu)
   (position 123.5 -39.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 73be8013-ebec-42a7-9e67-afb63077ca7d
  (net 199b4cb6-a442-492b-bc10-39842b91d297)
  (via 4bcbc9de-4c18-4ae5-89b5-08ec03e5dbbd (from top_cu) (to bot_cu)
   (position 50.0 -23.0) (size 0.7) (drill 0.3) (exposure off)
  )
  (junction 184f8159-8177-4c9d-9631-1f50753fb6d8 (position 50.0 -26.0))
  (junction 2a4ab0c7-2a03-4afd-b2dc-abe4736fae8f (position 50.0 -25.425))
  (junction ccf4c93a-505e-4829-9748-6974d2602243 (position 43.42 -23.0))
  (trace 09d363aa-dcdf-4a86-9b84-fede810bca8a (layer bot_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad 2004e12a-bd8b-4099-a722-529db33e5545))
   (to (junction ccf4c93a-505e-4829-9748-6974d2602243))
  )
  (trace 5d0b4115-d876-47d9-bc15-c2ca0db06827 (layer top_cu) (width 0.5)
   (from (via 4bcbc9de-4c18-4ae5-89b5-08ec03e5dbbd))
   (to (junction 2a4ab0c7-2a03-4afd-b2dc-abe4736fae8f))
  )
  (trace 7b82be06-24f6-443d-a4cf-c7de4a2ddcd2 (layer top_cu) (width 0.5)
   (from (junction 2a4ab0c7-2a03-4afd-b2dc-abe4736fae8f))
   (to (device e16a780c-11c3-4b8f-a2de-06133720f133) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace 8f65a1ef-6ee8-4eec-aacd-0830808c46c0 (layer top_cu) (width 0.5)
   (from (junction 2a4ab0c7-2a03-4afd-b2dc-abe4736fae8f))
   (to (junction 184f8159-8177-4c9d-9631-1f50753fb6d8))
  )
  (trace 92018bf8-6775-430b-867a-67e63f6bcfb3 (layer top_cu) (width 0.5)
   (from (junction 184f8159-8177-4c9d-9631-1f50753fb6d8))
   (to (device bf8c2ac6-6bef-4681-8d40-49de366fb199) (pad 1255a445-c357-4495-a024-49447ed8945f))
  )
  (trace c80901de-0e26-4709-96cc-8ac5e7b893a0 (layer bot_cu) (width 0.5)
   (from (junction ccf4c93a-505e-4829-9748-6974d2602243))
   (to (via 4bcbc9de-4c18-4ae5-89b5-08ec03e5dbbd))
  )
 )
 (netsegment 7635f2bd-f07d-4612-be63-bfad5e817934
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 6eac306c-e926-4889-baf6-8b8c0d210595 (from top_cu) (to bot_cu)
   (position 61.5 -14.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 76c1d9f6-bcba-457b-b8d2-06ff6b2533dc
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via e6747bc5-abda-4ccd-bf04-1b673ad18f5b (from top_cu) (to bot_cu)
   (position 80.0 -22.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 77393d74-9ca0-43c0-a8ae-dbd171bfc66d
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 7d9fd7e8-54c4-431d-9b30-56b5e31cf4f0 (from top_cu) (to bot_cu)
   (position 61.5 -39.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 778ed46f-80d1-4625-8c86-ba74d6ba361d
  (net d95e94f8-c344-4bf2-99a4-e37b1792ff2e)
  (junction 076fa59d-f49c-4f07-bdd5-74fc510b1e88 (position 107.0 -57.5))
  (junction 25f26186-56ea-4027-8e96-d040dfd184ce (position 85.0 -57.5))
  (junction 4d7a782b-5eba-4234-a52d-aad51a6e8d28 (position 77.5 -50.0))
  (junction 69aa3820-f8ba-4a2d-9f9a-4400e908a247 (position 117.0 -47.5))
  (junction 6d991af5-bb76-4f59-92c7-b46f1061ac6c (position 77.5 -40.0))
  (trace 166b92b3-80d6-478a-8796-1fc733249c71 (layer bot_cu) (width 1.0)
   (from (junction 076fa59d-f49c-4f07-bdd5-74fc510b1e88))
   (to (junction 69aa3820-f8ba-4a2d-9f9a-4400e908a247))
  )
  (trace 49c57d89-12a6-40ed-9d88-2932fa4ca4fa (layer bot_cu) (width 1.0)
   (from (device 72b5484a-906a-4e99-a49b-04dbf24cf835) (pad 00b3a9a8-f5e1-4507-874a-38b9b198dd73))
   (to (junction 6d991af5-bb76-4f59-92c7-b46f1061ac6c))
  )
  (trace 589f798c-3340-4a08-8ae4-3b096a8ec803 (layer bot_cu) (width 1.0)
   (from (junction 69aa3820-f8ba-4a2d-9f9a-4400e908a247))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad 17d12dbe-8084-4897-a9fd-96102801369e))
  )
  (trace a3666dfa-496d-4335-a654-92c337f2bacd (layer bot_cu) (width 1.0)
   (from (junction 4d7a782b-5eba-4234-a52d-aad51a6e8d28))
   (to (junction 25f26186-56ea-4027-8e96-d040dfd184ce))
  )
  (trace ac1b300a-a772-494a-8807-16d58d5f1629 (layer bot_cu) (width 1.0)
   (from (junction 6d991af5-bb76-4f59-92c7-b46f1061ac6c))
   (to (junction 4d7a782b-5eba-4234-a52d-aad51a6e8d28))
  )
  (trace c99f9898-e688-42b5-8f0f-8b29fe4fc2d2 (layer bot_cu) (width 1.0)
   (from (junction 25f26186-56ea-4027-8e96-d040dfd184ce))
   (to (junction 076fa59d-f49c-4f07-bdd5-74fc510b1e88))
  )
 )
 (netsegment 78a800c7-c99c-4dc9-88f4-ad7fe3ca34e9
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via eb53ea8a-1c92-4f6e-96ec-6f3875401fa1 (from top_cu) (to bot_cu)
   (position 110.5 -31.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 79ee1fdd-c3ae-40a4-b94d-dd1eb702ee94
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via f1a04cc5-af60-40f8-b51b-c5131d96e717 (from top_cu) (to bot_cu)
   (position 125.5 -8.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 7b0c1cc1-3691-4deb-8843-fae7c92104af
  (net fb074a31-08aa-4dd7-af11-2f1169c2a4bf)
  (junction 1c2e1d12-b806-419a-9bc2-1c7d33a79873 (position 41.0 -48.9))
  (junction 3e752822-4244-4d47-9da3-57f7b1807042 (position 36.81 -13.31))
  (junction 8c0ae14a-40a5-4902-955d-df0176eaf204 (position 41.0 -17.5))
  (trace 0b04ebbe-4740-4efc-887a-5616011f3dc4 (layer top_cu) (width 0.3)
   (from (device c32fb448-94d5-423f-9d08-5575b3bdf98c) (pad b334e506-d48b-4c00-beca-44dc574f9f06))
   (to (junction 1c2e1d12-b806-419a-9bc2-1c7d33a79873))
  )
  (trace 2988982b-63bd-42f7-b835-848d4d5dca8f (layer top_cu) (width 0.3)
   (from (junction 3e752822-4244-4d47-9da3-57f7b1807042))
   (to (device a594577f-b967-41dd-9ba3-7401df235978) (pad ee2c73cd-cd5e-4934-8115-eac1965e4d8e))
  )
  (trace 37783efc-d121-45fe-bb11-1d6aa7600e43 (layer top_cu) (width 0.3)
   (from (junction 1c2e1d12-b806-419a-9bc2-1c7d33a79873))
   (to (junction 8c0ae14a-40a5-4902-955d-df0176eaf204))
  )
  (trace fa6fe951-3d13-41d6-8680-022db15d2f43 (layer top_cu) (width 0.3)
   (from (junction 8c0ae14a-40a5-4902-955d-df0176eaf204))
   (to (junction 3e752822-4244-4d47-9da3-57f7b1807042))
  )
 )
 (netsegment 82b63a89-80b9-445d-a3b5-ef410f898278
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 764f37c8-20fb-44b6-b681-76a3fe87e346 (from top_cu) (to bot_cu)
   (position 61.0 -8.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 83d39910-2268-4324-bef5-e96fd1d6c469
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 5cfa58ea-c9b9-4ad2-9d17-de2e52f69c9e (from top_cu) (to bot_cu)
   (position 6.5 -35.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 85883706-7c8b-420e-8b9a-66a3b9d0c200
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 0019326e-811f-4772-a47f-37a84fe05516 (from top_cu) (to bot_cu)
   (position 122.0 -44.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 893cdd86-d0dd-4574-a094-12be0d1d9164
  (net c8880beb-7885-4113-b1bd-f5b52de09c2c)
  (junction bd1456e1-5310-40c3-a2ee-dfd21bc40f41 (position 108.4 -27.5))
  (trace 69a6600e-3a3e-4c44-b1ef-11bc81d11428 (layer bot_cu) (width 1.0)
   (from (junction bd1456e1-5310-40c3-a2ee-dfd21bc40f41))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad 9a68593d-2781-4fbc-8717-c9b2c8fa4f50))
  )
  (trace cc35ef76-e9ba-41e0-b218-0004861ff34b (layer bot_cu) (width 1.0)
   (from (device 9b7ef3ec-66cc-4313-868c-7389eaf71af3) (pad 00b3a9a8-f5e1-4507-874a-38b9b198dd73))
   (to (junction bd1456e1-5310-40c3-a2ee-dfd21bc40f41))
  )
 )
 (netsegment 90f6cc24-5b42-4c8b-8c21-31fc47b6b916
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 8d9fe412-8ea8-44fa-a29a-e5c95d86d670 (from top_cu) (to bot_cu)
   (position 24.5 -47.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 91f00231-5184-4ce8-a369-7192652447eb
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 5da8c43a-3237-4493-812a-e2eb9202e633 (from top_cu) (to bot_cu)
   (position 69.5 -14.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment 9393b546-61c3-4e32-b5b1-523d08289dfb
  (net d4626238-abe7-4a78-8a6a-f1d4678f245e)
  (junction 27b9dbff-d33a-4570-a2f7-2619d6d2cb67 (position 39.327107 -6.018734))
  (junction 5a18e9f3-bb9a-4371-a75a-87dcb29c356f (position 36.5 -31.0))
  (junction 75e790c1-4f85-46da-b70c-8a459d362e21 (position 39.0 -3.0))
  (junction 78a5f391-6343-410f-8e9d-2d4484a35c07 (position 33.019002 -22.53262))
  (junction 7f6c05fb-0202-4625-a5bb-d8ac357906ce (position 42.16 -6.5))
  (junction a6e37525-eb79-4581-907b-d905616711cb (position 20.5 -6.5))
  (junction a79d6875-532b-48b4-b291-c0c2a0f692a9 (position 21.5 -14.0))
  (junction bf84f74d-6cfc-406f-a9e5-d9fa7ceef434 (position 21.5 -3.0))
  (junction c99369fb-140a-4670-904e-7a2abd16c3da (position 30.0 -14.5))
  (junction cce03b28-da15-4cf3-b197-aa33efb6381d (position 36.5 -33.0))
  (junction e5c602cb-d34a-4d30-95b7-6045edf36c81 (position 30.5 -24.0))
  (junction f539b0d6-0197-4df4-a9ff-9f6db193909b (position 38.4 -33.0))
  (trace 028a0613-b10d-4160-b8d3-2037a371ef91 (layer top_cu) (width 0.3)
   (from (junction cce03b28-da15-4cf3-b197-aa33efb6381d))
   (to (junction f539b0d6-0197-4df4-a9ff-9f6db193909b))
  )
  (trace 03de1d97-4c74-4927-b9fc-e3364642a2d8 (layer top_cu) (width 0.3)
   (from (junction a79d6875-532b-48b4-b291-c0c2a0f692a9))
   (to (junction c99369fb-140a-4670-904e-7a2abd16c3da))
  )
  (trace 136abf43-b568-4d3f-80b7-e836f65fa0ad (layer top_cu) (width 1.0)
   (from (junction 7f6c05fb-0202-4625-a5bb-d8ac357906ce))
   (to (device a594577f-b967-41dd-9ba3-7401df235978) (pad a1cf62e8-b075-4c6e-aab3-5ac98aa998c8))
  )
  (trace 22fcce78-f194-4f75-8fda-ebd9502d281b (layer top_cu) (width 0.3)
   (from (junction e5c602cb-d34a-4d30-95b7-6045edf36c81))
   (to (device 05fb3408-c9fb-401b-b8bf-a72c462cae4c) (pad f1377a22-9cc7-46bc-b34d-88f8e54e1ee0))
  )
  (trace 2608d01c-fbe9-4040-9c89-9c951f3851b0 (layer top_cu) (width 0.3)
   (from (junction c99369fb-140a-4670-904e-7a2abd16c3da))
   (to (device ee87f9fc-38f5-4fec-9344-36b08952008e) (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b))
  )
  (trace 33540f29-7119-496b-96f5-3ae277f37dfe (layer top_cu) (width 0.3)
   (from (junction 27b9dbff-d33a-4570-a2f7-2619d6d2cb67))
   (to (device a594577f-b967-41dd-9ba3-7401df235978) (pad d6bf9808-e8fa-4e18-944d-cd4422121d30))
  )
  (trace 5a3faea7-5c7e-47df-91b5-4eb055d160ad (layer top_cu) (width 0.3)
   (from (junction bf84f74d-6cfc-406f-a9e5-d9fa7ceef434))
   (to (junction a6e37525-eb79-4581-907b-d905616711cb))
  )
  (trace 715cc268-37bd-47f2-9a01-9a374c4a14f0 (layer top_cu) (width 0.3)
   (from (junction 78a5f391-6343-410f-8e9d-2d4484a35c07))
   (to (device e6a6bef4-31c9-4997-b5f4-8e413fa676e2) (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b))
  )
  (trace 7491027f-6f1e-49e7-bf83-ab7313df372a (layer top_cu) (width 0.3)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad a1cf62e8-b075-4c6e-aab3-5ac98aa998c8))
   (to (junction 27b9dbff-d33a-4570-a2f7-2619d6d2cb67))
  )
  (trace 87206c2e-4061-4a99-9b9a-bc2d9b77aba0 (layer top_cu) (width 1.0)
   (from (device 05fb3408-c9fb-401b-b8bf-a72c462cae4c) (pad f1377a22-9cc7-46bc-b34d-88f8e54e1ee0))
   (to (junction 5a18e9f3-bb9a-4371-a75a-87dcb29c356f))
  )
  (trace 8797c1a3-cf90-4664-8fb0-d5b38f196f96 (layer top_cu) (width 0.3)
   (from (junction a6e37525-eb79-4581-907b-d905616711cb))
   (to (junction a79d6875-532b-48b4-b291-c0c2a0f692a9))
  )
  (trace 95ee37f6-6c2d-4c72-8733-a2ddb772f9be (layer top_cu) (width 1.0)
   (from (device fa699f55-aa8c-4f8e-ae23-47f51683b51b) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (junction 7f6c05fb-0202-4625-a5bb-d8ac357906ce))
  )
  (trace a1e8dd82-f177-4c26-a5b0-9b8c5b5937ee (layer top_cu) (width 0.3)
   (from (junction 75e790c1-4f85-46da-b70c-8a459d362e21))
   (to (junction bf84f74d-6cfc-406f-a9e5-d9fa7ceef434))
  )
  (trace aa551658-561c-4b33-9a15-5c94c618f166 (layer top_cu) (width 0.3)
   (from (junction 27b9dbff-d33a-4570-a2f7-2619d6d2cb67))
   (to (junction 75e790c1-4f85-46da-b70c-8a459d362e21))
  )
  (trace af34aba0-5ae9-4e52-bf17-f3309f07695f (layer top_cu) (width 0.3)
   (from (device c0f64001-86fb-4cad-914e-168f9a486196) (pad af3ead15-37a6-474d-8698-e4a22bd117de))
   (to (junction 78a5f391-6343-410f-8e9d-2d4484a35c07))
  )
  (trace bc273bb1-1ea3-4bd2-a815-4479c8d0ffef (layer top_cu) (width 1.0)
   (from (junction cce03b28-da15-4cf3-b197-aa33efb6381d))
   (to (device 1201fa9f-0c31-4146-83aa-d5afafce5184) (pad af8c5acf-1aca-4567-90cf-1de3ecb6f642))
  )
  (trace c065709f-997e-4237-828b-483f413ce47c (layer top_cu) (width 1.0)
   (from (junction cce03b28-da15-4cf3-b197-aa33efb6381d))
   (to (junction 5a18e9f3-bb9a-4371-a75a-87dcb29c356f))
  )
  (trace e00f8501-59dd-4268-b6ba-fe652c6fc930 (layer top_cu) (width 0.3)
   (from (device 31596a36-1fa4-4c96-bc6d-79771f142df4) (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b))
   (to (device e6a6bef4-31c9-4997-b5f4-8e413fa676e2) (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b))
  )
  (trace e149aa17-4006-41e0-860a-f42a58819208 (layer top_cu) (width 0.3)
   (from (device 98efd561-45f9-4931-8033-c38ccf5f5da5) (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b))
   (to (junction e5c602cb-d34a-4d30-95b7-6045edf36c81))
  )
  (trace ed6c7b39-a5a3-4ece-ac41-f7aa6e191ebb (layer top_cu) (width 0.3)
   (from (device ee87f9fc-38f5-4fec-9344-36b08952008e) (pad 3f47d5a1-4030-4758-9602-bc8f6e3cdd6b))
   (to (device c0f64001-86fb-4cad-914e-168f9a486196) (pad af3ead15-37a6-474d-8698-e4a22bd117de))
  )
  (trace f3c7d578-f8f5-42b8-8a45-f77ce8618bd4 (layer top_cu) (width 0.3)
   (from (junction 78a5f391-6343-410f-8e9d-2d4484a35c07))
   (to (junction e5c602cb-d34a-4d30-95b7-6045edf36c81))
  )
  (trace fe19e541-51ef-4b5e-8b8f-393d414b773e (layer top_cu) (width 0.3)
   (from (junction f539b0d6-0197-4df4-a9ff-9f6db193909b))
   (to (device ee7abbb7-1d4b-46e9-8e35-a146efe1261a) (pad 5eb43e50-29c4-47aa-8a6d-60999d8f4729))
  )
 )
 (netsegment 9ed9da98-5492-4e54-9e12-dd6c28ebfc21
  (net cb6c9b76-d1e8-4326-8da5-129806eb89d7)
  (junction 95521586-d443-4a37-bbb3-6356af91f9e1 (position 81.15 -13.65))
  (trace 1a3ad467-62a2-4931-a22a-f7046d2fcd5d (layer top_cu) (width 0.5)
   (from (junction 95521586-d443-4a37-bbb3-6356af91f9e1))
   (to (device 0e2a5346-270d-49d4-85d8-1cbb5fd36efc) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
  )
  (trace 4188d082-4910-4357-9aee-82fd057fccb3 (layer top_cu) (width 0.5)
   (from (device b679c88a-a60d-4dc5-a265-dc34eccdc1b0) (pad 9847dc0f-c20b-4104-bd9f-66a17f7c3213))
   (to (junction 95521586-d443-4a37-bbb3-6356af91f9e1))
  )
  (trace a3be861b-7bf6-4d30-b60d-b6b7dd33eb71 (layer top_cu) (width 0.5)
   (from (device 0e2a5346-270d-49d4-85d8-1cbb5fd36efc) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (device f699f4ae-d728-4a7e-bd2f-a08ce56eb74d) (pad df2fd529-472d-4193-a31d-ad00f12273a7))
  )
 )
 (netsegment 9f10e5e0-c033-44d0-a6de-dc13fe1f507d
  (net 5481c539-602f-4e26-a584-bcc189481de2)
  (via c6d594f8-37d4-433a-bb5b-a1c7833734ff (from top_cu) (to bot_cu)
   (position 50.0 -10.5) (size 0.7) (drill 0.3) (exposure off)
  )
  (junction 0a65d6de-34bd-4fa5-9e72-b808f97bbdc1 (position 50.0 -12.925))
  (junction 86d838ef-3c01-4d09-bb08-7ef02b77dd1e (position 36.0 -10.5))
  (junction 970aaa62-4960-4980-9858-f01c800d3b45 (position 50.0 -13.5))
  (trace 101500a2-33ad-466c-83f7-449893399817 (layer top_cu) (width 0.5)
   (from (via c6d594f8-37d4-433a-bb5b-a1c7833734ff))
   (to (junction 0a65d6de-34bd-4fa5-9e72-b808f97bbdc1))
  )
  (trace 2fff21f2-735a-409e-bb6b-be96e73ccabc (layer bot_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad 7137a201-82c3-413c-91d7-335906272dee))
   (to (junction 86d838ef-3c01-4d09-bb08-7ef02b77dd1e))
  )
  (trace 6c858d37-2339-4a71-af19-8404cf0a46ef (layer bot_cu) (width 0.5)
   (from (junction 86d838ef-3c01-4d09-bb08-7ef02b77dd1e))
   (to (via c6d594f8-37d4-433a-bb5b-a1c7833734ff))
  )
  (trace bfc73d66-a5b3-450b-820b-779a0f888006 (layer top_cu) (width 0.5)
   (from (junction 0a65d6de-34bd-4fa5-9e72-b808f97bbdc1))
   (to (device bac0dff3-b09f-49b9-a27c-4c6df328363d) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace db25e80c-4c8f-4eb9-8b44-22729ac7b261 (layer top_cu) (width 0.5)
   (from (junction 970aaa62-4960-4980-9858-f01c800d3b45))
   (to (device a81cb96b-e5a8-4a52-bb1b-33e1a83cf458) (pad 1255a445-c357-4495-a024-49447ed8945f))
  )
  (trace f1078901-68ae-43de-b574-3ffb923ee67e (layer top_cu) (width 0.5)
   (from (junction 0a65d6de-34bd-4fa5-9e72-b808f97bbdc1))
   (to (junction 970aaa62-4960-4980-9858-f01c800d3b45))
  )
 )
 (netsegment 9fb2d2b8-fc91-4cfa-a5f8-115af6ccf7c4
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via f86ed5e9-4264-42b7-9a6d-0276aa8bf6f1 (from top_cu) (to bot_cu)
   (position 5.5 -15.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment a1be8ab2-b4aa-4292-9dbd-e16ed5f9a128
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via bd371cd2-bb46-4ff9-a4c0-c232d97d2990 (from top_cu) (to bot_cu)
   (position 10.0 -8.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment a6cbe3df-bad1-4927-bb67-9042e6d29db0
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via de8b4f5c-53e7-48fd-9f6b-e39d08ee8642 (from top_cu) (to bot_cu)
   (position 70.0 -7.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment a7bd5c63-082a-4fe5-8e4c-25ffb4138ad1
  (net 41e89a55-4be5-4879-8a2e-1102c7f2074f)
  (junction 3b1336b4-0ea9-49a9-b601-79852fb08f96 (position 37.1 -34.4))
  (junction 894415db-fcec-45b7-a960-7b7cbe9e8692 (position 35.25 -36.25))
  (trace 4c3af7d2-e84c-49e1-bddd-50decddcbb0b (layer top_cu) (width 0.3)
   (from (device ee7abbb7-1d4b-46e9-8e35-a146efe1261a) (pad 743b2b74-2a71-49ed-938d-23d70a81e3af))
   (to (junction 3b1336b4-0ea9-49a9-b601-79852fb08f96))
  )
  (trace 742cc494-8401-40c7-9ad6-d860c795c181 (layer top_cu) (width 1.0)
   (from (device 1201fa9f-0c31-4146-83aa-d5afafce5184) (pad 79ee45af-e972-4d1d-8866-88585eb544f9))
   (to (device 33484fb5-97b5-4d9e-8135-f1cfb52a56e0) (pad af8c5acf-1aca-4567-90cf-1de3ecb6f642))
  )
  (trace 7558524e-2b28-4c9f-b803-c788b2151bd3 (layer top_cu) (width 0.3)
   (from (junction 3b1336b4-0ea9-49a9-b601-79852fb08f96))
   (to (device 1201fa9f-0c31-4146-83aa-d5afafce5184) (pad 79ee45af-e972-4d1d-8866-88585eb544f9))
  )
  (trace 7a35b497-87c3-4c43-bac9-672b326b1ce9 (layer top_cu) (width 0.3)
   (from (device 1201fa9f-0c31-4146-83aa-d5afafce5184) (pad 79ee45af-e972-4d1d-8866-88585eb544f9))
   (to (junction 894415db-fcec-45b7-a960-7b7cbe9e8692))
  )
  (trace e8f3c170-21b3-4427-b1d8-482dec6f1c8f (layer top_cu) (width 0.3)
   (from (junction 894415db-fcec-45b7-a960-7b7cbe9e8692))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad b817e6d8-412e-4d52-9ecb-d34c26b49e28))
  )
 )
 (netsegment aa868fd3-287d-42da-a421-16ac9a86aab9
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 88592508-f6db-482f-9b74-2a5546084ef9 (from top_cu) (to bot_cu)
   (position 41.5 -52.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment aeff5795-61c9-4e5a-b55b-b5e5c2683bd4
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via a2b02728-af0c-41dd-998d-fc0f871b2812 (from top_cu) (to bot_cu)
   (position 85.0 -5.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment b7cfefb7-0c73-43f9-98a5-bb48536219ab
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via f074b395-086d-48d6-b7e2-ace961ea9e2b (from top_cu) (to bot_cu)
   (position 85.5 -3.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment b9405f8b-1a66-41c1-b69a-2e55ef36047b
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via bc6b5aa2-46cc-4a24-b36c-63805ea7602d (from top_cu) (to bot_cu)
   (position 78.5 -56.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment bfef947a-375a-4ddf-a3e0-0370d5bcd9e7
  (net 2eb90cca-49df-406c-8b70-8455e2e83c7e)
  (junction 918b5c12-d487-4344-bcfb-ef9d4dacf865 (position 81.149725 -26.149725))
  (trace 17826e4e-7a0a-46d1-8022-027a9ce63951 (layer top_cu) (width 0.5)
   (from (device aa9c354e-5fc5-4ace-90b1-84edcb8a5769) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (device f3339ff3-9520-4dbd-a242-95fd88c470f7) (pad df2fd529-472d-4193-a31d-ad00f12273a7))
  )
  (trace b57fb46b-4db1-495b-b7a7-8c1455201b36 (layer top_cu) (width 0.5)
   (from (device d827ca0b-9f27-4a2e-a718-4fa07b329918) (pad 9847dc0f-c20b-4104-bd9f-66a17f7c3213))
   (to (junction 918b5c12-d487-4344-bcfb-ef9d4dacf865))
  )
  (trace b7de13ef-ad6c-4982-b8f9-e08b0acc5b80 (layer top_cu) (width 0.5)
   (from (junction 918b5c12-d487-4344-bcfb-ef9d4dacf865))
   (to (device aa9c354e-5fc5-4ace-90b1-84edcb8a5769) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
  )
 )
 (netsegment c8129265-c3f3-4716-b38e-eaea8945c101
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 309b566c-f42b-4b78-b2c6-81daad077d38 (from top_cu) (to bot_cu)
   (position 49.5 -16.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment c81b0c11-26ae-4b7b-9303-e5953be790c7
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via bcb23f88-45af-44b2-ba37-e2e236db6cbf (from top_cu) (to bot_cu)
   (position 98.5 -9.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment c91e2464-efd3-42bc-82f6-e7c3845d5739
  (net 9f25fab6-52ee-4670-9b5e-ab477e103419)
  (junction 06909a2f-6f69-4276-8996-ce0c53917421 (position 88.5 -18.5))
  (junction 07b4c737-fd68-4c2c-b6f0-abf07eb4409e (position 59.5 -11.0))
  (junction 207fd487-1455-493d-9160-876b770d8cca (position 62.5 -36.0))
  (junction 2e46909b-cf30-4dca-a2ea-6a6554ea1663 (position 84.5 -22.5))
  (junction 2ed46927-57b0-426a-be51-8eb362e6c391 (position 91.5 -18.5))
  (junction 375097e9-d947-44f7-8543-431645c44947 (position 93.5 -3.0))
  (junction 3b6c132e-0fe6-48d1-a2b9-2f2c177515f8 (position 62.5 -11.0))
  (junction 427f9e5d-7bf4-411e-9ec8-5d838dea77b5 (position 88.5 -43.5))
  (junction 4b2a5380-8933-4ead-9fab-3bd3117f21e0 (position 55.5 -15.0))
  (junction 4e7721f0-a054-47d7-b87b-9b681a2115e5 (position 62.5 -48.5))
  (junction 57dde6b5-35c4-4df0-b57c-ed3ab08f5074 (position 93.5 -29.0))
  (junction 5c023631-a808-43cb-8c4e-41f10a5b3e89 (position 70.0 -1.0))
  (junction 6138a87d-5275-408d-94c8-ee771f78efe8 (position 88.5 -31.0))
  (junction 6296672f-afcc-404e-9d50-0a170a298c9d (position 84.5 -10.0))
  (junction 6b52217a-5a7f-4ce2-9761-51c92a157659 (position 88.5 -6.0))
  (junction 6d359115-59f7-4e6f-913d-45043cdcffeb (position 64.5 -9.0))
  (junction 6f940472-4cb3-48be-8563-bcf4c5efc4d3 (position 84.5 -35.0))
  (junction 77e42a50-07b8-4204-ac7e-33c7d53a131f (position 55.5 -27.5))
  (junction 988fe514-fc2c-464e-b496-b839cad07123 (position 59.5 -48.5))
  (junction 991cb8c5-3fa3-4955-b1c6-4f2d075004de (position 59.5 -36.0))
  (junction a1f3e5c1-c3a7-4a6d-b11a-400ba2111692 (position 64.5 -6.5))
  (junction a4d912f3-d2bc-4bb5-b761-51f8c1c696a2 (position 55.5 -40.0))
  (junction adcb04b9-ea52-4ec1-b926-9d0438029fc3 (position 91.5 -6.0))
  (junction b342d2cc-fffe-4cbc-acae-8dd2ef79adc9 (position 93.5 -16.5))
  (junction b445676f-427f-4f7f-8cda-9e733a5c7972 (position 93.5 -4.0))
  (junction b55a60c0-c4dd-4917-b47f-6a81ad1ce8c9 (position 62.5 -23.5))
  (junction b8cf8366-c1f0-4185-ab00-edace97b3660 (position 64.5 -8.0))
  (junction bbe413fc-3f0e-47bd-a01c-35dcdd0a921a (position 59.5 -23.5))
  (junction bf99d16d-6017-4d9c-8958-a4a1a277f9ab (position 64.5 -46.5))
  (junction c87b4cee-ddb3-494b-835c-4b00f93393e0 (position 91.5 -43.5))
  (junction d6522fc9-918a-4eb0-8ae5-622bcf2c8f06 (position 64.5 -21.5))
  (junction dfdf8f6f-8ca3-458b-945d-aa1814aa3a06 (position 84.5 -47.5))
  (junction ebc7b921-9ce9-4ad7-9f3f-16e263caf1d0 (position 64.5 -34.0))
  (junction f198f549-07a5-4b0e-8b4a-435088b0f087 (position 91.5 -31.0))
  (junction f1fbc8d6-0063-4cb6-82a3-d1ef884c9b18 (position 55.5 -52.5))
  (junction f31f4a33-cc85-410c-a198-5ea5833a2c22 (position 91.5 -1.0))
  (junction fb3db11c-5f13-4161-9951-bb443c23a941 (position 93.5 -41.5))
  (trace 053b843a-846b-4c2f-820b-ac96f0147404 (layer top_cu) (width 0.5)
   (from (junction 427f9e5d-7bf4-411e-9ec8-5d838dea77b5))
   (to (junction dfdf8f6f-8ca3-458b-945d-aa1814aa3a06))
  )
  (trace 0a2700ea-77f1-45e9-af77-94915c173a03 (layer top_cu) (width 0.5)
   (from (junction 6b52217a-5a7f-4ce2-9761-51c92a157659))
   (to (device f699f4ae-d728-4a7e-bd2f-a08ce56eb74d) (pad 55b9288c-1fc0-406b-90b7-500deb69a282))
  )
  (trace 0aa07a57-b4a5-4d23-a990-05daa6efccab (layer top_cu) (width 1.0)
   (from (junction c87b4cee-ddb3-494b-835c-4b00f93393e0))
   (to (junction fb3db11c-5f13-4161-9951-bb443c23a941))
  )
  (trace 12cb7f1a-285b-47ee-84c2-9737db3dec49 (layer top_cu) (width 0.5)
   (from (device 04c02e94-7b29-475e-b3fc-f0d3cf3d3fd4) (pad 3964b759-c663-4ddf-9871-c12962033185))
   (to (junction dfdf8f6f-8ca3-458b-945d-aa1814aa3a06))
  )
  (trace 1630d3ca-54ca-4d4c-8e47-b7fb7dab1e9e (layer top_cu) (width 1.0)
   (from (junction ebc7b921-9ce9-4ad7-9f3f-16e263caf1d0))
   (to (junction bf99d16d-6017-4d9c-8958-a4a1a277f9ab))
  )
  (trace 1a810573-2387-41ca-bce1-915293082183 (layer top_cu) (width 0.5)
   (from (junction 988fe514-fc2c-464e-b496-b839cad07123))
   (to (junction f1fbc8d6-0063-4cb6-82a3-d1ef884c9b18))
  )
  (trace 20ca2e39-4277-4507-a191-c1b9b88922b3 (layer top_cu) (width 1.0)
   (from (junction 6d359115-59f7-4e6f-913d-45043cdcffeb))
   (to (junction 3b6c132e-0fe6-48d1-a2b9-2f2c177515f8))
  )
  (trace 20f2aead-ba74-4130-a727-5846662feae3 (layer top_cu) (width 0.5)
   (from (junction 07b4c737-fd68-4c2c-b6f0-abf07eb4409e))
   (to (junction 4b2a5380-8933-4ead-9fab-3bd3117f21e0))
  )
  (trace 2380bf17-f165-4b68-8543-38bb87da5e4e (layer top_cu) (width 0.5)
   (from (device aa9c354e-5fc5-4ace-90b1-84edcb8a5769) (pad 3964b759-c663-4ddf-9871-c12962033185))
   (to (junction 2e46909b-cf30-4dca-a2ea-6a6554ea1663))
  )
  (trace 23ccd2e5-f67f-4fca-8b19-b124c082b9ca (layer top_cu) (width 0.5)
   (from (junction 07b4c737-fd68-4c2c-b6f0-abf07eb4409e))
   (to (device 7ab90019-26ee-4ae5-b669-d978dfa62995) (pad 55b9288c-1fc0-406b-90b7-500deb69a282))
  )
  (trace 267f49e5-34a5-43f7-b152-97c8a5e97a18 (layer top_cu) (width 1.0)
   (from (junction 988fe514-fc2c-464e-b496-b839cad07123))
   (to (junction 4e7721f0-a054-47d7-b87b-9b681a2115e5))
  )
  (trace 2f2632f8-30ca-4155-b95b-e4d89dbb8395 (layer top_cu) (width 0.5)
   (from (device c2ad6a93-1320-4b1c-9d59-cd319f1eb66f) (pad 3964b759-c663-4ddf-9871-c12962033185))
   (to (junction 77e42a50-07b8-4204-ac7e-33c7d53a131f))
  )
  (trace 40699fe9-8596-49a4-90ad-42673c6d55db (layer top_cu) (width 1.0)
   (from (junction 4e7721f0-a054-47d7-b87b-9b681a2115e5))
   (to (junction bf99d16d-6017-4d9c-8958-a4a1a277f9ab))
  )
  (trace 56b492ab-377b-403a-96c0-e39d03362555 (layer top_cu) (width 1.0)
   (from (junction b342d2cc-fffe-4cbc-acae-8dd2ef79adc9))
   (to (junction 57dde6b5-35c4-4df0-b57c-ed3ab08f5074))
  )
  (trace 5a76957b-83fb-4da3-8c0a-d4aacc4767a3 (layer top_cu) (width 0.5)
   (from (junction 6b52217a-5a7f-4ce2-9761-51c92a157659))
   (to (junction 6296672f-afcc-404e-9d50-0a170a298c9d))
  )
  (trace 5c412f6c-105e-43eb-ad9a-0c3d6cd22795 (layer top_cu) (width 0.5)
   (from (device 0e2a5346-270d-49d4-85d8-1cbb5fd36efc) (pad 3964b759-c663-4ddf-9871-c12962033185))
   (to (junction 6296672f-afcc-404e-9d50-0a170a298c9d))
  )
  (trace 5c50b5a9-abe9-4cb9-96f0-0eb5e5d8ee19 (layer top_cu) (width 1.0)
   (from (junction bbe413fc-3f0e-47bd-a01c-35dcdd0a921a))
   (to (junction b55a60c0-c4dd-4917-b47f-6a81ad1ce8c9))
  )
  (trace 6b80205d-233c-42db-a157-1fde757f7f61 (layer top_cu) (width 0.5)
   (from (junction 991cb8c5-3fa3-4955-b1c6-4f2d075004de))
   (to (junction a4d912f3-d2bc-4bb5-b761-51f8c1c696a2))
  )
  (trace 70f0d427-b1f4-402a-8ffc-c51da71d3519 (layer top_cu) (width 0.5)
   (from (junction 06909a2f-6f69-4276-8996-ce0c53917421))
   (to (device f3339ff3-9520-4dbd-a242-95fd88c470f7) (pad 55b9288c-1fc0-406b-90b7-500deb69a282))
  )
  (trace 71c6831f-75cd-4e43-9be1-bf4a6f7938bd (layer top_cu) (width 1.0)
   (from (junction 57dde6b5-35c4-4df0-b57c-ed3ab08f5074))
   (to (junction fb3db11c-5f13-4161-9951-bb443c23a941))
  )
  (trace 730311e3-88e3-4231-9bec-bfdadcaaf732 (layer top_cu) (width 1.0)
   (from (junction 6138a87d-5275-408d-94c8-ee771f78efe8))
   (to (junction f198f549-07a5-4b0e-8b4a-435088b0f087))
  )
  (trace 7a09349c-ed13-404c-be46-3215f24026da (layer top_cu) (width 1.0)
   (from (junction 6d359115-59f7-4e6f-913d-45043cdcffeb))
   (to (junction d6522fc9-918a-4eb0-8ae5-622bcf2c8f06))
  )
  (trace 7abad3e6-a3df-4766-b232-6f34cba99e20 (layer top_cu) (width 1.0)
   (from (junction 5c023631-a808-43cb-8c4e-41f10a5b3e89))
   (to (junction a1f3e5c1-c3a7-4a6d-b11a-400ba2111692))
  )
  (trace 7da57763-dd78-4a1c-a73f-84e0225670b2 (layer top_cu) (width 1.0)
   (from (junction d6522fc9-918a-4eb0-8ae5-622bcf2c8f06))
   (to (junction ebc7b921-9ce9-4ad7-9f3f-16e263caf1d0))
  )
  (trace 84c0e58d-b98b-4ce0-a03d-b42d5260b4fc (layer top_cu) (width 1.0)
   (from (junction f31f4a33-cc85-410c-a198-5ea5833a2c22))
   (to (junction 5c023631-a808-43cb-8c4e-41f10a5b3e89))
  )
  (trace 869673b0-f399-4d86-98e4-8d5780b42f85 (layer top_cu) (width 0.5)
   (from (junction bbe413fc-3f0e-47bd-a01c-35dcdd0a921a))
   (to (device 9c759720-44cf-4b19-b8b1-98adb63935ab) (pad 55b9288c-1fc0-406b-90b7-500deb69a282))
  )
  (trace 8d9b580b-02bd-4030-a500-872edc1b559a (layer top_cu) (width 0.5)
   (from (junction 427f9e5d-7bf4-411e-9ec8-5d838dea77b5))
   (to (device 75d0d62e-62b5-40f2-b4b5-1318679c936a) (pad 55b9288c-1fc0-406b-90b7-500deb69a282))
  )
  (trace 918142d7-cb8a-4c6e-b6e8-dbf2e6f3c3c1 (layer top_cu) (width 1.0)
   (from (junction 2ed46927-57b0-426a-be51-8eb362e6c391))
   (to (junction b342d2cc-fffe-4cbc-acae-8dd2ef79adc9))
  )
  (trace 9397c234-90c0-4faa-9872-494110973571 (layer top_cu) (width 1.0)
   (from (junction a1f3e5c1-c3a7-4a6d-b11a-400ba2111692))
   (to (junction b8cf8366-c1f0-4185-ab00-edace97b3660))
  )
  (trace 9665b464-8ca9-4e0c-ba25-278f13a722b7 (layer top_cu) (width 0.5)
   (from (junction 988fe514-fc2c-464e-b496-b839cad07123))
   (to (device 003e5a09-081d-4b51-a79f-a99d94d66249) (pad 55b9288c-1fc0-406b-90b7-500deb69a282))
  )
  (trace 97197180-635b-4cd1-8e9e-4ce13c8ab5bc (layer top_cu) (width 1.0)
   (from (junction f198f549-07a5-4b0e-8b4a-435088b0f087))
   (to (junction 57dde6b5-35c4-4df0-b57c-ed3ab08f5074))
  )
  (trace 99aa9bec-4116-479d-909f-806a2425d38b (layer top_cu) (width 0.5)
   (from (device 0a110ffa-5f43-443c-a85e-7bb140f43500) (pad 3964b759-c663-4ddf-9871-c12962033185))
   (to (junction 6f940472-4cb3-48be-8563-bcf4c5efc4d3))
  )
  (trace 9baca843-20ba-4346-9ad9-ce4542502a56 (layer top_cu) (width 1.0)
   (from (junction 375097e9-d947-44f7-8543-431645c44947))
   (to (junction f31f4a33-cc85-410c-a198-5ea5833a2c22))
  )
  (trace 9c8ef8df-c635-4801-af22-fd7be33ec812 (layer top_cu) (width 1.0)
   (from (junction 07b4c737-fd68-4c2c-b6f0-abf07eb4409e))
   (to (junction 3b6c132e-0fe6-48d1-a2b9-2f2c177515f8))
  )
  (trace a3db2655-22e2-4d0c-8111-425ab5a81190 (layer top_cu) (width 1.0)
   (from (junction b445676f-427f-4f7f-8cda-9e733a5c7972))
   (to (junction 375097e9-d947-44f7-8543-431645c44947))
  )
  (trace a3e02258-2a3b-41b8-bb7a-832759d0db9e (layer top_cu) (width 1.0)
   (from (junction 6b52217a-5a7f-4ce2-9761-51c92a157659))
   (to (junction adcb04b9-ea52-4ec1-b926-9d0438029fc3))
  )
  (trace a68d84a1-17f5-48c2-b252-6e78e1bb36cb (layer top_cu) (width 1.0)
   (from (junction 427f9e5d-7bf4-411e-9ec8-5d838dea77b5))
   (to (junction c87b4cee-ddb3-494b-835c-4b00f93393e0))
  )
  (trace ad1f8b43-9550-4910-a8ef-b18add6079b3 (layer top_cu) (width 1.0)
   (from (junction a1f3e5c1-c3a7-4a6d-b11a-400ba2111692))
   (to (device fa699f55-aa8c-4f8e-ae23-47f51683b51b) (pad 3964b759-c663-4ddf-9871-c12962033185))
  )
  (trace ae23fae5-e5cb-4910-b01c-55fb789f44ae (layer top_cu) (width 1.0)
   (from (junction 6d359115-59f7-4e6f-913d-45043cdcffeb))
   (to (junction b8cf8366-c1f0-4185-ab00-edace97b3660))
  )
  (trace b5d0b0a5-49ff-452f-94ce-ab7da98e41e4 (layer top_cu) (width 1.0)
   (from (junction 06909a2f-6f69-4276-8996-ce0c53917421))
   (to (junction 2ed46927-57b0-426a-be51-8eb362e6c391))
  )
  (trace b68ee417-0594-4a79-8597-781de18651c9 (layer top_cu) (width 0.5)
   (from (device 9a2b9f0a-10b0-4bf4-ad17-11cbf48de9d4) (pad 3964b759-c663-4ddf-9871-c12962033185))
   (to (junction a4d912f3-d2bc-4bb5-b761-51f8c1c696a2))
  )
  (trace b7966e0f-12ca-4d4c-a26d-3304404e11aa (layer top_cu) (width 0.5)
   (from (device ee778887-31b4-4f01-9018-a9d0bdad38b4) (pad 3964b759-c663-4ddf-9871-c12962033185))
   (to (junction 4b2a5380-8933-4ead-9fab-3bd3117f21e0))
  )
  (trace b95ca2e5-b55a-42e0-8f02-2369388f7ca2 (layer top_cu) (width 0.5)
   (from (junction 6138a87d-5275-408d-94c8-ee771f78efe8))
   (to (device 9b7ef3ec-66cc-4313-868c-7389eaf71af3) (pad 55b9288c-1fc0-406b-90b7-500deb69a282))
  )
  (trace be02645a-fb77-459e-acb0-fcb18f89ed50 (layer top_cu) (width 1.0)
   (from (junction 6d359115-59f7-4e6f-913d-45043cdcffeb))
   (to (junction b8cf8366-c1f0-4185-ab00-edace97b3660))
  )
  (trace c10b647a-df96-4ef8-872c-b0b2ec4f9d85 (layer top_cu) (width 1.0)
   (from (junction b55a60c0-c4dd-4917-b47f-6a81ad1ce8c9))
   (to (junction d6522fc9-918a-4eb0-8ae5-622bcf2c8f06))
  )
  (trace c612b011-a4ea-406f-a696-881d7ea6576a (layer top_cu) (width 0.5)
   (from (junction bbe413fc-3f0e-47bd-a01c-35dcdd0a921a))
   (to (junction 77e42a50-07b8-4204-ac7e-33c7d53a131f))
  )
  (trace c812c259-92ce-4c45-bdbc-2145964ff9f3 (layer top_cu) (width 1.0)
   (from (junction 207fd487-1455-493d-9160-876b770d8cca))
   (to (junction ebc7b921-9ce9-4ad7-9f3f-16e263caf1d0))
  )
  (trace c960a468-7fbd-483e-826c-0718a857c404 (layer top_cu) (width 1.0)
   (from (junction 991cb8c5-3fa3-4955-b1c6-4f2d075004de))
   (to (junction 207fd487-1455-493d-9160-876b770d8cca))
  )
  (trace c9e50755-9648-42ac-8d6c-474a0762b362 (layer top_cu) (width 1.0)
   (from (junction b342d2cc-fffe-4cbc-acae-8dd2ef79adc9))
   (to (junction b445676f-427f-4f7f-8cda-9e733a5c7972))
  )
  (trace dbfb668c-2e9c-4835-a0e3-5610b8f90b30 (layer top_cu) (width 0.5)
   (from (junction 991cb8c5-3fa3-4955-b1c6-4f2d075004de))
   (to (device 72b5484a-906a-4e99-a49b-04dbf24cf835) (pad 55b9288c-1fc0-406b-90b7-500deb69a282))
  )
  (trace de8479d1-d582-4ab3-8433-1fa82851dfab (layer top_cu) (width 1.0)
   (from (junction adcb04b9-ea52-4ec1-b926-9d0438029fc3))
   (to (junction b445676f-427f-4f7f-8cda-9e733a5c7972))
  )
  (trace e83b9844-11a2-4bf1-ace1-ea4e26c2e316 (layer top_cu) (width 0.5)
   (from (junction 6138a87d-5275-408d-94c8-ee771f78efe8))
   (to (junction 6f940472-4cb3-48be-8563-bcf4c5efc4d3))
  )
  (trace f020813a-cdcb-47b2-81a8-dbd0bb42945c (layer top_cu) (width 0.5)
   (from (device 9f4dcc83-1e4a-4ab3-b45b-17444fee35d6) (pad 3964b759-c663-4ddf-9871-c12962033185))
   (to (junction f1fbc8d6-0063-4cb6-82a3-d1ef884c9b18))
  )
  (trace f8be1401-2c52-4111-a858-56dd64e2322c (layer top_cu) (width 0.5)
   (from (junction 06909a2f-6f69-4276-8996-ce0c53917421))
   (to (junction 2e46909b-cf30-4dca-a2ea-6a6554ea1663))
  )
 )
 (netsegment c935dedb-2968-4d60-8b09-b415a0c189d3
  (net 9927fbdf-6965-408e-a181-46a324b2f658)
  (junction 317bed1f-9bd1-4bfb-b1cd-2ae76bb00c59 (position 106.5 -22.5))
  (trace 824cea78-e591-4c3e-a2dc-a701f6949360 (layer bot_cu) (width 1.0)
   (from (junction 317bed1f-9bd1-4bfb-b1cd-2ae76bb00c59))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad ccb190a0-85d1-43d5-89a9-566e9e0f2625))
  )
  (trace b824c8d3-b935-482a-bb73-a8d1af7412b1 (layer bot_cu) (width 1.0)
   (from (device f3339ff3-9520-4dbd-a242-95fd88c470f7) (pad 00b3a9a8-f5e1-4507-874a-38b9b198dd73))
   (to (junction 317bed1f-9bd1-4bfb-b1cd-2ae76bb00c59))
  )
 )
 (netsegment cc68cc70-cf7c-4639-8880-5164bc17e323
  (net 72131bec-675d-4659-bde6-e289f4ef7282)
  (junction 632e8079-5bcb-4725-911b-cd7802bc0249 (position 32.5 -33.6))
  (trace 6153964b-6f5f-47d8-8aff-8099d29ab657 (layer top_cu) (width 0.3)
   (from (junction 632e8079-5bcb-4725-911b-cd7802bc0249))
   (to (device 8a8113d2-9964-4898-b9fa-6fd5b5f10f0c) (pad 5eb43e50-29c4-47aa-8a6d-60999d8f4729))
  )
  (trace 9901b500-7246-4a13-aeb4-c79583ccd8bd (layer top_cu) (width 0.3)
   (from (device 0f474324-9bc7-4322-8304-01e88a920696) (pad 2cd2211d-592a-4a0e-b25f-755fb4d08b02))
   (to (junction 632e8079-5bcb-4725-911b-cd7802bc0249))
  )
 )
 (netsegment d11b76e1-5193-4b51-b3bc-b418b91e680a
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 7e450197-abd5-46e2-a15c-96a283fa9c13 (from top_cu) (to bot_cu)
   (position 26.5 -49.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment d1aab6eb-d1fe-4774-a078-73a7de5dc0b9
  (net c5177c94-1a2c-47a1-b53e-1ee0bd6d30a1)
  (via 727eb94c-c29a-4e5f-b4d2-aede1d75f654 (from top_cu) (to bot_cu)
   (position 76.5 -8.5) (size 0.7) (drill 0.3) (exposure off)
  )
  (junction 53bef241-90b2-4295-9ac0-47df0a5684b2 (position 36.5 -4.0))
  (junction 64a5eaa1-4749-40b9-b975-bdfc60caed95 (position 76.5 -7.0))
  (junction c458d807-41d4-4243-8703-abc6eb713091 (position 76.5 -40.425))
  (junction eac4eecb-e41c-4623-b6f3-5d3b6ed63016 (position 73.5 -4.0))
  (trace 6d11acdc-5d10-4415-97df-02f80015f5aa (layer top_cu) (width 0.5)
   (from (via 727eb94c-c29a-4e5f-b4d2-aede1d75f654))
   (to (junction c458d807-41d4-4243-8703-abc6eb713091))
  )
  (trace 82289660-58b2-440b-a96f-d6608d3870e4 (layer top_cu) (width 0.5)
   (from (device 83aa6fb6-653b-4e28-a917-a411b326c0fb) (pad 1255a445-c357-4495-a024-49447ed8945f))
   (to (device c2acd434-b6cf-46b0-9bbd-a690c3276c17) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace a041a20a-c915-4d2e-b0f2-58c7812fb43d (layer bot_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad bc89606a-cfa8-400c-bec3-a791c8bba232))
   (to (junction 53bef241-90b2-4295-9ac0-47df0a5684b2))
  )
  (trace a2d9589d-6013-46e4-a870-9d5b09b71056 (layer bot_cu) (width 0.5)
   (from (junction 53bef241-90b2-4295-9ac0-47df0a5684b2))
   (to (junction eac4eecb-e41c-4623-b6f3-5d3b6ed63016))
  )
  (trace a7b72d3c-19d2-4f66-a9d2-af63481ef1f0 (layer bot_cu) (width 0.5)
   (from (junction 64a5eaa1-4749-40b9-b975-bdfc60caed95))
   (to (via 727eb94c-c29a-4e5f-b4d2-aede1d75f654))
  )
  (trace a7cc1027-f53f-4f30-ad82-24ce83e46fd6 (layer bot_cu) (width 0.5)
   (from (junction eac4eecb-e41c-4623-b6f3-5d3b6ed63016))
   (to (junction 64a5eaa1-4749-40b9-b975-bdfc60caed95))
  )
  (trace b3834943-fef2-40df-b073-8165fddf0d00 (layer top_cu) (width 0.5)
   (from (junction c458d807-41d4-4243-8703-abc6eb713091))
   (to (device c2acd434-b6cf-46b0-9bbd-a690c3276c17) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
 )
 (netsegment d2d4c84b-9f98-4444-b480-b7ef5818ff34
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via b3ffe8c2-d4bf-4905-b95c-38d72f6d41eb (from top_cu) (to bot_cu)
   (position 86.5 -65.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment d5ad429f-08e0-407b-8123-9895cff2786d
  (net 1836000f-5078-4ffc-8553-df54a3f27c06)
  (junction 1d5ba286-3c92-43c6-af1c-cf4fc0c00dd0 (position 134.0 -61.5))
  (junction 23fec7fb-f309-4b9f-9aae-020da6cb54a0 (position 25.4 -61.4))
  (junction 47f4d856-44d5-4b9d-8186-8e02e8d4a30b (position 132.5 -66.5))
  (junction 84b989ac-8cd0-400f-a46a-77207a7fcf5b (position 134.0 -65.0))
  (junction 8b581dd3-4e46-4e21-9f12-e19218c190b5 (position 30.5 -66.5))
  (trace 527bf54d-b05d-42ed-a0bb-842c4da53079 (layer top_cu) (width 1.0)
   (from (junction 1d5ba286-3c92-43c6-af1c-cf4fc0c00dd0))
   (to (junction 84b989ac-8cd0-400f-a46a-77207a7fcf5b))
  )
  (trace 7122d8c1-4b0a-4f12-ba3c-a73a31d01d87 (layer top_cu) (width 1.0)
   (from (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad 16b9aae1-511c-4fc8-a89b-fccfb7cd9853))
   (to (junction 1d5ba286-3c92-43c6-af1c-cf4fc0c00dd0))
  )
  (trace 7de81018-79e7-487c-89a0-54c2fb131253 (layer top_cu) (width 1.0)
   (from (junction 8b581dd3-4e46-4e21-9f12-e19218c190b5))
   (to (junction 23fec7fb-f309-4b9f-9aae-020da6cb54a0))
  )
  (trace a2a9799c-62ce-4067-9a2f-95020baf6986 (layer top_cu) (width 1.0)
   (from (junction 23fec7fb-f309-4b9f-9aae-020da6cb54a0))
   (to (device 5a823968-958d-4e08-ae30-8ee87cb53a9f) (pad 0229901d-b402-4611-bc1d-4e413d54e12e))
  )
  (trace cfca930d-a67f-47d1-bb94-57b5d33c6518 (layer top_cu) (width 1.0)
   (from (junction 47f4d856-44d5-4b9d-8186-8e02e8d4a30b))
   (to (junction 8b581dd3-4e46-4e21-9f12-e19218c190b5))
  )
  (trace f910198f-e731-4928-ab9c-b2c5e6a787b4 (layer top_cu) (width 1.0)
   (from (junction 84b989ac-8cd0-400f-a46a-77207a7fcf5b))
   (to (junction 47f4d856-44d5-4b9d-8186-8e02e8d4a30b))
  )
 )
 (netsegment d5b08431-df46-4f81-9f80-74560ade8bf2
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 99c6680c-c5f8-4f9b-8d4d-2ef7f4b67d40 (from top_cu) (to bot_cu)
   (position 61.0 -27.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment d74d7bf5-4714-4807-8f22-87a88009126c
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via e9c0ae97-20f1-46d8-b99a-d1be7b6d5a45 (from top_cu) (to bot_cu)
   (position 96.0 -48.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment d760727c-086a-457e-9123-da8c56f1d796
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via f331eb79-f413-4553-87a4-08351595b738 (from top_cu) (to bot_cu)
   (position 118.0 -25.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment d92392f0-a945-4856-8b82-1b304128f1f7
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 6b409965-281b-4c37-870e-f2eee0271509 (from top_cu) (to bot_cu)
   (position 84.5 -43.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment d9ca6b91-ed8e-4929-bd1b-927c445880d8
  (net 208e989a-fe13-4b10-b3c5-a3203575f96e)
  (via 076786fc-bc17-4ca7-9fdc-011e190caa7a (from top_cu) (to bot_cu)
   (position 50.0 -47.5) (size 0.7) (drill 0.3) (exposure off)
  )
  (junction 1679aa62-dd48-42de-8216-a7cd7ca8afad (position 50.0 -50.425))
  (junction 19baa0cf-6e56-4452-a795-4c3eeaac8d41 (position 49.925 -50.925))
  (junction 7b45004f-0859-48c3-b760-e539874f681b (position 24.11 -21.61))
  (trace 035d35a5-32a9-4e78-b3de-98ab71109f12 (layer bot_cu) (width 0.5)
   (from (junction 7b45004f-0859-48c3-b760-e539874f681b))
   (to (via 076786fc-bc17-4ca7-9fdc-011e190caa7a))
  )
  (trace 17954747-fee8-4c77-ab76-c0fb586f7b51 (layer bot_cu) (width 0.5)
   (from (device a594577f-b967-41dd-9ba3-7401df235978) (pad 2b290148-4993-4c0b-bfe4-d83903c578cb))
   (to (junction 7b45004f-0859-48c3-b760-e539874f681b))
  )
  (trace 29299801-d043-4dcc-82a9-84ac2f1a856b (layer top_cu) (width 0.5)
   (from (junction 1679aa62-dd48-42de-8216-a7cd7ca8afad))
   (to (device aad60047-b273-4e60-98a0-fab1fd947585) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace 9c57290b-5308-48ad-aaf6-5837bf06898e (layer top_cu) (width 0.5)
   (from (device aad60047-b273-4e60-98a0-fab1fd947585) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
   (to (junction 19baa0cf-6e56-4452-a795-4c3eeaac8d41))
  )
  (trace a83f2f85-ff44-4a3a-8a54-9e370cf0db7a (layer top_cu) (width 0.5)
   (from (junction 19baa0cf-6e56-4452-a795-4c3eeaac8d41))
   (to (device c30bf2b0-e5b2-4bcf-96a2-8aa3df6f25cd) (pad 1255a445-c357-4495-a024-49447ed8945f))
  )
  (trace ff2b2b5e-9cc4-4451-852b-08256e1dfff9 (layer top_cu) (width 0.5)
   (from (via 076786fc-bc17-4ca7-9fdc-011e190caa7a))
   (to (junction 1679aa62-dd48-42de-8216-a7cd7ca8afad))
  )
 )
 (netsegment dbece72c-f559-4496-ba0a-8b007b900d29
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 785a0499-8355-48a4-8b86-1676b30c5f2d (from top_cu) (to bot_cu)
   (position 69.5 -27.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment dd09c157-3b26-460f-9c8e-88203a239671
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via e8ab4a77-d624-414a-91bf-fffb5c7f266f (from top_cu) (to bot_cu)
   (position 68.0 -52.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment dda3a22c-a7cd-46d5-8ced-ffdd4684fc4c
  (net f4de1e45-9e99-496a-b17c-b4c8d33fb003)
  (junction 1ad7a3c2-5cf6-43ed-9fc8-5c9cca016fb5 (position 72.0 -21.3))
  (junction 2ddf6eea-b66d-447a-b09e-9ced327116b8 (position 101.0 -62.5))
  (junction 356996f1-a20c-4780-b68d-b3344b5aac64 (position 72.0 -62.5))
  (junction 3d9524a1-c697-4907-b3cd-307861bf2aea (position 72.0 -33.8))
  (junction 499c9693-d487-4715-9616-f9c9ae0a597b (position 32.9 -62.5))
  (junction 69a5b7fd-5d78-4745-be95-95c3ac5c9009 (position 101.0 -28.8))
  (junction 7865e4c0-293d-4dde-af3f-0b93e8e791ce (position 72.0 -58.8))
  (junction 8d0f6470-666b-4895-8b6e-2fe6b4aa35f8 (position 101.0 -16.3))
  (junction 9b46b8ca-28df-4825-b4b9-f9bfcb663404 (position 72.0 -46.3))
  (junction a4dcfdb3-1228-4f23-bba2-74b6f411c4c4 (position 101.0 -53.8))
  (junction fe1baee3-70d9-4dd1-a733-4c07dbfa67e0 (position 101.0 -41.3))
  (trace 005251f7-b0fb-448b-bce0-c9bc50b713fd (layer top_cu) (width 1.0)
   (from (junction 9b46b8ca-28df-4825-b4b9-f9bfcb663404))
   (to (junction 7865e4c0-293d-4dde-af3f-0b93e8e791ce))
  )
  (trace 0781c9ce-38a3-49d3-96e1-20091501fbd7 (layer top_cu) (width 1.0)
   (from (junction 1ad7a3c2-5cf6-43ed-9fc8-5c9cca016fb5))
   (to (junction 3d9524a1-c697-4907-b3cd-307861bf2aea))
  )
  (trace 07df1ed9-0edf-4c31-b5b9-16de328ca5d3 (layer top_cu) (width 1.0)
   (from (device 9c759720-44cf-4b19-b8b1-98adb63935ab) (pad ad3959af-3a73-4e3f-8be1-bb9caad2e98d))
   (to (junction 3d9524a1-c697-4907-b3cd-307861bf2aea))
  )
  (trace 17ff48e4-07f1-49ff-b3aa-817a9b07e628 (layer top_cu) (width 3.0)
   (from (junction 499c9693-d487-4715-9616-f9c9ae0a597b))
   (to (device 5a823968-958d-4e08-ae30-8ee87cb53a9f) (pad ebdc0389-99e8-40f3-8fe4-f184c04d3c09))
  )
  (trace 312483e3-4d98-4e18-a897-ef7eed210359 (layer top_cu) (width 1.0)
   (from (device 72b5484a-906a-4e99-a49b-04dbf24cf835) (pad ad3959af-3a73-4e3f-8be1-bb9caad2e98d))
   (to (junction 9b46b8ca-28df-4825-b4b9-f9bfcb663404))
  )
  (trace 3d23b213-f1bc-40a7-9123-2b962b27d9da (layer top_cu) (width 1.0)
   (from (device 9b7ef3ec-66cc-4313-868c-7389eaf71af3) (pad ad3959af-3a73-4e3f-8be1-bb9caad2e98d))
   (to (junction fe1baee3-70d9-4dd1-a733-4c07dbfa67e0))
  )
  (trace 4f1cf6b4-f9a1-4af2-b333-692857b3846c (layer top_cu) (width 1.0)
   (from (junction a4dcfdb3-1228-4f23-bba2-74b6f411c4c4))
   (to (junction 2ddf6eea-b66d-447a-b09e-9ced327116b8))
  )
  (trace 629dd2fe-12c8-4b2b-bb55-1b472ca852c4 (layer top_cu) (width 1.0)
   (from (device 7ab90019-26ee-4ae5-b669-d978dfa62995) (pad ad3959af-3a73-4e3f-8be1-bb9caad2e98d))
   (to (junction 1ad7a3c2-5cf6-43ed-9fc8-5c9cca016fb5))
  )
  (trace 69e9ad5a-88b3-4bd4-9d81-f44d8a689f0e (layer top_cu) (width 1.0)
   (from (device f699f4ae-d728-4a7e-bd2f-a08ce56eb74d) (pad ad3959af-3a73-4e3f-8be1-bb9caad2e98d))
   (to (junction 8d0f6470-666b-4895-8b6e-2fe6b4aa35f8))
  )
  (trace 6bc987b8-e654-49f5-ab1c-884f64a1f2e2 (layer top_cu) (width 3.0)
   (from (junction 2ddf6eea-b66d-447a-b09e-9ced327116b8))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad e4cb23ea-20b3-4b54-a00a-a26abbf0f033))
  )
  (trace 702bf45c-e46c-4236-b4ba-f1146b4ed0d9 (layer top_cu) (width 3.0)
   (from (junction 2ddf6eea-b66d-447a-b09e-9ced327116b8))
   (to (junction 356996f1-a20c-4780-b68d-b3344b5aac64))
  )
  (trace 7eacc30f-03bd-417e-90f4-aeb650441454 (layer top_cu) (width 1.0)
   (from (junction fe1baee3-70d9-4dd1-a733-4c07dbfa67e0))
   (to (junction a4dcfdb3-1228-4f23-bba2-74b6f411c4c4))
  )
  (trace 7f0190ba-a970-48c8-b432-f2f6204bcbb8 (layer top_cu) (width 3.0)
   (from (junction 356996f1-a20c-4780-b68d-b3344b5aac64))
   (to (junction 499c9693-d487-4715-9616-f9c9ae0a597b))
  )
  (trace 8a0bb1d7-5089-4efd-92bd-aad6026f105f (layer top_cu) (width 1.0)
   (from (junction 7865e4c0-293d-4dde-af3f-0b93e8e791ce))
   (to (junction 356996f1-a20c-4780-b68d-b3344b5aac64))
  )
  (trace 8ff3c88c-eae1-477e-8363-24ba06daeada (layer top_cu) (width 1.0)
   (from (junction 3d9524a1-c697-4907-b3cd-307861bf2aea))
   (to (junction 9b46b8ca-28df-4825-b4b9-f9bfcb663404))
  )
  (trace aa64aaed-55ed-4c93-8189-74c892714674 (layer top_cu) (width 1.0)
   (from (device f3339ff3-9520-4dbd-a242-95fd88c470f7) (pad ad3959af-3a73-4e3f-8be1-bb9caad2e98d))
   (to (junction 69a5b7fd-5d78-4745-be95-95c3ac5c9009))
  )
  (trace ac63a57a-2701-47bd-a8e0-05188bc2007e (layer top_cu) (width 1.0)
   (from (device 003e5a09-081d-4b51-a79f-a99d94d66249) (pad ad3959af-3a73-4e3f-8be1-bb9caad2e98d))
   (to (junction 7865e4c0-293d-4dde-af3f-0b93e8e791ce))
  )
  (trace b25ceec7-0167-4506-a440-f97175251cc8 (layer top_cu) (width 1.0)
   (from (junction 69a5b7fd-5d78-4745-be95-95c3ac5c9009))
   (to (junction fe1baee3-70d9-4dd1-a733-4c07dbfa67e0))
  )
  (trace d3a7e7f3-07cc-42f1-a18f-62676d344be1 (layer top_cu) (width 1.0)
   (from (device 75d0d62e-62b5-40f2-b4b5-1318679c936a) (pad ad3959af-3a73-4e3f-8be1-bb9caad2e98d))
   (to (junction a4dcfdb3-1228-4f23-bba2-74b6f411c4c4))
  )
  (trace e51edbd0-d15b-40c5-b63e-717798a2c180 (layer top_cu) (width 1.0)
   (from (junction 8d0f6470-666b-4895-8b6e-2fe6b4aa35f8))
   (to (junction 69a5b7fd-5d78-4745-be95-95c3ac5c9009))
  )
 )
 (netsegment e0cb38f6-3367-47ad-87ed-a81d7b8eae70
  (net fa097ea3-9409-45b3-a97a-75888dd83a62)
  (junction 489cb8cc-b271-4098-8948-d5db2e75756c (position 33.0 -38.0))
  (trace 41bae143-7d32-4c87-aa31-c3d5e868a032 (layer top_cu) (width 0.3)
   (from (junction 489cb8cc-b271-4098-8948-d5db2e75756c))
   (to (device 3df65d78-dc62-4bf1-bb5f-767975e464c8) (pad 19d59886-4023-49c0-acbb-350b25cbe189))
  )
  (trace 552d0820-7859-4459-93f6-bd9bc8596d9a (layer top_cu) (width 0.3)
   (from (device 0f474324-9bc7-4322-8304-01e88a920696) (pad 20ef2c5a-ffe5-490e-bc98-ce5adab90745))
   (to (junction 489cb8cc-b271-4098-8948-d5db2e75756c))
  )
 )
 (netsegment e3397254-bdc8-4c7e-9e03-10d16af8c049
  (net c707e92a-928d-42f7-9303-9325d8fd1939)
  (junction 2cdf4262-a2b9-4d25-ba4b-8c34329d26d8 (position 114.0 -17.5))
  (trace 5ba1f6ae-d295-4c64-83e3-91d5ccf4b856 (layer bot_cu) (width 1.0)
   (from (junction 2cdf4262-a2b9-4d25-ba4b-8c34329d26d8))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad 8884dcd2-cabc-4c89-a96e-ae711f5421e1))
  )
  (trace 6d32aa6f-16a7-475d-a913-195d4d975aa3 (layer bot_cu) (width 1.0)
   (from (device f699f4ae-d728-4a7e-bd2f-a08ce56eb74d) (pad 00b3a9a8-f5e1-4507-874a-38b9b198dd73))
   (to (junction 2cdf4262-a2b9-4d25-ba4b-8c34329d26d8))
  )
 )
 (netsegment e4f81f48-5b56-484b-a822-0e7d3d435863
  (net 040de378-880f-441c-870a-29594b041ada)
  (junction 0c60b4ed-d1d6-41e6-8083-4e3547e94404 (position 81.15 -51.15))
  (trace 9d785646-7515-409c-bf2e-1e660a21a54d (layer top_cu) (width 0.5)
   (from (device 83aa6fb6-653b-4e28-a917-a411b326c0fb) (pad 9847dc0f-c20b-4104-bd9f-66a17f7c3213))
   (to (junction 0c60b4ed-d1d6-41e6-8083-4e3547e94404))
  )
  (trace b8f1d59a-b15b-46a4-86ce-2755fb1755cf (layer top_cu) (width 0.5)
   (from (device 04c02e94-7b29-475e-b3fc-f0d3cf3d3fd4) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (device 75d0d62e-62b5-40f2-b4b5-1318679c936a) (pad df2fd529-472d-4193-a31d-ad00f12273a7))
  )
  (trace bbdec1c7-ed88-4bb6-a77a-e59dcdc08eee (layer top_cu) (width 0.5)
   (from (junction 0c60b4ed-d1d6-41e6-8083-4e3547e94404))
   (to (device 04c02e94-7b29-475e-b3fc-f0d3cf3d3fd4) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
  )
 )
 (netsegment eb26ac6e-ebbd-4770-9844-6dc73bf4e30d
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 3271d2f0-cbbe-4f9d-b938-5202e7fdc955 (from top_cu) (to bot_cu)
   (position 96.5 -34.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment eb3f37b9-841a-4f4e-b887-9eef41387788
  (net 10a596cc-b4ee-46b1-9c9e-75394dc0d280)
  (junction 61a42819-b724-4178-aa62-7155cb4880d9 (position 30.1 -34.0))
  (trace 7683b9ae-3699-4ac0-9512-f5a819184e3a (layer top_cu) (width 0.3)
   (from (junction 61a42819-b724-4178-aa62-7155cb4880d9))
   (to (device 0f474324-9bc7-4322-8304-01e88a920696) (pad 5d3b830f-6647-40de-b1a0-e495348019e3))
  )
  (trace d5f5bcf3-8aa5-4b12-8ab6-7a214fc91829 (layer top_cu) (width 0.3)
   (from (device 9eac99f9-953f-42e3-ab87-ec108ec4bd03) (pad 743b2b74-2a71-49ed-938d-23d70a81e3af))
   (to (junction 61a42819-b724-4178-aa62-7155cb4880d9))
  )
 )
 (netsegment ec0c0dcd-2380-45ab-9c85-ca8590edddd5
  (net 0cc88ed9-7ab1-4f6a-bc53-367814c24f4a)
  (junction 0e39bcff-171e-403f-8295-f84c2ff11553 (position 79.5 -29.5))
  (junction 3a566348-d0ee-467c-a911-0507e42b4234 (position 106.5 -55.5))
  (junction 513722b1-71cf-4f3e-bd03-f7a8f84ff1ad (position 85.5 -55.5))
  (junction 68799baa-8238-4993-865d-25f301616a07 (position 119.5 -42.5))
  (junction c5bcea13-02ca-4824-990d-8d1f0a210f66 (position 79.5 -49.5))
  (trace 0b7e3371-bfdc-45bf-9a99-100cc8809039 (layer bot_cu) (width 1.0)
   (from (junction c5bcea13-02ca-4824-990d-8d1f0a210f66))
   (to (junction 513722b1-71cf-4f3e-bd03-f7a8f84ff1ad))
  )
  (trace 118dbc49-7b91-4feb-a129-9bc870937ca8 (layer bot_cu) (width 1.0)
   (from (junction 3a566348-d0ee-467c-a911-0507e42b4234))
   (to (junction 68799baa-8238-4993-865d-25f301616a07))
  )
  (trace 3cea4104-7c0a-41a9-a4af-4a350825f723 (layer bot_cu) (width 1.0)
   (from (device 9c759720-44cf-4b19-b8b1-98adb63935ab) (pad 00b3a9a8-f5e1-4507-874a-38b9b198dd73))
   (to (junction 0e39bcff-171e-403f-8295-f84c2ff11553))
  )
  (trace 433c4c6b-2a1e-4edf-92b2-9514790411ef (layer bot_cu) (width 1.0)
   (from (junction 513722b1-71cf-4f3e-bd03-f7a8f84ff1ad))
   (to (junction 3a566348-d0ee-467c-a911-0507e42b4234))
  )
  (trace 90be39c1-73f3-4971-ad67-11fa28ac6025 (layer bot_cu) (width 1.0)
   (from (junction 68799baa-8238-4993-865d-25f301616a07))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad f29d8ac8-5179-4708-a84f-325ecabd4ed2))
  )
  (trace a6907989-9c0b-427a-8f5d-08bd49731576 (layer bot_cu) (width 1.0)
   (from (junction 0e39bcff-171e-403f-8295-f84c2ff11553))
   (to (junction c5bcea13-02ca-4824-990d-8d1f0a210f66))
  )
 )
 (netsegment ec858114-8f0e-4b45-9cd4-d7e6e2ca2a97
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 9f59456f-dbaa-4058-828c-0a05aa45e9ea (from top_cu) (to bot_cu)
   (position 15.5 -58.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment ee6c35c0-ece5-4c0e-a1b3-96a5b7b423af
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via d967adb2-d3a3-428d-b064-fdb76967bfc7 (from top_cu) (to bot_cu)
   (position 7.5 -53.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment ee7bd70f-dc10-403f-a8a8-af6ba4d80b78
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via a300ed9a-08dc-446d-9499-31c613153412 (from top_cu) (to bot_cu)
   (position 36.0 -42.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment f3b4698a-0b3a-4292-a6ed-e45783159498
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via bd8f1a5b-53ae-4836-a812-d58b18314df7 (from top_cu) (to bot_cu)
   (position 34.5 -34.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment f57374c9-8a27-4dcd-b1d1-d82e89a309d9
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 2674730d-5a6d-46ac-820e-b8d83055a783 (from top_cu) (to bot_cu)
   (position 25.5 -20.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment f5dc5030-8355-4ccf-b68c-9ba9ca4eff95
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via db56eef2-9cf7-4b96-8f36-9c54df4425a8 (from top_cu) (to bot_cu)
   (position 78.0 -36.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment f7c9f965-092a-4a16-a968-533b6b915b36
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 025b7596-5878-4c46-a39e-175086217c89 (from top_cu) (to bot_cu)
   (position 25.0 -42.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment f80c879a-1532-4865-b30c-6fe341ed897c
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 24686901-e2d7-4820-93bb-c87cd9643209 (from top_cu) (to bot_cu)
   (position 49.5 -41.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment fb4124e5-bf30-447c-8f2f-3b422bc999e7
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via 1737256c-d509-4839-958c-99bc5ae0d9ce (from top_cu) (to bot_cu)
   (position 84.5 -30.0) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment fc0a4d26-60a6-4f3b-b58d-88d4529d3d89
  (net 37f8e6df-f624-4e86-bfd8-97b937ff29a2)
  (junction 2f0c9ab1-db09-4fe0-a03b-2eb4842b149d (position 84.5 -59.5))
  (junction e7210366-5746-497d-b16c-1e28b69c9f3f (position 107.5 -59.5))
  (junction f4f436e2-81aa-4a01-a4cd-f504a042cb12 (position 114.5 -52.5))
  (trace 9d597a93-fb9a-416f-a9e1-e51f80bd6d97 (layer bot_cu) (width 1.0)
   (from (device 003e5a09-081d-4b51-a79f-a99d94d66249) (pad 00b3a9a8-f5e1-4507-874a-38b9b198dd73))
   (to (junction 2f0c9ab1-db09-4fe0-a03b-2eb4842b149d))
  )
  (trace aa89889c-a76d-485b-950c-de8757d4cafa (layer bot_cu) (width 1.0)
   (from (junction e7210366-5746-497d-b16c-1e28b69c9f3f))
   (to (junction f4f436e2-81aa-4a01-a4cd-f504a042cb12))
  )
  (trace e29cb6f5-f338-432e-8de2-c624914c69f3 (layer bot_cu) (width 1.0)
   (from (junction f4f436e2-81aa-4a01-a4cd-f504a042cb12))
   (to (device dc014bad-d340-48fe-ae9e-eba0d2251cbd) (pad 78f19a3a-f603-43b8-b988-5387e023250c))
  )
  (trace eadfa3c0-6777-45f4-b2fd-04ebf5659414 (layer bot_cu) (width 1.0)
   (from (junction 2f0c9ab1-db09-4fe0-a03b-2eb4842b149d))
   (to (junction e7210366-5746-497d-b16c-1e28b69c9f3f))
  )
 )
 (netsegment fca18422-ce9e-4a0f-82f4-31aed03d0476
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (via a008e916-079a-41a8-8a78-8b9cd77adba1 (from top_cu) (to bot_cu)
   (position 22.5 -47.5) (size 0.7) (drill 0.3) (exposure off)
  )
 )
 (netsegment ffdb5146-0b21-4cac-b641-f7b81fea3141
  (net 696c0c3d-7c20-4fba-ae51-0065748c382f)
  (junction f4afbd03-07a0-45f1-a360-058769602c28 (position 52.149725 -31.149725))
  (trace 3a90e393-614f-45af-989a-a965d6e11587 (layer top_cu) (width 0.5)
   (from (junction f4afbd03-07a0-45f1-a360-058769602c28))
   (to (device c2ad6a93-1320-4b1c-9d59-cd319f1eb66f) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
  )
  (trace 74dd3915-7152-43fc-9a08-b3b22d2fd590 (layer top_cu) (width 0.5)
   (from (device bf8c2ac6-6bef-4681-8d40-49de366fb199) (pad 9847dc0f-c20b-4104-bd9f-66a17f7c3213))
   (to (junction f4afbd03-07a0-45f1-a360-058769602c28))
  )
  (trace b00f5219-29b2-489a-9de2-aefae316fdb3 (layer top_cu) (width 0.5)
   (from (device c2ad6a93-1320-4b1c-9d59-cd319f1eb66f) (pad 54f49841-9fde-421d-a9d7-892958190b5d))
   (to (device 9c759720-44cf-4b19-b8b1-98adb63935ab) (pad df2fd529-472d-4193-a31d-ad00f12273a7))
  )
 )
 (plane 24cec8dd-e0a3-484d-9a78-57c3f405c924 (layer bot_cu)
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab) (priority 0)
  (min_width 0.2) (min_clearance 0.3) (thermal_gap 0.3) (thermal_spoke 0.3)
  (connect_style thermal) (keep_islands false) (lock false)
  (vertex (position -1.0 1.0) (angle 0.0))
  (vertex (position -1.0 -71.0) (angle 0.0))
  (vertex (position 141.0 -71.0) (angle 0.0))
  (vertex (position 141.0 1.0) (angle 0.0))
 )
 (plane 726bbbd9-c04a-497c-930b-315066d78342 (layer top_cu)
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab) (priority 0)
  (min_width 0.2) (min_clearance 0.3) (thermal_gap 0.3) (thermal_spoke 0.3)
  (connect_style thermal) (keep_islands false) (lock false)
  (vertex (position -0.5 0.5) (angle 0.0))
  (vertex (position -0.5 -70.5) (angle 0.0))
  (vertex (position 140.5 -70.5) (angle 0.0))
  (vertex (position 140.5 0.5) (angle 0.0))
 )
 (polygon 14a6dcdc-7966-4155-9ded-96188c82a9c4 (layer brd_outlines)
  (width 0.0) (fill false) (grab_area false) (lock false)
  (vertex (position 2.0 0.0) (angle 90.0))
  (vertex (position 0.0 -2.0) (angle 0.0))
  (vertex (position 0.0 -68.0) (angle 90.0))
  (vertex (position 2.0 -70.0) (angle 0.0))
  (vertex (position 138.0 -70.0) (angle 90.0))
  (vertex (position 140.0 -68.0) (angle 0.0))
  (vertex (position 140.0 -2.0) (angle 90.0))
  (vertex (position 138.0 0.0) (angle 0.0))
  (vertex (position 2.0 0.0) (angle 0.0))
 )
 (polygon 22952059-260b-4340-bfee-169ad7987f8b (layer top_cu)
  (width 0.0) (fill true) (grab_area false) (lock false)
  (vertex (position 31.0 -35.75) (angle 0.0))
  (vertex (position 31.5 -35.0) (angle 0.0))
  (vertex (position 32.0 -34.5) (angle 0.0))
  (vertex (position 32.0 -33.0) (angle 0.0))
  (vertex (position 33.0 -32.0) (angle 0.0))
  (vertex (position 33.0 -30.0) (angle 0.0))
  (vertex (position 30.0 -30.0) (angle 0.0))
  (vertex (position 30.0 -32.0) (angle 0.0))
  (vertex (position 31.0 -33.0) (angle 0.0))
  (vertex (position 31.0 -35.0) (angle 0.0))
  (vertex (position 31.0 -35.75) (angle 0.0))
 )
 (polygon 278707cb-0063-4a82-811b-beb9827b2457 (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 139.5 -60.0) (angle 0.0))
  (vertex (position 127.5 -60.0) (angle 0.0))
 )
 (polygon 41a3904a-8f3a-46e4-bcf3-b63fefb2a3d0 (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 139.5 -40.0) (angle 0.0))
  (vertex (position 127.5 -40.0) (angle 0.0))
 )
 (polygon 44147107-eb67-42ba-9c92-be0656acd0bd (layer top_cu)
  (width 0.0) (fill true) (grab_area false) (lock false)
  (vertex (position 31.0 -37.0) (angle 0.0))
  (vertex (position 31.0 -36.5) (angle 0.0))
  (vertex (position 30.5 -35.5) (angle 0.0))
  (vertex (position 29.5 -35.5) (angle 0.0))
  (vertex (position 29.5 -37.5) (angle 0.0))
  (vertex (position 31.0 -37.5) (angle 0.0))
  (vertex (position 31.0 -37.0) (angle 0.0))
 )
 (polygon 50f8ab8d-2118-47df-9186-ad88bb499ee9 (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 139.5 -30.0) (angle 0.0))
  (vertex (position 127.5 -30.0) (angle 0.0))
 )
 (polygon 561e1a90-e231-4501-8d46-0712fdb720bf (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 127.5 -20.0) (angle 0.0))
  (vertex (position 139.5 -20.0) (angle 0.0))
 )
 (polygon 72533a6f-909a-4dcc-8556-f5dbaabe1b59 (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 139.5 -55.0) (angle 0.0))
  (vertex (position 127.5 -55.0) (angle 0.0))
 )
 (polygon 8041d110-34c4-4b61-ad5a-f171ced281e6 (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 139.5 -50.0) (angle 0.0))
  (vertex (position 127.5 -50.0) (angle 0.0))
 )
 (polygon 8cc86bb5-5678-4d1c-8aee-cee65955a19c (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 139.5 -35.0) (angle 0.0))
  (vertex (position 127.5 -35.0) (angle 0.0))
 )
 (polygon adb48dce-e0fa-48c9-a663-aaff8dcb97ee (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 139.5 -25.0) (angle 0.0))
  (vertex (position 127.5 -25.0) (angle 0.0))
 )
 (polygon bead4a3c-c9c4-4970-8144-df6e1a2acbd8 (layer top_cu)
  (width 0.0) (fill true) (grab_area false) (lock false)
  (vertex (position 30.0 -26.5) (angle 0.0))
  (vertex (position 30.0 -17.0) (angle 0.0))
  (vertex (position 22.0 -17.0) (angle 0.0))
  (vertex (position 19.0 -14.0) (angle 0.0))
  (vertex (position 19.0 -4.0) (angle 0.0))
  (vertex (position 22.0 -1.5) (angle 0.0))
  (vertex (position 41.0 -1.5) (angle 0.0))
  (vertex (position 43.0 -4.0) (angle 0.0))
  (vertex (position 43.0 -7.5) (angle 0.0))
  (vertex (position 38.0 -7.5) (angle 0.0))
  (vertex (position 38.0 -4.0) (angle 0.0))
  (vertex (position 22.0 -4.0) (angle 0.0))
  (vertex (position 22.0 -11.5) (angle 0.0))
  (vertex (position 30.0 -11.5) (angle 0.0))
  (vertex (position 33.0 -14.5) (angle 0.0))
  (vertex (position 33.0 -17.0) (angle 0.0))
  (vertex (position 33.0 -26.5) (angle 0.0))
  (vertex (position 30.0 -26.5) (angle 0.0))
 )
 (polygon eeed1c87-3fe8-49a9-80bb-c518c3a95eac (layer top_cu)
  (width 0.0) (fill true) (grab_area false) (lock false)
  (vertex (position 32.0 -37.0) (angle 0.0))
  (vertex (position 32.5 -36.0) (angle 0.0))
  (vertex (position 32.5 -35.5) (angle 0.0))
  (vertex (position 31.5 -35.5) (angle 0.0))
  (vertex (position 31.5 -37.0) (angle 0.0))
  (vertex (position 32.0 -37.0) (angle 0.0))
 )
 (polygon fd95e44a-576f-4276-9707-18b9f0e02951 (layer top_names)
  (width 0.3) (fill false) (grab_area false) (lock false)
  (vertex (position 139.5 -45.0) (angle 0.0))
  (vertex (position 127.5 -45.0) (angle 0.0))
 )
 (stroke_text 0db59693-85e2-40a5-a653-3e64420c7bfd (layer top_legend)
  (height 2.0) (stroke_width 0.2) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 112.5 -6.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "{{PROJECT}}")
 )
 (stroke_text 385dc1e4-13e2-4fef-a3ff-97db52f7f191 (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -34.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "5")
 )
 (stroke_text 96fb50c6-8c87-4077-9c5f-a2dd49461fb2 (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -44.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "3")
 )
 (stroke_text a643b9b1-0201-4585-9cd6-c2de0db781be (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -29.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "6")
 )
 (stroke_text b996b9bb-d482-4b60-bdb0-4052a8ffd531 (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -19.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "8")
 )
 (stroke_text cc7d500f-535c-4f1a-ae79-24a77d65fce8 (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -49.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "2")
 )
 (stroke_text cd850e26-6732-40cb-8944-e090a557e4c0 (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -59.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "C")
 )
 (stroke_text d0ef8f2a-5dca-4cdb-98e1-392346162a54 (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -64.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "R")
 )
 (stroke_text dc93221d-8065-415d-9fb3-0d43e44d0cce (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -39.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "4")
 )
 (stroke_text f321a649-2207-402d-9d6a-5a58b0f196f8 (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -54.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "1")
 )
 (stroke_text f3291da8-e65c-4c83-a1e2-bbe19d258130 (layer top_names)
  (height 3.0) (stroke_width 0.6) (letter_spacing auto) (line_spacing auto)
  (align left bottom) (position 136.0 -24.0) (rotation 0.0)
  (auto_rotate true) (mirror false) (lock false) (value "7")
 )
 (hole 60841297-061a-478c-92f0-d89e88dbd436 (diameter 2.75)
  (stop_mask auto) (lock false)
  (vertex (position 3.5 -66.5) (angle 0.0))
 )
 (hole 93e7ac86-262d-422d-bc70-bbeee454c9c5 (diameter 2.75)
  (stop_mask auto) (lock false)
  (vertex (position 136.5 -66.5) (angle 0.0))
 )
 (hole f810d30e-44f3-4f37-861a-30e856c8b4bb (diameter 2.75)
  (stop_mask auto) (lock false)
  (vertex (position 3.5 -3.5) (angle 0.0))
 )
 (hole fc649361-022e-488a-8ac4-7f183c5db1b0 (diameter 2.75)
  (stop_mask auto) (lock false)
  (vertex (position 136.5 -3.5) (angle 0.0))
 )
)