summaryrefslogtreecommitdiff
path: root/pcb/kicad/pouetpouet/bac.light.kicad_sch
blob: 59430f8705fd0dced2b6b80b03e0ac6766ff5be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
(kicad_sch (version 20211123) (generator eeschema)

  (uuid 1d5fe66a-e598-4a8c-b136-466e7c27ae9c)

  (paper "A4")

  (lib_symbols
    (symbol "Device:C" (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" (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" "Unpolarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_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: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 "LED:SK6812MINI" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "D" (id 0) (at 5.08 5.715 0)
        (effects (font (size 1.27 1.27)) (justify right bottom))
      )
      (property "Value" "SK6812MINI" (id 1) (at 1.27 -5.715 0)
        (effects (font (size 1.27 1.27)) (justify left top))
      )
      (property "Footprint" "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" (id 2) (at 1.27 -7.62 0)
        (effects (font (size 1.27 1.27)) (justify left top) hide)
      )
      (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 2.54 -9.525 0)
        (effects (font (size 1.27 1.27)) (justify left top) hide)
      )
      (property "ki_keywords" "RGB LED NeoPixel Mini addressable" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "RGB LED with integrated controller" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "LED*SK6812MINI*PLCC*3.5x3.5mm*P1.75mm*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "SK6812MINI_0_0"
        (text "RGB" (at 2.286 -4.191 0)
          (effects (font (size 0.762 0.762)))
        )
      )
      (symbol "SK6812MINI_0_1"
        (polyline
          (pts
            (xy 1.27 -3.556)
            (xy 1.778 -3.556)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -2.54)
            (xy 1.778 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 4.699 -3.556)
            (xy 2.667 -3.556)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.286 -2.54)
            (xy 1.27 -3.556)
            (xy 1.27 -3.048)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.286 -1.524)
            (xy 1.27 -2.54)
            (xy 1.27 -2.032)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 3.683 -1.016)
            (xy 3.683 -3.556)
            (xy 3.683 -4.064)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 4.699 -1.524)
            (xy 2.667 -1.524)
            (xy 3.683 -3.556)
            (xy 4.699 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 5.08 5.08) (end -5.08 -5.08)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "SK6812MINI_1_1"
        (pin output line (at 7.62 0 180) (length 2.54)
          (name "DOUT" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -7.62 90) (length 2.54)
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -7.62 0 0) (length 2.54)
          (name "DIN" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 7.62 270) (length 2.54)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "pouetpouet-rescue:74LVC1G34-74LVC1G34" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at 2.54 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "74LVC1G34-74LVC1G34" (id 1) (at 5.08 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "74LVC1G34-74LVC1G34_0_0"
        (polyline
          (pts
            (xy -3.81 3.81)
            (xy -3.81 -3.81)
            (xy 3.81 0)
            (xy -3.81 3.81)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin power_in line (at -1.27 -5.08 90) (length 2.54)
          (name "GND" (effects (font (size 0.508 0.508))))
          (number "3" (effects (font (size 1.016 1.016))))
        )
        (pin power_in line (at -1.27 5.08 270) (length 2.54)
          (name "VCC" (effects (font (size 0.508 0.508))))
          (number "5" (effects (font (size 1.016 1.016))))
        )
      )
      (symbol "74LVC1G34-74LVC1G34_1_1"
        (pin input line (at -11.43 0 0) (length 7.62)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 11.43 0 180) (length 7.62)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "74LVC1G34-74LVC1G34_1_2"
        (pin input inverted (at -11.43 0 0) (length 7.62)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 11.43 0 180) (length 7.62)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "+5V" (id 1) (at 0 3.556 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+5V_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "+5V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+5V" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (id 1) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 166.37 67.31) (diameter 0) (color 0 0 0 0)
    (uuid 02071a26-52d6-4f7e-9bd0-10371eab3441)
  )
  (junction (at 74.93 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 0346547c-8fdf-4451-95f6-69ff8afe23cd)
  )
  (junction (at 74.93 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 0df7693f-bdb6-43c7-bf4a-848157cf05b3)
  )
  (junction (at 74.93 69.85) (diameter 0) (color 0 0 0 0)
    (uuid 105474da-0ce3-4781-8dc3-5f62be5a5d48)
  )
  (junction (at 44.45 48.26) (diameter 0) (color 0 0 0 0)
    (uuid 127e4801-89f5-4343-a445-50a4da5c6ca3)
  )
  (junction (at 120.65 67.31) (diameter 0) (color 0 0 0 0)
    (uuid 139aaf37-d651-4a7d-8f3e-ba9c7b40c8dc)
  )
  (junction (at 90.17 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 13d6d4f7-58c5-4053-b1f1-bc4a3f34107b)
  )
  (junction (at 59.69 69.85) (diameter 0) (color 0 0 0 0)
    (uuid 177b89d7-9871-4073-9d45-d8ff2ba3f003)
  )
  (junction (at 181.61 48.26) (diameter 0) (color 0 0 0 0)
    (uuid 17f4e90c-1389-4dd4-989d-5cd92f472eaa)
  )
  (junction (at 135.89 123.19) (diameter 0) (color 0 0 0 0)
    (uuid 187755a9-394f-4fb3-8888-e6604b0b529f)
  )
  (junction (at 212.09 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 1c0d6f02-49ce-47f2-830b-c0e7f6e2769d)
  )
  (junction (at 128.27 27.94) (diameter 0) (color 0 0 0 0)
    (uuid 1d1e79a0-86b3-4452-bc6b-2b5572a51688)
  )
  (junction (at 90.17 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 1ef349a5-831d-4a66-9fb3-26cb09d10dc5)
  )
  (junction (at 44.45 67.31) (diameter 0) (color 0 0 0 0)
    (uuid 1fbbeab3-c29a-4226-b6e3-874b3edac30b)
  )
  (junction (at 212.09 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 21cdebd6-2372-452f-9237-0f016f76a448)
  )
  (junction (at 181.61 67.31) (diameter 0) (color 0 0 0 0)
    (uuid 23c3872a-7077-4917-9448-f87aca88db8e)
  )
  (junction (at 151.13 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 26093d0c-cbd7-4609-9a4b-21c2cef1d172)
  )
  (junction (at 212.09 69.85) (diameter 0) (color 0 0 0 0)
    (uuid 286f408a-9be6-42a7-9a5e-2d648b78e0f7)
  )
  (junction (at 151.13 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 2a4efb2d-9629-41cc-8adc-45857034e799)
  )
  (junction (at 166.37 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 32786df7-3b7f-4686-9166-738f3a9f5473)
  )
  (junction (at 90.17 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 32e6da0e-b4e3-43d9-83eb-5adf9c62c058)
  )
  (junction (at 105.41 48.26) (diameter 0) (color 0 0 0 0)
    (uuid 331aed34-4888-4a13-be32-3cd02c8e4e2d)
  )
  (junction (at 105.41 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 349292e8-8457-4811-a1cb-e726d04b2353)
  )
  (junction (at 74.93 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 379bc0a0-f4a3-4dbe-91c0-14c325d8b922)
  )
  (junction (at 59.69 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 3a4a75d8-9f11-47d2-b726-b14a29a56b79)
  )
  (junction (at 151.13 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 3c7da3ba-94b9-4d4c-9e9a-3b8796d9e79c)
  )
  (junction (at 120.65 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 3d019714-c029-4dcb-a38d-03b53bf3204a)
  )
  (junction (at 166.37 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 3fbbb843-e86e-4a69-9d3c-2540b35fad23)
  )
  (junction (at 59.69 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 40862123-da02-428e-b365-3de0181fd197)
  )
  (junction (at 120.65 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 4463d70c-f482-4fb9-812f-093eb25e572e)
  )
  (junction (at 166.37 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 45fb2480-df91-4847-8481-ca171d248171)
  )
  (junction (at 207.01 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 4a78900a-da64-45fa-a547-04e4c679b225)
  )
  (junction (at 135.89 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 4aa5a1d0-c710-4d25-a991-28b98e00c92b)
  )
  (junction (at 166.37 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 51d4353e-4904-40dd-8286-da107439d3ab)
  )
  (junction (at 196.85 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 51d69d5f-6730-4e04-bb8c-298ad069f073)
  )
  (junction (at 196.85 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 52a7f6c6-213c-4873-8db7-b9ee5057caa2)
  )
  (junction (at 74.93 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 5d7ec4e5-5006-48e5-af1b-922da343c8cf)
  )
  (junction (at 59.69 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 5da197f9-cc20-43af-abbf-8281ac60c1c9)
  )
  (junction (at 120.65 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 5ed799e4-a212-44c1-a5f2-c6fa829327cc)
  )
  (junction (at 166.37 123.19) (diameter 0) (color 0 0 0 0)
    (uuid 5fc8d174-dfb9-4ffe-ba61-0c02b3887f6d)
  )
  (junction (at 151.13 123.19) (diameter 0) (color 0 0 0 0)
    (uuid 64371378-228e-40cd-bca7-df39e210a504)
  )
  (junction (at 105.41 67.31) (diameter 0) (color 0 0 0 0)
    (uuid 677e7eab-49f7-4414-b03c-91627dbad1b8)
  )
  (junction (at 196.85 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 6922d2fd-cea6-469f-a487-d69e94bd9574)
  )
  (junction (at 181.61 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 6a4fa1e0-9d56-4fd6-98c5-6d171e3e5810)
  )
  (junction (at 36.83 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 71faa7d3-ea7c-4d87-9a14-5be989ac9bf7)
  )
  (junction (at 135.89 69.85) (diameter 0) (color 0 0 0 0)
    (uuid 73717b12-3f14-4272-8239-5b688a0d2a08)
  )
  (junction (at 90.17 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 74306a9d-8808-42d1-b6d8-9c50ded29021)
  )
  (junction (at 74.93 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 763536a0-c71c-41fb-8a86-b1acb71ea57d)
  )
  (junction (at 90.17 69.85) (diameter 0) (color 0 0 0 0)
    (uuid 77139477-e82e-410d-abb0-6a8bda83e213)
  )
  (junction (at 120.65 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 79a4af56-e6ec-45b2-9b23-6d41d387430d)
  )
  (junction (at 59.69 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 79e07b0b-5655-44a5-aa69-12206ef81b6d)
  )
  (junction (at 90.17 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 7aca52f4-a406-46f1-accd-65ddd45f34a6)
  )
  (junction (at 135.89 107.95) (diameter 0) (color 0 0 0 0)
    (uuid 7b73083b-4756-43bc-b172-fe2a0e6cbc70)
  )
  (junction (at 181.61 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 7bf729dd-6d0a-445c-b5df-be04959755cf)
  )
  (junction (at 44.45 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 81b5b855-cb3a-4537-a2d7-c33275d5ef29)
  )
  (junction (at 219.71 69.85) (diameter 0) (color 0 0 0 0)
    (uuid 839601b7-ee0f-42ed-97b7-9c6527c06166)
  )
  (junction (at 90.17 67.31) (diameter 0) (color 0 0 0 0)
    (uuid 84402595-8de3-4ec1-8052-7ca898f61b7a)
  )
  (junction (at 162.56 33.02) (diameter 0) (color 0 0 0 0)
    (uuid 87b13614-0838-43c9-b264-9a548f3d1965)
  )
  (junction (at 135.89 52.07) (diameter 0) (color 0 0 0 0)
    (uuid 8a1252e8-2209-4335-8e7d-b7a5025c0f2c)
  )
  (junction (at 74.93 67.31) (diameter 0) (color 0 0 0 0)
    (uuid 8b799504-e492-4a3c-ad40-3821398e2b03)
  )
  (junction (at 74.93 123.19) (diameter 0) (color 0 0 0 0)
    (uuid 8bf04f4e-7fcf-4bc4-9451-7e415b5c5fa6)
  )
  (junction (at 166.37 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 8ec08a89-d490-478a-ae8f-ba24f931a3a2)
  )
  (junction (at 113.03 12.7) (diameter 0) (color 0 0 0 0)
    (uuid 952c1a2d-2e7e-4648-b38c-21751f99e70d)
  )
  (junction (at 135.89 67.31) (diameter 0) (color 0 0 0 0)
    (uuid 959504c4-6f08-4a15-a644-c9e973cebf11)
  )
  (junction (at 196.85 69.85) (diameter 0) (color 0 0 0 0)
    (uuid 96d7adae-8dcd-4536-89c9-e7eac55b4239)
  )
  (junction (at 120.65 69.85) (diameter 0) (color 0 0 0 0)
    (uuid 986cc76c-ae95-46d0-a4d1-8cf3e3baf614)
  )
  (junction (at 151.13 48.26) (diameter 0) (color 0 0 0 0)
    (uuid 9914085e-dc94-4153-9a08-1f96d51c8703)
  )
  (junction (at 90.17 48.26) (diameter 0) (color 0 0 0 0)
    (uuid 99615cbc-94e5-40b4-95c6-8eb373142b3a)
  )
  (junction (at 196.85 123.19) (diameter 0) (color 0 0 0 0)
    (uuid 9b1d0541-7f7a-4ee3-bba8-6f9f37fb1b41)
  )
  (junction (at 97.79 12.7) (diameter 0) (color 0 0 0 0)
    (uuid 9ee85505-9d28-4c12-9650-d429384b861f)
  )
  (junction (at 151.13 85.09) (diameter 0) (color 0 0 0 0)
    (uuid a144bc5d-3f5b-4216-8ec6-67e8066759a2)
  )
  (junction (at 105.41 52.07) (diameter 0) (color 0 0 0 0)
    (uuid a24ec734-e430-43ef-98fb-55b7a539e187)
  )
  (junction (at 135.89 87.63) (diameter 0) (color 0 0 0 0)
    (uuid a2d03f2b-ec40-47b3-8230-e2918ed2db7c)
  )
  (junction (at 181.61 102.87) (diameter 0) (color 0 0 0 0)
    (uuid a345a680-5ad9-478c-b0da-40843ee72ba7)
  )
  (junction (at 196.85 87.63) (diameter 0) (color 0 0 0 0)
    (uuid a7ca71f3-8cd1-4b14-91a9-91742ebd0bc3)
  )
  (junction (at 181.61 87.63) (diameter 0) (color 0 0 0 0)
    (uuid a9b49252-9c2e-4097-b477-be7a73e0d83b)
  )
  (junction (at 196.85 48.26) (diameter 0) (color 0 0 0 0)
    (uuid ac3ce085-e42b-4bab-a141-fa05a2f73534)
  )
  (junction (at 105.41 123.19) (diameter 0) (color 0 0 0 0)
    (uuid acc5dcda-debf-48ed-a294-f92fbac366a5)
  )
  (junction (at 135.89 85.09) (diameter 0) (color 0 0 0 0)
    (uuid ae1e80d0-5569-4bc8-b14d-14af01d874e7)
  )
  (junction (at 135.89 48.26) (diameter 0) (color 0 0 0 0)
    (uuid b0c6867f-27f0-4d8b-8de1-ac0c8b68d518)
  )
  (junction (at 212.09 33.02) (diameter 0) (color 0 0 0 0)
    (uuid b1be6632-5054-413f-9a9b-dc8f1ed2112b)
  )
  (junction (at 105.41 87.63) (diameter 0) (color 0 0 0 0)
    (uuid b33ca7a5-3a85-4e7b-bfa9-24e2a70a9af2)
  )
  (junction (at 151.13 52.07) (diameter 0) (color 0 0 0 0)
    (uuid b36137d9-256c-44e4-8087-2c604bdde91a)
  )
  (junction (at 34.29 67.31) (diameter 0) (color 0 0 0 0)
    (uuid b3f79362-480b-4ec2-aaf7-075902d9b4a3)
  )
  (junction (at 151.13 69.85) (diameter 0) (color 0 0 0 0)
    (uuid b9fd7bc6-1738-4f9c-b9b9-b2ef65fcd9ff)
  )
  (junction (at 181.61 52.07) (diameter 0) (color 0 0 0 0)
    (uuid bd32d57e-8c72-435e-974a-8f27d5e2e7dd)
  )
  (junction (at 97.79 27.94) (diameter 0) (color 0 0 0 0)
    (uuid bd9ae6ae-3953-4ad9-8deb-c844aa17fe30)
  )
  (junction (at 59.69 48.26) (diameter 0) (color 0 0 0 0)
    (uuid be30835f-8354-4dfb-8eba-8890bdec433b)
  )
  (junction (at 105.41 102.87) (diameter 0) (color 0 0 0 0)
    (uuid bef44c8a-838b-4ee8-948d-436857bc5935)
  )
  (junction (at 59.69 67.31) (diameter 0) (color 0 0 0 0)
    (uuid c02ff029-d60e-4686-abe6-9e06be9ef26b)
  )
  (junction (at 59.69 85.09) (diameter 0) (color 0 0 0 0)
    (uuid c08703d1-6d0d-49ba-b530-1880fae2636c)
  )
  (junction (at 196.85 52.07) (diameter 0) (color 0 0 0 0)
    (uuid c1fd31fa-410f-443a-9dc6-5978b11463a3)
  )
  (junction (at 181.61 123.19) (diameter 0) (color 0 0 0 0)
    (uuid c320a926-3547-4597-9058-3cbff275bb32)
  )
  (junction (at 151.13 33.02) (diameter 0) (color 0 0 0 0)
    (uuid c50dbff5-edd7-416b-a64a-16443a33b619)
  )
  (junction (at 181.61 69.85) (diameter 0) (color 0 0 0 0)
    (uuid c7f1bb4e-ae47-400a-b62c-875186344269)
  )
  (junction (at 59.69 52.07) (diameter 0) (color 0 0 0 0)
    (uuid c81da200-d27c-4d25-b81f-c29e7dbfdeaa)
  )
  (junction (at 90.17 123.19) (diameter 0) (color 0 0 0 0)
    (uuid c926945b-b1a9-428f-a95a-de836f9d3a4a)
  )
  (junction (at 166.37 69.85) (diameter 0) (color 0 0 0 0)
    (uuid cd722567-a804-427b-8edd-798e59657fe8)
  )
  (junction (at 181.61 33.02) (diameter 0) (color 0 0 0 0)
    (uuid d175efc0-97b1-454b-9490-45576c2a4229)
  )
  (junction (at 113.03 27.94) (diameter 0) (color 0 0 0 0)
    (uuid d41685dc-8f4a-4d8d-8256-ddc6dd685d30)
  )
  (junction (at 105.41 107.95) (diameter 0) (color 0 0 0 0)
    (uuid d69ac59e-105c-4933-b786-ba57dc8f222c)
  )
  (junction (at 105.41 85.09) (diameter 0) (color 0 0 0 0)
    (uuid d95519b7-70f1-4d4e-89cc-a2932c52ab33)
  )
  (junction (at 59.69 123.19) (diameter 0) (color 0 0 0 0)
    (uuid d9a876a9-1c2e-4c70-bf57-1713a22401ce)
  )
  (junction (at 166.37 48.26) (diameter 0) (color 0 0 0 0)
    (uuid d9d46a0f-6593-4bf9-98e3-c4cb88025da9)
  )
  (junction (at 74.93 85.09) (diameter 0) (color 0 0 0 0)
    (uuid dbfb6380-104e-4d8b-8249-0aba57b155bd)
  )
  (junction (at 128.27 12.7) (diameter 0) (color 0 0 0 0)
    (uuid ddbbd046-af1f-421c-b7f6-72e1719c24a9)
  )
  (junction (at 120.65 52.07) (diameter 0) (color 0 0 0 0)
    (uuid e0d727b6-a178-48d6-b61c-44c81d85e9fa)
  )
  (junction (at 135.89 33.02) (diameter 0) (color 0 0 0 0)
    (uuid e1bf0850-7ec6-401b-b7d2-ca77a5ee24f2)
  )
  (junction (at 74.93 48.26) (diameter 0) (color 0 0 0 0)
    (uuid e3ea7145-acac-46f5-9c9d-a6f846d6e478)
  )
  (junction (at 120.65 48.26) (diameter 0) (color 0 0 0 0)
    (uuid e4f4694b-7ef8-4521-8094-b8d19f962d5a)
  )
  (junction (at 196.85 67.31) (diameter 0) (color 0 0 0 0)
    (uuid e66533c6-345e-4539-9570-41c4d82c1357)
  )
  (junction (at 196.85 102.87) (diameter 0) (color 0 0 0 0)
    (uuid ea68a49c-ee05-40cb-80cd-512a403a6ea8)
  )
  (junction (at 120.65 102.87) (diameter 0) (color 0 0 0 0)
    (uuid ecf468d5-6fe2-49a0-a7e4-cdcdafd9389e)
  )
  (junction (at 212.09 87.63) (diameter 0) (color 0 0 0 0)
    (uuid eeca24ec-99d7-4ffd-baed-ebbe9276e92f)
  )
  (junction (at 90.17 33.02) (diameter 0) (color 0 0 0 0)
    (uuid efd02954-c7c1-409e-a7eb-16ef302c76cb)
  )
  (junction (at 166.37 107.95) (diameter 0) (color 0 0 0 0)
    (uuid f03a17cf-6f47-4e7a-a5e4-5013e458a2a3)
  )
  (junction (at 44.45 123.19) (diameter 0) (color 0 0 0 0)
    (uuid f2e13fc1-76fd-4624-ab35-843a80088d16)
  )
  (junction (at 44.45 85.09) (diameter 0) (color 0 0 0 0)
    (uuid f704f54c-78f3-49a4-bf75-e690d58bd777)
  )
  (junction (at 105.41 69.85) (diameter 0) (color 0 0 0 0)
    (uuid fc81b105-8aac-4d5b-b741-152efc0ad06f)
  )
  (junction (at 120.65 123.19) (diameter 0) (color 0 0 0 0)
    (uuid fcf9c60a-2981-4e9e-98d7-b00eb3305ceb)
  )
  (junction (at 151.13 67.31) (diameter 0) (color 0 0 0 0)
    (uuid fe0b9e5a-2e52-4406-80f5-95f4d62f9fb8)
  )

  (no_connect (at 219.71 115.57) (uuid d1ab499d-2d70-48c6-9324-4e265ec882f7))

  (wire (pts (xy 59.69 48.26) (xy 74.93 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0260887e-5fcc-475d-9407-13b560decd67)
  )
  (wire (pts (xy 166.37 67.31) (xy 151.13 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 06312fcf-a2ea-4f89-a38e-9fe2e0f0002d)
  )
  (wire (pts (xy 74.93 52.07) (xy 59.69 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0740baee-666f-4628-a4cc-c114aef0a886)
  )
  (wire (pts (xy 105.41 67.31) (xy 90.17 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0b68c0e0-745b-4aaf-9cd6-f7538aa06b1c)
  )
  (wire (pts (xy 181.61 52.07) (xy 166.37 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0ce6147c-d0c2-4805-8ed0-e326db5eb4cb)
  )
  (wire (pts (xy 59.69 52.07) (xy 44.45 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0d4c9df2-6a61-45c7-a5e4-63de21622ecb)
  )
  (wire (pts (xy 219.71 64.77) (xy 219.71 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0e632332-44f6-4a02-8834-e9ae1dae9942)
  )
  (wire (pts (xy 24.13 92.71) (xy 16.51 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0fc9334b-259f-4865-bac7-5e9fa8c32b8e)
  )
  (wire (pts (xy 90.17 85.09) (xy 105.41 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 10a327e0-70d5-4772-a63e-bb92d87c7d22)
  )
  (wire (pts (xy 120.65 85.09) (xy 135.89 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 10aca476-d8bd-4ac8-b8d1-c2d44aea1e32)
  )
  (wire (pts (xy 151.13 48.26) (xy 166.37 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 12d25ff9-59dd-46d5-9ae4-91182baf464c)
  )
  (wire (pts (xy 181.61 85.09) (xy 196.85 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 12dab35c-7255-4eb0-ae05-ec0d83ce4b43)
  )
  (wire (pts (xy 90.17 48.26) (xy 105.41 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 133cfb7c-384d-46fd-87a4-2ef829bac988)
  )
  (wire (pts (xy 135.89 123.19) (xy 151.13 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1414716d-5b22-4f29-b81b-ed812de73cbb)
  )
  (wire (pts (xy 69.85 20.32) (xy 69.85 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 155ff200-b7e4-41c3-aac7-48b913127dee)
  )
  (wire (pts (xy 135.89 67.31) (xy 120.65 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 158bc620-a684-461c-bca0-de7b67c7476d)
  )
  (wire (pts (xy 16.51 115.57) (xy 36.83 115.57))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 168730ae-31cf-43aa-af3d-2c4d5c086383)
  )
  (wire (pts (xy 120.65 107.95) (xy 135.89 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1a1caff0-2334-494e-b6ac-c8847cc19663)
  )
  (wire (pts (xy 44.45 123.19) (xy 59.69 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1ee71027-373b-467c-971f-4b49be322cb9)
  )
  (wire (pts (xy 44.45 48.26) (xy 59.69 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 202a113b-073c-4616-ac6d-893966750452)
  )
  (wire (pts (xy 128.27 27.94) (xy 143.51 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 233923c2-4f30-464e-8fef-6e732289aaf5)
  )
  (wire (pts (xy 44.45 107.95) (xy 59.69 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 23491fd3-8824-49f8-a550-fb5a20c9ddb1)
  )
  (wire (pts (xy 181.61 48.26) (xy 196.85 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2357d7ec-51c6-4677-9119-bf6ad6cbecb8)
  )
  (wire (pts (xy 90.17 67.31) (xy 74.93 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 26ba45e2-e91d-4dba-bb41-b1e0c5d3e276)
  )
  (wire (pts (xy 181.61 102.87) (xy 166.37 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2c2b718e-cb4b-4cb3-8b0d-3d17e266de4f)
  )
  (wire (pts (xy 196.85 69.85) (xy 212.09 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e127207-eb7b-4d4e-8c8d-0c46b1a4b72b)
  )
  (wire (pts (xy 135.89 107.95) (xy 151.13 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2f647c7c-26c3-4aa3-9e57-5c2bfbff5f71)
  )
  (wire (pts (xy 151.13 69.85) (xy 166.37 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 310054b5-e5b5-4f53-95bb-fac31d76f088)
  )
  (wire (pts (xy 105.41 69.85) (xy 120.65 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3274287d-2fbf-4262-a230-709c5c5ab601)
  )
  (wire (pts (xy 82.55 12.7) (xy 97.79 12.7))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 32c45dba-1fae-4414-8835-e3fef792b66a)
  )
  (wire (pts (xy 113.03 27.94) (xy 128.27 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 353ba540-5a48-4997-8e69-0c1afbecb24f)
  )
  (wire (pts (xy 44.45 33.02) (xy 59.69 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 36630a84-7406-436c-9d24-6f9fd53a5937)
  )
  (wire (pts (xy 151.13 85.09) (xy 166.37 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 38fcbe23-adb2-4321-b362-551f78bddff7)
  )
  (wire (pts (xy 212.09 52.07) (xy 196.85 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3983229d-472c-4c39-bf5f-54b9da76944d)
  )
  (wire (pts (xy 120.65 87.63) (xy 105.41 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3c6c6a7e-6ee8-4553-8263-9dd5be5568d4)
  )
  (wire (pts (xy 105.41 85.09) (xy 120.65 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3c7004e3-f06f-4a91-978c-9d2cfe0b7926)
  )
  (wire (pts (xy 90.17 123.19) (xy 105.41 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3f7c7bcb-b4e4-413f-b9f1-098e70c8c74e)
  )
  (wire (pts (xy 196.85 123.19) (xy 212.09 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4083bfc1-480c-4b79-b168-e3cc5a866299)
  )
  (wire (pts (xy 212.09 52.07) (xy 222.25 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 41ed7c09-d372-45f1-a396-f13a91fde6fc)
  )
  (wire (pts (xy 181.61 69.85) (xy 196.85 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 422a5c8c-4d37-400b-a55b-efc6f33a242a)
  )
  (wire (pts (xy 59.69 33.02) (xy 74.93 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 43583845-b2f7-48c8-b196-663df0675453)
  )
  (wire (pts (xy 105.41 102.87) (xy 90.17 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 485d8d9a-6967-4069-8957-a0f6d013092b)
  )
  (wire (pts (xy 166.37 85.09) (xy 181.61 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4ac580cf-3149-4a3f-beac-2825f34e000b)
  )
  (wire (pts (xy 59.69 67.31) (xy 44.45 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4adc321c-17ee-456f-8a11-a7f28c48f91c)
  )
  (wire (pts (xy 162.56 33.02) (xy 166.37 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4f4225b7-d813-439d-9603-ce3a15d210f0)
  )
  (wire (pts (xy 181.61 67.31) (xy 166.37 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5247fa9a-ab84-4fe3-89f0-8f449aa18f31)
  )
  (wire (pts (xy 74.93 67.31) (xy 59.69 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 53030862-8f22-4835-9e80-dec7ab888abe)
  )
  (wire (pts (xy 120.65 69.85) (xy 135.89 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 539ede53-c728-4209-a501-7d082c8cee21)
  )
  (wire (pts (xy 82.55 27.94) (xy 97.79 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 53a2e23f-cd17-49ce-98e8-3d648f07deab)
  )
  (wire (pts (xy 166.37 33.02) (xy 181.61 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 53da1816-f72b-4de4-b139-433878d85860)
  )
  (wire (pts (xy 166.37 102.87) (xy 151.13 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 53ff09ba-80a8-4e1b-be16-fd7dfe2fe5ee)
  )
  (wire (pts (xy 97.79 12.7) (xy 113.03 12.7))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 554851be-f20e-44b3-bed9-8bfc89fac01b)
  )
  (wire (pts (xy 24.13 87.63) (xy 24.13 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 556f95ec-3e13-49c8-9acb-90e7fe2661fa)
  )
  (wire (pts (xy 105.41 48.26) (xy 120.65 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 558de66d-6640-44fb-abc4-d85c4b4673b3)
  )
  (wire (pts (xy 120.65 33.02) (xy 135.89 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 577bd77c-a173-460d-8952-d2eb7ccba43d)
  )
  (wire (pts (xy 90.17 102.87) (xy 74.93 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 57a5366a-b043-4c0d-b614-e07b25eeb888)
  )
  (wire (pts (xy 59.69 85.09) (xy 74.93 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 57d37fec-c782-42d1-8e2d-af5cd6d7a545)
  )
  (wire (pts (xy 120.65 67.31) (xy 105.41 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 59cc419b-de36-4132-a57b-340200ce6e66)
  )
  (wire (pts (xy 196.85 48.26) (xy 212.09 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5ac33501-a5f9-40cb-92e7-73eedaed92a1)
  )
  (wire (pts (xy 97.79 27.94) (xy 113.03 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5c55b29b-6aef-4f75-811f-ebbeff5a5ea0)
  )
  (wire (pts (xy 53.34 26.67) (xy 53.34 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5cac7e61-c991-44c0-b98f-d9b0cd934798)
  )
  (wire (pts (xy 212.09 33.02) (xy 220.98 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5e3b4c7d-3092-49c5-8b12-ec455642f6e2)
  )
  (wire (pts (xy 166.37 52.07) (xy 151.13 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5ecc26a2-a0ca-4002-862c-bd8f518ca83f)
  )
  (wire (pts (xy 181.61 33.02) (xy 196.85 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5f218ad5-b06e-4e1e-9e38-8a3de8afe0b9)
  )
  (wire (pts (xy 151.13 67.31) (xy 135.89 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 60b9792a-cb51-4b9a-8bbb-65b72527665d)
  )
  (wire (pts (xy 21.59 85.09) (xy 44.45 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 64fe7bf9-7014-4f58-991d-f5041e138b4f)
  )
  (wire (pts (xy 26.67 59.69) (xy 16.51 59.69))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6665b6c6-94cd-43cf-91a8-6cd0aac74116)
  )
  (wire (pts (xy 135.89 87.63) (xy 120.65 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 67d5aca2-c0c4-403d-98ce-eded1d1e3c0d)
  )
  (wire (pts (xy 59.69 69.85) (xy 74.93 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 69e82120-dce1-4d1d-8bcc-977b83302b31)
  )
  (wire (pts (xy 44.45 102.87) (xy 36.83 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6cee15d2-f920-4224-b8ea-e0ca8798323a)
  )
  (wire (pts (xy 234.95 87.63) (xy 212.09 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6e5ca087-e468-4148-8e85-27fcf5388f79)
  )
  (wire (pts (xy 226.06 59.69) (xy 219.71 59.69))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6ede3584-4d29-49fe-9535-39103313ffd5)
  )
  (wire (pts (xy 120.65 48.26) (xy 135.89 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6ef6da65-e047-446f-8f0a-324c228e7318)
  )
  (wire (pts (xy 90.17 69.85) (xy 105.41 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6f0fce99-b42c-440f-8fb7-79098f4b5352)
  )
  (wire (pts (xy 226.06 40.64) (xy 226.06 59.69))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7296fe83-3179-4b0f-9f46-111b0561c98b)
  )
  (wire (pts (xy 135.89 33.02) (xy 151.13 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 739a5348-0378-48de-8d71-542a3da55545)
  )
  (wire (pts (xy 135.89 69.85) (xy 151.13 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7437f82a-6b3b-43b3-adaa-83207ff1d161)
  )
  (wire (pts (xy 74.93 48.26) (xy 90.17 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 74eb4737-44fc-4c65-a53e-e28b2ae883c6)
  )
  (wire (pts (xy 105.41 52.07) (xy 90.17 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 76f130c9-6769-4488-b9d6-5171f638553a)
  )
  (wire (pts (xy 34.29 67.31) (xy 33.02 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 78b0dea6-cfb5-4f6a-b10e-f43a65b674d0)
  )
  (wire (pts (xy 16.51 59.69) (xy 16.51 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 791690b1-83f5-46a8-90f7-766207933c42)
  )
  (wire (pts (xy 242.57 77.47) (xy 242.57 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7a903ceb-6996-4f6b-952c-fc1e88565787)
  )
  (wire (pts (xy 212.09 102.87) (xy 196.85 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7dcc22b2-4976-41a3-8540-385017c609f6)
  )
  (wire (pts (xy 196.85 107.95) (xy 207.01 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7dd29906-106f-450c-b66f-a424c354462f)
  )
  (wire (pts (xy 135.89 52.07) (xy 120.65 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 814960f7-ee99-4a68-af93-c62ef5c100e4)
  )
  (wire (pts (xy 196.85 67.31) (xy 181.61 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 85054a78-0824-40ed-8e94-2b2e7d5b0632)
  )
  (wire (pts (xy 90.17 33.02) (xy 105.41 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 85f12dc3-c9a5-46a2-8a35-32f334558a91)
  )
  (wire (pts (xy 212.09 67.31) (xy 196.85 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8922855f-e241-4e49-a460-e999745b7a9e)
  )
  (wire (pts (xy 44.45 67.31) (xy 34.29 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8953cf53-7347-438a-9fd0-38f612fdd5d6)
  )
  (wire (pts (xy 36.83 102.87) (xy 34.29 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8b419ab6-8037-4b7e-88ac-7ad09799c73d)
  )
  (wire (pts (xy 26.67 52.07) (xy 26.67 59.69))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8b932a6f-0204-4d2d-beb7-f225e3ba1c8c)
  )
  (wire (pts (xy 181.61 107.95) (xy 196.85 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8c1f62e5-c961-4bf3-9aa4-2f2f4cf89738)
  )
  (wire (pts (xy 90.17 87.63) (xy 74.93 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8da934a3-f73f-453c-9a35-7995b8dd68a1)
  )
  (wire (pts (xy 166.37 48.26) (xy 181.61 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8e2eab76-01ba-437a-8add-ad5ba7a18bdd)
  )
  (wire (pts (xy 196.85 102.87) (xy 181.61 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8f44c555-7ed6-486b-836b-c7a23fb4a9c5)
  )
  (wire (pts (xy 120.65 123.19) (xy 135.89 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8f4f38a7-a830-4b19-9c59-07facd03df46)
  )
  (wire (pts (xy 53.34 27.94) (xy 69.85 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 91fbef2d-189b-4dde-9366-970fd8ea7774)
  )
  (wire (pts (xy 74.93 102.87) (xy 59.69 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 931c06ad-46cb-4782-a639-981364e654e6)
  )
  (wire (pts (xy 135.89 48.26) (xy 151.13 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 95426ea0-b124-4683-83d4-dd9a448d6175)
  )
  (wire (pts (xy 207.01 107.95) (xy 212.09 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 99d8526e-2ac8-4e8d-8235-b260abb4ee1f)
  )
  (wire (pts (xy 74.93 33.02) (xy 90.17 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9ee8f436-866d-4236-8af8-d81056580f9a)
  )
  (wire (pts (xy 74.93 123.19) (xy 90.17 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9eecaaab-1fdf-427b-b687-a84c23d4c119)
  )
  (wire (pts (xy 120.65 52.07) (xy 105.41 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9f5de981-9df3-4d16-ac0e-b5fcd6db717d)
  )
  (wire (pts (xy 59.69 107.95) (xy 74.93 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a17c60b0-33cb-4b53-b827-624bfb5c1659)
  )
  (wire (pts (xy 74.93 107.95) (xy 90.17 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a3d92937-61d2-4151-82f9-e251a23fc718)
  )
  (wire (pts (xy 90.17 52.07) (xy 74.93 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a4aae66d-532b-4b87-9068-d97887c3062f)
  )
  (wire (pts (xy 135.89 102.87) (xy 120.65 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a55938c1-aeb3-4223-b720-6241c4724153)
  )
  (wire (pts (xy 90.17 107.95) (xy 105.41 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a6ebf21f-a1cc-4eea-aa30-439aec9b29fa)
  )
  (wire (pts (xy 36.83 59.69) (xy 36.83 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ac28db22-f46c-4391-ab81-75b540d4687b)
  )
  (wire (pts (xy 181.61 123.19) (xy 196.85 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid adc7c6b3-1c14-4957-9a9e-2edad12a555c)
  )
  (wire (pts (xy 181.61 53.34) (xy 181.61 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid af30cb31-fabb-4f1b-bd48-0ece821f2eb0)
  )
  (wire (pts (xy 196.85 87.63) (xy 212.09 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b49576a3-e547-4049-982a-916005a0b201)
  )
  (wire (pts (xy 219.71 40.64) (xy 226.06 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b56b29c4-1fcb-408d-a389-1d57a4c922bf)
  )
  (wire (pts (xy 181.61 87.63) (xy 166.37 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b5914f54-baf5-4819-b9d5-bf3053c0051a)
  )
  (wire (pts (xy 53.34 19.05) (xy 53.34 17.78))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b88dcdd7-6ace-4398-9455-3aa8b01778ea)
  )
  (wire (pts (xy 16.51 92.71) (xy 16.51 115.57))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b8f9dd21-ff29-4823-8474-6644495a0aac)
  )
  (wire (pts (xy 59.69 123.19) (xy 74.93 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ba772c0e-e50b-4858-9c1a-8b3e0ebcd323)
  )
  (wire (pts (xy 166.37 123.19) (xy 181.61 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bcebc873-cdd5-4f70-a346-f2d74ce89bfc)
  )
  (wire (pts (xy 74.93 85.09) (xy 90.17 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bdbadb3d-2191-4941-bf9d-a6a95b4687c6)
  )
  (wire (pts (xy 29.21 100.33) (xy 36.83 100.33))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bebe2503-ee3b-4327-a2c6-6bd1a2bdc733)
  )
  (wire (pts (xy 21.59 48.26) (xy 44.45 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bf9f7bae-f3b8-4cb0-a97d-17605ddd09e9)
  )
  (wire (pts (xy 212.09 69.85) (xy 219.71 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c0580a7f-ab41-4735-8e54-39702b38041e)
  )
  (wire (pts (xy 69.85 20.32) (xy 74.93 20.32))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c075ba0a-c98c-457c-8cc6-1de8a1caf6f9)
  )
  (wire (pts (xy 219.71 77.47) (xy 242.57 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c0add821-ba45-4e2d-b556-a8af7662e463)
  )
  (wire (pts (xy 105.41 107.95) (xy 120.65 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c3eaf951-e461-486d-a9cf-561bdd064a26)
  )
  (wire (pts (xy 44.45 85.09) (xy 59.69 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c9702a24-1dd2-4491-b333-ca75e0bfe597)
  )
  (wire (pts (xy 74.93 69.85) (xy 90.17 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cadafbe4-8b87-4bd2-9ffa-08fc5fdbad58)
  )
  (wire (pts (xy 113.03 12.7) (xy 128.27 12.7))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cb2aada7-c87d-4e13-9a2d-0264a5bc0c7f)
  )
  (wire (pts (xy 44.45 69.85) (xy 59.69 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cb89700c-b1c5-4e84-a2c1-cd800c32de0f)
  )
  (wire (pts (xy 247.65 104.14) (xy 207.01 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cbf77744-10be-44ae-9e24-3df5b21e3d18)
  )
  (wire (pts (xy 222.25 50.8) (xy 222.25 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ce5ee0ef-d78d-4be0-b76f-aa8cfa5bd5d3)
  )
  (wire (pts (xy 151.13 107.95) (xy 166.37 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ce679af9-fdfb-4c98-ab10-60cb1e9acb17)
  )
  (wire (pts (xy 166.37 69.85) (xy 181.61 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d2a978fb-6540-4db5-bf67-f3cd6f488d82)
  )
  (wire (pts (xy 105.41 87.63) (xy 90.17 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d2fa2bf3-ae15-4345-958f-0d95620dc3de)
  )
  (wire (pts (xy 151.13 102.87) (xy 135.89 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d35d9562-db00-4e91-927f-e7b50303c4c5)
  )
  (wire (pts (xy 59.69 87.63) (xy 44.45 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d4d3888a-171c-4fb5-a488-bafd982bd98e)
  )
  (wire (pts (xy 196.85 33.02) (xy 212.09 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d7e48ff3-147e-4566-8af0-3deacbf76535)
  )
  (wire (pts (xy 59.69 102.87) (xy 44.45 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d81a7e36-8a3e-4e4b-af71-6d028115311a)
  )
  (wire (pts (xy 207.01 104.14) (xy 207.01 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d89e909f-b65c-4132-b343-6d62ee375634)
  )
  (wire (pts (xy 74.93 87.63) (xy 59.69 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid da51f967-ed24-40bd-8f19-d885c9f2dad6)
  )
  (wire (pts (xy 151.13 52.07) (xy 135.89 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dbdc9412-de04-4e71-a5d7-1ce9a5daa275)
  )
  (wire (pts (xy 166.37 107.95) (xy 181.61 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc31d996-e784-41e1-b94d-ac0874383aef)
  )
  (wire (pts (xy 151.13 123.19) (xy 166.37 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc653e15-e443-4253-9e7d-09b6d2093466)
  )
  (wire (pts (xy 128.27 12.7) (xy 143.51 12.7))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dcf9b92a-c408-4f8d-9b30-11b307f0b7ba)
  )
  (wire (pts (xy 120.65 102.87) (xy 105.41 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dd6a7c81-42a2-4e28-aca8-240d2b0cb256)
  )
  (wire (pts (xy 196.85 85.09) (xy 212.09 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dd929750-81ff-4910-9cf3-78e9d6f900fa)
  )
  (wire (pts (xy 212.09 107.95) (xy 222.25 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e0850edb-627a-48c4-adbc-ae559ea1cef9)
  )
  (wire (pts (xy 233.68 64.77) (xy 219.71 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e27fbfbc-8b8c-4e9b-978e-5f7ec46107bf)
  )
  (wire (pts (xy 135.89 85.09) (xy 151.13 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e2ccd374-b474-47ff-8237-0052cd96694c)
  )
  (wire (pts (xy 166.37 87.63) (xy 151.13 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e3a14402-b985-42be-b1e2-9cb2746fec65)
  )
  (wire (pts (xy 196.85 87.63) (xy 181.61 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e71d5bff-26ca-4d4c-977d-cb3918fa9cda)
  )
  (wire (pts (xy 21.59 123.19) (xy 44.45 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e8612acd-d2d2-4382-b71f-bb7471860076)
  )
  (wire (pts (xy 16.51 77.47) (xy 36.83 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e98b51d1-6c7f-43c3-8e77-b60609828ed9)
  )
  (wire (pts (xy 151.13 33.02) (xy 162.56 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ec57662c-24bc-4a23-aca5-69bec3216c3a)
  )
  (wire (pts (xy 219.71 69.85) (xy 220.98 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid eda653ac-ed4a-4301-a794-f9aa08e1891e)
  )
  (wire (pts (xy 196.85 52.07) (xy 181.61 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid efc7d139-51f7-4bf7-a5ed-a0a94f2bb1d2)
  )
  (wire (pts (xy 105.41 33.02) (xy 120.65 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f097dac0-7636-45ed-ada4-fc4e2d4d4216)
  )
  (wire (pts (xy 36.83 87.63) (xy 36.83 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f189e92a-18c3-4f5e-9144-5e7033f2d013)
  )
  (wire (pts (xy 26.67 52.07) (xy 36.83 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f238dc73-2623-4266-a70c-cb6c667887c4)
  )
  (wire (pts (xy 36.83 100.33) (xy 36.83 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f35dcaf2-22bb-4299-b7cf-da1d9e04e711)
  )
  (wire (pts (xy 242.57 95.25) (xy 219.71 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f5e78b84-3705-4fb3-9cc1-06a83c69c8bb)
  )
  (wire (pts (xy 105.41 123.19) (xy 120.65 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f84e1d4b-b951-4c9f-b959-17312d2f8503)
  )
  (wire (pts (xy 151.13 87.63) (xy 135.89 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fac936fa-2d97-4d6c-8c0a-7f09e6f80364)
  )
  (wire (pts (xy 24.13 87.63) (xy 36.83 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fbaa3c4c-35b0-4dd0-959a-9e391aa3056b)
  )

  (global_label "SK6812_STATUS_OUT" (shape input) (at 135.89 20.32 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 1611b724-bb47-4e8a-9a02-e7fe9ab4ee2c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 157.869 20.2406 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SK6812_IN" (shape input) (at 66.04 27.94 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 21494879-32c8-4510-956a-66d75a40049f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 65.9606 15.3953 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SK6812_PWR" (shape input) (at 33.02 67.31 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 418441cb-0794-4709-bc41-052c044b41c5)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.4191 67.3894 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SK6812_PWR" (shape input) (at 220.98 69.85 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 41a529a8-9bf4-4273-bd30-ae0d6283a2d7)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 235.5809 69.7706 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SK6812_PWR" (shape input) (at 222.25 107.95 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 540fefd8-c3ea-4761-9f5e-c514ddbc583a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 236.8509 107.8706 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SK6812_STATUS_OUT" (shape input) (at 36.83 40.64 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 6e5fcd86-8381-4a68-9ea5-7ef0890a774d)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 14.851 40.7194 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SK6812_PWR" (shape input) (at 34.29 102.87 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid cbbe011d-0e2c-4fb0-96a4-568060f82ee9)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.6891 102.9494 0)
      (effects (font (size 1.27 1.27)) (justify right) hide)
    )
  )
  (global_label "SK6812_PWR" (shape input) (at 220.98 33.02 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid df223516-cd12-4bb3-b002-64451ea11c9a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 235.5809 32.9406 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SK6812_PWR" (shape input) (at 143.51 12.7 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid e150ba3e-522d-4b19-8262-6677e18b8533)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 158.1109 12.6206 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "SPI1_MOSI_PA7" (shape input) (at 30.48 17.78 180) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid fb9710d2-3cf5-4081-92b1-9923a07e83c5)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at -40.64 -58.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )

  (symbol (lib_id "pouetpouet-rescue:74LVC1G34-74LVC1G34") (at 41.91 17.78 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005f7bc305)
    (property "Reference" "U3" (id 0) (at 54.4576 16.6116 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "74LVC1G34" (id 1) (at 54.4576 18.923 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (id 2) (at 41.91 17.78 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 41.91 17.78 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "3" (uuid ef784245-5e9f-4538-be57-7d6bbfb92cd5))
    (pin "5" (uuid 92dad825-6ecf-48ce-932d-5e6f17780a49))
    (pin "2" (uuid 6ea0823c-b466-43b6-aedd-9954dd3fa9bb))
    (pin "4" (uuid 808bf0d4-be01-4de8-8e98-e7001a50338e))
  )

  (symbol (lib_id "power:+5V") (at 40.64 12.7 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005f7be04e)
    (property "Reference" "#PWR0115" (id 0) (at 40.64 16.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 41.021 8.3058 0))
    (property "Footprint" "" (id 2) (at 40.64 12.7 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 40.64 12.7 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 85ee9689-037a-492b-88ed-f3ba9bee2c60))
  )

  (symbol (lib_id "power:GND") (at 40.64 22.86 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005f7be6c0)
    (property "Reference" "#PWR0116" (id 0) (at 40.64 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 40.767 27.2542 0))
    (property "Footprint" "" (id 2) (at 40.64 22.86 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 40.64 22.86 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 674acb37-1020-4a9f-bfab-ac29b5416cc3))
  )

  (symbol (lib_id "Device:R") (at 53.34 22.86 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005f7bee79)
    (property "Reference" "R2" (id 0) (at 55.118 21.6916 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "470" (id 1) (at 55.118 24.003 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 51.562 22.86 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 53.34 22.86 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d83df8b4-ee10-46ca-9f38-a4abe8cec4d2))
    (pin "2" (uuid 396bd4a2-80b8-46df-a13f-ea8e95b6bdb6))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 181.61 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 045c9e32-21c2-4bad-99f1-03adb6373c30)
    (property "Reference" "SKR5C3" (id 0) (at 194.31 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 194.31 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 182.88 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 184.15 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 57d5aa54-23e8-4457-b050-9d7ee2467ce1))
    (pin "2" (uuid 9ef64e29-a339-4090-a37e-0269fb20e25f))
    (pin "3" (uuid c830c115-c6a0-4a93-b7f0-1b39cab51bdc))
    (pin "4" (uuid f9345cf1-ab80-43cf-b3cc-3bf7605875e4))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 105.41 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 04789141-7bf9-4c30-9a8d-e0f9f65ecb6f)
    (property "Reference" "SKR4C8" (id 0) (at 105.41 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 92.71 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 104.14 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 102.87 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 2544b2fa-66c2-4e4f-b615-6c3d2ebd33b7))
    (pin "2" (uuid 5a083681-1abd-4208-889e-6ed3158f2e30))
    (pin "3" (uuid d701265c-1892-4a1f-b310-46d978d3a267))
    (pin "4" (uuid 3770f7c2-babe-43d1-8361-a89682451305))
  )

  (symbol (lib_id "power:GND") (at 29.21 92.71 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0b93a2d5-808f-40e6-9f7a-c9b66d556c65)
    (property "Reference" "#PWR01" (id 0) (at 29.21 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 29.21 87.63 0))
    (property "Footprint" "" (id 2) (at 29.21 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 29.21 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 79963393-90cd-4714-9939-aa4f2806cc8c))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 135.89 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 0ee3b882-c646-47eb-9546-20ce739f1620)
    (property "Reference" "SKR4C6" (id 0) (at 135.89 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 123.19 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 134.62 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 133.35 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 86622528-2430-412d-b384-7e9e5b61786e))
    (pin "2" (uuid 37d3c3fd-470e-4315-be1d-4bbc508cfe55))
    (pin "3" (uuid 5e49e83e-ec0c-4cc7-93b6-b4fb6f78b1fb))
    (pin "4" (uuid 71e0c160-2698-4ee8-8c55-dc1a1858bb5e))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 105.41 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 100d098f-5928-4cfe-9681-e8eadd80292c)
    (property "Reference" "SKR2C8" (id 0) (at 104.14 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 92.71 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 104.14 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 102.87 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 7c586478-c1b7-4e04-ace4-42fe7b9c473d))
    (pin "2" (uuid ad644845-7525-4f79-8722-b1bde7d47452))
    (pin "3" (uuid fb72e618-5f80-4f58-8f13-c7bb15a6a477))
    (pin "4" (uuid 69793960-3b63-4a5f-a89a-1844e0191ab0))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 90.17 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 176ea9bd-d9c7-4c0b-8b28-8e6d1fe71054)
    (property "Reference" "SKR5C9" (id 0) (at 102.87 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 102.87 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 91.44 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 92.71 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 7da99b63-4a9c-4a38-a0e3-c229d5ee63a0))
    (pin "2" (uuid 207381c0-991b-4e04-b998-aa7714084065))
    (pin "3" (uuid ec2dc2a1-7207-4eac-ad1c-8dddc52d5052))
    (pin "4" (uuid 0e74cee1-a106-44e5-9868-ffe58e4705c0))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 59.69 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1c95f31f-e3ec-4cda-a258-add836e08edd)
    (property "Reference" "SKR5C11" (id 0) (at 72.39 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 72.39 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 60.96 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 62.23 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 24edfb79-b859-4225-8ec9-47db900ffe3d))
    (pin "2" (uuid 57c86d51-fc52-44e3-a969-b8f24d09388e))
    (pin "3" (uuid c47daf3e-018f-47f0-9f1f-ab6b3084b053))
    (pin "4" (uuid 97ea95f5-9f88-4d57-8670-25447cd6a4e4))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 135.89 40.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 26705a52-90a6-4b50-88bb-1cd28bc6dbbd)
    (property "Reference" "SKR1C6" (id 0) (at 135.89 34.29 0))
    (property "Value" "SK6812MINI" (id 1) (at 148.59 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 137.16 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 138.43 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 2bb7794f-a6bd-457d-a72c-76999231ba14))
    (pin "2" (uuid f541c5dd-6c97-4713-864b-de0d8fcb1e48))
    (pin "3" (uuid 175b8590-eea4-44af-aac9-cdeeb780f179))
    (pin "4" (uuid 1d7fc389-9fe9-4dff-8318-a59ea82451e5))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 82.55 20.32 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 26b12e7a-2a67-41f1-87e8-3ebfe3d1102a)
    (property "Reference" "STAT1" (id 0) (at 81.28 13.97 0))
    (property "Value" "SK6812MINI" (id 1) (at 82.55 20.32 0))
    (property "Footprint" "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" (id 2) (at 83.82 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 85.09 29.845 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 9bc7eb26-1d16-4c4f-807c-24ae14acd712))
    (pin "2" (uuid 8885ea2f-a11f-4d1c-99de-cf50aeea4544))
    (pin "3" (uuid 8b6a4227-5567-4876-b4fc-a827f113f333))
    (pin "4" (uuid 9216e447-804f-45ec-805f-e9573bfa3604))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 90.17 40.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 28b8b0ff-3318-419b-bc8d-9f067a678e27)
    (property "Reference" "SKR1C9" (id 0) (at 90.17 34.29 0))
    (property "Value" "SK6812MINI" (id 1) (at 102.87 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 91.44 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 92.71 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid f34691bd-05d3-4ddc-be49-93b7e56ea524))
    (pin "2" (uuid cca84539-a6a7-47e6-8de9-b23d236b6b73))
    (pin "3" (uuid 06c07836-4b6e-4fdd-a9e0-51959941ee09))
    (pin "4" (uuid 1cc268b6-76a1-45f3-a13e-8a922c7a153a))
  )

  (symbol (lib_id "Device:C") (at 34.29 63.5 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 2a2f5c45-98ce-48c8-85c3-d7c372dbccad)
    (property "Reference" "C11" (id 0) (at 37.211 62.3316 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "0.1nF" (id 1) (at 37.211 64.643 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 35.2552 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 34.29 63.5 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b1409386-6ae1-47ea-9094-37d39daf4b3c))
    (pin "2" (uuid d37418a9-468d-49ba-885d-17d270c6ae0c))
  )

  (symbol (lib_id "Device:C") (at 247.65 100.33 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 2ad48ca0-1810-4405-8c04-d490495ef24d)
    (property "Reference" "C14" (id 0) (at 250.571 99.1616 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "0.1nF" (id 1) (at 250.571 101.473 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 248.6152 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 247.65 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a23340d5-87b8-4ba7-b9be-2b3d07f5365c))
    (pin "2" (uuid b3a38e4d-610d-41c1-a117-fbfbbde54458))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 212.09 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2d8b16da-7039-46d1-b3e0-d51ad5b27623)
    (property "Reference" "SKR5C1" (id 0) (at 224.79 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 224.79 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 213.36 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 214.63 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid b59060d7-569a-49b5-a401-b7f970cb0df8))
    (pin "2" (uuid 80946195-5900-41bc-bb99-b565b08e01ba))
    (pin "3" (uuid 86295e18-aab8-4c14-aa26-fd1f57e9db95))
    (pin "4" (uuid ebad6950-ad66-477a-853e-ef9e4578a954))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 196.85 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 2dacc0eb-02af-486e-8300-e3a35df803f0)
    (property "Reference" "SKR3C2" (id 0) (at 196.85 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 209.55 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 198.12 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 199.39 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 6ca0eed8-6272-44ce-a514-602285cda0d3))
    (pin "2" (uuid 60977290-f0c5-4a4d-ac98-e871aa9f86bc))
    (pin "3" (uuid b46af4f3-e587-4c04-a121-b6340ddbc76a))
    (pin "4" (uuid 6962d4f4-719a-409f-a7f8-e6040018b19e))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 196.85 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 2e45e1ac-8a8a-419e-b147-210f72f9635b)
    (property "Reference" "SKR4C2" (id 0) (at 196.85 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 184.15 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 195.58 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 194.31 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 55b03fa5-8c27-4beb-9633-f38ee052b617))
    (pin "2" (uuid d1f200e8-af24-493b-ad10-0b2439ae5042))
    (pin "3" (uuid cc04d383-1fb9-4ebc-8689-e8ca3ccfd4b2))
    (pin "4" (uuid 6696b627-a98a-4f62-9cf4-1ca1b6da8b62))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 151.13 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 3a230671-17af-42f4-896d-4c5cc92809b0)
    (property "Reference" "SKR4C5" (id 0) (at 151.13 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 138.43 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 149.86 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 148.59 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 08ee2806-e55e-41f8-9c53-6129125beb79))
    (pin "2" (uuid d4652ed4-c2ae-4526-8a61-0142c1fdcf4d))
    (pin "3" (uuid 2f60132e-2801-4a14-92dc-adfd5a1decdc))
    (pin "4" (uuid 6880f7e9-008f-43a3-824e-4a6d0e9d4f8e))
  )

  (symbol (lib_id "power:GND") (at 162.56 25.4 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4006d76f-6e24-4072-bbf1-72b4b7273391)
    (property "Reference" "#PWR03" (id 0) (at 162.56 19.05 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 162.56 20.32 0))
    (property "Footprint" "" (id 2) (at 162.56 25.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 162.56 25.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid eb9206b9-b226-4e4a-966b-5c61cfbaa58f))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 105.41 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 40b4e136-36df-4d0a-bcc1-0637bc99a07f)
    (property "Reference" "SKR5C8" (id 0) (at 118.11 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 118.11 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 106.68 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 107.95 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid df08d971-40f6-4359-8f63-cd5a8480c397))
    (pin "2" (uuid 0f5438f7-9f81-4449-91e6-d807d36d3884))
    (pin "3" (uuid cb13ea26-7b0a-4177-a90c-717715e41dfb))
    (pin "4" (uuid d6e71270-1957-4f8f-abb3-4176d60250e8))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 151.13 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 4178c677-961d-462e-9787-3b8d60bd672e)
    (property "Reference" "SKR2C5" (id 0) (at 151.13 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 138.43 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 149.86 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 148.59 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid b06e444d-ff72-4c42-8f1e-9d08ece8d093))
    (pin "2" (uuid 4a5034c0-5556-49fe-b3bc-6deaeb0d59b4))
    (pin "3" (uuid cd2349c7-8495-4d5a-be7e-7c8f8ba45afc))
    (pin "4" (uuid 4f67894b-6acb-4fdb-9f1e-a6274b0f749e))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 44.45 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 421105d8-4bc4-4033-8fe0-ebe74ea70e4c)
    (property "Reference" "SKR2C12" (id 0) (at 44.45 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 31.75 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 43.18 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 41.91 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 7bef2637-f9b9-4174-a3a6-70ca3f646949))
    (pin "2" (uuid 94891172-87c4-4638-85d6-4b690090a11e))
    (pin "3" (uuid bb22c224-aaa1-4f9e-a92f-a318672492f2))
    (pin "4" (uuid 3ef7d001-4a32-4753-a329-36f093e0228b))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 135.89 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 4211947d-8fe8-4603-b6e0-0325b429e5dc)
    (property "Reference" "SKR3C6" (id 0) (at 135.89 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 148.59 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 137.16 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 138.43 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid c68f20d2-efa8-4aac-a9b5-d9d0e7694f6d))
    (pin "2" (uuid b97e6263-c581-42ea-a402-e66535978bfe))
    (pin "3" (uuid 8024deac-999d-4a6e-8aa5-1f3787df9ba5))
    (pin "4" (uuid 1afcf348-57f8-4f03-9eec-429e8b108178))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 128.27 20.32 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 439ff28a-eea4-4c67-8583-01bc31c1a92a)
    (property "Reference" "STAT4" (id 0) (at 125.73 13.97 0))
    (property "Value" "~" (id 1) (at 140.97 18.5293 0))
    (property "Footprint" "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" (id 2) (at 129.54 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 130.81 29.845 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 2e76f24d-e140-4c15-a120-d8cb3ece8464))
    (pin "2" (uuid 0e0dc0fa-0ef0-455c-9acf-d22f83f055f7))
    (pin "3" (uuid c98497da-90f3-4122-b055-8c239f84589a))
    (pin "4" (uuid aef44d73-251f-4bec-b83b-d3e25a359656))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 166.37 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4703acbc-aa4e-4105-8098-4af98d57aee5)
    (property "Reference" "SKR5C4" (id 0) (at 179.07 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 179.07 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 167.64 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 168.91 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 9ccfef6a-838b-4945-b22b-4c17a979cac3))
    (pin "2" (uuid 4f6bd1e4-23ac-416e-ac19-d4ba8c785cf3))
    (pin "3" (uuid 219de55f-333b-49dd-9b2c-4a5c8fed419f))
    (pin "4" (uuid edec1307-994c-4aa4-bca6-edffd45bc1cf))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 151.13 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 471ee13c-74b1-425d-8b3c-917839184fee)
    (property "Reference" "SKR5C5" (id 0) (at 163.83 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 163.83 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 152.4 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 153.67 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 2156784a-8549-4dcb-89f9-a784a77abb51))
    (pin "2" (uuid fe53f5b9-c0e4-4ee1-b7ad-4b7cbdfbb993))
    (pin "3" (uuid 0a554e90-c3b1-4b92-a881-a3dce3874c4e))
    (pin "4" (uuid 2375b386-fcb6-48e0-ab26-d352c8cf7678))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 135.89 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 48de1101-72ce-4bdb-a813-03bc9684df86)
    (property "Reference" "SKR2C6" (id 0) (at 135.89 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 123.19 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 134.62 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 133.35 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 0c489ed5-aa24-47b4-937a-aa9c38d805dd))
    (pin "2" (uuid 5a33611f-8c2a-4ef6-badb-6acb6acc003a))
    (pin "3" (uuid 1fda0013-f574-4a65-aa57-f9ffd7af4c25))
    (pin "4" (uuid 6834abf4-bd8c-44c9-97ca-cac11b4ec607))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 90.17 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 4977b607-11ec-4d17-a0f3-ad0dbd15165e)
    (property "Reference" "SKR3C9" (id 0) (at 90.17 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 102.87 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 91.44 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 92.71 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 95558dd2-2ee1-41c5-89d1-21cc0a8439a0))
    (pin "2" (uuid 3661f951-d68a-420c-8ed9-a1c54e5fb84b))
    (pin "3" (uuid 3ae2ee1d-0032-4fe6-9a0b-e127adac1d0f))
    (pin "4" (uuid 423987d6-a5e3-4b5e-a885-b86d8fe3ec35))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 120.65 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 49e10186-f0f7-47df-9e2c-6ee78864f6bd)
    (property "Reference" "SKR2C7" (id 0) (at 120.65 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 107.95 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 119.38 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 118.11 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 5c5cbd1d-b5c9-4998-af3a-8aa34485a385))
    (pin "2" (uuid e1dcbcad-9080-41c8-beff-7b002ee00c2a))
    (pin "3" (uuid 63f7cac9-6dfa-42dd-aa22-3edb4a1fff3c))
    (pin "4" (uuid 03270d87-8888-4551-bec3-b6f80d33288e))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 74.93 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 4c7e7288-a989-48c8-8a45-4d5ccb25309f)
    (property "Reference" "SKR3C10" (id 0) (at 74.93 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 87.63 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 76.2 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 77.47 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid c8574412-396a-4758-a7a5-3217e0afb893))
    (pin "2" (uuid 2a908cc7-f06f-46e3-885e-ee43f198043c))
    (pin "3" (uuid c52ec248-0bc7-4c3b-b000-3a1748ddf3e1))
    (pin "4" (uuid 841e83f9-4e4f-401e-9656-1cd979806909))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 59.69 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 4e001f91-0a00-4273-97cd-8adfe0dd1dd4)
    (property "Reference" "SKR2C11" (id 0) (at 59.69 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 46.99 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 58.42 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 57.15 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid afbe086d-545f-4008-91ee-e11cb6b29bce))
    (pin "2" (uuid cc3f02a8-8475-4749-b187-7f6e09502ca5))
    (pin "3" (uuid 6f3ec6a0-b69b-4536-a014-7965b8a99f73))
    (pin "4" (uuid 52a68e79-cc6d-4774-9206-3ded64d4e412))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 44.45 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 5058395b-6706-41d5-ba04-04a64c11298c)
    (property "Reference" "SKR3C12" (id 0) (at 44.45 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 57.15 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 45.72 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 46.99 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 361ac1ec-74e5-4295-9c59-091b4503bd2e))
    (pin "2" (uuid e4fa90dd-da75-454b-a432-408f93b7beac))
    (pin "3" (uuid 9414af8a-c1a9-4527-bdf4-3a077fd1cbcc))
    (pin "4" (uuid 20c62128-9c78-4a1c-be22-fd272d6ab72f))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 196.85 59.69 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 5573ca00-4318-4972-a7b7-d69737ed90a8)
    (property "Reference" "SKR2C2" (id 0) (at 184.15 64.0207 0))
    (property "Value" "SK6812MINI" (id 1) (at 184.15 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 195.58 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 194.31 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 385faf01-99a4-48cc-b003-e7008aeaabba))
    (pin "2" (uuid 943e1c95-bdf7-4cc1-8e2f-3634ffc4bc69))
    (pin "3" (uuid 63afab7c-4c87-4c35-9765-c5d2410fe884))
    (pin "4" (uuid 3bae82d1-d456-42f2-a562-6219a7565202))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 196.85 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 5c7dc561-06ab-4c79-a748-9af43f1ba892)
    (property "Reference" "SKR5C2" (id 0) (at 209.55 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 209.55 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 198.12 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 199.39 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 4d242407-7448-4090-b8d0-5f45bdce8930))
    (pin "2" (uuid 428e54dd-8f42-4761-af36-d3c495546fc1))
    (pin "3" (uuid 324b7a0f-ff87-4e86-9727-84dd83a40cde))
    (pin "4" (uuid e8585698-b17c-42a3-910f-7fd302726d35))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 74.93 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 5d8fcfa2-4966-4bf3-970f-25575d0445f8)
    (property "Reference" "SKR4C10" (id 0) (at 74.93 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 62.23 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 73.66 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 72.39 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 25f985f3-7a70-4acd-aa25-9bf852a4bcf8))
    (pin "2" (uuid c934c6e5-cdec-436b-ae14-b6ee6d8c8c8f))
    (pin "3" (uuid 17ef9c20-8c7a-42d1-aaaf-accca749bb52))
    (pin "4" (uuid 5b676d9b-2061-433b-ac4f-5c2c461f9ab6))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 196.85 40.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 5e06b83b-7d40-423c-9a6a-0cc8441bd43f)
    (property "Reference" "SKR1C2" (id 0) (at 209.55 36.3093 0))
    (property "Value" "SK6812MINI" (id 1) (at 209.55 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 198.12 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 199.39 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 3caf6f93-4f92-4b34-adad-02dcb8a1fe53))
    (pin "2" (uuid 91c14720-40d6-42ba-bbd5-b04cdc55a6cd))
    (pin "3" (uuid 9af9b7ca-d412-423d-b783-8141807df8a6))
    (pin "4" (uuid 268659e1-9558-453c-8d09-3b8a449ab923))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 113.03 20.32 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 5fd47f40-2699-4fd2-b914-591c066568e5)
    (property "Reference" "STAT3" (id 0) (at 110.49 13.97 0))
    (property "Value" "~" (id 1) (at 125.73 18.5293 0))
    (property "Footprint" "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" (id 2) (at 114.3 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 115.57 29.845 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 5b3754c2-e4f7-4125-8472-b1657c6a6be4))
    (pin "2" (uuid e402a85f-fcaa-44da-b4f3-10ae3a007988))
    (pin "3" (uuid f2dcce9a-acc9-4b88-bb7d-61560e177e2e))
    (pin "4" (uuid bb7d29dd-5d10-436f-8a8c-9741b68a738a))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 105.41 40.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 5fe182c6-521a-4fe2-a67d-490060532c80)
    (property "Reference" "SKR1C8" (id 0) (at 105.41 34.29 0))
    (property "Value" "SK6812MINI" (id 1) (at 118.11 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 106.68 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 107.95 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid e5a3428c-bb9d-4a83-8849-5da31d507d45))
    (pin "2" (uuid 1281c478-2131-489f-bd46-a3182e3206bb))
    (pin "3" (uuid a8c8fe94-7e9f-456b-ab0b-42ed75fa4df2))
    (pin "4" (uuid 3d64982a-ed28-4634-ba78-ad9e8bea0a07))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 44.45 40.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 6577f2c7-24e4-47db-9344-172052c866ea)
    (property "Reference" "SKR1C12" (id 0) (at 44.45 34.29 0))
    (property "Value" "SK6812MINI" (id 1) (at 57.15 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 45.72 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 46.99 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 593835ee-e0e7-4509-b26d-6b45dadf597c))
    (pin "2" (uuid cd3a0284-1ca3-4f0e-ab1e-b5b570c938a5))
    (pin "3" (uuid b5acfa39-dcc5-4f6f-acd1-c03a54d86dc9))
    (pin "4" (uuid 7982065d-703a-4b89-955f-8890e3c9cafd))
  )

  (symbol (lib_id "Device:C") (at 162.56 29.21 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 689b65b2-edef-4754-8315-5ed345ea1167)
    (property "Reference" "C12" (id 0) (at 165.481 28.0416 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "0.1nF" (id 1) (at 165.481 30.353 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 163.5252 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 162.56 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 81bd11e8-0e8d-4a2b-b5e8-9ae3e4aa8876))
    (pin "2" (uuid 5c1e50ce-be87-40d8-b5af-962311b6f0e5))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 212.09 40.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 6cb161aa-fa95-4192-913c-4d4fe8559ca5)
    (property "Reference" "SKR1C1" (id 0) (at 224.79 36.3093 0))
    (property "Value" "SK6812MINI" (id 1) (at 224.79 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 213.36 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 214.63 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 98e4ab7a-2419-44ec-9715-40a94fd3ea50))
    (pin "2" (uuid 480537b8-6f74-4dff-b62e-d083bf950ca0))
    (pin "3" (uuid f65b29c3-8791-4ad8-82dc-0b5ea03c0f87))
    (pin "4" (uuid a7992b15-313d-4cdd-ba47-02dcc30ab02a))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 59.69 40.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 6db08262-60fc-47be-a61e-ae628d4b1e61)
    (property "Reference" "SKR1C11" (id 0) (at 59.69 34.29 0))
    (property "Value" "SK6812MINI" (id 1) (at 72.39 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 60.96 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 62.23 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 76d7e681-af05-4ef9-bf17-cf710282571f))
    (pin "2" (uuid 2093ccd0-722d-4e45-932e-36f16d88b274))
    (pin "3" (uuid 2ba06acb-29d2-4634-a3c8-8f8195770c1f))
    (pin "4" (uuid 80449e73-e811-4031-88f4-047447399319))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 166.37 40.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 6e1c8d22-a3c2-4739-8080-cc2499cbf0c3)
    (property "Reference" "SKR1C4" (id 0) (at 179.07 36.3093 0))
    (property "Value" "SK6812MINI" (id 1) (at 179.07 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 167.64 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 168.91 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 5ba8bb12-b747-40db-9a46-1dea91fe7a78))
    (pin "2" (uuid 0ceda40c-021b-4e82-b42f-da6ab60c2da7))
    (pin "3" (uuid 8d16705e-84ce-487e-93ab-d60a64f737ee))
    (pin "4" (uuid d71ed711-1861-41be-80be-46ae8fdcdd1a))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 44.45 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 6faa2590-1d42-4174-8e98-c3500d6e0fe5)
    (property "Reference" "SKR5C12" (id 0) (at 57.15 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 57.15 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 45.72 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 46.99 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid af4947fb-e656-4604-a35e-b5d8b82f7f37))
    (pin "2" (uuid a36ed968-0c8a-454a-ae9a-d0abb7f478d5))
    (pin "3" (uuid 1775aeb6-350c-4ac1-9ea8-1ec03c961d63))
    (pin "4" (uuid eff328db-3882-43dd-8a74-183de17fdd94))
  )

  (symbol (lib_id "Device:C") (at 29.21 96.52 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 7360ff08-2b43-4afd-b655-2429e9272337)
    (property "Reference" "C10" (id 0) (at 32.131 95.3516 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "0.1nF" (id 1) (at 32.131 97.663 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 30.1752 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 29.21 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 296438c8-1719-411b-bb05-64d0f826fa73))
    (pin "2" (uuid 78c02cdb-9a75-42e5-a333-7b55b625709d))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 74.93 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 73a8a813-c1fc-4c04-924e-383d7639954c)
    (property "Reference" "SKR5C10" (id 0) (at 87.63 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 87.63 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 76.2 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 77.47 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 242011d3-5126-4e78-91ae-9f93709df911))
    (pin "2" (uuid 0d033a60-831b-4e25-b206-d841966748db))
    (pin "3" (uuid a3c06398-8d5e-4c48-b4c0-cd367bb42bc4))
    (pin "4" (uuid 556cb124-8841-41d7-841a-6505e54a7875))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 181.61 59.69 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7a565c04-da3c-4b92-8807-aac3613a3481)
    (property "Reference" "SKR2C3" (id 0) (at 168.91 64.0207 0))
    (property "Value" "SK6812MINI" (id 1) (at 168.91 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 180.34 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 179.07 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid db1ecbb6-f961-4d76-b0d9-f39cab843e34))
    (pin "2" (uuid cd6e379a-b2bf-4dd2-8d20-e5cc9267a9fa))
    (pin "3" (uuid 8514bb36-6f6a-449a-aea6-0df63f926f62))
    (pin "4" (uuid cb23b412-ec9e-4268-9f6d-970ce8617346))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 181.61 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 7e3c782d-b524-4f78-8237-1d4519ce1b20)
    (property "Reference" "SKR4C3" (id 0) (at 181.61 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 168.91 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 180.34 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 179.07 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 70e97b8d-1884-4b97-9b0e-8d5f6537bc8f))
    (pin "2" (uuid 3e341689-2e0b-4e7a-aa00-624dbc333f9a))
    (pin "3" (uuid e507eb8c-ee2b-45a3-b4a7-60060525cdc8))
    (pin "4" (uuid 7f7fc609-e8e5-4024-9f08-1a0b16d54c16))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 181.61 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 895f049d-dfe1-420b-8631-33ccfbc7fc20)
    (property "Reference" "SKR3C3" (id 0) (at 181.61 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 194.31 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 182.88 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 184.15 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid c84adf28-2d2d-48c2-af81-29b5740d6005))
    (pin "2" (uuid b23033c5-7427-47b8-9927-3bef9bc17bcd))
    (pin "3" (uuid d065500e-c50c-4a3d-abbb-c6752ff320ce))
    (pin "4" (uuid f8d8c4c5-899f-4bae-9aee-5b1fd3a230bf))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 90.17 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 8d65068c-f8da-4a07-a7bb-427ec740be7e)
    (property "Reference" "SKR2C9" (id 0) (at 90.17 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 77.47 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 88.9 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 87.63 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 48ef2294-4d02-4c19-8852-9ad11a1e93e7))
    (pin "2" (uuid 838b422d-137b-4ec5-940c-658dce18c3c4))
    (pin "3" (uuid fce54b52-a38a-4017-92f4-51277a6ab876))
    (pin "4" (uuid cf3178f7-a529-4015-a63a-9905a6355122))
  )

  (symbol (lib_id "power:GND") (at 21.59 48.26 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 914f93c6-a5fc-4273-bf4a-81662787745f)
    (property "Reference" "#PWR0122" (id 0) (at 21.59 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 21.59 53.34 0))
    (property "Footprint" "" (id 2) (at 21.59 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 21.59 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cdcbc961-877a-463c-a36e-27954d1cdab0))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 59.69 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 91b9f20c-1fdf-4ecc-a95a-98c77e8154bb)
    (property "Reference" "SKR3C11" (id 0) (at 59.69 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 72.39 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 60.96 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 62.23 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid b826f852-3b54-4310-a66c-4c87f4e0283f))
    (pin "2" (uuid 1e65a745-7008-4e25-a74e-e9d2f9944308))
    (pin "3" (uuid 92a2890c-0f6d-4dc1-acaf-a1ef1b4dab0f))
    (pin "4" (uuid bf7fda4a-a8b6-4019-8938-203721e3f2f1))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 166.37 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 9518226d-6fdb-4205-b4fa-f80d914f12ed)
    (property "Reference" "SKR4C4" (id 0) (at 166.37 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 153.67 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 165.1 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 163.83 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid d74439e1-78dd-43c6-b01a-1435cc7a1680))
    (pin "2" (uuid 9bf05dd4-b73d-4e5b-9d53-4c5b4cb85150))
    (pin "3" (uuid 8a104130-a2ec-4285-bb7c-2c96795dda46))
    (pin "4" (uuid 387e9f6b-3ffd-48b9-b3b4-7d047a52992c))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 151.13 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 976e2ae6-a17e-495e-89f5-de9dffcf92a5)
    (property "Reference" "SKR3C5" (id 0) (at 151.13 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 163.83 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 152.4 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 153.67 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 1be580a9-1212-43e5-b224-473aab4d2d12))
    (pin "2" (uuid cacad5cb-b216-45b8-b9a4-84356e2bd79e))
    (pin "3" (uuid 809f5636-fe2e-46c2-a628-20e39b4a1ffb))
    (pin "4" (uuid 3dc27e5b-0a95-4abe-9018-7692fb0cce68))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 120.65 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 99ae23b1-d4fe-486a-930e-719f7e84090d)
    (property "Reference" "SKR5C7" (id 0) (at 133.35 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 133.35 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 121.92 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 123.19 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid ce4d8918-ca3f-4f17-9ab5-ded9447799a1))
    (pin "2" (uuid a24ff9e1-b7da-4b34-8157-2b4fa296c8dd))
    (pin "3" (uuid 9436b9cb-49b5-4978-85f2-b4f91f9aaf2e))
    (pin "4" (uuid d6885de1-8f5d-486c-9eb3-9962cc36ee92))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 120.65 40.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 9d2bd03d-0cb5-4ae3-9d1b-b465fee9967b)
    (property "Reference" "SKR1C7" (id 0) (at 120.65 34.29 0))
    (property "Value" "SK6812MINI" (id 1) (at 133.35 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 121.92 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 123.19 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 2f0ee649-1bf1-4383-a731-9e15333304b2))
    (pin "2" (uuid 00d25fcf-e181-4b8f-afcb-c08daaf6f406))
    (pin "3" (uuid fa784567-54e2-4d51-90ef-b143549adefe))
    (pin "4" (uuid 41bf046d-88c3-42a5-86f8-9ec72bf8883a))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 166.37 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 9e167585-a0f1-412c-b78a-0bf74745252e)
    (property "Reference" "SKR2C4" (id 0) (at 166.37 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 153.67 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 165.1 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 163.83 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid ac18ea73-065c-46aa-ad52-732cc0cb5b05))
    (pin "2" (uuid c4085b92-55f1-4412-9a4c-ba972e45a9c9))
    (pin "3" (uuid 4d242e54-2873-4b8a-a37d-86b2fef53770))
    (pin "4" (uuid 934e24aa-4b45-4711-8312-23b569f29a66))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 44.45 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid a19de8a8-2a8d-4fc6-b88e-bd2ede20e910)
    (property "Reference" "SKR4C12" (id 0) (at 44.45 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 44.45 96.52 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 43.18 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 41.91 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 77209095-e82a-4258-aee4-729dc7e4efa9))
    (pin "2" (uuid 4802d0c6-f9e8-402d-bff8-067bfde3d743))
    (pin "3" (uuid 34c4e6ba-28bb-4846-b954-461e26fcc31f))
    (pin "4" (uuid 7a566be5-80c7-4935-8755-429e52971698))
  )

  (symbol (lib_id "power:GND") (at 222.25 50.8 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a5b14659-cb93-46dd-adb2-80fcf0ebf4b1)
    (property "Reference" "#PWR0123" (id 0) (at 222.25 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 222.25 45.72 0))
    (property "Footprint" "" (id 2) (at 222.25 50.8 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 222.25 50.8 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 69513c7b-919b-44c2-b373-75ad64aaee46))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 105.41 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid a669f68b-d545-4f3e-83a9-c28f6a9a6bbe)
    (property "Reference" "SKR3C8" (id 0) (at 105.41 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 118.11 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 106.68 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 107.95 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 621c58d4-95b6-4b04-8a4a-93a18cc3e3db))
    (pin "2" (uuid e097ec2f-6167-4f7b-a96d-5aa3bd4e86da))
    (pin "3" (uuid ae9442c8-8557-4a3f-891f-6ed60a3a7423))
    (pin "4" (uuid d55db43a-369b-40bf-aa7d-b2a84044cf76))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 212.09 77.47 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a7d8fc20-7a3d-46f6-8849-c166839edc1a)
    (property "Reference" "SKR3C1" (id 0) (at 224.79 73.1393 0))
    (property "Value" "SK6812MINI" (id 1) (at 224.79 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 213.36 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 214.63 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 21ebb58a-49af-4ec3-b485-1245c8b26a0d))
    (pin "2" (uuid ce46bb49-d869-4732-a076-97934e65e7fa))
    (pin "3" (uuid 9c6e9dbc-a162-403e-8e5a-29d74c2a0b21))
    (pin "4" (uuid 9f12ea14-d56f-4f8a-ac07-27fdb560c62c))
  )

  (symbol (lib_id "power:GND") (at 21.59 85.09 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a8507a0d-0c2e-43d6-8b9e-e5f65d88966a)
    (property "Reference" "#PWR0124" (id 0) (at 21.59 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 21.59 90.17 0))
    (property "Footprint" "" (id 2) (at 21.59 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 21.59 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8fc77dbf-d952-40e5-98c1-84f1120cc0d2))
  )

  (symbol (lib_id "power:GND") (at 21.59 123.19 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b7159fdb-a7ae-47d5-80a5-de2d471a8cb2)
    (property "Reference" "#PWR0126" (id 0) (at 21.59 129.54 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 21.59 128.27 0))
    (property "Footprint" "" (id 2) (at 21.59 123.19 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 21.59 123.19 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid beebd569-b5c3-4373-b7a2-a8bdc287534b))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 90.17 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid b7273935-9f6c-4c1c-80f5-a4808a3b4f6d)
    (property "Reference" "SKR4C9" (id 0) (at 90.17 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 77.47 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 88.9 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 87.63 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid dbe2d2db-7120-408b-8fd7-d9d3e90027b0))
    (pin "2" (uuid f0b95ca4-d042-4e67-96eb-e61e35a8bc19))
    (pin "3" (uuid a1cc117b-7f3b-4bb4-b799-ffb65a4562a0))
    (pin "4" (uuid 33bf0bea-f116-46e4-85d9-3eaaaf09809d))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 181.61 40.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid be07ae0d-0c18-478d-80e8-bcbab3c4b219)
    (property "Reference" "SKR1C3" (id 0) (at 194.31 36.3093 0))
    (property "Value" "SK6812MINI" (id 1) (at 194.31 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 182.88 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 184.15 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid d6c4e2f8-4ac7-4bf9-aee2-b7782be9059d))
    (pin "2" (uuid db537c3d-34ee-4572-8a9f-007ef5ceb211))
    (pin "3" (uuid 5fa04425-854d-45a8-bb33-e7ac51ccdb09))
    (pin "4" (uuid 73f2d920-41d0-4bcf-8d97-4de03e50aa6e))
  )

  (symbol (lib_id "power:GND") (at 143.51 27.94 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid bff9e2cb-6802-4481-b3af-e6b1793ff61f)
    (property "Reference" "#PWR0129" (id 0) (at 143.51 34.29 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 143.51 33.02 0))
    (property "Footprint" "" (id 2) (at 143.51 27.94 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 143.51 27.94 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ce60a0d7-9319-42df-84ab-af36c473d947))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 135.89 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c797a51f-5eb3-488f-a1e2-1c260b723ed1)
    (property "Reference" "SKR5C6" (id 0) (at 148.59 111.2393 0))
    (property "Value" "SK6812MINI" (id 1) (at 148.59 113.7793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 137.16 123.19 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 138.43 125.095 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 8dd331b5-8e94-4906-8c48-a728682501aa))
    (pin "2" (uuid db311258-da1d-4026-9e08-10ec92a5d3a7))
    (pin "3" (uuid f2ff6583-ebc9-4b9e-a4e7-46edc68443f5))
    (pin "4" (uuid b2b3d5da-544f-410a-bb85-95861b995e93))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 74.93 59.69 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid ca1edcf1-79e0-4375-9c85-feb93ed8817d)
    (property "Reference" "SKR2C10" (id 0) (at 74.93 53.34 0))
    (property "Value" "SK6812MINI" (id 1) (at 74.93 62.23 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 73.66 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 72.39 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 2cfc654d-6052-48bb-b710-49a31f517e4d))
    (pin "2" (uuid a13801c1-01b3-4a7c-801f-152bebb9cf7f))
    (pin "3" (uuid 4d3b88f1-9a89-4eb8-9eca-e058fc8105ef))
    (pin "4" (uuid 864f52a3-4513-4e7c-8165-d7b8f8fa0b36))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 59.69 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid cf9a17f2-439b-4772-8b7b-6b0841fc5185)
    (property "Reference" "SKR4C11" (id 0) (at 59.69 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 59.69 97.79 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 58.42 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 57.15 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid d5f2d64d-df66-4790-86d2-b3f01443435a))
    (pin "2" (uuid 294adab0-4ca3-40c6-9f60-73b5fb0b6d1d))
    (pin "3" (uuid b8b74ed1-3f79-4db2-a73d-efe4ab13cd62))
    (pin "4" (uuid a252e2a7-3c08-416d-9807-aebbcee53acd))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 74.93 40.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid d1502067-f7b7-49f0-92bc-f97c9bed11ec)
    (property "Reference" "SKR1C10" (id 0) (at 74.93 34.29 0))
    (property "Value" "SK6812MINI" (id 1) (at 87.63 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 76.2 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 77.47 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 5a2f33bd-8b1e-4647-82b9-167908ad9c91))
    (pin "2" (uuid 96240248-f7c9-417d-85c4-31b02447f89c))
    (pin "3" (uuid 17f1a58a-8106-4447-9d81-f1b799686bc2))
    (pin "4" (uuid 8ad84913-e63e-477e-87d5-8f6164090448))
  )

  (symbol (lib_id "power:GND") (at 234.95 87.63 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d2cfdf70-2536-4c87-b198-8f44779ab843)
    (property "Reference" "#PWR0127" (id 0) (at 234.95 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 234.95 82.55 0))
    (property "Footprint" "" (id 2) (at 234.95 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 234.95 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 860cfaa2-b8af-45e6-8f11-f3af95f34954))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 212.09 59.69 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d73d8c56-ac9e-4e49-814e-215c866a1bd2)
    (property "Reference" "SKR2C1" (id 0) (at 199.39 64.0207 0))
    (property "Value" "SK6812MINI" (id 1) (at 199.39 61.4807 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 210.82 52.07 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 209.55 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid ab9d8c13-a427-4394-b9a2-7acafb0e4be8))
    (pin "2" (uuid 5aca158e-8172-4882-b914-396bca71599d))
    (pin "3" (uuid c7aea534-9665-44d5-845f-575f99318633))
    (pin "4" (uuid 5c039041-ca20-46ff-929b-a5b7f7526db9))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 120.65 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid d7f5900f-b5d9-4575-bf05-db9b99edf4f4)
    (property "Reference" "SKR3C7" (id 0) (at 120.65 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 133.35 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 121.92 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 123.19 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 05ffb9f0-2715-4e34-8256-9000784917ba))
    (pin "2" (uuid 7b86bf56-1cfb-44a3-8bf8-6cc9b6893a0c))
    (pin "3" (uuid c654f044-d42f-4c5e-8122-98ed66f936dc))
    (pin "4" (uuid 813c233c-c6fa-4e5b-b667-7fb326f08c90))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 97.79 20.32 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid d9b4dc48-ac96-42ec-8d98-b5733f5aae50)
    (property "Reference" "STAT2" (id 0) (at 95.25 13.97 0))
    (property "Value" "~" (id 1) (at 110.49 18.5293 0))
    (property "Footprint" "LED_SMD:LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm" (id 2) (at 99.06 27.94 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 100.33 29.845 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid e748c1be-c268-44b6-9d3d-d39eb4db1884))
    (pin "2" (uuid 49dd2182-fe47-42da-9aef-564c493ba5c7))
    (pin "3" (uuid 7f0aaea2-f71d-4d93-9d39-0793ad892491))
    (pin "4" (uuid 5b3c5201-4ab6-4570-a7c4-6ace30e9857a))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 120.65 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid d9e9690b-5bdd-4a05-a80d-ed95f5c8922e)
    (property "Reference" "SKR4C7" (id 0) (at 120.65 88.9 0))
    (property "Value" "SK6812MINI" (id 1) (at 107.95 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 119.38 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 118.11 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid abd12687-2ba8-4b65-914a-6ff6c3c67040))
    (pin "2" (uuid 10f841b8-935f-48ce-b317-eb6b74775b9f))
    (pin "3" (uuid 0fbb3a79-1001-4830-b36e-5ef303e60bf6))
    (pin "4" (uuid d5fdfd2d-247c-4fe6-8230-e1750914bf27))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 166.37 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid dc3bb96e-aeec-4be4-976d-e1fcb2094571)
    (property "Reference" "SKR3C4" (id 0) (at 166.37 71.12 0))
    (property "Value" "SK6812MINI" (id 1) (at 179.07 75.6793 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 167.64 85.09 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 168.91 86.995 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid 7d2b3667-00ce-4cd8-81da-bbd4b4597d80))
    (pin "2" (uuid 80cc150c-d11e-41c5-b3f2-54259a3dd91d))
    (pin "3" (uuid 97c6d20b-30fd-47a6-a8a8-a5f09975822a))
    (pin "4" (uuid ef0018a9-e016-49eb-a046-dfe2feb64238))
  )

  (symbol (lib_id "Device:C") (at 233.68 60.96 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid dd364f15-d9df-407f-aeb5-3067fb91910f)
    (property "Reference" "C13" (id 0) (at 236.601 59.7916 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "0.1nF" (id 1) (at 236.601 62.103 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 234.6452 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 233.68 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b1b94106-87d2-4421-a297-4acc582f104e))
    (pin "2" (uuid faa9cd02-2329-4292-8454-1895d60dfab9))
  )

  (symbol (lib_id "power:GND") (at 233.68 57.15 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid de12f840-c018-42e2-a535-6c3e41f63c5b)
    (property "Reference" "#PWR04" (id 0) (at 233.68 50.8 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 233.68 52.07 0))
    (property "Footprint" "" (id 2) (at 233.68 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 233.68 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid eedfd24d-d647-40db-8428-89f0061a066f))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 212.09 95.25 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ec4f19d0-7319-4196-bc91-006e0e31b0a5)
    (property "Reference" "SKR4C1" (id 0) (at 199.39 99.5807 0))
    (property "Value" "SK6812MINI" (id 1) (at 199.39 97.0407 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 210.82 87.63 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 209.55 85.725 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid dfa1740f-9e16-41c6-8654-44eee9f8e6f8))
    (pin "2" (uuid 34c8b70d-b84c-4753-8079-a0554098f71d))
    (pin "3" (uuid 9ec7e070-56d6-4842-bb8d-44ef719ae7b8))
    (pin "4" (uuid 4a56b798-db02-486e-8f79-e8374cc7de26))
  )

  (symbol (lib_id "power:GND") (at 247.65 96.52 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f156089d-1626-49a5-91ef-bd14468db22d)
    (property "Reference" "#PWR05" (id 0) (at 247.65 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 247.65 91.44 0))
    (property "Footprint" "" (id 2) (at 247.65 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 247.65 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5b6bb84c-2677-446d-aacb-a3ac20b10814))
  )

  (symbol (lib_id "LED:SK6812MINI") (at 151.13 40.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f9135800-400e-4c0f-b8ef-39cd4c7532ee)
    (property "Reference" "SKR1C5" (id 0) (at 163.83 36.3093 0))
    (property "Value" "SK6812MINI" (id 1) (at 163.83 38.8493 0))
    (property "Footprint" "custom:SK6812Mini-E-BACK-BIS" (id 2) (at 152.4 48.26 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (property "Datasheet" "https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf" (id 3) (at 153.67 50.165 0)
      (effects (font (size 1.27 1.27)) (justify left top) hide)
    )
    (pin "1" (uuid bd911c04-cd5d-4788-a15d-5290befca75a))
    (pin "2" (uuid ce0f022a-3795-45e0-85b1-0f7d8854c50e))
    (pin "3" (uuid 114e478a-a73d-4dc5-8661-499a7f9eb41a))
    (pin "4" (uuid 3aaaa8fd-54ef-440d-ae3e-e95fa6fd8e32))
  )

  (symbol (lib_id "power:GND") (at 34.29 59.69 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fdd76ab2-6ce0-4e2a-845d-11f51f1d0230)
    (property "Reference" "#PWR02" (id 0) (at 34.29 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 34.29 54.61 0))
    (property "Footprint" "" (id 2) (at 34.29 59.69 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 34.29 59.69 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d35600a2-ee28-4b12-879c-ac3644e256d8))
  )
)