-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPZCT-02-Burden.kicad_pcb
993 lines (963 loc) · 54.9 KB
/
PZCT-02-Burden.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
(kicad_pcb (version 20160815) (host pcbnew "(2016-12-18 revision 3ffa37c)-master")
(general
(links 36)
(no_connects 7)
(area 50.056038 53.089999 118.20604 88.53013)
(thickness 1.6)
(drawings 6)
(tracks 123)
(zones 0)
(modules 21)
(nets 11)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(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.75)
(trace_clearance 0.75)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(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)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 111.125 50.165)
(grid_origin 111.125 50.165)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x00000_fffffffe)
(usegerberextensions false)
(excludeedgelayer false)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(psnegative false)
(psa4output false)
(plotreference false)
(plotvalue false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 5)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 +5V)
(net 2 "Net-(C1-Pad1)")
(net 3 GND)
(net 4 "Net-(C2-Pad1)")
(net 5 "Net-(C3-Pad1)")
(net 6 "Net-(C4-Pad1)")
(net 7 "Net-(P1-Pad3)")
(net 8 "Net-(P1-Pad4)")
(net 9 "Net-(P1-Pad5)")
(net 10 "Net-(P1-Pad6)")
(net_class Default "This is the default net class."
(clearance 0.75)
(trace_width 0.75)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_gap 0.5)
(diff_pair_width 0.75)
(add_net +5V)
(add_net GND)
)
(net_class HC ""
(clearance 0.75)
(trace_width 1)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_gap 0.5)
(diff_pair_width 1)
(add_net "Net-(C1-Pad1)")
(add_net "Net-(C2-Pad1)")
(add_net "Net-(C3-Pad1)")
(add_net "Net-(C4-Pad1)")
(add_net "Net-(P1-Pad3)")
(add_net "Net-(P1-Pad4)")
(add_net "Net-(P1-Pad5)")
(add_net "Net-(P1-Pad6)")
)
(module Capacitors_THT:C_Radial_D5_L11_P2 (layer F.Cu) (tedit 0) (tstamp 58DC0817)
(at 108.49 75.601797)
(descr "Radial Electrolytic Capacitor 5mm x Length 11mm, Pitch 2mm")
(tags "Electrolytic Capacitor")
(path /58D86A04)
(fp_text reference C1 (at 4.54 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 1.365 3.81 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.075 -2.499) (end 1.075 2.499) (layer F.SilkS) (width 0.15))
(fp_line (start 1.215 -2.491) (end 1.215 -0.154) (layer F.SilkS) (width 0.15))
(fp_line (start 1.215 0.154) (end 1.215 2.491) (layer F.SilkS) (width 0.15))
(fp_line (start 1.355 -2.475) (end 1.355 -0.473) (layer F.SilkS) (width 0.15))
(fp_line (start 1.355 0.473) (end 1.355 2.475) (layer F.SilkS) (width 0.15))
(fp_line (start 1.495 -2.451) (end 1.495 -0.62) (layer F.SilkS) (width 0.15))
(fp_line (start 1.495 0.62) (end 1.495 2.451) (layer F.SilkS) (width 0.15))
(fp_line (start 1.635 -2.418) (end 1.635 -0.712) (layer F.SilkS) (width 0.15))
(fp_line (start 1.635 0.712) (end 1.635 2.418) (layer F.SilkS) (width 0.15))
(fp_line (start 1.775 -2.377) (end 1.775 -0.768) (layer F.SilkS) (width 0.15))
(fp_line (start 1.775 0.768) (end 1.775 2.377) (layer F.SilkS) (width 0.15))
(fp_line (start 1.915 -2.327) (end 1.915 -0.795) (layer F.SilkS) (width 0.15))
(fp_line (start 1.915 0.795) (end 1.915 2.327) (layer F.SilkS) (width 0.15))
(fp_line (start 2.055 -2.266) (end 2.055 -0.798) (layer F.SilkS) (width 0.15))
(fp_line (start 2.055 0.798) (end 2.055 2.266) (layer F.SilkS) (width 0.15))
(fp_line (start 2.195 -2.196) (end 2.195 -0.776) (layer F.SilkS) (width 0.15))
(fp_line (start 2.195 0.776) (end 2.195 2.196) (layer F.SilkS) (width 0.15))
(fp_line (start 2.335 -2.114) (end 2.335 -0.726) (layer F.SilkS) (width 0.15))
(fp_line (start 2.335 0.726) (end 2.335 2.114) (layer F.SilkS) (width 0.15))
(fp_line (start 2.475 -2.019) (end 2.475 -0.644) (layer F.SilkS) (width 0.15))
(fp_line (start 2.475 0.644) (end 2.475 2.019) (layer F.SilkS) (width 0.15))
(fp_line (start 2.615 -1.908) (end 2.615 -0.512) (layer F.SilkS) (width 0.15))
(fp_line (start 2.615 0.512) (end 2.615 1.908) (layer F.SilkS) (width 0.15))
(fp_line (start 2.755 -1.78) (end 2.755 -0.265) (layer F.SilkS) (width 0.15))
(fp_line (start 2.755 0.265) (end 2.755 1.78) (layer F.SilkS) (width 0.15))
(fp_line (start 2.895 -1.631) (end 2.895 1.631) (layer F.SilkS) (width 0.15))
(fp_line (start 3.035 -1.452) (end 3.035 1.452) (layer F.SilkS) (width 0.15))
(fp_line (start 3.175 -1.233) (end 3.175 1.233) (layer F.SilkS) (width 0.15))
(fp_line (start 3.315 -0.944) (end 3.315 0.944) (layer F.SilkS) (width 0.15))
(fp_line (start 3.455 -0.472) (end 3.455 0.472) (layer F.SilkS) (width 0.15))
(fp_circle (center 2 0) (end 2 -0.8) (layer F.SilkS) (width 0.15))
(fp_circle (center 1 0) (end 1 -2.5375) (layer F.SilkS) (width 0.15))
(fp_circle (center 1 0) (end 1 -2.8) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)"))
(pad 2 thru_hole circle (at 2 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask)
(net 3 GND))
(model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L11_P2.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Radial_D5_L11_P2 (layer F.Cu) (tedit 0) (tstamp 58DC08FD)
(at 74.835 75.601797)
(descr "Radial Electrolytic Capacitor 5mm x Length 11mm, Pitch 2mm")
(tags "Electrolytic Capacitor")
(path /58DC0807)
(fp_text reference C3 (at 4.54 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 1.365 3.8) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.075 -2.499) (end 1.075 2.499) (layer F.SilkS) (width 0.15))
(fp_line (start 1.215 -2.491) (end 1.215 -0.154) (layer F.SilkS) (width 0.15))
(fp_line (start 1.215 0.154) (end 1.215 2.491) (layer F.SilkS) (width 0.15))
(fp_line (start 1.355 -2.475) (end 1.355 -0.473) (layer F.SilkS) (width 0.15))
(fp_line (start 1.355 0.473) (end 1.355 2.475) (layer F.SilkS) (width 0.15))
(fp_line (start 1.495 -2.451) (end 1.495 -0.62) (layer F.SilkS) (width 0.15))
(fp_line (start 1.495 0.62) (end 1.495 2.451) (layer F.SilkS) (width 0.15))
(fp_line (start 1.635 -2.418) (end 1.635 -0.712) (layer F.SilkS) (width 0.15))
(fp_line (start 1.635 0.712) (end 1.635 2.418) (layer F.SilkS) (width 0.15))
(fp_line (start 1.775 -2.377) (end 1.775 -0.768) (layer F.SilkS) (width 0.15))
(fp_line (start 1.775 0.768) (end 1.775 2.377) (layer F.SilkS) (width 0.15))
(fp_line (start 1.915 -2.327) (end 1.915 -0.795) (layer F.SilkS) (width 0.15))
(fp_line (start 1.915 0.795) (end 1.915 2.327) (layer F.SilkS) (width 0.15))
(fp_line (start 2.055 -2.266) (end 2.055 -0.798) (layer F.SilkS) (width 0.15))
(fp_line (start 2.055 0.798) (end 2.055 2.266) (layer F.SilkS) (width 0.15))
(fp_line (start 2.195 -2.196) (end 2.195 -0.776) (layer F.SilkS) (width 0.15))
(fp_line (start 2.195 0.776) (end 2.195 2.196) (layer F.SilkS) (width 0.15))
(fp_line (start 2.335 -2.114) (end 2.335 -0.726) (layer F.SilkS) (width 0.15))
(fp_line (start 2.335 0.726) (end 2.335 2.114) (layer F.SilkS) (width 0.15))
(fp_line (start 2.475 -2.019) (end 2.475 -0.644) (layer F.SilkS) (width 0.15))
(fp_line (start 2.475 0.644) (end 2.475 2.019) (layer F.SilkS) (width 0.15))
(fp_line (start 2.615 -1.908) (end 2.615 -0.512) (layer F.SilkS) (width 0.15))
(fp_line (start 2.615 0.512) (end 2.615 1.908) (layer F.SilkS) (width 0.15))
(fp_line (start 2.755 -1.78) (end 2.755 -0.265) (layer F.SilkS) (width 0.15))
(fp_line (start 2.755 0.265) (end 2.755 1.78) (layer F.SilkS) (width 0.15))
(fp_line (start 2.895 -1.631) (end 2.895 1.631) (layer F.SilkS) (width 0.15))
(fp_line (start 3.035 -1.452) (end 3.035 1.452) (layer F.SilkS) (width 0.15))
(fp_line (start 3.175 -1.233) (end 3.175 1.233) (layer F.SilkS) (width 0.15))
(fp_line (start 3.315 -0.944) (end 3.315 0.944) (layer F.SilkS) (width 0.15))
(fp_line (start 3.455 -0.472) (end 3.455 0.472) (layer F.SilkS) (width 0.15))
(fp_circle (center 2 0) (end 2 -0.8) (layer F.SilkS) (width 0.15))
(fp_circle (center 1 0) (end 1 -2.5375) (layer F.SilkS) (width 0.15))
(fp_circle (center 1 0) (end 1 -2.8) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 2 thru_hole circle (at 2 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask)
(net 3 GND))
(model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L11_P2.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x02 (layer F.Cu) (tedit 58DC1306) (tstamp 58DC073D)
(at 106.686039 83.221797 270)
(descr "Through hole pin header")
(tags "pin header")
(path /58D8664C)
(fp_text reference P2 (at 2.54 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X02 (at 2.54 5.08) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.27 1.27) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer F.SilkS) (width 0.15))
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (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)
(net 2 "Net-(C1-Pad1)"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 7 "Net-(P1-Pad3)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl
(at (xyz 0 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Resistors_THT:Resistor_Horizontal_RM7mm (layer F.Cu) (tedit 569FCF07) (tstamp 58DC052D)
(at 107.321039 64.806797)
(descr "Resistor, Axial, RM 7.62mm, 1/3W,")
(tags "Resistor Axial RM 7.62mm 1/3W R3")
(path /58D86BA9)
(fp_text reference R2 (at 2.533961 -1.941797) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.25 1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.85 -1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 8.85 -1.5) (layer F.CrtYd) (width 0.05))
(pad 2 thru_hole circle (at 7.62 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 3 GND))
(pad 1 thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 2 "Net-(C1-Pad1)"))
)
(module Capacitors_THT:C_Radial_D5_L11_P2 (layer F.Cu) (tedit 58DC0866) (tstamp 58DC0970)
(at 58.325 75.601797)
(descr "Radial Electrolytic Capacitor 5mm x Length 11mm, Pitch 2mm")
(tags "Electrolytic Capacitor")
(path /58DC09D4)
(fp_text reference C4 (at 4.54 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 1 3.8) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 1 0) (end 1 -2.8) (layer F.CrtYd) (width 0.05))
(fp_circle (center 1 0) (end 1 -2.5375) (layer F.SilkS) (width 0.15))
(fp_circle (center 2 0) (end 2 -0.8) (layer F.SilkS) (width 0.15))
(fp_line (start 3.455 -0.472) (end 3.455 0.472) (layer F.SilkS) (width 0.15))
(fp_line (start 3.315 -0.944) (end 3.315 0.944) (layer F.SilkS) (width 0.15))
(fp_line (start 3.175 -1.233) (end 3.175 1.233) (layer F.SilkS) (width 0.15))
(fp_line (start 3.035 -1.452) (end 3.035 1.452) (layer F.SilkS) (width 0.15))
(fp_line (start 2.895 -1.631) (end 2.895 1.631) (layer F.SilkS) (width 0.15))
(fp_line (start 2.755 0.265) (end 2.755 1.78) (layer F.SilkS) (width 0.15))
(fp_line (start 2.755 -1.78) (end 2.755 -0.265) (layer F.SilkS) (width 0.15))
(fp_line (start 2.615 0.512) (end 2.615 1.908) (layer F.SilkS) (width 0.15))
(fp_line (start 2.615 -1.908) (end 2.615 -0.512) (layer F.SilkS) (width 0.15))
(fp_line (start 2.475 0.644) (end 2.475 2.019) (layer F.SilkS) (width 0.15))
(fp_line (start 2.475 -2.019) (end 2.475 -0.644) (layer F.SilkS) (width 0.15))
(fp_line (start 2.335 0.726) (end 2.335 2.114) (layer F.SilkS) (width 0.15))
(fp_line (start 2.335 -2.114) (end 2.335 -0.726) (layer F.SilkS) (width 0.15))
(fp_line (start 2.195 0.776) (end 2.195 2.196) (layer F.SilkS) (width 0.15))
(fp_line (start 2.195 -2.196) (end 2.195 -0.776) (layer F.SilkS) (width 0.15))
(fp_line (start 2.055 0.798) (end 2.055 2.266) (layer F.SilkS) (width 0.15))
(fp_line (start 2.055 -2.266) (end 2.055 -0.798) (layer F.SilkS) (width 0.15))
(fp_line (start 1.915 0.795) (end 1.915 2.327) (layer F.SilkS) (width 0.15))
(fp_line (start 1.915 -2.327) (end 1.915 -0.795) (layer F.SilkS) (width 0.15))
(fp_line (start 1.775 0.768) (end 1.775 2.377) (layer F.SilkS) (width 0.15))
(fp_line (start 1.775 -2.377) (end 1.775 -0.768) (layer F.SilkS) (width 0.15))
(fp_line (start 1.635 0.712) (end 1.635 2.418) (layer F.SilkS) (width 0.15))
(fp_line (start 1.635 -2.418) (end 1.635 -0.712) (layer F.SilkS) (width 0.15))
(fp_line (start 1.495 0.62) (end 1.495 2.451) (layer F.SilkS) (width 0.15))
(fp_line (start 1.495 -2.451) (end 1.495 -0.62) (layer F.SilkS) (width 0.15))
(fp_line (start 1.355 0.473) (end 1.355 2.475) (layer F.SilkS) (width 0.15))
(fp_line (start 1.355 -2.475) (end 1.355 -0.473) (layer F.SilkS) (width 0.15))
(fp_line (start 1.215 0.154) (end 1.215 2.491) (layer F.SilkS) (width 0.15))
(fp_line (start 1.215 -2.491) (end 1.215 -0.154) (layer F.SilkS) (width 0.15))
(fp_line (start 1.075 -2.499) (end 1.075 2.499) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole circle (at 2 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask)
(net 3 GND))
(pad 1 thru_hole rect (at 0 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C4-Pad1)"))
(model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L11_P2.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_THT:C_Radial_D5_L11_P2 (layer F.Cu) (tedit 0) (tstamp 58DC088A)
(at 91.98 75.601797)
(descr "Radial Electrolytic Capacitor 5mm x Length 11mm, Pitch 2mm")
(tags "Electrolytic Capacitor")
(path /58DC01BA)
(fp_text reference C2 (at 4.445 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 1.27 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.075 -2.499) (end 1.075 2.499) (layer F.SilkS) (width 0.15))
(fp_line (start 1.215 -2.491) (end 1.215 -0.154) (layer F.SilkS) (width 0.15))
(fp_line (start 1.215 0.154) (end 1.215 2.491) (layer F.SilkS) (width 0.15))
(fp_line (start 1.355 -2.475) (end 1.355 -0.473) (layer F.SilkS) (width 0.15))
(fp_line (start 1.355 0.473) (end 1.355 2.475) (layer F.SilkS) (width 0.15))
(fp_line (start 1.495 -2.451) (end 1.495 -0.62) (layer F.SilkS) (width 0.15))
(fp_line (start 1.495 0.62) (end 1.495 2.451) (layer F.SilkS) (width 0.15))
(fp_line (start 1.635 -2.418) (end 1.635 -0.712) (layer F.SilkS) (width 0.15))
(fp_line (start 1.635 0.712) (end 1.635 2.418) (layer F.SilkS) (width 0.15))
(fp_line (start 1.775 -2.377) (end 1.775 -0.768) (layer F.SilkS) (width 0.15))
(fp_line (start 1.775 0.768) (end 1.775 2.377) (layer F.SilkS) (width 0.15))
(fp_line (start 1.915 -2.327) (end 1.915 -0.795) (layer F.SilkS) (width 0.15))
(fp_line (start 1.915 0.795) (end 1.915 2.327) (layer F.SilkS) (width 0.15))
(fp_line (start 2.055 -2.266) (end 2.055 -0.798) (layer F.SilkS) (width 0.15))
(fp_line (start 2.055 0.798) (end 2.055 2.266) (layer F.SilkS) (width 0.15))
(fp_line (start 2.195 -2.196) (end 2.195 -0.776) (layer F.SilkS) (width 0.15))
(fp_line (start 2.195 0.776) (end 2.195 2.196) (layer F.SilkS) (width 0.15))
(fp_line (start 2.335 -2.114) (end 2.335 -0.726) (layer F.SilkS) (width 0.15))
(fp_line (start 2.335 0.726) (end 2.335 2.114) (layer F.SilkS) (width 0.15))
(fp_line (start 2.475 -2.019) (end 2.475 -0.644) (layer F.SilkS) (width 0.15))
(fp_line (start 2.475 0.644) (end 2.475 2.019) (layer F.SilkS) (width 0.15))
(fp_line (start 2.615 -1.908) (end 2.615 -0.512) (layer F.SilkS) (width 0.15))
(fp_line (start 2.615 0.512) (end 2.615 1.908) (layer F.SilkS) (width 0.15))
(fp_line (start 2.755 -1.78) (end 2.755 -0.265) (layer F.SilkS) (width 0.15))
(fp_line (start 2.755 0.265) (end 2.755 1.78) (layer F.SilkS) (width 0.15))
(fp_line (start 2.895 -1.631) (end 2.895 1.631) (layer F.SilkS) (width 0.15))
(fp_line (start 3.035 -1.452) (end 3.035 1.452) (layer F.SilkS) (width 0.15))
(fp_line (start 3.175 -1.233) (end 3.175 1.233) (layer F.SilkS) (width 0.15))
(fp_line (start 3.315 -0.944) (end 3.315 0.944) (layer F.SilkS) (width 0.15))
(fp_line (start 3.455 -0.472) (end 3.455 0.472) (layer F.SilkS) (width 0.15))
(fp_circle (center 2 0) (end 2 -0.8) (layer F.SilkS) (width 0.15))
(fp_circle (center 1 0) (end 1 -2.5375) (layer F.SilkS) (width 0.15))
(fp_circle (center 1 0) (end 1 -2.8) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad1)"))
(pad 2 thru_hole circle (at 2 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask)
(net 3 GND))
(model Capacitors_ThroughHole.3dshapes/C_Radial_D5_L11_P2.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Pin_Headers:Pin_Header_Straight_1x02 (layer F.Cu) (tedit 58DC138E) (tstamp 58DC07D0)
(at 56.521039 83.221797 270)
(descr "Through hole pin header")
(tags "pin header")
(path /58DBFCCB)
(fp_text reference P5 (at 2.54 -0.635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X02 (at 0 -3.1 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole oval (at 0 2.54 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 10 "Net-(P1-Pad6)"))
(pad 1 thru_hole rect (at 0 0 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 6 "Net-(C4-Pad1)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl
(at (xyz 0 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x02 (layer F.Cu) (tedit 58DC1360) (tstamp 58DC079F)
(at 73.031039 83.221797 270)
(descr "Through hole pin header")
(tags "pin header")
(path /58DBFC7D)
(fp_text reference P4 (at 2.54 -0.635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X02 (at 0 -3.1 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.27 1.27) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer F.SilkS) (width 0.15))
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (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)
(net 5 "Net-(C3-Pad1)"))
(pad 2 thru_hole oval (at 0 2.54 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 9 "Net-(P1-Pad5)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl
(at (xyz 0 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x02 (layer F.Cu) (tedit 58DC132F) (tstamp 58DC076E)
(at 90.176039 83.221797 270)
(descr "Through hole pin header")
(tags "pin header")
(path /58DBFC06)
(fp_text reference P3 (at 2.54 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X02 (at 0 -3.1 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole oval (at 0 2.54 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 8 "Net-(P1-Pad4)"))
(pad 1 thru_hole rect (at 0 0 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad1)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl
(at (xyz 0 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_1x06 (layer F.Cu) (tedit 58DC1613) (tstamp 58DC0704)
(at 111.125 55.88 270)
(descr "Through hole pin header")
(tags "pin header")
(path /58DC1AC0)
(fp_text reference P1 (at -0.036797 -2.533961 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X06 (at 2.54 6.35) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 14.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 14.45) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 14.45) (end 1.75 14.45) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 1.27) (end 1.27 13.97) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 13.97) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (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)
(net 1 +5V))
(pad 2 thru_hole oval (at 0 2.54 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 3 GND))
(pad 3 thru_hole oval (at 0 5.08 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 7 "Net-(P1-Pad3)"))
(pad 4 thru_hole oval (at 0 7.62 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 8 "Net-(P1-Pad4)"))
(pad 5 thru_hole oval (at 0 10.16 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 9 "Net-(P1-Pad5)"))
(pad 6 thru_hole oval (at 0 12.7 270) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 10 "Net-(P1-Pad6)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x06.wrl
(at (xyz 0 -0.25 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Resistors_THT:Resistor_Horizontal_RM15mm (layer F.Cu) (tedit 569FCEE8) (tstamp 58DC06D1)
(at 53.981039 64.806797 270)
(descr "Resistor, Axial, RM 15mm,")
(tags "Resistor Axial RM 15mm")
(path /58DBFCD1)
(fp_text reference R12 (at 7.62 -1.905 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 18 (at 7.62 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.27 0) (end 2.42 0) (layer F.SilkS) (width 0.15))
(fp_line (start 13.73 0) (end 12.58 0) (layer F.SilkS) (width 0.15))
(fp_line (start 12.58 -1.27) (end 2.42 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 12.58 1.27) (end 12.58 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.42 1.27) (end 12.58 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.42 -1.27) (end 2.42 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 16.25 1.5) (end -1.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.25 -1.5) (end 16.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 16.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(pad 2 thru_hole circle (at 15 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 10 "Net-(P1-Pad6)"))
(pad 1 thru_hole circle (at 0 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 6 "Net-(C4-Pad1)"))
(model Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM15mm.wrl
(at (xyz 0.295 0 0))
(scale (xyz 0.395 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:Resistor_Horizontal_RM15mm (layer F.Cu) (tedit 569FCEE8) (tstamp 58DC06A3)
(at 70.491039 64.806797 270)
(descr "Resistor, Axial, RM 15mm,")
(tags "Resistor Axial RM 15mm")
(path /58DBFC83)
(fp_text reference R11 (at 7.62 -1.905 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 18 (at 7.62 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 16.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.25 -1.5) (end 16.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.25 1.5) (end -1.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.42 -1.27) (end 2.42 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.42 1.27) (end 12.58 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 12.58 1.27) (end 12.58 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 12.58 -1.27) (end 2.42 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 13.73 0) (end 12.58 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 0) (end 2.42 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 5 "Net-(C3-Pad1)"))
(pad 2 thru_hole circle (at 15 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 9 "Net-(P1-Pad5)"))
(model Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM15mm.wrl
(at (xyz 0.295 0 0))
(scale (xyz 0.395 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:Resistor_Horizontal_RM15mm (layer F.Cu) (tedit 569FCEE8) (tstamp 58DC0675)
(at 87.636039 64.806797 270)
(descr "Resistor, Axial, RM 15mm,")
(tags "Resistor Axial RM 15mm")
(path /58DBFC0C)
(fp_text reference R10 (at 7.5 -1.905 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 18 (at 7.5 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.27 0) (end 2.42 0) (layer F.SilkS) (width 0.15))
(fp_line (start 13.73 0) (end 12.58 0) (layer F.SilkS) (width 0.15))
(fp_line (start 12.58 -1.27) (end 2.42 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 12.58 1.27) (end 12.58 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.42 1.27) (end 12.58 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.42 -1.27) (end 2.42 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 16.25 1.5) (end -1.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.25 -1.5) (end 16.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 16.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(pad 2 thru_hole circle (at 15 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 8 "Net-(P1-Pad4)"))
(pad 1 thru_hole circle (at 0 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 4 "Net-(C2-Pad1)"))
(model Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM15mm.wrl
(at (xyz 0.295 0 0))
(scale (xyz 0.395 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:Resistor_Horizontal_RM15mm (layer F.Cu) (tedit 569FCEE8) (tstamp 58DC0647)
(at 104.146039 64.806797 270)
(descr "Resistor, Axial, RM 15mm,")
(tags "Resistor Axial RM 15mm")
(path /58D867E3)
(fp_text reference R9 (at 7.5 -1.905 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 18 (at 7.5 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 16.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.25 -1.5) (end 16.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.25 1.5) (end -1.25 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.42 -1.27) (end 2.42 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.42 1.27) (end 12.58 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 12.58 1.27) (end 12.58 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 12.58 -1.27) (end 2.42 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 13.73 0) (end 12.58 0) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 0) (end 2.42 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 2 "Net-(C1-Pad1)"))
(pad 2 thru_hole circle (at 15 0 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 7 "Net-(P1-Pad3)"))
(model Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM15mm.wrl
(at (xyz 0.295 0 0))
(scale (xyz 0.395 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:Resistor_Horizontal_RM7mm (layer F.Cu) (tedit 569FCF07) (tstamp 58DC061D)
(at 57.156039 64.806797)
(descr "Resistor, Axial, RM 7.62mm, 1/3W,")
(tags "Resistor Axial RM 7.62mm 1/3W R3")
(path /58DC09DA)
(fp_text reference R8 (at 2.533961 -1.941797) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 -1.5) (end 8.85 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.85 -1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 6 "Net-(C4-Pad1)"))
(pad 2 thru_hole circle (at 7.62 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 3 GND))
)
(module Resistors_THT:Resistor_Horizontal_RM7mm (layer F.Cu) (tedit 569FCF07) (tstamp 58DC05F5)
(at 64.776039 69.886797 180)
(descr "Resistor, Axial, RM 7.62mm, 1/3W,")
(tags "Resistor Axial RM 7.62mm 1/3W R3")
(path /58DC09E1)
(fp_text reference R7 (at 5.086039 1.941797 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 -1.5) (end 8.85 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.85 -1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 1 +5V))
(pad 2 thru_hole circle (at 7.62 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 6 "Net-(C4-Pad1)"))
)
(module Resistors_THT:Resistor_Horizontal_RM7mm (layer F.Cu) (tedit 569FCF07) (tstamp 58DC05CD)
(at 73.666039 64.806797)
(descr "Resistor, Axial, RM 7.62mm, 1/3W,")
(tags "Resistor Axial RM 7.62mm 1/3W R3")
(path /58DC080D)
(fp_text reference R6 (at 2.533961 -1.941797) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.25 1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.85 -1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 8.85 -1.5) (layer F.CrtYd) (width 0.05))
(pad 2 thru_hole circle (at 7.62 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 3 GND))
(pad 1 thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 5 "Net-(C3-Pad1)"))
)
(module Resistors_THT:Resistor_Horizontal_RM7mm (layer F.Cu) (tedit 569FCF07) (tstamp 58DC05A5)
(at 81.286039 69.886797 180)
(descr "Resistor, Axial, RM 7.62mm, 1/3W,")
(tags "Resistor Axial RM 7.62mm 1/3W R3")
(path /58DC0814)
(fp_text reference R5 (at 5.086039 1.941797 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 -1.5) (end 8.85 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.85 -1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 1 +5V))
(pad 2 thru_hole circle (at 7.62 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 5 "Net-(C3-Pad1)"))
)
(module Resistors_THT:Resistor_Horizontal_RM7mm (layer F.Cu) (tedit 569FCF07) (tstamp 58DC057D)
(at 90.811039 64.806797)
(descr "Resistor, Axial, RM 7.62mm, 1/3W,")
(tags "Resistor Axial RM 7.62mm 1/3W R3")
(path /58DC01C0)
(fp_text reference R4 (at 2.533961 -1.941797) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 -1.5) (end 8.85 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.85 -1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 4 "Net-(C2-Pad1)"))
(pad 2 thru_hole circle (at 7.62 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 3 GND))
)
(module Resistors_THT:Resistor_Horizontal_RM7mm (layer F.Cu) (tedit 569FCF07) (tstamp 58DC0555)
(at 98.431039 69.886797 180)
(descr "Resistor, Axial, RM 7.62mm, 1/3W,")
(tags "Resistor Axial RM 7.62mm 1/3W R3")
(path /58DC01C7)
(fp_text reference R3 (at 5.086039 1.941797 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 -1.5) (end 8.85 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.85 -1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 1 +5V))
(pad 2 thru_hole circle (at 7.62 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 4 "Net-(C2-Pad1)"))
)
(module Resistors_THT:Resistor_Horizontal_RM7mm (layer F.Cu) (tedit 569FCF07) (tstamp 58DC0505)
(at 114.941039 69.886797 180)
(descr "Resistor, Axial, RM 7.62mm, 1/3W,")
(tags "Resistor Axial RM 7.62mm 1/3W R3")
(path /58D86CAB)
(fp_text reference R1 (at 5.086039 1.941797 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10K (at 3.81 0 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.25 -1.5) (end 8.85 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.85 -1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.5) (end 8.85 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 -1.27) (end 6.35 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 -1.27) (end 6.35 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 6.35 1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 1 +5V))
(pad 2 thru_hole circle (at 7.62 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 2 "Net-(C1-Pad1)"))
)
(gr_text "+5V\nGND\nA0\nA1\nA2\nA3" (at 104.775 57.785 270) (layer F.SilkS)
(effects (font (size 1.635 1.5) (thickness 0.2)) (justify left))
)
(gr_text "PZCT-02 CT Clamp\nBurden & Level Shift" (at 51.435 57.785) (layer F.SilkS)
(effects (font (size 2 2) (thickness 0.4)) (justify left))
)
(gr_line (start 118.131039 53.165) (end 50.131039 53.165) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 50.131039 88.201797) (end 50.125 53.165) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 118.131039 88.201797) (end 50.131039 88.201797) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 118.125 53.165) (end 118.131039 88.201797) (angle 90) (layer Edge.Cuts) (width 0.15))
(segment (start 67.964715 87.261808) (end 64.776039 84.073132) (width 0.75) (layer B.Cu) (net 1))
(segment (start 76.149527 87.261808) (end 67.964715 87.261808) (width 0.75) (layer B.Cu) (net 1))
(segment (start 64.776039 84.073132) (end 64.776039 71.300289) (width 0.75) (layer B.Cu) (net 1))
(segment (start 81.286039 69.886797) (end 81.286039 82.125296) (width 0.75) (layer B.Cu) (net 1))
(segment (start 64.776039 71.300289) (end 64.776039 69.886797) (width 0.75) (layer B.Cu) (net 1))
(segment (start 81.286039 82.125296) (end 76.149527 87.261808) (width 0.75) (layer B.Cu) (net 1))
(segment (start 98.431039 86.396797) (end 97.566028 87.261808) (width 0.75) (layer B.Cu) (net 1))
(segment (start 97.566028 87.261808) (end 85.109715 87.261808) (width 0.75) (layer B.Cu) (net 1))
(segment (start 81.286039 71.300289) (end 81.286039 69.886797) (width 0.75) (layer B.Cu) (net 1))
(segment (start 85.109715 87.261808) (end 81.286039 83.438132) (width 0.75) (layer B.Cu) (net 1))
(segment (start 81.286039 83.438132) (end 81.286039 71.300289) (width 0.75) (layer B.Cu) (net 1))
(segment (start 99.29605 87.261808) (end 98.431039 86.396797) (width 0.75) (layer B.Cu) (net 1))
(segment (start 109.804527 87.261808) (end 99.29605 87.261808) (width 0.75) (layer B.Cu) (net 1))
(segment (start 114.941039 82.125296) (end 109.804527 87.261808) (width 0.75) (layer B.Cu) (net 1))
(segment (start 114.941039 69.886797) (end 114.941039 82.125296) (width 0.75) (layer B.Cu) (net 1))
(segment (start 111.125 55.88) (end 111.125 57.785) (width 0.75) (layer B.Cu) (net 1))
(segment (start 111.125 57.785) (end 117.475 64.135) (width 0.75) (layer B.Cu) (net 1))
(segment (start 117.475 64.135) (end 117.475 67.31) (width 0.75) (layer B.Cu) (net 1))
(segment (start 117.475 67.31) (end 116.846039 67.938961) (width 0.75) (layer B.Cu) (net 1))
(segment (start 116.846039 67.938961) (end 116.846039 67.981797) (width 0.75) (layer B.Cu) (net 1))
(segment (start 116.846039 67.981797) (end 115.940528 68.887308) (width 0.75) (layer B.Cu) (net 1))
(segment (start 115.940528 68.887308) (end 114.941039 69.886797) (width 0.75) (layer B.Cu) (net 1))
(segment (start 98.431039 86.396797) (end 98.431039 71.300289) (width 0.75) (layer B.Cu) (net 1))
(segment (start 98.431039 71.300289) (end 98.431039 69.886797) (width 0.75) (layer B.Cu) (net 1))
(segment (start 98.431039 69.886797) (end 98.431039 86.396797) (width 0.75) (layer B.Cu) (net 1))
(segment (start 106.686039 83.221797) (end 106.68 83.215758) (width 1) (layer B.Cu) (net 2))
(segment (start 106.68 83.215758) (end 106.68 77.47) (width 1) (layer B.Cu) (net 2))
(segment (start 106.68 77.47) (end 108.585 75.565) (width 1) (layer B.Cu) (net 2))
(segment (start 108.585 75.565) (end 107.315 74.295) (width 1) (layer B.Cu) (net 2))
(segment (start 107.315 74.295) (end 107.315 69.892836) (width 1) (layer B.Cu) (net 2))
(segment (start 107.315 69.892836) (end 107.321039 69.886797) (width 1) (layer B.Cu) (net 2))
(segment (start 107.321039 69.886797) (end 107.321039 64.806797) (width 1) (layer B.Cu) (net 2))
(segment (start 107.321039 64.806797) (end 104.146039 64.806797) (width 1) (layer B.Cu) (net 2))
(segment (start 81.286039 64.806797) (end 77.476039 64.806797) (width 0.75) (layer B.Cu) (net 3))
(segment (start 77.476039 64.806797) (end 76.835 65.447836) (width 0.75) (layer B.Cu) (net 3))
(segment (start 76.835 65.447836) (end 76.835 84.455) (width 0.75) (layer B.Cu) (net 3))
(segment (start 76.835 84.455) (end 75.565 85.725) (width 0.75) (layer B.Cu) (net 3))
(segment (start 75.565 85.725) (end 68.549242 85.725) (width 0.75) (layer B.Cu) (net 3))
(segment (start 68.549242 85.725) (end 67.31 84.485758) (width 0.75) (layer B.Cu) (net 3))
(segment (start 67.31 84.485758) (end 67.31 67.31) (width 0.75) (layer B.Cu) (net 3))
(segment (start 67.31 67.31) (end 64.806797 64.806797) (width 0.75) (layer B.Cu) (net 3))
(segment (start 64.806797 64.806797) (end 64.776039 64.806797) (width 0.75) (layer B.Cu) (net 3))
(segment (start 64.776039 64.806797) (end 61.631797 64.806797) (width 0.75) (layer B.Cu) (net 3))
(segment (start 61.631797 64.806797) (end 61.595 64.77) (width 0.75) (layer B.Cu) (net 3))
(segment (start 61.595 64.77) (end 60.325 66.04) (width 0.75) (layer B.Cu) (net 3))
(segment (start 60.325 66.04) (end 60.325 74.295) (width 0.75) (layer B.Cu) (net 3))
(segment (start 60.325 74.295) (end 60.325 75.565) (width 0.75) (layer B.Cu) (net 3))
(segment (start 98.431039 64.806797) (end 95.848203 64.806797) (width 0.75) (layer B.Cu) (net 3))
(segment (start 95.848203 64.806797) (end 93.98 66.675) (width 0.75) (layer B.Cu) (net 3))
(segment (start 93.98 66.675) (end 93.98 84.455) (width 0.75) (layer B.Cu) (net 3))
(segment (start 93.98 84.455) (end 92.71 85.725) (width 0.75) (layer B.Cu) (net 3))
(segment (start 92.71 85.725) (end 85.694242 85.725) (width 0.75) (layer B.Cu) (net 3))
(segment (start 85.694242 85.725) (end 84.455 84.485758) (width 0.75) (layer B.Cu) (net 3))
(segment (start 84.455 84.485758) (end 84.455 67.975758) (width 0.75) (layer B.Cu) (net 3))
(segment (start 84.455 67.975758) (end 81.286039 64.806797) (width 0.75) (layer B.Cu) (net 3))
(segment (start 100.965 84.485758) (end 100.965 67.340758) (width 0.75) (layer B.Cu) (net 3))
(segment (start 102.204242 85.725) (end 100.965 84.485758) (width 0.75) (layer B.Cu) (net 3))
(segment (start 114.941039 64.806797) (end 114.263203 64.806797) (width 0.75) (layer B.Cu) (net 3))
(segment (start 114.263203 64.806797) (end 110.265001 68.804999) (width 0.75) (layer B.Cu) (net 3))
(segment (start 110.265001 68.804999) (end 110.265001 84.679999) (width 0.75) (layer B.Cu) (net 3))
(segment (start 110.265001 84.679999) (end 109.22 85.725) (width 0.75) (layer B.Cu) (net 3))
(segment (start 109.22 85.725) (end 102.204242 85.725) (width 0.75) (layer B.Cu) (net 3))
(segment (start 100.965 67.340758) (end 99.430528 65.806286) (width 0.75) (layer B.Cu) (net 3))
(segment (start 99.430528 65.806286) (end 98.431039 64.806797) (width 0.75) (layer B.Cu) (net 3))
(segment (start 114.941039 64.806797) (end 114.941039 64.776039) (width 0.75) (layer B.Cu) (net 3))
(segment (start 114.941039 64.776039) (end 108.585 58.42) (width 0.75) (layer B.Cu) (net 3))
(segment (start 108.585 58.42) (end 108.585 57.15) (width 0.75) (layer B.Cu) (net 3))
(segment (start 108.585 57.15) (end 108.585 55.88) (width 0.75) (layer B.Cu) (net 3))
(segment (start 90.811039 64.806797) (end 90.805 64.812836) (width 1) (layer B.Cu) (net 4))
(segment (start 90.805 64.812836) (end 90.805 69.880758) (width 1) (layer B.Cu) (net 4))
(segment (start 90.805 69.880758) (end 90.811039 69.886797) (width 1) (layer B.Cu) (net 4))
(segment (start 90.811039 69.886797) (end 90.811039 72.396039) (width 1) (layer B.Cu) (net 4))
(segment (start 90.811039 72.396039) (end 92.075 73.66) (width 1) (layer B.Cu) (net 4))
(segment (start 92.075 73.66) (end 92.075 81.322836) (width 1) (layer B.Cu) (net 4))
(segment (start 92.075 81.322836) (end 90.176039 83.221797) (width 1) (layer B.Cu) (net 4))
(segment (start 87.636039 64.806797) (end 90.811039 64.806797) (width 1) (layer B.Cu) (net 4))
(segment (start 73.666039 69.886797) (end 74.93 71.150758) (width 1) (layer B.Cu) (net 5))
(segment (start 74.93 81.322836) (end 73.031039 83.221797) (width 1) (layer B.Cu) (net 5))
(segment (start 74.93 71.150758) (end 74.93 81.322836) (width 1) (layer B.Cu) (net 5))
(segment (start 70.491039 64.806797) (end 73.666039 64.806797) (width 1) (layer B.Cu) (net 5))
(segment (start 73.666039 69.886797) (end 73.666039 64.806797) (width 1) (layer B.Cu) (net 5))
(segment (start 73.666039 82.586797) (end 73.031039 83.221797) (width 1) (layer B.Cu) (net 5))
(segment (start 70.586039 64.711797) (end 70.491039 64.806797) (width 1) (layer B.Cu) (net 5))
(segment (start 56.521039 83.221797) (end 58.42 81.322836) (width 1) (layer B.Cu) (net 6))
(segment (start 58.42 81.322836) (end 58.42 71.150758) (width 1) (layer B.Cu) (net 6))
(segment (start 58.42 71.150758) (end 57.156039 69.886797) (width 1) (layer B.Cu) (net 6))
(segment (start 57.156039 64.806797) (end 53.981039 64.806797) (width 1) (layer B.Cu) (net 6))
(segment (start 57.156039 69.886797) (end 57.156039 64.806797) (width 1) (layer B.Cu) (net 6))
(segment (start 54.076039 64.711797) (end 53.981039 64.806797) (width 1) (layer B.Cu) (net 6))
(segment (start 57.156039 82.586797) (end 56.521039 83.221797) (width 1) (layer B.Cu) (net 6))
(segment (start 106.045 55.88) (end 106.045 59.097836) (width 1) (layer B.Cu) (net 7))
(segment (start 106.045 59.097836) (end 101.6 63.542836) (width 1) (layer B.Cu) (net 7))
(segment (start 104.146039 68.223685) (end 104.146039 78.393305) (width 1) (layer B.Cu) (net 7))
(segment (start 101.6 63.542836) (end 101.6 65.677646) (width 1) (layer B.Cu) (net 7))
(segment (start 101.6 65.677646) (end 104.146039 68.223685) (width 1) (layer B.Cu) (net 7))
(segment (start 104.146039 78.393305) (end 104.146039 79.806797) (width 1) (layer B.Cu) (net 7))
(segment (start 104.146039 83.221797) (end 104.146039 79.806797) (width 1) (layer B.Cu) (net 7))
(segment (start 87.636039 79.806797) (end 87.636039 68.718661) (width 1) (layer B.Cu) (net 8))
(segment (start 87.636039 68.718661) (end 85.09 66.172622) (width 1) (layer B.Cu) (net 8))
(segment (start 85.09 66.172622) (end 85.09 63.542836) (width 1) (layer B.Cu) (net 8))
(segment (start 85.09 63.542836) (end 86.366039 62.266797) (width 1) (layer B.Cu) (net 8))
(segment (start 86.366039 62.266797) (end 99.701039 62.266797) (width 1) (layer B.Cu) (net 8))
(segment (start 99.701039 62.266797) (end 103.511039 58.456797) (width 1) (layer B.Cu) (net 8))
(segment (start 103.511039 58.456797) (end 103.511039 55.886039) (width 1) (layer B.Cu) (net 8))
(segment (start 103.511039 55.886039) (end 103.505 55.88) (width 1) (layer B.Cu) (net 8))
(segment (start 87.636039 79.806797) (end 87.636039 83.221797) (width 1) (layer B.Cu) (net 8))
(segment (start 67.945 65.646888) (end 67.945 61.637836) (width 1) (layer B.Cu) (net 9))
(segment (start 70.491039 68.192927) (end 67.945 65.646888) (width 1) (layer B.Cu) (net 9))
(segment (start 70.491039 79.806797) (end 70.491039 68.192927) (width 1) (layer B.Cu) (net 9))
(segment (start 100.965 57.896) (end 100.965 55.88) (width 1) (layer B.Cu) (net 9))
(segment (start 98.499203 60.361797) (end 100.965 57.896) (width 1) (layer B.Cu) (net 9))
(segment (start 69.221039 60.361797) (end 98.499203 60.361797) (width 1) (layer B.Cu) (net 9))
(segment (start 67.945 61.637836) (end 69.221039 60.361797) (width 1) (layer B.Cu) (net 9))
(segment (start 70.491039 83.221797) (end 70.491039 79.806797) (width 1) (layer B.Cu) (net 9))
(segment (start 53.981039 79.806797) (end 53.981039 69.251797) (width 1) (layer B.Cu) (net 10))
(segment (start 53.981039 69.251797) (end 51.441039 66.711797) (width 1) (layer B.Cu) (net 10))
(segment (start 51.441039 66.711797) (end 51.441039 60.361797) (width 1) (layer B.Cu) (net 10))
(segment (start 51.441039 60.361797) (end 53.346039 58.456797) (width 1) (layer B.Cu) (net 10))
(segment (start 53.346039 58.456797) (end 97.796039 58.456797) (width 1) (layer B.Cu) (net 10))
(segment (start 97.796039 58.456797) (end 98.431039 57.821797) (width 1) (layer B.Cu) (net 10))
(segment (start 98.431039 57.821797) (end 98.431039 55.886039) (width 1) (layer B.Cu) (net 10))
(segment (start 98.431039 55.886039) (end 98.425 55.88) (width 1) (layer B.Cu) (net 10))
(segment (start 53.981039 83.221797) (end 53.981039 79.806797) (width 1) (layer B.Cu) (net 10))
)