summaryrefslogtreecommitdiffstats
path: root/schematics_myavr/tetris.kicad_sch
blob: 93f2f2aee31bfd6d26d8ea9ff0a64c3d59b83486 (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
(kicad_sch (version 20211123) (generator eeschema)

  (uuid d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)

  (paper "A4")

  (title_block
    (title "MyAVR MK2 - gaming extension")
    (date "4 mar 2013")
    (rev "1.0")
    (company "Michael Buesch <m@bues.ch>")
  )

  (lib_symbols
    (symbol "74hct4094:74HCT4094" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at 0 -13.9954 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Value" "74HCT4094" (id 1) (at 0 13.9954 0)
        (effects (font (size 1.524 1.524)))
      )
      (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 "74HCT4094_0_1"
        (rectangle (start -10.16 11.43) (end 10.16 -11.43)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "74HCT4094_1_1"
        (pin input line (at -16.51 8.89 0) (length 7.62)
          (name "STR" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -6.35 180) (length 7.62)
          (name "QS2" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -3.81 180) (length 7.62)
          (name "QP7" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -1.27 180) (length 7.62)
          (name "QP6" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 1.27 180) (length 7.62)
          (name "QP5" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 3.81 180) (length 7.62)
          (name "QP4" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 6.35 180) (length 7.62)
          (name "OE" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 8.89 180) (length 7.62)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 6.35 0) (length 7.62)
          (name "D" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 3.81 0) (length 7.62)
          (name "CP" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 1.27 0) (length 7.62)
          (name "QP0" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -1.27 0) (length 7.62)
          (name "QP1" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -3.81 0) (length 7.62)
          (name "QP2" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -6.35 0) (length 7.62)
          (name "QP3" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -8.89 0) (length 7.62)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -8.89 180) (length 7.62)
          (name "QS1" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 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" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_Polarized_0_1"
        (rectangle (start -2.286 0.508) (end 2.286 1.016)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.778 2.286)
            (xy -0.762 2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 2.794)
            (xy -1.27 1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "C_Polarized_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "D" (id 0) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "LED" (id 1) (at 0 -2.54 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" "LED diode" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LED_0_1"
        (polyline
          (pts
            (xy -1.27 -1.27)
            (xy -1.27 1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 0)
            (xy 1.27 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -1.27)
            (xy 1.27 1.27)
            (xy -1.27 0)
            (xy 1.27 -1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -3.048 -0.762)
            (xy -4.572 -2.286)
            (xy -3.81 -2.286)
            (xy -4.572 -2.286)
            (xy -4.572 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.778 -0.762)
            (xy -3.302 -2.286)
            (xy -2.54 -2.286)
            (xy -3.302 -2.286)
            (xy -3.302 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "LED_1_1"
        (pin passive line (at -3.81 0 0) (length 2.54)
          (name "K" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (id 1) (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at -1.778 0 90)
        (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" "R res resistor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "RV" (id 0) (at -4.445 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R_Potentiometer" (id 1) (at -2.54 0 90)
        (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" "resistor variable" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Potentiometer" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Potentiometer*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_Potentiometer_0_1"
        (polyline
          (pts
            (xy 2.54 0)
            (xy 1.524 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.143 0)
            (xy 2.286 0.508)
            (xy 2.286 -0.508)
            (xy 1.143 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start 1.016 2.54) (end -1.016 -2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_Potentiometer_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Speaker_Crystal" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "LS" (id 0) (at 0.635 5.715 0)
        (effects (font (size 1.27 1.27)) (justify right))
      )
      (property "Value" "Speaker_Crystal" (id 1) (at 0.635 3.81 0)
        (effects (font (size 1.27 1.27)) (justify right))
      )
      (property "Footprint" "" (id 2) (at -0.889 -1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at -0.889 -1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "crystal speaker ultrasonic transducer" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Crystal speaker/transducer" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Speaker_Crystal_0_0"
        (rectangle (start -2.54 1.27) (end 1.143 -3.81)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -2.032 -0.635) (end 0.635 -1.905)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.651 -2.286)
            (xy 0.381 -2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.651 -0.254)
            (xy 0.381 -0.254)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.635 -2.286)
            (xy -0.635 -3.048)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.635 -0.254)
            (xy -0.635 0.508)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.143 1.27)
            (xy 3.683 3.81)
            (xy 3.683 -6.35)
            (xy 1.143 -3.81)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Speaker_Crystal_1_1"
        (pin input line (at -5.08 0 0) (length 2.54)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -5.08 -2.54 0) (length 2.54)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "SW" (id 0) (at 1.27 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 5.08 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 5.08 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "SW_Push_0_1"
        (circle (center -2.032 0) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 1.27)
            (xy 0 3.048)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 1.27)
            (xy -2.54 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 2.032 0) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at -5.08 0 0) (length 2.54)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 5.08 0 180) (length 2.54)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "ks0108:KS0108" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "S" (id 0) (at -20.32 20.32 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Value" "KS0108" (id 1) (at 20.32 20.32 0)
        (effects (font (size 1.524 1.524)))
      )
      (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 "KS0108_0_0"
        (text "ABC" (at 1.27 3.81 0)
          (effects (font (size 12.7 12.7)))
        )
      )
      (symbol "KS0108_0_1"
        (rectangle (start -36.83 13.97) (end 36.83 -5.08)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 40.64 -13.97) (end -40.64 17.78)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "KS0108_1_1"
        (pin input line (at -38.1 -21.59 90) (length 7.62)
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -3.81 -21.59 90) (length 7.62)
          (name "DB3" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 0 -21.59 90) (length 7.62)
          (name "DB4" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 3.81 -21.59 90) (length 7.62)
          (name "DB5" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 7.62 -21.59 90) (length 7.62)
          (name "DB6" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 11.43 -21.59 90) (length 7.62)
          (name "DB7" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 15.24 -21.59 90) (length 7.62)
          (name "CS1" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 19.05 -21.59 90) (length 7.62)
          (name "CS2" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin input inverted (at 22.86 -21.59 90) (length 7.62)
          (name "RST" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 26.67 -21.59 90) (length 7.62)
          (name "VEE" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 34.29 -21.59 90) (length 7.62)
          (name "K" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -34.29 -21.59 90) (length 7.62)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 38.1 -21.59 90) (length 7.62)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -30.48 -21.59 90) (length 7.62)
          (name "V0" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -26.67 -21.59 90) (length 7.62)
          (name "D/I" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -22.86 -21.59 90) (length 7.62)
          (name "R/W" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -19.05 -21.59 90) (length 7.62)
          (name "E" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -21.59 90) (length 7.62)
          (name "DB0" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -11.43 -21.59 90) (length 7.62)
          (name "DB1" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -7.62 -21.59 90) (length 7.62)
          (name "DB2" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "myavr_conn:MYAVR_CONNECTOR" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "P" (id 0) (at 7.62 0 90)
        (effects (font (size 1.524 1.524)))
      )
      (property "Value" "MYAVR_CONNECTOR" (id 1) (at 10.16 0 90)
        (effects (font (size 1.524 1.524)))
      )
      (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 "MYAVR_CONNECTOR_0_1"
        (rectangle (start -2.54 25.4) (end 12.7 -25.4)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "MYAVR_CONNECTOR_1_1"
        (pin passive line (at -8.89 24.13 0) (length 6.35)
          (name "PD2" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 1.27 0) (length 6.35)
          (name "PB3" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -1.27 0) (length 6.35)
          (name "PB4" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -3.81 0) (length 6.35)
          (name "PB5" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -6.35 0) (length 6.35)
          (name "Vcc" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -8.89 0) (length 6.35)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -11.43 0) (length 6.35)
          (name "PC0" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -13.97 0) (length 6.35)
          (name "PC1" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -16.51 0) (length 6.35)
          (name "PC2" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -19.05 0) (length 6.35)
          (name "PC3" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -21.59 0) (length 6.35)
          (name "PC4" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 21.59 0) (length 6.35)
          (name "PD3" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 -24.13 0) (length 6.35)
          (name "PC5" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 19.05 0) (length 6.35)
          (name "PD4" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 16.51 0) (length 6.35)
          (name "PD5" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 13.97 0) (length 6.35)
          (name "PD6" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 11.43 0) (length 6.35)
          (name "PD7" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 8.89 0) (length 6.35)
          (name "PB0" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 6.35 0) (length 6.35)
          (name "PB1" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -8.89 3.81 0) (length 6.35)
          (name "PB2" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 269.24 26.67) (diameter 0) (color 0 0 0 0)
    (uuid 47baf4b1-0938-497d-88f9-671136aa8be7)
  )
  (junction (at 162.56 93.98) (diameter 0) (color 0 0 0 0)
    (uuid 704d6d51-bb34-4cbf-83d8-841e208048d8)
  )
  (junction (at 261.62 109.22) (diameter 0) (color 0 0 0 0)
    (uuid 7cfb90f0-a8a0-4b62-9d7a-2864c9a31928)
  )
  (junction (at 162.56 106.68) (diameter 0) (color 0 0 0 0)
    (uuid 983c426c-24e0-4c65-ab69-1f1824adc5c6)
  )

  (no_connect (at 266.7 41.91) (uuid 7cee474b-af8f-4832-b07a-c43c1ab0b464))
  (no_connect (at 266.7 44.45) (uuid 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))

  (bus_entry (at 113.03 62.23) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 003c2200-0632-4808-a662-8ddd5d30c768)
  )
  (bus_entry (at 201.93 80.01) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 01e9b6e7-adf9-4ee7-9447-a588630ee4a2)
  )
  (bus_entry (at 133.35 185.42) (size 2.54 -2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 12422a89-3d0c-485c-9386-f77121fd68fd)
  )
  (bus_entry (at 190.5 80.01) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d)
  )
  (bus_entry (at 77.47 77.47) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1d9cdadc-9036-4a95-b6db-fa7b3b74c869)
  )
  (bus_entry (at 115.57 62.23) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 240e07e1-770b-4b27-894f-29fd601c924d)
  )
  (bus_entry (at 72.39 77.47) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 24f7628d-681d-4f0e-8409-40a129e929d9)
  )
  (bus_entry (at 74.93 77.47) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3a7648d8-121a-4921-9b92-9b35b76ce39b)
  )
  (bus_entry (at 69.85 77.47) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3e903008-0276-4a73-8edb-5d9dfde6297c)
  )
  (bus_entry (at 133.35 148.59) (size 2.54 -2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 40165eda-4ba6-4565-9bb4-b9df6dbb08da)
  )
  (bus_entry (at 133.35 125.73) (size 2.54 -2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4780a290-d25c-4459-9579-eba3f7678762)
  )
  (bus_entry (at 198.12 80.01) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec)
  )
  (bus_entry (at 100.33 77.47) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)
  )
  (bus_entry (at 87.63 67.31) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6595b9c7-02ee-4647-bde5-6b566e35163e)
  )
  (bus_entry (at 80.01 77.47) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)
  )
  (bus_entry (at 67.31 77.47) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 75ffc65c-7132-4411-9f2a-ae0c73d79338)
  )
  (bus_entry (at 218.44 24.13) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 789ca812-3e0c-4a3f-97bc-a916dd9bce80)
  )
  (bus_entry (at 209.55 80.01) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7d928d56-093a-4ca8-aed1-414b7e703b45)
  )
  (bus_entry (at 133.35 133.35) (size 2.54 -2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)
  )
  (bus_entry (at 186.69 80.01) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 85b7594c-358f-454b-b2ad-dd0b1d67ed76)
  )
  (bus_entry (at 213.36 80.01) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8a650ebf-3f78-4ca4-a26b-a5028693e36d)
  )
  (bus_entry (at 133.35 167.64) (size 2.54 -2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6)
  )
  (bus_entry (at 107.95 62.23) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9b0a1687-7e1b-4a04-a30b-c27a072a2949)
  )
  (bus_entry (at 102.87 62.23) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9e1b837f-0d34-4a18-9644-9ee68f141f46)
  )
  (bus_entry (at 194.31 80.01) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a5cd8da1-8f7f-4f80-bb23-0317de562222)
  )
  (bus_entry (at 90.17 67.31) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b7199d9b-bebb-4100-9ad3-c2bd31e21d65)
  )
  (bus_entry (at 97.79 77.47) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b88717bd-086f-46cd-9d3f-0396009d0996)
  )
  (bus_entry (at 105.41 62.23) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)
  )
  (bus_entry (at 205.74 80.01) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ca87f11b-5f48-4b57-8535-68d3ec2fe5a9)
  )
  (bus_entry (at 133.35 118.11) (size 2.54 -2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid df68c26a-03b5-4466-aecf-ba34b7dce6b7)
  )
  (bus_entry (at 215.9 24.13) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e4c6fdbb-fdc7-4ad4-a516-240d84cdc120)
  )
  (bus_entry (at 220.98 24.13) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e6b860cc-cb76-4220-acfb-68f1eb348bfa)
  )
  (bus_entry (at 110.49 62.23) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ee27d19c-8dca-4ac8-a760-6dfd54d28071)
  )
  (bus_entry (at 82.55 67.31) (size 2.54 2.54)
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f3628265-0155-43e2-a467-c40ff783e265)
  )

  (bus (pts (xy 115.57 64.77) (xy 113.03 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 011ee658-718d-416a-85fd-961729cd1ee5)
  )

  (wire (pts (xy 189.23 82.55) (xy 189.23 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 03c52831-5dc5-43c5-a442-8d23643b46fb)
  )
  (wire (pts (xy 107.95 46.99) (xy 107.95 62.23))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0a3cc030-c9dd-4d74-9d50-715ed2b361a2)
  )
  (wire (pts (xy 100.33 59.69) (xy 100.33 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0b21a65d-d20b-411e-920a-75c343ac5136)
  )
  (wire (pts (xy 52.07 54.61) (xy 85.09 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f)
  )
  (wire (pts (xy 72.39 125.73) (xy 133.35 125.73))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0eaa98f0-9565-4637-ace3-42a5231b07f7)
  )
  (wire (pts (xy 95.25 46.99) (xy 95.25 59.69))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0f22151c-f260-4674-b486-4710a2c42a55)
  )
  (wire (pts (xy 233.68 36.83) (xy 181.61 36.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 10109f84-4940-47f8-8640-91f185ac9bc1)
  )
  (wire (pts (xy 274.32 34.29) (xy 266.7 34.29))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 127679a9-3981-4934-815e-896a4e3ff56e)
  )
  (wire (pts (xy 97.79 77.47) (xy 97.79 62.23))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 13abf99d-5265-4779-8973-e94370fd18ff)
  )
  (wire (pts (xy 97.79 49.53) (xy 97.79 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 15875808-74d5-4210-b8ca-aa8fbc04ae21)
  )
  (wire (pts (xy 269.24 85.09) (xy 276.86 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1699aa34-5791-4f97-bc3b-407d801a7fc0)
  )
  (wire (pts (xy 82.55 148.59) (xy 133.35 148.59))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 181abe7a-f941-42b6-bd46-aaa3131f90fb)
  )
  (wire (pts (xy 77.47 77.47) (xy 77.47 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1831fb37-1c5d-42c4-b898-151be6fca9dc)
  )
  (wire (pts (xy 208.28 82.55) (xy 208.28 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1860e030-7a36-4298-b7fc-a16d48ab15ba)
  )
  (bus (pts (xy 190.5 80.01) (xy 194.31 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 18c61c95-8af1-4986-b67e-c7af9c15ab6b)
  )

  (wire (pts (xy 233.68 34.29) (xy 177.8 34.29))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1e1b062d-fad0-427c-a622-c5b8a80b5268)
  )
  (bus (pts (xy 209.55 80.01) (xy 213.36 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2035ea48-3ef5-4d7f-8c3c-50981b30c89a)
  )

  (wire (pts (xy 69.85 118.11) (xy 72.39 118.11))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 21939c44-ecbe-4e1b-9a78-a2c823cfc166)
  )
  (bus (pts (xy 102.87 80.01) (xy 186.69 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce)
  )

  (wire (pts (xy 82.55 118.11) (xy 133.35 118.11))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 23bb2798-d93a-4696-a962-c305c4298a0c)
  )
  (wire (pts (xy 204.47 82.55) (xy 204.47 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 29e78086-2175-405e-9ba3-c48766d2f50c)
  )
  (wire (pts (xy 115.57 62.23) (xy 115.57 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2d210a96-f81f-42a9-8bf4-1b43c11086f3)
  )
  (bus (pts (xy 92.71 69.85) (xy 163.83 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2db910a0-b943-40b4-b81f-068ba5265f56)
  )

  (wire (pts (xy 233.68 41.91) (xy 219.71 41.91))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e642b3e-a476-4c54-9a52-dcea955640cd)
  )
  (bus (pts (xy 201.93 80.01) (xy 205.74 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6)
  )
  (bus (pts (xy 72.39 80.01) (xy 74.93 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 30c33e3e-fb78-498d-bffe-76273d527004)
  )

  (wire (pts (xy 233.68 39.37) (xy 185.42 39.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)
  )
  (wire (pts (xy 85.09 54.61) (xy 85.09 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 32667662-ae86-4904-b198-3e95f11851bf)
  )
  (wire (pts (xy 160.02 93.98) (xy 160.02 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 38786210-3a67-4c17-8d97-76709615639c)
  )
  (wire (pts (xy 173.99 96.52) (xy 173.99 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3b838d52-596d-4e4d-a6ac-e4c8e7621137)
  )
  (wire (pts (xy 82.55 67.31) (xy 82.55 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3cd1bda0-18db-417d-b581-a0c50623df68)
  )
  (wire (pts (xy 200.66 82.55) (xy 200.66 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3dcc657b-55a1-48e0-9667-e01e7b6b08b5)
  )
  (bus (pts (xy 82.55 80.01) (xy 100.33 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3f8a5430-68a9-4732-9b89-4e00dd8ae219)
  )

  (wire (pts (xy 261.62 109.22) (xy 269.24 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 40aa9167-fdb5-46eb-9a4f-8c98d55681c9)
  )
  (bus (pts (xy 80.01 80.01) (xy 82.55 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6)
  )

  (wire (pts (xy 231.14 120.65) (xy 231.14 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 44d8279a-9cd1-4db6-856f-0363131605fc)
  )
  (wire (pts (xy 80.01 46.99) (xy 80.01 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 46918595-4a45-48e8-84c0-961b4db7f35f)
  )
  (wire (pts (xy 276.86 85.09) (xy 276.86 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 473ffb2e-f9d4-400c-a988-dc195a74aad0)
  )
  (bus (pts (xy 163.83 24.13) (xy 215.9 24.13))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 48ab88d7-7084-4d02-b109-3ad55a30bb11)
  )
  (bus (pts (xy 135.89 182.88) (xy 135.89 165.1))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4c8eb964-bdf4-44de-90e9-e2ab82dd5313)
  )
  (bus (pts (xy 186.69 80.01) (xy 190.5 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4e27930e-1827-4788-aa6b-487321d46602)
  )

  (wire (pts (xy 266.7 26.67) (xy 269.24 26.67))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4fb02e58-160a-4a39-9f22-d0c75e82ee72)
  )
  (wire (pts (xy 219.71 41.91) (xy 219.71 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5038e144-5119-49db-b6cf-f7c345f1cf03)
  )
  (wire (pts (xy 99.06 167.64) (xy 101.6 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 52258420-2925-46e0-99c6-cb14e503f7eb)
  )
  (wire (pts (xy 271.78 36.83) (xy 271.78 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 54365317-1355-4216-bb75-829375abc4ec)
  )
  (wire (pts (xy 181.61 36.83) (xy 181.61 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 55e740a3-0735-4744-896e-2bf5437093b9)
  )
  (bus (pts (xy 135.89 146.05) (xy 135.89 130.81))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 593b8647-0095-46cc-ba23-3cf2a86edb5e)
  )

  (wire (pts (xy 276.86 31.75) (xy 266.7 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5cbb5968-dbb5-4b84-864a-ead1cacf75b9)
  )
  (wire (pts (xy 218.44 31.75) (xy 233.68 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5fc27c35-3e1c-4f96-817c-93b5570858a6)
  )
  (bus (pts (xy 135.89 165.1) (xy 135.89 146.05))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 60aa0ce8-9d0e-48ca-bbf9-866403979e9b)
  )

  (wire (pts (xy 238.76 119.38) (xy 238.76 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 62c076a3-d618-44a2-9042-9a08b3576787)
  )
  (wire (pts (xy 234.95 109.22) (xy 234.95 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 66116376-6967-4178-9f23-a26cdeafc400)
  )
  (bus (pts (xy 135.89 64.77) (xy 118.11 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 666713b0-70f4-42df-8761-f65bc212d03b)
  )

  (wire (pts (xy 193.04 82.55) (xy 193.04 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 67f6e996-3c99-493c-8f6f-e739e2ed5d7a)
  )
  (wire (pts (xy 220.98 29.21) (xy 220.98 26.67))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2)
  )
  (wire (pts (xy 267.97 133.35) (xy 267.97 138.43))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6c2e273e-743c-4f1e-a647-4171f8122550)
  )
  (wire (pts (xy 243.84 74.93) (xy 247.65 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
  )
  (wire (pts (xy 107.95 133.35) (xy 133.35 133.35))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6e105729-aba0-497c-a99e-c32d2b3ddb6d)
  )
  (wire (pts (xy 77.47 185.42) (xy 80.01 185.42))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6fb0fa1e-7c20-4624-95fd-7c8752955296)
  )
  (wire (pts (xy 223.52 64.77) (xy 223.52 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 71c31975-2c45-4d18-a25a-18e07a55d11e)
  )
  (bus (pts (xy 113.03 64.77) (xy 110.49 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 72508b1f-1505-46cb-9d37-2081c5a12aca)
  )

  (wire (pts (xy 269.24 74.93) (xy 274.32 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 73582fd4-7688-4090-94cb-2f72c71cb454)
  )
  (wire (pts (xy 269.24 64.77) (xy 223.52 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 746ba970-8279-4e7b-aed3-f28687777c21)
  )
  (wire (pts (xy 261.62 96.52) (xy 173.99 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
  )
  (wire (pts (xy 44.45 133.35) (xy 46.99 133.35))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7612c66d-04e8-4b91-8dcd-b4651c609dc1)
  )
  (wire (pts (xy 269.24 26.67) (xy 269.24 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 77ed3941-d133-4aef-a9af-5a39322d14eb)
  )
  (wire (pts (xy 111.76 167.64) (xy 133.35 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 78cbdd6c-4878-4cc5-9a58-0e506478e37d)
  )
  (bus (pts (xy 215.9 24.13) (xy 218.44 24.13))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7a2f50f6-0c99-4e8d-9c2a-8f2f961d2e6d)
  )
  (bus (pts (xy 135.89 123.19) (xy 135.89 115.57))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7a74c4b1-6243-4a12-85a2-bc41d346e7aa)
  )

  (wire (pts (xy 261.62 96.52) (xy 261.62 99.06))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7cbb7094-b7a5-49b5-9d95-c3ed9f6414ee)
  )
  (wire (pts (xy 160.02 104.14) (xy 160.02 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7cf0ce5f-75aa-4803-ba37-2350d8db80af)
  )
  (bus (pts (xy 118.11 64.77) (xy 115.57 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7d76d925-f900-42af-a03f-bb32d2381b09)
  )
  (bus (pts (xy 69.85 80.01) (xy 72.39 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)
  )
  (bus (pts (xy 198.12 80.01) (xy 201.93 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53)
  )
  (bus (pts (xy 107.95 64.77) (xy 105.41 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 802c2dc3-ca9f-491e-9d66-7893e89ac34c)
  )

  (wire (pts (xy 162.56 91.44) (xy 162.56 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8174b4de-74b1-48db-ab8e-c8432251095b)
  )
  (wire (pts (xy 267.97 146.05) (xy 267.97 151.13))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd)
  )
  (wire (pts (xy 255.27 74.93) (xy 261.62 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 83105dfd-eb39-433b-8ada-7c8a08960009)
  )
  (wire (pts (xy 102.87 62.23) (xy 102.87 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8322f275-268c-4e87-a69f-4cfbf05e747f)
  )
  (wire (pts (xy 185.42 39.37) (xy 185.42 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 87371631-aa02-498a-998a-09bdb74784c1)
  )
  (wire (pts (xy 162.56 106.68) (xy 165.1 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8cd050d6-228c-4da0-9533-b4f8d14cfb34)
  )
  (wire (pts (xy 72.39 46.99) (xy 72.39 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9340c285-5767-42d5-8b6d-63fe2a40ddf3)
  )
  (wire (pts (xy 212.09 82.55) (xy 212.09 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)
  )
  (wire (pts (xy 69.85 77.47) (xy 69.85 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 94c158d1-8503-4553-b511-bf42f506c2a8)
  )
  (bus (pts (xy 90.17 69.85) (xy 92.71 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 96de0051-7945-413a-9219-1ab367546962)
  )

  (wire (pts (xy 110.49 62.23) (xy 110.49 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9bb20359-0f8b-45bc-9d38-6626ed3a939d)
  )
  (wire (pts (xy 74.93 46.99) (xy 74.93 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9ccf03e8-755a-4cd9-96fc-30e1d08fa253)
  )
  (wire (pts (xy 87.63 67.31) (xy 87.63 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a05d7640-f2f6-4ba7-8c51-5a4af431fc13)
  )
  (wire (pts (xy 196.85 82.55) (xy 196.85 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)
  )
  (wire (pts (xy 271.78 67.31) (xy 227.33 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)
  )
  (bus (pts (xy 194.31 80.01) (xy 198.12 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a5be2cb8-c68d-4180-8412-69a6b4c5b1d4)
  )

  (wire (pts (xy 227.33 67.31) (xy 227.33 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a690fc6c-55d9-47e6-b533-faa4b67e20f3)
  )
  (wire (pts (xy 97.79 62.23) (xy 92.71 62.23))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a7520ad3-0f8b-4788-92d4-8ffb277041e6)
  )
  (wire (pts (xy 92.71 62.23) (xy 92.71 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a795f1ba-cdd5-4cc5-9a52-08586e982934)
  )
  (wire (pts (xy 105.41 46.99) (xy 105.41 62.23))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid aa14c3bd-4acc-4908-9d28-228585a22a9d)
  )
  (wire (pts (xy 266.7 36.83) (xy 271.78 36.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ac264c30-3e9a-4be2-b97a-9949b68bd497)
  )
  (bus (pts (xy 218.44 24.13) (xy 220.98 24.13))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ae0e6b31-27d7-4383-a4fc-7557b0a19382)
  )
  (bus (pts (xy 85.09 69.85) (xy 90.17 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b1169a2d-8998-4b50-a48d-c520bcc1b8e1)
  )

  (wire (pts (xy 269.24 26.67) (xy 271.78 26.67))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b287f145-851e-45cc-b200-e62677b551d5)
  )
  (bus (pts (xy 163.83 69.85) (xy 163.83 24.13))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b6270a28-e0d9-4655-a18a-03dbf007b940)
  )

  (wire (pts (xy 274.32 74.93) (xy 274.32 34.29))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b7dc10cc-ec87-4cca-8e77-03d55c8ef0f8)
  )
  (bus (pts (xy 205.74 80.01) (xy 209.55 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ba6fc20e-7eff-4d5f-81e4-d1fad93be155)
  )

  (wire (pts (xy 243.84 85.09) (xy 247.65 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae)
  )
  (wire (pts (xy 162.56 93.98) (xy 165.1 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054)
  )
  (wire (pts (xy 57.15 133.35) (xy 72.39 133.35))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c022004a-c968-410e-b59e-fbab0e561e9d)
  )
  (wire (pts (xy 255.27 85.09) (xy 261.62 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c0bdea23-82f9-4a90-905e-7d1b8bebbc0f)
  )
  (wire (pts (xy 223.52 26.67) (xy 233.68 26.67))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c144caa5-b0d4-4cef-840a-d4ad178a2102)
  )
  (wire (pts (xy 162.56 106.68) (xy 162.56 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c1d83899-e380-49f9-a87d-8e78bc089ebf)
  )
  (wire (pts (xy 95.25 133.35) (xy 97.79 133.35))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c2c12440-df24-4787-82c1-306809854a98)
  )
  (bus (pts (xy 74.93 80.01) (xy 77.47 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c3b3d7f4-943f-4cff-b180-87ef3e1bcbff)
  )

  (wire (pts (xy 67.31 77.47) (xy 67.31 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c41b3c8b-634e-435a-b582-96b83bbd4032)
  )
  (wire (pts (xy 165.1 93.98) (xy 165.1 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c41ccf92-1695-480e-8b22-7002b9afb2cb)
  )
  (wire (pts (xy 69.85 148.59) (xy 72.39 148.59))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c6743bd1-1493-4041-af30-2d98ec5fac8f)
  )
  (wire (pts (xy 165.1 104.14) (xy 165.1 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c7e59078-2bec-40e1-98e4-6b14419597d0)
  )
  (wire (pts (xy 90.17 185.42) (xy 133.35 185.42))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ce83728b-bebd-48c2-8734-b6a50d837931)
  )
  (wire (pts (xy 34.29 54.61) (xy 44.45 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d22e95aa-f3db-4fbc-a331-048a2523233e)
  )
  (wire (pts (xy 90.17 46.99) (xy 90.17 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d57dcfee-5058-4fc2-a68b-05f9a48f685b)
  )
  (wire (pts (xy 177.8 34.29) (xy 177.8 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d8603679-3e7b-4337-8dbc-1827f5f54d8a)
  )
  (wire (pts (xy 113.03 46.99) (xy 113.03 62.23))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dd00c2e1-6027-4717-b312-4fab3ee52002)
  )
  (wire (pts (xy 269.24 39.37) (xy 269.24 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e10b5627-3247-4c86-b9f6-ef474ca11543)
  )
  (wire (pts (xy 269.24 29.21) (xy 266.7 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e615f7aa-337e-474d-9615-2ad82b1c44ca)
  )
  (wire (pts (xy 266.7 39.37) (xy 269.24 39.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e8314017-7be6-4011-9179-37449a29b311)
  )
  (wire (pts (xy 100.33 49.53) (xy 100.33 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e857610b-4434-4144-b04e-43c1ebdc5ceb)
  )
  (wire (pts (xy 234.95 109.22) (xy 261.62 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
  )
  (wire (pts (xy 231.14 102.87) (xy 257.81 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid eb667eea-300e-4ca7-8a6f-4b00de80cd45)
  )
  (bus (pts (xy 135.89 130.81) (xy 135.89 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ed8a7f02-cf05-41d0-97b4-4388ef205e73)
  )
  (bus (pts (xy 110.49 64.77) (xy 107.95 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid eed466bf-cd88-4860-9abf-41a594ca08bd)
  )

  (wire (pts (xy 261.62 106.68) (xy 261.62 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ef5088b1-79fe-4d42-a8e9-13c06925cc99)
  )
  (wire (pts (xy 160.02 93.98) (xy 162.56 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)
  )
  (wire (pts (xy 218.44 26.67) (xy 218.44 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid efeac2a2-7682-4dc7-83ee-f6f1b23da506)
  )
  (wire (pts (xy 233.68 29.21) (xy 220.98 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f1830a1b-f0cc-47ae-a2c9-679c82032f14)
  )
  (bus (pts (xy 135.89 115.57) (xy 135.89 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f1e619ac-5067-41df-8384-776ec70a6093)
  )

  (wire (pts (xy 215.9 82.55) (xy 215.9 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f3490fa5-5a27-423b-af60-53609669542c)
  )
  (wire (pts (xy 72.39 133.35) (xy 72.39 125.73))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f4f99e3d-7269-4f6a-a759-16ad2a258779)
  )
  (bus (pts (xy 77.47 80.01) (xy 80.01 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f64497d1-1d62-44a4-8e5e-6fba4ebc969a)
  )

  (wire (pts (xy 166.37 119.38) (xy 166.37 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f71da641-16e6-4257-80c3-0b9d804fee4f)
  )
  (bus (pts (xy 100.33 80.01) (xy 102.87 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f8bd6470-fafd-47f2-8ed5-9449988187ce)
  )

  (wire (pts (xy 160.02 106.68) (xy 162.56 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fd470e95-4861-44fe-b1e4-6d8a7c66e144)
  )
  (wire (pts (xy 95.25 59.69) (xy 100.33 59.69))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fe8d9267-7834-48d6-a191-c8724b2ee78d)
  )

  (label "DB1" (at 69.85 76.2 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 0217dfc4-fc13-4699-99ad-d9948522648e)
  )
  (label "DB4" (at 200.66 87.63 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 0755aee5-bc01-4cb5-b830-583289df50a3)
  )
  (label "BTN_DOWN" (at 110.49 60.96 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 08a7c925-7fae-4530-b0c9-120e185cb318)
  )
  (label "CP" (at 90.17 66.04 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 0c3dceba-7c95-4b3d-b590-0eb581444beb)
  )
  (label "D" (at 224.79 29.21 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 16a9ae8c-3ad2-439b-8efe-377c994670c7)
  )
  (label "BTN_LEFT" (at 124.46 125.73 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 1a6d2848-e78e-49fe-8978-e1890f07836f)
  )
  (label "DB4" (at 77.47 76.2 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 2f215f15-3d52-4c91-93e6-3ea03a95622f)
  )
  (label "BTN_DOWN" (at 124.46 148.59 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 45008225-f50f-4d6b-b508-6730a9408caf)
  )
  (label "DB3" (at 204.47 87.63 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec)
  )
  (label "BTN_RIGHT" (at 107.95 60.96 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 4a4ec8d9-3d72-4952-83d4-808f65849a2b)
  )
  (label "DB5" (at 196.85 87.63 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 4fb21471-41be-4be8-9687-66030f97befc)
  )
  (label "BTN_B" (at 115.57 60.96 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 5528bcad-2950-4673-90eb-c37e6952c475)
  )
  (label "DB1" (at 212.09 87.63 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 60dcd1fe-7079-4cb8-b509-04558ccf5097)
  )
  (label "DB5" (at 80.01 76.2 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 61fe293f-6808-4b7f-9340-9aaac7054a97)
  )
  (label "BTN_B" (at 124.46 185.42 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 6475547d-3216-45a4-a15c-48314f1dd0f9)
  )
  (label "DB7" (at 100.33 76.2 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)
  )
  (label "DB6" (at 193.04 87.63 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 7599133e-c681-4202-85d9-c20dac196c64)
  )
  (label "CP" (at 224.79 31.75 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 770ad51a-7219-4633-b24a-bd20feb0a6c5)
  )
  (label "BTN_UP" (at 124.46 118.11 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 7d34f6b1-ab31-49be-b011-c67fe67a8a56)
  )
  (label "BTN_A" (at 113.03 60.96 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)
  )
  (label "BTN_A" (at 124.46 167.64 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 8c6a821f-8e19-48f3-8f44-9b340f7689bc)
  )
  (label "DB3" (at 74.93 76.2 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 8da933a9-35f8-42e6-8504-d1bab7264306)
  )
  (label "D" (at 87.63 66.04 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid 965308c8-e014-459a-b9db-b8493a601c62)
  )
  (label "BTN_RIGHT" (at 124.46 133.35 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid a544eb0a-75db-4baf-bf54-9ca21744343b)
  )
  (label "DB6" (at 97.79 76.2 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid abe07c9a-17c3-43b5-b7a6-ae867ac27ea7)
  )
  (label "STR" (at 82.55 66.04 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid b1c649b1-f44d-46c7-9dea-818e75a1b87e)
  )
  (label "DB2" (at 72.39 76.2 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid bd5408e4-362d-4e43-9d39-78fb99eb52c8)
  )
  (label "DB0" (at 67.31 76.2 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid c0eca5ed-bc5e-4618-9bcd-80945bea41ed)
  )
  (label "DB0" (at 215.9 87.63 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid c5eb1e4c-ce83-470e-8f32-e20ff1f886a3)
  )
  (label "BTN_LEFT" (at 105.41 60.96 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid cbd8faed-e1f8-4406-87c8-58b2c504a5d4)
  )
  (label "STR" (at 224.79 26.67 0)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid db36f6e3-e72a-487f-bda9-88cc84536f62)
  )
  (label "DB7" (at 189.23 87.63 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid dde51ae5-b215-445e-92bb-4a12ec410531)
  )
  (label "DB2" (at 208.28 87.63 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid ec31c074-17b2-48e1-ab01-071acad3fa04)
  )
  (label "BTN_UP" (at 102.87 60.96 90)
    (effects (font (size 1.016 1.016)) (justify left bottom))
    (uuid f2c93195-af12-4d3e-acdf-bdd0ff675c24)
  )

  (global_label "Vcc" (shape input) (at 97.79 49.53 270) (fields_autoplaced)
    (effects (font (size 1.016 1.016)) (justify right))
    (uuid 14769dc5-8525-4984-8b15-a734ee247efa)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "Vcc" (shape input) (at 269.24 109.22 0) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify left))
    (uuid 15fe8f3d-6077-4e0e-81d0-8ec3f4538981)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 -10.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 100.33 49.53 270) (fields_autoplaced)
    (effects (font (size 1.016 1.016)) (justify right))
    (uuid 21ae9c3a-7138-444e-be38-56a4842ab594)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 243.84 85.09 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid 40976bf0-19de-460f-ad64-224d4f51e16b)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 1.27 -8.89 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 69.85 148.59 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid 5114c7bf-b955-49f3-a0a8-4b954c81bde0)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 5.08 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 44.45 133.35 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid 5bcace5d-edd0-4e19-92d0-835e43cf8eb2)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 5.08 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 233.68 44.45 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid 5ca4be1c-537e-4a4a-b344-d0c8ffde8546)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "Vcc" (shape input) (at 267.97 133.35 90) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify left))
    (uuid 6441b183-b8f2-458f-a23d-60e2b1f66dd6)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 6.35 -3.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 95.25 133.35 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid 6c2d26bc-6eca-436c-8025-79f817bf57d6)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 5.08 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 69.85 118.11 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid 6ec113ca-7d27-4b14-a180-1e5e2fd1c167)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 5.08 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "Vcc" (shape input) (at 271.78 26.67 0) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify left))
    (uuid 853ee787-6e2c-4f32-bc75-6c17337dd3d5)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 238.76 119.38 90) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify left))
    (uuid 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 -8.89 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "Vcc" (shape input) (at 162.56 91.44 90) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify left))
    (uuid babeabf2-f3b0-4ed5-8d9e-0215947e6cf3)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 -11.43 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 34.29 52.07 0) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify left))
    (uuid c43663ee-9a0d-4f27-a292-89ba89964065)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 2.54 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 243.84 74.93 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid c8c79177-94d4-43e2-a654-f0a5554fbb68)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 1.27 -6.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 99.06 167.64 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid cdfb07af-801b-44ba-8c30-d021a6ad3039)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 5.08 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 267.97 151.13 270) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid d4a1d3c4-b315-4bec-9220-d12a9eab51e0)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 6.35 -3.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 166.37 119.38 90) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify left))
    (uuid d7269d2a-b8c0-422d-8f25-f79ea31bf75e)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 0 -8.89 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "GND" (shape input) (at 77.47 185.42 180) (fields_autoplaced)
    (effects (font (size 1.524 1.524)) (justify right))
    (uuid f202141e-c20d-4cac-b016-06a44f2ecce8)
    (property "Referenzen zwischen Schaltplänen" "${INTERSHEET_REFS}" (id 0) (at 5.08 0 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )

  (symbol (lib_id "myavr_conn:MYAVR_CONNECTOR") (at 91.44 38.1 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113713b)
    (property "Reference" "P1" (id 0) (at 91.44 30.48 90)
      (effects (font (size 1.524 1.524)))
    )
    (property "Value" "MYAVR_CONNECTOR" (id 1) (at 91.44 27.94 90)
      (effects (font (size 1.524 1.524)))
    )
    (property "Footprint" "" (id 2) (at 91.44 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 91.44 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a4f86a46-3bc8-4daa-9125-a63f297eb114))
    (pin "10" (uuid 22999e73-da32-43a5-9163-4b3a41614f25))
    (pin "11" (uuid 6e68f0cd-800e-4167-9553-71fc59da1eeb))
    (pin "12" (uuid 658dad07-97fd-466c-8b49-21892ac96ea4))
    (pin "13" (uuid 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
    (pin "14" (uuid c09938fd-06b9-4771-9f63-2311626243b3))
    (pin "15" (uuid 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
    (pin "16" (uuid 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
    (pin "17" (uuid 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
    (pin "18" (uuid 592f25e6-a01b-47fd-8172-3da01117d00a))
    (pin "19" (uuid cb614b23-9af3-4aec-bed8-c1374e001510))
    (pin "2" (uuid 20cca02e-4c4d-4961-b6b4-b40a1731b220))
    (pin "20" (uuid 5487601b-81d3-4c70-8f3d-cf9df9c63302))
    (pin "3" (uuid a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
    (pin "4" (uuid e3fc1e69-a11c-4c84-8952-fefb9372474e))
    (pin "5" (uuid 597a11f2-5d2c-4a65-ac95-38ad106e1367))
    (pin "6" (uuid 926001fd-2747-4639-8c0f-4fc46ff7218d))
    (pin "7" (uuid 59ec3156-036e-4049-89db-91a9dd07095f))
    (pin "8" (uuid d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
    (pin "9" (uuid 6a2b20ae-096c-4d9f-92f8-2087c865914f))
  )

  (symbol (lib_id "ks0108:KS0108") (at 200.66 142.24 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-0000511372b5)
    (property "Reference" "S1" (id 0) (at 220.98 162.56 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Value" "KS0108" (id 1) (at 180.34 162.56 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Footprint" "" (id 2) (at 200.66 142.24 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 200.66 142.24 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 998b7fa5-31a5-472e-9572-49d5226d6098))
    (pin "10" (uuid e4d2f565-25a0-48c6-be59-f4bf31ad2558))
    (pin "11" (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
    (pin "12" (uuid 7c04618d-9115-4179-b234-a8faf854ea92))
    (pin "13" (uuid e67b9f8c-019b-4145-98a4-96545f6bb128))
    (pin "14" (uuid 19b0959e-a79b-43b2-a5ad-525ced7e9131))
    (pin "15" (uuid 109caac1-5036-4f23-9a66-f569d871501b))
    (pin "16" (uuid 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
    (pin "17" (uuid 8c1605f9-6c91-4701-96bf-e753661d5e23))
    (pin "18" (uuid f1447ad6-651c-45be-a2d6-33bddf672c2c))
    (pin "19" (uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd))
    (pin "2" (uuid 0cc45b5b-96b3-4284-9cae-a3a9e324a916))
    (pin "20" (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd))
    (pin "3" (uuid 4a850cb6-bb24-4274-a902-e49f34f0a0e3))
    (pin "4" (uuid e5203297-b913-4288-a576-12a92185cb52))
    (pin "5" (uuid 1f8b2c0c-b042-4e2e-80f6-4959a27b238f))
    (pin "6" (uuid 700e8b73-5976-423f-a3f3-ab3d9f3e9760))
    (pin "7" (uuid b4300db7-1220-431a-b7c3-2edbdf8fa6fc))
    (pin "8" (uuid 79e31048-072a-4a40-a625-26bb0b5f046b))
    (pin "9" (uuid c76d4423-ef1b-4a6f-8176-33d65f2877bb))
  )

  (symbol (lib_id "Device:R_Potentiometer") (at 261.62 102.87 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113821c)
    (property "Reference" "RV1" (id 0) (at 264.16 102.87 90))
    (property "Value" "10k" (id 1) (at 261.62 102.87 90))
    (property "Footprint" "" (id 2) (at 261.62 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 261.62 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid aff7510b-1d93-4425-867a-b9b2e0c29065))
    (pin "2" (uuid 900709c3-e558-4a13-a57d-6fce281bbbe2))
    (pin "3" (uuid cd00f1f6-1163-4010-b1d1-4d3599769800))
  )

  (symbol (lib_id "Device:R") (at 160.02 100.33 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113834b)
    (property "Reference" "R3" (id 0) (at 157.988 100.33 90))
    (property "Value" "100" (id 1) (at 160.02 100.33 90))
    (property "Footprint" "" (id 2) (at 161.798 100.33 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 160.02 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 093dbd7f-9491-4e48-9e35-1951082a7ddc))
    (pin "2" (uuid 939ba2b6-bb58-462e-a5c1-0b3c4cd77983))
  )

  (symbol (lib_id "Device:R") (at 165.1 100.33 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000051138357)
    (property "Reference" "R4" (id 0) (at 163.068 100.33 90))
    (property "Value" "47" (id 1) (at 165.1 100.33 90))
    (property "Footprint" "" (id 2) (at 166.878 100.33 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 165.1 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c620cb60-5817-4eab-a6cd-a6990e295af6))
    (pin "2" (uuid bf92dbd7-afd4-4297-9a58-3b708e989ef6))
  )

  (symbol (lib_id "74hct4094:74HCT4094") (at 250.19 35.56 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-0000511384e3)
    (property "Reference" "U1" (id 0) (at 250.19 49.5554 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Value" "74HCT4094" (id 1) (at 250.19 21.5646 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Footprint" "" (id 2) (at 250.19 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 250.19 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 86dc7a78-7d51-4111-9eea-8a8f7977eb16))
    (pin "10" (uuid e32ee344-1030-4498-9cac-bfbf7540faf4))
    (pin "11" (uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db))
    (pin "12" (uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778))
    (pin "13" (uuid da25bf79-0abb-4fac-a221-ca5c574dfc29))
    (pin "14" (uuid 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
    (pin "15" (uuid c49d23ab-146d-4089-864f-2d22b5b414b9))
    (pin "16" (uuid c7af8405-da2e-4a34-b9b8-518f342f8995))
    (pin "2" (uuid aa79024d-ca7e-4c24-b127-7df08bbd0c75))
    (pin "3" (uuid 26801cfb-b53b-4a6a-a2f4-5f4986565765))
    (pin "4" (uuid f78e02cd-9600-4173-be8d-67e530b5d19f))
    (pin "5" (uuid 6f80f798-dc24-438f-a1eb-4ee2936267c8))
    (pin "6" (uuid f66398f1-1ae7-4d4d-939f-958c174c6bce))
    (pin "7" (uuid 088f77ba-fca9-42b3-876e-a6937267f957))
    (pin "8" (uuid 71989e06-8659-4605-b2da-4f729cc41263))
    (pin "9" (uuid 9a0b74a5-4879-4b51-8e8e-6d85a0107422))
  )

  (symbol (lib_id "Switch:SW_Push") (at 77.47 118.11 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113ae1b)
    (property "Reference" "SW1" (id 0) (at 77.47 113.03 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Value" "BTN_UP" (id 1) (at 77.47 120.65 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Footprint" "" (id 2) (at 77.47 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 77.47 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid acb62e73-72a8-4418-9ca0-3b46ab0d327f))
    (pin "2" (uuid e7b2bfcd-a87e-4055-bc89-3402a25cc9df))
  )

  (symbol (lib_id "Switch:SW_Push") (at 77.47 148.59 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113ae25)
    (property "Reference" "SW4" (id 0) (at 77.47 143.51 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Value" "BTN_DOWN" (id 1) (at 77.47 151.13 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Footprint" "" (id 2) (at 77.47 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 77.47 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 784638be-bc91-4f9a-828d-b163f27aee23))
    (pin "2" (uuid 6c110fc5-feb0-428a-84b1-92197b0c3d4c))
  )

  (symbol (lib_id "Switch:SW_Push") (at 52.07 133.35 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113ae29)
    (property "Reference" "SW2" (id 0) (at 52.07 128.27 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Value" "BTN_LEFT" (id 1) (at 52.07 135.89 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Footprint" "" (id 2) (at 52.07 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 52.07 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b7f4d841-c298-4a27-880a-8ea5e493a0a0))
    (pin "2" (uuid 7679c901-6bf6-4ba5-bf5e-179919a224a7))
  )

  (symbol (lib_id "Switch:SW_Push") (at 102.87 133.35 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113ae2e)
    (property "Reference" "SW3" (id 0) (at 102.87 128.27 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Value" "BTN_RIGHT" (id 1) (at 102.87 135.89 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Footprint" "" (id 2) (at 102.87 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 102.87 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 560c52e9-bce4-4b9e-99ae-f5412b8463f5))
    (pin "2" (uuid 9502d0c9-511d-4856-a9d9-26d144817509))
  )

  (symbol (lib_id "Switch:SW_Push") (at 85.09 185.42 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113ae3e)
    (property "Reference" "SW6" (id 0) (at 85.09 180.34 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Value" "BTN_B" (id 1) (at 85.09 187.96 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Footprint" "" (id 2) (at 85.09 180.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 85.09 180.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 66663cb8-eef6-458b-8e1f-b6a8e608e769))
    (pin "2" (uuid dcd306bb-cac8-4ae8-aeed-1cde23d5a7f9))
  )

  (symbol (lib_id "Switch:SW_Push") (at 106.68 167.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005113ae40)
    (property "Reference" "SW5" (id 0) (at 106.68 162.56 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Value" "BTN_A" (id 1) (at 106.68 170.18 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Footprint" "" (id 2) (at 106.68 162.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 106.68 162.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cada809f-8b82-4b0f-b563-a21917b7de49))
    (pin "2" (uuid 9207325a-7b94-4d9c-b042-0d17ca5bc121))
  )

  (symbol (lib_id "Device:LED") (at 251.46 74.93 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005117991b)
    (property "Reference" "D1" (id 0) (at 251.46 72.39 0))
    (property "Value" "LED_0" (id 1) (at 251.46 77.47 0))
    (property "Footprint" "" (id 2) (at 251.46 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 251.46 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d27787c2-70d9-40dd-baad-43cce0675034))
    (pin "2" (uuid f2983f14-df99-4c98-8dcf-889c2760c8a2))
  )

  (symbol (lib_id "Device:LED") (at 251.46 85.09 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000051179926)
    (property "Reference" "D2" (id 0) (at 251.46 82.55 0))
    (property "Value" "LED_1" (id 1) (at 251.46 87.63 0))
    (property "Footprint" "" (id 2) (at 251.46 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 251.46 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid eb0f2663-bfdf-4a46-b286-213d23e3d3cd))
    (pin "2" (uuid c6e9757c-583e-4323-8caa-a4a5bdad0185))
  )

  (symbol (lib_id "Device:R") (at 265.43 74.93 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000051179932)
    (property "Reference" "R1" (id 0) (at 265.43 72.898 90))
    (property "Value" "330" (id 1) (at 265.43 74.93 90))
    (property "Footprint" "" (id 2) (at 265.43 76.708 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 265.43 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a9ac2053-4d34-4641-a149-08a0ee7619e4))
    (pin "2" (uuid 88fcb3b2-e22a-45da-ae72-b8bad33cf65b))
  )

  (symbol (lib_id "Device:R") (at 265.43 85.09 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000051179937)
    (property "Reference" "R2" (id 0) (at 265.43 83.058 90))
    (property "Value" "330" (id 1) (at 265.43 85.09 90))
    (property "Footprint" "" (id 2) (at 265.43 86.868 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 265.43 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 212cafcd-196d-4cc5-82be-f70eb9514e4c))
    (pin "2" (uuid 2bdee148-7fb9-405f-90da-d07db74db017))
  )

  (symbol (lib_id "Device:Speaker_Crystal") (at 29.21 54.61 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000051179c05)
    (property "Reference" "SP1" (id 0) (at 29.21 60.96 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Value" "PIEZO_SPKR" (id 1) (at 29.21 45.72 0)
      (effects (font (size 1.778 1.778)))
    )
    (property "Footprint" "" (id 2) (at 30.099 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 30.099 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 16f5662d-5c85-4abe-ae32-557548cd1fc5))
    (pin "2" (uuid 77400ccd-277f-4c1a-ab13-786ff9eabdfd))
  )

  (symbol (lib_id "Device:C_Polarized") (at 267.97 142.24 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000051267391)
    (property "Reference" "C2" (id 0) (at 269.24 139.7 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "470µF" (id 1) (at 269.24 144.78 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 268.9352 146.05 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 267.97 142.24 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 66bc2973-6e82-4c7f-a035-a2bf5ff9c6d4))
    (pin "2" (uuid a26fe3d3-5c71-471c-a084-65e29faf2925))
  )

  (symbol (lib_id "Device:C_Polarized") (at 48.26 54.61 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-000051332a97)
    (property "Reference" "C1" (id 0) (at 50.8 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "220µF" (id 1) (at 45.72 55.88 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 44.45 55.5752 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 48.26 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6c6ef1f3-5895-46ee-9a7d-f355258d24e6))
    (pin "2" (uuid 06ab3080-ead1-405d-8478-570f89e01714))
  )

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

  (symbol_instances
    (path "/00000000-0000-0000-0000-000051332a97"
      (reference "C1") (unit 1) (value "220µF") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000051267391"
      (reference "C2") (unit 1) (value "470µF") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005117991b"
      (reference "D1") (unit 1) (value "LED_0") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000051179926"
      (reference "D2") (unit 1) (value "LED_1") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113713b"
      (reference "P1") (unit 1) (value "MYAVR_CONNECTOR") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000051179932"
      (reference "R1") (unit 1) (value "330") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000051179937"
      (reference "R2") (unit 1) (value "330") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113834b"
      (reference "R3") (unit 1) (value "100") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000051138357"
      (reference "R4") (unit 1) (value "47") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113821c"
      (reference "RV1") (unit 1) (value "10k") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000511372b5"
      (reference "S1") (unit 1) (value "KS0108") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000051179c05"
      (reference "SP1") (unit 1) (value "PIEZO_SPKR") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113ae1b"
      (reference "SW1") (unit 1) (value "BTN_UP") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113ae29"
      (reference "SW2") (unit 1) (value "BTN_LEFT") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113ae2e"
      (reference "SW3") (unit 1) (value "BTN_RIGHT") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113ae25"
      (reference "SW4") (unit 1) (value "BTN_DOWN") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113ae40"
      (reference "SW5") (unit 1) (value "BTN_A") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005113ae3e"
      (reference "SW6") (unit 1) (value "BTN_B") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000511384e3"
      (reference "U1") (unit 1) (value "74HCT4094") (footprint "")
    )
  )
)
bues.ch cgit interface