-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfd50to34.kicad_pcb
2451 lines (2432 loc) · 206 KB
/
fd50to34.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 "(2014-12-16 BZR 5324)-product")
(general
(links 73)
(no_connects 0)
(area 119.304999 59.614999 155.015001 143.585001)
(thickness 1.6)
(drawings 76)
(tracks 230)
(zones 0)
(modules 10)
(nets 31)
)
(page A)
(title_block
(title "fd50to34: Adapt 34 pin floppy drives to 50 pin controllers")
(date 2015-09-22)
(rev 3)
(company "Mark J. Blair <[email protected]>")
(comment 1 https://github.com/NF6X/fd50to34)
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.1524)
(trace_clearance 0.1524)
(zone_clearance 0.254)
(zone_45_only yes)
(trace_min 0.1524)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.762)
(via_drill 0.3302)
(via_min_size 0.762)
(via_min_drill 0.3302)
(uvia_size 0.508)
(uvia_drill 0.127)
(uvias_allowed no)
(uvia_min_size 0.508)
(uvia_min_drill 0.127)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1.27 1.27)
(mod_text_width 0.127)
(pad_size 2.4892 2.4892)
(pad_drill 2.4892)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 119.38 143.51)
(grid_origin 119.38 143.51)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.127000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory gerber/))
)
(net 0 "")
(net 1 GND)
(net 2 "Net-(J1-Pad2)")
(net 3 "Net-(J1-Pad4)")
(net 4 "Net-(J1-Pad6)")
(net 5 "Net-(J1-Pad8)")
(net 6 "Net-(J1-Pad10)")
(net 7 "Net-(J1-Pad12)")
(net 8 "Net-(J1-Pad14)")
(net 9 "Net-(J1-Pad16)")
(net 10 "Net-(J1-Pad18)")
(net 11 "Net-(J1-Pad20)")
(net 12 "Net-(J1-Pad22)")
(net 13 "Net-(J1-Pad24)")
(net 14 "Net-(J1-Pad26)")
(net 15 "Net-(J1-Pad28)")
(net 16 "Net-(J1-Pad30)")
(net 17 "Net-(J1-Pad32)")
(net 18 "Net-(J1-Pad34)")
(net 19 "Net-(J1-Pad36)")
(net 20 "Net-(J1-Pad40)")
(net 21 "Net-(J1-Pad42)")
(net 22 "Net-(J1-Pad44)")
(net 23 "Net-(J1-Pad46)")
(net 24 "Net-(J1-Pad48)")
(net 25 "Net-(J1-Pad50)")
(net 26 "Net-(J2-Pad2)")
(net 27 "Net-(J2-Pad4)")
(net 28 "Net-(J2-Pad16)")
(net 29 "Net-(J1-Pad38)")
(net 30 "Net-(JP2-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.762)
(via_drill 0.3302)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net GND)
(add_net "Net-(J1-Pad10)")
(add_net "Net-(J1-Pad12)")
(add_net "Net-(J1-Pad14)")
(add_net "Net-(J1-Pad16)")
(add_net "Net-(J1-Pad18)")
(add_net "Net-(J1-Pad2)")
(add_net "Net-(J1-Pad20)")
(add_net "Net-(J1-Pad22)")
(add_net "Net-(J1-Pad24)")
(add_net "Net-(J1-Pad26)")
(add_net "Net-(J1-Pad28)")
(add_net "Net-(J1-Pad30)")
(add_net "Net-(J1-Pad32)")
(add_net "Net-(J1-Pad34)")
(add_net "Net-(J1-Pad36)")
(add_net "Net-(J1-Pad38)")
(add_net "Net-(J1-Pad4)")
(add_net "Net-(J1-Pad40)")
(add_net "Net-(J1-Pad42)")
(add_net "Net-(J1-Pad44)")
(add_net "Net-(J1-Pad46)")
(add_net "Net-(J1-Pad48)")
(add_net "Net-(J1-Pad50)")
(add_net "Net-(J1-Pad6)")
(add_net "Net-(J1-Pad8)")
(add_net "Net-(J2-Pad16)")
(add_net "Net-(J2-Pad2)")
(add_net "Net-(J2-Pad4)")
(add_net "Net-(JP2-Pad2)")
)
(module NF6X_Connectors:Wurth_61205022121 (layer F.Cu) (tedit 55BAF049) (tstamp 5599CFC0)
(at 127 101.6 90)
(descr "Wurth 50 pin right angle header with ejector latches")
(path /5599A201)
(fp_text reference J1 (at 40.005 3.175 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value 61205022121 (at 0 -3.81 90) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_arc (start -31.5 -7.119805) (end -41.305807 -9.080966) (angle -11.30993247) (layer F.CrtYd) (width 0.15))
(fp_line (start -41.305807 -9.080966) (end -40.260777 -14.306116) (layer F.CrtYd) (width 0.15))
(fp_arc (start -39.280196 -14.11) (end -39.280196 -15.11) (angle -78.69006753) (layer F.CrtYd) (width 0.15))
(fp_line (start -39.280196 -15.11) (end -34.6 -15.11) (layer F.CrtYd) (width 0.15))
(fp_line (start -34.6 -15.11) (end -34.6 -11.11) (layer F.CrtYd) (width 0.15))
(fp_line (start -34.6 -11.11) (end 34.6 -11.11) (layer F.CrtYd) (width 0.15))
(fp_line (start 34.6 -11.11) (end 34.6 -15.11) (layer F.CrtYd) (width 0.15))
(fp_line (start 34.6 -15.11) (end 39.280196 -15.11) (layer F.CrtYd) (width 0.15))
(fp_arc (start 39.280196 -14.11) (end 40.260777 -14.306116) (angle -78.69006753) (layer F.CrtYd) (width 0.15))
(fp_line (start 40.260777 -14.306116) (end 41.305807 -9.080966) (layer F.CrtYd) (width 0.15))
(fp_arc (start 31.5 -7.119805) (end 41.5 -7.119805) (angle -11.30993247) (layer F.CrtYd) (width 0.15))
(fp_line (start 41.5 -7.119805) (end 41.5 1.89) (layer F.CrtYd) (width 0.15))
(fp_line (start 41.5 1.89) (end 39.1 1.89) (layer F.CrtYd) (width 0.15))
(fp_line (start -39.1 1.89) (end -41.5 1.89) (layer F.CrtYd) (width 0.15))
(fp_line (start -41.5 1.89) (end -41.5 -7.119805) (layer F.CrtYd) (width 0.15))
(fp_line (start -39.1 1.89) (end 39.1 1.89) (layer F.CrtYd) (width 0.15))
(fp_line (start 41.5 1.89) (end 39.1 1.89) (layer F.SilkS) (width 0.15))
(fp_line (start -39.1 1.89) (end -41.5 1.89) (layer F.SilkS) (width 0.15))
(fp_line (start -39.1 1.89) (end -31.75 1.89) (layer F.SilkS) (width 0.15))
(fp_line (start 31.75 1.89) (end 39.1 1.89) (layer F.SilkS) (width 0.15))
(fp_line (start -41.5 1.89) (end -41.5 -2.54) (layer F.SilkS) (width 0.15))
(fp_line (start 41.5 -2.54) (end 41.5 1.89) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at -30.48 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 2 thru_hole circle (at -30.48 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 2 "Net-(J1-Pad2)"))
(pad 3 thru_hole circle (at -27.94 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 4 thru_hole circle (at -27.94 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 3 "Net-(J1-Pad4)"))
(pad 5 thru_hole circle (at -25.4 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 6 thru_hole circle (at -25.4 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 4 "Net-(J1-Pad6)"))
(pad 7 thru_hole circle (at -22.86 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 8 thru_hole circle (at -22.86 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 5 "Net-(J1-Pad8)"))
(pad 9 thru_hole circle (at -20.32 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 10 thru_hole circle (at -20.32 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 6 "Net-(J1-Pad10)"))
(pad 11 thru_hole circle (at -17.78 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 12 thru_hole circle (at -17.78 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 7 "Net-(J1-Pad12)"))
(pad 13 thru_hole circle (at -15.24 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 14 thru_hole circle (at -15.24 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 8 "Net-(J1-Pad14)"))
(pad 15 thru_hole circle (at -12.7 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 16 thru_hole circle (at -12.7 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 9 "Net-(J1-Pad16)"))
(pad 17 thru_hole circle (at -10.16 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 18 thru_hole circle (at -10.16 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 10 "Net-(J1-Pad18)"))
(pad 19 thru_hole circle (at -7.62 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 20 thru_hole circle (at -7.62 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 11 "Net-(J1-Pad20)"))
(pad 21 thru_hole circle (at -5.08 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 22 thru_hole circle (at -5.08 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 12 "Net-(J1-Pad22)"))
(pad 23 thru_hole circle (at -2.54 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 24 thru_hole circle (at -2.54 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 13 "Net-(J1-Pad24)"))
(pad 25 thru_hole circle (at 0 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 26 thru_hole circle (at 0 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 14 "Net-(J1-Pad26)"))
(pad 27 thru_hole circle (at 2.54 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 28 thru_hole circle (at 2.54 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 15 "Net-(J1-Pad28)"))
(pad 29 thru_hole circle (at 5.08 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 30 thru_hole circle (at 5.08 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 16 "Net-(J1-Pad30)"))
(pad 31 thru_hole circle (at 7.62 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 32 thru_hole circle (at 7.62 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 17 "Net-(J1-Pad32)"))
(pad 33 thru_hole circle (at 10.16 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 34 thru_hole circle (at 10.16 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 18 "Net-(J1-Pad34)"))
(pad 35 thru_hole circle (at 12.7 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 36 thru_hole circle (at 12.7 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 19 "Net-(J1-Pad36)"))
(pad 37 thru_hole circle (at 15.24 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 38 thru_hole circle (at 15.24 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 29 "Net-(J1-Pad38)"))
(pad 39 thru_hole circle (at 17.78 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 40 thru_hole circle (at 17.78 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 20 "Net-(J1-Pad40)"))
(pad 41 thru_hole circle (at 20.32 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 42 thru_hole circle (at 20.32 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 21 "Net-(J1-Pad42)"))
(pad 43 thru_hole circle (at 22.86 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 44 thru_hole circle (at 22.86 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 22 "Net-(J1-Pad44)"))
(pad 45 thru_hole circle (at 25.4 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 46 thru_hole circle (at 25.4 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 23 "Net-(J1-Pad46)"))
(pad 47 thru_hole circle (at 27.94 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 48 thru_hole circle (at 27.94 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 24 "Net-(J1-Pad48)"))
(pad 49 thru_hole circle (at 30.48 1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 50 thru_hole circle (at 30.48 -1.27 90) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 25 "Net-(J1-Pad50)"))
(pad "" np_thru_hole circle (at -36.6 -0.86 90) (size 2.4892 2.4892) (drill 2.4892) (layers *.Cu *.Mask F.SilkS))
(pad "" np_thru_hole circle (at 36.6 -0.86 90) (size 2.4892 2.4892) (drill 2.4892) (layers *.Cu *.Mask F.SilkS))
(model ${KINF6XLIB}/3d_models/Connectors/Wurth_61205022121.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(module NF6X_Connectors:Wurth_61203422121 (layer F.Cu) (tedit 55BAF03F) (tstamp 5599D000)
(at 147.32 111.76 270)
(descr "Wurth 34 pin right angle header with ejector latches")
(path /5599A355)
(fp_text reference J2 (at -33.02 -5.08 270) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value 61203422121 (at 0 -3.81 270) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_line (start 31.34 1.89) (end 28.94 1.89) (layer F.SilkS) (width 0.1))
(fp_line (start -28.94 1.89) (end -31.34 1.89) (layer F.SilkS) (width 0.1))
(fp_line (start -28.94 1.89) (end -21.59 1.89) (layer F.SilkS) (width 0.1))
(fp_line (start 21.59 1.89) (end 28.94 1.89) (layer F.SilkS) (width 0.1))
(fp_line (start -31.34 1.89) (end -31.34 -2.54) (layer F.SilkS) (width 0.1))
(fp_line (start 31.34 -2.54) (end 31.34 1.89) (layer F.SilkS) (width 0.1))
(fp_line (start 2.125 -11.11) (end 24.44 -11.11) (layer F.CrtYd) (width 0.1))
(fp_line (start 24.44 -11.11) (end 24.44 -15.11) (layer F.CrtYd) (width 0.1))
(fp_line (start 24.44 -15.11) (end 29.120196 -15.11) (layer F.CrtYd) (width 0.1))
(fp_arc (start 29.120196 -14.11) (end 30.100777 -14.306116) (angle -78.69006753) (layer F.CrtYd) (width 0.1))
(fp_line (start 30.100777 -14.306116) (end 31.145807 -9.080966) (layer F.CrtYd) (width 0.1))
(fp_arc (start 21.34 -7.119805) (end 31.34 -7.119805) (angle -11.30993247) (layer F.CrtYd) (width 0.1))
(fp_line (start 31.34 -7.119805) (end 31.34 1.89) (layer F.CrtYd) (width 0.1))
(fp_line (start 31.34 1.89) (end 28.94 1.89) (layer F.CrtYd) (width 0.1))
(fp_line (start -28.94 1.89) (end -31.34 1.89) (layer F.CrtYd) (width 0.1))
(fp_line (start -31.34 1.89) (end -31.34 -7.119805) (layer F.CrtYd) (width 0.1))
(fp_arc (start -21.34 -7.119805) (end -31.145807 -9.080966) (angle -11.30993247) (layer F.CrtYd) (width 0.1))
(fp_line (start -31.145807 -9.080966) (end -30.100777 -14.306116) (layer F.CrtYd) (width 0.1))
(fp_arc (start -29.120196 -14.11) (end -29.120196 -15.11) (angle -78.69006753) (layer F.CrtYd) (width 0.1))
(fp_line (start -29.120196 -15.11) (end -24.44 -15.11) (layer F.CrtYd) (width 0.1))
(fp_line (start -24.44 -15.11) (end -24.44 -11.11) (layer F.CrtYd) (width 0.1))
(fp_line (start -24.44 -11.11) (end -2.125 -11.11) (layer F.CrtYd) (width 0.1))
(fp_line (start -2.125 -11.11) (end 2.125 -11.11) (layer F.CrtYd) (width 0.1))
(fp_line (start -28.94 1.89) (end 28.94 1.89) (layer F.CrtYd) (width 0.1))
(pad 1 thru_hole rect (at -20.32 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 2 thru_hole circle (at -20.32 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 26 "Net-(J2-Pad2)"))
(pad 3 thru_hole circle (at -17.78 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 4 thru_hole circle (at -17.78 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 27 "Net-(J2-Pad4)"))
(pad 5 thru_hole circle (at -15.24 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 6 thru_hole circle (at -15.24 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 17 "Net-(J1-Pad32)"))
(pad 7 thru_hole circle (at -12.7 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 8 thru_hole circle (at -12.7 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 11 "Net-(J1-Pad20)"))
(pad 9 thru_hole circle (at -10.16 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 10 thru_hole circle (at -10.16 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 14 "Net-(J1-Pad26)"))
(pad 11 thru_hole circle (at -7.62 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 12 thru_hole circle (at -7.62 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 15 "Net-(J1-Pad28)"))
(pad 13 thru_hole circle (at -5.08 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 14 thru_hole circle (at -5.08 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 16 "Net-(J1-Pad30)"))
(pad 15 thru_hole circle (at -2.54 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 16 thru_hole circle (at -2.54 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 28 "Net-(J2-Pad16)"))
(pad 17 thru_hole circle (at 0 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 18 thru_hole circle (at 0 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 18 "Net-(J1-Pad34)"))
(pad 19 thru_hole circle (at 2.54 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 20 thru_hole circle (at 2.54 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 19 "Net-(J1-Pad36)"))
(pad 21 thru_hole circle (at 5.08 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 22 thru_hole circle (at 5.08 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 29 "Net-(J1-Pad38)"))
(pad 23 thru_hole circle (at 7.62 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 24 thru_hole circle (at 7.62 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 20 "Net-(J1-Pad40)"))
(pad 25 thru_hole circle (at 10.16 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 26 thru_hole circle (at 10.16 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 21 "Net-(J1-Pad42)"))
(pad 27 thru_hole circle (at 12.7 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 28 thru_hole circle (at 12.7 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 22 "Net-(J1-Pad44)"))
(pad 29 thru_hole circle (at 15.24 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 30 thru_hole circle (at 15.24 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 23 "Net-(J1-Pad46)"))
(pad 31 thru_hole circle (at 17.78 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 32 thru_hole circle (at 17.78 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 8 "Net-(J1-Pad14)"))
(pad 33 thru_hole circle (at 20.32 1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 34 thru_hole circle (at 20.32 -1.27 270) (size 1.905 1.905) (drill 1.0668) (layers *.Cu *.Mask F.SilkS)
(net 12 "Net-(J1-Pad22)"))
(pad "" np_thru_hole circle (at -26.44 -0.86 270) (size 2.4892 2.4892) (drill 2.4892) (layers *.Cu *.Mask F.SilkS))
(pad "" np_thru_hole circle (at 26.44 -0.86 270) (size 2.4892 2.4892) (drill 2.4892) (layers *.Cu *.Mask F.SilkS))
(model ${KINF6XLIB}/3d_models/Connectors/Wurth_61203422121.wrl
(at (xyz 0 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Angled_1x02 (layer F.Cu) (tedit 55BAF05A) (tstamp 5599D567)
(at 133.985 132.08 270)
(descr "Through hole pin header")
(tags "pin header")
(path /5599D454)
(fp_text reference JP1 (at 7.62 1.27 450) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value PBC02SBAN (at 0 -3.1 270) (layer F.Fab) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_line (start -1.5 -1.75) (end -1.5 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.65 -1.75) (end 10.65 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.75) (end 10.65 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 4.3) (end 10.65 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -1.55) (end -1.3 0) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.3 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 -0.127) (end 10.033 -0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 10.033 -0.127) (end 10.033 0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 10.033 0.127) (end 4.191 0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 0.127) (end 4.191 0) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 0) (end 10.033 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -0.254) (end 1.143 -0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 0.254) (end 1.143 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 2.286) (end 1.143 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 2.794) (end 1.143 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -1.27) (end 4.064 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 1.524 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 2.286) (end 10.16 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 2.286) (end 10.16 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 2.794) (end 4.064 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 3.81) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 1.27) (end 4.064 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 0.254) (end 4.064 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 -0.254) (end 10.16 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 -0.254) (end 10.16 -0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -1.27) (end 1.524 1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 6 "Net-(J1-Pad10)"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(model Pin_Headers/Pin_Header_Angled_1x02.wrl
(at (xyz 0 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Angled_1x03 (layer F.Cu) (tedit 55BAF06B) (tstamp 5599D399)
(at 133.35 71.12 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5599D6D5)
(fp_text reference JP2 (at 6.985 1.27 270) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value PBC03SBAN (at 0 -3.1 90) (layer F.Fab) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_line (start -1.5 -1.75) (end -1.5 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.65 -1.75) (end 10.65 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.75) (end 10.65 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 6.85) (end 10.65 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -1.55) (end -1.3 0) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.3 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 -0.127) (end 10.033 -0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 10.033 -0.127) (end 10.033 0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 10.033 0.127) (end 4.191 0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 0.127) (end 4.191 0) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 0) (end 10.033 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -0.254) (end 1.143 -0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 0.254) (end 1.143 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 2.286) (end 1.143 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 2.794) (end 1.143 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 4.826) (end 1.143 4.826) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 5.334) (end 1.143 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 1.27) (end 4.064 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 0.254) (end 4.064 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 -0.254) (end 10.16 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 -0.254) (end 10.16 -0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -1.27) (end 1.524 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -1.27) (end 4.064 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 1.524 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 4.826) (end 10.16 4.826) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 4.826) (end 10.16 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 5.334) (end 4.064 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 6.35) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 3.81) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 2.794) (end 4.064 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 2.286) (end 10.16 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 2.286) (end 10.16 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 1.524 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 6.35) (end 4.064 6.35) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 9 "Net-(J1-Pad16)"))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 30 "Net-(JP2-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 10 "Net-(J1-Pad18)"))
(model Pin_Headers/Pin_Header_Angled_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Angled_1x03 (layer F.Cu) (tedit 55BAF06E) (tstamp 5599D391)
(at 146.05 71.12 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5599D589)
(fp_text reference JP3 (at 6.985 1.27 270) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value PBC03SBAN (at 0 -3.1 90) (layer F.Fab) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_line (start -1.5 -1.75) (end -1.5 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.65 -1.75) (end 10.65 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.75) (end 10.65 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 6.85) (end 10.65 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -1.55) (end -1.3 0) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.3 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 -0.127) (end 10.033 -0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 10.033 -0.127) (end 10.033 0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 10.033 0.127) (end 4.191 0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 0.127) (end 4.191 0) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 0) (end 10.033 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -0.254) (end 1.143 -0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 0.254) (end 1.143 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 2.286) (end 1.143 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 2.794) (end 1.143 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 4.826) (end 1.143 4.826) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 5.334) (end 1.143 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 1.27) (end 4.064 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 0.254) (end 4.064 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 -0.254) (end 10.16 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 -0.254) (end 10.16 -0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -1.27) (end 1.524 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -1.27) (end 4.064 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 1.524 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 4.826) (end 10.16 4.826) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 4.826) (end 10.16 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 5.334) (end 4.064 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 6.35) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 3.81) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 2.794) (end 4.064 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 2.286) (end 10.16 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 2.286) (end 10.16 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 1.524 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 6.35) (end 4.064 6.35) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 30 "Net-(JP2-Pad2)"))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 28 "Net-(J2-Pad16)"))
(pad 3 thru_hole oval (at 0 5.08 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(model Pin_Headers/Pin_Header_Angled_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Resistors_ThroughHole:Resistor_Horizontal_RM10mm (layer F.Cu) (tedit 5599E76B) (tstamp 5599E201)
(at 137.16 91.44 180)
(descr "Resistor, Axial, RM 10mm, 1/3W,")
(tags "Resistor, Axial, RM 10mm, 1/3W,")
(path /5599DC9A)
(fp_text reference R1 (at 0 2.54 180) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value DNI (at 3.81 3.81 180) (layer F.Fab) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 0) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 0) (end 3.81 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 14 "Net-(J1-Pad26)"))
(pad 2 thru_hole circle (at 5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 14 "Net-(J1-Pad26)"))
)
(module Resistors_ThroughHole:Resistor_Horizontal_RM10mm (layer F.Cu) (tedit 5599E76F) (tstamp 5599E207)
(at 137.16 96.52 180)
(descr "Resistor, Axial, RM 10mm, 1/3W,")
(tags "Resistor, Axial, RM 10mm, 1/3W,")
(path /5599E489)
(fp_text reference R2 (at 0 2.54 180) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value DNI (at 3.81 3.81 180) (layer F.Fab) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 0) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 0) (end 3.81 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 15 "Net-(J1-Pad28)"))
(pad 2 thru_hole circle (at 5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 15 "Net-(J1-Pad28)"))
)
(module Resistors_ThroughHole:Resistor_Horizontal_RM10mm (layer F.Cu) (tedit 5599E773) (tstamp 5599E20D)
(at 137.16 101.6 180)
(descr "Resistor, Axial, RM 10mm, 1/3W,")
(tags "Resistor, Axial, RM 10mm, 1/3W,")
(path /5599E4A9)
(fp_text reference R3 (at 0 2.54 180) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value DNI (at 3.81 3.81 180) (layer F.Fab) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 0) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 0) (end 3.81 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 16 "Net-(J1-Pad30)"))
(pad 2 thru_hole circle (at 5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 16 "Net-(J1-Pad30)"))
)
(module Resistors_ThroughHole:Resistor_Horizontal_RM10mm (layer F.Cu) (tedit 5599E776) (tstamp 5599E213)
(at 137.16 106.68 180)
(descr "Resistor, Axial, RM 10mm, 1/3W,")
(tags "Resistor, Axial, RM 10mm, 1/3W,")
(path /5599E4D0)
(fp_text reference R4 (at 0 2.54 180) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value DNI (at 3.81 3.81 180) (layer F.Fab) hide
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 0) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 0) (end 3.81 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 17 "Net-(J1-Pad32)"))
(pad 2 thru_hole circle (at 5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 17 "Net-(J1-Pad32)"))
)
(module Pin_Headers:Pin_Header_Angled_1x03 (layer F.Cu) (tedit 55BAF05F) (tstamp 55BA461C)
(at 142.875 132.08 270)
(descr "Through hole pin header")
(tags "pin header")
(path /55BA433A)
(fp_text reference JP4 (at 7.62 1.27 270) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(fp_text value PBC03SBAN (at 0 -3.1 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.5 -1.75) (end -1.5 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 10.65 -1.75) (end 10.65 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.75) (end 10.65 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 6.85) (end 10.65 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.3 -1.55) (end -1.3 0) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.3 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 -0.127) (end 10.033 -0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 10.033 -0.127) (end 10.033 0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 10.033 0.127) (end 4.191 0.127) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 0.127) (end 4.191 0) (layer F.SilkS) (width 0.15))
(fp_line (start 4.191 0) (end 10.033 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -0.254) (end 1.143 -0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 0.254) (end 1.143 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 2.286) (end 1.143 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 2.794) (end 1.143 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 4.826) (end 1.143 4.826) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 5.334) (end 1.143 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 1.27) (end 4.064 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 0.254) (end 4.064 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 -0.254) (end 10.16 0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 -0.254) (end 10.16 -0.254) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -1.27) (end 1.524 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 -1.27) (end 4.064 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 1.524 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 4.826) (end 10.16 4.826) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 4.826) (end 10.16 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 5.334) (end 4.064 5.334) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 6.35) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 3.81) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 2.794) (end 4.064 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 10.16 2.286) (end 10.16 2.794) (layer F.SilkS) (width 0.15))
(fp_line (start 4.064 2.286) (end 10.16 2.286) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 3.81) (end 4.064 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 1.524 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 1.27) (end 4.064 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.524 6.35) (end 4.064 6.35) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 2 "Net-(J1-Pad2)"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 26 "Net-(J2-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(model Pin_Headers/Pin_Header_Angled_1x03.wrl
(at (xyz 0 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(gr_text ~REDWC (at 142.875 127 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text DENS (at 140.335 127.635 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text GND (at 137.795 128.27 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_line (start 144.145 77.47) (end 137.795 77.47) (angle 90) (layer F.SilkS) (width 0.2))
(gr_line (start 146.05 75.565) (end 144.145 77.47) (angle 90) (layer F.SilkS) (width 0.2))
(gr_line (start 146.05 73.025) (end 146.05 75.565) (angle 90) (layer F.SilkS) (width 0.2))
(gr_text ~DCH (at 121.92 119.38) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~MO2 (at 121.92 124.46) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~MO1 (at 121.92 127) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~MO0 (at 121.92 129.54) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~SC (at 121.92 71.12) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~SD (at 121.92 73.66) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~RD (at 121.92 76.2) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~WP (at 121.92 78.74) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~T0 (at 121.92 81.28) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~WG (at 121.92 83.82) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~STP (at 121.92 88.9) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DIR (at 121.92 91.44) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~WD (at 121.92 86.36) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DS3 (at 121.92 93.98) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DS2 (at 121.92 96.52) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DS1 (at 121.92 99.06) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~SEC (at 121.92 104.14) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~RDY (at 121.92 106.68) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~IDX (at 121.92 109.22) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~HLD (at 121.92 111.76) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DS0 (at 121.92 101.6) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~S1 (at 121.92 116.84) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~2S (at 121.92 121.92) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~RWC (at 121.92 132.08) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~RWC (at 151.765 91.44) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DLK (at 121.92 114.3) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~RDY (at 151.765 132.08) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~S1 (at 151.765 129.54) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~RD (at 151.765 127) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~WP (at 151.765 124.46) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DIR (at 151.765 111.76) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~T0 (at 151.765 121.92) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~INU (at 151.765 93.98) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~WG (at 151.765 119.38) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~WD (at 151.765 116.84) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~STP (at 151.765 114.3) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~MTR (at 151.765 109.22) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DS0 (at 151.765 101.6) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DS1 (at 151.765 104.14) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DS2 (at 151.765 106.68) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~IDX (at 151.765 99.06) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text ~DS3 (at 151.765 96.52) (layer B.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)) (justify mirror))
)
(gr_text "FD50TO34 v3 by NF6X\nhttps://github.com/NF6X/fd50to34" (at 137.16 101.6 90) (layer B.SilkS)
(effects (font (size 1.905 1.905) (thickness 0.1905)) (justify mirror))
)
(gr_text "FD50TO34\nby NF6X" (at 136.525 118.11 90) (layer F.SilkS) (tstamp 5599EEFD)
(effects (font (size 1.905 1.905) (thickness 0.1905)))
)
(gr_text ~2SIDE (at 132.715 129.54) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text ~MTRON (at 148.59 76.2 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text GND (at 151.13 74.93 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_line (start 135.89 75.565) (end 135.89 73.025) (angle 90) (layer F.SilkS) (width 0.2))
(gr_line (start 137.795 77.47) (end 135.89 75.565) (angle 90) (layer F.SilkS) (width 0.2))
(gr_text ~HLD (at 138.43 74.93 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text ~DLOCK (at 133.35 76.2 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_line (start 130.175 109.22) (end 130.175 81.28) (angle 90) (layer F.SilkS) (width 0.2))
(gr_line (start 144.145 109.22) (end 130.175 109.22) (angle 90) (layer F.SilkS) (width 0.2))
(gr_line (start 144.145 81.28) (end 144.145 109.22) (angle 90) (layer F.SilkS) (width 0.2))
(gr_line (start 130.175 81.28) (end 144.145 81.28) (angle 90) (layer F.SilkS) (width 0.2))
(gr_text "DRIVE\nSELECT\nREMAPPING" (at 137.16 84.455) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text "3.5\"/5.25\"\nDRIVES" (at 142.875 116.84 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text "8\" CONTROLLER" (at 130.81 117.475 90) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text 3 (at 132.08 104.775) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text 2 (at 132.08 99.695) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text 1 (at 132.08 94.615) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text 3 (at 142.24 104.775) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text 2 (at 142.24 99.695) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text 1 (at 142.24 94.615) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text 0 (at 142.24 89.535) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_text 0 (at 132.08 89.535) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.127)))
)
(gr_line (start 154.94 143.51) (end 119.38 143.51) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 154.94 59.69) (end 154.94 143.51) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 119.38 59.69) (end 154.94 59.69) (angle 90) (layer Edge.Cuts) (width 0.15) (tstamp 5599E39B))
(gr_line (start 119.38 143.51) (end 119.38 59.69) (angle 90) (layer Edge.Cuts) (width 0.15))
(segment (start 132.715 93.98) (end 140.97 93.98) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 132.715 104.14) (end 140.97 104.14) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 130.175 95.885) (end 132.08 93.98) (width 0.1524) (layer F.Cu) (net 1) (tstamp 55BAF5E6))
(segment (start 132.08 93.98) (end 132.715 93.98) (width 0.1524) (layer F.Cu) (net 1) (tstamp 55BAF5E9))
(via (at 132.715 93.98) (size 0.762) (layers F.Cu B.Cu) (net 1))
(segment (start 130.175 96.52) (end 128.27 96.52) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 130.175 96.52) (end 130.175 95.885) (width 0.1524) (layer F.Cu) (net 1))
(via (at 140.97 93.98) (size 0.762) (layers F.Cu B.Cu) (net 1))
(segment (start 140.97 99.06) (end 132.715 99.06) (width 0.1524) (layer F.Cu) (net 1))
(via (at 132.715 99.06) (size 0.762) (layers F.Cu B.Cu) (net 1))
(segment (start 130.175 99.06) (end 128.27 99.06) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 132.715 99.06) (end 130.175 99.06) (width 0.1524) (layer F.Cu) (net 1))
(via (at 140.97 99.06) (size 0.762) (layers F.Cu B.Cu) (net 1))
(segment (start 130.175 102.235) (end 132.08 104.14) (width 0.1524) (layer F.Cu) (net 1) (tstamp 55BAF626))
(segment (start 132.08 104.14) (end 132.715 104.14) (width 0.1524) (layer F.Cu) (net 1) (tstamp 55BAF627))
(via (at 132.715 104.14) (size 0.762) (layers F.Cu B.Cu) (net 1))
(segment (start 130.175 101.6) (end 128.27 101.6) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 130.175 101.6) (end 130.175 102.235) (width 0.1524) (layer F.Cu) (net 1))
(via (at 140.97 104.14) (size 0.762) (layers F.Cu B.Cu) (net 1))
(segment (start 146.05 127) (end 144.145 127) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 146.05 124.46) (end 144.145 124.46) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 146.05 121.92) (end 144.145 121.92) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 109.22) (end 130.175 109.22) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 146.05 119.38) (end 144.145 119.38) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 146.05 116.84) (end 144.145 116.84) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 146.05 106.68) (end 144.145 106.68) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 146.05 109.22) (end 144.145 109.22) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 146.05 111.76) (end 144.145 111.76) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 146.05 114.3) (end 144.145 114.3) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 114.3) (end 130.175 114.3) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 111.76) (end 130.175 111.76) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 91.44) (end 130.175 91.44) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 86.36) (end 130.175 86.36) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 88.9) (end 130.175 88.9) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 83.82) (end 130.175 83.82) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 81.28) (end 130.175 81.28) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 78.74) (end 130.175 78.74) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 128.27 76.2) (end 130.175 76.2) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 142.875 132.08) (end 142.875 130.175) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 142.875 130.175) (end 142.24 129.54) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 142.24 129.54) (end 137.16 129.54) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 137.16 129.54) (end 135.89 130.81) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 135.89 130.81) (end 135.89 133.35) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 135.89 133.35) (end 134.62 134.62) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 134.62 134.62) (end 126.365 134.62) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 126.365 134.62) (end 125.73 133.985) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 125.73 133.985) (end 125.73 132.08) (width 0.1524) (layer F.Cu) (net 2))
(segment (start 133.985 132.08) (end 133.985 126.365) (width 0.1524) (layer F.Cu) (net 6))