File: hackrf-one.kicad_sch

package info (click to toggle)
hackrf 2024.02.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 36,692 kB
  • sloc: ansic: 56,310; xml: 3,424; perl: 2,730; python: 1,427; makefile: 598; asm: 514; vhdl: 319; sh: 179; awk: 20
file content (2290 lines) | stat: -rw-r--r-- 127,056 bytes parent folder | download | duplicates (2)
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
(kicad_sch (version 20211123) (generator eeschema)

  (uuid dba4afc6-760f-46cb-a936-032b76448f03)

  (paper "User" 431.8 279.4)

  (title_block
    (title "${TITLE}")
    (date "${DATE}")
    (rev "${VERSION}")
    (company "${COPYRIGHT}")
    (comment 1 "${LICENSE}")
  )

  (lib_symbols
  )


  (sheet (at 64.77 60.96) (size 26.67 3.81) (fields_autoplaced)
    (stroke (width 0) (type solid) (color 0 0 0 0))
    (fill (color 0 0 0 0.0000))
    (uuid 00000000-0000-0000-0000-00005037043e)
    (property "Sheet name" "mcu/usb/power" (id 0) (at 64.77 60.1214 0)
      (effects (font (size 1.524 1.524)) (justify left bottom))
    )
    (property "Sheet file" "mcu.kicad_sch" (id 1) (at 64.77 65.4562 0)
      (effects (font (size 1.524 1.524)) (justify left top))
    )
  )

  (sheet (at 64.77 72.39) (size 26.67 3.81) (fields_autoplaced)
    (stroke (width 0) (type solid) (color 0 0 0 0))
    (fill (color 0 0 0 0.0000))
    (uuid 00000000-0000-0000-0000-000050370666)
    (property "Sheet name" "baseband" (id 0) (at 64.77 71.5514 0)
      (effects (font (size 1.524 1.524)) (justify left bottom))
    )
    (property "Sheet file" "baseband.kicad_sch" (id 1) (at 64.77 76.8862 0)
      (effects (font (size 1.524 1.524)) (justify left top))
    )
  )

  (sheet (at 64.77 83.82) (size 26.67 3.81) (fields_autoplaced)
    (stroke (width 0) (type solid) (color 0 0 0 0))
    (fill (color 0 0 0 0.0000))
    (uuid 00000000-0000-0000-0000-0000503bb638)
    (property "Sheet name" "frontend" (id 0) (at 64.77 82.9814 0)
      (effects (font (size 1.524 1.524)) (justify left bottom))
    )
    (property "Sheet file" "frontend.kicad_sch" (id 1) (at 64.77 88.3162 0)
      (effects (font (size 1.524 1.524)) (justify left top))
    )
  )

  (sheet_instances
    (path "/" (page "1"))
    (path "/00000000-0000-0000-0000-00005037043e" (page "2"))
    (path "/00000000-0000-0000-0000-000050370666" (page "3"))
    (path "/00000000-0000-0000-0000-0000503bb638" (page "4"))
  )

  (symbol_instances
    (path "/00000000-0000-0000-0000-00005037043e/7f2af6f5-f8f8-44e4-9fd1-7de41d7be1e7"
      (reference "#FLG01") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/72fef865-5e85-4976-a16c-7846e29352aa"
      (reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/879c5289-7d6f-4197-9280-9c6f12590e89"
      (reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/c949a014-5cc4-4fff-9b82-431be2e52c17"
      (reference "#FLG0103") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/8c2124cb-02e6-4598-a567-ba62ecb138cc"
      (reference "#FLG0104") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/dc26470f-6b60-4548-8be1-3855bc888a99"
      (reference "#FLG0105") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/095eb182-6d23-4adb-93c6-94497da1c5e8"
      (reference "#FLG0106") (unit 1) (value "PWR_FLAG") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/48fb53f6-baaa-4b68-9f08-727e36ac8967"
      (reference "#PWR01") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457e6b"
      (reference "#PWR02") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457e69"
      (reference "#PWR03") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/7a2e527a-6be0-4182-83e9-4c743ebe411a"
      (reference "#PWR04") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457cd5"
      (reference "#PWR05") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457c43"
      (reference "#PWR06") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457c40"
      (reference "#PWR07") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457b40"
      (reference "#PWR08") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457b1b"
      (reference "#PWR09") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457b19"
      (reference "#PWR010") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457b06"
      (reference "#PWR011") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000050457b03"
      (reference "#PWR012") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005043cff1"
      (reference "#PWR015") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2d9"
      (reference "#PWR018") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2d8"
      (reference "#PWR019") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e7b4c"
      (reference "#PWR020") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e7a17"
      (reference "#PWR021") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e7a0f"
      (reference "#PWR022") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e79fb"
      (reference "#PWR023") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e79d7"
      (reference "#PWR024") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e798b"
      (reference "#PWR025") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e798a"
      (reference "#PWR026") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e792a"
      (reference "#PWR027") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e7923"
      (reference "#PWR028") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e78e1"
      (reference "#PWR029") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6fed"
      (reference "#PWR030") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6f90"
      (reference "#PWR031") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6f53"
      (reference "#PWR032") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6f0c"
      (reference "#PWR033") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6ede"
      (reference "#PWR034") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6ec5"
      (reference "#PWR035") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6209"
      (reference "#PWR036") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e619a"
      (reference "#PWR037") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6129"
      (reference "#PWR038") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502c6dc4"
      (reference "#PWR039") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502c6dc1"
      (reference "#PWR040") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b5542"
      (reference "#PWR041") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b54a4"
      (reference "#PWR042") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b5428"
      (reference "#PWR043") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b477f"
      (reference "#PWR044") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b477c"
      (reference "#PWR045") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b4778"
      (reference "#PWR046") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f4794"
      (reference "#PWR047") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f4789"
      (reference "#PWR048") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f477c"
      (reference "#PWR049") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f4768"
      (reference "#PWR050") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f46ae"
      (reference "#PWR051") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef7a8"
      (reference "#PWR052") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef65b"
      (reference "#PWR053") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef4a0"
      (reference "#PWR054") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004fb55fac"
      (reference "#PWR055") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004fb52f5a"
      (reference "#PWR056") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004fb3f838"
      (reference "#PWR057") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004fb3cc7b"
      (reference "#PWR058") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece90"
      (reference "#PWR060") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece8f"
      (reference "#PWR061") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece8e"
      (reference "#PWR062") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece8c"
      (reference "#PWR063") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecd9d"
      (reference "#PWR065") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecc8f"
      (reference "#PWR066") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecbe1"
      (reference "#PWR067") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec88e"
      (reference "#PWR069") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec88b"
      (reference "#PWR070") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec785"
      (reference "#PWR071") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa165e"
      (reference "#PWR072") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa142a"
      (reference "#PWR073") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa1424"
      (reference "#PWR074") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa10af"
      (reference "#PWR075") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa1098"
      (reference "#PWR076") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa0c6c"
      (reference "#PWR077") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa08ea"
      (reference "#PWR079") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000527e97de"
      (reference "#PWR080") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005281bf9c"
      (reference "#PWR081") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa054"
      (reference "#PWR083") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa230"
      (reference "#PWR084") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa2a0"
      (reference "#PWR085") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa2ae"
      (reference "#PWR086") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa2bc"
      (reference "#PWR087") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa2ca"
      (reference "#PWR088") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005293fd1b"
      (reference "#PWR089") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052ea1177"
      (reference "#PWR091") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005052a7f1"
      (reference "#PWR092") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000050462548"
      (reference "#PWR093") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005043cef8"
      (reference "#PWR095") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f112490"
      (reference "#PWR0101") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f18a891"
      (reference "#PWR0102") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f18f6f8"
      (reference "#PWR0103") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1935f4"
      (reference "#PWR0104") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f19aca0"
      (reference "#PWR0105") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f19e907"
      (reference "#PWR0106") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f19ef7b"
      (reference "#PWR0107") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1aab4d"
      (reference "#PWR0108") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1b8275"
      (reference "#PWR0109") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1c0f80"
      (reference "#PWR0110") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1c6590"
      (reference "#PWR0111") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1ca1b6"
      (reference "#PWR0112") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1df1eb"
      (reference "#PWR0113") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1dfed4"
      (reference "#PWR0114") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f1fbe2d"
      (reference "#PWR0115") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f239287"
      (reference "#PWR0116") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005043caae"
      (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f24a0f7"
      (reference "#PWR0118") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f266773"
      (reference "#PWR0119") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005037ba69"
      (reference "#PWR0120") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005037b9ff"
      (reference "#PWR0121") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004fa55875"
      (reference "#PWR0122") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005f274687"
      (reference "#PWR0123") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d6c22"
      (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005ff21b41"
      (reference "#PWR0125") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d1728"
      (reference "#PWR0126") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d0f3f"
      (reference "#PWR0127") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d0f39"
      (reference "#PWR0128") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d067a"
      (reference "#PWR0129") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005ff23de5"
      (reference "#PWR0130") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005ff2477e"
      (reference "#PWR0131") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005ff263fd"
      (reference "#PWR0132") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5cd4d5"
      (reference "#PWR0133") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5cd4d4"
      (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5cd4d2"
      (reference "#PWR0135") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5cd4d0"
      (reference "#PWR0136") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5cce80"
      (reference "#PWR0137") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bdba2"
      (reference "#PWR0138") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bdb9b"
      (reference "#PWR0139") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bcca7"
      (reference "#PWR0140") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bcc9f"
      (reference "#PWR0141") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bcb52"
      (reference "#PWR0142") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bcae8"
      (reference "#PWR0143") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bcae2"
      (reference "#PWR0144") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bcadc"
      (reference "#PWR0145") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bcabe"
      (reference "#PWR0146") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc9dd"
      (reference "#PWR0147") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc9d0"
      (reference "#PWR0148") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc9c9"
      (reference "#PWR0149") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc4ae"
      (reference "#PWR0150") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc4ad"
      (reference "#PWR0151") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc4ab"
      (reference "#PWR0152") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc4a9"
      (reference "#PWR0153") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc1b0"
      (reference "#PWR0154") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc191"
      (reference "#PWR0155") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc043"
      (reference "#PWR0156") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbfa9"
      (reference "#PWR0157") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbede"
      (reference "#PWR0158") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbde7"
      (reference "#PWR0159") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbcfd"
      (reference "#PWR0160") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbce6"
      (reference "#PWR0161") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005ff2cfbe"
      (reference "#PWR0162") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005ffd2902"
      (reference "#PWR0163") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006000c78a"
      (reference "#PWR0164") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006000d4ea"
      (reference "#PWR0165") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006000d8a5"
      (reference "#PWR0166") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f276a"
      (reference "#PWR0167") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f2777"
      (reference "#PWR0168") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f2f0f"
      (reference "#PWR0169") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f335f"
      (reference "#PWR0170") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005280780c"
      (reference "#PWR0171") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005280781c"
      (reference "#PWR0172") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281b737"
      (reference "#PWR0173") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c7f1"
      (reference "#PWR0174") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9b3"
      (reference "#PWR0175") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9c1"
      (reference "#PWR0176") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9cf"
      (reference "#PWR0177") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9dd"
      (reference "#PWR0178") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9eb"
      (reference "#PWR0179") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9f9"
      (reference "#PWR0180") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281ca07"
      (reference "#PWR0181") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281cef2"
      (reference "#PWR0182") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281cf00"
      (reference "#PWR0183") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005294232d"
      (reference "#PWR0184") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005294283b"
      (reference "#PWR0185") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052963cd7"
      (reference "#PWR0186") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052aa563d"
      (reference "#PWR0187") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052aa564a"
      (reference "#PWR0188") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005043d25e"
      (reference "#PWR0189") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005043d25a"
      (reference "#PWR0190") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005043c581"
      (reference "#PWR0191") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006001071e"
      (reference "#PWR0192") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005043c554"
      (reference "#PWR0193") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006001224f"
      (reference "#PWR0194") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060012bee"
      (reference "#PWR0195") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503713ea"
      (reference "#PWR0196") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000050370ee5"
      (reference "#PWR0197") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000050370ee4"
      (reference "#PWR0198") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000050370ec9"
      (reference "#PWR0199") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000050370ec7"
      (reference "#PWR0200") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000600132cd"
      (reference "#PWR0201") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060016a8d"
      (reference "#PWR0202") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006005bc6b"
      (reference "#PWR0203") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c274"
      (reference "#PWR0204") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c1e2"
      (reference "#PWR0205") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c1dd"
      (reference "#PWR0206") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c1d8"
      (reference "#PWR0207") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c1a5"
      (reference "#PWR0208") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c11c"
      (reference "#PWR0209") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006005c7d7"
      (reference "#PWR0210") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83af62"
      (reference "#PWR0211") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060093788"
      (reference "#PWR0212") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f837e27"
      (reference "#PWR0213") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8375ea"
      (reference "#PWR0214") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f826461"
      (reference "#PWR0215") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8263ee"
      (reference "#PWR0216") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8263e6"
      (reference "#PWR0217") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8263d9"
      (reference "#PWR0218") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8263c5"
      (reference "#PWR0219") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8263ad"
      (reference "#PWR0220") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060093b6b"
      (reference "#PWR0221") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f825e8a"
      (reference "#PWR0222") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f825e88"
      (reference "#PWR0223") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f825023"
      (reference "#PWR0224") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f824fe5"
      (reference "#PWR0225") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f824a0e"
      (reference "#PWR0226") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060093ec0"
      (reference "#PWR0227") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060095d00"
      (reference "#PWR0228") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f82044e"
      (reference "#PWR0229") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f820439"
      (reference "#PWR0230") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8203e0"
      (reference "#PWR0231") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8203db"
      (reference "#PWR0232") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8202cc"
      (reference "#PWR0233") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8202c7"
      (reference "#PWR0234") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8202c2"
      (reference "#PWR0235") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060096244"
      (reference "#PWR0236") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f81f817"
      (reference "#PWR0237") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f81f7db"
      (reference "#PWR0238") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006009759c"
      (reference "#PWR0239") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060098946"
      (reference "#PWR0240") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000600990f8"
      (reference "#PWR0241") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000601771e4"
      (reference "#PWR0242") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f766c2c"
      (reference "#PWR0243") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f6357ff"
      (reference "#PWR0244") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000060179502"
      (reference "#PWR0245") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006017d0af"
      (reference "#PWR0246") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f62d2f7"
      (reference "#PWR0247") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006018aa4f"
      (reference "#PWR0248") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006018afd1"
      (reference "#PWR0249") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006018c044"
      (reference "#PWR0250") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006018c8bf"
      (reference "#PWR0251") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006018cdfe"
      (reference "#PWR0252") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f62b3fc"
      (reference "#PWR0253") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f629931"
      (reference "#PWR0254") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00006018f17d"
      (reference "#PWR0255") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000601a2868"
      (reference "#PWR0256") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f3d67e9"
      (reference "#PWR0257") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f3db896"
      (reference "#PWR0258") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f3dbc80"
      (reference "#PWR0259") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f3dc08b"
      (reference "#PWR0260") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f3dc78a"
      (reference "#PWR0261") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5e4b20"
      (reference "#PWR0262") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5e6247"
      (reference "#PWR0263") (unit 1) (value "+1V8") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5edcab"
      (reference "#PWR0264") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5fab39"
      (reference "#PWR0265") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5fb38f"
      (reference "#PWR0266") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5fbc03"
      (reference "#PWR0267") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5fd5b3"
      (reference "#PWR0268") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5fde36"
      (reference "#PWR0269") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f5ff5eb"
      (reference "#PWR0270") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f62944a"
      (reference "#PWR0271") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f62943d"
      (reference "#PWR0272") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f629430"
      (reference "#PWR0273") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f629425"
      (reference "#PWR0274") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f629416"
      (reference "#PWR0275") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f6293c1"
      (reference "#PWR0276") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f6293ba"
      (reference "#PWR0277") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005248ff55"
      (reference "#PWR0278") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f6fda27"
      (reference "#PWR0279") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000524910c9"
      (reference "#PWR0280") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000524910cf"
      (reference "#PWR0281") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000526b0bac"
      (reference "#PWR0282") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000526b1ea1"
      (reference "#PWR0283") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f77d36a"
      (reference "#PWR0284") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527add81"
      (reference "#PWR0285") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527b3523"
      (reference "#PWR0286") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527b35e2"
      (reference "#PWR0287") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8043c7"
      (reference "#PWR0288") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527bc94f"
      (reference "#PWR0289") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527bc955"
      (reference "#PWR0290") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527bc961"
      (reference "#PWR0291") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f816aea"
      (reference "#PWR0292") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527dc2ef"
      (reference "#PWR0293") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f81942c"
      (reference "#PWR0294") (unit 1) (value "+1V8") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527f6614"
      (reference "#PWR0295") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527f5351"
      (reference "#PWR0296") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000528023ea"
      (reference "#PWR0297") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052818f8b"
      (reference "#PWR0298") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8998c2"
      (reference "#PWR0299") (unit 1) (value "+1V8") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000528faa17"
      (reference "#PWR0300") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000528fac9b"
      (reference "#PWR0301") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000529402e0"
      (reference "#PWR0302") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052f155d5"
      (reference "#PWR0303") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8a2d4e"
      (reference "#PWR0304") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8a3949"
      (reference "#PWR0305") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8a444f"
      (reference "#PWR0306") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8a8434"
      (reference "#PWR0307") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8a8d5a"
      (reference "#PWR0308") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8a94e5"
      (reference "#PWR0309") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8abd3d"
      (reference "#PWR0310") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8b2b54"
      (reference "#PWR0311") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005f8b3901"
      (reference "#PWR0312") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fa57d45"
      (reference "#PWR0313") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fa58213"
      (reference "#PWR0314") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fadfd00"
      (reference "#PWR0315") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fb62a40"
      (reference "#PWR0316") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fc6bff3"
      (reference "#PWR0317") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fcfa740"
      (reference "#PWR0318") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd008b7"
      (reference "#PWR0319") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd0530d"
      (reference "#PWR0320") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd1ac24"
      (reference "#PWR0321") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd1d468"
      (reference "#PWR0322") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd1dbd3"
      (reference "#PWR0323") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd202cb"
      (reference "#PWR0324") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd206e5"
      (reference "#PWR0325") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd24aa8"
      (reference "#PWR0326") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd2c180"
      (reference "#PWR0327") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005fd2d31c"
      (reference "#PWR0328") (unit 1) (value "+1V8") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/cd407314-1747-44b7-b7f4-cea27f15f9df"
      (reference "#PWR0330") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/dfe66709-2ac5-4f7a-aad7-60309480500e"
      (reference "#PWR0331") (unit 1) (value "VCC") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/ccb0ef7c-df56-430d-8009-beab74cfefee"
      (reference "#PWR0332") (unit 1) (value "+1V8") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005037043e/9419e46f-cef4-46ec-b0f3-09fd6d5ab26c"
      (reference "#PWR0333") (unit 1) (value "VAA") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecb99"
      (reference "C1") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecba0"
      (reference "C2") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecbb6"
      (reference "C3") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecbb5"
      (reference "C4") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecbb9"
      (reference "C5") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecbba"
      (reference "C6") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f4788"
      (reference "C7") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef782"
      (reference "C8") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b53a4"
      (reference "C9") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6efb"
      (reference "C10") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f46a8"
      (reference "C11") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec84d"
      (reference "C12") (unit 1) (value "330pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec853"
      (reference "C13") (unit 1) (value "330pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec8ad"
      (reference "C14") (unit 1) (value "8p2") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec8b0"
      (reference "C15") (unit 1) (value "180pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f4793"
      (reference "C16") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f41bb"
      (reference "C17") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f41b9"
      (reference "C18") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6f8b"
      (reference "C19") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f41bd"
      (reference "C20") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef768"
      (reference "C21") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b4779"
      (reference "C22") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b4c6f"
      (reference "C23") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6f11"
      (reference "C24") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bb2bd"
      (reference "C25") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa149b"
      (reference "C26") (unit 1) (value "47pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef311"
      (reference "C27") (unit 1) (value "47pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b477a"
      (reference "C28") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6fee"
      (reference "C29") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faa0c67"
      (reference "C30") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b56c2"
      (reference "C31") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b571f"
      (reference "C32") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b4780"
      (reference "C33") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece69"
      (reference "C34") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece70"
      (reference "C35") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece73"
      (reference "C36") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece75"
      (reference "C37") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e792b"
      (reference "C38") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e78e2"
      (reference "C39") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e7922"
      (reference "C40") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004fb55fad"
      (reference "C41") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec781"
      (reference "C42") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b5738"
      (reference "C43") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f4169"
      (reference "C44") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6ecb"
      (reference "C45") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b4c15"
      (reference "C46") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f477d"
      (reference "C47") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef6ba"
      (reference "C48") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bb2ce"
      (reference "C49") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528ea90e"
      (reference "C50") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef6a1"
      (reference "C51") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502c6d36"
      (reference "C52") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005054932e"
      (reference "C53") (unit 1) (value "1uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6eb0"
      (reference "C54") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e7a10"
      (reference "C55") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f4769"
      (reference "C56") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e7a16"
      (reference "C57") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528ea8de"
      (reference "C58") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528ea93e"
      (reference "C59") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e79fa"
      (reference "C60") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e6909"
      (reference "C61") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528ea96e"
      (reference "C62") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e79ce"
      (reference "C63") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502c6d4a"
      (reference "C64") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e7989"
      (reference "C65") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e798c"
      (reference "C66") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052901196"
      (reference "C67") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f1cb9"
      (reference "C68") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f1d24"
      (reference "C69") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000529011d6"
      (reference "C70") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49df"
      (reference "C71") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bca4c"
      (reference "C72") (unit 1) (value "2.2uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49f2"
      (reference "C73") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8e66"
      (reference "C74") (unit 1) (value "2.2uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49f4"
      (reference "C75") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8e67"
      (reference "C76") (unit 1) (value "2.2uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49f7"
      (reference "C77") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8e69"
      (reference "C78") (unit 1) (value "2.2uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49f8"
      (reference "C79") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8e6a"
      (reference "C80") (unit 1) (value "2.2uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49fa"
      (reference "C81") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8e6b"
      (reference "C82") (unit 1) (value "2.2uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49fb"
      (reference "C83") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbd0a"
      (reference "C84") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8f4d"
      (reference "C85") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8f4e"
      (reference "C86") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4a38"
      (reference "C87") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4a45"
      (reference "C88") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4a48"
      (reference "C89") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f929c"
      (reference "C90") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4b4a"
      (reference "C91") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4a4a"
      (reference "C92") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4a4b"
      (reference "C93") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8f5d"
      (reference "C94") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8f6c"
      (reference "C95") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8f85"
      (reference "C96") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc9bb"
      (reference "C97") (unit 1) (value "330nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bcce3"
      (reference "C98") (unit 1) (value "330nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f9135"
      (reference "C99") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc9a4"
      (reference "C100") (unit 1) (value "330nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8f8c"
      (reference "C101") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f914f"
      (reference "C102") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8f9c"
      (reference "C103") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bd68e"
      (reference "C104") (unit 1) (value "3pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f888a"
      (reference "C105") (unit 1) (value "10uF") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc172"
      (reference "C106") (unit 1) (value "1uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8fab"
      (reference "C107") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8fb8"
      (reference "C108") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8fba"
      (reference "C109") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8fbb"
      (reference "C110") (unit 1) (value "22pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bd678"
      (reference "C111") (unit 1) (value "3pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c527f"
      (reference "C112") (unit 1) (value "180pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49a8"
      (reference "C113") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc057"
      (reference "C114") (unit 1) (value "3.3nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005290226b"
      (reference "C115") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052902274"
      (reference "C116") (unit 1) (value "47pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005290661d"
      (reference "C118") (unit 1) (value "18pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49af"
      (reference "C119") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49cc"
      (reference "C120") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49cd"
      (reference "C121") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49ce"
      (reference "C122") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c49d3"
      (reference "C123") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f8ea2"
      (reference "C124") (unit 1) (value "2.2uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000505e9e4c"
      (reference "C125") (unit 1) (value "33pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f824fbd"
      (reference "C126") (unit 1) (value "10uF") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f82501f"
      (reference "C127") (unit 1) (value "10uF") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4be3"
      (reference "C128") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c12"
      (reference "C129") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c1c"
      (reference "C130") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c1d"
      (reference "C131") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c1e"
      (reference "C132") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c1f"
      (reference "C133") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c21"
      (reference "C134") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c23"
      (reference "C135") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c24"
      (reference "C136") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c25"
      (reference "C137") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c27"
      (reference "C138") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c28"
      (reference "C139") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c29"
      (reference "C140") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c2a"
      (reference "C141") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c2c"
      (reference "C142") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f820298"
      (reference "C143") (unit 1) (value "10uF") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c30"
      (reference "C144") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f824fc2"
      (reference "C145") (unit 1) (value "10uF") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f824fe4"
      (reference "C146") (unit 1) (value "10uF") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4b67"
      (reference "C147") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c68"
      (reference "C148") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c67"
      (reference "C149") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c65"
      (reference "C150") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c64"
      (reference "C151") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c63"
      (reference "C152") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c62"
      (reference "C153") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4c50"
      (reference "C154") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005294027b"
      (reference "C155") (unit 1) (value "DNP") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4cbc"
      (reference "C156") (unit 1) (value "47pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000050370ed5"
      (reference "C157") (unit 1) (value "18pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005052a211"
      (reference "C158") (unit 1) (value "18pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f2f05"
      (reference "C159") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2db"
      (reference "C160") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2da"
      (reference "C161") (unit 1) (value "1uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2d5"
      (reference "C162") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2cb"
      (reference "C163") (unit 1) (value "10nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000529065ed"
      (reference "C164") (unit 1) (value "18pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f3355"
      (reference "C165") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005281bf94"
      (reference "C166") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281b72f"
      (reference "C167") (unit 1) (value "100nF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052963cca"
      (reference "C168") (unit 1) (value "100pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052aa5602"
      (reference "C169") (unit 1) (value "1.8pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052aa5635"
      (reference "C170") (unit 1) (value "1.8pF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052ea119b"
      (reference "C171") (unit 1) (value "1uF") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004fb3f9b0"
      (reference "D1") (unit 1) (value "GSG-DIODE-TVS-BI") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527dc2e9"
      (reference "D2") (unit 1) (value "VAALED") (footprint "gsg-modules:LTST-S220")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052807816"
      (reference "D3") (unit 1) (value "GSG-DIODE-TVS-BI") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c1df"
      (reference "D4") (unit 1) (value "USBLED") (footprint "gsg-modules:LTST-S220")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c276"
      (reference "D5") (unit 1) (value "RXLED") (footprint "gsg-modules:LTST-S220")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c1a7"
      (reference "D6") (unit 1) (value "TXLED") (footprint "gsg-modules:LTST-S220")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c1d6"
      (reference "D7") (unit 1) (value "VCCLED") (footprint "gsg-modules:LTST-S220")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f83c1e0"
      (reference "D8") (unit 1) (value "1V8LED") (footprint "gsg-modules:LTST-S220")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052807806"
      (reference "D9") (unit 1) (value "GSG-DIODE-TVS-BI") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/c62c921b-cf7e-4f02-9ff2-1e3f2c3200b3"
      (reference "D10") (unit 1) (value "D_Schottky") (footprint "gsg-modules:DSN1006-2")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f766f5e"
      (reference "FB1") (unit 1) (value "FILTER") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f885c"
      (reference "FB2") (unit 1) (value "FILTER") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052ea190b"
      (reference "FB3") (unit 1) (value "FILTER") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f766bdf"
      (reference "J1") (unit 1) (value "USB-MICRO-B") (footprint "hackrf:GSG-USB-MICROB-FCI-10103592-EXT")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000527e97cf"
      (reference "J2") (unit 1) (value "RF-SHIELD-FRAME") (footprint "hackrf:GSG-SHIELD-BMI-S-230")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000527eaa54"
      (reference "J3") (unit 1) (value "RF-SHIELD-COVER") (footprint "")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa040"
      (reference "J4") (unit 1) (value "MOUNTING_HOLE") (footprint "hackrf:GSG-HOLE126MIL-COPPER")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa22a"
      (reference "J5") (unit 1) (value "MOUNTING_HOLE") (footprint "hackrf:GSG-HOLE126MIL-COPPER")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa29a"
      (reference "J6") (unit 1) (value "MOUNTING_HOLE") (footprint "hackrf:GSG-HOLE126MIL-COPPER")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa2a8"
      (reference "J7") (unit 1) (value "MOUNTING_HOLE") (footprint "hackrf:GSG-HOLE126MIL-COPPER")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa2b6"
      (reference "J8") (unit 1) (value "MOUNTING_HOLE") (footprint "hackrf:GSG-HOLE126MIL-COPPER")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528fa2c4"
      (reference "J9") (unit 1) (value "MOUNTING_HOLE") (footprint "hackrf:GSG-HOLE126MIL-COPPER")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005293fd15"
      (reference "J10") (unit 1) (value "GND_CLIP") (footprint "hackrf:GSG-TEST-POINT-S1751-46R")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/caab2717-5792-4f1b-b8d8-8641e9d53859"
      (reference "JP1") (unit 1) (value "Jumper") (footprint "gsg-modules:0603-JUMPER")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502afa8c"
      (reference "L1") (unit 1) (value "DNP") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2a7"
      (reference "L2") (unit 1) (value "10uH") (footprint "hackrf:GSG-0603")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2b7"
      (reference "L3") (unit 1) (value "10uH") (footprint "hackrf:GSG-0603")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004fb55e30"
      (reference "L4") (unit 1) (value "DNP") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502c6d12"
      (reference "L5") (unit 1) (value "10uH") (footprint "hackrf:GSG-0603")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d6aaa"
      (reference "L6") (unit 1) (value "DNP") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbd57"
      (reference "L7") (unit 1) (value "6.2nH") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d6afa"
      (reference "L8") (unit 1) (value "DNP") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d6ad6"
      (reference "L9") (unit 1) (value "DNP") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f820301"
      (reference "L10") (unit 1) (value "4u7") (footprint "hackrf:GSG-NRG4026")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8249e7"
      (reference "L11") (unit 1) (value "4u7") (footprint "hackrf:GSG-NRG4026")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2dc"
      (reference "L12") (unit 1) (value "10uH") (footprint "hackrf:GSG-0603")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052ea1189"
      (reference "L13") (unit 1) (value "10uH") (footprint "hackrf:GSG-0603")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000613dd0b9"
      (reference "NT1") (unit 1) (value "1V8") (footprint "gsg-modules:HEADER-1x2-SHORTED")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00006129887d"
      (reference "NT2") (unit 1) (value "VCC") (footprint "gsg-modules:HEADER-1x2-SHORTED")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000616a11c7"
      (reference "NT3") (unit 1) (value "VAA") (footprint "gsg-modules:HEADER-1x2-SHORTED")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000050462549"
      (reference "P2") (unit 1) (value "CLKOUT") (footprint "hackrf:GSG-SMA-73251-2120")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005043d24d"
      (reference "P3") (unit 1) (value "GND") (footprint "hackrf:GSG-HEADER-NOMARK-1x2")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004f94d0f2"
      (reference "P4") (unit 1) (value "ANTENNA") (footprint "hackrf:GSG-SMA-73251-2120")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000528023db"
      (reference "P5") (unit 1) (value "LEDS") (footprint "hackrf:GSG-HEADER-2x3")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000526b7056"
      (reference "P6") (unit 1) (value "GPO4") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528044d2"
      (reference "P7") (unit 1) (value "GPO2") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005294060f"
      (reference "P9") (unit 1) (value "BASEBAND") (footprint "hackrf:GSG-HEADER-2x8")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528044d9"
      (reference "P13") (unit 1) (value "GPO1") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000050371714"
      (reference "P14") (unit 1) (value "XCVR_CLKOUT") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005037a16f"
      (reference "P15") (unit 1) (value "INTR") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d16d6"
      (reference "P16") (unit 1) (value "CLKIN") (footprint "hackrf:GSG-SMA-73251-2120")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805038"
      (reference "P17") (unit 1) (value "GPO6") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005037a131"
      (reference "P18") (unit 1) (value "OEB") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00005280432b"
      (reference "P19") (unit 1) (value "GPO3") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f838167"
      (reference "P20") (unit 1) (value "GPIO") (footprint "hackrf:GSG-HEADER-2x11")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528044e0"
      (reference "P21") (unit 1) (value "REF_IN") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000526b4073"
      (reference "P22") (unit 1) (value "I2S") (footprint "hackrf:GSG-HEADER-2x13")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005045734c"
      (reference "P23") (unit 1) (value "DBGEN") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005045736f"
      (reference "P24") (unit 1) (value "TRST") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f62d2d3"
      (reference "P25") (unit 1) (value "LPC_ISP") (footprint "hackrf:GSG-HEADER-1x6")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f63572b"
      (reference "P26") (unit 1) (value "LPC_JTAG") (footprint "hackrf:GSG-50MIL-HEADER-2x5-TH")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528054f2"
      (reference "P27") (unit 1) (value "MIXER_SDATA") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f837d97"
      (reference "P28") (unit 1) (value "SD") (footprint "hackrf:GSG-HEADER-2x11")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f82f4c0"
      (reference "P29") (unit 1) (value "CPLD_JTAG") (footprint "hackrf:GSG-HEADER-1x2")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000504571a2"
      (reference "P30") (unit 1) (value "BANK2_AUX") (footprint "hackrf:GSG-HEADER-2x10")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000528054f9"
      (reference "P31") (unit 1) (value "MIXER_SCLK") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805500"
      (reference "P32") (unit 1) (value "MIXER_ENX") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805507"
      (reference "P33") (unit 1) (value "MIXER_RESETX") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c27"
      (reference "P34") (unit 1) (value "MIX_BYPASS") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c2e"
      (reference "P35") (unit 1) (value "!MIX_BYPASS") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005052a309"
      (reference "P37") (unit 1) (value "SCL") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005052a32d"
      (reference "P38") (unit 1) (value "SDA") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005052a332"
      (reference "P39") (unit 1) (value "SSP1_SCK") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005052a336"
      (reference "P40") (unit 1) (value "SSP1_COPI") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005052a335"
      (reference "P41") (unit 1) (value "SSP1_CIPO") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c3c"
      (reference "P43") (unit 1) (value "RX") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c47"
      (reference "P44") (unit 1) (value "HP") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c4e"
      (reference "P45") (unit 1) (value "LP") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c55"
      (reference "P46") (unit 1) (value "TX_MIX_BP") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c5c"
      (reference "P47") (unit 1) (value "RX_MIX_BP") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c67"
      (reference "P48") (unit 1) (value "TX_AMP") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c6e"
      (reference "P49") (unit 1) (value "RX_AMP") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c75"
      (reference "P50") (unit 1) (value "AMP_BYPASS") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c7c"
      (reference "P51") (unit 1) (value "!TX_AMP_PWR") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052805c87"
      (reference "P52") (unit 1) (value "!RX_AMP_PWR") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052806f99"
      (reference "P53") (unit 1) (value "CS_XCVR") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000528076fc"
      (reference "P54") (unit 1) (value "CS_AD") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052806f80"
      (reference "P55") (unit 1) (value "TXENABLE") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052806f87"
      (reference "P56") (unit 1) (value "RXENABLE") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052807566"
      (reference "P57") (unit 1) (value "XTAL2") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052807897"
      (reference "P58") (unit 1) (value "GCK1") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052807889"
      (reference "P59") (unit 1) (value "GCK2") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052807890"
      (reference "P60") (unit 1) (value "SGPIO_CLK") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000528078b5"
      (reference "P61") (unit 1) (value "DA0") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000528078bd"
      (reference "P62") (unit 1) (value "DA7") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000528078a7"
      (reference "P63") (unit 1) (value "DD0") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000528078ae"
      (reference "P64") (unit 1) (value "DD9") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052807c28"
      (reference "P65") (unit 1) (value "DA4") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000052807a95"
      (reference "P66") (unit 1) (value "DD5") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005280a12a"
      (reference "P67") (unit 1) (value "RSSI") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052809276"
      (reference "P68") (unit 1) (value "SPIFI_CS") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052809504"
      (reference "P69") (unit 1) (value "VREGMODE") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052809857"
      (reference "P70") (unit 1) (value "EN_1V8") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052808fe9"
      (reference "P71") (unit 1) (value "ID") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052808cbf"
      (reference "P72") (unit 1) (value "GP_CLKIN") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052809b46"
      (reference "P73") (unit 1) (value "P1_2") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052809ba9"
      (reference "P74") (unit 1) (value "P1_1") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005280a7b0"
      (reference "P75") (unit 1) (value "SGPIO0") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005280acad"
      (reference "P76") (unit 1) (value "SGPIO7") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005280acb7"
      (reference "P77") (unit 1) (value "SGPIO9") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005280acc0"
      (reference "P78") (unit 1) (value "SGPIO10") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005280accc"
      (reference "P79") (unit 1) (value "SGPIO11") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000528064fc"
      (reference "P80") (unit 1) (value "SHIELD") (footprint "hackrf:GSG-HEADER-NOMARK-1x2")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052808621"
      (reference "P81") (unit 1) (value "SPIFI_SIO2") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052808dc0"
      (reference "P82") (unit 1) (value "SPIFI_SIO3") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c7e9"
      (reference "P83") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9ad"
      (reference "P84") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9bb"
      (reference "P85") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9c9"
      (reference "P86") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9d7"
      (reference "P87") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9e5"
      (reference "P88") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281c9f3"
      (reference "P89") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281ca01"
      (reference "P90") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281ceec"
      (reference "P91") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005281cefa"
      (reference "P92") (unit 1) (value "GND") (footprint "hackrf:GSG-TESTPOINT-50MIL")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502e69d1"
      (reference "Q1") (unit 1) (value "MOSFET_P") (footprint "gsg-modules:SOT23-3")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2d7"
      (reference "Q2") (unit 1) (value "MOSFET_P") (footprint "gsg-modules:SOT23-3")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000526af6d0"
      (reference "Q3") (unit 1) (value "MOSFET_P") (footprint "gsg-modules:SOT23-3")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052ea11b0"
      (reference "Q4") (unit 1) (value "MOSFET_P") (footprint "gsg-modules:SOT23-3")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052f14fdb"
      (reference "Q5") (unit 1) (value "MOSFET_P") (footprint "gsg-modules:SOT23-3")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec850"
      (reference "R1") (unit 1) (value "470") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec856"
      (reference "R2") (unit 1) (value "470") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faec8b2"
      (reference "R3") (unit 1) (value "22k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecc79"
      (reference "R4") (unit 1) (value "51k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faece50"
      (reference "R5") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004faecfae"
      (reference "R6") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000504786e0"
      (reference "R7") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc2e1"
      (reference "R8") (unit 1) (value "1k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f977a"
      (reference "R9") (unit 1) (value "1k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f977b"
      (reference "R10") (unit 1) (value "1k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000526af8e4"
      (reference "R11") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000526bfd36"
      (reference "R12") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f977d"
      (reference "R13") (unit 1) (value "1k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4fa7"
      (reference "R14") (unit 1) (value "4k7") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4fc6"
      (reference "R15") (unit 1) (value "4k7") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4fc7"
      (reference "R16") (unit 1) (value "4k7") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4fc8"
      (reference "R17") (unit 1) (value "4k7") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000529905c9"
      (reference "R18") (unit 1) (value "1k8") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527ef888"
      (reference "R19") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d68e5"
      (reference "R20") (unit 1) (value "0") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f9c76"
      (reference "R21") (unit 1) (value "0") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f9c78"
      (reference "R22") (unit 1) (value "0") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503f9c7c"
      (reference "R23") (unit 1) (value "0") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503c490b"
      (reference "R24") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc059"
      (reference "R25") (unit 1) (value "475") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bc065"
      (reference "R26") (unit 1) (value "475") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d0602"
      (reference "R27") (unit 1) (value "1k8") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000050549522"
      (reference "R28") (unit 1) (value "1k8") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503c48ed"
      (reference "R29") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527f0529"
      (reference "R30") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000528ed054"
      (reference "R31") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000528ed034"
      (reference "R32") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000527f334b"
      (reference "R33") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000528ff14a"
      (reference "R34") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005294026c"
      (reference "R35") (unit 1) (value "DNP") (footprint "hackrf:GSG-0805")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-000052ea1180"
      (reference "R36") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052f14ffa"
      (reference "R37") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/d22a6812-c531-4af1-b965-8c628d51ed77"
      (reference "R38") (unit 1) (value "15.4k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/0e34305b-44dc-42c6-9922-4baa02c77619"
      (reference "R39") (unit 1) (value "330k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4abc"
      (reference "R41") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/cfb0d460-f9cc-47c1-8edd-3d7ac95be066"
      (reference "R42") (unit 1) (value "18") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/5758ade7-aa6a-437b-84ed-074444da8cbd"
      (reference "R43") (unit 1) (value "18") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f8429"
      (reference "R46") (unit 1) (value "162k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8203ad"
      (reference "R47") (unit 1) (value "330k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9989"
      (reference "R48") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f999f"
      (reference "R49") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f99f3"
      (reference "R51") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9a07"
      (reference "R52") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9a10"
      (reference "R54") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8203d0"
      (reference "R55") (unit 1) (value "162k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8203a7"
      (reference "R56") (unit 1) (value "715k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052f18af9"
      (reference "R57") (unit 1) (value "0") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052f18b02"
      (reference "R58") (unit 1) (value "0") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9a36"
      (reference "R59") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527f56e9"
      (reference "R62") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f996a"
      (reference "R63") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f997a"
      (reference "R64") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000527f56f2"
      (reference "R65") (unit 1) (value "18k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f997b"
      (reference "R66") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c4eca"
      (reference "R67") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9945"
      (reference "R68") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f62b3e5"
      (reference "R69") (unit 1) (value "12k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c519a"
      (reference "R72") (unit 1) (value "470") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005298fba8"
      (reference "R73") (unit 1) (value "1k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005299055b"
      (reference "R74") (unit 1) (value "1k8") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503c51a8"
      (reference "R75") (unit 1) (value "470") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005298fc35"
      (reference "R76") (unit 1) (value "1k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f983e"
      (reference "R77") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9856"
      (reference "R78") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9858"
      (reference "R79") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f985a"
      (reference "R80") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f985b"
      (reference "R81") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00005052a7d7"
      (reference "R85") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9874"
      (reference "R86") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9875"
      (reference "R87") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9878"
      (reference "R88") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9879"
      (reference "R89") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f987b"
      (reference "R90") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9897"
      (reference "R91") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f9958"
      (reference "R93") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-000050c136db"
      (reference "R94") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f989e"
      (reference "R96") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f98ac"
      (reference "R98") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f98ad"
      (reference "R99") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000503f98af"
      (reference "R100") (unit 1) (value "39") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4ac5"
      (reference "R104") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-0000503c4ab0"
      (reference "R105") (unit 1) (value "10k") (footprint "hackrf:GSG-0402")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005248e27d"
      (reference "SW1") (unit 1) (value "DFU") (footprint "hackrf:GSG-SWITCH-FSMRA")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00005248ff4f"
      (reference "SW2") (unit 1) (value "RESET") (footprint "hackrf:GSG-SWITCH-FSMRA")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef483"
      (reference "T1") (unit 1) (value "MIX_IN_BALUN") (footprint "hackrf:GSG-B0310J50100AHF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef4a4"
      (reference "T2") (unit 1) (value "MIX_OUT_BALUN") (footprint "hackrf:GSG-B0310J50100AHF")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bdb90"
      (reference "T3") (unit 1) (value "RX_BALUN") (footprint "hackrf:GSG-2500BL14M100")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bdc0f"
      (reference "T4") (unit 1) (value "TX_BALUN") (footprint "hackrf:GSG-2500BL14M100")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef778"
      (reference "U1") (unit 1) (value "SKY13453") (footprint "gsg-modules:SKY13350-385LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b490f"
      (reference "U2") (unit 1) (value "SKY13453") (footprint "gsg-modules:SKY13350-385LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004f94d561"
      (reference "U3") (unit 1) (value "LOWPASS_FILTER") (footprint "hackrf:GSG-LP0603")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502be21c"
      (reference "U4") (unit 1) (value "RFFC5072") (footprint "hackrf:GSG-QFN32")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501f3b20"
      (reference "U5") (unit 1) (value "SKY13453") (footprint "gsg-modules:SKY13350-385LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef258"
      (reference "U6") (unit 1) (value "SKY13453") (footprint "gsg-modules:SKY13350-385LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b477e"
      (reference "U7") (unit 1) (value "SKY13453") (footprint "gsg-modules:SKY13350-385LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-00004f94d4f4"
      (reference "U8") (unit 1) (value "HIGHPASS_FILTER") (footprint "hackrf:GSG-HP-DEA")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b5704"
      (reference "U9") (unit 1) (value "SKY13317") (footprint "hackrf:GSG-SKY13317-373LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502b4c1c"
      (reference "U10") (unit 1) (value "SKY13453") (footprint "gsg-modules:SKY13350-385LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000501ef646"
      (reference "U11") (unit 1) (value "SKY13453") (footprint "gsg-modules:SKY13350-385LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502c6bdf"
      (reference "U12") (unit 1) (value "SKY13317") (footprint "hackrf:GSG-SKY13317-373LF")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502de480"
      (reference "U13") (unit 1) (value "MGA-81563") (footprint "hackrf:GSG-SOT363")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000502c6be2"
      (reference "U14") (unit 1) (value "SKY13317") (footprint "hackrf:GSG-SKY13317-373LF")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-0000528007f8"
      (reference "U15") (unit 1) (value "TVS") (footprint "hackrf:GSG-LXES1TBCC2-004")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbc9d"
      (reference "U17") (unit 1) (value "MAX2837") (footprint "hackrf:GSG-QFN48-6")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5bbca6"
      (reference "U18") (unit 1) (value "MAX5864") (footprint "hackrf:GSG-QFN48-7")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d0564"
      (reference "U19") (unit 1) (value "SI5351C") (footprint "hackrf:GSG-QFN20-4")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f825d1b"
      (reference "U20") (unit 1) (value "W25Q80") (footprint "hackrf:GSG-SOIC8-208")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f8201bf"
      (reference "U21") (unit 1) (value "TPS62410") (footprint "hackrf:GSG-S-PVSON-N10")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f6291fc"
      (reference "U23") (unit 1) (value "LPC4320FBD144") (footprint "hackrf:GSG-LQFP144")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-00004f7a3924"
      (reference "U24") (unit 1) (value "GSG-XC2C64A-7VQG100C") (footprint "hackrf:GSG-VQ100")
    )
    (path "/00000000-0000-0000-0000-0000503bb638/00000000-0000-0000-0000-0000503bf2dd"
      (reference "U25") (unit 1) (value "MGA-81563") (footprint "hackrf:GSG-SOT363")
    )
    (path "/00000000-0000-0000-0000-000050370666/00000000-0000-0000-0000-00004f5d0b05"
      (reference "X1") (unit 1) (value "MAIN_XTAL") (footprint "hackrf:GSG-XTAL3.2x2.5mm")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000050370e89"
      (reference "X2") (unit 1) (value "MCU_XTAL") (footprint "hackrf:GSG-XTAL3.2x2.5mm")
    )
    (path "/00000000-0000-0000-0000-00005037043e/00000000-0000-0000-0000-000052490bb4"
      (reference "X3") (unit 1) (value "RTC_XTAL") (footprint "hackrf:GSG-XTAL-AB26TRQ")
    )
  )
)