aboutsummaryrefslogtreecommitdiffhomepage
path: root/hardware/famicom_adapter/famicom_adapter.kicad_sch
blob: dfcf34594a43ce27a80a971f097d0f06bbcb6aa0 (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
(kicad_sch (version 20210621) (generator eeschema)

  (uuid 9d18f126-25a0-4767-9cfe-60845c6d7acd)

  (paper "A4")

  (title_block
    (title "OSCR FAMICOM ADAPTER")
    (date "2021-11-22")
    (rev "V1")
  )

  (lib_symbols
    (symbol "!OSCR:FC_Slot" (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -16.51 52.07 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "FC_Slot" (id 1) (at -13.97 46.99 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "FC_Slot_0_1"
        (rectangle (start -17.78 44.45) (end 17.78 -34.29)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "FC_Slot_1_1"
        (pin power_in line (at -20.32 41.91 0) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 19.05 0) (length 2.54)
          (name "PRG_A3" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 16.51 0) (length 2.54)
          (name "PRG_A2" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 13.97 0) (length 2.54)
          (name "PRG_A1" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 11.43 0) (length 2.54)
          (name "PRG_A0" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 8.89 0) (length 2.54)
          (name "PRG_RW" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 6.35 0) (length 2.54)
          (name "IRQ" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -20.32 3.81 0) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 1.27 0) (length 2.54)
          (name "CHR_RD" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 -1.27 0) (length 2.54)
          (name "CIRAM_A10" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 -3.81 0) (length 2.54)
          (name "CHR_A6" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 39.37 0) (length 2.54)
          (name "PRG_A11" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 -6.35 0) (length 2.54)
          (name "CHR_A5" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 -8.89 0) (length 2.54)
          (name "CHR_A4" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 -11.43 0) (length 2.54)
          (name "CHR_A3" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 -13.97 0) (length 2.54)
          (name "CHR_A2" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 -16.51 0) (length 2.54)
          (name "CHR_A1" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 -19.05 0) (length 2.54)
          (name "CHR_A0" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -21.59 0) (length 2.54)
          (name "CHR_D0" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -24.13 0) (length 2.54)
          (name "CHR_D1" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -26.67 0) (length 2.54)
          (name "CHR_D2" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -20.32 -29.21 0) (length 2.54)
          (name "CHR_D3" (effects (font (size 1.27 1.27))))
          (number "29" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 36.83 0) (length 2.54)
          (name "PRG_A10" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -20.32 -31.75 0) (length 2.54)
          (name "5V" (effects (font (size 1.27 1.27))))
          (number "30" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 20.32 41.91 180) (length 2.54)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "31" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 39.37 180) (length 2.54)
          (name "M2" (effects (font (size 1.27 1.27))))
          (number "32" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 36.83 180) (length 2.54)
          (name "PRG_A12" (effects (font (size 1.27 1.27))))
          (number "33" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 34.29 180) (length 2.54)
          (name "PRG_A13" (effects (font (size 1.27 1.27))))
          (number "34" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 31.75 180) (length 2.54)
          (name "PRG_A14" (effects (font (size 1.27 1.27))))
          (number "35" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 29.21 180) (length 2.54)
          (name "PRG_D7" (effects (font (size 1.27 1.27))))
          (number "36" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 26.67 180) (length 2.54)
          (name "PRG_D6" (effects (font (size 1.27 1.27))))
          (number "37" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 24.13 180) (length 2.54)
          (name "PRG_D5" (effects (font (size 1.27 1.27))))
          (number "38" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 21.59 180) (length 2.54)
          (name "PRG_D4" (effects (font (size 1.27 1.27))))
          (number "39" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 34.29 0) (length 2.54)
          (name "PRG_A9" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 19.05 180) (length 2.54)
          (name "PRG_D3" (effects (font (size 1.27 1.27))))
          (number "40" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 16.51 180) (length 2.54)
          (name "PRG_D2" (effects (font (size 1.27 1.27))))
          (number "41" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 13.97 180) (length 2.54)
          (name "PRG_D1" (effects (font (size 1.27 1.27))))
          (number "42" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 11.43 180) (length 2.54)
          (name "PRG_D0" (effects (font (size 1.27 1.27))))
          (number "43" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 8.89 180) (length 2.54)
          (name "PRG_CE" (effects (font (size 1.27 1.27))))
          (number "44" (effects (font (size 1.27 1.27))))
        )
        (pin no_connect line (at 20.32 6.35 180) (length 2.54)
          (name "EXP" (effects (font (size 1.27 1.27))))
          (number "45" (effects (font (size 1.27 1.27))))
        )
        (pin no_connect line (at 20.32 3.81 180) (length 2.54)
          (name "EXP" (effects (font (size 1.27 1.27))))
          (number "46" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 1.27 180) (length 2.54)
          (name "CHR_WR" (effects (font (size 1.27 1.27))))
          (number "47" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 -1.27 180) (length 2.54)
          (name "CIRAM_CE" (effects (font (size 1.27 1.27))))
          (number "48" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 -3.81 180) (length 2.54)
          (name "CHR_/A13" (effects (font (size 1.27 1.27))))
          (number "49" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 31.75 0) (length 2.54)
          (name "PRG_A8" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -6.35 180) (length 2.54)
          (name "CHR_A7" (effects (font (size 1.27 1.27))))
          (number "50" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 -8.89 180) (length 2.54)
          (name "CHR_A8" (effects (font (size 1.27 1.27))))
          (number "51" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 -11.43 180) (length 2.54)
          (name "CHR_A9" (effects (font (size 1.27 1.27))))
          (number "52" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 -13.97 180) (length 2.54)
          (name "CHR_A10" (effects (font (size 1.27 1.27))))
          (number "53" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 -16.51 180) (length 2.54)
          (name "CHR_A11" (effects (font (size 1.27 1.27))))
          (number "54" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 -19.05 180) (length 2.54)
          (name "CHR_A12" (effects (font (size 1.27 1.27))))
          (number "55" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 20.32 -21.59 180) (length 2.54)
          (name "CHR_A13" (effects (font (size 1.27 1.27))))
          (number "56" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -24.13 180) (length 2.54)
          (name "CHR_D7" (effects (font (size 1.27 1.27))))
          (number "57" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -26.67 180) (length 2.54)
          (name "CHR_D6" (effects (font (size 1.27 1.27))))
          (number "58" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -29.21 180) (length 2.54)
          (name "CHR_D5" (effects (font (size 1.27 1.27))))
          (number "59" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 29.21 0) (length 2.54)
          (name "PRG_A7" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 20.32 -31.75 180) (length 2.54)
          (name "CHR_D4" (effects (font (size 1.27 1.27))))
          (number "60" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 26.67 0) (length 2.54)
          (name "PRG_A6" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 24.13 0) (length 2.54)
          (name "PRG_A5" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -20.32 21.59 0) (length 2.54)
          (name "PRG_A4" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector_Generic:Conn_01x36" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 0 45.72 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_01x36" (id 1) (at 0 -48.26 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, single row, 01x36, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_01x36_1_1"
        (rectangle (start -1.27 -45.593) (end 0 -45.847)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -43.053) (end 0 -43.307)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -40.513) (end 0 -40.767)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -37.973) (end 0 -38.227)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -35.433) (end 0 -35.687)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -32.893) (end 0 -33.147)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -30.353) (end 0 -30.607)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -27.813) (end 0 -28.067)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -25.273) (end 0 -25.527)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -22.733) (end 0 -22.987)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -20.193) (end 0 -20.447)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -17.653) (end 0 -17.907)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -15.113) (end 0 -15.367)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -12.573) (end 0 -12.827)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -10.033) (end 0 -10.287)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 7.747) (end 0 7.493)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 10.287) (end 0 10.033)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 12.827) (end 0 12.573)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 15.367) (end 0 15.113)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 17.907) (end 0 17.653)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 20.447) (end 0 20.193)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 22.987) (end 0 22.733)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 25.527) (end 0 25.273)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 28.067) (end 0 27.813)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 30.607) (end 0 30.353)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 33.147) (end 0 32.893)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 35.687) (end 0 35.433)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 38.227) (end 0 37.973)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 40.767) (end 0 40.513)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 43.307) (end 0 43.053)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 44.45) (end 1.27 -46.99)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (pin passive line (at -5.08 43.18 0) (length 3.81)
          (name "Pin_1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 20.32 0) (length 3.81)
          (name "Pin_10" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 17.78 0) (length 3.81)
          (name "Pin_11" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 15.24 0) (length 3.81)
          (name "Pin_12" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 12.7 0) (length 3.81)
          (name "Pin_13" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 10.16 0) (length 3.81)
          (name "Pin_14" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 7.62 0) (length 3.81)
          (name "Pin_15" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 5.08 0) (length 3.81)
          (name "Pin_16" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 2.54 0) (length 3.81)
          (name "Pin_17" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 0 0) (length 3.81)
          (name "Pin_18" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_19" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 40.64 0) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 3.81)
          (name "Pin_20" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -7.62 0) (length 3.81)
          (name "Pin_21" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -10.16 0) (length 3.81)
          (name "Pin_22" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -12.7 0) (length 3.81)
          (name "Pin_23" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -15.24 0) (length 3.81)
          (name "Pin_24" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -17.78 0) (length 3.81)
          (name "Pin_25" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -20.32 0) (length 3.81)
          (name "Pin_26" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -22.86 0) (length 3.81)
          (name "Pin_27" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -25.4 0) (length 3.81)
          (name "Pin_28" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -27.94 0) (length 3.81)
          (name "Pin_29" (effects (font (size 1.27 1.27))))
          (number "29" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 38.1 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -30.48 0) (length 3.81)
          (name "Pin_30" (effects (font (size 1.27 1.27))))
          (number "30" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -33.02 0) (length 3.81)
          (name "Pin_31" (effects (font (size 1.27 1.27))))
          (number "31" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -35.56 0) (length 3.81)
          (name "Pin_32" (effects (font (size 1.27 1.27))))
          (number "32" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -38.1 0) (length 3.81)
          (name "Pin_33" (effects (font (size 1.27 1.27))))
          (number "33" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -40.64 0) (length 3.81)
          (name "Pin_34" (effects (font (size 1.27 1.27))))
          (number "34" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -43.18 0) (length 3.81)
          (name "Pin_35" (effects (font (size 1.27 1.27))))
          (number "35" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -45.72 0) (length 3.81)
          (name "Pin_36" (effects (font (size 1.27 1.27))))
          (number "36" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 35.56 0) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 33.02 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 30.48 0) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 27.94 0) (length 3.81)
          (name "Pin_7" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 25.4 0) (length 3.81)
          (name "Pin_8" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 22.86 0) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector_Generic:Conn_01x38" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 0 48.26 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_01x38" (id 1) (at 0 -50.8 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, single row, 01x38, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_01x38_1_1"
        (rectangle (start -1.27 -48.133) (end 0 -48.387)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -45.593) (end 0 -45.847)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -43.053) (end 0 -43.307)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -40.513) (end 0 -40.767)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -37.973) (end 0 -38.227)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -35.433) (end 0 -35.687)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -32.893) (end 0 -33.147)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -30.353) (end 0 -30.607)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -27.813) (end 0 -28.067)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -25.273) (end 0 -25.527)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -22.733) (end 0 -22.987)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -20.193) (end 0 -20.447)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -17.653) (end 0 -17.907)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -15.113) (end 0 -15.367)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -12.573) (end 0 -12.827)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -10.033) (end 0 -10.287)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 7.747) (end 0 7.493)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 10.287) (end 0 10.033)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 12.827) (end 0 12.573)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 15.367) (end 0 15.113)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 17.907) (end 0 17.653)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 20.447) (end 0 20.193)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 22.987) (end 0 22.733)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 25.527) (end 0 25.273)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 28.067) (end 0 27.813)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 30.607) (end 0 30.353)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 33.147) (end 0 32.893)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 35.687) (end 0 35.433)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 38.227) (end 0 37.973)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 40.767) (end 0 40.513)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 43.307) (end 0 43.053)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 45.847) (end 0 45.593)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 46.99) (end 1.27 -49.53)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (pin passive line (at -5.08 45.72 0) (length 3.81)
          (name "Pin_1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 22.86 0) (length 3.81)
          (name "Pin_10" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 20.32 0) (length 3.81)
          (name "Pin_11" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 17.78 0) (length 3.81)
          (name "Pin_12" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 15.24 0) (length 3.81)
          (name "Pin_13" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 12.7 0) (length 3.81)
          (name "Pin_14" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 10.16 0) (length 3.81)
          (name "Pin_15" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 7.62 0) (length 3.81)
          (name "Pin_16" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 5.08 0) (length 3.81)
          (name "Pin_17" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 2.54 0) (length 3.81)
          (name "Pin_18" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 0 0) (length 3.81)
          (name "Pin_19" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 43.18 0) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_20" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 3.81)
          (name "Pin_21" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -7.62 0) (length 3.81)
          (name "Pin_22" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -10.16 0) (length 3.81)
          (name "Pin_23" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -12.7 0) (length 3.81)
          (name "Pin_24" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -15.24 0) (length 3.81)
          (name "Pin_25" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -17.78 0) (length 3.81)
          (name "Pin_26" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -20.32 0) (length 3.81)
          (name "Pin_27" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -22.86 0) (length 3.81)
          (name "Pin_28" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -25.4 0) (length 3.81)
          (name "Pin_29" (effects (font (size 1.27 1.27))))
          (number "29" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 40.64 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -27.94 0) (length 3.81)
          (name "Pin_30" (effects (font (size 1.27 1.27))))
          (number "30" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -30.48 0) (length 3.81)
          (name "Pin_31" (effects (font (size 1.27 1.27))))
          (number "31" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -33.02 0) (length 3.81)
          (name "Pin_32" (effects (font (size 1.27 1.27))))
          (number "32" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -35.56 0) (length 3.81)
          (name "Pin_33" (effects (font (size 1.27 1.27))))
          (number "33" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -38.1 0) (length 3.81)
          (name "Pin_34" (effects (font (size 1.27 1.27))))
          (number "34" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -40.64 0) (length 3.81)
          (name "Pin_35" (effects (font (size 1.27 1.27))))
          (number "35" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -43.18 0) (length 3.81)
          (name "Pin_36" (effects (font (size 1.27 1.27))))
          (number "36" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -45.72 0) (length 3.81)
          (name "Pin_37" (effects (font (size 1.27 1.27))))
          (number "37" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -48.26 0) (length 3.81)
          (name "Pin_38" (effects (font (size 1.27 1.27))))
          (number "38" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 38.1 0) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 35.56 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 33.02 0) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 30.48 0) (length 3.81)
          (name "Pin_7" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 27.94 0) (length 3.81)
          (name "Pin_8" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 25.4 0) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "+3.3V" (id 1) (at 0 3.556 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+3.3V_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "+3.3V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+3V3" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (id 1) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "#FLG" (id 0) (at 0 1.905 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "PWR_FLAG_0_0"
        (pin power_out line (at 0 0 90) (length 0)
          (name "pwr" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "PWR_FLAG_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 1.27)
            (xy -1.016 1.905)
            (xy 0 2.54)
            (xy 1.016 1.905)
            (xy 0 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
    )
    (symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "VCC" (id 1) (at 0 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"VCC\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "VCC_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "VCC_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 38.1 40.64) (diameter 0) (color 0 0 0 0))
  (junction (at 40.64 41.91) (diameter 0) (color 0 0 0 0))
  (junction (at 40.64 67.31) (diameter 0) (color 0 0 0 0))
  (junction (at 43.18 39.37) (diameter 0) (color 0 0 0 0))
  (junction (at 43.18 40.64) (diameter 0) (color 0 0 0 0))

  (wire (pts (xy 38.1 38.1) (xy 38.1 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e4b3fcf-5d04-47d7-8adc-95b178921619)
  )
  (wire (pts (xy 38.1 40.64) (xy 38.1 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e4b3fcf-5d04-47d7-8adc-95b178921619)
  )
  (wire (pts (xy 38.1 40.64) (xy 43.18 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7b3bb983-b2bb-4d28-8ec8-9539dcb34232)
  )
  (wire (pts (xy 40.64 38.1) (xy 40.64 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 02cd5a6c-27e2-47c4-8724-9d58b71ce15f)
  )
  (wire (pts (xy 40.64 64.77) (xy 40.64 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e9ad9c25-9549-45fc-adf7-da586996a561)
  )
  (wire (pts (xy 40.64 67.31) (xy 40.64 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e9ad9c25-9549-45fc-adf7-da586996a561)
  )
  (wire (pts (xy 43.18 38.1) (xy 43.18 39.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4658728b-b644-443f-98b8-6b95eeecbe0f)
  )
  (wire (pts (xy 43.18 39.37) (xy 43.18 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4658728b-b644-443f-98b8-6b95eeecbe0f)
  )
  (wire (pts (xy 43.18 40.64) (xy 43.18 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4658728b-b644-443f-98b8-6b95eeecbe0f)
  )
  (wire (pts (xy 43.18 64.77) (xy 43.18 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7e1177a6-0033-48c4-a181-86a037958015)
  )
  (wire (pts (xy 45.72 38.1) (xy 45.72 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8614fbe4-920d-4ba6-9306-4d1b5455b538)
  )
  (wire (pts (xy 45.72 64.77) (xy 45.72 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 02eacab1-d859-4c7b-b0d2-db7dedb90873)
  )
  (wire (pts (xy 48.26 38.1) (xy 48.26 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a9d8509d-d706-4123-9884-d710ddd3e1f3)
  )
  (wire (pts (xy 48.26 64.77) (xy 48.26 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3f31062b-8649-40ba-a4e8-e6b9d2b900b0)
  )
  (wire (pts (xy 50.8 38.1) (xy 50.8 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 90dda408-1704-45dc-bc64-85d0aa22cfd4)
  )
  (wire (pts (xy 50.8 64.77) (xy 50.8 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7905e93a-9445-4600-a3e6-88c529ddf1ea)
  )
  (wire (pts (xy 53.34 38.1) (xy 53.34 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c30e4aab-f335-49ed-9252-edde83c53d75)
  )
  (wire (pts (xy 53.34 64.77) (xy 53.34 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fa5ab58a-058b-4aeb-a433-6044bdff8047)
  )
  (wire (pts (xy 55.88 38.1) (xy 55.88 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b8b6a8a8-9a0a-4d8b-9966-44a94478b6e1)
  )
  (wire (pts (xy 55.88 64.77) (xy 55.88 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4f1b58b4-73bb-4813-865c-aaaf832e9024)
  )
  (wire (pts (xy 58.42 38.1) (xy 58.42 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 78f82661-3d26-4b0a-9358-328d03919b15)
  )
  (wire (pts (xy 58.42 64.77) (xy 58.42 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 47aa217b-5a4d-4969-908d-342cbdfa4905)
  )
  (wire (pts (xy 60.96 38.1) (xy 60.96 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6ab4e877-bf9d-420e-a826-507cb7464eb0)
  )
  (wire (pts (xy 60.96 64.77) (xy 60.96 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5acc19b6-97b7-43ce-9195-93f1a3a9ff04)
  )
  (wire (pts (xy 63.5 38.1) (xy 63.5 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid de926e3c-a0fa-44d9-bcea-bc8b279c5e5b)
  )
  (wire (pts (xy 63.5 64.77) (xy 63.5 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c1997f55-eae4-4ede-bd9d-dbd4956143d9)
  )
  (wire (pts (xy 66.04 38.1) (xy 66.04 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 76ef009b-d308-4d89-a5d7-4d83bc8cb0fa)
  )
  (wire (pts (xy 66.04 64.77) (xy 66.04 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 59d4021f-014f-40fe-ba48-e113134704c6)
  )
  (wire (pts (xy 68.58 38.1) (xy 68.58 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 275f8755-9854-4f35-a1ca-c2e78ad8e219)
  )
  (wire (pts (xy 68.58 64.77) (xy 68.58 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 02ad9d23-1a14-436e-9745-732c1f5ec5c3)
  )
  (wire (pts (xy 71.12 38.1) (xy 71.12 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6f97332b-ac4d-451b-b160-77eefb8fe1dc)
  )
  (wire (pts (xy 71.12 64.77) (xy 71.12 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 44c08dd9-6daa-4b2a-aa04-1df867b00f7b)
  )
  (wire (pts (xy 73.66 38.1) (xy 73.66 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 27f2c224-511e-4562-b7bc-39cabd2b1d8f)
  )
  (wire (pts (xy 73.66 64.77) (xy 73.66 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6aeb5d12-d9d8-4082-9231-cc89e8798574)
  )
  (wire (pts (xy 76.2 38.1) (xy 76.2 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6b6c2d6c-dc15-402b-9a9a-9fd043b3472e)
  )
  (wire (pts (xy 76.2 64.77) (xy 76.2 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7522f8fe-5ed9-4543-be67-77b8884234a2)
  )
  (wire (pts (xy 78.74 38.1) (xy 78.74 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a07a7907-0800-42ad-9732-453ba4b0d0e4)
  )
  (wire (pts (xy 78.74 64.77) (xy 78.74 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2d405098-bedd-46f5-ac5b-118bdd2063b5)
  )
  (wire (pts (xy 81.28 38.1) (xy 81.28 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid eb24e09e-94b4-44d6-9cd1-37b5a9abf97d)
  )
  (wire (pts (xy 81.28 64.77) (xy 81.28 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 24243a0d-74bf-4065-a0d2-27002b906f87)
  )
  (wire (pts (xy 83.82 38.1) (xy 83.82 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 57bf7c47-c906-4b7a-a1c0-4c6ca3d78188)
  )
  (wire (pts (xy 83.82 64.77) (xy 83.82 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 17c74e31-c9e2-4ee5-8d9b-c0ce9b44cb11)
  )
  (wire (pts (xy 86.36 38.1) (xy 86.36 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 634f4415-fcf8-4c03-8de1-5b1ba4a6189a)
  )
  (wire (pts (xy 86.36 64.77) (xy 86.36 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid af4c0aa0-d40c-4f0b-9dfa-94a23fea7513)
  )
  (wire (pts (xy 88.9 38.1) (xy 88.9 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 96f40ccd-8871-45fa-9586-7db4a8175063)
  )
  (wire (pts (xy 88.9 64.77) (xy 88.9 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid db10a533-b64f-4dfd-b4ea-d908cf1d04cd)
  )
  (wire (pts (xy 91.44 38.1) (xy 91.44 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1bf325b7-e5d9-484d-95c6-c1a50f40b2c0)
  )
  (wire (pts (xy 91.44 64.77) (xy 91.44 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 15820e44-ef96-4738-8630-707cb2614b2f)
  )
  (wire (pts (xy 93.98 38.1) (xy 93.98 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 468a438b-740a-481a-94f4-b98faa60b4cc)
  )
  (wire (pts (xy 93.98 64.77) (xy 93.98 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a7b36af1-2dc9-498b-bd1b-ddbcc029ce70)
  )
  (wire (pts (xy 96.52 38.1) (xy 96.52 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3e89170b-4985-48da-980b-d8e945d4cdda)
  )
  (wire (pts (xy 96.52 64.77) (xy 96.52 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 32ac8ab7-adca-4c76-9759-42f0d1ea8977)
  )
  (wire (pts (xy 99.06 38.1) (xy 99.06 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9bc23657-117b-42a0-ada3-d69107aad0c5)
  )
  (wire (pts (xy 99.06 64.77) (xy 99.06 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 271ea591-4226-46bd-8929-7bc8cb784e2e)
  )
  (wire (pts (xy 101.6 38.1) (xy 101.6 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 190fc80b-9448-4cc5-bf23-f7ac65c4f664)
  )
  (wire (pts (xy 101.6 64.77) (xy 101.6 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b0577003-4388-4186-b605-2a70037ef84e)
  )
  (wire (pts (xy 104.14 38.1) (xy 104.14 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3034a574-dffa-46a0-9cdb-41da44c89113)
  )
  (wire (pts (xy 104.14 64.77) (xy 104.14 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8f1c2832-7271-49e0-873c-17baf074ceb3)
  )
  (wire (pts (xy 106.68 38.1) (xy 106.68 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 39d3b492-bc1d-495e-9700-51ab8c29d11f)
  )
  (wire (pts (xy 106.68 64.77) (xy 106.68 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6fd15747-2400-49b0-95c3-250c52b39a94)
  )
  (wire (pts (xy 109.22 38.1) (xy 109.22 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b0341623-5eef-45a5-9d8b-9bc17a5bf426)
  )
  (wire (pts (xy 109.22 64.77) (xy 109.22 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7177114f-c3bf-4e9e-99ce-d3f378f5915a)
  )
  (wire (pts (xy 111.76 38.1) (xy 111.76 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9817587b-fdd2-4921-bdc5-be94ecd3a31e)
  )
  (wire (pts (xy 111.76 64.77) (xy 111.76 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e5175f69-849a-4d11-9217-fab24573a011)
  )
  (wire (pts (xy 114.3 38.1) (xy 114.3 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 690fbd38-5bab-4bda-a3e3-07c282d2d018)
  )
  (wire (pts (xy 114.3 64.77) (xy 114.3 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9b320516-86db-4b25-9635-e37e72e21ef6)
  )
  (wire (pts (xy 116.84 38.1) (xy 116.84 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bcc4eaa8-67b0-4821-898e-ab6bbb1091cb)
  )
  (wire (pts (xy 116.84 64.77) (xy 116.84 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2fd0dd41-5050-4474-83fe-e20f3e4b7a87)
  )
  (wire (pts (xy 119.38 38.1) (xy 119.38 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 997e6c62-50f0-409f-901a-2c1f1ffdff13)
  )
  (wire (pts (xy 119.38 64.77) (xy 119.38 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 776036cf-e1cc-4ef8-9604-1c8f8eb73619)
  )
  (wire (pts (xy 121.92 38.1) (xy 121.92 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ad270d59-802b-478a-aa89-f501c819ef50)
  )
  (wire (pts (xy 121.92 64.77) (xy 121.92 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 01b487ae-a576-48a8-bcd3-cb1c2813d17f)
  )
  (wire (pts (xy 124.46 38.1) (xy 124.46 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 061be85b-0101-4735-af07-3ccf64209c4a)
  )
  (wire (pts (xy 124.46 64.77) (xy 124.46 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 851dc41c-ae42-4abb-b472-6f3c26ee59ad)
  )
  (wire (pts (xy 127 38.1) (xy 127 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5f584ade-c830-47e4-bea9-2f29b153f227)
  )
  (wire (pts (xy 127 64.77) (xy 127 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 82e4eed9-d0e1-48b7-bfd3-928fc6476122)
  )
  (wire (pts (xy 129.54 38.1) (xy 129.54 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9a364b7c-e61a-449a-8c7c-e3d2bd7d0314)
  )
  (wire (pts (xy 129.54 64.77) (xy 129.54 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bfeabb97-a822-4aba-b00e-cd80d656656f)
  )
  (wire (pts (xy 132.08 38.1) (xy 132.08 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 992fdeb1-3b42-4d2c-9fcc-91a0ea3c3115)
  )
  (polyline (pts (xy 22.86 24.13) (xy 22.86 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 719dee9a-316c-45b1-bd14-4d21c279f6f6)
  )
  (polyline (pts (xy 22.86 24.13) (xy 138.43 24.13))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 719dee9a-316c-45b1-bd14-4d21c279f6f6)
  )
  (polyline (pts (xy 138.43 24.13) (xy 138.43 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 719dee9a-316c-45b1-bd14-4d21c279f6f6)
  )
  (polyline (pts (xy 138.43 81.28) (xy 22.86 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 719dee9a-316c-45b1-bd14-4d21c279f6f6)
  )

  (text "CARTRIDGE SLOT" (at 24.13 22.86 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 7e9616d8-8de9-4570-bc3f-23c460e2ea89)
  )

  (global_label "D0" (shape bidirectional) (at 43.18 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid e5191b47-19a6-49be-8fca-e9dee82b73ed)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 43.1006 73.4726 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A0" (shape bidirectional) (at 45.72 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid f82ad4ff-fe17-4fda-9c25-f5e553c803df)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 45.6406 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D1" (shape bidirectional) (at 45.72 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid b6f32c0b-706c-40ad-be1f-3d8dcd3921c2)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 45.6406 73.4726 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A1" (shape bidirectional) (at 48.26 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid a40e7a20-07eb-407c-a404-cf93c47a5982)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.1806 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D5" (shape bidirectional) (at 48.26 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 54a6d57b-3bc5-4a71-b2ba-292a5179a16f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.1806 73.4726 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A2" (shape bidirectional) (at 50.8 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 06534546-20e1-43b4-99a1-ea2233d9af9c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.7206 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D2" (shape bidirectional) (at 50.8 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 216586eb-d1cc-4fda-995e-be4ef12a5dae)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 50.7206 73.4726 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A3" (shape bidirectional) (at 53.34 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 6ca39434-a742-493f-8b60-99f1b5057b5c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 53.2606 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D3" (shape bidirectional) (at 53.34 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 69a6b0e6-4b7d-4637-82ca-c9d8a5eb09c3)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 53.2606 73.4726 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A4" (shape bidirectional) (at 55.88 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9ff589dd-7289-4cb3-bde4-a4a9a34f4b79)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 55.8006 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D41" (shape bidirectional) (at 55.88 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid b9df5128-81f0-4f3b-8635-8d504513f5c7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 55.8006 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A5" (shape bidirectional) (at 58.42 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 8166f78d-4bc6-4195-8e41-8049f263abfa)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.3406 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D40" (shape bidirectional) (at 58.42 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 3d6269de-0de7-48c8-9e55-3abe33401b77)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.3406 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A6" (shape bidirectional) (at 60.96 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9f36b5e4-feea-404f-9b59-06aa57fd7869)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.8806 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D4" (shape bidirectional) (at 60.96 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 38a31636-4d60-43b2-ad37-b67c9fef7907)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.8806 73.4726 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A7" (shape bidirectional) (at 63.5 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2c10cbfa-38c1-4778-b18c-0a53a093da0e)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 63.4206 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D15" (shape bidirectional) (at 63.5 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 3048e6f2-f021-4c38-941f-8759b0dd4633)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 63.4206 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D25" (shape bidirectional) (at 64.77 102.87 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 72f973d1-4bb2-4510-b1e9-40f90ba2ac15)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 102.7906 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D24" (shape bidirectional) (at 64.77 105.41 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9f88af26-93e6-4be6-8b9d-8c5437a2bd80)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 105.3306 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D23" (shape bidirectional) (at 64.77 107.95 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 492d347e-4d11-499a-a0b2-76625a1355d3)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 107.8706 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D22" (shape bidirectional) (at 64.77 110.49 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 01c28ef2-2db7-4215-9e1b-97372c880457)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 110.4106 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D42" (shape bidirectional) (at 64.77 113.03 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid bd315b27-5de9-4bcf-9e21-e372c32cd679)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 112.9506 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D43" (shape bidirectional) (at 64.77 115.57 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 4b094350-50f4-481b-8588-cdf2974b3927)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 115.4906 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D44" (shape bidirectional) (at 64.77 118.11 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 0611b193-2b80-4d2d-9fd4-6fc9c8057c53)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 118.0306 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D45" (shape bidirectional) (at 64.77 120.65 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 77a31a1f-e71d-4676-823f-4bfaf632f998)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 120.5706 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D46" (shape bidirectional) (at 64.77 123.19 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 180b4936-9dfc-4804-9cc6-62e7378f4906)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 123.1106 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D47" (shape bidirectional) (at 64.77 125.73 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid bf763280-c635-4967-b062-bd5fd6e3aff5)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 125.6506 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D48" (shape bidirectional) (at 64.77 128.27 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 214590b2-64c8-4073-9597-d19ae0ae1d3c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 128.1906 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D49" (shape bidirectional) (at 64.77 130.81 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid ee616d82-9458-476e-8c28-db588dad6f98)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 130.7306 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A7" (shape bidirectional) (at 64.77 133.35 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 11154d81-4f1a-49ac-a03d-5d1d4f77ada3)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.0588 133.2706 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A6" (shape bidirectional) (at 64.77 135.89 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 89a5f0fd-8e2d-46f9-9034-d5fe51c87b56)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.0588 135.8106 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A5" (shape bidirectional) (at 64.77 140.97 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 5a2ce006-087f-4e80-aaf0-fccd5d69a8b5)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.0588 140.8906 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D35" (shape bidirectional) (at 64.77 143.51 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid e15de63f-65f6-436a-ba0a-658ce0db96d2)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 143.4306 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D43" (shape bidirectional) (at 64.77 146.05 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid d592ab22-eac7-4048-a838-c4af05762abe)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 145.9706 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D44" (shape bidirectional) (at 64.77 148.59 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2f63c4fb-2421-40a8-a42a-344fb88f6a45)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 148.5106 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D45" (shape bidirectional) (at 64.77 151.13 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 7985284d-d659-415f-8cd9-b60a87633df6)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 151.0506 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D46" (shape bidirectional) (at 64.77 153.67 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid ee8ee438-010b-426e-ae89-dd7c83a8243f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 153.5906 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D47" (shape bidirectional) (at 64.77 156.21 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid fcc879ef-819b-488c-b334-b3bbfc00edda)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 156.1306 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D48" (shape bidirectional) (at 64.77 158.75 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 094f8953-10eb-42ee-8133-eee27ae96f0c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 158.6706 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D49" (shape bidirectional) (at 64.77 161.29 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 22949769-b6eb-497e-84ff-98901518097c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.6679 161.2106 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A8" (shape bidirectional) (at 64.77 163.83 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 1a86511e-f7a5-4a28-96f8-c65af3fbe337)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.0588 163.7506 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A9" (shape bidirectional) (at 64.77 166.37 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid f04c3cbc-1508-488b-b41e-2c7662216ee8)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 60.0588 166.2906 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A10" (shape bidirectional) (at 64.77 168.91 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid f0fdb28c-de5c-4c5e-bb16-a032da05822e)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.8493 168.8306 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A11" (shape bidirectional) (at 64.77 171.45 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 022f9d64-2290-4fd8-878a-65fd84630513)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 58.8493 171.3706 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A8" (shape bidirectional) (at 66.04 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c0e50e17-61cc-4939-a1f3-d3b5c345bf8e)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 65.9606 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D14" (shape bidirectional) (at 66.04 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 7e5b2d78-de2a-490a-9d1d-88d5a9eaee68)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 65.9606 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A9" (shape bidirectional) (at 68.58 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 0ca0b403-2ad5-408d-bb46-3666755b3875)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 68.5006 46.6212 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D22" (shape bidirectional) (at 68.58 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid a6a04d9f-b1d4-4ca9-aaa8-19ee2ce9a3c0)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 68.5006 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A10" (shape bidirectional) (at 71.12 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid b0798662-a65a-4a7e-9d6e-14a6a42b92c2)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 71.0406 47.8307 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D23" (shape bidirectional) (at 71.12 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 3e38a869-fb13-4ee9-8fe6-7c0a99a2a65c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 71.0406 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A11" (shape bidirectional) (at 73.66 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 7b04d8c1-a10e-4846-add9-72f229526c40)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 73.5806 47.8307 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D24" (shape bidirectional) (at 73.66 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid d55d6b27-e64a-4a0e-abf0-65d43cfd32db)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 73.5806 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A12" (shape bidirectional) (at 76.2 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 0f4e6834-547f-4a4b-be6c-ec769a78bf28)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.1206 47.8307 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D25" (shape bidirectional) (at 76.2 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 356fec73-6d0b-491a-88f3-7380df274353)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.1206 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A13" (shape bidirectional) (at 78.74 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 5232c920-8e7a-487c-8978-f619151d14b6)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 47.8307 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D26" (shape bidirectional) (at 78.74 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid e66cda10-72ef-4adb-8a96-51922c555ff7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 78.6606 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A14" (shape bidirectional) (at 81.28 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 80f91711-af7f-43b2-93be-4de7e4e4e141)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 47.8307 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D27" (shape bidirectional) (at 81.28 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 6a49a55b-1df4-4d59-916a-e182c4218681)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 81.2006 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A15" (shape bidirectional) (at 83.82 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 453ff284-1e53-41b0-a139-8622ea28653f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 83.7406 47.8307 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D28" (shape bidirectional) (at 83.82 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 44cc6d9b-405e-400c-92ef-cf944c338e53)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 83.7406 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D37" (shape bidirectional) (at 86.36 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 845a20f3-f42a-4ad9-b2c9-a86c86007da8)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.2806 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D29" (shape bidirectional) (at 86.36 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid e1f6f841-8f58-40f0-9e1c-54e46d8b3de2)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.2806 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D36" (shape bidirectional) (at 88.9 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2872f4ca-4e40-4fcf-9642-ac67bfbf5913)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 88.8206 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D49" (shape bidirectional) (at 88.9 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 152ce59d-f53c-4f99-a7cc-695f41aa383f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 88.8206 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D35" (shape bidirectional) (at 91.44 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid d724cbb4-a3b1-4923-bc8e-7a2e80026efe)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 91.3606 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D48" (shape bidirectional) (at 91.44 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 79e96b9e-fb60-4b25-89b1-9684c1e9a687)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 91.3606 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D34" (shape bidirectional) (at 93.98 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9fd78274-d556-4ca0-8d71-65b9527621de)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 93.9006 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D47" (shape bidirectional) (at 93.98 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid f9ab79a3-0fb7-46f3-9c20-57e13f259b65)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 93.9006 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D33" (shape bidirectional) (at 96.52 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 5e05102d-9e03-45af-98d4-5fa46122767d)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 96.4406 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D46" (shape bidirectional) (at 96.52 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 86b83e54-3880-46b5-b954-3d23e90301d8)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 96.4406 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D32" (shape bidirectional) (at 99.06 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid e819856c-5f78-4709-aef9-cae8595c1903)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 98.9806 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D45" (shape bidirectional) (at 99.06 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 300f0d49-3a6d-41e2-8c32-c5864a1d20a1)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 98.9806 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D31" (shape bidirectional) (at 101.6 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 58aa375f-497e-4dd3-b157-acf3937256b7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 101.5206 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D44" (shape bidirectional) (at 101.6 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 058f84cc-205a-4aca-b9b8-0b260d5c46f4)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 101.5206 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D30" (shape bidirectional) (at 104.14 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 6274a6aa-fe10-4076-af96-e38e60cd4f38)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.0606 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D43" (shape bidirectional) (at 104.14 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c7bab636-fb96-4ba5-bbef-9a56dc06b1b7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.0606 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "A0" (shape bidirectional) (at 105.41 102.87 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid ac5f1a3a-37a2-441a-b65e-1a77da9d6405)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.1212 102.9494 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D26" (shape bidirectional) (at 105.41 105.41 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 4905ff75-325a-433d-8743-1a0836788f2f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 105.4894 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D27" (shape bidirectional) (at 105.41 107.95 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid cb1cc462-4baf-487f-a379-d1ea94d488b0)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 108.0294 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D28" (shape bidirectional) (at 105.41 110.49 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid edf1c293-d725-430b-b71b-24ae50c2ace8)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 110.5694 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A15" (shape bidirectional) (at 105.41 113.03 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid bdc066e7-82f2-4a39-b0a9-51d237597419)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 113.1094 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A14" (shape bidirectional) (at 105.41 115.57 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 5c55587d-6dc9-4c3d-814d-116bd99be13b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 115.6494 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A13" (shape bidirectional) (at 105.41 118.11 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid d6918d77-ae71-49d5-9598-a9560ea78bab)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 118.1894 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A12" (shape bidirectional) (at 105.41 120.65 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid f035d9ec-b321-4cd8-ac6f-4059cdd301f3)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 120.7294 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A11" (shape bidirectional) (at 105.41 123.19 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c05bef0d-b171-4bdb-b430-35c8b3bc1bd7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 123.2694 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A10" (shape bidirectional) (at 105.41 125.73 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 41856750-089a-4037-8198-706b37cebc29)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 125.8094 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A9" (shape bidirectional) (at 105.41 128.27 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 0a44af85-3863-4180-a0a0-96ea4c481125)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.1212 128.3494 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A8" (shape bidirectional) (at 105.41 130.81 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 0f08bb3a-4f13-48fc-ad41-10c76b62e53c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.1212 130.8894 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A1" (shape bidirectional) (at 105.41 133.35 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 4fa71975-93b8-47d9-8086-bc44be011245)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.1212 133.4294 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A2" (shape bidirectional) (at 105.41 140.97 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 92872d9f-05b4-4e89-81fa-15b50594dad9)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.1212 141.0494 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A3" (shape bidirectional) (at 105.41 143.51 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid a9dfcef6-8a37-4283-90e0-bb6eeeff59aa)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.1212 143.5894 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A4" (shape bidirectional) (at 105.41 146.05 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 8a9b7f7a-1562-4d39-afd8-133e148354e7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 110.1212 146.1294 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D42" (shape bidirectional) (at 105.41 148.59 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 84ec3ba8-b90a-4884-9c32-45e6d11e4d67)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 148.6694 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D22" (shape bidirectional) (at 105.41 151.13 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid b1d3037e-71a2-43d7-95ac-2e13dafed376)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 151.2094 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D23" (shape bidirectional) (at 105.41 153.67 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 05aa918a-8f40-456e-bc02-4b291ec834bd)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 153.7494 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D24" (shape bidirectional) (at 105.41 156.21 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 0d26c2b5-ff1b-4445-ade8-f88a78c2734b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 156.2894 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D25" (shape bidirectional) (at 105.41 158.75 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 137ea05e-c3d2-4b5e-a7ab-35455c1437c8)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 158.8294 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D26" (shape bidirectional) (at 105.41 161.29 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 2f55ba64-1f61-4ae2-944f-7b2b7860190f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 161.3694 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D27" (shape bidirectional) (at 105.41 163.83 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 5d194864-31ea-482a-90b2-a56bc210a14a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.5121 163.9094 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A15" (shape bidirectional) (at 105.41 166.37 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid f7f83fdc-bfd9-469f-9999-730e78623f7a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 166.4494 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A14" (shape bidirectional) (at 105.41 168.91 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 3d4bac11-00d5-4249-a082-82a6263d0eb1)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 168.9894 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A13" (shape bidirectional) (at 105.41 171.45 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid cea8df13-dab6-4898-8a2e-6a1474e8c64a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 171.5294 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "A12" (shape bidirectional) (at 105.41 173.99 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid b31a6c13-c9ce-4d0e-8d23-e1228dd05daf)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.3307 174.0694 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "D17" (shape bidirectional) (at 106.68 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 010bb5d1-92c7-493a-bcc9-e4e68899930a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.6006 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D42" (shape bidirectional) (at 106.68 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid ef925742-e46f-4b37-9cbd-d45f0476028b)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.6006 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D16" (shape bidirectional) (at 109.22 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 20fc1125-2f86-487b-91fd-466263d513b4)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.1406 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D20" (shape bidirectional) (at 109.22 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 3b1ddaba-17cc-441c-b753-df2f05c15aa1)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 109.1406 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D6" (shape bidirectional) (at 111.76 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid dbf88986-df35-4bfb-905f-77c8a768ed08)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.6806 46.8026 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D21" (shape bidirectional) (at 111.76 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 3c04af40-06a9-493f-92be-2a86df2c088a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.6806 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D7" (shape bidirectional) (at 114.3 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 1a535879-664b-41f3-a943-8e6c4b23ee8d)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.2206 46.8026 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CLK2" (shape input) (at 114.3 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 8a9ff6bd-986b-4a6f-b531-ffed4c599091)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.2206 75.7707 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D8" (shape bidirectional) (at 116.84 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c8f50662-2d10-4193-8430-b452295ce5d2)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 116.7606 46.8026 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CLK1" (shape input) (at 116.84 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 03ba13ad-faf7-45dd-b180-9719252ecba3)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 116.7606 75.7707 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D9" (shape bidirectional) (at 119.38 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 98e14e3a-5f78-48ad-9bf5-6ba0a8b07d81)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.3006 46.8026 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "CLK0" (shape input) (at 119.38 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 0b976e16-a3f6-49c3-af9f-bdabcee91cb4)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 119.3006 75.7707 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D53" (shape input) (at 121.92 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 6ec392cc-d031-4430-adf5-5c3ee49603d7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.8406 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D13" (shape input) (at 121.92 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 5858eb70-ba9b-4d7c-af66-34164c211fc1)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.8406 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D52" (shape input) (at 124.46 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 2486de77-1379-48da-8ea5-35b42789f1ff)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 124.3806 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D38" (shape bidirectional) (at 124.46 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9745302c-9100-4b14-bd7d-5f8f970847c6)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 124.3806 74.6821 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D51" (shape input) (at 127 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 3d0a28b6-9d57-4fab-9b3e-613d68285c34)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.9206 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "RESET" (shape output) (at 127 68.58 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid cc05287d-28eb-4e6b-bb17-6de46378186e)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.9206 76.7383 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "D50" (shape output) (at 129.54 41.91 270) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 1a3c3455-5caa-4f4b-ae2d-c4a00b3ca777)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 129.4606 48.0121 90)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )

  (symbol (lib_id "power:VCC") (at 38.1 41.91 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid d921e323-7f02-48b1-8968-74720dbf839c)
    (property "Reference" "#PWR013" (id 0) (at 38.1 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 38.1 46.99 90))
    (property "Footprint" "" (id 2) (at 38.1 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 38.1 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8eca0a41-3c28-4ed5-ad49-c474b8733907))
  )

  (symbol (lib_id "power:+3.3V") (at 40.64 41.91 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 05781472-efe1-4bcc-ba11-278fb0abb78a)
    (property "Reference" "#PWR014" (id 0) (at 40.64 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3.3V" (id 1) (at 40.64 46.99 90))
    (property "Footprint" "" (id 2) (at 40.64 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 40.64 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dc8d40c2-94df-48e5-9056-ec1f5cc9cca2))
  )

  (symbol (lib_id "power:VCC") (at 64.77 173.99 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid f59e3b94-c636-4692-a497-a80dd2a68be3)
    (property "Reference" "#PWR0101" (id 0) (at 68.58 173.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 59.69 173.99 90))
    (property "Footprint" "" (id 2) (at 64.77 173.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 64.77 173.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ac7102d0-b3af-438e-812c-25f595bf720d))
  )

  (symbol (lib_id "power:VCC") (at 105.41 100.33 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid eda19aba-2d2e-4749-b139-7eb71060634c)
    (property "Reference" "#PWR0107" (id 0) (at 101.6 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 110.49 100.33 90))
    (property "Footprint" "" (id 2) (at 105.41 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 105.41 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1dd47ef9-29c1-467a-9e15-3f8e2b901f7e))
  )

  (symbol (lib_id "power:VCC") (at 129.54 68.58 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid a6f486d6-3f32-4fec-a955-5db51ce41b32)
    (property "Reference" "#PWR0102" (id 0) (at 129.54 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "VCC" (id 1) (at 129.54 73.66 90))
    (property "Footprint" "" (id 2) (at 129.54 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 129.54 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e77fac06-1080-4e00-8885-ca6147b30280))
  )

  (symbol (lib_id "power:PWR_FLAG") (at 40.64 41.91 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid b687a1f9-504a-4b40-bdc0-05b152e57697)
    (property "Reference" "#FLG0102" (id 0) (at 38.735 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (id 1) (at 38.1 41.9101 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 40.64 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 40.64 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d55bb840-db70-4d85-b87a-186678937f6b))
  )

  (symbol (lib_id "power:PWR_FLAG") (at 40.64 67.31 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f13a8730-0d5a-4e6f-9176-fd0404af1a22)
    (property "Reference" "#FLG01" (id 0) (at 38.735 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (id 1) (at 36.83 67.3099 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 40.64 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 40.64 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 16c0822b-6787-4f03-8193-f468a6894096))
  )

  (symbol (lib_id "power:PWR_FLAG") (at 43.18 39.37 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 9aba59ad-4b5c-4de7-a53a-78910f3056ea)
    (property "Reference" "#FLG0101" (id 0) (at 41.275 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "PWR_FLAG" (id 1) (at 40.64 39.3701 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 43.18 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 43.18 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f5cb1763-2978-4f50-b881-901b654ff7ae))
  )

  (symbol (lib_id "power:GND") (at 40.64 68.58 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 19ca6a68-41da-4635-a556-ed835dce8f06)
    (property "Reference" "#PWR01" (id 0) (at 40.64 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 40.64 73.66 90))
    (property "Footprint" "" (id 2) (at 40.64 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 40.64 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a0a8c710-f33b-4f73-8a37-6387d93a1d21))
  )

  (symbol (lib_id "power:GND") (at 64.77 100.33 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid be162f71-c69c-42e9-ab5f-fc0c0d0fb69a)
    (property "Reference" "#PWR0106" (id 0) (at 58.42 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 57.15 100.3299 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 64.77 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 64.77 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 27794b66-f401-4cab-b793-936c21d7cef1))
  )

  (symbol (lib_id "power:GND") (at 64.77 138.43 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 7575804c-0d90-4d3c-8a84-90508eaebc4e)
    (property "Reference" "#PWR0103" (id 0) (at 58.42 138.43 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 57.15 138.4299 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 64.77 138.43 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 64.77 138.43 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 644bda17-bc04-42b2-9d5e-e553380f58c6))
  )

  (symbol (lib_id "power:GND") (at 132.08 41.91 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8198c8b5-b666-446e-859f-0fef69a5602d)
    (property "Reference" "#PWR0104" (id 0) (at 132.08 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 132.08 46.99 0))
    (property "Footprint" "" (id 2) (at 132.08 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 132.08 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 48572633-f475-4167-8e4e-eb6e400e891d))
  )

  (symbol (lib_id "Connector_Generic:Conn_01x36") (at 83.82 59.69 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0137a031-e449-4cf2-a1d4-2cc5020b65f3)
    (property "Reference" "J2" (id 0) (at 85.09 53.34 90))
    (property "Value" "CART SLOT BOTTOM ROW" (id 1) (at 85.09 55.88 90))
    (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x36_P2.54mm_Vertical" (id 2) (at 83.82 59.69 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 83.82 59.69 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a94405ed-0b22-4885-9a91-1f84ca96c3f0))
    (pin "10" (uuid 4caf423c-56c5-49fc-98b8-d872b8a02006))
    (pin "11" (uuid 1a4fb379-f950-457d-b50b-845586b3bf51))
    (pin "12" (uuid ece9dad7-abec-4b35-aefb-4e4ad7d1b1bd))
    (pin "13" (uuid 26558e54-b73e-480d-b061-c6be66247506))
    (pin "14" (uuid 274f167d-e13c-4084-b569-8b793d91f0ef))
    (pin "15" (uuid 80568080-1281-44b6-a92c-a141ab1a4262))
    (pin "16" (uuid 13716329-e40a-4f5b-b3c5-f084cd2c79ef))
    (pin "17" (uuid 678a1c9a-2c69-4c35-ac59-df1f1e3ec519))
    (pin "18" (uuid 4edf6815-a980-4454-85bd-ab167b16d2c4))
    (pin "19" (uuid 71123f52-16b2-41ed-a4b8-c6c318f789d6))
    (pin "2" (uuid ed0f45fa-1e84-4aa5-8523-1191abc43f3d))
    (pin "20" (uuid c6555600-b509-49ae-99f8-2ba78aae0490))
    (pin "21" (uuid 0bceb731-ba16-4556-b932-43a7b0ed2132))
    (pin "22" (uuid 7d991f9a-6d31-41be-b725-ef736489d38b))
    (pin "23" (uuid 89b5c9e0-d020-47ea-8444-b27683f39957))
    (pin "24" (uuid e6ea983b-5636-4c73-8877-7ff20d9a3f3a))
    (pin "25" (uuid ddcbb8e8-ad04-45d8-b398-a22060b93fba))
    (pin "26" (uuid 4c86e887-c142-4397-817b-ade1819a155b))
    (pin "27" (uuid c24e4b3b-c05b-4e3d-a1ee-e2e7a4aa4652))
    (pin "28" (uuid 8bda0082-dcec-4713-8b3c-5555c83b4bb5))
    (pin "29" (uuid 6bb2ef46-5e61-4fde-b683-4f329ae957ba))
    (pin "3" (uuid 9fbb3285-e84d-40e9-b228-a9cb60c5ab55))
    (pin "30" (uuid d173d09c-0cbf-4568-827f-3d8457e6609c))
    (pin "31" (uuid 9e7382b0-53e8-4cb7-80dd-7d043efdb590))
    (pin "32" (uuid 83b80763-3bd0-4a5a-b163-c498f96211fa))
    (pin "33" (uuid ba901401-10bc-4c88-a011-574c3b3e626f))
    (pin "34" (uuid 494b8653-0295-488d-b78d-542a7c9aa928))
    (pin "35" (uuid 7f615913-03dc-44cc-a1b8-c7be2d60d368))
    (pin "36" (uuid 075685a2-3caa-4b94-9e39-f9d645432e83))
    (pin "4" (uuid d76ccdd3-721d-46a5-bfbf-6544e9ffe4b9))
    (pin "5" (uuid 05fda391-abf6-4e16-9f0e-d32ebb26e178))
    (pin "6" (uuid 191b3395-d098-46ff-8ed0-83291c6fbc8c))
    (pin "7" (uuid 045a5f5f-4a51-4ba4-9488-600c41e977c7))
    (pin "8" (uuid f269d1fe-ab06-40ee-a1f0-deff99e79b30))
    (pin "9" (uuid e987c1ea-7888-4d90-9d0c-79edd295e4a6))
  )

  (symbol (lib_id "Connector_Generic:Conn_01x38") (at 83.82 33.02 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7f6cd577-ef9e-42a4-adf6-7998d45df605)
    (property "Reference" "J1" (id 0) (at 85.09 26.67 90))
    (property "Value" "CART SLOT TOP ROW" (id 1) (at 85.09 29.21 90))
    (property "Footprint" "Connector_PinSocket_2.54mm:PinSocket_1x38_P2.54mm_Vertical" (id 2) (at 83.82 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 83.82 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ec84bf09-e1c1-46dd-a012-c332cdd0c2d5))
    (pin "10" (uuid eef16bf3-a050-4d90-96ee-40b104928198))
    (pin "11" (uuid 3c236b88-d555-42db-b1ae-51d72b98ace0))
    (pin "12" (uuid e910263f-5657-437c-a1cf-967f621f6787))
    (pin "13" (uuid 3b05712a-a971-4612-b6b4-3e4629eaf6b6))
    (pin "14" (uuid 57661ec9-c3db-4e0d-9bf1-bdd7e00d0b06))
    (pin "15" (uuid 431394c7-1ec0-4446-8d78-02a88dbb2d7d))
    (pin "16" (uuid e667054c-9d71-47e3-8817-0db24d654848))
    (pin "17" (uuid 8eaf6758-8a3a-4a38-bff4-f2831614bbd7))
    (pin "18" (uuid 83278d06-048f-4e08-96a5-da9cdef7ebac))
    (pin "19" (uuid afffcefa-72d2-4811-8116-8f259650fd43))
    (pin "2" (uuid 1a9cfaa4-4389-490e-ae92-2bfdc5c183ce))
    (pin "20" (uuid c09b255d-54d4-4b9e-964d-21f62dc916b3))
    (pin "21" (uuid 708c8e19-eeac-415b-aabd-1be203ffe117))
    (pin "22" (uuid 22639b6a-d992-4b04-b9f6-bc7c2b508a4b))
    (pin "23" (uuid 6765b331-4455-4127-b384-e6dd0a3a0797))
    (pin "24" (uuid 36a193d1-f60f-4761-b1b8-6cf5eeb4509b))
    (pin "25" (uuid 98443aeb-e0bf-4243-bb20-d2f08eded3a0))
    (pin "26" (uuid 54b69353-54a7-461e-89be-9a730aa5db4d))
    (pin "27" (uuid 6f91223a-dac7-406b-9286-25ad7a92ea81))
    (pin "28" (uuid aa2e768a-cf92-4e72-82d0-ad37247913b0))
    (pin "29" (uuid 1347bfaa-7d4f-4a42-aa80-ebf558fda5ab))
    (pin "3" (uuid 81fa939b-f97a-4656-a7af-9533827a4f41))
    (pin "30" (uuid e16ba5d8-296b-424a-9959-80064bb57b1c))
    (pin "31" (uuid 2ca1c592-88da-4763-97eb-60020e628c23))
    (pin "32" (uuid a696ee9e-d58a-4933-b021-6fdf10f1ab7f))
    (pin "33" (uuid 2634f6b8-8f56-42be-8819-131d31569533))
    (pin "34" (uuid 7c1e0b72-9a97-4909-bbdf-96d17781427c))
    (pin "35" (uuid 5d9855bb-7253-4c8e-9aed-d34d78364497))
    (pin "36" (uuid cbcb7911-a6e4-4ce7-a607-77a737e84f20))
    (pin "37" (uuid 87223e7f-2879-429d-bedf-62ba6b9ec26a))
    (pin "38" (uuid 3527131e-d5e2-4f44-bb0e-d6248669ae5a))
    (pin "4" (uuid c42fcdf2-f44a-4672-8b7f-e307b6f88d69))
    (pin "5" (uuid ee70109e-2606-40c7-a326-a3800f9ef811))
    (pin "6" (uuid 252188a5-947f-4c8b-a707-bf6c3afd292c))
    (pin "7" (uuid c9d7125d-0de0-4257-9964-57b708d13659))
    (pin "8" (uuid 7fe762f7-9a34-4017-bdb4-2414750c27af))
    (pin "9" (uuid 3affc2b1-afbe-4ada-872b-0fb3d5a67416))
  )

  (symbol (lib_id "!OSCR:FC_Slot") (at 85.09 142.24 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1f7b1bbc-5833-40fe-8c7f-ca5b1c66070c)
    (property "Reference" "U1" (id 0) (at 85.09 92.71 0))
    (property "Value" "FC_Slot" (id 1) (at 85.09 95.25 0))
    (property "Footprint" "" (id 2) (at 85.09 142.24 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 85.09 142.24 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 16a0c80e-3b43-4e38-b2c6-b68afa9eca42))
    (pin "10" (uuid b10baab6-54a2-47c2-aad3-f65ce81abaca))
    (pin "11" (uuid 4603cf80-a773-49b9-b632-b8f9d77e5170))
    (pin "12" (uuid a7420eac-5c6d-406c-9040-2cdbb1e9f14a))
    (pin "13" (uuid 2e0816c9-dd9b-4f52-8d5f-610695988440))
    (pin "14" (uuid dca98774-0b0b-4f4c-adc4-af676ea18696))
    (pin "15" (uuid 8faaab27-8265-4585-9760-73408d8eff57))
    (pin "16" (uuid 51569199-1c1b-4df0-8a75-d1649656e23c))
    (pin "17" (uuid 80885d7e-2798-4ad3-ba12-0288c606269d))
    (pin "18" (uuid d7af9993-055a-4dd9-adc5-59d015def64c))
    (pin "19" (uuid ed721db3-4679-4e8b-b620-0e2d08950f40))
    (pin "2" (uuid 6150e7f9-83e4-43d3-b3df-5e3103a4df38))
    (pin "20" (uuid bf657a22-24fe-4622-837f-afc8630e0d30))
    (pin "21" (uuid f17ea17b-4fdd-4947-a891-a6904b1d06ea))
    (pin "22" (uuid d28ea428-d080-4a8b-abc4-58a1e3b5faaf))
    (pin "23" (uuid 50e0c312-fe99-4c08-ba41-a65a6638c81b))
    (pin "24" (uuid e9158689-c12a-49a3-a1de-9f377f5f386b))
    (pin "25" (uuid 9a061a37-e3a8-4d02-b1f4-991729166e78))
    (pin "26" (uuid 6a80049a-101c-4bdc-8647-4fbb00f62979))
    (pin "27" (uuid d6c90a7d-eafb-47e1-8530-454f3beac69d))
    (pin "28" (uuid d5200910-39bb-4d1c-b5d4-33424d304d44))
    (pin "29" (uuid 0b3d5f5f-1de1-402f-a9d9-ebd16f87c864))
    (pin "3" (uuid 67707186-28e7-4628-ab07-959e3b1526ef))
    (pin "30" (uuid d3ababa7-7183-41ca-90c5-24eec9cfd924))
    (pin "31" (uuid 617e79e7-92da-409a-b773-d4ad01d9bd17))
    (pin "32" (uuid 11104041-fe2c-430a-8d6c-de42a334fd02))
    (pin "33" (uuid c01e46cd-29f8-42e5-8f15-81b23fb219b8))
    (pin "34" (uuid 257368eb-7e1a-44d8-bae3-71c8e7e176ca))
    (pin "35" (uuid 074e69bf-8e3b-4418-b870-5b28f53ea10c))
    (pin "36" (uuid e3db44bb-ac90-45aa-95b7-66493df3d7ce))
    (pin "37" (uuid bd008086-44a5-4ad0-bc37-c47e175fd643))
    (pin "38" (uuid 18a81967-1251-41d5-8c78-56db4e3d7e49))
    (pin "39" (uuid e85e0016-0f2d-4399-96f5-4672a463de93))
    (pin "4" (uuid 2535d9ff-7540-4da2-841d-923ae29c5345))
    (pin "40" (uuid 98a34f65-fffd-4032-9755-a63a9f4b1533))
    (pin "41" (uuid 9c03315b-cbe4-4c52-b7dd-cea2692f909f))
    (pin "42" (uuid 6f8bf73a-c97e-45b8-9f8b-d7157a8a8b0b))
    (pin "43" (uuid 8b387e16-0521-42c4-8252-c3b726fbd5a0))
    (pin "44" (uuid 014c0469-0813-468b-856b-bc789f8f9e9e))
    (pin "45" (uuid 54600c18-beb5-428c-b1c3-50d12c9fb844))
    (pin "46" (uuid 16b34a2c-b375-419d-84c6-e73455b147c0))
    (pin "47" (uuid 42d449b3-698a-467f-89e2-7b812b9e8046))
    (pin "48" (uuid 3b084d79-a3f6-4da5-bfdb-9c0bf5b5abaa))
    (pin "49" (uuid 1c3201d6-6f27-4026-96fc-21925b6ce255))
    (pin "5" (uuid 20f9a398-4a26-4a3d-a20c-237064bba5e1))
    (pin "50" (uuid 480656d2-ef84-4aea-930d-03cbf80c04a4))
    (pin "51" (uuid 487ba0d9-3570-44fb-8d82-ccada61ac594))
    (pin "52" (uuid d8dabfc7-214f-485d-9c0f-d0a64fa9b06c))
    (pin "53" (uuid 52222ddf-3161-4223-b3b5-c1a5f2695bae))
    (pin "54" (uuid 559373a3-f285-448f-b2d8-7e887fe7bf48))
    (pin "55" (uuid de90a5e0-68ba-4a38-a58d-17d3d4497226))
    (pin "56" (uuid 2ea769a2-b82c-444d-aadd-ab3437ed88b0))
    (pin "57" (uuid 5fe776f9-c600-4982-9a58-7978d03636f1))
    (pin "58" (uuid a327023c-ea13-4c28-857f-dbd7a1ef9c06))
    (pin "59" (uuid 1d5531d7-7523-4cd8-bde2-bb070e2431c5))
    (pin "6" (uuid f8468065-1839-428e-8038-682c94c4cb92))
    (pin "60" (uuid 7b0375c6-1f26-4ffc-af14-d4f0c1dcb40a))
    (pin "7" (uuid 5d0d7351-6a6e-4654-adf7-6d67a0f8a85a))
    (pin "8" (uuid 8298978a-7ca9-41f0-9116-f21f79d02749))
    (pin "9" (uuid 5d518b7b-e0f8-4725-83da-037e15ab609f))
  )

  (sheet_instances
    (path "/" (page "1"))
  )

  (symbol_instances
    (path "/f13a8730-0d5a-4e6f-9176-fd0404af1a22"
      (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/9aba59ad-4b5c-4de7-a53a-78910f3056ea"
      (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/b687a1f9-504a-4b40-bdc0-05b152e57697"
      (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/19ca6a68-41da-4635-a556-ed835dce8f06"
      (reference "#PWR01") (unit 1) (value "GND") (footprint "")
    )
    (path "/d921e323-7f02-48b1-8968-74720dbf839c"
      (reference "#PWR013") (unit 1) (value "VCC") (footprint "")
    )
    (path "/05781472-efe1-4bcc-ba11-278fb0abb78a"
      (reference "#PWR014") (unit 1) (value "+3.3V") (footprint "")
    )
    (path "/f59e3b94-c636-4692-a497-a80dd2a68be3"
      (reference "#PWR0101") (unit 1) (value "VCC") (footprint "")
    )
    (path "/a6f486d6-3f32-4fec-a955-5db51ce41b32"
      (reference "#PWR0102") (unit 1) (value "VCC") (footprint "")
    )
    (path "/7575804c-0d90-4d3c-8a84-90508eaebc4e"
      (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
    )
    (path "/8198c8b5-b666-446e-859f-0fef69a5602d"
      (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
    )
    (path "/be162f71-c69c-42e9-ab5f-fc0c0d0fb69a"
      (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
    )
    (path "/eda19aba-2d2e-4749-b139-7eb71060634c"
      (reference "#PWR0107") (unit 1) (value "VCC") (footprint "")
    )
    (path "/7f6cd577-ef9e-42a4-adf6-7998d45df605"
      (reference "J1") (unit 1) (value "CART SLOT TOP ROW") (footprint "Connector_PinSocket_2.54mm:PinSocket_1x38_P2.54mm_Vertical")
    )
    (path "/0137a031-e449-4cf2-a1d4-2cc5020b65f3"
      (reference "J2") (unit 1) (value "CART SLOT BOTTOM ROW") (footprint "Connector_PinSocket_2.54mm:PinSocket_1x36_P2.54mm_Vertical")
    )
    (path "/1f7b1bbc-5833-40fe-8c7f-ca5b1c66070c"
      (reference "U1") (unit 1) (value "FC_Slot") (footprint "")
    )
  )
)