/elec/quadcopter

To get this branch, use:
bzr branch http://bzr.ed.am/elec/quadcopter
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
(kicad_pcb (version 3) (host pcbnew "(2013-jul-07)-stable")

  (general
    (links 98)
    (no_connects 6)
    (area 25.070999 45.390999 76.529001 126.059001)
    (thickness 1.6)
    (drawings 0)
    (tracks 251)
    (zones 0)
    (modules 33)
    (nets 26)
  )

  (page A3)
  (layers
    (15 F.Cu signal)
    (0 B.Cu signal)
    (16 B.Adhes user)
    (17 F.Adhes user)
    (18 B.Paste user)
    (19 F.Paste user)
    (20 B.SilkS user)
    (21 F.SilkS user)
    (22 B.Mask user)
    (23 F.Mask user)
    (24 Dwgs.User user)
    (25 Cmts.User user)
    (26 Eco1.User user)
    (27 Eco2.User user)
    (28 Edge.Cuts user)
  )

  (setup
    (last_trace_width 0.381)
    (trace_clearance 0.254)
    (zone_clearance 0.508)
    (zone_45_only no)
    (trace_min 0.254)
    (segment_width 0.2)
    (edge_width 0.15)
    (via_size 0.889)
    (via_drill 0.635)
    (via_min_size 0.889)
    (via_min_drill 0.508)
    (uvia_size 0.508)
    (uvia_drill 0.127)
    (uvias_allowed no)
    (uvia_min_size 0.508)
    (uvia_min_drill 0.127)
    (pcb_text_width 0.3)
    (pcb_text_size 1.5 1.5)
    (mod_edge_width 0.15)
    (mod_text_size 1.5 1.5)
    (mod_text_width 0.15)
    (pad_size 2.032 1.524)
    (pad_drill 1.143)
    (pad_to_mask_clearance 0.2)
    (aux_axis_origin 0 0)
    (visible_elements FFFE3FBF)
    (pcbplotparams
      (layerselection 3178497)
      (usegerberextensions true)
      (excludeedgelayer true)
      (linewidth 0.100000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15)
      (hpglpenoverlay 2)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotothertext true)
      (plotinvisibletext false)
      (padsonsilk false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 1)
      (scaleselection 1)
      (outputdirectory ""))
  )

  (net 0 "")
  (net 1 /GND)
  (net 2 /VCC)
  (net 3 N-000001)
  (net 4 N-0000017)
  (net 5 N-0000018)
  (net 6 N-0000019)
  (net 7 N-000002)
  (net 8 N-0000020)
  (net 9 N-0000021)
  (net 10 N-0000022)
  (net 11 N-0000023)
  (net 12 N-0000024)
  (net 13 N-0000025)
  (net 14 N-0000026)
  (net 15 N-000003)
  (net 16 N-0000034)
  (net 17 N-000004)
  (net 18 N-0000048)
  (net 19 N-000005)
  (net 20 N-0000050)
  (net 21 N-0000052)
  (net 22 N-0000054)
  (net 23 N-0000060)
  (net 24 N-0000079)
  (net 25 N-0000080)

  (net_class Default "This is the default net class."
    (clearance 0.254)
    (trace_width 0.381)
    (via_dia 0.889)
    (via_drill 0.635)
    (uvia_dia 0.508)
    (uvia_drill 0.127)
    (add_net "")
    (add_net /GND)
    (add_net /VCC)
    (add_net N-000001)
    (add_net N-0000017)
    (add_net N-0000018)
    (add_net N-0000019)
    (add_net N-000002)
    (add_net N-0000020)
    (add_net N-0000021)
    (add_net N-0000022)
    (add_net N-0000023)
    (add_net N-0000024)
    (add_net N-0000025)
    (add_net N-0000026)
    (add_net N-000003)
    (add_net N-0000034)
    (add_net N-000004)
    (add_net N-0000048)
    (add_net N-000005)
    (add_net N-0000050)
    (add_net N-0000052)
    (add_net N-0000054)
    (add_net N-0000060)
    (add_net N-0000079)
    (add_net N-0000080)
  )

  (module R3 (layer F.Cu) (tedit 534C7795) (tstamp 5345C6FF)
    (at 35.56 93.98 90)
    (descr "Resitance 3 pas")
    (tags R)
    (path /5320CEF3)
    (autoplace_cost180 10)
    (fp_text reference R1 (at 0 0.127 90) (layer F.SilkS) hide
      (effects (font (size 1.397 1.27) (thickness 0.2032)))
    )
    (fp_text value 20K (at 0 0.127 90) (layer F.SilkS)
      (effects (font (size 1.397 1.27) (thickness 0.2032)))
    )
    (fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.2032))
    (pad 1 thru_hole circle (at -3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 23 N-0000060)
    )
    (pad 2 thru_hole circle (at 3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 24 N-0000079)
    )
    (model discret/resistor.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module R3 (layer F.Cu) (tedit 534C956E) (tstamp 5345CB8B)
    (at 38.1 93.98 270)
    (descr "Resitance 3 pas")
    (tags R)
    (path /5320CF02)
    (autoplace_cost180 10)
    (fp_text reference R2 (at 0 0.127 270) (layer F.SilkS) hide
      (effects (font (size 1.397 1.27) (thickness 0.2032)))
    )
    (fp_text value 10K (at 0 0.127 270) (layer F.SilkS)
      (effects (font (size 1.397 1.27) (thickness 0.2032)))
    )
    (fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.2032))
    (pad 1 thru_hole circle (at -3.81 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 24 N-0000079)
    )
    (pad 2 thru_hole circle (at 3.81 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (model discret/resistor.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C718)
    (at 39.37 58.42 90)
    (path /5321281E)
    (attr virtual)
    (fp_text reference P5 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 2 /VCC)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 534C790C) (tstamp 534C7AD5)
    (at 35.56 119.38 180)
    (path /53212E1B)
    (attr virtual)
    (fp_text reference P1 (at -1.905 -3.81 180) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 180) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 180) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
    (pad 2 thru_hole oval (at 1.27 0 180) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 23 N-0000060)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C739)
    (at 69.85 58.42 90)
    (path /532128A9)
    (attr virtual)
    (fp_text reference P13 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 2 /VCC)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C744)
    (at 62.23 58.42 90)
    (path /5321289A)
    (attr virtual)
    (fp_text reference P11 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 2 /VCC)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C74F)
    (at 54.61 58.42 90)
    (path /5321288B)
    (attr virtual)
    (fp_text reference P9 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 2 /VCC)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C75A)
    (at 46.99 58.42 90)
    (path /5321287C)
    (attr virtual)
    (fp_text reference P7 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 2 /VCC)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C765)
    (at 31.75 58.42 90)
    (path /5321280F)
    (attr virtual)
    (fp_text reference P3 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 2 /VCC)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C770)
    (at 69.85 50.8 90)
    (path /53212800)
    (attr virtual)
    (fp_text reference P14 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 23 N-0000060)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C77B)
    (at 62.23 50.8 90)
    (path /532127F1)
    (attr virtual)
    (fp_text reference P12 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 23 N-0000060)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C786)
    (at 54.61 50.8 90)
    (path /532127E2)
    (attr virtual)
    (fp_text reference P10 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 23 N-0000060)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C791)
    (at 46.99 50.8 90)
    (path /532127D3)
    (attr virtual)
    (fp_text reference P8 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 23 N-0000060)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C79C)
    (at 39.37 50.8 90)
    (path /532127B5)
    (attr virtual)
    (fp_text reference P6 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 23 N-0000060)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PINHEAD1-2 (layer F.Cu) (tedit 4C5EDFB2) (tstamp 5345C7A7)
    (at 31.75 50.8 90)
    (path /53212777)
    (attr virtual)
    (fp_text reference P4 (at -1.905 -3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_text value CONN_2 (at 0 3.81 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.0889)))
    )
    (fp_line (start 2.54 -1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end 2.54 -3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start -2.54 -3.175) (end -2.54 3.175) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -3.175) (end 2.54 3.175) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 23 N-0000060)
    )
    (pad 2 thru_hole oval (at 1.27 0 90) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu F.Paste F.SilkS F.Mask)
      (net 1 /GND)
    )
  )

  (module PIN_ARRAY_4x1 (layer F.Cu) (tedit 534C7F7E) (tstamp 534C7FE8)
    (at 68.58 68.58 270)
    (descr "Double rangee de contacts 2 x 5 pins")
    (tags CONN)
    (path /53497310)
    (fp_text reference P2 (at 0 -2.54 270) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value HC-SR04_PROXSENS (at 0 2.54 270) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 5.08 1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 -1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start -5.08 -1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 1.27) (end 5.08 -1.27) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole oval (at -3.81 0 270) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 2 thru_hole oval (at -1.27 0 270) (size 1.524 2.286) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 18 N-0000048)
    )
    (pad 3 thru_hole circle (at 1.27 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 21 N-0000052)
    )
    (pad 4 thru_hole circle (at 3.81 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (model pin_array\pins_array_4x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module IMU_Mount (layer F.Cu) (tedit 534C96DF) (tstamp 5345C7DA)
    (at 43.18 93.98)
    (path /532A16AB)
    (fp_text reference U1 (at 0 -2.54) (layer F.SilkS)
      (effects (font (size 1.5 1.5) (thickness 0.15)))
    )
    (fp_text value IMU_MOUNT (at 0 0) (layer F.SilkS)
      (effects (font (size 1.5 1.5) (thickness 0.15)))
    )
    (fp_line (start -12.7 8.89) (end 12.7 8.89) (layer F.SilkS) (width 0.15))
    (fp_line (start -12.7 8.89) (end -12.7 -8.89) (layer F.SilkS) (width 0.15))
    (fp_line (start 12.7 8.89) (end 12.7 -8.89) (layer F.SilkS) (width 0.15))
    (fp_line (start -12.7 -8.89) (end 12.7 -8.89) (layer F.SilkS) (width 0.15))
    (fp_line (start -12.7 -8.89) (end 12.7 -8.89) (layer F.SilkS) (width 0.15))
    (fp_line (start 12.7 -8.89) (end -12.7 -8.89) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole circle (at 11.43 2.54) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 22 N-0000054)
    )
    (pad 2 thru_hole oval (at 11.43 0) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 20 N-0000050)
    )
    (pad 3 thru_hole oval (at 11.43 -2.54) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 4 thru_hole oval (at 11.43 -5.08) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 5 thru_hole circle (at -11.43 7.62) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 6 thru_hole circle (at -11.43 5.08) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 7 thru_hole circle (at -11.43 2.54) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 8 thru_hole circle (at -11.43 0) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 9 thru_hole circle (at -11.43 -2.54) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 10 thru_hole circle (at -11.43 -5.08) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 11 thru_hole circle (at -11.43 -7.62) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
  )

  (module Arduino_Mega_Shield_Partial (layer F.Cu) (tedit 534C83CF) (tstamp 534C656E)
    (at 49.53 77.47)
    (path /532A24F4)
    (fp_text reference U3 (at 0 -2.54) (layer F.SilkS)
      (effects (font (size 1.5 1.5) (thickness 0.15)))
    )
    (fp_text value ARDUINO_MEGA_SHIELD (at 0 0) (layer F.SilkS)
      (effects (font (size 1.5 1.5) (thickness 0.15)))
    )
    (fp_line (start 26.67 -31.75) (end 26.67 48.26) (layer F.SilkS) (width 0.15))
    (fp_line (start -24.13 48.26) (end -24.13 -31.75) (layer F.SilkS) (width 0.15))
    (fp_line (start 26.67 48.26) (end -24.13 48.26) (layer F.SilkS) (width 0.15))
    (fp_line (start 26.67 -31.75) (end -24.13 -31.75) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole circle (at -22.86 -11.43) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 2 thru_hole circle (at -22.86 -8.89) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 3 thru_hole oval (at -22.86 -6.35) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 25 N-0000080)
    )
    (pad 4 thru_hole oval (at -22.86 -3.81) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 5 thru_hole circle (at -22.86 -1.27) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 6 thru_hole circle (at -22.86 1.27) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 7 thru_hole circle (at -22.86 6.35) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 24 N-0000079)
    )
    (pad 8 thru_hole circle (at -22.86 8.89) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 9 thru_hole circle (at -22.86 11.43) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 10 thru_hole circle (at -22.86 13.97) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 11 thru_hole circle (at -22.86 16.51) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 12 thru_hole circle (at -22.86 19.05) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 13 thru_hole circle (at -22.86 21.59) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 14 thru_hole circle (at -22.86 24.13) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 15 thru_hole circle (at -22.86 29.21) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 16 thru_hole circle (at -22.86 31.75) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 17 thru_hole circle (at -22.86 34.29) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 18 thru_hole circle (at -22.86 36.83) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 19 thru_hole circle (at -22.86 39.37) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 20 thru_hole circle (at -22.86 41.91) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 21 thru_hole circle (at -22.86 44.45) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 23 thru_hole circle (at 25.4 41.91) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 22 N-0000054)
    )
    (pad 24 thru_hole circle (at 25.4 39.37) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 20 N-0000050)
    )
    (pad 25 thru_hole circle (at 25.4 36.83) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 16 N-0000034)
    )
    (pad 26 thru_hole circle (at 25.4 34.29) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 N-000005)
    )
    (pad 27 thru_hole circle (at 25.4 31.75) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 28 thru_hole circle (at 25.4 29.21) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 29 thru_hole circle (at 25.4 26.67) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 30 thru_hole circle (at 25.4 24.13) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 31 thru_hole circle (at 25.4 19.05) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 32 thru_hole circle (at 25.4 16.51) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 33 thru_hole circle (at 25.4 13.97) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 34 thru_hole circle (at 25.4 11.43) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 35 thru_hole circle (at 25.4 8.89) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 36 thru_hole circle (at 25.4 6.35) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 37 thru_hole circle (at 25.4 3.81) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 38 thru_hole circle (at 25.4 1.27) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 39 thru_hole circle (at 25.4 -2.54) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 40 thru_hole circle (at 25.4 -5.08) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 41 thru_hole circle (at 25.4 -7.62) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 42 thru_hole circle (at 25.4 -10.16) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 43 thru_hole circle (at 25.4 -12.7) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 21 N-0000052)
    )
    (pad 44 thru_hole circle (at 25.4 -15.24) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 18 N-0000048)
    )
    (pad 45 thru_hole circle (at 25.4 -17.78) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 46 thru_hole circle (at 25.4 -20.32) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 25 N-0000080)
    )
    (pad 22 thru_hole circle (at -22.86 46.99) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
  )

  (module R3 (layer F.Cu) (tedit 534C928E) (tstamp 534C80B7)
    (at 46.99 71.12 90)
    (descr "Resitance 3 pas")
    (tags R)
    (path /53496D70)
    (autoplace_cost180 10)
    (fp_text reference R3 (at 0 0.127 90) (layer F.SilkS) hide
      (effects (font (size 1.397 1.27) (thickness 0.2032)))
    )
    (fp_text value 10k (at 0 0.127 90) (layer F.SilkS)
      (effects (font (size 1.397 1.27) (thickness 0.2032)))
    )
    (fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.2032))
    (pad 1 thru_hole circle (at -3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 2 thru_hole circle (at 3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 4 N-0000017)
    )
    (model discret/resistor.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module R3 (layer F.Cu) (tedit 534C9292) (tstamp 5349AFE9)
    (at 44.45 71.12 270)
    (descr "Resitance 3 pas")
    (tags R)
    (path /53496D82)
    (autoplace_cost180 10)
    (fp_text reference R4 (at 0 0.127 270) (layer F.SilkS) hide
      (effects (font (size 1.397 1.27) (thickness 0.2032)))
    )
    (fp_text value 10k (at 0 0.127 270) (layer F.SilkS)
      (effects (font (size 1.397 1.27) (thickness 0.2032)))
    )
    (fp_line (start -3.81 0) (end -3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.81 0) (end 3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 0) (end 3.302 -1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 -1.016) (end -3.302 -1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 -1.016) (end -3.302 1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 1.016) (end 3.302 1.016) (layer F.SilkS) (width 0.2032))
    (fp_line (start 3.302 1.016) (end 3.302 0) (layer F.SilkS) (width 0.2032))
    (fp_line (start -3.302 -0.508) (end -2.794 -1.016) (layer F.SilkS) (width 0.2032))
    (pad 1 thru_hole circle (at -3.81 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 12 N-0000024)
    )
    (pad 2 thru_hole circle (at 3.81 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (model discret/resistor.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module pin_array_4x2 (layer F.Cu) (tedit 534C8BAF) (tstamp 534C8C00)
    (at 66.04 92.71 270)
    (descr "Double rangee de contacts 2 x 4 pins")
    (tags CONN)
    (path /53496DB9)
    (fp_text reference P18 (at 0 -3.81 270) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value "ESC P & G" (at 0 3.81 270) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start -5.08 -2.54) (end 5.08 -2.54) (layer F.SilkS) (width 0.3048))
    (fp_line (start 5.08 -2.54) (end 5.08 2.54) (layer F.SilkS) (width 0.3048))
    (fp_line (start 5.08 2.54) (end -5.08 2.54) (layer F.SilkS) (width 0.3048))
    (fp_line (start -5.08 2.54) (end -5.08 -2.54) (layer F.SilkS) (width 0.3048))
    (pad 1 thru_hole circle (at -3.81 1.27 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 2 thru_hole oval (at -3.81 -1.27 270) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 3 thru_hole circle (at -1.27 1.27 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 4 thru_hole oval (at -1.27 -1.27 270) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 5 thru_hole circle (at 1.27 1.27 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 6 thru_hole oval (at 1.27 -1.27 270) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 7 thru_hole circle (at 3.81 1.27 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 8 thru_hole oval (at 3.81 -1.27 270) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (model pin_array/pins_array_4x2.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module PIN_ARRAY_4x1 (layer F.Cu) (tedit 534C77CC) (tstamp 5349B010)
    (at 62.23 92.71 270)
    (descr "Double rangee de contacts 2 x 5 pins")
    (tags CONN)
    (path /53496DBF)
    (fp_text reference P17 (at 0 -2.54 270) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value "ESC Sig" (at 0 2.54 270) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 5.08 1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 -1.27) (end -5.08 -1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start -5.08 -1.27) (end -5.08 1.27) (layer F.SilkS) (width 0.254))
    (fp_line (start 5.08 1.27) (end 5.08 -1.27) (layer F.SilkS) (width 0.254))
    (pad 1 thru_hole circle (at -3.81 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 17 N-000004)
    )
    (pad 2 thru_hole circle (at -1.27 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 15 N-000003)
    )
    (pad 3 thru_hole circle (at 1.27 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 7 N-000002)
    )
    (pad 4 thru_hole circle (at 3.81 0 270) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 3 N-000001)
    )
    (model pin_array\pins_array_4x1.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module D3 (layer F.Cu) (tedit 534C9179) (tstamp 5349B02C)
    (at 34.29 71.12 90)
    (descr "Diode 3 pas")
    (tags "DIODE DEV")
    (path /53496D88)
    (fp_text reference D1 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value DIODE (at 0 0 90) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 3.81 0) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 0) (end 3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 -1.016) (end -3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 -1.016) (end -3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.81 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 1.016) (end 3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 1.016) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.54 -1.016) (end 2.54 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.286 1.016) (end 2.286 -1.016) (layer F.SilkS) (width 0.3048))
    (pad 2 thru_hole oval (at 3.81 0 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 12 N-0000024)
    )
    (pad 1 thru_hole circle (at -3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 14 N-0000026)
    )
    (model discret/diode.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module D3 (layer F.Cu) (tedit 534C918B) (tstamp 5349B03C)
    (at 41.91 71.12 90)
    (descr "Diode 3 pas")
    (tags "DIODE DEV")
    (path /53496D8E)
    (fp_text reference D4 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value DIODE (at 0 0 90) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 3.81 0) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 0) (end 3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 -1.016) (end -3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 -1.016) (end -3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.81 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 1.016) (end 3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 1.016) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.54 -1.016) (end 2.54 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.286 1.016) (end 2.286 -1.016) (layer F.SilkS) (width 0.3048))
    (pad 2 thru_hole oval (at 3.81 0 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 12 N-0000024)
    )
    (pad 1 thru_hole circle (at -3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 13 N-0000025)
    )
    (model discret/diode.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module D3 (layer F.Cu) (tedit 534C9180) (tstamp 5349B04C)
    (at 36.83 71.12 90)
    (descr "Diode 3 pas")
    (tags "DIODE DEV")
    (path /53496D94)
    (fp_text reference D2 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value DIODE (at 0 0 90) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 3.81 0) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 0) (end 3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 -1.016) (end -3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 -1.016) (end -3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.81 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 1.016) (end 3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 1.016) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.54 -1.016) (end 2.54 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.286 1.016) (end 2.286 -1.016) (layer F.SilkS) (width 0.3048))
    (pad 2 thru_hole oval (at 3.81 0 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 12 N-0000024)
    )
    (pad 1 thru_hole circle (at -3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 11 N-0000023)
    )
    (model discret/diode.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module D3 (layer F.Cu) (tedit 534C9186) (tstamp 5349B05C)
    (at 39.37 71.12 90)
    (descr "Diode 3 pas")
    (tags "DIODE DEV")
    (path /53496D9A)
    (fp_text reference D3 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value DIODE (at 0 0 90) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 3.81 0) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 0) (end 3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 -1.016) (end -3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 -1.016) (end -3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.81 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 1.016) (end 3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 1.016) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.54 -1.016) (end 2.54 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.286 1.016) (end 2.286 -1.016) (layer F.SilkS) (width 0.3048))
    (pad 2 thru_hole oval (at 3.81 0 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 12 N-0000024)
    )
    (pad 1 thru_hole circle (at -3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 10 N-0000022)
    )
    (model discret/diode.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module D3 (layer F.Cu) (tedit 534C973E) (tstamp 5349B06C)
    (at 53.34 71.12 90)
    (descr "Diode 3 pas")
    (tags "DIODE DEV")
    (path /53496DA0)
    (fp_text reference D5 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value DIODE (at 0 0 90) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 3.81 0) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 0) (end 3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 -1.016) (end -3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 -1.016) (end -3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.81 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 1.016) (end 3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 1.016) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.54 -1.016) (end 2.54 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.286 1.016) (end 2.286 -1.016) (layer F.SilkS) (width 0.3048))
    (pad 2 thru_hole circle (at 3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 4 N-0000017)
    )
    (pad 1 thru_hole oval (at -3.81 0 90) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 9 N-0000021)
    )
    (model discret/diode.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module D3 (layer F.Cu) (tedit 534C9281) (tstamp 5349B07C)
    (at 55.88 71.12 90)
    (descr "Diode 3 pas")
    (tags "DIODE DEV")
    (path /53496DA6)
    (fp_text reference D6 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value DIODE (at 0 0 90) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 3.81 0) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 0) (end 3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 -1.016) (end -3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 -1.016) (end -3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.81 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 1.016) (end 3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 1.016) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.54 -1.016) (end 2.54 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.286 1.016) (end 2.286 -1.016) (layer F.SilkS) (width 0.3048))
    (pad 2 thru_hole circle (at 3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 4 N-0000017)
    )
    (pad 1 thru_hole circle (at -3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 8 N-0000020)
    )
    (model discret/diode.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module D3 (layer F.Cu) (tedit 534C927B) (tstamp 5349B08C)
    (at 58.42 71.12 90)
    (descr "Diode 3 pas")
    (tags "DIODE DEV")
    (path /53496DAC)
    (fp_text reference D7 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value DIODE (at 0 0 90) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 3.81 0) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 0) (end 3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 -1.016) (end -3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 -1.016) (end -3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.81 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 1.016) (end 3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 1.016) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.54 -1.016) (end 2.54 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.286 1.016) (end 2.286 -1.016) (layer F.SilkS) (width 0.3048))
    (pad 2 thru_hole circle (at 3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 4 N-0000017)
    )
    (pad 1 thru_hole circle (at -3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 6 N-0000019)
    )
    (model discret/diode.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module D3 (layer F.Cu) (tedit 534C9274) (tstamp 5349B09C)
    (at 60.96 71.12 90)
    (descr "Diode 3 pas")
    (tags "DIODE DEV")
    (path /53496DB2)
    (fp_text reference D8 (at 0 0 90) (layer F.SilkS)
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_text value DIODE (at 0 0 90) (layer F.SilkS) hide
      (effects (font (size 1.016 1.016) (thickness 0.2032)))
    )
    (fp_line (start 3.81 0) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 0) (end 3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 -1.016) (end -3.048 -1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 -1.016) (end -3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.81 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 0) (end -3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start -3.048 1.016) (end 3.048 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 3.048 1.016) (end 3.048 0) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.54 -1.016) (end 2.54 1.016) (layer F.SilkS) (width 0.3048))
    (fp_line (start 2.286 1.016) (end 2.286 -1.016) (layer F.SilkS) (width 0.3048))
    (pad 2 thru_hole circle (at 3.81 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 4 N-0000017)
    )
    (pad 1 thru_hole oval (at -3.81 0 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 5 N-0000018)
    )
    (model discret/diode.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.3 0.3 0.3))
      (rotate (xyz 0 0 0))
    )
  )

  (module Arduino_Mini_Pro_Mount (layer F.Cu) (tedit 534C9713) (tstamp 534C97E9)
    (at 49.53 71.12 90)
    (path /53497285)
    (fp_text reference U4 (at -1.27 0 180) (layer F.SilkS)
      (effects (font (size 1.5 1.5) (thickness 0.15)))
    )
    (fp_text value ARDUINO_MINI_PRO_MOUNT (at 1.27 -1.27 180) (layer F.SilkS)
      (effects (font (size 1.5 1.5) (thickness 0.15)))
    )
    (fp_line (start -10.16 15.24) (end 7.62 15.24) (layer F.SilkS) (width 0.15))
    (fp_line (start 7.62 15.24) (end 7.62 -17.78) (layer F.SilkS) (width 0.15))
    (fp_line (start 7.62 -17.78) (end -10.16 -17.78) (layer F.SilkS) (width 0.15))
    (fp_line (start -10.16 -17.78) (end -10.16 15.24) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole oval (at -8.89 -13.97 90) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 16 N-0000034)
    )
    (pad 2 thru_hole oval (at -8.89 -11.43 90) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 19 N-000005)
    )
    (pad 3 thru_hole oval (at -8.89 -8.89 90) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 4 thru_hole oval (at -8.89 -6.35 90) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 5 thru_hole circle (at -8.89 -3.81 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 12 N-0000024)
    )
    (pad 6 thru_hole oval (at -8.89 -1.27 90) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 4 N-0000017)
    )
    (pad 7 thru_hole oval (at -8.89 1.27 90) (size 2.032 1.524) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 3 N-000001)
    )
    (pad 8 thru_hole circle (at -8.89 3.81 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 7 N-000002)
    )
    (pad 9 thru_hole oval (at -8.89 6.35 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 15 N-000003)
    )
    (pad 10 thru_hole oval (at -8.89 8.89 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 17 N-000004)
    )
    (pad 11 thru_hole oval (at -8.89 11.43 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 12 thru_hole oval (at -8.89 13.97 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 13 thru_hole circle (at 6.35 13.97 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 14 thru_hole circle (at 6.35 11.43 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 15 thru_hole circle (at 6.35 8.89 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 16 thru_hole circle (at 6.35 6.35 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 17 thru_hole circle (at 6.35 3.81 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 18 thru_hole circle (at 6.35 1.27 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 19 thru_hole circle (at 6.35 -1.27 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 20 thru_hole circle (at 6.35 -3.81 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 21 thru_hole circle (at 6.35 -6.35 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 22 thru_hole oval (at 6.35 -8.89 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
    (pad 23 thru_hole oval (at 6.35 -11.43 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 24 thru_hole oval (at 6.35 -13.97 90) (size 1.524 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
  )

  (module 9x3_Conn_Block (layer F.Cu) (tedit 534C7723) (tstamp 534C9726)
    (at 57.15 116.84 90)
    (path /53497B7A)
    (fp_text reference U5 (at -5.08 0 180) (layer F.SilkS)
      (effects (font (size 1.5 1.5) (thickness 0.15)))
    )
    (fp_text value 9X3_CONN_BLOCK (at 5.08 -1.27 180) (layer F.SilkS)
      (effects (font (size 1.5 1.5) (thickness 0.15)))
    )
    (fp_line (start -3.81 -11.43) (end 3.81 -11.43) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.81 -11.43) (end 3.81 11.43) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.81 11.43) (end -3.81 11.43) (layer F.SilkS) (width 0.15))
    (fp_line (start -3.81 11.43) (end -3.81 -11.43) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole circle (at -2.54 -10.16 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 2 thru_hole circle (at -2.54 -7.62 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 3 thru_hole circle (at -2.54 -5.08 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 4 thru_hole circle (at -2.54 -2.54 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 5 thru_hole circle (at -2.54 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 6 thru_hole circle (at -2.54 2.54 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 7 thru_hole circle (at -2.54 5.08 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 8 thru_hole circle (at -2.54 7.62 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 9 thru_hole circle (at -2.54 10.16 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad 10 thru_hole circle (at 0 -10.16 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 11 thru_hole circle (at 0 -7.62 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 12 thru_hole circle (at 0 -5.08 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 13 thru_hole circle (at 0 -2.54 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 14 thru_hole circle (at 0 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 15 thru_hole circle (at 0 2.54 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 16 thru_hole circle (at 0 5.08 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 17 thru_hole circle (at 0 7.62 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 18 thru_hole circle (at 0 10.16 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
    (pad 19 thru_hole circle (at 2.54 -10.16 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 14 N-0000026)
    )
    (pad 20 thru_hole circle (at 2.54 -7.62 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 11 N-0000023)
    )
    (pad 21 thru_hole circle (at 2.54 -5.08 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 10 N-0000022)
    )
    (pad 22 thru_hole circle (at 2.54 -2.54 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 13 N-0000025)
    )
    (pad 23 thru_hole circle (at 2.54 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 9 N-0000021)
    )
    (pad 24 thru_hole circle (at 2.54 2.54 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 8 N-0000020)
    )
    (pad 25 thru_hole circle (at 2.54 5.08 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 6 N-0000019)
    )
    (pad 26 thru_hole circle (at 2.54 7.62 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 5 N-0000018)
    )
    (pad 27 thru_hole circle (at 2.54 10.16 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
    )
  )

  (module LM78XXV (layer F.Cu) (tedit 534C7888) (tstamp 5345C7C5)
    (at 36.83 114.3 90)
    (descr "Regulateur TO220 serie LM78xx")
    (tags "TR TO220")
    (path /5320D1B3)
    (fp_text reference U2 (at 3.81 0 180) (layer F.SilkS)
      (effects (font (size 1.524 1.016) (thickness 0.2032)))
    )
    (fp_text value 7805 (at -3.175 -0.635 180) (layer F.SilkS)
      (effects (font (size 1.524 1.016) (thickness 0.2032)))
    )
    (fp_line (start 1.905 -4.445) (end 2.54 -4.445) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 -4.445) (end 2.54 4.445) (layer F.SilkS) (width 0.254))
    (fp_line (start 2.54 4.445) (end 1.905 4.445) (layer F.SilkS) (width 0.254))
    (fp_line (start -1.905 -4.445) (end 1.905 -4.445) (layer F.SilkS) (width 0.254))
    (fp_line (start 1.905 -4.445) (end 1.905 4.445) (layer F.SilkS) (width 0.254))
    (fp_line (start 1.905 4.445) (end -1.905 4.445) (layer F.SilkS) (width 0.254))
    (fp_line (start -1.905 4.445) (end -1.905 -4.445) (layer F.SilkS) (width 0.254))
    (pad VI thru_hole circle (at 0 -2.54 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 23 N-0000060)
    )
    (pad GND thru_hole circle (at 0 0 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 1 /GND)
    )
    (pad VO thru_hole circle (at 0 2.54 90) (size 2.032 2.032) (drill 1.143)
      (layers *.Cu *.Mask F.SilkS)
      (net 2 /VCC)
    )
  )

  (segment (start 67.31 96.52) (end 63.5 100.33) (width 0.381) (layer B.Cu) (net 1) (status 400000))
  (segment (start 52.07 97.79) (end 52.07 88.9) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9858))
  (segment (start 54.61 100.33) (end 52.07 97.79) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9857))
  (segment (start 63.5 100.33) (end 54.61 100.33) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9856))
  (segment (start 54.61 88.9) (end 52.07 88.9) (width 0.381) (layer B.Cu) (net 1) (status 400000))
  (segment (start 52.07 88.9) (end 43.18 80.01) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9852) (status 800000))
  (segment (start 38.1 64.77) (end 38.1 63.5) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 30.48 57.15) (end 31.75 57.15) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9124))
  (segment (start 29.21 58.42) (end 30.48 57.15) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9122))
  (segment (start 29.21 60.96) (end 29.21 58.42) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9121))
  (segment (start 30.48 62.23) (end 29.21 60.96) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9120))
  (segment (start 31.75 62.23) (end 30.48 62.23) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C911D))
  (segment (start 36.83 62.23) (end 31.75 62.23) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C911B))
  (segment (start 38.1 63.5) (end 36.83 62.23) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C9118))
  (segment (start 67.31 119.38) (end 69.85 116.84) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 69.85 116.84) (end 69.85 101.6) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8FB5))
  (segment (start 69.85 101.6) (end 72.39 99.06) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8FB8))
  (segment (start 72.39 99.06) (end 74.93 99.06) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8FBD))
  (segment (start 74.93 99.06) (end 77.47 96.52) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8FBF))
  (segment (start 77.47 96.52) (end 77.47 60.96) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8FC1))
  (segment (start 77.47 60.96) (end 76.2 59.69) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8FC3))
  (segment (start 76.2 59.69) (end 74.93 59.69) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8FC9))
  (segment (start 67.31 119.38) (end 64.77 119.38) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 64.77 119.38) (end 62.23 119.38) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F4B))
  (segment (start 62.23 119.38) (end 59.69 119.38) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F4C))
  (segment (start 59.69 119.38) (end 57.15 119.38) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F4D))
  (segment (start 57.15 119.38) (end 54.61 119.38) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F4E))
  (segment (start 54.61 119.38) (end 52.07 119.38) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F4F))
  (segment (start 52.07 119.38) (end 49.53 119.38) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F50))
  (segment (start 49.53 119.38) (end 46.99 119.38) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F51))
  (segment (start 46.99 119.38) (end 36.83 119.38) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F52))
  (segment (start 36.83 114.3) (end 36.83 102.87) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 38.1 101.6) (end 38.1 97.79) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F36))
  (segment (start 36.83 102.87) (end 38.1 101.6) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8F33))
  (segment (start 67.31 88.9) (end 67.31 91.44) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 67.31 91.44) (end 67.31 93.98) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8D2B))
  (segment (start 67.31 93.98) (end 67.31 96.52) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8D2C))
  (segment (start 36.83 119.38) (end 36.83 114.3) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 26.67 76.2) (end 26.67 73.66) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 46.99 74.93) (end 44.45 74.93) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 44.45 74.93) (end 43.18 76.2) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C817B))
  (segment (start 43.18 76.2) (end 43.18 80.01) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C817D))
  (segment (start 68.58 72.39) (end 67.31 72.39) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 71.12 62.23) (end 73.66 59.69) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8008))
  (segment (start 71.12 64.77) (end 71.12 62.23) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8003))
  (segment (start 69.85 66.04) (end 71.12 64.77) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8002))
  (segment (start 67.31 66.04) (end 69.85 66.04) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C8000))
  (segment (start 66.04 67.31) (end 67.31 66.04) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7FFF))
  (segment (start 66.04 71.12) (end 66.04 67.31) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7FFD))
  (segment (start 67.31 72.39) (end 66.04 71.12) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7FFB))
  (segment (start 73.66 59.69) (end 74.93 59.69) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C800F))
  (segment (start 69.85 57.15) (end 71.12 57.15) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 71.12 57.15) (end 72.39 58.42) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7E0D))
  (segment (start 72.39 58.42) (end 73.66 59.69) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7E11))
  (segment (start 73.66 59.69) (end 74.93 59.69) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7E13))
  (segment (start 69.85 49.53) (end 71.12 49.53) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 71.12 49.53) (end 72.39 50.8) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7DF5))
  (segment (start 72.39 50.8) (end 72.39 58.42) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7E03))
  (segment (start 73.66 59.69) (end 74.93 59.69) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7E09))
  (segment (start 72.39 58.42) (end 73.66 59.69) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7E08))
  (segment (start 31.75 57.15) (end 39.37 57.15) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 39.37 57.15) (end 46.99 57.15) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7A99))
  (segment (start 46.99 57.15) (end 54.61 57.15) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7A9B))
  (segment (start 54.61 57.15) (end 62.23 57.15) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7A9C))
  (segment (start 62.23 57.15) (end 69.85 57.15) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C7A9E))
  (segment (start 31.75 49.53) (end 39.37 49.53) (width 0.381) (layer B.Cu) (net 1))
  (segment (start 39.37 49.53) (end 46.99 49.53) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C79E6))
  (segment (start 46.99 49.53) (end 54.61 49.53) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C79E8))
  (segment (start 54.61 49.53) (end 62.23 49.53) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C79EB))
  (segment (start 62.23 49.53) (end 69.85 49.53) (width 0.381) (layer B.Cu) (net 1) (tstamp 534C79EC))
  (segment (start 64.77 96.52) (end 64.77 97.79) (width 0.381) (layer B.Cu) (net 2) (status 400000))
  (segment (start 62.23 99.06) (end 54.61 91.44) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C985F) (status 800000))
  (segment (start 63.5 99.06) (end 62.23 99.06) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C985E))
  (segment (start 64.77 97.79) (end 63.5 99.06) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C985D))
  (segment (start 54.61 91.44) (end 55.88 90.17) (width 0.381) (layer B.Cu) (net 2) (status 400000))
  (segment (start 55.88 90.17) (end 55.88 87.63) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C9844))
  (segment (start 55.88 87.63) (end 49.53 81.28) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C9845))
  (segment (start 49.53 81.28) (end 49.53 78.74) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C9846))
  (segment (start 49.53 78.74) (end 52.07 76.2) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C9847))
  (segment (start 52.07 76.2) (end 52.07 73.66) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C9848))
  (segment (start 52.07 73.66) (end 53.34 72.39) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C9849))
  (segment (start 53.34 72.39) (end 58.42 72.39) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C984A))
  (segment (start 58.42 72.39) (end 66.04 64.77) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C984B))
  (segment (start 66.04 64.77) (end 66.04 63.5) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C984D))
  (segment (start 66.04 63.5) (end 64.77 62.23) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C984E))
  (segment (start 64.77 62.23) (end 45.72 62.23) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C984F))
  (segment (start 39.37 114.3) (end 39.37 102.87) (width 0.381) (layer B.Cu) (net 2))
  (segment (start 40.64 90.17) (end 29.21 78.74) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C975B))
  (segment (start 40.64 101.6) (end 40.64 90.17) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C975A))
  (segment (start 39.37 102.87) (end 40.64 101.6) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C9759))
  (segment (start 43.18 64.77) (end 41.91 66.04) (width 0.381) (layer B.Cu) (net 2))
  (segment (start 41.91 66.04) (end 33.02 66.04) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C94C9))
  (segment (start 33.02 66.04) (end 30.48 68.58) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C94CA))
  (segment (start 30.48 68.58) (end 30.48 72.39) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C94CB))
  (segment (start 30.48 72.39) (end 29.21 73.66) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C94CC))
  (segment (start 29.21 73.66) (end 29.21 78.74) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C94CD))
  (segment (start 29.21 78.74) (end 26.67 78.74) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C907F))
  (segment (start 39.37 114.3) (end 41.91 116.84) (width 0.381) (layer B.Cu) (net 2))
  (segment (start 41.91 116.84) (end 46.99 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F3A))
  (segment (start 46.99 116.84) (end 49.53 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F3E))
  (segment (start 49.53 116.84) (end 52.07 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F3F))
  (segment (start 52.07 116.84) (end 54.61 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F42))
  (segment (start 54.61 116.84) (end 57.15 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F43))
  (segment (start 57.15 116.84) (end 59.69 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F44))
  (segment (start 59.69 116.84) (end 62.23 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F45))
  (segment (start 62.23 116.84) (end 64.77 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F46))
  (segment (start 64.77 116.84) (end 67.31 116.84) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8F47))
  (segment (start 64.77 96.52) (end 64.77 93.98) (width 0.381) (layer B.Cu) (net 2))
  (segment (start 64.77 93.98) (end 64.77 91.44) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8D27))
  (segment (start 64.77 91.44) (end 64.77 88.9) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8D28))
  (segment (start 43.18 64.77) (end 43.18 63.5) (width 0.381) (layer B.Cu) (net 2))
  (segment (start 43.18 63.5) (end 44.45 62.23) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8474))
  (segment (start 44.45 62.23) (end 45.72 62.23) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8476))
  (segment (start 46.99 60.96) (end 46.99 59.69) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8479))
  (segment (start 45.72 62.23) (end 46.99 60.96) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C8478))
  (segment (start 68.58 64.77) (end 68.58 62.23) (width 0.381) (layer B.Cu) (net 2))
  (segment (start 69.85 60.96) (end 69.85 59.69) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C7FF8))
  (segment (start 68.58 62.23) (end 69.85 60.96) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C7FF7))
  (segment (start 31.75 59.69) (end 39.37 59.69) (width 0.381) (layer B.Cu) (net 2))
  (segment (start 39.37 59.69) (end 46.99 59.69) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C7AA5))
  (segment (start 46.99 59.69) (end 54.61 59.69) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C7AA6))
  (segment (start 54.61 59.69) (end 62.23 59.69) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C7AA7))
  (segment (start 62.23 59.69) (end 69.85 59.69) (width 0.381) (layer B.Cu) (net 2) (tstamp 534C7AA8))
  (segment (start 50.8 80.01) (end 57.15 86.36) (width 0.381) (layer B.Cu) (net 3))
  (segment (start 57.15 91.44) (end 62.23 96.52) (width 0.381) (layer B.Cu) (net 3) (tstamp 534C8CAC))
  (segment (start 57.15 86.36) (end 57.15 91.44) (width 0.381) (layer B.Cu) (net 3) (tstamp 534C8CA9))
  (segment (start 46.99 67.31) (end 46.99 68.58) (width 0.381) (layer B.Cu) (net 4))
  (segment (start 48.26 78.74) (end 48.26 80.01) (width 0.381) (layer B.Cu) (net 4) (tstamp 534C8175))
  (segment (start 50.8 76.2) (end 48.26 78.74) (width 0.381) (layer B.Cu) (net 4) (tstamp 534C8173))
  (segment (start 50.8 72.39) (end 50.8 76.2) (width 0.381) (layer B.Cu) (net 4) (tstamp 534C8172))
  (segment (start 46.99 68.58) (end 50.8 72.39) (width 0.381) (layer B.Cu) (net 4) (tstamp 534C8171))
  (segment (start 46.99 67.31) (end 53.34 67.31) (width 0.381) (layer B.Cu) (net 4))
  (segment (start 53.34 67.31) (end 55.88 67.31) (width 0.381) (layer B.Cu) (net 4) (tstamp 534C8158))
  (segment (start 55.88 67.31) (end 58.42 67.31) (width 0.381) (layer B.Cu) (net 4) (tstamp 534C815A))
  (segment (start 58.42 67.31) (end 60.96 67.31) (width 0.381) (layer B.Cu) (net 4) (tstamp 534C815B))
  (segment (start 60.96 74.93) (end 64.77 74.93) (width 0.381) (layer B.Cu) (net 5))
  (segment (start 64.77 105.41) (end 64.77 114.3) (width 0.381) (layer B.Cu) (net 5) (tstamp 534C8C52))
  (segment (start 72.39 97.79) (end 64.77 105.41) (width 0.381) (layer B.Cu) (net 5) (tstamp 534C8C51))
  (segment (start 72.39 82.55) (end 72.39 97.79) (width 0.381) (layer B.Cu) (net 5) (tstamp 534C8C50))
  (segment (start 64.77 74.93) (end 72.39 82.55) (width 0.381) (layer B.Cu) (net 5) (tstamp 534C8C4F))
  (segment (start 58.42 74.93) (end 59.69 76.2) (width 0.381) (layer B.Cu) (net 6))
  (segment (start 62.23 106.68) (end 62.23 114.3) (width 0.381) (layer B.Cu) (net 6) (tstamp 534C8C4C))
  (segment (start 71.12 97.79) (end 62.23 106.68) (width 0.381) (layer B.Cu) (net 6) (tstamp 534C8C4B))
  (segment (start 71.12 82.55) (end 71.12 97.79) (width 0.381) (layer B.Cu) (net 6) (tstamp 534C8C4A))
  (segment (start 64.77 76.2) (end 71.12 82.55) (width 0.381) (layer B.Cu) (net 6) (tstamp 534C8C49))
  (segment (start 59.69 76.2) (end 64.77 76.2) (width 0.381) (layer B.Cu) (net 6) (tstamp 534C8C48))
  (segment (start 53.34 80.01) (end 58.42 85.09) (width 0.381) (layer B.Cu) (net 7))
  (segment (start 58.42 90.17) (end 62.23 93.98) (width 0.381) (layer B.Cu) (net 7) (tstamp 534C8C9F))
  (segment (start 58.42 85.09) (end 58.42 90.17) (width 0.381) (layer B.Cu) (net 7) (tstamp 534C8C99))
  (segment (start 55.88 74.93) (end 55.88 76.2) (width 0.381) (layer B.Cu) (net 8))
  (segment (start 59.69 107.95) (end 59.69 114.3) (width 0.381) (layer B.Cu) (net 8) (tstamp 534C8C44))
  (segment (start 69.85 97.79) (end 59.69 107.95) (width 0.381) (layer B.Cu) (net 8) (tstamp 534C8C43))
  (segment (start 69.85 82.55) (end 69.85 97.79) (width 0.381) (layer B.Cu) (net 8) (tstamp 534C8C42))
  (segment (start 64.77 77.47) (end 69.85 82.55) (width 0.381) (layer B.Cu) (net 8) (tstamp 534C8C41))
  (segment (start 57.15 77.47) (end 64.77 77.47) (width 0.381) (layer B.Cu) (net 8) (tstamp 534C8C40))
  (segment (start 55.88 76.2) (end 57.15 77.47) (width 0.381) (layer B.Cu) (net 8) (tstamp 534C8C3F))
  (segment (start 53.34 74.93) (end 53.34 77.47) (width 0.381) (layer B.Cu) (net 9))
  (segment (start 57.15 109.22) (end 57.15 114.3) (width 0.381) (layer B.Cu) (net 9) (tstamp 534C8C3B))
  (segment (start 68.58 97.79) (end 57.15 109.22) (width 0.381) (layer B.Cu) (net 9) (tstamp 534C8C39))
  (segment (start 68.58 82.55) (end 68.58 97.79) (width 0.381) (layer B.Cu) (net 9) (tstamp 534C8C37))
  (segment (start 64.77 78.74) (end 68.58 82.55) (width 0.381) (layer B.Cu) (net 9) (tstamp 534C8C35))
  (segment (start 54.61 78.74) (end 64.77 78.74) (width 0.381) (layer B.Cu) (net 9) (tstamp 534C8C34))
  (segment (start 53.34 77.47) (end 54.61 78.74) (width 0.381) (layer B.Cu) (net 9) (tstamp 534C8C33))
  (segment (start 52.07 114.3) (end 52.07 107.95) (width 0.381) (layer B.Cu) (net 10))
  (segment (start 39.37 82.55) (end 43.18 86.36) (width 0.381) (layer B.Cu) (net 10) (tstamp 534C8EEA))
  (segment (start 39.37 82.55) (end 39.37 74.93) (width 0.381) (layer B.Cu) (net 10))
  (segment (start 44.45 87.63) (end 43.18 86.36) (width 0.381) (layer B.Cu) (net 10) (tstamp 534C9751))
  (segment (start 44.45 100.33) (end 44.45 87.63) (width 0.381) (layer B.Cu) (net 10) (tstamp 534C9750))
  (segment (start 52.07 107.95) (end 44.45 100.33) (width 0.381) (layer B.Cu) (net 10) (tstamp 534C974F))
  (segment (start 49.53 114.3) (end 49.53 106.68) (width 0.381) (layer B.Cu) (net 11))
  (segment (start 36.83 82.55) (end 36.83 74.93) (width 0.381) (layer B.Cu) (net 11))
  (segment (start 36.83 82.55) (end 41.91 87.63) (width 0.381) (layer B.Cu) (net 11) (tstamp 534C8ED0))
  (segment (start 43.18 88.9) (end 41.91 87.63) (width 0.381) (layer B.Cu) (net 11) (tstamp 534C974C))
  (segment (start 43.18 100.33) (end 43.18 88.9) (width 0.381) (layer B.Cu) (net 11) (tstamp 534C974B))
  (segment (start 49.53 106.68) (end 43.18 100.33) (width 0.381) (layer B.Cu) (net 11) (tstamp 534C974A))
  (segment (start 44.45 67.31) (end 44.45 68.58) (width 0.381) (layer B.Cu) (net 12))
  (segment (start 45.72 78.74) (end 45.72 80.01) (width 0.381) (layer B.Cu) (net 12) (tstamp 534C816D))
  (segment (start 49.53 74.93) (end 45.72 78.74) (width 0.381) (layer B.Cu) (net 12) (tstamp 534C8166))
  (segment (start 49.53 73.66) (end 49.53 74.93) (width 0.381) (layer B.Cu) (net 12) (tstamp 534C8161))
  (segment (start 44.45 68.58) (end 49.53 73.66) (width 0.381) (layer B.Cu) (net 12) (tstamp 534C815F))
  (segment (start 34.29 67.31) (end 36.83 67.31) (width 0.381) (layer B.Cu) (net 12))
  (segment (start 36.83 67.31) (end 39.37 67.31) (width 0.381) (layer B.Cu) (net 12) (tstamp 534C80C4))
  (segment (start 39.37 67.31) (end 41.91 67.31) (width 0.381) (layer B.Cu) (net 12) (tstamp 534C80C5))
  (segment (start 41.91 67.31) (end 44.45 67.31) (width 0.381) (layer B.Cu) (net 12) (tstamp 534C80C6))
  (segment (start 44.45 85.09) (end 45.72 86.36) (width 0.381) (layer B.Cu) (net 13))
  (segment (start 41.91 74.93) (end 41.91 82.55) (width 0.381) (layer B.Cu) (net 13))
  (segment (start 41.91 82.55) (end 44.45 85.09) (width 0.381) (layer B.Cu) (net 13) (tstamp 534C8EFD))
  (segment (start 54.61 109.22) (end 54.61 114.3) (width 0.381) (layer B.Cu) (net 13) (tstamp 534C9756))
  (segment (start 45.72 100.33) (end 54.61 109.22) (width 0.381) (layer B.Cu) (net 13) (tstamp 534C9755))
  (segment (start 45.72 86.36) (end 45.72 100.33) (width 0.381) (layer B.Cu) (net 13) (tstamp 534C9754))
  (segment (start 46.99 114.3) (end 46.99 105.41) (width 0.381) (layer B.Cu) (net 14))
  (segment (start 34.29 82.55) (end 34.29 74.93) (width 0.381) (layer B.Cu) (net 14) (tstamp 534C8EC7))
  (segment (start 40.64 88.9) (end 34.29 82.55) (width 0.381) (layer B.Cu) (net 14) (tstamp 534C8EC1))
  (segment (start 41.91 90.17) (end 40.64 88.9) (width 0.381) (layer B.Cu) (net 14) (tstamp 534C9743))
  (segment (start 41.91 100.33) (end 41.91 90.17) (width 0.381) (layer B.Cu) (net 14) (tstamp 534C9742))
  (segment (start 46.99 105.41) (end 41.91 100.33) (width 0.381) (layer B.Cu) (net 14) (tstamp 534C9741))
  (segment (start 55.88 80.01) (end 59.69 83.82) (width 0.381) (layer B.Cu) (net 15))
  (segment (start 59.69 88.9) (end 62.23 91.44) (width 0.381) (layer B.Cu) (net 15) (tstamp 534C8C8D))
  (segment (start 59.69 83.82) (end 59.69 88.9) (width 0.381) (layer B.Cu) (net 15) (tstamp 534C8C8A))
  (segment (start 58.42 80.01) (end 60.96 82.55) (width 0.381) (layer B.Cu) (net 17))
  (segment (start 60.96 87.63) (end 62.23 88.9) (width 0.381) (layer B.Cu) (net 17) (tstamp 534C8CD6))
  (segment (start 60.96 82.55) (end 60.96 87.63) (width 0.381) (layer B.Cu) (net 17) (tstamp 534C8CD3))
  (segment (start 68.58 67.31) (end 69.85 67.31) (width 0.381) (layer B.Cu) (net 18))
  (segment (start 73.66 62.23) (end 74.93 62.23) (width 0.381) (layer B.Cu) (net 18) (tstamp 534C8017))
  (segment (start 72.39 63.5) (end 73.66 62.23) (width 0.381) (layer B.Cu) (net 18) (tstamp 534C8015))
  (segment (start 72.39 64.77) (end 72.39 63.5) (width 0.381) (layer B.Cu) (net 18) (tstamp 534C8013))
  (segment (start 69.85 67.31) (end 72.39 64.77) (width 0.381) (layer B.Cu) (net 18) (tstamp 534C8012))
  (segment (start 68.58 69.85) (end 69.85 69.85) (width 0.381) (layer B.Cu) (net 21))
  (segment (start 69.85 69.85) (end 74.93 64.77) (width 0.381) (layer B.Cu) (net 21) (tstamp 534C801B))
  (segment (start 35.56 97.79) (end 35.56 101.6) (width 0.381) (layer B.Cu) (net 23))
  (segment (start 34.29 102.87) (end 34.29 114.3) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8F2F))
  (segment (start 35.56 101.6) (end 34.29 102.87) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8F28))
  (segment (start 34.29 114.3) (end 29.21 109.22) (width 0.381) (layer B.Cu) (net 23))
  (segment (start 29.21 52.07) (end 31.75 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C845C))
  (segment (start 27.94 53.34) (end 29.21 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C845B))
  (segment (start 27.94 63.5) (end 27.94 53.34) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C845A))
  (segment (start 29.21 64.77) (end 27.94 63.5) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8459))
  (segment (start 29.21 71.12) (end 29.21 64.77) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8458))
  (segment (start 27.94 72.39) (end 29.21 71.12) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8456))
  (segment (start 25.4 72.39) (end 27.94 72.39) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8455))
  (segment (start 24.13 73.66) (end 25.4 72.39) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8454))
  (segment (start 24.13 102.87) (end 24.13 73.66) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8453))
  (segment (start 25.4 104.14) (end 24.13 102.87) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8452))
  (segment (start 27.94 104.14) (end 25.4 104.14) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8451))
  (segment (start 29.21 105.41) (end 27.94 104.14) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8450))
  (segment (start 29.21 106.68) (end 29.21 105.41) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C844F))
  (segment (start 29.21 109.22) (end 29.21 106.68) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C844E))
  (segment (start 31.75 52.07) (end 39.37 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C845D))
  (segment (start 39.37 52.07) (end 46.99 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C845E))
  (segment (start 46.99 52.07) (end 54.61 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C845F))
  (segment (start 54.61 52.07) (end 62.23 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8460))
  (segment (start 62.23 52.07) (end 69.85 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C8461))
  (segment (start 34.29 119.38) (end 34.29 114.3) (width 0.381) (layer B.Cu) (net 23))
  (segment (start 31.75 52.07) (end 39.37 52.07) (width 0.381) (layer B.Cu) (net 23))
  (segment (start 39.37 52.07) (end 46.99 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C79FC))
  (segment (start 46.99 52.07) (end 54.61 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C79FD))
  (segment (start 54.61 52.07) (end 62.23 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C79FE))
  (segment (start 62.23 52.07) (end 69.85 52.07) (width 0.381) (layer B.Cu) (net 23) (tstamp 534C79FF))
  (segment (start 35.56 90.17) (end 38.1 90.17) (width 0.381) (layer B.Cu) (net 24))
  (segment (start 26.67 83.82) (end 33.02 83.82) (width 0.381) (layer B.Cu) (net 24))
  (segment (start 35.56 86.36) (end 35.56 90.17) (width 0.381) (layer B.Cu) (net 24) (tstamp 534C8F14))
  (segment (start 33.02 83.82) (end 35.56 86.36) (width 0.381) (layer B.Cu) (net 24) (tstamp 534C8F12))
  (segment (start 74.93 57.15) (end 74.93 48.26) (width 0.381) (layer B.Cu) (net 25))
  (segment (start 25.4 71.12) (end 26.67 71.12) (width 0.381) (layer B.Cu) (net 25) (tstamp 534C7A6F))
  (segment (start 24.13 69.85) (end 25.4 71.12) (width 0.381) (layer B.Cu) (net 25) (tstamp 534C7A6E))
  (segment (start 24.13 63.5) (end 24.13 69.85) (width 0.381) (layer B.Cu) (net 25) (tstamp 534C7A64))
  (segment (start 26.67 60.96) (end 24.13 63.5) (width 0.381) (layer B.Cu) (net 25) (tstamp 534C7A62))
  (segment (start 26.67 48.26) (end 26.67 60.96) (width 0.381) (layer B.Cu) (net 25) (tstamp 534C7A5A))
  (segment (start 27.94 46.99) (end 26.67 48.26) (width 0.381) (layer B.Cu) (net 25) (tstamp 534C7A57))
  (segment (start 73.66 46.99) (end 27.94 46.99) (width 0.381) (layer B.Cu) (net 25) (tstamp 534C7A56))
  (segment (start 74.93 48.26) (end 73.66 46.99) (width 0.381) (layer B.Cu) (net 25) (tstamp 534C7A54))

)