-
Notifications
You must be signed in to change notification settings - Fork 1
/
MDBT40-Wing.kicad_pcb
1184 lines (1168 loc) · 76.6 KB
/
MDBT40-Wing.kicad_pcb
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
(kicad_pcb (version 4) (host pcbnew 4.0.2-stable)
(general
(links 44)
(no_connects 0)
(area 10.109287 14.263486 54.660715 60.485001)
(thickness 1.6)
(drawings 58)
(tracks 154)
(zones 0)
(modules 7)
(nets 39)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user hide)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user hide)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.4064)
(user_trace_width 0.254)
(user_trace_width 0.4064)
(user_trace_width 0.6096)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only yes)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.8796 1.8796)
(pad_drill 1.016)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x00030_80000001)
(usegerberextensions false)
(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)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 4)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 /GND)
(net 2 /AVDD)
(net 3 /P0.21)
(net 4 /P0.22)
(net 5 /P0.23)
(net 6 /P0.24)
(net 7 /P0.25)
(net 8 /P0.26)
(net 9 /P0.27)
(net 10 /P0.28)
(net 11 /P0.29)
(net 12 /P0.30)
(net 13 /VDD)
(net 14 /P0.20)
(net 15 /P0.18)
(net 16 /P0.16)
(net 17 /P0.14)
(net 18 /P0.12)
(net 19 /P0.10)
(net 20 /P0.08)
(net 21 /P0.19)
(net 22 /P0.17)
(net 23 /P0.15)
(net 24 /P0.13)
(net 25 /P0.11)
(net 26 /P0.09)
(net 27 /P0.00)
(net 28 /P0.01)
(net 29 /P0.02)
(net 30 /P0.03)
(net 31 /P0.04)
(net 32 /P0.05)
(net 33 /P0.06)
(net 34 /P0.07)
(net 35 /SWDIO)
(net 36 /SWCLK)
(net 37 /DCC)
(net 38 /DEC2)
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.4064)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /DCC)
(add_net /DEC2)
(add_net /P0.00)
(add_net /P0.01)
(add_net /P0.02)
(add_net /P0.03)
(add_net /P0.04)
(add_net /P0.05)
(add_net /P0.06)
(add_net /P0.07)
(add_net /P0.08)
(add_net /P0.09)
(add_net /P0.10)
(add_net /P0.11)
(add_net /P0.12)
(add_net /P0.13)
(add_net /P0.14)
(add_net /P0.15)
(add_net /P0.16)
(add_net /P0.17)
(add_net /P0.18)
(add_net /P0.19)
(add_net /P0.20)
(add_net /P0.21)
(add_net /P0.22)
(add_net /P0.23)
(add_net /P0.24)
(add_net /P0.25)
(add_net /P0.26)
(add_net /P0.27)
(add_net /P0.28)
(add_net /P0.29)
(add_net /P0.30)
(add_net /SWCLK)
(add_net /SWDIO)
)
(net_class Power ""
(clearance 0.2)
(trace_width 0.6096)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /AVDD)
(add_net /GND)
(add_net /VDD)
)
(module Connectors:GS2 (layer B.Cu) (tedit 58E46A13) (tstamp 58DDA146)
(at 24.13 28.575 180)
(descr "2-pin solder bridge")
(tags "solder bridge")
(path /58DBFE6D)
(attr smd)
(fp_text reference JP1 (at 1.78 0 270) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value Jumper (at -1.8 0 270) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.1 1.45) (end 1.1 -1.5) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.1 -1.5) (end -1.1 -1.5) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.1 -1.5) (end -1.1 1.45) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.1 1.45) (end 1.1 1.45) (layer B.CrtYd) (width 0.05))
(fp_line (start -0.89 1.27) (end -0.89 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start 0.89 -1.27) (end 0.89 1.27) (layer B.SilkS) (width 0.12))
(fp_line (start 0.89 -1.27) (end -0.89 -1.27) (layer B.SilkS) (width 0.12))
(fp_line (start -0.89 1.27) (end 0.89 1.27) (layer B.SilkS) (width 0.12))
(pad 1 smd rect (at 0 0.64 180) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 2 /AVDD))
(pad 2 smd rect (at 0 -0.64 180) (size 1.27 0.97) (layers B.Cu B.Paste B.Mask)
(net 13 /VDD))
)
(module sing_pad:1Pin (layer B.Cu) (tedit 58E4A390) (tstamp 58DDA13B)
(at 26.035 53.975)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path /58DC3A43)
(fp_text reference J4 (at 0 2.032) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value DCC (at 0 -2.032) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd rect (at 0 0) (size 2 2) (layers B.Cu B.Paste B.Mask)
(net 37 /DCC))
)
(module sing_pad:1Pin (layer B.Cu) (tedit 58E4A399) (tstamp 58DDA140)
(at 38.735 53.975)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path /58DC3F04)
(fp_text reference J5 (at 0 2.032) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value DEC2 (at 0 -2.032) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(pad 1 smd rect (at 0 0) (size 2 2) (layers B.Cu B.Paste B.Mask)
(net 38 /DEC2))
)
(module connectors:1X14 (layer F.Cu) (tedit 58E469BB) (tstamp 58DDBC19)
(at 20.955 20.955 270)
(path /58DDBC41)
(fp_text reference J1 (at -1.3462 -1.8288 270) (layer F.SilkS) hide
(effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
)
(fp_text value LEFT (at -1.27 3.175 270) (layer F.SilkS) hide
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start 14.605 -1.27) (end 15.875 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 15.875 -1.27) (end 16.51 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 16.51 0.635) (end 15.875 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 11.43 -0.635) (end 12.065 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 12.065 -1.27) (end 13.335 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 13.335 -1.27) (end 13.97 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 13.97 0.635) (end 13.335 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 13.335 1.27) (end 12.065 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 12.065 1.27) (end 11.43 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 14.605 -1.27) (end 13.97 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 13.97 0.635) (end 14.605 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 15.875 1.27) (end 14.605 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.985 -1.27) (end 8.255 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 8.255 -1.27) (end 8.89 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 8.89 0.635) (end 8.255 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 8.89 -0.635) (end 9.525 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 9.525 -1.27) (end 10.795 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 10.795 -1.27) (end 11.43 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 11.43 0.635) (end 10.795 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 10.795 1.27) (end 9.525 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 9.525 1.27) (end 8.89 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.81 -0.635) (end 4.445 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 4.445 -1.27) (end 5.715 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 5.715 -1.27) (end 6.35 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.35 0.635) (end 5.715 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 5.715 1.27) (end 4.445 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 4.445 1.27) (end 3.81 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.985 -1.27) (end 6.35 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.35 0.635) (end 6.985 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 8.255 1.27) (end 6.985 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start -0.635 -1.27) (end 0.635 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 1.27 0.635) (end 0.635 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 1.27 -0.635) (end 1.905 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 1.905 -1.27) (end 3.175 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.175 -1.27) (end 3.81 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.81 0.635) (end 3.175 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.175 1.27) (end 1.905 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 1.905 1.27) (end 1.27 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start -1.27 -0.635) (end -1.27 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start -0.635 -1.27) (end -1.27 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 0.635 1.27) (end -0.635 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 32.385 -1.27) (end 33.655 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 33.655 -1.27) (end 34.29 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 34.29 0.635) (end 33.655 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 29.21 -0.635) (end 29.845 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 29.845 -1.27) (end 31.115 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 31.115 -1.27) (end 31.75 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 31.75 0.635) (end 31.115 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 31.115 1.27) (end 29.845 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 29.845 1.27) (end 29.21 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 32.385 -1.27) (end 31.75 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 31.75 0.635) (end 32.385 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 33.655 1.27) (end 32.385 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 24.765 -1.27) (end 26.035 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 26.035 -1.27) (end 26.67 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 26.67 0.635) (end 26.035 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 26.67 -0.635) (end 27.305 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 27.305 -1.27) (end 28.575 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 28.575 -1.27) (end 29.21 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 29.21 0.635) (end 28.575 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 28.575 1.27) (end 27.305 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 27.305 1.27) (end 26.67 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 21.59 -0.635) (end 22.225 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 22.225 -1.27) (end 23.495 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 23.495 -1.27) (end 24.13 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 24.13 0.635) (end 23.495 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 23.495 1.27) (end 22.225 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 22.225 1.27) (end 21.59 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 24.765 -1.27) (end 24.13 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 24.13 0.635) (end 24.765 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 26.035 1.27) (end 24.765 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 17.145 -1.27) (end 18.415 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 18.415 -1.27) (end 19.05 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 19.05 0.635) (end 18.415 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 19.05 -0.635) (end 19.685 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 19.685 -1.27) (end 20.955 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 20.955 -1.27) (end 21.59 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 21.59 0.635) (end 20.955 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 20.955 1.27) (end 19.685 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 19.685 1.27) (end 19.05 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 17.145 -1.27) (end 16.51 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 16.51 0.635) (end 17.145 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 18.415 1.27) (end 17.145 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 34.29 -0.635) (end 34.29 0.635) (layer F.SilkS) (width 0.2032))
(fp_poly (pts (xy 14.986 0.254) (xy 15.494 0.254) (xy 15.494 -0.254) (xy 14.986 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 12.446 0.254) (xy 12.954 0.254) (xy 12.954 -0.254) (xy 12.446 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 9.906 0.254) (xy 10.414 0.254) (xy 10.414 -0.254) (xy 9.906 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 7.366 0.254) (xy 7.874 0.254) (xy 7.874 -0.254) (xy 7.366 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 4.826 0.254) (xy 5.334 0.254) (xy 5.334 -0.254) (xy 4.826 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 2.286 0.254) (xy 2.794 0.254) (xy 2.794 -0.254) (xy 2.286 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -0.254 0.254) (xy 0.254 0.254) (xy 0.254 -0.254) (xy -0.254 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 32.766 0.254) (xy 33.274 0.254) (xy 33.274 -0.254) (xy 32.766 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 30.226 0.254) (xy 30.734 0.254) (xy 30.734 -0.254) (xy 30.226 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 27.686 0.254) (xy 28.194 0.254) (xy 28.194 -0.254) (xy 27.686 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 25.146 0.254) (xy 25.654 0.254) (xy 25.654 -0.254) (xy 25.146 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 22.606 0.254) (xy 23.114 0.254) (xy 23.114 -0.254) (xy 22.606 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 20.066 0.254) (xy 20.574 0.254) (xy 20.574 -0.254) (xy 20.066 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 17.526 0.254) (xy 18.034 0.254) (xy 18.034 -0.254) (xy 17.526 -0.254)) (layer Dwgs.User) (width 0))
(pad 1 thru_hole circle (at 0 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 1 /GND))
(pad 2 thru_hole circle (at 2.54 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 2 /AVDD))
(pad 3 thru_hole circle (at 5.08 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 3 /P0.21))
(pad 4 thru_hole circle (at 7.62 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 4 /P0.22))
(pad 5 thru_hole circle (at 10.16 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 5 /P0.23))
(pad 6 thru_hole circle (at 12.7 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 6 /P0.24))
(pad 7 thru_hole circle (at 15.24 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 7 /P0.25))
(pad 8 thru_hole circle (at 17.78 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 8 /P0.26))
(pad 9 thru_hole circle (at 20.32 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 9 /P0.27))
(pad 10 thru_hole circle (at 22.86 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 10 /P0.28))
(pad 11 thru_hole circle (at 25.4 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 11 /P0.29))
(pad 12 thru_hole circle (at 27.94 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 12 /P0.30))
(pad 13 thru_hole circle (at 30.48 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 13 /VDD))
(pad 14 thru_hole circle (at 33.02 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 36 /SWCLK))
)
(module connectors:1X14 (layer F.Cu) (tedit 58E469CA) (tstamp 58DDBCBE)
(at 43.815 20.955 270)
(path /58DDC122)
(fp_text reference J2 (at -1.3462 -1.8288 270) (layer F.SilkS) hide
(effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
)
(fp_text value RIGHT (at -1.27 3.175 270) (layer F.SilkS) hide
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start 14.605 -1.27) (end 15.875 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 15.875 -1.27) (end 16.51 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 16.51 0.635) (end 15.875 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 11.43 -0.635) (end 12.065 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 12.065 -1.27) (end 13.335 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 13.335 -1.27) (end 13.97 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 13.97 0.635) (end 13.335 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 13.335 1.27) (end 12.065 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 12.065 1.27) (end 11.43 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 14.605 -1.27) (end 13.97 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 13.97 0.635) (end 14.605 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 15.875 1.27) (end 14.605 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.985 -1.27) (end 8.255 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 8.255 -1.27) (end 8.89 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 8.89 0.635) (end 8.255 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 8.89 -0.635) (end 9.525 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 9.525 -1.27) (end 10.795 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 10.795 -1.27) (end 11.43 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 11.43 0.635) (end 10.795 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 10.795 1.27) (end 9.525 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 9.525 1.27) (end 8.89 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.81 -0.635) (end 4.445 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 4.445 -1.27) (end 5.715 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 5.715 -1.27) (end 6.35 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.35 0.635) (end 5.715 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 5.715 1.27) (end 4.445 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 4.445 1.27) (end 3.81 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.985 -1.27) (end 6.35 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 6.35 0.635) (end 6.985 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 8.255 1.27) (end 6.985 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start -0.635 -1.27) (end 0.635 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 1.27 0.635) (end 0.635 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 1.27 -0.635) (end 1.905 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 1.905 -1.27) (end 3.175 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.175 -1.27) (end 3.81 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.81 0.635) (end 3.175 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 3.175 1.27) (end 1.905 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 1.905 1.27) (end 1.27 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start -1.27 -0.635) (end -1.27 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start -0.635 -1.27) (end -1.27 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start -1.27 0.635) (end -0.635 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 0.635 1.27) (end -0.635 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 32.385 -1.27) (end 33.655 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 33.655 -1.27) (end 34.29 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 34.29 0.635) (end 33.655 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 29.21 -0.635) (end 29.845 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 29.845 -1.27) (end 31.115 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 31.115 -1.27) (end 31.75 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 31.75 0.635) (end 31.115 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 31.115 1.27) (end 29.845 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 29.845 1.27) (end 29.21 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 32.385 -1.27) (end 31.75 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 31.75 0.635) (end 32.385 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 33.655 1.27) (end 32.385 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 24.765 -1.27) (end 26.035 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 26.035 -1.27) (end 26.67 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 26.67 0.635) (end 26.035 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 26.67 -0.635) (end 27.305 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 27.305 -1.27) (end 28.575 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 28.575 -1.27) (end 29.21 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 29.21 0.635) (end 28.575 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 28.575 1.27) (end 27.305 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 27.305 1.27) (end 26.67 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 21.59 -0.635) (end 22.225 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 22.225 -1.27) (end 23.495 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 23.495 -1.27) (end 24.13 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 24.13 0.635) (end 23.495 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 23.495 1.27) (end 22.225 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 22.225 1.27) (end 21.59 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 24.765 -1.27) (end 24.13 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 24.13 0.635) (end 24.765 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 26.035 1.27) (end 24.765 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 17.145 -1.27) (end 18.415 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 18.415 -1.27) (end 19.05 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 19.05 0.635) (end 18.415 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 19.05 -0.635) (end 19.685 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 19.685 -1.27) (end 20.955 -1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 20.955 -1.27) (end 21.59 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 21.59 0.635) (end 20.955 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 20.955 1.27) (end 19.685 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 19.685 1.27) (end 19.05 0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 17.145 -1.27) (end 16.51 -0.635) (layer F.SilkS) (width 0.2032))
(fp_line (start 16.51 0.635) (end 17.145 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 18.415 1.27) (end 17.145 1.27) (layer F.SilkS) (width 0.2032))
(fp_line (start 34.29 -0.635) (end 34.29 0.635) (layer F.SilkS) (width 0.2032))
(fp_poly (pts (xy 14.986 0.254) (xy 15.494 0.254) (xy 15.494 -0.254) (xy 14.986 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 12.446 0.254) (xy 12.954 0.254) (xy 12.954 -0.254) (xy 12.446 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 9.906 0.254) (xy 10.414 0.254) (xy 10.414 -0.254) (xy 9.906 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 7.366 0.254) (xy 7.874 0.254) (xy 7.874 -0.254) (xy 7.366 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 4.826 0.254) (xy 5.334 0.254) (xy 5.334 -0.254) (xy 4.826 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 2.286 0.254) (xy 2.794 0.254) (xy 2.794 -0.254) (xy 2.286 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -0.254 0.254) (xy 0.254 0.254) (xy 0.254 -0.254) (xy -0.254 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 32.766 0.254) (xy 33.274 0.254) (xy 33.274 -0.254) (xy 32.766 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 30.226 0.254) (xy 30.734 0.254) (xy 30.734 -0.254) (xy 30.226 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 27.686 0.254) (xy 28.194 0.254) (xy 28.194 -0.254) (xy 27.686 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 25.146 0.254) (xy 25.654 0.254) (xy 25.654 -0.254) (xy 25.146 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 22.606 0.254) (xy 23.114 0.254) (xy 23.114 -0.254) (xy 22.606 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 20.066 0.254) (xy 20.574 0.254) (xy 20.574 -0.254) (xy 20.066 -0.254)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 17.526 0.254) (xy 18.034 0.254) (xy 18.034 -0.254) (xy 17.526 -0.254)) (layer Dwgs.User) (width 0))
(pad 1 thru_hole circle (at 0 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 14 /P0.20))
(pad 2 thru_hole circle (at 2.54 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 21 /P0.19))
(pad 3 thru_hole circle (at 5.08 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 15 /P0.18))
(pad 4 thru_hole circle (at 7.62 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 22 /P0.17))
(pad 5 thru_hole circle (at 10.16 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 16 /P0.16))
(pad 6 thru_hole circle (at 12.7 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 23 /P0.15))
(pad 7 thru_hole circle (at 15.24 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 17 /P0.14))
(pad 8 thru_hole circle (at 17.78 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 24 /P0.13))
(pad 9 thru_hole circle (at 20.32 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 18 /P0.12))
(pad 10 thru_hole circle (at 22.86 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 25 /P0.11))
(pad 11 thru_hole circle (at 25.4 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 19 /P0.10))
(pad 12 thru_hole circle (at 27.94 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 26 /P0.09))
(pad 13 thru_hole circle (at 30.48 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 20 /P0.08))
(pad 14 thru_hole circle (at 33.02 0) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 35 /SWDIO))
)
(module connectors:2X4 (layer F.Cu) (tedit 58E4A103) (tstamp 58DDBCCA)
(at 32.385 52.705)
(path /58DDC5B6)
(fp_text reference J3 (at -5.08 -3.175) (layer F.SilkS) hide
(effects (font (size 1.2065 1.2065) (thickness 0.127)) (justify left bottom))
)
(fp_text value BOTTOM (at -5.08 4.445) (layer F.SilkS) hide
(effects (font (size 1.2065 1.2065) (thickness 0.1016)) (justify left bottom))
)
(fp_line (start -5.08 1.905) (end -4.445 2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.175 2.54) (end -2.54 1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start -2.54 1.905) (end -1.905 2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.635 2.54) (end 0 1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start 0 1.905) (end 0.635 2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.905 2.54) (end 2.54 1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start 2.54 1.905) (end 3.175 2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start 4.445 2.54) (end 5.08 1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start -5.08 1.905) (end -5.08 -1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start -5.08 -1.905) (end -4.445 -2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start -4.445 -2.54) (end -3.175 -2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start -3.175 -2.54) (end -2.54 -1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start -2.54 -1.905) (end -1.905 -2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.905 -2.54) (end -0.635 -2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start -0.635 -2.54) (end 0 -1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start 0 -1.905) (end 0.635 -2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.635 -2.54) (end 1.905 -2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start 1.905 -2.54) (end 2.54 -1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start 2.54 -1.905) (end 3.175 -2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.175 -2.54) (end 4.445 -2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start 4.445 -2.54) (end 5.08 -1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start 5.08 -1.905) (end 5.08 1.905) (layer F.SilkS) (width 0.1524))
(fp_line (start 3.175 2.54) (end 4.445 2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start 0.635 2.54) (end 1.905 2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start -1.905 2.54) (end -0.635 2.54) (layer F.SilkS) (width 0.1524))
(fp_line (start -4.445 2.54) (end -3.175 2.54) (layer F.SilkS) (width 0.1524))
(fp_poly (pts (xy -4.064 1.524) (xy -3.556 1.524) (xy -3.556 1.016) (xy -4.064 1.016)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -4.064 -1.016) (xy -3.556 -1.016) (xy -3.556 -1.524) (xy -4.064 -1.524)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.524 -1.016) (xy -1.016 -1.016) (xy -1.016 -1.524) (xy -1.524 -1.524)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy -1.524 1.524) (xy -1.016 1.524) (xy -1.016 1.016) (xy -1.524 1.016)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 1.016 -1.016) (xy 1.524 -1.016) (xy 1.524 -1.524) (xy 1.016 -1.524)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 1.016 1.524) (xy 1.524 1.524) (xy 1.524 1.016) (xy 1.016 1.016)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 3.556 -1.016) (xy 4.064 -1.016) (xy 4.064 -1.524) (xy 3.556 -1.524)) (layer Dwgs.User) (width 0))
(fp_poly (pts (xy 3.556 1.524) (xy 4.064 1.524) (xy 4.064 1.016) (xy 3.556 1.016)) (layer Dwgs.User) (width 0))
(pad 1 thru_hole circle (at -3.81 1.27) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 27 /P0.00))
(pad 2 thru_hole circle (at -3.81 -1.27) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 28 /P0.01))
(pad 3 thru_hole circle (at -1.27 1.27) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 29 /P0.02))
(pad 4 thru_hole circle (at -1.27 -1.27) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 30 /P0.03))
(pad 5 thru_hole circle (at 1.27 1.27) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 31 /P0.04))
(pad 6 thru_hole circle (at 1.27 -1.27) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 32 /P0.05))
(pad 7 thru_hole circle (at 3.81 1.27) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 33 /P0.06))
(pad 8 thru_hole circle (at 3.81 -1.27) (size 1.8796 1.8796) (drill 1.016) (layers *.Cu *.Mask)
(net 34 /P0.07))
)
(module mdbt40_carrier:ADA_MDBT40 (layer F.Cu) (tedit 592FAF56) (tstamp 58DDA174)
(at 32.385 28.575)
(path /58DAF3A7)
(fp_text reference U1 (at -4.866 -9.328) (layer F.SilkS) hide
(effects (font (size 1.2065 1.2065) (thickness 0.2286)) (justify left bottom))
)
(fp_text value MDBT40 (at -3.556 -7.0485) (layer F.SilkS) hide
(effects (font (size 0.6 0.6) (thickness 0.04064)) (justify left bottom))
)
(fp_line (start -5 -9) (end 5 -9) (layer Dwgs.User) (width 0.127))
(fp_line (start 5 -9) (end 5 -5.75) (layer Dwgs.User) (width 0.127))
(fp_line (start 5 -5.75) (end 5 9) (layer Dwgs.User) (width 0.127))
(fp_line (start 5 9) (end -5 9) (layer Dwgs.User) (width 0.127))
(fp_line (start -5 9) (end -5 -5.75) (layer Dwgs.User) (width 0.127))
(fp_line (start -5 -5.75) (end -5 -9) (layer Dwgs.User) (width 0.127))
(fp_line (start -5 -5.75) (end 5 -5.75) (layer Dwgs.User) (width 0.127))
(fp_line (start -5.1 -4.5) (end -5.1 -9.1) (layer F.SilkS) (width 0.127))
(fp_line (start -5.1 -9.1) (end 5.1 -9.1) (layer F.SilkS) (width 0.127))
(fp_line (start 5.1 -9.1) (end 5.1 -4.5) (layer F.SilkS) (width 0.127))
(fp_line (start -5.1 -2.8) (end -5.1 0.4) (layer F.SilkS) (width 0.127))
(fp_line (start -5.1 7.7) (end -5.1 9.1) (layer F.SilkS) (width 0.127))
(fp_line (start -5.1 9.1) (end -4.7 9.1) (layer F.SilkS) (width 0.127))
(fp_line (start 4.7 9.1) (end 5.1 9.1) (layer F.SilkS) (width 0.127))
(fp_line (start 5.1 9.1) (end 5.1 7.7) (layer F.SilkS) (width 0.127))
(fp_text user "KEEPOUT\n(ANTENNA AREA)" (at 0 -7.488) (layer Dwgs.User)
(effects (font (size 0.57912 0.57912) (thickness 0.09144)))
)
(pad 1 smd rect (at -4.825 -4) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 1 /GND))
(pad 2 smd rect (at -4.825 -3.3) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 1 /GND))
(pad 3 smd rect (at -4.825 0.9) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 2 /AVDD))
(pad 4 smd rect (at -4.825 1.6) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 3 /P0.21))
(pad 5 smd rect (at -4.825 2.3) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 4 /P0.22))
(pad 6 smd rect (at -4.825 3) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 5 /P0.23))
(pad 7 smd rect (at -4.825 3.7) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 6 /P0.24))
(pad 8 smd rect (at -4.825 4.4) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 7 /P0.25))
(pad 9 smd rect (at -4.825 5.1) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 8 /P0.26))
(pad 10 smd rect (at -4.825 5.8) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 9 /P0.27))
(pad 11 smd rect (at -4.825 6.5) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 10 /P0.28))
(pad 12 smd rect (at -4.825 7.2) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 11 /P0.29))
(pad 13 smd rect (at -4.2 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 1 /GND))
(pad 14 smd rect (at -3.5 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 13 /VDD))
(pad 15 smd rect (at -2.8 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 37 /DCC))
(pad 16 smd rect (at -2.1 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 12 /P0.30))
(pad 17 smd rect (at -1.4 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 27 /P0.00))
(pad 18 smd rect (at -0.7 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 28 /P0.01))
(pad 19 smd rect (at 0 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 29 /P0.02))
(pad 20 smd rect (at 0.7 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 30 /P0.03))
(pad 21 smd rect (at 1.4 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 31 /P0.04))
(pad 22 smd rect (at 2.1 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 32 /P0.05))
(pad 23 smd rect (at 2.8 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 33 /P0.06))
(pad 24 smd rect (at 3.5 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 34 /P0.07))
(pad 25 smd rect (at 4.2 8.825 90) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 1 /GND))
(pad 26 smd rect (at 4.825 7.2) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 20 /P0.08))
(pad 27 smd rect (at 4.825 6.5) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 26 /P0.09))
(pad 28 smd rect (at 4.825 5.8) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 19 /P0.10))
(pad 29 smd rect (at 4.825 5.1) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 25 /P0.11))
(pad 30 smd rect (at 4.825 4.4) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 18 /P0.12))
(pad 31 smd rect (at 4.825 3.7) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 24 /P0.13))
(pad 32 smd rect (at 4.825 3) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 17 /P0.14))
(pad 33 smd rect (at 4.825 2.3) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 23 /P0.15))
(pad 34 smd rect (at 4.825 1.6) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 16 /P0.16))
(pad 35 smd rect (at 4.825 0.9) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 35 /SWDIO))
(pad 36 smd rect (at 4.825 0.2) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 36 /SWCLK))
(pad 37 smd rect (at 4.825 -0.5) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 22 /P0.17))
(pad 38 smd rect (at 4.825 -1.2) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 15 /P0.18))
(pad 39 smd rect (at 4.825 -1.9) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 21 /P0.19))
(pad 40 smd rect (at 4.825 -2.6) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 14 /P0.20))
(pad 41 smd rect (at 4.825 -3.3) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 38 /DEC2))
(pad 42 smd rect (at 4.825 -4) (size 1.85 0.45) (layers F.Cu F.Paste F.Mask)
(net 1 /GND))
(pad "" np_thru_hole circle (at 2.2 -4.45) (size 0.9 0.9) (drill 0.9) (layers *.Cu))
)
(gr_text "Designed by\nK.T.E.C." (at 32.385 37.465) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_line (start 40.005 55.245) (end 37.465 55.245) (angle 90) (layer B.SilkS) (width 0.2))
(gr_line (start 40.005 52.705) (end 40.005 55.245) (angle 90) (layer B.SilkS) (width 0.2))
(gr_line (start 37.465 52.705) (end 40.005 52.705) (angle 90) (layer B.SilkS) (width 0.2))
(gr_line (start 37.465 55.245) (end 37.465 52.705) (angle 90) (layer B.SilkS) (width 0.2))
(gr_line (start 27.305 55.245) (end 24.765 55.245) (angle 90) (layer B.SilkS) (width 0.2))
(gr_line (start 27.305 52.705) (end 27.305 55.245) (angle 90) (layer B.SilkS) (width 0.2))
(gr_line (start 24.765 52.705) (end 27.305 52.705) (angle 90) (layer B.SilkS) (width 0.2))
(gr_line (start 24.765 55.245) (end 24.765 52.705) (angle 90) (layer B.SilkS) (width 0.2))
(gr_text MDBT40 (at 32.385 39.37) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text VDD (at 24.13 31.115) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify mirror))
)
(gr_text AVDD (at 24.13 26.035) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify mirror))
)
(gr_text DEC2 (at 40.005 51.435) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify mirror))
)
(gr_text DCC (at 25.4 51.435) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify mirror))
)
(dimension 35.56 (width 0.3) (layer Eco2.User)
(gr_text "1.4000 in" (at 15.795 37.465 270) (layer Eco2.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 19.685 55.245) (xy 14.445 55.245)))
(feature2 (pts (xy 19.685 19.685) (xy 14.445 19.685)))
(crossbar (pts (xy 17.145 19.685) (xy 17.145 55.245)))
(arrow1a (pts (xy 17.145 55.245) (xy 16.558579 54.118496)))
(arrow1b (pts (xy 17.145 55.245) (xy 17.731421 54.118496)))
(arrow2a (pts (xy 17.145 19.685) (xy 16.558579 20.811504)))
(arrow2b (pts (xy 17.145 19.685) (xy 17.731421 20.811504)))
)
(dimension 25.4 (width 0.3) (layer Eco2.User)
(gr_text "1.0000 in" (at 32.385 15.795) (layer Eco2.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 45.085 19.685) (xy 45.085 14.445)))
(feature2 (pts (xy 19.685 19.685) (xy 19.685 14.445)))
(crossbar (pts (xy 19.685 17.145) (xy 45.085 17.145)))
(arrow1a (pts (xy 45.085 17.145) (xy 43.958496 17.731421)))
(arrow1b (pts (xy 45.085 17.145) (xy 43.958496 16.558579)))
(arrow2a (pts (xy 19.685 17.145) (xy 20.811504 17.731421)))
(arrow2b (pts (xy 19.685 17.145) (xy 20.811504 16.558579)))
)
(dimension 33.02 (width 0.3) (layer Eco2.User)
(gr_text "1.3000 in" (at 48.975 37.465 270) (layer Eco2.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 43.815 53.975) (xy 50.325 53.975)))
(feature2 (pts (xy 43.815 20.955) (xy 50.325 20.955)))
(crossbar (pts (xy 47.625 20.955) (xy 47.625 53.975)))
(arrow1a (pts (xy 47.625 53.975) (xy 47.038579 52.848496)))
(arrow1b (pts (xy 47.625 53.975) (xy 48.211421 52.848496)))
(arrow2a (pts (xy 47.625 20.955) (xy 47.038579 22.081504)))
(arrow2b (pts (xy 47.625 20.955) (xy 48.211421 22.081504)))
)
(dimension 22.86 (width 0.3) (layer Eco2.User)
(gr_text "0.9000 in" (at 32.385 59.135) (layer Eco2.User)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 43.815 53.975) (xy 43.815 60.485)))
(feature2 (pts (xy 20.955 53.975) (xy 20.955 60.485)))
(crossbar (pts (xy 20.955 57.785) (xy 43.815 57.785)))
(arrow1a (pts (xy 43.815 57.785) (xy 42.688496 58.371421)))
(arrow1b (pts (xy 43.815 57.785) (xy 42.688496 57.198579)))
(arrow2a (pts (xy 20.955 57.785) (xy 22.081504 58.371421)))
(arrow2b (pts (xy 20.955 57.785) (xy 22.081504 57.198579)))
)
(gr_text SWD (at 42.545 53.975) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text SWC (at 22.225 53.975) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 0 (at 28.575 48.895) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text 1 (at 28.575 46.99) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text 2 (at 31.115 48.895) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text 3 (at 31.115 46.99) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text 7 (at 36.195 46.99) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text 6 (at 36.195 48.895) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text 5 (at 33.655 46.99) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text 4 (at 33.655 48.895) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)))
)
(gr_text 8 (at 42.545 51.435) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 9 (at 42.545 48.895) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 10 (at 42.545 46.355) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 11 (at 42.545 43.815) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 12 (at 42.545 41.275) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 13 (at 42.545 38.735) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 14 (at 42.545 36.195) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 15 (at 42.545 33.655) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 16 (at 42.545 31.115) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 17 (at 42.545 28.575) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 18 (at 42.545 26.035) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 19 (at 42.545 23.495) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text 20 (at 42.545 20.955) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify right))
)
(gr_text VDD (at 22.225 51.435) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 30 (at 22.225 48.895) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 29 (at 22.225 46.355) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 28 (at 22.225 43.815) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 27 (at 22.225 41.275) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 26 (at 22.225 38.735) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 25 (at 22.225 36.195) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 24 (at 22.225 33.655) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 23 (at 22.225 31.115) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 22 (at 22.225 28.575) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text 21 (at 22.225 26.035) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text AVDD (at 22.225 23.495) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_text GND (at 22.225 20.955) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.2032)) (justify left))
)
(gr_line (start 19.685 19.685) (end 45.085 19.685) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 19.685 55.245) (end 19.685 19.685) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 45.085 55.245) (end 19.685 55.245) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 45.085 19.685) (end 45.085 55.245) (angle 90) (layer Edge.Cuts) (width 0.15))
(segment (start 27.56 25.275) (end 25.91 25.275) (width 0.4064) (layer F.Cu) (net 1) (status 400000))
(segment (start 25.91 25.275) (end 25.4 24.765) (width 0.4064) (layer F.Cu) (net 1) (tstamp 593533F2))
(segment (start 37.21 24.575) (end 38.4805 24.575) (width 0.4064) (layer F.Cu) (net 1))
(via (at 39.243 23.8125) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 38.4805 24.575) (end 39.243 23.8125) (width 0.4064) (layer F.Cu) (net 1) (tstamp 592FB0D0))
(segment (start 27.56 24.575) (end 26.226 24.575) (width 0.4064) (layer F.Cu) (net 1))
(via (at 25.527 23.876) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 26.226 24.575) (end 25.527 23.876) (width 0.4064) (layer F.Cu) (net 1) (tstamp 592FB0A7))
(segment (start 36.585 37.4) (end 36.585 38.236) (width 0.4064) (layer F.Cu) (net 1))
(segment (start 36.585 38.236) (end 37.338 38.989) (width 0.4064) (layer F.Cu) (net 1) (tstamp 592FAEE9))
(via (at 37.338 38.989) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 28.185 37.4) (end 28.185 38.0455) (width 0.4064) (layer F.Cu) (net 1))
(segment (start 28.185 38.0455) (end 27.3685 38.862) (width 0.4064) (layer F.Cu) (net 1) (tstamp 592FAEAD))
(via (at 27.3685 38.862) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 27.785 29.475) (end 26.3 29.475) (width 0.4064) (layer F.Cu) (net 2) (status 10))
(segment (start 26.3 29.475) (end 25.4 28.575) (width 0.4064) (layer F.Cu) (net 2) (tstamp 58E76DB6))
(segment (start 25.4 28.575) (end 25.4 27.94) (width 0.6096) (layer F.Cu) (net 2))
(segment (start 25.4 27.94) (end 24.13 26.67) (width 0.6096) (layer F.Cu) (net 2))
(segment (start 24.13 27.935) (end 24.13 26.67) (width 0.6096) (layer B.Cu) (net 2) (status 10))
(via (at 24.13 26.67) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 2))
(segment (start 20.955 23.495) (end 24.13 26.67) (width 0.6096) (layer F.Cu) (net 2) (status 10))
(segment (start 27.785 30.175) (end 25.095 30.175) (width 0.4064) (layer F.Cu) (net 3) (status 10))
(segment (start 25.095 30.175) (end 20.955 26.035) (width 0.4064) (layer F.Cu) (net 3) (tstamp 58DDFEE2) (status 20))
(segment (start 27.785 30.875) (end 23.255 30.875) (width 0.4064) (layer F.Cu) (net 4) (status 10))
(segment (start 23.255 30.875) (end 20.955 28.575) (width 0.4064) (layer F.Cu) (net 4) (tstamp 58DDFEDC) (status 20))
(segment (start 27.785 31.575) (end 21.415 31.575) (width 0.4064) (layer F.Cu) (net 5) (status 30))
(segment (start 21.415 31.575) (end 20.955 31.115) (width 0.4064) (layer F.Cu) (net 5) (tstamp 58E72198) (status 30))
(segment (start 20.955 33.655) (end 22.335 32.275) (width 0.4064) (layer F.Cu) (net 6) (status 10))
(segment (start 22.335 32.275) (end 27.785 32.275) (width 0.4064) (layer F.Cu) (net 6) (status 20))
(segment (start 24.132931 32.975) (end 20.955 36.152931) (width 0.4064) (layer F.Cu) (net 7) (tstamp 58DE0411) (status 20))
(segment (start 27.785 32.975) (end 24.132931 32.975) (width 0.4064) (layer F.Cu) (net 7) (status 10))
(segment (start 27.785 33.675) (end 25.38 33.675) (width 0.4064) (layer F.Cu) (net 8) (status 10))
(segment (start 24.13 35.56) (end 20.955 38.735) (width 0.4064) (layer F.Cu) (net 8) (tstamp 58E721FF) (status 20))
(segment (start 24.13 34.925) (end 24.13 35.56) (width 0.4064) (layer F.Cu) (net 8) (tstamp 58E721FE))
(segment (start 25.38 33.675) (end 24.13 34.925) (width 0.4064) (layer F.Cu) (net 8) (tstamp 58E721FD))
(segment (start 27.785 34.375) (end 25.95 34.375) (width 0.4064) (layer F.Cu) (net 9) (status 10))
(segment (start 24.765 37.465) (end 20.955 41.275) (width 0.4064) (layer F.Cu) (net 9) (status 20))
(segment (start 24.765 35.56) (end 24.765 37.465) (width 0.4064) (layer F.Cu) (net 9) (tstamp 58E721F7))
(segment (start 25.95 34.375) (end 24.765 35.56) (width 0.4064) (layer F.Cu) (net 9) (tstamp 58E721F6))
(segment (start 27.785 35.075) (end 26.52 35.075) (width 0.4064) (layer F.Cu) (net 10) (status 10))
(segment (start 25.4 39.37) (end 20.955 43.815) (width 0.4064) (layer F.Cu) (net 10) (tstamp 58E72204) (status 20))
(segment (start 25.4 36.195) (end 25.4 39.37) (width 0.4064) (layer F.Cu) (net 10) (tstamp 58E72203))
(segment (start 26.52 35.075) (end 25.4 36.195) (width 0.4064) (layer F.Cu) (net 10) (tstamp 58E72202))
(segment (start 27.785 35.775) (end 27.09 35.775) (width 0.4064) (layer F.Cu) (net 11) (status 30))
(segment (start 27.09 35.775) (end 26.035 36.83) (width 0.4064) (layer F.Cu) (net 11) (tstamp 58E721E1) (status 10))
(segment (start 26.035 36.83) (end 26.035 41.275) (width 0.4064) (layer F.Cu) (net 11) (tstamp 58E721E2))
(segment (start 26.035 41.275) (end 20.955 46.355) (width 0.4064) (layer F.Cu) (net 11) (tstamp 58E721E5) (status 20))
(segment (start 30.285 37.175) (end 30.285 39.565) (width 0.4064) (layer F.Cu) (net 12) (status 10))
(segment (start 26.035 43.815) (end 20.955 48.895) (width 0.4064) (layer F.Cu) (net 12) (tstamp 58E72333) (status 20))
(via (at 26.035 43.815) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 29.845 40.005) (end 26.035 43.815) (width 0.4064) (layer B.Cu) (net 12) (tstamp 58E72330))
(via (at 29.845 40.005) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 12))
(segment (start 30.285 39.565) (end 29.845 40.005) (width 0.4064) (layer F.Cu) (net 12) (tstamp 58E7232D))
(segment (start 24.13 48.26) (end 24.13 29.215) (width 0.6096) (layer B.Cu) (net 13) (tstamp 58DE0282) (status 20))
(segment (start 20.955 51.435) (end 24.13 48.26) (width 0.6096) (layer B.Cu) (net 13) (status 10))
(segment (start 28.885 37.175) (end 28.885 38.425) (width 0.4064) (layer F.Cu) (net 13) (status 10))
(segment (start 28.885 38.425) (end 27.305 40.005) (width 0.4064) (layer F.Cu) (net 13) (tstamp 58E72325))
(segment (start 27.305 40.005) (end 27.305 45.085) (width 0.6096) (layer F.Cu) (net 13) (tstamp 58E722E5))
(segment (start 27.305 45.085) (end 20.955 51.435) (width 0.6096) (layer F.Cu) (net 13) (tstamp 58E722BE) (status 20))
(segment (start 36.985 25.975) (end 38.795 25.975) (width 0.4064) (layer F.Cu) (net 14) (status 10))
(segment (start 38.795 25.975) (end 43.815 20.955) (width 0.4064) (layer F.Cu) (net 14) (status 20))
(segment (start 36.985 27.375) (end 42.475 27.375) (width 0.4064) (layer F.Cu) (net 15) (status 10))
(segment (start 42.475 27.375) (end 43.815 26.035) (width 0.4064) (layer F.Cu) (net 15) (status 20))
(segment (start 43.815 31.115) (end 42.875 30.175) (width 0.4064) (layer F.Cu) (net 16) (status 10))
(segment (start 42.875 30.175) (end 36.985 30.175) (width 0.4064) (layer F.Cu) (net 16) (status 20))
(segment (start 41.91 32.385) (end 41.1 31.575) (width 0.4064) (layer F.Cu) (net 17))
(segment (start 41.91 32.385) (end 41.91 34.29) (width 0.4064) (layer F.Cu) (net 17) (tstamp 58DDFD84))
(segment (start 43.815 36.195) (end 41.91 34.29) (width 0.4064) (layer F.Cu) (net 17) (tstamp 58DDFD8D) (status 10))
(segment (start 41.1 31.575) (end 36.985 31.575) (width 0.4064) (layer F.Cu) (net 17) (tstamp 58E76B4A) (status 20))
(segment (start 36.985 32.975) (end 39.96 32.975) (width 0.4064) (layer F.Cu) (net 18) (status 10))
(segment (start 39.96 32.975) (end 40.64 33.655) (width 0.4064) (layer F.Cu) (net 18) (tstamp 58DDFE0B))
(segment (start 40.64 38.1) (end 43.815 41.275) (width 0.4064) (layer F.Cu) (net 18) (tstamp 58DDFD51) (status 20))
(segment (start 40.64 33.655) (end 40.64 38.1) (width 0.4064) (layer F.Cu) (net 18) (tstamp 58DDFD4E))
(segment (start 36.985 34.375) (end 38.82 34.375) (width 0.4064) (layer F.Cu) (net 19) (status 10))
(segment (start 38.82 34.375) (end 39.37 34.925) (width 0.4064) (layer F.Cu) (net 19) (tstamp 58DDFE05))
(segment (start 39.37 41.91) (end 43.815 46.355) (width 0.4064) (layer F.Cu) (net 19) (status 20))
(segment (start 39.37 34.925) (end 39.37 41.91) (width 0.4064) (layer F.Cu) (net 19) (tstamp 58DDFD25))
(segment (start 36.985 35.775) (end 37.68 35.775) (width 0.4064) (layer F.Cu) (net 20) (status 30))
(segment (start 37.68 35.775) (end 38.1 36.195) (width 0.4064) (layer F.Cu) (net 20) (tstamp 58E7223C) (status 10))
(segment (start 38.1 36.195) (end 38.1 45.72) (width 0.4064) (layer F.Cu) (net 20) (tstamp 58DDFDB8))
(segment (start 38.1 45.72) (end 43.815 51.435) (width 0.4064) (layer F.Cu) (net 20) (tstamp 58DDB131) (status 20))
(segment (start 36.985 26.675) (end 40.635 26.675) (width 0.4064) (layer F.Cu) (net 21) (status 10))
(segment (start 40.635 26.675) (end 43.815 23.495) (width 0.4064) (layer F.Cu) (net 21) (status 20))
(segment (start 36.985 28.075) (end 43.315 28.075) (width 0.4064) (layer F.Cu) (net 22) (status 30))
(segment (start 43.315 28.075) (end 43.815 28.575) (width 0.4064) (layer F.Cu) (net 22) (tstamp 58E72214) (status 30))
(segment (start 42.545 31.75) (end 41.67 30.875) (width 0.4064) (layer F.Cu) (net 23))
(segment (start 43.815 33.655) (end 42.545 32.385) (width 0.4064) (layer F.Cu) (net 23) (status 10))
(segment (start 42.545 32.385) (end 42.545 31.75) (width 0.4064) (layer F.Cu) (net 23) (tstamp 58DDFE1C))
(segment (start 41.67 30.875) (end 36.985 30.875) (width 0.4064) (layer F.Cu) (net 23) (tstamp 58E76B57) (status 20))
(segment (start 41.275 33.02) (end 40.53 32.275) (width 0.4064) (layer F.Cu) (net 24))
(segment (start 41.275 33.02) (end 41.275 36.195) (width 0.4064) (layer F.Cu) (net 24) (tstamp 58DDFD79))
(segment (start 43.815 38.735) (end 41.275 36.195) (width 0.4064) (layer F.Cu) (net 24) (tstamp 58DDFD7B) (status 10))
(segment (start 40.53 32.275) (end 36.985 32.275) (width 0.4064) (layer F.Cu) (net 24) (status 20))
(segment (start 36.985 33.675) (end 39.39 33.675) (width 0.4064) (layer F.Cu) (net 25) (status 10))
(segment (start 39.39 33.675) (end 40.005 34.29) (width 0.4064) (layer F.Cu) (net 25) (tstamp 58DDFE08))
(segment (start 40.005 40.005) (end 43.815 43.815) (width 0.4064) (layer F.Cu) (net 25) (tstamp 58DDFD3F) (status 20))
(segment (start 40.005 34.29) (end 40.005 40.005) (width 0.4064) (layer F.Cu) (net 25) (tstamp 58DDFD3A))
(segment (start 36.985 35.075) (end 38.25 35.075) (width 0.4064) (layer F.Cu) (net 26) (status 10))
(segment (start 38.25 35.075) (end 38.735 35.56) (width 0.4064) (layer F.Cu) (net 26) (tstamp 58E72238))
(segment (start 38.735 35.56) (end 38.735 43.815) (width 0.4064) (layer F.Cu) (net 26) (tstamp 58DDFD04))
(segment (start 38.735 43.815) (end 43.815 48.895) (width 0.4064) (layer F.Cu) (net 26) (status 20))
(segment (start 30.985 37.175) (end 30.985 46.485) (width 0.4064) (layer F.Cu) (net 27) (status 10))
(segment (start 27.305 52.705) (end 27.305 50.165) (width 0.254) (layer F.Cu) (net 27) (tstamp 58E72261))
(segment (start 27.305 52.705) (end 28.575 53.975) (width 0.4064) (layer F.Cu) (net 27) (tstamp 58E72260) (status 20))
(segment (start 30.985 46.485) (end 27.305 50.165) (width 0.4064) (layer F.Cu) (net 27) (tstamp 58E7229A))
(segment (start 31.685 37.175) (end 31.685 47.055) (width 0.4064) (layer F.Cu) (net 28) (status 10))
(segment (start 28.575 50.165) (end 28.575 51.435) (width 0.4064) (layer F.Cu) (net 28) (status 20))
(segment (start 31.685 47.055) (end 28.575 50.165) (width 0.4064) (layer F.Cu) (net 28) (tstamp 58E72283))
(segment (start 32.385 37.81) (end 32.385 47.625) (width 0.4064) (layer F.Cu) (net 29) (status 10))
(segment (start 29.845 52.705) (end 29.845 50.165) (width 0.254) (layer F.Cu) (net 29) (tstamp 58E7225B))
(segment (start 29.845 52.705) (end 31.115 53.975) (width 0.4064) (layer F.Cu) (net 29) (status 20))
(segment (start 32.385 47.625) (end 29.845 50.165) (width 0.4064) (layer F.Cu) (net 29) (tstamp 58E72278))
(segment (start 33.085 37.175) (end 33.085 48.195) (width 0.4064) (layer F.Cu) (net 30) (status 10))