-
Notifications
You must be signed in to change notification settings - Fork 7
/
A600KB.kicad_pcb-bak
3384 lines (3295 loc) · 217 KB
/
A600KB.kicad_pcb-bak
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 20171130) (host pcbnew "(5.1.4-0-10_14)")
(general
(thickness 1.6)
(drawings 25)
(tracks 716)
(zones 0)
(modules 81)
(nets 33)
)
(page A3)
(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 hide)
(39 F.Mask user hide)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(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.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(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)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 4.211556 2.25)
(pad_drill 0)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x01100_7ffffffe)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer false)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference false)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk true)
(subtractmaskfromsilk false)
(outputformat 4)
(mirror false)
(drillshape 2)
(scaleselection 1)
(outputdirectory "/Users/adam/Desktop/"))
)
(net 0 "")
(net 1 "Net-(J1-Pad1)")
(net 2 /2)
(net 3 /3)
(net 4 /4)
(net 5 /5)
(net 6 /6)
(net 7 /7)
(net 8 /8)
(net 9 /9)
(net 10 /10)
(net 11 /11)
(net 12 /12)
(net 13 /13)
(net 14 /14)
(net 15 /15)
(net 16 /16)
(net 17 /17)
(net 18 /18)
(net 19 /19)
(net 20 /20)
(net 21 /21)
(net 22 /22)
(net 23 /23)
(net 24 /24)
(net 25 /25)
(net 26 /26)
(net 27 /27)
(net 28 /28)
(net 29 /29)
(net 30 /30)
(net 31 "Net-(J1-Pad31)")
(net 32 "Net-(J1-Pad32)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /10)
(add_net /11)
(add_net /12)
(add_net /13)
(add_net /14)
(add_net /15)
(add_net /16)
(add_net /17)
(add_net /18)
(add_net /19)
(add_net /2)
(add_net /20)
(add_net /21)
(add_net /22)
(add_net /23)
(add_net /24)
(add_net /25)
(add_net /26)
(add_net /27)
(add_net /28)
(add_net /29)
(add_net /3)
(add_net /30)
(add_net /4)
(add_net /5)
(add_net /6)
(add_net /7)
(add_net /8)
(add_net /9)
(add_net "Net-(J1-Pad1)")
(add_net "Net-(J1-Pad31)")
(add_net "Net-(J1-Pad32)")
)
(module A1200KB:A600-KB-SPACER (layer F.Cu) (tedit 5DD267E2) (tstamp 5DD2BB55)
(at 252.984 164.592)
(fp_text reference REF** (at 0 0.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value A600-KB-SPACER (at 0 -10.16 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5.5 0) (end -5.5 0) (layer Dwgs.User) (width 0.12))
(fp_line (start 5.5 -19) (end 5.5 0) (layer Dwgs.User) (width 0.12))
(fp_line (start -5.5 -19) (end 5.5 -19) (layer Dwgs.User) (width 0.12))
(fp_line (start -5.5 0) (end -5.5 -19) (layer Dwgs.User) (width 0.12))
(pad 3 thru_hole circle (at 3.81 -16.51) (size 3 3) (drill 3) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at -3.81 -16.51) (size 3 3) (drill 3) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 -2.54) (size 3 3) (drill 3) (layers *.Cu *.Mask))
)
(module A1200KB:A600-KB-SPACER (layer F.Cu) (tedit 5DD267E2) (tstamp 5DD2BB22)
(at 108.204 164.592)
(fp_text reference REF** (at 0 0.5) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value A600-KB-SPACER (at 0 -10.16 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5.5 0) (end -5.5 0) (layer Dwgs.User) (width 0.12))
(fp_line (start 5.5 -19) (end 5.5 0) (layer Dwgs.User) (width 0.12))
(fp_line (start -5.5 -19) (end 5.5 -19) (layer Dwgs.User) (width 0.12))
(fp_line (start -5.5 0) (end -5.5 -19) (layer Dwgs.User) (width 0.12))
(pad 3 thru_hole circle (at 3.81 -16.51) (size 3 3) (drill 3) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at -3.81 -16.51) (size 3 3) (drill 3) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 -2.54) (size 3 3) (drill 3) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-7U-NoLED (layer F.Cu) (tedit 5BD3C821) (tstamp 5DD0AF1F)
(at 180.594 154.94)
(path /5DB0A6A2)
(fp_text reference MX92 (at -0.635 -6.35) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SPACE (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -66.675 -9.525) (end 66.675 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 66.675 -9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -66.675 9.525) (end 66.675 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -66.675 9.525) (end -66.675 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 27 /27))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 7 /7))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -57.15 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 57.15 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -57.15 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 57.15 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-2U-NoLED (layer F.Cu) (tedit 5BD3C72F) (tstamp 5DD0AB2C)
(at 63.754 98.044)
(path /5DB40B4E)
(fp_text reference MX33 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TAB (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -19.05 -9.525) (end 19.05 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 19.05 -9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -19.05 9.525) (end 19.05 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -19.05 9.525) (end -19.05 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 15 /15))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 3 /3))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -11.90625 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 11.90625 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -11.90625 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 11.90625 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1.75U-NoLED (layer F.Cu) (tedit 5BD3C6A7) (tstamp 5DD0AD9B)
(at 61.341 136.144)
(path /5DAFCFB5)
(fp_text reference MX70 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value L_SHIFT (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -16.66875 9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 12 /12))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 30 /30))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1.75U-NoLED (layer F.Cu) (tedit 5BD3C6A7) (tstamp 5DD0AE9B)
(at 304.165 136.144)
(path /5D89A23F)
(fp_text reference MX82 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value R_SHIFT (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -16.66875 -9.525) (end 16.66875 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 16.66875 -9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -16.66875 9.525) (end 16.66875 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -16.66875 9.525) (end -16.66875 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 6 /6))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 30 /30))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module A1200KB:FFC-1.25mm-RA-5204403245 (layer B.Cu) (tedit 5C90C915) (tstamp 5DD0A8AF)
(at 182.052 64.79)
(path /5EF715D8)
(fp_text reference J1 (at 0.5 3.75) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "32 FFC" (at 0 -5.25) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -21.5 0) (end -21.5 -8) (layer B.SilkS) (width 0.15))
(fp_line (start -21.5 -8) (end 20.25 -8) (layer B.SilkS) (width 0.15))
(fp_line (start 20.25 -8) (end 20.25 0) (layer B.SilkS) (width 0.15))
(fp_line (start 20.25 0) (end -21.5 0) (layer B.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -20 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad 2 thru_hole circle (at -18.75 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 2 /2))
(pad 3 thru_hole circle (at -17.5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 3 /3))
(pad 4 thru_hole circle (at -16.25 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 4 /4))
(pad 5 thru_hole circle (at -15 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 5 /5))
(pad 6 thru_hole circle (at -13.75 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 6 /6))
(pad 7 thru_hole circle (at -12.5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 7 /7))
(pad 8 thru_hole circle (at -11.25 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 8 /8))
(pad 9 thru_hole circle (at -10 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 9 /9))
(pad 10 thru_hole circle (at -8.75 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 10 /10))
(pad 11 thru_hole circle (at -7.5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 11 /11))
(pad 12 thru_hole circle (at -6.25 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 12 /12))
(pad 13 thru_hole circle (at -5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 13 /13))
(pad 14 thru_hole circle (at -3.75 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 14 /14))
(pad 15 thru_hole circle (at -2.5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 15 /15))
(pad 16 thru_hole circle (at -1.25 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 16 /16))
(pad 17 thru_hole circle (at 0 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 17 /17))
(pad 18 thru_hole circle (at 1.25 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 18 /18))
(pad 19 thru_hole circle (at 2.5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 19 /19))
(pad 20 thru_hole circle (at 3.75 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 20 /20))
(pad 21 thru_hole circle (at 5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 21 /21))
(pad 22 thru_hole circle (at 6.25 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 22 /22))
(pad 23 thru_hole circle (at 7.5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 23 /23))
(pad 24 thru_hole circle (at 8.75 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 24 /24))
(pad 25 thru_hole circle (at 10 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 25 /25))
(pad 26 thru_hole circle (at 11.25 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 26 /26))
(pad 27 thru_hole circle (at 12.5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 27 /27))
(pad 28 thru_hole circle (at 13.75 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 28 /28))
(pad 29 thru_hole circle (at 15 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 29 /29))
(pad 30 thru_hole circle (at 16.25 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 30 /30))
(pad 31 thru_hole circle (at 17.5 -1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 31 "Net-(J1-Pad31)"))
(pad 32 thru_hole circle (at 18.75 1.25) (size 1.6 1.6) (drill 0.85) (layers *.Cu *.Mask)
(net 32 "Net-(J1-Pad32)"))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A8DC)
(at 57.023 50.038)
(path /5DAFFA4F)
(fp_text reference MX1 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ESC (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 15 /15))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A8F1)
(at 90.043 50.038)
(path /5DB00C4E)
(fp_text reference MX2 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F1 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 17 /17))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A906)
(at 113.792 50.038)
(path /5DB01381)
(fp_text reference MX3 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F2 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 18 /18))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A91B)
(at 137.541 50.038)
(path /5DB019A3)
(fp_text reference MX4 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F3 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 19 /19))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A930)
(at 161.29 50.038)
(path /5DB01F1C)
(fp_text reference MX5 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F4 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 20 /20))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A945)
(at 185.039 50.038)
(path /5DB027EB)
(fp_text reference MX6 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F5 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 21 /21))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A95A)
(at 218.821 50.038)
(path /5DB02FEC)
(fp_text reference MX7 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F6 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 23 /23))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A96F)
(at 242.57 50.038)
(path /5DB03F7A)
(fp_text reference MX8 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F7 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 25 /25))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A984)
(at 266.319 50.038)
(path /5DB04A08)
(fp_text reference MX9 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F8 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 26 /26))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A999)
(at 290.195 50.038)
(path /5DB05135)
(fp_text reference MX10 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F9 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 27 /27))
)
(module MX_Only:MXOnly-1.25U-NoLED (layer F.Cu) (tedit 5BD3C68C) (tstamp 5DD0A9AE)
(at 314.071 50.038)
(path /5DB05726)
(fp_text reference MX11 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value F10 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 28 /28))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 1 "Net-(J1-Pad1)"))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1.5U-NoLED (layer F.Cu) (tedit 5BD3C5FF) (tstamp 5DD0A9C3)
(at 59.055 78.994)
(path /5DB434D3)
(fp_text reference MX12 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TILDE (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -14.2875 9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 2 /2))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 15 /15))
)
(module MX_Only:MXOnly-1U-NoLED (layer F.Cu) (tedit 5BD3C6C7) (tstamp 5DD0A9D8)
(at 82.931 78.994)
(path /5DB45E18)
(fp_text reference MX13 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 2 /2))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 16 /16))
)
(module MX_Only:MXOnly-1U-NoLED (layer F.Cu) (tedit 5BD3C6C7) (tstamp 5DD0A9ED)
(at 101.981 78.994)
(path /5DB48762)
(fp_text reference MX14 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 17 /17))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 2 /2))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1U-NoLED (layer F.Cu) (tedit 5BD3C6C7) (tstamp 5DD0AA02)
(at 121.031 78.994)
(path /5DB4B279)
(fp_text reference MX15 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 3 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 2 /2))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 18 /18))
)
(module MX_Only:MXOnly-1U-NoLED (layer F.Cu) (tedit 5BD3C6C7) (tstamp 5DD0AA17)
(at 140.081 78.994)
(path /5DB4DFD3)
(fp_text reference MX16 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 4 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 19 /19))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 2 /2))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1U-NoLED (layer F.Cu) (tedit 5BD3C6C7) (tstamp 5DD0AA2C)
(at 159.131 78.994)
(path /5DB50E94)
(fp_text reference MX17 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 5 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 20 /20))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 2 /2))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1U-NoLED (layer F.Cu) (tedit 5BD3C6C7) (tstamp 5DD0AA41)
(at 178.181 78.994)
(path /5DB53FB4)
(fp_text reference MX18 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 6 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 2 /2))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 21 /21))
)
(module MX_Only:MXOnly-1U-NoLED (layer F.Cu) (tedit 5BD3C6C7) (tstamp 5DD0AA56)
(at 197.231 78.994)
(path /5DB57563)
(fp_text reference MX19 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 7 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(pad 2 thru_hole circle (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 22 /22))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu B.Mask)
(net 2 /2))
(pad "" np_thru_hole circle (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))
)
(module MX_Only:MXOnly-1U-NoLED (layer F.Cu) (tedit 5BD3C6C7) (tstamp 5DD0AA6B)
(at 216.281 78.994)
(path /5DB5A5F5)
(fp_text reference MX20 (at 0 3.175) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 8 (at 0 -7.9375) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 -7) (end -7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start -5 -7) (end -7 -7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 7) (end -5 7) (layer Dwgs.User) (width 0.15))
(fp_line (start -7 5) (end -7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 7) (end 7 5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 7) (end 7 7) (layer Dwgs.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -5) (layer Dwgs.User) (width 0.15))
(fp_line (start 5 -7) (end 7 -7) (layer Dwgs.User) (width 0.15))
(pad "" np_thru_hole circle (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask))