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

  (general
    (thickness 1.6)
  )

  (paper "A4")
  (layers
    (0 "F.Cu" signal)
    (31 "B.Cu" signal)
    (32 "B.Adhes" user "B.Adhesive")
    (33 "F.Adhes" user "F.Adhesive")
    (34 "B.Paste" user)
    (35 "F.Paste" user)
    (36 "B.SilkS" user "B.Silkscreen")
    (37 "F.SilkS" user "F.Silkscreen")
    (38 "B.Mask" user)
    (39 "F.Mask" user)
    (40 "Dwgs.User" user "User.Drawings")
    (41 "Cmts.User" user "User.Comments")
    (42 "Eco1.User" user "User.Eco1")
    (43 "Eco2.User" user "User.Eco2")
    (44 "Edge.Cuts" user)
    (45 "Margin" user)
    (46 "B.CrtYd" user "B.Courtyard")
    (47 "F.CrtYd" user "F.Courtyard")
    (48 "B.Fab" user)
    (49 "F.Fab" user)
  )

  (setup
    (grid_origin 150 100)
    (pcbplotparams
      (layerselection 0x00010fc_ffffffff)
      (usegerberextensions false)
      (usegerberattributes true)
      (usegerberadvancedattributes true)
      (creategerberjobfile true)
      (svguseinch false)
      (svgprecision 6)
      (excludeedgelayer true)
      (linewidth 0.100000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15.000000)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (sketchpadsonfab false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 0)
      (scaleselection 1)
      (outputdirectory "gerber")
    )
  )


  (net 0 "")

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp 073950fb-9912-412a-a4c5-b695af34aa09)
    (at 176.67 97.46)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 537092a1-ef57-4a1b-98e5-5cdaa00d6aea)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c8fe54ec-e405-4327-a56c-1f4012666950)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 244ab6e5-ec52-4a40-94e2-84771f88d8cf))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 49c5c476-2ebb-4e5e-b3cc-c4dac0edeea0))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 732a6221-3e40-4b5e-8b38-7f682384b8f5))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bbf15b28-2d96-40c5-a9c4-1da182a68e8b))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp def189b7-6832-484d-aad2-883202bb6648))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 041e1de3-378f-4323-b09a-39f2865ed5c4))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 423e2467-1cd6-4643-9226-b63ce5cab4b3))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bae52f33-f654-4115-be46-d334affc4d4b))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c1b8bb04-b94a-4160-abc5-47b95aeaf941))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e2a106f7-5a25-48e6-bcd4-63259d1c0a20))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 639e674b-cff1-4570-b733-eb0c1ca9f25a))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 84740c4f-b053-4184-9a17-285a74077ac3))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8f3fa5f5-9963-45e9-b7ea-35a5285ce753))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b0ec5326-104e-4a98-9a7f-212231f26aa3))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fd721952-45ac-4d91-b159-289af948dd00))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 25f7e194-2d40-4cd4-9f76-e2e992e260c7))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5c4dc492-3463-4850-8a48-126cd92dabee))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6e858840-6300-4485-913d-771dce35ef3a))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a6a29f21-e51d-4308-b7d0-4ed3e057f34b))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cab90334-401f-40ee-a385-07a21c3ee4ce))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3c6f9361-d735-4694-8f29-e2d43411ecf5))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 59200a86-4d20-406c-a71b-d7f3dc777849))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a37ef052-6b25-497a-a115-abdf57d96544))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3ab9ec5-e615-4245-ba8d-3206d9a247a6))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c807bafa-8d06-4bf7-bab2-c7ba0768b658))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp 1330de8e-9c6e-4ea4-b623-bf21ce262705)
    (at 163.97 103.81)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5c3bf7fe-d7e5-4c4f-a31f-952a079cc99c)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4e54ede3-b27c-4ff8-b25b-000a8960dc06)
    )
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 36075280-e04e-4521-b7ff-02b3bc100a98))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5b4e36e0-b89c-4ad9-979a-fd013c691409))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8698b1a2-66bb-49a3-ad7c-d8be99e8e3cf))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ec9537bb-792b-4fb7-abe4-86cbf53e599e))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp faa096c4-e085-4a2f-9af8-bf481fb6f342))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45bcb10c-5d08-49ea-b807-e5bdbf80cdbd))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 68fd2d6d-8ada-4f90-98fe-0afd5e80734b))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8539d513-16eb-4096-91ad-dfaa4bff4095))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cfe6088b-185f-499c-bfb3-352b8c5bcafe))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fb3f03d4-41b7-4c62-911e-d361ba22293c))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 11134faa-5976-4f15-9aed-c488ad67bc6c))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 754e112f-e80e-4283-9be3-7b9787835939))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 80021818-65ef-4b9b-92d1-00fd52339ff7))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b359a476-c2f0-42f4-9f94-411ad21cb275))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d71cf9d1-65c6-432b-be48-768b1851d11d))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 03c1d5c6-613d-442a-a222-8c3b3596a8f8))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a8f6b9f-86af-4621-94b6-f37eac9c0bb5))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4c003f32-77cc-4021-8a2b-669efddf41ec))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e078a34c-40bf-4a7a-9967-9421c2d12cbd))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1037b22-4807-42ac-84ce-36f3463ac95a))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3d5b7434-4197-4507-a084-30e745832777))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5da70879-a937-4769-8be4-489b82e0b47b))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7e8bf87b-646d-45e9-9f30-037c24b95bda))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a25eee90-9ade-4de7-8d9b-545874d49929))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c07daa0d-625a-4883-977d-af9e19870077))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp 15402474-7a5c-4969-86c8-3bae548338c0)
    (at 181.75 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0228f32d-a311-474b-bca0-3cab8cd6af5a)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d67e7b79-014b-4ddd-b73b-478734b96f15)
    )
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 50fe1bae-80e0-4865-88ab-6186f422f9c1))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 608265c6-635f-4ffe-beb8-fa6683fec041))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 622d9a53-cf55-4b42-a336-9ff81289106a))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 992fb9d8-55e0-47b4-8f8f-1e5abeba7ebc))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bb82b07c-9a8d-45b7-b355-145a02b6ab81))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5ba1ce2b-3bc0-4791-bbc8-6fbd5f71305b))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6f42456c-c456-4bbd-ab54-ec9cf9468508))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7878f057-8e87-4d44-99c6-72eb28c51e49))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b7c76ff6-b671-4596-932f-156409bfd894))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e4dc07d3-51bf-424e-8fe7-521b3d8a92d2))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 10623c43-3191-4d33-8e15-259a76a9eb1d))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5498276d-a623-4ec6-a927-d32bf709be6d))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 879e6087-cc71-448a-8ea9-b5acddfe2ab6))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e119bf55-11cd-486e-9600-6053f1f1f8e5))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e70540ea-8281-4c75-a32f-f431ceeb72c6))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1b985ef4-db65-452d-8533-37e1febac7d3))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 33f5788c-a23f-44c3-bf03-8855918e8d6f))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 46671345-6941-4e12-b80c-29174b77419d))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7859d567-e8c6-490a-9761-5bdac41a568d))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f2769f99-4d65-49e2-93f9-febe5be202a0))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 38888a6b-e477-4491-9188-e76de5ff749e))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e4d82e4-0c50-4ddd-9992-687ce18a67d5))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b67f0781-cb9f-4f6f-85cd-0767dc1c064c))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c0b39903-4488-47cc-b0e6-195ef017b291))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ca501b28-9a92-4d2b-9b5a-af2d621265b9))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "F.Cu") (tedit 5F85D7D7) (tstamp 1560403d-c87d-4f18-b16f-69015b6ecd2e)
    (at 133.49 105.08)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 15f15034-b86c-43b3-8204-7fa75ed19948)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 1 unlocked) (layer "F.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a242358a-f311-46cb-8f92-7f6c56e90ce0)
    )
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 243945e6-dd93-45f1-b878-65e93702a005))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 30692f9b-5951-48b2-a163-570a31219221))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 57b566e4-9351-4b26-a0b9-1cd781589deb))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8e40e548-8016-4b8d-9025-98fc6f73dc92))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a276c111-298c-4905-ac64-a4d725605de1))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 38daad72-7a34-46ef-8f36-6236241c34ab))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 44eddbc3-43a4-4002-b8e3-ecca774cbc34))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 678332c4-354c-4413-9169-5a72945e8a85))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 75f89bfb-7db5-44b9-9325-78dab88e2ea5))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp de23c5da-98a4-4118-ad66-8f7471b30669))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4c0179ef-41f5-444f-aefa-46fddb04280f))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 75392963-10f0-4b6a-899a-20bb996b3620))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a4dc3476-b3bd-4ff3-bf7a-9bf3cf11a60b))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c9e96a95-2cbe-4c6d-a16b-e83cc9212838))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d90aee1b-eebb-4a9f-9d7c-deaecf6f0f95))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d9cab83-9484-41e4-8391-3f4e8ccb9244))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3ca32dcd-5e4d-4c52-bab6-8aaa9f06aec1))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b5050da9-c5ed-4e6a-b8a3-45d3a158364b))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c4b8a2cb-b413-4da4-a559-adeace3c6310))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cb61b6dd-a232-4342-8cd0-c08555492030))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3d734f82-d4ce-4df1-80e4-08198806c7e1))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9dc6d69d-6091-4862-8477-1894d757c6ab))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b05b1b74-799f-4863-b720-d1168dfe916a))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b9a50dcc-3329-4183-8541-90ea18a7f08d))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd38e60c-5b2c-4358-8462-f4c494ad4b2d))
  )

  (module "common_footprints:8mm_base" (layer "F.Cu") (tedit 5F85D835) (tstamp 29f86daa-5218-49c7-a59e-8aae0ede4016)
    (at 111.3 100 -90)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 -90 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fc29384e-53e7-438d-a833-1e66445bf297)
    )
    (fp_text value "8mm_base" (at 0 1 -90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ecfc3b9c-327f-42b3-9f84-ba4bc6e36676)
    )
    (fp_line (start 7.5 0.8) (end 7.5 -0.8) (layer "F.SilkS") (width 0.1) (tstamp 0bda8958-419d-4b18-b708-a49285cbd4d6))
    (fp_line (start -7.5 0.8) (end -6.3 0.8) (layer "F.SilkS") (width 0.1) (tstamp 8e89b9ff-8a04-4295-b111-2f7c10afbf89))
    (fp_line (start -6.3 -0.8) (end -7.5 -0.8) (layer "F.SilkS") (width 0.1) (tstamp 9adb197b-ffd8-45d6-b01d-7bd04c1d7114))
    (fp_line (start -7.5 -0.8) (end -7.5 0.8) (layer "F.SilkS") (width 0.1) (tstamp c3501337-6b1f-4888-835b-9892ea0463e6))
    (fp_line (start 6.3 0.8) (end 7.5 0.8) (layer "F.SilkS") (width 0.1) (tstamp dff205ed-08d9-417e-8707-f549e760aa32))
    (fp_line (start 7.5 -0.8) (end 6.3 -0.8) (layer "F.SilkS") (width 0.1) (tstamp ff88ec9b-2f44-448e-aa8c-52b4f325de92))
    (fp_rect (start -4 0.8) (end 4 -0.8) (layer "Dwgs.User") (width 0.1) (tstamp 1cc08dd2-615d-4b1f-93c5-dfe045a0028c))
    (pad "1" smd rect (at -5 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 71c31a4d-6713-43f2-a1db-3e796b491cd5))
    (pad "2" smd rect (at -2.5 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 00e8a514-ee38-4250-9b35-f0bac1aea7a8))
    (pad "3" smd rect (at 0 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 486175b3-aaa5-41b9-922b-12b61b91a8b0))
    (pad "4" smd rect (at 2.5 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp d056ab34-81f6-4e51-85da-09f1c6661090))
    (pad "5" smd rect (at 5 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 0e848a09-9474-4cc7-b5c5-c9517a9a990b))
    (pad "6" smd rect (at 5 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp c8d06269-4362-4279-9fd8-628a7fc4e15e))
    (pad "7" smd rect (at 2.5 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 6b26cde8-e9ab-4777-9018-05c68d27be1a))
    (pad "8" smd rect (at 0 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp dd02230f-7d49-4876-ab53-50ceacd01bfc))
    (pad "9" smd rect (at -2.5 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 6f161214-7b77-48dc-a9b4-9415a2655ef4))
    (pad "10" smd rect (at -5 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 94067848-60e4-45aa-bb3f-0335fe358436))
    (pad "11" smd rect (at -2.5 1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp cb3ed98a-9090-499f-a8cb-980776ca56df))
    (pad "12" smd rect (at 0 1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 4e50081f-4cf9-4b55-aa0d-79c5925efce4))
    (pad "13" smd rect (at 2.5 1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp efd7d6d7-ed92-412c-8545-d61fe7e98f3b))
    (pad "14" smd rect (at 2.5 -1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp d1615344-d8bd-489e-abd6-93032ece15ed))
    (pad "15" smd rect (at 0 -1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp b89d1f4c-09bd-4ae3-806d-c19646c68649))
    (pad "16" smd rect (at -2.5 -1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp de9dd501-2690-4afd-82b4-e20bc6815d4d))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp 2c5db827-6f8a-4ea0-b5c5-972a431ffbec)
    (at 170.32 103.81)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b2a8c42e-301a-47ad-9b86-cae5542a8a85)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4f174acd-6189-478f-899a-f1cf321978aa)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0aa8b68e-7328-4835-97bb-627ed62d4bb2))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6f3060ed-27b6-4a07-9d09-50ba89084e46))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 93b78456-a78e-4deb-961d-af7003a71bc9))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b8984666-4cae-4534-8138-9a7f6f116344))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ff7729b9-e728-4dbe-96fd-3a328c3e0431))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 453c8cd2-f5ad-48e0-aa90-3c269c479c42))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 65af4042-15bc-47bb-9f7c-6e1ece45ed96))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 68c8ab79-2b13-46a4-8832-f4ae7aee5f99))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d28b601a-02d7-473f-af17-c3ae63bba8a7))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp de0fb8cb-717a-4832-b436-e7c5c1deadb4))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3354bcd9-d769-4182-aeb5-e293f30406fb))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 535851ab-546a-497b-89a7-47e3bd64b8e7))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5c1573be-1df4-4b14-9c00-396351b98b39))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 99dac184-a9de-4813-aad5-0ed882735964))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc4118eb-f5f8-471f-8083-541818a1254d))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d87125b-83bd-484d-a030-f13942d755e0))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 327e71f6-1be9-4df0-bfa0-ceae331a1e23))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3f5da789-685f-47f3-8744-60f66a123f1f))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6dddeb52-1570-4cd1-b216-98330ba43186))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7242a763-89e2-49d6-bf02-6cb03837fe44))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1b65c122-837c-4109-bfd6-9d724324c1a2))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 684ae1eb-8f6f-4387-9823-6820ec153455))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp be310dae-5b4e-43a1-a8a7-7e7964de748e))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dfda1517-c79f-409c-96ea-b4292d119192))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f72aca4c-0efb-42c3-967e-9e1c85f31831))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp 2e124a51-0e95-440f-b46c-8edc0ae38543)
    (at 170.32 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 529e72cc-d5e7-453f-ae7c-70f517e9dc95)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 01566c81-1feb-47e0-a3e8-af8b2add9d11)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4e00e3f1-751d-407a-aff1-150180705f03))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp abf2b124-410a-4842-9e81-4b5e6d60b0bc))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b04fa38f-9d55-4390-bb35-b9cd715e57d7))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc3aba46-e0fc-49ab-a8f9-78c6d111117e))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f296d43e-fc59-4353-a3f2-47146d71aa3c))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d85a343-1df8-4053-bbef-1b0d30522d73))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9d29252a-5f7e-4244-8096-5dee02030324))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a951c3e7-030e-4ab9-8384-d17fd8222a43))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bac351b2-f88e-44bb-a351-09e326669cca))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e3b710fa-91e9-4e53-ae9b-2082470946d5))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 784df581-e238-4472-ba5c-b82d001b38c0))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 80f33936-b3c5-4dbd-be6b-5a14af9542fc))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8559d5a2-a5af-48f5-88d9-035dc1b44ab4))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8623fa8a-9bd9-440b-9d8e-0072e0dda140))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c1cb0b89-5c27-4031-bc21-295576c3809b))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0cbfe244-2264-4e7d-ae49-22a9e34624e0))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3ba85d0b-3cb2-47c8-9fab-601902512491))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 787d766c-d3ee-4de3-85bb-b421326b0a25))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a9f58cb9-518a-4b77-aef4-5a97530b1265))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c831c0af-b225-454b-9e2e-2f3a7165eb37))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0c7b7465-ea40-4424-b207-c7a1c058b51b))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2e30528c-cb90-4616-ab7e-b9ee962df639))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4b405494-d0b5-4eac-87b8-df102e380e88))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 90c64f66-5b8b-42b1-afa6-ff7be399f8a8))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0ffc87a-41ad-459d-91ac-9f402ce9f981))
  )

  (module "common_footprints:8mm_base" (layer "F.Cu") (tedit 5F85D835) (tstamp 5224b49a-a946-47a2-a624-ef50b86544b8)
    (at 188.7 100 90)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 90 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 381d850c-b20d-45e0-bf7a-b086ce12af69)
    )
    (fp_text value "8mm_base" (at 0 1 90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 104295f9-3727-4b71-9656-3ec17e76ed06)
    )
    (fp_line (start 7.5 -0.8) (end 6.3 -0.8) (layer "F.SilkS") (width 0.1) (tstamp 3c5b6c97-12cb-4976-b2d0-a235045b7390))
    (fp_line (start -6.3 -0.8) (end -7.5 -0.8) (layer "F.SilkS") (width 0.1) (tstamp 8e3721a7-7ed0-4bc3-913a-582a36fdf30d))
    (fp_line (start -7.5 0.8) (end -6.3 0.8) (layer "F.SilkS") (width 0.1) (tstamp 933851aa-0acf-4822-9e47-48161c5c8bed))
    (fp_line (start 7.5 0.8) (end 7.5 -0.8) (layer "F.SilkS") (width 0.1) (tstamp 94a2a514-401e-4825-9142-80c6154c95ec))
    (fp_line (start -7.5 -0.8) (end -7.5 0.8) (layer "F.SilkS") (width 0.1) (tstamp c3ff0568-519c-4340-b545-cf7eaf14a816))
    (fp_line (start 6.3 0.8) (end 7.5 0.8) (layer "F.SilkS") (width 0.1) (tstamp c6eb9039-1718-45ad-946f-79f0d16d430d))
    (fp_rect (start -4 0.8) (end 4 -0.8) (layer "Dwgs.User") (width 0.1) (tstamp f767a78d-243d-442e-9a0e-a8df33838247))
    (pad "1" smd rect (at -5 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 690c1f6a-7492-4844-83c3-d75223fe8ce3))
    (pad "2" smd rect (at -2.5 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 1aad9437-3be0-42ad-863b-aa91d3aab032))
    (pad "3" smd rect (at 0 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 6820d213-80c0-436a-9182-6e129a35af03))
    (pad "4" smd rect (at 2.5 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp eeb6b18a-00a4-423f-baf7-b8b953564086))
    (pad "5" smd rect (at 5 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 20e724ca-aeb6-4bd3-9348-d9d725e893a3))
    (pad "6" smd rect (at 5 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp bdf73f1d-c985-42ec-9e8e-0e22dbc2ddca))
    (pad "7" smd rect (at 2.5 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp c812cfcf-805f-4ee2-85e5-06a0dc205756))
    (pad "8" smd rect (at 0 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 101f5704-d4d0-478e-9093-74a643abea03))
    (pad "9" smd rect (at -2.5 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 0c1de8a7-98a6-45f0-875b-67e7332a3c9e))
    (pad "10" smd rect (at -5 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 7be52811-0a25-4b32-b87d-aafd4e98f148))
    (pad "11" smd rect (at -2.5 1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 127bf525-c9c8-426a-af11-33c7dd0f2fec))
    (pad "12" smd rect (at 0 1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 1a379c74-ccac-4a1a-8e49-bbde3ed7b8b8))
    (pad "13" smd rect (at 2.5 1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp a01b453d-8460-4190-8a5f-02744c28c156))
    (pad "14" smd rect (at 2.5 -1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp d8625aa6-c4f5-4210-bb6a-d0aed6b23070))
    (pad "15" smd rect (at 0 -1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp ade0dd09-2b64-4dfd-850e-ebad9359ecd4))
    (pad "16" smd rect (at -2.5 -1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 33f06c79-32e4-4c51-937e-9d317e599160))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "F.Cu") (tedit 5F85D7D7) (tstamp 60abde2a-b5a2-4744-964b-9b22a6533050)
    (at 123.33 94.92)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a3e1aa79-6834-45dc-b1b7-70b12aea038c)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 1 unlocked) (layer "F.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7e40e1e3-760d-490e-8068-26e671eb9fa1)
    )
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 353016e4-52ab-41e3-981c-3b4a49f12701))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3c4666ed-7807-41e2-8aa7-92d57db6c5b2))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7fb6d5fe-98e2-4ca2-8c19-3b85b0f7bb6e))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a21616aa-4a50-403e-9715-d386ffcdd097))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f249f2f4-a5f4-46c5-a3aa-af9acc1d3de1))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 19b608f1-3f53-4175-8d57-1a4f89ad4201))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4006e3db-3f0d-45dd-9f67-178356de57f8))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b7c42833-cc8c-4dc3-a997-327a9be27882))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d54d1031-e0cc-45e0-b8a8-216f6604a158))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp face9c68-be82-45c6-a4cb-bed64cec5b34))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 020aa101-d55d-4ff2-968b-9600ca336815))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 33ad0436-7d58-4bfa-9b08-c830a96536a7))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 405a7fb1-eb46-4220-ac59-71fcc8243f73))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 972f897c-c758-4df4-9f67-a6c9b0184469))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f8774552-12f9-4302-9d7a-4c7f443745e7))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6edd7fa2-53a0-4085-a426-1622a9f5330e))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 73788685-417c-40b9-93dd-8b1d63d899e9))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8eca2a64-e0dc-465d-822b-ab18dad8dd4f))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp af80f0e8-b836-4a99-90d0-3ab9aa2b314e))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e8228067-d406-4911-9be8-a012a5342433))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 392568f1-8fb9-48d2-a299-a2b446becfa5))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a4f330f2-c5d8-4904-b63e-9ea9625e3483))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ac4c3efc-ec54-4ac0-abbd-a335547436ee))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp be2d185c-0877-4ecc-b514-1fbe57eb6732))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fa0849a4-542a-415d-987b-7ea0e5136d21))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp 69931ee1-ffc7-4468-aa31-543dcb37a263)
    (at 181.75 97.46)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8885f2f7-1a2e-4eb0-b8bc-049f4deeed02)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e742a006-2ccc-4cef-a6de-e211b63805d7)
    )
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 32549744-3012-48a6-9aea-9dd771fa15a1))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a1abf2da-a7f5-43c2-94af-89a263a226a4))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp beaab2da-ced8-4b13-a685-66b42b21820c))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cb34fed1-56d6-41e2-bf03-5bee681a6da7))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f0af7d3c-d635-48b2-9c18-728e7df5a810))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5e84aa79-e6e6-44b8-9e73-7222b869a538))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 785fdbe2-1737-401e-9aab-1a3423ce2c92))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7ebc59d0-1659-4def-94e4-d66854f62ce6))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c3500a86-32a0-4b8c-bb0a-7b1527557c3e))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e8d1b73c-d503-4dfd-adff-0a0856fbb3cd))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 18c89ce9-5d9b-494d-bec0-0dcfd32b22cd))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 38c680f3-0840-4354-8be6-e18d3b6717be))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 681d4e2c-4df0-4ea8-b1c6-1728bc64d47a))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 99c2ca54-f13e-48d9-afb3-486f275510c4))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9de80bf8-e57f-4c4b-bf24-c6415c9d3a4d))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 05916c7f-51a4-4e23-8acc-71b0a41b615c))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1ae9255f-4aaa-4b37-8dcf-6490bb664d4c))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3178c318-8182-4b17-8178-a9f62f52f67e))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 599434f6-5714-4141-bb34-3a5fcbdb0442))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9270b80e-1563-442e-89bd-6d83551667da))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2ed51668-c7cc-4c37-9adf-32a0d599d006))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5c909b99-0b5c-47a2-9ba8-e3cba8f3ced9))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b9535997-2c72-449a-a915-4d3ec0963726))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e7b2f3e4-1b2b-42c8-899f-75c8cd60040f))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fdd9b67e-9310-4a40-b0f7-7aea261078a2))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp 709f808c-6f95-4d3c-83a4-cb6540762448)
    (at 170.32 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6a334c92-3294-45e4-902b-e884f03cf073)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 117b03ec-66b5-4074-afb1-85e607e19b69)
    )
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 349e53e1-3d60-49d8-a165-933d6307e206))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3f229e20-37a4-4086-8e34-b4d7be0e6091))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7985c027-2ee2-4f7b-8468-4eeb6e2a65ae))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7de743ad-f257-4b4e-82a9-e7f0aab4dc59))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f926f680-578c-4cd6-944a-f0c96f791d25))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 03276f3f-556c-464b-99e7-3b00b257f778))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 10e4fd90-7781-4c6e-8aba-1eb0a48fdf30))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5ce45872-7a77-4ae6-a5b4-2c28e838c2aa))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 624d374a-6e13-4b6d-ada2-a6c01cd7bcfd))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 73a429e1-a5b6-49b7-a7ad-f0ec941b4986))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45cfa1a3-7510-4d20-aa81-ac5f677814c4))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 55b72148-bc84-4596-9878-53effde9ae52))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 59678e18-57f5-4356-b0ef-725002451757))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9893dfe1-f557-417a-8e5e-cc894a533f1e))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp db5addf0-b4eb-4d87-8de9-36b6da915e4d))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 39a238f4-0772-4bdd-b865-c28a5b65ac2f))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7b210409-9574-4aaa-9873-46d634f1da0e))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d674c4e4-2f4c-44d7-9250-a06348f181dc))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eee920d6-8339-43c7-a9e7-dbef6e0dcc5e))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f6f53f84-cff6-4648-a3c5-ab2b45b52a04))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1b971603-b06f-4790-b7d2-ea60d6ebd869))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 97b75abb-f441-475d-9f09-aea2447986a8))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0492bcc-1c32-4577-9361-6118e7c164c0))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dbc0d366-c917-4e80-8650-3ab3db8ea018))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e5e5bfc7-fd9f-43f7-b507-89642f356c4c))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp 7a7ceddc-24eb-4707-96b3-29789f036784)
    (at 170.32 97.46)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 01a2f6cd-63df-4442-b3ca-b4fe0b6a5ddf)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7cca246a-d765-4e8f-a44d-e9f43ce4fafa)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 07f13715-d494-41f0-bc73-40a369482787))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 34aae814-6c68-4198-b87c-148da4372c7c))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7e5563a3-df38-4a22-801a-9de681171161))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e4d85914-aca6-47eb-bf1b-11ca648ce240))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ed94fba6-5937-4e2e-8cad-eb4e5a3633f1))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 11b04929-ddaa-49a1-8cef-09af554d3b69))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 41ea0120-1aba-4a40-bac3-7044a213af03))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 56e31c09-2a14-4093-a984-509adf2a4166))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp df1f19b4-1d33-46d5-a1d2-725bda3b2ce7))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e576b4b9-94d7-42eb-9b17-37542002c55d))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1b2e5c39-7ccf-4e0c-8b1b-b66000f59076))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5bf85f10-dec4-441c-aad6-388bbfc55a80))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 93b9f87d-13a4-44f9-b6c9-dbc9ac278ca4))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b5b237fd-758f-4543-9b48-1d155e044812))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e8a190d1-6717-46f7-992c-03c930c69302))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4027f7cb-3651-4c55-87dc-b41a832c4c50))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 472eaf45-a69c-4709-b847-f50580ac521d))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 69c8b605-2627-4dea-b2a0-954bda7acfd3))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9d266831-88ec-4196-b55c-fbe192f27c78))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp deea93b3-a425-4378-9270-d425bb16828a))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 24299542-1f37-46c6-ac76-900d2924f38c))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4fe106d2-aa8e-4200-b2e0-601cc08a32bd))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5ba0ceaf-7a33-4cbb-b67b-b3fd06dac59e))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7a3fc50d-e508-42d6-8f42-826b24d1e5b2))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b7906755-e4a0-4378-a2a2-0fd9a2c51511))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp a5b52e5e-d6bc-46a0-9c57-a5226ebde068)
    (at 163.97 97.46)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 857b3c34-a5a1-4b73-9dcb-af4e02556ced)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e574e298-190b-4809-87e7-eb42e3fbf308)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2892f782-44ff-4850-a0fa-ae684cd634ca))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3bb0deed-9a25-4989-9a86-07a6eb1c66da))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3fc6e309-768c-4d6d-b6e4-1f2d2c7b6f6f))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4d577af9-70f7-4e9a-935f-8660f64b1869))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8f8efd75-91ab-415f-9a37-e005002e50c5))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 490a90d9-a1bb-4bcc-a0fe-3ab6feb40592))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7c8c1359-18f5-46c1-85b4-e7dd6e7ed1ea))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp be23d7a5-4e14-4fbd-87a0-6ecb18affb16))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c08d4922-4195-493b-83c2-19dd5a4abe77))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f3e860c2-3baa-42c2-ace2-000ca9c9469d))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 25939cc4-1273-43cd-bd8b-0cb6f564318b))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 576a3049-c856-4d87-9e71-2d7885b4decf))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6c622348-1a04-4266-ae18-149669a48389))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 90d3cb92-28f1-462c-85b6-7a785429d42f))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cd5cb217-3b9a-43a4-9d2f-9c6b31df0e21))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 21a0f240-5d48-42c9-a316-f14c78167837))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3016abbf-5ab1-43a1-95c0-5261874eb1fc))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 920af686-6be3-48fc-8ac9-3e959c6bf9e0))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c3e8f62b-791b-48ea-aab7-b060052f13a1))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d5d00c2e-a519-4d4f-9cb2-b1fffda82bac))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45b5e184-8c0e-41e8-baa3-0bff2c4c7d07))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 59ab0ec1-e82f-497d-9149-b4a9b1c5e03f))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d6564a2d-94df-476b-a3ae-d5d06bbc3d77))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp df351d76-bff0-4a9d-96d3-034823027164))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e4694209-6b2b-437a-879a-1fc8560c7ccb))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp aa085c72-4714-4817-a670-1750bd14910a)
    (at 176.67 103.81)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 88f043f9-7d9b-4a73-855f-08e3d568cff2)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ea1dbfb6-169d-4f25-9915-d1eb3b4ee07b)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 39e1dc40-6dae-476d-8c00-4e3c1cff743e))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b8b67481-8a7e-49a2-ad14-c2e6572f9677))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bbbb857a-897d-49df-81f5-2ba46c60f91a))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e995e760-143a-4c87-a13a-3b4c831683f7))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f8353c57-c5a2-4113-8cb9-fecf2b4d8053))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1b330a87-8bb7-4ff5-9411-e5e273ae392e))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7f5be6a2-602f-4d76-968d-e943fa4ad645))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a9bc7996-3279-430a-ac49-dd79a41afd20))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c11177b9-0edc-4f88-b380-0ae4e8240a79))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c3fb5882-1509-4aea-83ed-b4a268865b4d))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 342accf3-dfb5-42c3-b40a-f913b8e048c3))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 49625f42-cc32-4280-a042-e4d164d5550a))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 703c76b0-e21c-4a59-b97c-b5312bda773a))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 87971e21-bd9b-40c2-9a06-4f7a51df207b))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9c679206-4f7d-4815-b89b-2b23764144c2))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 43c21a7d-8d12-4959-a428-7fabcf95ce49))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 64f23cb1-f2c9-4643-86ce-f4cfed2eac2d))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 69c371e6-06f7-4087-b750-93794ea1de74))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 863dcf85-c43b-4c84-bf11-99a41a46f6fa))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8f2f74a0-ce62-4a31-ac26-d238dd3bceb2))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 00758a62-4823-4bae-bed3-c5fed508cf9f))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1c46a0e0-f8b0-45cd-b6dd-173c3370cb83))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 527a22a1-7481-435d-84a9-54e36918871e))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp aa682f77-5089-47e6-9aad-ca8a47bbb94e))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp af4d03ed-802e-4624-ae76-b7fd3501f8dd))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp ab1c94d8-c1e3-4120-ad0b-cfd3ec47d8c7)
    (at 181.75 103.81)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 25fbbff6-6fd2-47c1-a7ea-4496d65ecc80)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f147d785-3d98-40d7-871d-278e7ff88ebb)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2d4e1063-bff8-4f96-b1c4-00e26c436519))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7757fb46-9c8f-47a9-8d54-d0a9fb1c3bc8))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ac1aca31-906b-4f14-9684-befa236ee93b))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b4d69b33-09d4-423c-9c97-5e09792d897d))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp da957472-7d98-4153-b0aa-0bfc0ae5c6cf))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0ad25f9b-6876-4d4f-b8e6-17ef96beb9a8))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1446d4d7-0eaa-4d6b-a13f-db430e1c6959))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 34ec88bb-53b9-4093-aa2e-8f826950e9e1))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45f5e5bf-1f75-48f3-959c-8d09fe55ad84))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d1195055-9b52-4b2f-acb2-4f4284a2257d))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 46a94532-2a1f-4f0e-9657-63a2a5e6b806))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 70f1375d-1059-4f4d-804d-c5592ad70df8))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 71b2b050-4e77-4e3d-ae55-e4afb1fb7feb))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cf067976-1ab2-4440-ac5a-34021ca07e6c))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e18879f9-e8c6-4171-884f-2c67227da991))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0b57169f-4d11-496b-b5fb-79df0bf7f8b8))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 88f308ce-719b-4aac-8df3-8d8ce8e345fe))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8a30b7d0-4f6f-43d5-9817-96d326a9d2d3))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 96aac49a-e7ed-4b39-bea5-043e0ef83b38))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d78694f3-ca80-4d78-8a4d-ca29e4594627))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0a860ee3-0557-4000-881a-354940600f92))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 237f3ad5-1735-41f1-9585-6ddc853c10ab))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 56407bcf-5c1f-4876-b5c8-103a1c3325a3))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8a7e6aa5-c9be-400a-8d36-f5805ffe99a2))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp adc65367-5cde-4705-a548-5d26d32ebc34))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp b5700cef-afc4-447f-a64c-5bb3a6ff4bdb)
    (at 163.97 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fa9f06f3-d87c-4d34-b468-b245bec43436)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2a7f35c9-5c32-496c-87a2-06853dc3a1ab)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f96b562-195b-414f-8ada-908097d54515))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 33438a03-e0cb-4316-88f4-e6b5cfd8874c))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 826712e8-796d-4e56-bcaa-7ac320e78fc6))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9f20bf99-100a-41a4-aa8f-5a0107cd191c))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e188745d-b4c0-4359-91f3-931e2e4f4794))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 322ce441-ee6e-4c85-8214-7ebf3765bfd1))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3b43664b-ff0b-4d38-9e8e-c892e676fba6))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4cdbd0a3-d40f-4174-8188-3142df720f40))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6c68b5e3-a526-4c4c-a04c-2b8721818e52))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8fa0f96c-06c2-45de-aa59-84c114cb1dbb))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 124466f0-d146-43cf-82cd-efe7eb7c69b1))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 15485d01-bdf8-4ee3-87f2-7a954165cb44))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 411be043-f439-460e-9159-d6e9c40b01c2))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7d1073d7-37f7-443d-9fea-5e1e15599de6))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp edb0c221-a92a-462f-a4c9-53f9ab53ffa9))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 04983b7d-fd3d-48ab-9fce-0832b5bb2720))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f41049b-85b3-4cf4-b370-ae8c96e5ac8f))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 576a3064-7e18-4903-8962-187f617483a4))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e7cd2d70-c1b7-40f4-b149-12f3ed0150c3))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eccc3e1a-3fb8-461a-8710-ed973aac8ecd))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 02d69839-c196-489e-b591-ab15c15bfb9d))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2275f424-0dd4-4448-a5b3-36096fdd7a28))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 42c89636-7ef9-4ce0-8727-1ddc9f68bf0d))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7e1c11cb-9786-41e8-900f-e600f4d75c5b))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp af836082-7f38-4228-a9f5-868b87435c3c))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp bd7b6236-f3fa-4950-af05-7e39fdd4c7cb)
    (at 181.75 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ce7f9801-9828-4ef1-83f2-266b56477720)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 23797d9b-d5cd-43f1-9d9f-6c4217225c56)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1622bc93-026a-437c-8c1a-dd26d1799fb2))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 28dff8f7-7b72-4501-ba09-3a2e1658df10))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 77c5d8cf-14cc-44de-813d-8c1d6cd762fb))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b3db908e-4cc1-4cd6-91f8-0bf2f33b2a5f))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e26b7641-8b71-4123-8e97-fffbca8feb5b))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0254f55f-5f0e-4239-b41d-0241bd3380fd))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1e201afc-400a-40ff-897e-f42719aa0e7e))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 39c018ea-0688-41a8-8f26-3e23827ffd4a))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6495b830-8877-4c45-b18e-227c4e269de6))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp be68ad52-5b6d-4f75-8924-7de1b491d24a))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0ed89f56-58a4-4cfb-a273-2de03f938462))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 27e1466e-eb44-485e-867b-a5c4d6dd76a9))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3c4d1491-8046-432e-b928-2df9f6391272))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 657b88d9-5413-4e4d-a76a-c7f5a4dff442))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c9701d68-14fc-4efa-9e0e-6aaeafd83458))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8a4e3da9-0976-4d99-8174-5dcd2bd3a4ec))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8bc828d7-0475-4c1c-8253-a6bfce37a1b6))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9bf9a5e9-d129-47f4-a37f-dbeb73c64ecd))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b19e0d90-4ffb-49b5-894a-2fd6569bf10e))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1ed950c-739d-477d-a574-8684db7695ed))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 00bff338-4225-4c23-bea5-b13050861f46))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 58a153ac-55ba-410e-abe6-522f9e660169))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 85875184-26fc-4bdf-8f38-4a8c0bbc791a))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d1c55cdc-75ec-4fa1-9d03-11e7e6e3edd4))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d20a1e01-4834-4a93-b527-0ff3dc2cc80b))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "F.Cu") (tedit 5F85D7D7) (tstamp c85b31a6-cd7b-4fff-89df-c6b9f765b872)
    (at 133.49 94.92)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 3de0eb64-4237-4825-b4ad-0d22f3937c26)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 1 unlocked) (layer "F.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f2d5aa96-46ae-4497-8ad9-60b30163b41c)
    )
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d0f5063-0006-4dbe-8d2b-65682c7b1d96))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8ebad4e3-8c8f-4f48-a1ef-517990d64045))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bdff63a0-286b-4c2e-91ac-73014679fc4d))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e2bfeedc-95b6-4099-85eb-6217f5a5267c))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fcff7a95-d732-468e-a854-1421628cd440))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 345c5f5f-4cd3-449a-b60b-7cc501611142))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 368e6e71-4e8b-4443-b65b-f7b7b95ee321))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e6fbd4c-fc34-4a8f-98d2-7cfb0a273138))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 848bc2fd-515b-4509-8adf-d03515dac00b))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c07097bb-3efb-45b8-bea2-5839f0147e7e))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 46f966c9-02c3-4753-9a92-df98506d2b46))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5eac865f-9cc2-4c7c-915c-53535e646d3f))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5efdd122-f6fd-4eb6-91f4-63bb995f0ead))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d5b515e9-d325-420e-8cfe-8869bceeba3d))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fb4d6a3d-0036-4de7-8bdf-fcbee44a3f82))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2b1e7d22-fa4a-4f6f-82fb-6467b3873292))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 53b4644d-bf1a-4d41-99aa-db8dc108e48c))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7167c914-3776-4e85-9e6b-a10c7fa9f51d))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp af5ac956-caf6-42a1-943b-82a98b7a09af))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b4b3db7d-0c88-4f5c-9ea7-cb43578661ed))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0c441e95-d07b-4715-8414-365b0215cb0c))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 522f6dd2-c824-46f8-837f-5091621d6c3f))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6928b51c-b84b-451e-acb9-17832eea6343))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6d0c9448-fdf2-4e13-a259-51c6b6e1b363))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp da0768eb-b152-478b-a82d-874c2fe2901c))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp caef6667-845b-4879-ae2b-7a5227a13a2a)
    (at 176.67 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a3897391-533b-46ce-ac3d-88ec209277e8)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5ff36b88-0a93-48be-b381-5eb39100bdc4)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 766adb80-f260-4a39-a466-7ffb17af358f))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9c1de57f-5fb8-4821-abee-291c523b8791))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc714936-8c07-4349-a9b3-64cc86dd96b0))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cdb49d12-f2fe-4730-9222-03c9523dff31))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp db9266e5-5908-4fcf-aec5-d4d3131cedb5))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d13d146-ce93-4c46-9e80-5116983bf345))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5bb6c530-a98b-4ec2-aa1f-f74a80be5362))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7599cc66-4884-4fa2-8fc6-4716ceae0d4a))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 77f3623e-0063-474a-a927-342bb682dd77))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fff704d5-1910-4dd0-8279-bc22507f67a6))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1ee9b021-5eaf-4d04-870b-82eeeb9542c3))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 85e185a9-550f-4843-ae91-8eac0f1c0436))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8a9261e6-0cab-47f0-8e2d-03c3add86c5d))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a2f3f42b-02eb-444f-a33d-8b27b3f6eb65))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c8b6e65a-6d30-4f39-a67a-97ba7297bdcf))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2612ae6e-66d3-487d-9d25-8514f02e9982))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5242b43f-f15f-4426-9e3c-5c6ac1e12580))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 52490a79-3001-4cc3-8d6f-c661ae8c78dd))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c29ff317-0016-4a58-a27f-0d8d1dc5c458))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f31341d8-a1ea-44b8-aff5-70a2f21cdaf8))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0a0ab614-6176-4800-b86c-f059f6368d02))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5c152f2b-66fb-4a5f-ae98-7534f3235c5e))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc5a7712-be13-4d11-a60e-5f2adf4ef556))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cd676dc6-4051-483e-b99a-5646c94075eb))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e14be826-4a32-43c7-b97e-ccef277d47e2))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp ded11d9c-6f70-4344-939a-98e5b1f3536d)
    (at 176.67 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 913254e6-5994-4d7f-8fa2-76bb51b89507)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ea133bb1-3678-48e1-93ad-8cea2c78f49a)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 345f812d-9284-4f38-b5f8-c3b0b02e4179))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 50b7a1c0-8bcd-4b1f-b6aa-b0ee99f74b5f))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7f9a99ae-eefd-49b0-b821-1d08dc2e47fc))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cfd0c7b8-8e50-4bdb-8084-de0aadb142cc))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d7ee95b6-e2d6-4dad-b4e5-a8f00d60a03c))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 288ed054-e156-4348-8531-e51df1d0acb6))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e476bf9-64a0-4f97-91f4-baa03c55f925))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8ab08132-6e5e-4ac0-a632-2708ec874120))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c14d5244-a233-46fc-9308-bd8269d277fa))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d4feab0e-cf7d-420a-8843-8d98d9110b4b))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 16d52008-80e1-45d4-8091-acbc367115d8))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1dfd80a2-0929-46a9-8c4e-64e9d9f4fd9a))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3ba5cf81-4806-452e-b096-a27cd9e0a668))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45014b49-388a-4292-ba46-463fbe374a7f))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6fe10ea8-8bb8-4d7f-bb31-57c6c6e2c2be))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 200c15fa-5687-4741-9969-d66e307071d4))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 32eff8ef-fecd-49cc-ba08-07ccd39c8203))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a51e6031-1490-43c2-b0e2-f146b636a8d2))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b5c47a91-bda0-46b3-b312-1e994bed163b))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp da0d1fca-e41d-4897-9a9e-86f283728b2a))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4573fd55-9739-4485-a8b3-4566119d9606))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 85c3dcf5-61c8-4ee8-9d18-e9830ed17602))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8bfde416-059b-419e-bf25-a6c226d4c7e0))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9d2d5be9-6bc4-4c25-b6e6-6f3119bc1abe))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b1b59086-6d1c-43fa-be1e-58b52ca22dc7))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F85D7CE) (tstamp e699147e-859f-454c-9e7f-284da6afccf2)
    (at 163.97 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a7eb21e3-4431-4024-820e-0b5db163b33a)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ea602212-d370-4e1f-99b0-6afcc4ceaab4)
    )
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 004bf681-96c7-4cf2-adc1-f7f143994e87))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4c98a785-f688-4946-954b-83ca3e7d6e10))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 51962638-d740-4c77-b4d0-1e8a4c5e9323))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 645f0a5b-8020-45e9-9fc4-dd7c6df4ced8))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp db6faf05-05b2-4c7d-bc42-7ba26ed7474b))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1726fa8a-cd7c-4ae5-85e8-f6815a1b4ff8))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2345f2ed-3433-40ec-991d-345cb8b64ab2))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 63bc6396-f987-4b03-a4cb-c7e11b47d2ee))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8e94af90-e21b-46ef-aa59-46a3051ee07c))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9fca6190-ff28-441a-be4a-4384c27f2d43))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 043a3f22-cf4f-4e2d-a724-8728e4b15b1d))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 18a53302-7c7d-4c08-b8a6-19608f7ca5fa))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 232a7ea6-a93d-41f0-8d9e-9f5336df7eb7))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3bad5f54-9f24-4720-9f54-c77a0c03f06f))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b7dd914c-97e7-4162-bfea-cfc670094216))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3847509c-d3ae-4133-b11d-eca04abaf0fe))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6850d5b4-e8d6-4f3c-ac82-4060644fa95b))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7d5f2736-9804-4ed6-8bff-e5fa8f0bca28))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bf471427-a583-4d0a-8588-f1666ed97d94))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fb61ec4f-ccf8-417c-9020-b9f244c07780))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4582b2d9-adcb-41f9-b45a-d9ccb4aa69c6))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4b450705-5a7a-44e6-9f34-0f4edd2de83b))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6c8aeefb-286d-4a01-bc14-8046f53e341f))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94524f52-3ece-466c-99ef-f3c7f2a0de92))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c9cad0ad-e7c0-4df7-aa16-2d6abe06e735))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "F.Cu") (tedit 5F85D7D7) (tstamp ea5ab526-1da8-441c-92ac-7b07d4ac7fbd)
    (at 123.33 105.08)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 190d7d6b-32ba-4b7d-bb64-55a892676ac2)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 1 unlocked) (layer "F.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 3accfa95-2a68-48d3-8e42-601f4c879ca7)
    )
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 102d0c7e-b142-49f7-8aa7-ff3337f5c96e))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 57365291-6cbb-4443-bea4-731bbcf17374))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8aadabf3-15f6-4bbf-911b-d3e373a7f862))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8bc71512-9b71-41d1-90cd-3715f00fda04))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd419e1f-75de-4005-b9ab-3ac90f408c28))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1fba7d2e-49db-42da-be08-b4947af9c6ad))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 232be5f9-6aac-49a4-8862-11229486e5ac))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 73fdf65f-1dfe-4bc2-a11d-7eab76b4c201))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bcabe805-1423-45d3-aee4-68becb1fff93))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dff557e7-09a8-48fe-8881-602a4d9d1f64))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3d61ba93-a30c-415a-a010-8f02bedcbb8c))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 405d0aed-d9e6-480a-8380-9e60617ac0a6))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45bdce11-c653-45d5-a824-715d283d815b))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 67c88b06-2408-43da-95b0-56004d722b5e))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 69c1d62c-0ad0-42b6-9981-d8880607467f))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 00f82a18-16dd-4717-a56b-818360305fd8))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 16fc609c-64e1-4a72-a6b8-2e3a55bdd1c3))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 19780f13-cbec-4096-9bba-20f8cc5bd8c3))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 42ff7cc4-c215-4f02-9580-4c01d43fef76))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e73b2043-0045-4406-ae4e-e394a6159942))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1c0a7919-f245-4748-8a43-5e607c26305d))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3059137d-b17b-4c6d-ae6d-dd65aabffa17))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 81d97140-15a2-483a-a0df-cc5a4f73f56f))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a71273f1-fb4a-4161-be14-a6af3bc6f187))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d84bc175-73d6-46e1-beba-cfc0814557e8))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 007bdf42-5296-406e-83d3-aad2438af236)
    (at 170.32 102.54)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 531224ec-8ffa-49dd-a5dc-d4bee3db66ee)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 40c96792-ba59-4a0c-9b89-879883eb1526)
    )
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3b131dd3-828c-4827-a79d-07463d383c92))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 44684327-e75c-459d-a0f1-4952f0dadcd1))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 557ffbf9-122e-4cdb-b303-3ff20d8da92b))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 615e6273-e15f-4942-82cd-b2629002b909))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fbbbfae7-cf21-4e65-ae27-7635b8629896))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1475f36a-eccc-486e-8f9e-72b02cc3c9f4))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f846ba5-6202-463f-aa67-7df9f4cb134b))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 36b66c8f-061a-4d93-ab30-2a3e0f7d6e7c))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5e7f1af6-38ad-4268-a5c5-08a513af481f))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 846f822c-093a-4eae-96f9-276d706aee79))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0c0b94c6-d941-4755-90c6-123f08e6be99))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2c7cf291-17f3-4085-a016-3b3044851a7c))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 58b4121a-ce3c-49a1-9d44-fef7e74d43eb))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9d400ba6-1a83-4832-a7b8-7a6c5f92fd30))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f806dcf2-7148-4ef2-b622-4f7c94214632))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3ad2f55e-0514-4514-9ca1-32ccc44e437d))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4f8aa238-5aa7-4dbd-b7d0-a642760f527c))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9913b891-e7fc-4437-a84d-7604ad0293dd))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9bd5d2ff-48cc-4f57-9dc7-1fe1fe7d36d0))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a03a12a5-c17e-412e-b933-e2e760342c2a))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 52f41f71-5254-4dbf-acf9-8bde1249d0c1))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7b7f4a60-5491-4a98-8647-640663397299))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a03686e5-d695-433d-91c4-ab569cc3e069))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp adf12e76-ea0e-4854-9f94-1bf9cb52ec51))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f06646bb-8bf5-4f90-890f-c24006d9cc4c))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 0b6e861e-aef1-4c60-ba0d-3fc670977fd3)
    (at 176.67 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 51d984f7-f9f5-49b5-83b9-0eb48e3c3475)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 69a127b4-58c5-47fa-98e9-55702ae12d82)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1e031c8f-12dd-4a19-8f64-d859bc2fce20))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5a448e91-53c7-45f8-8937-ac6440876f5d))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6be1aec5-7291-4982-8344-7dd601877e46))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a9cff1d8-9dad-469e-b859-ab0f6b6590a8))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fb3417a2-2e7c-40d1-bd34-d67d3de6abb4))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 12a0bda0-59c2-4f44-b79c-f9248b42b24c))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f056ba6-60f0-4980-b6df-da2757fdb890))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f954f9c-02e1-4212-8675-13605fe6cebf))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b7ab886b-b85d-4972-8643-20c659753bb3))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp da4f4ac3-6843-439d-b1fa-27aaedd33a2f))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 177de7cf-ebfe-45de-bc50-6ce81ddeb2b5))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3399af72-5e59-4ea7-bbdd-dae1e8a6980f))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0d3236c-c92e-4b41-8951-825da08a68a5))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ad3f8575-78f8-460c-ac02-8b9ccbcc163c))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e5e7cfe7-514e-47a4-97da-8e46c08b071a))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 22c4702f-ee66-4170-bbc5-39f6bd714930))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6e55ebcd-cda0-4329-af1a-4de0cf74811e))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e3261d3e-9f1f-4540-9e09-912d0385c6b3))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eb202a55-e051-47cf-b27b-31e452ec9464))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ef95a7d2-ab70-4a5d-abc8-e4cb4e99b491))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 19c76447-411f-4131-9fa3-616ff511a3dc))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 30c9b914-d4d3-4efa-a38e-5724597ecc73))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 693d601a-2a8d-4f80-ac55-d6c77f4a0509))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7f3987d6-83ee-411f-be1e-20d052eea101))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c88f727d-6230-459c-95dd-8610eea4c205))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 1071b367-8a9f-4357-be39-7807878031e5)
    (at 181.75 96.19)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp e455fd35-f72e-4888-9b77-306f4cc24c35)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 9caf7e6a-bbed-4b28-8776-6017a13bf524)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 05f33fc2-0fea-48ca-801e-fdfff859d5a5))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 26cb40e9-03ce-4fa6-bc22-5ace14b1443a))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2c543442-c52a-445e-9468-1f362b222b48))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c881d88f-357e-4e37-9fe5-b45b0623fb2a))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ea55c777-b916-40b8-9501-256f83ef8962))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0371d12e-27ff-4095-a2d1-1f08e9e53e77))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8c8c2819-cec6-4644-8737-9f1e28c0d1f2))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b98bbb15-efb1-4c5e-b0f1-215b58361736))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d2c27070-1e74-42a6-827c-a907e07cf955))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f4022b4d-6aa2-4c0e-84dd-d6bbcb6b8b4e))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 00a9bdd1-9d43-4e0c-b95a-806bfa22d0aa))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 17003c4b-ce51-4d0e-b67a-806025a0f865))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 60a5f430-0993-4e29-8efd-5e3e91ff11e0))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a8bd30d6-b053-4405-b996-a1703abd5337))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bf2cbf87-bbbd-48db-98c8-99ff9c118b24))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2c22d805-991e-46c9-a9cc-410b3416b08d))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4909ef77-ebbb-4bbc-ad42-add412828878))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ddc0196e-1e2b-48d4-b5ac-23789e6500c1))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e490bd0e-3759-4200-a3ff-70b2ec006b6d))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e7fad8fb-a7cb-4bfc-9794-23729e3a8d89))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2c720c6f-ded6-4081-a899-4b714c83cb93))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5f1127b5-db05-4b63-adc2-c0d99a1b5a5c))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7b41168c-62db-426a-ae24-0d4284771ff5))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c4b91556-16d6-4245-b5b6-44f7b06ca583))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d73dd2ea-87f1-4989-88ea-6b02cc963926))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 15e8ccff-b1c5-4aea-984f-8293afbd69da)
    (at 181.75 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 2dd18800-a82a-46b5-9151-6cdf2c209cd5)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f57d40c0-bfd9-4842-9602-aefe1b168878)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6946b0d4-9e4c-4a50-9774-22b2d6b6702a))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6ea6af97-694e-4a4e-ac68-44e917e07470))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a91a7b96-1569-4a3f-bb05-d7f1d6f78b62))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp af428f64-4a5b-42f3-89d0-182a20b0455b))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fa827ff4-5fd4-4ac7-8abd-d3c3e43f8336))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 025ff6aa-ec52-42d0-a1fd-bb47ffba48d3))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 15bfce1f-47b2-47a2-9f04-61a0f88c7ce8))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 32919f8e-b612-44a8-a609-e2a131bad2d9))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3358671d-c303-4cc2-b7be-1a3af4e5f824))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fc407fba-6464-400c-9c72-fc4e46f1e250))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45b7d7b4-5bb9-447e-a27b-3bd2c4b92c5a))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6a0e7621-9481-4555-9692-6f6cd01ce000))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 91bd321a-5855-4983-8ae9-7ac8d6c8758c))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp aa966d65-ca61-4a07-91c1-2ec4b55a1d85))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e6fc56b6-3e60-4a35-bc2e-19f6e47dea7e))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e54599b-103e-44f8-b02e-abb25d628697))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 76512b3b-4495-4763-9bc2-6162d965d2b2))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 83735a08-3f98-4b65-9522-7e349ce257e7))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b52ddc42-c8f7-45d1-8715-9e29659c37fd))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dcf44fc5-c2bd-45d7-89f7-62fffb0699f5))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 003252e1-e8d9-4ef7-a125-23fcf8178bc8))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3484b8fe-2429-47c7-aeac-b2d6386989f8))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5c1200ff-8a04-4f5a-bc2c-f4632ce41277))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b22ae4f5-789c-424c-af9d-de40568239cd))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b5ece5ab-a057-4f7c-9128-5c76aaa45784))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 1d63cf9b-111b-4c29-8c11-17cbf7d81d8b)
    (at 181.75 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b04f8157-24a9-4138-90b4-a5d611f94e67)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp d5122b7d-d2d6-4b2f-8169-16c0b163d41a)
    )
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 00ab933a-1f11-4235-b207-312115fd8b4f))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 50f33722-67ea-47be-afe0-6578d43f9b23))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a29aad30-6ba7-4872-90be-c00ecbfb2829))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d1cbc843-6b15-4355-9a5a-44a8fb012222))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp df591073-e378-4763-acf2-51281d286d9d))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2df4eb37-13ac-42f5-8d02-014d941ec3fa))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 80654263-d466-4e63-b4a5-b35151e806ef))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 834c422d-f813-4b6b-8e47-1e8a2a26faa2))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9eb04abf-eb77-435a-a56e-5854589a6b14))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c4199e72-4772-4451-9e29-89acbf7187c7))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 24fea816-6d3b-4c9b-81b0-8194944e4def))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a051235a-5a93-4aa3-b640-c15c80643215))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b9d72130-7222-4607-a6e4-47fec43b04c0))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cee7f393-3a6c-4ca9-98a6-97fa3c2d9ecd))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ea3ceacf-a1c7-4c31-bfbf-5edf31f575d2))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0356b64c-1707-4023-a8ed-65234916c0e3))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 55f3cd2c-01ba-45e7-ad3d-e7a644d7165b))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8b315964-ce27-4e41-8a44-07353b602e2c))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ba0c82ba-fa9d-46e9-9402-1edb787a61f8))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d3e80d20-6510-4647-8147-a9084142f13b))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 194599e5-af83-44ff-b37d-20fef636a4ab))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 88e8b5a0-aae0-4aa9-a737-e92e6efac3e8))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9456cc60-c99a-44e6-8166-5adaf61d408c))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d9824e55-ae9d-44e4-96ea-dab07253956d))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dca419ca-b827-49e6-b738-e94afaaa9b26))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 3601ba0e-78d3-45b3-a94d-449cb97b5ae5)
    (at 163.97 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f65f62da-c9b8-430b-ad05-2d1b8d1cc7bd)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp ad0e78f8-e895-4cd3-8b7b-2db8ecacfe31)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 18736c13-6be5-4698-a3ad-e0ccdf11ec40))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1c21e4fb-216f-41d2-9b48-825fdc3660fa))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 304aacc7-c0b3-4b78-9882-a0f59d7ac257))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cd90728a-187b-4c60-86d2-df901939ca81))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e14adabc-6912-4c78-9492-38668556fd4d))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 062c9e13-c3be-40ce-babd-69d764cf5f66))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a17258c0-c407-4038-83d3-c4e6f9cb9924))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a8160d04-7754-4fb0-a53e-0d972ac2af20))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c484b00d-c980-4405-97e4-3a04aea05a0d))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ef382ea8-d5ad-4482-8480-cbdbd6da93ff))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 00c0b245-964c-4c95-ad50-2a9b1a1c42c3))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0af3a924-0de2-4806-844b-a170867cc24b))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9dcaa90a-a37d-4485-a7bb-30617a953b25))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c339359f-33f3-4514-993c-5245943831e7))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cb71af07-538c-437e-a517-ca7e1876d456))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 047b63d2-edf9-46a7-9bf4-e0b98d992a35))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 31dc115c-4d4e-46e0-b842-9e7c258ca9e1))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3d9919c-4bc8-4933-91ce-3fa24ce6ec51))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d6d65671-b45f-42cc-8141-c958627e9bd8))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fd12e17e-3f21-48fd-94d0-57873e943d0b))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 05518dd8-2973-46bf-8692-433cdabe018e))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3210fb1f-5ee7-4142-9efb-ffe9e7d01761))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4bdee73e-6ea0-4be4-b2c7-eb3ecbd5ca0a))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 536c5dc9-2b86-4dde-b639-cf1f3809a719))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 747e6a8d-8399-4b7d-bd20-12bdfcbf83cf))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 3a7c2606-8fb1-48fe-afd3-ef5f0ab4bd5b)
    (at 163.97 102.54)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp c67773ed-0e5e-4216-89ef-ebb5a2eeb339)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7b2ab762-e7e7-4f6b-9736-d5c6c8713802)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4c3b0e8d-cea9-4977-8b1e-020e2c8eff61))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 73b576e8-4655-4a1b-89fb-da5c43f5371d))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a075fcc6-5989-402c-a15f-0b1b25192ad2))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bfb834f7-95cf-41ae-b22f-c1907236a01e))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f620b472-01f7-4070-8bc8-e4d872902d7b))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 34a4c4b0-76b7-4220-b7cb-09f214d32a14))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3d31d216-3a6c-4560-a3a7-03d7691258f3))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7c6d569f-a65d-44d2-8788-e9688a00deac))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 99578a69-c0fb-47f2-b73c-a6eedc5d0694))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ef758836-1bc2-46a7-904f-e9f42ff3f5c8))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5889d54f-3ce7-4969-bdf8-71b4b0629726))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cbbbc747-f9ce-43bd-96f0-6b11afaf53b3))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ce578b95-a200-4f64-a189-b3c43c2e9961))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cf7fce3c-2435-423d-ab73-a86399eab0e0))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ead946b5-9514-4e1b-92c2-fa5837b59ede))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0085e3f6-0370-40e4-936c-17f71816c27f))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 85387a6c-9c66-4acc-a2f2-c0844e08dd7a))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 863ffdbb-3ca7-4419-abcf-ab50b7aae7e7))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b176b0b5-c72d-474b-b313-cb81a0a375a8))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f6686cbc-b834-452c-bb26-04c7256f5ac5))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 70c8fc6d-7336-4fc6-93db-b6641ebd7573))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp da229126-71ef-49eb-b35d-94cc45945141))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e368048b-06e1-43b0-8c81-aa9b518d9809))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f2faba5c-7227-4f60-9c84-27a8612b06de))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f86656e5-6fe0-42dc-be13-367f3b9dbc77))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 4927d66b-756b-4374-a400-c8761f26e9ef)
    (at 176.67 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 9af13cf1-0a76-4e46-b540-c643bb87eaba)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp d8397151-f774-47e8-a5fe-9cc06f45c0c2)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4ef4ae13-54fb-4c6b-b6c3-642c36c9586f))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 71af148f-8ddd-408f-9ebf-fe7f8632e748))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9ff9f7e2-a016-4ab3-ae79-6f4d6b7b3c01))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bd6b89aa-1372-443b-9ed0-b987f6fd985c))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dc7e3799-39d5-4d91-a394-1afec33aaa07))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 12fb379d-6a89-4820-904f-ffe8a4bc2ae6))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 576e9fd0-cf01-47dd-bf26-9f89b9ce780e))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8aa7f0f4-1118-4b75-9495-181b8efd9c9b))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c424931d-1ece-48a6-a1bc-b2e980caf496))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e658ebe4-14b8-4bba-b864-1ed227b75839))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 35b606f8-1656-4836-a80a-bf60d55783f8))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a68fcd0-8ec5-4c68-a510-d120ff0480c7))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 92fe0941-ae6c-44bd-92a5-b7d9c63a033e))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 99094c8d-025e-4cc5-a5c1-b64c5a1d3824))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c308baa1-f455-4bcc-adf0-0226d715794e))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 59fe8382-3cf2-4492-939a-a15dc6129cd2))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6e89c68d-5b46-4b88-8afc-d429b04e9e25))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9427417a-07f9-4dee-8af2-7123b0b02457))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 95f8e19c-e987-4eb3-bf5d-b0562e5aa3f0))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c92b95d1-1602-4643-8422-a51990fe553c))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2ad871aa-bd9f-48f6-8ded-88028ceec60f))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 58f1fe6e-4317-4cb7-a316-2eb2b195d932))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8edf92a3-d8e2-41e3-a8aa-56bcac22700c))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 918a5c9f-7d43-4398-a9dd-e6817fdf2dd8))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c9d94055-8b03-4e5b-8d50-8ac3132d9de9))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 511439c2-2233-4b79-95a4-e2a932ae28a7)
    (at 163.97 96.19)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 712a5d46-15bb-44d1-813e-bd7df3131d77)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp e7f9134d-3e74-40b6-aec6-d4b1b75371fe)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 466bad01-85ac-4013-9fb8-201a538783f9))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 77e3e66a-2c1b-4656-b196-c8aa5a8ace08))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7a646e2e-7d8e-4eb7-9357-f7aef4f955c2))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ba397984-9f25-4d96-a0dd-e984d7a188db))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f2f9767c-272e-4348-8b68-c1822eae87cb))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 52be6d7b-12dc-4b1d-b5a2-01c3ca77b794))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6288fad8-8af6-4b71-83d2-703e5bd15986))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0311f56-c8ad-4ca0-b737-ab6e4417bb2b))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp df993177-c2d4-48c7-b665-8b63af8d7819))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f5fd339a-d530-4e13-ab27-e68e1d0fea37))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0ef9cab6-3a44-4e11-96cb-1584669bc394))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 314bbe77-ee37-4404-a886-d701d6cb5b5c))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3b356496-10bb-43fb-866c-35f0cfeb8978))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0c78faf-2645-414a-96f5-50fa040e7ede))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bf5b6b4f-421d-4577-b757-59d8d06a9716))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 31cea95d-349d-4617-a070-44b8d9c53fa0))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7f943fb9-1012-42e1-88df-4c5e1b938630))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d14efa85-35fd-471e-86aa-15fd681376c1))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1cdf4af-4f01-4932-9b95-2743aa3d5bdb))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ed2d2f73-8c5a-4314-9ef4-0a4925639acd))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a256a31-f37d-4e65-8cd4-bb413f6d8c61))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4d7cb681-3177-4f6f-a0f3-e7466e078f99))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8bcf3426-c6bd-49da-86de-2c5a60302698))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a70afd51-71ad-48f0-8bd6-275386d39ee6))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f883ba97-b220-4157-a15b-fc2228fd54e9))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 5322a721-5e11-422e-9b86-73c7c127eb51)
    (at 170.32 96.19)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 256af874-ba05-4e56-b928-37d96d76c58b)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp cc840d8a-4efb-40ad-a952-03405799b4ff)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 10110d16-ba36-46b0-9629-73d315b51f96))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6f2be027-e12b-4c13-87cb-ee505039741e))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b80f51cd-59b6-4b12-bb1e-5d4416a068d5))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d1c006a9-7fae-4363-9363-c3cb4bcb715a))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fb13ef7b-a90c-43dc-bcbe-1187711e04e9))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2d4e943d-7920-402e-aa73-fecaee2a1e0b))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 59fb39db-554d-4bc3-b931-69f1b488848e))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b1c41884-6d53-4c17-b976-e489c36b4c60))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c05fef48-8708-402c-a1ef-b10f5077917e))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fad73753-96f3-439d-a98f-d7670fcb3e72))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0bbaf3d4-4c23-408d-ade3-4189f0f49f85))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 15624fff-de9e-42ea-bf83-905fe5d3832b))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 42cf2538-0f4a-40e3-9747-901004c7a43d))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6cd4f435-7e01-4991-af38-28c3599a4f8b))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 703caea8-1c24-4656-bc4a-b6211fab55a0))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4bda0089-7fd5-4020-b4fa-f1bd792b8547))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6bd0ff4b-8f01-4db0-aa1f-624d2d242bdd))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ab9350b9-478d-48ea-afa4-14989fc5dea7))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b9989e11-8614-4110-bd6a-82e4cf12f4e1))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eff03738-b756-41f0-a3a7-4d32aa1c2960))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1119d28e-832f-4289-9cb1-024fe7441327))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2a9fb5b4-4ac1-4220-80b1-8e4b7197245f))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 44e2205a-df1f-4739-8897-240ff8a80dbe))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 508819de-ccb6-452d-b027-1ce89b5629af))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3946c56-fb5d-4649-94d7-397747cee758))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp 67af7d15-546e-46f9-8ab8-0b11464ec697)
    (at 170.32 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 3d910119-5435-435b-af62-a65eb25bea7d)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 5993c3f9-4d49-41ab-984b-d04586a42f10)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 42000dff-97ef-4fb8-a867-7e79e377fcb4))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 561f1e9d-73dd-4caf-b617-b87cb86ffdf8))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 827ea18d-f298-4002-9813-b020a26464a2))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c3fd44de-d384-4403-9574-f71a9cb1ae81))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d2f9f86f-2d23-4f9c-b6cb-b0d8677705cd))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 21acc65a-07a4-4451-a943-540d961a5f91))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 48b0f068-9df3-4f3e-acf0-eaac7c1220d1))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 507e4c54-0ae5-4e40-a16f-0bd2046d87c5))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5a067e99-c5c1-4ca6-a865-dd263b601de7))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5cb4fae8-f5b9-457a-a7a2-ea034e68c1f8))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0f63835f-cf7f-42dc-ba47-744e2d0f5523))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 298f3f62-6a24-44c8-8479-c4fa156a119d))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e7bda6c-091c-4c84-b5db-070b29cc124b))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9ded566b-5774-41ae-91e7-7597d8eea2dc))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bad4047c-4aa3-4536-b4d8-88785404f54f))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1b8243c4-23eb-4c61-bbff-a7135c66cddf))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 21196447-d35d-4256-9527-4ac2573ed032))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4f0a544a-53c4-4c2f-bfc1-a1fab3a10723))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 56a239c9-9981-4d95-90e4-46df347e5fdd))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f0d1c7b8-3614-4768-813f-4a0676de4e1e))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 247efdb1-82d4-4774-aa6d-510fcbbe652d))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2ed45836-3152-49b3-96aa-6ad12090dfe0))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4def4367-f6d0-4a04-91e6-571aa995bd18))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 54e8a2a3-5016-4999-88d2-62068a325a60))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5fed7ad3-9476-4347-9d05-13611e7e9145))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "B.Cu") (tedit 5F85D7D7) (tstamp 70caebe2-ed4f-49bd-80e1-77178f0a9d7f)
    (at 133.49 105.08)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b1a3f23f-ff15-4d0e-ab1d-ac73affd587a)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 -1 unlocked) (layer "B.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7056e59b-c9de-449d-ad74-529102e689e4)
    )
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f0e63f6-2ae7-4ac3-b624-45ebed9d7437))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8dabcee0-f5cf-4a36-bce9-b900dbf16a94))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 98b9d043-65af-4980-bd8b-289bfaa3ed02))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ab1e776e-3401-472b-8195-e76834d5ab78))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ddfede72-10d2-4ec4-a2ad-2992c3cef8dc))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1df5bcce-15d6-4364-a454-216242e6c843))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 46b6fbe5-239d-4147-9ef7-417a054a443b))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5cc5297b-8663-42e5-97b9-740a57d386da))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8ba67179-7ce3-4482-b9d7-7ae6676958bc))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a039c3fb-a45a-451a-a98b-606eee16c334))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 28caa1db-6025-481d-8223-2a2f6cafe63e))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5ccb8ac0-68b0-41e4-aaaf-488f70cef3b3))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 613fc040-5bc6-44bf-9c20-9fb42919f5bb))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c0d77697-0a86-4209-ba8b-9b35facb8cd8))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ed8c25bb-c49f-430e-b7e5-a3b4c044337d))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5cc5e3b0-2386-49e3-b09f-9c2a09d6ecaf))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7a3ac22a-989e-42ee-811e-1ded7eb776a8))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8d0f3cb4-2e3d-4d01-a73e-44a8a093227b))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c55f91a8-1cc1-4df6-8506-4369d9018ce3))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c5767c33-648e-49e4-b7eb-84373795113a))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0f8b1e6c-35ee-4da8-be26-189bd2476a42))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 18fd9a6e-4f52-4fda-8634-05f2b73cd306))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 89bff3f6-e1b4-43fa-ad11-a8df1eb00770))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b6518a2f-4d91-4439-9f39-09756ec5c8c1))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ce93bacb-c6e3-4696-919a-7e4a7ab936dd))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "B.Cu") (tedit 5F85D7D7) (tstamp 9bf6560e-235a-41f3-a019-2f6451a70120)
    (at 123.33 105.08)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 1fb9ad0b-18ce-43c7-a618-1aa7ed2e9ac8)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 -1 unlocked) (layer "B.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp e74793b4-c3e4-4882-96f0-2dd86b1af184)
    )
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 040398f6-3dde-4823-b687-5c1172431547))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1b90792d-53da-4a9f-b4b6-6051e49b971b))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 55424ffa-52ce-4c3b-8eef-b984155b5c65))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a432e4b7-ed28-41ab-b0d4-cc536f61a3dc))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e350d490-ac1a-4a42-90a5-61acd3466d68))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6debec34-37a8-443f-bb3e-c77359d4704f))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8adce8a4-b55d-46f6-bd60-f8a59964a827))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94004c99-5bed-4837-9eb4-790351f8ebc3))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 974ac65f-69a1-4596-9094-d0f556f12bdb))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1c55d95-ea74-4601-9107-923cffc7914c))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 72df28da-b260-4796-9c2c-613686250fb0))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 921c2644-a644-471e-9d42-109243e564b3))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c05704ed-9aac-40ae-b4de-6ded42bfa7b6))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d2999c64-407d-483c-b08e-1b192f920e42))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fc9ecbfd-1f54-4769-acad-c3ff399462fb))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 05ba16d2-d94e-4dcf-8c64-f08ff650daa9))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1f1308a3-2ea7-4d53-9493-979a36e5fe2a))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4cc6d046-7d91-46ef-a27c-34e19d85a6b6))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a8914b7e-c7e9-49d9-8ed5-6456939eba85))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fc2f7b1a-efd4-4e1a-909b-a039a7362162))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0fe895c1-8f72-4396-9b58-77bf9754ac5e))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 378cd089-52d1-4f6a-9a66-60fdfa787ac4))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4da9c611-34ec-43c3-be33-e722d08e013e))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5b7be7cd-f8d1-420d-bafb-a372385bfd0f))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dda64986-1d6a-4d3c-9a08-10bc93abe497))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "B.Cu") (tedit 5F85D7D7) (tstamp a6ba91f6-22d7-4673-b4a8-8fe8785551bd)
    (at 123.33 94.92)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 6998fedd-d6c3-4315-be0c-cd64fd1df778)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 -1 unlocked) (layer "B.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp ab7cfba3-5704-40d0-9703-f49a51574539)
    )
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a1c66cb-48d3-4e2e-8db3-2c109b8d6437))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 43c0e9ba-3cbf-4684-875b-bf7a8c370219))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 610a3aef-c549-49e2-89d5-39b97f314c4f))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ceb6e124-3c8c-4abf-bde8-82876b020bf7))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d6fb596f-bca8-4784-a301-c56870d4bc0a))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d92ffd6-4324-44f4-8fda-5d48ae53afcd))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 32b68eff-f764-463f-a10f-775ba1a4fdf7))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b690101a-4077-4ee4-b638-693631ec2b5b))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d37e46d9-5941-4c72-a798-2a693b10baa6))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f3aeb779-6f52-4b16-8277-2bd70e53b428))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp afc8fd51-5cc5-4289-ab3d-5c52bb6cb807))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b330b0c9-19db-470c-86ae-2ba7fb11d307))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c2348316-3cae-4050-8080-4933bb95d592))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1a7946a-eaf2-42e7-9401-7e79bd87aabe))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ffef546f-0c4e-4244-acfd-0266cc604008))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6206d4e3-99b6-43ab-9fb7-b0f2901a454f))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 64d0f312-3876-4c35-8881-f71ce45ae7db))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a2f7bdc6-62b0-4433-b5af-761d501e1686))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1f48a83-1b78-464b-9d0f-687f3f145818))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e8b1098b-c5e7-4211-8fa3-1a1b2ff6c032))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 74d0dfd6-5ff9-4770-bf8a-be871626dd99))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a8adbe80-a6f7-457e-bca3-ee72e05fd104))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b45683fa-9184-42de-8a9e-4acc3f97643a))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c32b7bdf-13ba-4955-b8ce-f706ee35e41a))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f26bd132-12fb-4977-9776-726cbdfd7748))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp b3fe8ca1-1903-40e8-8ffa-5166eefe1a4f)
    (at 176.67 96.19)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 56b7125f-1a2a-48a9-852a-a7b855fa47e7)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 56a132a5-68fd-4297-a3e5-a877b5db73d3)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 02c38d4d-0d21-40f3-922d-b6aa997b18d7))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 29c383d0-edac-48ae-8b06-fae63ba2ac66))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8de37e3d-005d-4540-bc93-96d8e0d9eaad))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a48e3971-5589-47d2-acb5-5590079d3171))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e811133c-ef43-438a-b9ac-5aad9964e8d6))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3356e1cc-0b96-48cf-93af-449e0175334b))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5899173d-da8f-4373-a00e-be1a891a869e))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5999ddbe-2ae0-41b9-9b52-bdbd3fabf31e))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94dbad74-cbaf-4d6c-af0b-4d5df9394287))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f44062d6-999d-4118-a219-7bf37840cae4))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0c789c05-b1aa-48c6-a830-7079c1890a32))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d3edd38-ad63-4a0e-be7a-e8f76c9b0f05))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45f93cf2-b8fd-4bf0-8d15-1d7a9a863651))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d4427450-172b-44fd-8fa9-872c38610cf3))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fc4f9f87-6b92-4753-8d02-1c953133d0d6))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0f3fc495-ec6c-4afc-9d0d-443651c4e91e))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 92e888eb-3db0-427f-9aa9-41b16d004bd5))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c40c2fb6-bcad-43de-af01-649d07249cd4))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d758fece-9820-48d4-897c-0a9bc0cf9b0e))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e2013f42-a921-4a7a-b5c2-6e9caab58df0))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 22062afb-6f5b-451b-b46b-b25061b5ca40))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6daccdb9-6673-42c8-b675-ab0e84aa5f6e))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8c8fb852-aeb7-4b93-a704-d711d0ee978d))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9321d197-e31f-465a-aca6-04e0e046f66a))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c6bfe4a3-b1ff-4492-9092-a0d4818889a4))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp bc2baf99-edca-44fc-8a64-38ed46dec1ba)
    (at 170.32 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp d0a1fc39-af0d-4b92-aadf-b44313fbd351)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f59ea5a9-e012-40b9-ad23-f20b75eb4e16)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 072c54fe-c958-43f9-a667-8ebdafc27c10))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4d292335-348c-493b-8586-87c8f2d3cb76))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5ff66a7a-549c-4ebd-84b1-32ad71871494))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6258fa1b-1c42-4f63-b5e3-2e81b26c1504))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc790378-9077-4240-94bf-daa5b6ec575d))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 29dfbadd-abce-46be-9ec7-8a02dfff374c))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4d2e1bee-9742-402b-9fa7-c403ef08b0b4))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5e5d1957-541e-40b9-8906-58f8a74f0987))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp af44e7ad-496c-4926-a1be-600720688ee3))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d004a073-4897-46b7-a7e2-d5ac2952531d))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2c9dd4b0-64a0-4e03-bd34-b8eebdb1f51e))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45333c2c-b1c9-4fd0-9f8a-b93a03d15819))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5e994869-3802-476a-b8d8-f5406c77d76e))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 61ac0850-ac7c-4cdb-86c5-14dba5a00f09))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3a7004d-9373-41eb-a8d1-c51e3b5e966d))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 39e16367-7cbc-4086-a572-747c13a8c646))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 74c05ee8-2720-42d4-9de3-b105843fdd72))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dc58e505-f8e5-4449-866a-79034c3dff11))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e513a8eb-9945-4356-99d2-a4ece729a9b3))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e7cd8323-7015-4f8e-8e90-3f2a3a34ac3f))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0bb0f383-3248-4f49-a0af-4531b1a653d6))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1cca4e36-7aa9-47dd-8689-01a6e3847378))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2c7579bf-1b3e-40fe-b3be-d9ea41042735))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp db517158-1b82-4ec6-a010-88788af0a37f))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e4290ebb-f83d-4d4e-b7a0-05665714aa79))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp c7331f13-6c96-4a2a-8135-d4f244ca2e0b)
    (at 176.67 102.54)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 806936c7-fdbc-45e8-8270-5d831e5ed932)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 07d5ba8d-0a48-48a5-8be7-909df33f678e)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1633b2c3-0893-45e4-bcaf-e8c1a56b246a))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1edeea18-cf0b-40fb-8cd8-68c3dffd10d5))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 68821567-96a2-42f9-98c9-9917a2bc1489))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9937b467-bc9f-4c1d-8725-fe1e55e782ac))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bea4c37d-2842-40f0-a579-c33237128bc8))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3314c3dd-f8a0-4d49-bdc5-cbd379d68512))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 37785ca1-75c9-4bf7-8fb7-19aed6fd7399))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4c4200e9-02e9-4fcd-acf6-f2d0c0dea2d6))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 531a282d-0673-4ab2-808a-871008ebf838))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ea98a054-919c-4b2c-8fcc-6936a1ba78b4))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 17e55f05-0a97-41f3-8067-df55496d458c))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4a3cafb1-9c47-49cf-85d2-4130035bbbfc))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7a41b33d-5735-4c27-84d6-1d76b37a6733))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9cad49b6-602b-43a2-b3e5-0f56eaf7be84))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a01f0f56-d625-4500-9801-0fa0d88add62))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2e94e737-4bb0-458a-a6ef-b7e744e4b6f4))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 38bc9095-2a1e-4bc9-8934-0193db3f1d2a))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 744734d2-7c4b-47dd-a6e4-c6ca0f502fa6))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ba61d4cc-9080-4188-9a86-9625cfd3986e))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f5bfccb4-3020-4577-92f2-1ea3aee2e392))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1ce0ea67-3e71-468b-9a06-00c79c5e96c9))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1e672c82-408d-4785-8a4b-fe15f2850d21))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 635d773d-e371-489c-9339-c8095792b096))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 63f7070f-2418-48de-a9cb-a3cef1db0dc8))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a2f2a592-e1a2-4473-8307-409c7017d4ca))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "B.Cu") (tedit 5F85D7D7) (tstamp ebe05ab7-9ae3-4378-ac21-d75320464f2e)
    (at 133.49 94.92)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7e48be36-a1bb-4d51-bb25-cb69c110994a)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 -1 unlocked) (layer "B.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 4cd3ba0d-a179-4801-8414-cf64af4e1b9a)
    )
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 46d63aad-30a6-42b7-95d1-3690ad1103cc))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 57fbe8c4-8d5e-4a59-95bd-738bbfd20d65))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5b9c8015-c6cd-452c-9403-ade9d55dfe07))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6a7e5a07-7210-4e32-a837-f7679309ce59))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0e18b37-7eb0-4c2b-a988-33e6230044b9))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 26903c04-f6f4-4aee-86a5-489aa2cb2e78))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5297a107-7f53-4e54-b2a3-2c955bc9c165))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e5a461bc-44a4-4fcd-9461-48d2be06dbe8))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e62fc182-b6a7-4de1-bd60-30d00e04677b))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ebc52e50-137b-48e9-8e88-e578f170adfb))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2103c157-a228-4c1c-bcc6-14ab5016aeb4))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 23dfc34f-f8af-4cf6-8fc3-1cb2fb4de37d))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a98a199-78b8-42a1-8d19-9048dfa54b12))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8a374aa5-04ee-4b90-9433-cd9b21b0b6eb))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9d5d7712-05e5-4828-87da-305a753fddc3))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0e0abe74-3ad8-465a-95cf-16535e2546db))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45f61e89-eff4-4582-b279-1c3c2a19cf3f))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ba104d3d-b0c4-41e5-88dd-cf107c4e71e8))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c14eae0e-f660-4766-aeb9-1e8cf4972355))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c34b6b51-e606-4786-8fb4-7800c151b5c7))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 33cfd44d-480e-4f0b-bd77-1d5fcf852478))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 376ede74-3772-4d24-8549-49b38bc8eeaa))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d3070ab5-4811-4a4f-b183-06d6ca28a6ec))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dc028616-ecc9-419b-bb17-4867b93e551e))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f01a46c5-4bd7-44a8-99d6-efcb51e3967e))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp f4b1c2bb-d3a0-4132-81ac-0b981911f854)
    (at 181.75 102.54)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 37f727c7-8943-4b4c-a526-02042f2841b4)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 1004330e-0535-485c-b1aa-0f5705454104)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8ba79f8f-95dc-4b31-a5dc-4e85151a86bb))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 905d1ffd-12a3-48a0-ab3f-21ad69c17cda))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 93c7cfb9-63aa-46c8-a36f-1d0365a9d285))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b5427923-73e5-48f9-8593-d7a853d4191e))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e6b9f66f-c7f5-4d55-a99f-8124d7544680))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 059fbe36-3593-49c6-b217-c01526b2782e))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 630cd5c9-e53a-434f-b66a-3802327d152c))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6f945481-917f-44dd-a327-b53359f39562))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 75e69069-307c-4939-92dc-0b4e21b82970))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8dd8ebd1-8d32-48a9-a45e-a3c843cee924))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0b14e07d-1354-457a-9e15-37901cb480fe))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 73bf529c-1fe8-45f7-9cfc-80532b4aa51f))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a85b2637-68a9-4242-b8de-f4d0d43badea))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp aa0f4d9f-1460-44fa-85a5-f3c35f69052b))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fc2afd70-135c-49ca-99aa-78d1b5d320ee))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3f5b17b9-88b2-4bb2-bfbd-7dfe725453b0))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4a60ac83-40ca-4f48-b3b0-55f3e601b2a9))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 837e36c0-cb35-4a7f-be31-4b136f2df583))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp abf77dac-fe9d-4f86-98bd-b7027923bdef))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f22dbda6-f613-4535-8426-d50adb31748b))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0ecdb019-f8ed-4741-b21a-df0815fb9b13))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2805ee27-0ad6-4afc-8721-4cfe3a5b5894))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6f4c9d51-3cd9-44d1-9d28-c0053e50c9fa))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b5305c75-1f4b-444e-985c-f264339c1d45))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bcca11d4-a1b0-4a3a-afc0-88c486b3db8f))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F85D7CE) (tstamp ff6c7b5f-d335-4c8c-9666-4572fa179364)
    (at 163.97 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 601039d3-6af2-46f9-80b4-919e3b876667)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 59d7af02-bdd6-4b89-8f09-e40d033bc31f)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 07462af4-0ce3-43a6-a579-4b77d707212e))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 442eb9bd-2385-4fb9-aa6f-873b123fea31))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 59d8e34e-bcfe-44a6-b543-9209ebffe96c))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3dc9815-77ec-4f86-8cf3-c14d5462c1e8))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b6ed000f-6286-4a4e-9268-527786305e5e))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1a5da861-d5e7-4caf-ad2b-720d70ea4e1f))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1ea69f24-ed62-45c4-827e-68bdd6d43623))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8fbeb248-116c-4e12-8aa9-4624f430161b))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b81eea31-236f-406d-8deb-fb23c68ed6e8))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f7017e37-2a67-432d-9c69-06de956b540c))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 183cc8de-cceb-4355-9323-895aac0463ad))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6b1d7ab3-991c-41c5-b6a1-867e4ff432b9))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7bdca0b8-25be-45f3-a30c-6b40d782410c))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e5472542-0ddc-47ea-bf71-264d49ace498))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f03b3a2d-7e1a-4e80-b5b1-9895f77b0f31))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 13d97b4c-6a5a-4897-864e-7395427805a9))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3df6c525-6a59-47ab-9583-7b8a19bcddf3))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a836afbb-cd90-437f-bbaa-360df1774823))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c50e16c6-38af-47fc-a754-26eb793798bb))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fae7cfd1-4381-494d-8494-0e863363337f))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 146d6c9a-5bcb-4685-9cb7-d74ac15c2956))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5b271f4b-9374-4543-b88f-77710724b5f5))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8324b3ea-0da8-4391-bc46-4db93058e8a7))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 88e638c1-51e1-491e-a2d4-05ff06bfaf28))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc025d3b-e128-402f-98de-a09f4f43c742))
  )

  (gr_line (start 189.5 96.546) (end 189.5 103.454) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 04276d55-ac7c-485f-948f-8a774845619c))
  (gr_line (start 188.954 104) (end 188.446 104) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 124dab48-9974-4719-b0f8-643e20046522))
  (gr_circle (center 164.35 100) (end 163 100) (layer "Edge.Cuts") (width 0.16) (tstamp 1acbbb02-4bef-4cde-9eee-a32f18a72ab3))
  (gr_circle (center 142 100) (end 140.65 100) (layer "Edge.Cuts") (width 0.16) (tstamp 1c12fcbf-ccd6-4ab8-9840-28592e24f520))
  (gr_circle (center 175.78 100) (end 174.43 100) (layer "Edge.Cuts") (width 0.16) (tstamp 27906c26-f4c2-47ff-898d-33361faff86c))
  (gr_circle (center 175.78 100) (end 174.43 100) (layer "Edge.Cuts") (width 0.16) (tstamp 306f0e5e-f448-4631-9295-6445deaa48ff))
  (gr_line (start 192.5 87.5) (end 192.5 112.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 30eaf456-8def-42ab-9d03-edd0116b138c))
  (gr_arc (start 110.7 96.2) (end 111.046 96) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp 31fa2f0c-1297-47c3-ab73-306d7f04b2f6))
  (gr_arc (start 188.1 103.8) (end 187.9 103.454) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp 3c098fe5-03a9-4cb7-baa5-aefd3b54145e))
  (gr_line (start 110.5 103.454) (end 110.5 96.546) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 3cc2267e-e4e0-45de-b1b4-057ee5b5dfdf))
  (gr_line (start 111.554 104) (end 111.046 104) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 3fe71b76-7a41-4f49-bca5-00870391ce08))
  (gr_line (start 111.046 96) (end 111.554 96) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 47187d17-b603-4d91-89fb-4f436a49415f))
  (gr_arc (start 189.3 103.8) (end 188.954 104) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp 4fa148bc-29c1-43a0-a673-d3fb0507dce0))
  (gr_arc (start 188.1 96.2) (end 188.446 96) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp 5daa081e-6a4e-44be-a67b-8809dd0a9e3d))
  (gr_arc (start 150 100) (end 158.292 87.5) (angle -67.115) (layer "Edge.Cuts") (width 0.16) (tstamp 67a8d19a-202e-4842-bb8e-8f3dabbf0a2d))
  (gr_circle (center 158 100) (end 156.65 100) (layer "Edge.Cuts") (width 0.16) (tstamp 79f9bcd0-417a-449e-a8cc-db448b9eb862))
  (gr_line (start 188.446 96) (end 188.954 96) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 7ac253c8-bc92-4e06-b379-547f18443b49))
  (gr_line (start 187.9 103.454) (end 187.9 96.546) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 7b2dc936-234c-4ae8-aea9-c5b39abed41a))
  (gr_line (start 141.708 112.5) (end 107.5 112.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 8ec43023-b3b1-4f6e-852b-fbef7d2942f0))
  (gr_line (start 112.1 96.546) (end 112.1 103.454) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 94fa63f9-fb03-442e-9f58-63e9ca7e5254))
  (gr_arc (start 150 100) (end 141.708 112.5) (angle -67.115) (layer "Edge.Cuts") (width 0.16) (tstamp 9af55458-69d3-4e2b-980e-f8ca0c1a3a24))
  (gr_circle (center 170.7 100) (end 169.35 100) (layer "Edge.Cuts") (width 0.16) (tstamp ac324e9b-43c4-43fa-a8d9-e91d995c135a))
  (gr_arc (start 111.9 103.8) (end 111.554 104) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp b7c53b07-7587-4ec9-a09c-4a8244c5c7bf))
  (gr_line (start 107.5 87.5) (end 141.708 87.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp bc242052-5f2f-4df5-a976-42bfdb520554))
  (gr_arc (start 110.7 103.8) (end 110.5 103.454) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp bdf22f27-602a-4a5c-b8a3-36f187e64d35))
  (gr_line (start 107.5 112.5) (end 107.5 87.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp bf18d8d4-81f8-4108-b597-ab29a149f623))
  (gr_circle (center 150 92) (end 148.65 92) (layer "Edge.Cuts") (width 0.16) (tstamp c626a242-2213-4ebd-8197-361119c13a55))
  (gr_line (start 192.5 112.5) (end 158.292 112.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp cc1e7bfc-df87-4663-95be-ee1b8716c63a))
  (gr_line (start 158.292 87.5) (end 192.5 87.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp d1fea33c-dd3a-4100-ad4f-3c8b8669c9ef))
  (gr_arc (start 111.9 96.2) (end 112.1 96.546) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp db3080d6-4fa6-4fd9-a9ca-2d665ec35df9))
  (gr_circle (center 150 100) (end 146.9 100) (layer "Edge.Cuts") (width 0.16) (tstamp e1b03682-f89e-44b7-b852-b7c0ea2c6be7))
  (gr_arc (start 189.3 96.2) (end 189.5 96.546) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp e1b6f65d-7ddd-434a-a657-d3f69161d886))
  (gr_circle (center 170.7 100) (end 169.35 100) (layer "Edge.Cuts") (width 0.16) (tstamp e5d2c297-6908-4399-bb43-1d66734a34e4))
  (gr_circle (center 164.35 100) (end 163 100) (layer "Edge.Cuts") (width 0.16) (tstamp fd024366-f50e-424c-89c7-0d151d01f365))
  (gr_circle (center 150 108) (end 148.65 108) (layer "Edge.Cuts") (width 0.16) (tstamp ff76c9fc-59af-43d9-b17a-58efbbd4d29c))

)