-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrama_IRDA.kicad_pcb-bak
1263 lines (1241 loc) · 95.1 KB
/
brama_IRDA.kicad_pcb-bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 3) (host pcbnew "(2013-07-07 BZR 4022)-stable")
(general
(links 39)
(no_connects 0)
(area 126.309499 56.108599 172.740321 171.790361)
(thickness 1.6002)
(drawings 8)
(tracks 289)
(zones 0)
(modules 13)
(nets 11)
)
(page A4)
(layers
(15 Front signal)
(0 Back signal)
(16 Kleju_Dolna user)
(17 Kleju_Gorna user)
(18 Pasty_Dolna user)
(19 Pasty_Gorna user)
(20 Opisowa_Dolna user)
(21 Opisowa_Gorna user)
(22 Maski_Dolna user)
(23 Maski_Gorna user)
(24 Rysunkowa user)
(25 Komentarzy user)
(26 ECO1 user)
(27 ECO2 user)
(28 Krawedziowa user)
)
(setup
(last_trace_width 0.50038)
(trace_clearance 0.29972)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2032)
(segment_width 0.381)
(edge_width 0.381)
(via_size 0.889)
(via_drill 0.635)
(via_min_size 0.889)
(via_min_drill 0.508)
(uvia_size 0.508)
(uvia_drill 0.127)
(uvias_allowed no)
(uvia_min_size 0.508)
(uvia_min_drill 0.127)
(pcb_text_width 0.3048)
(pcb_text_size 1.524 2.032)
(mod_edge_width 0.381)
(mod_text_size 1.524 1.524)
(mod_text_width 0.3048)
(pad_size 3 3)
(pad_drill 1)
(pad_to_mask_clearance 0.254)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 335511553)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotothertext true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "C:/Users/htpc/Dysk Google/cwiartka/gerber/"))
)
(net 0 "")
(net 1 +5V)
(net 2 GND)
(net 3 N-0000011)
(net 4 N-0000012)
(net 5 N-0000013)
(net 6 N-000002)
(net 7 N-000004)
(net 8 N-000006)
(net 9 N-000008)
(net 10 N-000009)
(net_class Default "This is the default net class."
(clearance 0.29972)
(trace_width 0.50038)
(via_dia 0.889)
(via_drill 0.635)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net "")
(add_net +5V)
(add_net N-0000011)
(add_net N-0000012)
(add_net N-0000013)
(add_net N-000002)
(add_net N-000004)
(add_net N-000006)
(add_net N-000008)
(add_net N-000009)
)
(net_class GND ""
(clearance 0.29972)
(trace_width 0.59944)
(via_dia 0.889)
(via_drill 0.635)
(uvia_dia 0.508)
(uvia_drill 0.127)
(add_net GND)
)
(module 3PIN (layer Front) (tedit 54481ACD) (tstamp 5447FF6F)
(at 138 124.8)
(descr "module 2 pin (trou 6 mm)")
(tags DEV)
(path /5446A0DF)
(fp_text reference K2 (at 0 3.81) (layer Opisowa_Gorna)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_text value CONN_3 (at 0 -3.81) (layer Opisowa_Gorna)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_line (start 7.62 -2.54) (end 7.62 2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start 7.62 2.54) (end -7.62 2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -7.62 2.54) (end -7.62 -2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -7.62 -2.54) (end 7.62 -2.54) (layer Opisowa_Gorna) (width 0.381))
(pad 1 thru_hole circle (at -5 0) (size 3 3) (drill 1)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 10 N-000009)
)
(pad 3 thru_hole circle (at 5 0) (size 3 3) (drill 1)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(pad 2 thru_hole circle (at 0 0) (size 3 3) (drill 1)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(model "device/douille_4mm(black).wrl"
(at (xyz 0 0 0))
(scale (xyz 1.8 1.8 1.8))
(rotate (xyz 0 0 0))
)
(model "device/douille_4mm(red).wrl"
(at (xyz -0.59 0 0))
(scale (xyz 1.8 1.8 1.8))
(rotate (xyz 0 0 0))
)
(model "device/douille_4mm(green).wrl"
(at (xyz 0.59 0 0))
(scale (xyz 1.8 1.8 1.8))
(rotate (xyz 0 0 0))
)
)
(module 3PIN (layer Front) (tedit 54481A9A) (tstamp 5447FF64)
(at 161.6 124.8)
(descr "module 2 pin (trou 6 mm)")
(tags DEV)
(path /5446A0C5)
(fp_text reference K1 (at 0 3.81) (layer Opisowa_Gorna)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_text value CONN_3 (at 0 -3.81) (layer Opisowa_Gorna)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_line (start -7.62 -2.54) (end 7.62 -2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start 7.62 -2.54) (end 7.62 2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start 7.62 2.54) (end -7.62 2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -7.62 2.54) (end -7.62 -2.54) (layer Opisowa_Gorna) (width 0.381))
(pad 1 thru_hole circle (at -5 0) (size 3 3) (drill 1)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 3 N-0000011)
)
(pad 3 thru_hole circle (at 5 0) (size 3 3) (drill 1)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(pad 2 thru_hole circle (at 0 0) (size 3 3) (drill 1)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(model "device/douille_4mm(black).wrl"
(at (xyz 0 0 0))
(scale (xyz 1.8 1.8 1.8))
(rotate (xyz 0 0 0))
)
(model "device/douille_4mm(red).wrl"
(at (xyz -0.59 0 0))
(scale (xyz 1.8 1.8 1.8))
(rotate (xyz 0 0 0))
)
(model "device/douille_4mm(green).wrl"
(at (xyz 0.59 0 0))
(scale (xyz 1.8 1.8 1.8))
(rotate (xyz 0 0 0))
)
)
(module C1 (layer Front) (tedit 3F92C496) (tstamp 51AB8605)
(at 133 134 270)
(descr "Condensateur e = 1 pas")
(tags C)
(path /50F18F96)
(fp_text reference C8 (at 0.254 -2.286 270) (layer Opisowa_Gorna)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value 100nF (at 0 -2.286 270) (layer Opisowa_Gorna) hide
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_line (start -2.4892 -1.27) (end 2.54 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start -2.54 -0.635) (end -1.905 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(pad 1 thru_hole circle (at -1.27 0 270) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 2 thru_hole circle (at 1.27 0 270) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(model discret/capa_1_pas.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module C1 (layer Front) (tedit 3F92C496) (tstamp 51AB8607)
(at 157.8 134 90)
(descr "Condensateur e = 1 pas")
(tags C)
(path /50F18F3F)
(fp_text reference C2 (at 0.254 -2.286 90) (layer Opisowa_Gorna)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value 100nF (at 0 -2.286 90) (layer Opisowa_Gorna) hide
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_line (start -2.4892 -1.27) (end 2.54 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start -2.54 -0.635) (end -1.905 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(pad 1 thru_hole circle (at -1.27 0 90) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 7 N-000004)
)
(model discret/capa_1_pas.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module DIP-8__300_ELL (layer Front) (tedit 200000) (tstamp 51AB860B)
(at 165 145.6 270)
(descr "8 pins DIL package, elliptical pads")
(tags DIL)
(path /51AB4B39)
(fp_text reference U2 (at -6.35 0 360) (layer Opisowa_Gorna)
(effects (font (size 1.778 1.143) (thickness 0.28702)))
)
(fp_text value SN75176_lewa (at 0 0 270) (layer Opisowa_Gorna)
(effects (font (size 1.778 1.016) (thickness 0.254)))
)
(fp_line (start -5.08 -1.27) (end -3.81 -1.27) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -3.81 -1.27) (end -3.81 1.27) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -3.81 1.27) (end -5.08 1.27) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -5.08 -2.54) (end 5.08 -2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start 5.08 -2.54) (end 5.08 2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start 5.08 2.54) (end -5.08 2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -5.08 2.54) (end -5.08 -2.54) (layer Opisowa_Gorna) (width 0.381))
(pad 1 thru_hole rect (at -3.81 3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 2 thru_hole oval (at -1.27 3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 3 thru_hole oval (at 1.27 3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(pad 4 thru_hole oval (at 3.81 3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 3 N-0000011)
)
(pad 5 thru_hole oval (at 3.81 -3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 6 thru_hole oval (at 1.27 -3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 5 N-0000013)
)
(pad 7 thru_hole oval (at -1.27 -3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 4 N-0000012)
)
(pad 8 thru_hole oval (at -3.81 -3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(model dil/dil_8.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module DIP-8__300_ELL (layer Front) (tedit 200000) (tstamp 51AB860F)
(at 134.6 145.4 270)
(descr "8 pins DIL package, elliptical pads")
(tags DIL)
(path /51AB4E03)
(fp_text reference U4 (at -6.35 0 360) (layer Opisowa_Gorna)
(effects (font (size 1.778 1.143) (thickness 0.28702)))
)
(fp_text value SN75176_prawa (at 0 0 270) (layer Opisowa_Gorna)
(effects (font (size 1.778 1.016) (thickness 0.254)))
)
(fp_line (start -5.08 -1.27) (end -3.81 -1.27) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -3.81 -1.27) (end -3.81 1.27) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -3.81 1.27) (end -5.08 1.27) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -5.08 -2.54) (end 5.08 -2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start 5.08 -2.54) (end 5.08 2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start 5.08 2.54) (end -5.08 2.54) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -5.08 2.54) (end -5.08 -2.54) (layer Opisowa_Gorna) (width 0.381))
(pad 1 thru_hole rect (at -3.81 3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 2 thru_hole oval (at -1.27 3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 3 thru_hole oval (at 1.27 3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(pad 4 thru_hole oval (at 3.81 3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 10 N-000009)
)
(pad 5 thru_hole oval (at 3.81 -3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 6 thru_hole oval (at 1.27 -3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 6 N-000002)
)
(pad 7 thru_hole oval (at -1.27 -3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 8 N-000006)
)
(pad 8 thru_hole oval (at -3.81 -3.81 270) (size 1.5748 2.286) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(model dil/dil_8.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LM78XX (layer Front) (tedit 200000) (tstamp 51AB8614)
(at 149.64918 130.40106 270)
(descr "Regulateur TO220 serie LM78xx")
(tags "TR TO220")
(path /50F18F4B)
(fp_text reference U1 (at 7.62 0 360) (layer Opisowa_Gorna)
(effects (font (size 1.524 1.016) (thickness 0.2032)))
)
(fp_text value LM7805 (at 10.668 0.127 360) (layer Opisowa_Gorna)
(effects (font (size 1.524 1.016) (thickness 0.2032)))
)
(fp_line (start 0 -2.54) (end 5.08 -2.54) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 0 0) (end 5.08 0) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 0 2.54) (end 5.08 2.54) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 5.08 -3.81) (end 5.08 5.08) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 5.08 5.08) (end 20.32 5.08) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 20.32 5.08) (end 20.32 -5.08) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 5.08 -3.81) (end 5.08 -5.08) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 12.7 3.81) (end 12.7 -5.08) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 12.7 3.81) (end 12.7 5.08) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 5.08 -5.08) (end 20.32 -5.08) (layer Opisowa_Gorna) (width 0.3048))
(pad 4 thru_hole rect (at 16.51 0 270) (size 8.89 8.89) (drill 3.048)
(layers *.Cu *.SilkS *.Mask)
)
(pad VI thru_hole circle (at 0 -2.54 270) (size 1.778 1.778) (drill 1.143)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 7 N-000004)
)
(pad GND thru_hole rect (at 0 0 270) (size 1.778 1.778) (drill 1.143)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad VO thru_hole circle (at 0 2.54 270) (size 1.778 1.778) (drill 1.143)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(model discret/to220_horiz.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module RJ45_RJHSE (layer Front) (tedit 5202C948) (tstamp 5202C99F)
(at 154.8511 161.50082)
(tags RJ45)
(path /5202B112)
(fp_text reference J3 (at 0 8.128) (layer Opisowa_Gorna)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_text value RJ45-TRANSFO (at 0.14224 -0.1016) (layer Opisowa_Gorna)
(effects (font (size 1.00076 1.00076) (thickness 0.2032)))
)
(fp_line (start -13.29944 9.79932) (end 2.94894 9.79932) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -13.29944 9.79932) (end -13.29944 -5.95122) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start -13.29944 -5.95122) (end 2.90068 -5.95122) (layer Opisowa_Gorna) (width 0.381))
(fp_line (start 2.94894 9.79932) (end 2.94894 -6.20014) (layer Opisowa_Gorna) (width 0.381))
(pad Hole thru_hole circle (at 1.19888 4.30022) (size 3.85064 3.85064) (drill 3.302)
(layers *.Cu *.SilkS *.Mask)
)
(pad Hole thru_hole circle (at -11.50112 4.30022) (size 3.85064 3.85064) (drill 3.302)
(layers *.Cu *.SilkS *.Mask)
)
(pad 8 thru_hole circle (at -8.6995 0) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(pad 7 thru_hole circle (at -7.69874 1.99898) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
)
(pad 6 thru_hole circle (at -6.70052 0) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 8 N-000006)
)
(pad 5 thru_hole circle (at -5.69976 1.99898) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 6 N-000002)
)
(pad 4 thru_hole circle (at -4.699 0) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 4 N-0000012)
)
(pad 3 thru_hole circle (at -3.70078 1.99898) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 5 N-0000013)
)
(pad 2 thru_hole circle (at -2.70002 0) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
)
(pad 13 thru_hole circle (at 2.94894 0.89916) (size 2.54 2.54) (drill 1.778)
(layers *.Cu *.SilkS *.Mask)
(net 2 GND)
)
(pad 13 thru_hole circle (at -13.29944 0.89916) (size 2.54 2.54) (drill 1.69926)
(layers *.Cu *.SilkS *.Mask)
(net 2 GND)
)
(pad YK thru_hole circle (at -9.70026 -4.8006) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 9 N-000008)
)
(pad GA thru_hole circle (at -0.59944 -4.8006) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
)
(pad YA thru_hole circle (at -11.99896 -4.8006) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(pad GK thru_hole circle (at 1.651 -4.826) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
)
(pad 1 thru_hole rect (at -1.69926 1.99898) (size 1.524 1.524) (drill 1.016)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 7 N-000004)
)
)
(module SM1206 (layer Front) (tedit 42806E24) (tstamp 5202C99A)
(at 134.8 156.6 180)
(path /5202B334)
(attr smd)
(fp_text reference R12 (at 0 0 180) (layer Opisowa_Gorna)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value 470 (at 0 0 180) (layer Opisowa_Gorna) hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start -2.54 -1.143) (end -2.54 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start -2.54 1.143) (end -0.889 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 0.889 -1.143) (end 2.54 -1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 2.54 -1.143) (end 2.54 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 2.54 1.143) (end 0.889 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start -0.889 -1.143) (end -2.54 -1.143) (layer Opisowa_Gorna) (width 0.127))
(pad 1 smd rect (at -1.651 0 180) (size 1.524 2.032)
(layers Front Pasty_Gorna Maski_Gorna)
(net 9 N-000008)
)
(pad 2 smd rect (at 1.651 0 180) (size 1.524 2.032)
(layers Front Pasty_Gorna Maski_Gorna)
(net 2 GND)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.17 0.16 0.16))
(rotate (xyz 0 0 0))
)
)
(module SM1206 (layer Front) (tedit 42806E24) (tstamp 520F4FB9)
(at 165 168.8)
(path /520F4DD8)
(attr smd)
(fp_text reference R13 (at 0 0) (layer Opisowa_Gorna)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value 100 (at 0 0) (layer Opisowa_Gorna) hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start -2.54 -1.143) (end -2.54 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start -2.54 1.143) (end -0.889 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 0.889 -1.143) (end 2.54 -1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 2.54 -1.143) (end 2.54 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 2.54 1.143) (end 0.889 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start -0.889 -1.143) (end -2.54 -1.143) (layer Opisowa_Gorna) (width 0.127))
(pad 1 smd rect (at -1.651 0) (size 1.524 2.032)
(layers Front Pasty_Gorna Maski_Gorna)
(net 4 N-0000012)
)
(pad 2 smd rect (at 1.651 0) (size 1.524 2.032)
(layers Front Pasty_Gorna Maski_Gorna)
(net 5 N-0000013)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.17 0.16 0.16))
(rotate (xyz 0 0 0))
)
)
(module SM1206 (layer Front) (tedit 42806E24) (tstamp 520F4FBB)
(at 134.6 168.8)
(path /520F4DED)
(attr smd)
(fp_text reference r14 (at 0 0) (layer Opisowa_Gorna)
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_text value 100 (at 0 0) (layer Opisowa_Gorna) hide
(effects (font (size 0.762 0.762) (thickness 0.127)))
)
(fp_line (start -2.54 -1.143) (end -2.54 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start -2.54 1.143) (end -0.889 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 0.889 -1.143) (end 2.54 -1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 2.54 -1.143) (end 2.54 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start 2.54 1.143) (end 0.889 1.143) (layer Opisowa_Gorna) (width 0.127))
(fp_line (start -0.889 -1.143) (end -2.54 -1.143) (layer Opisowa_Gorna) (width 0.127))
(pad 1 smd rect (at -1.651 0) (size 1.524 2.032)
(layers Front Pasty_Gorna Maski_Gorna)
(net 6 N-000002)
)
(pad 2 smd rect (at 1.651 0) (size 1.524 2.032)
(layers Front Pasty_Gorna Maski_Gorna)
(net 8 N-000006)
)
(model smd/chip_cms.wrl
(at (xyz 0 0 0))
(scale (xyz 0.17 0.16 0.16))
(rotate (xyz 0 0 0))
)
)
(module C1.5V8V (layer Front) (tedit 4512B232) (tstamp 51AB860A)
(at 166 132.5 270)
(path /50F18F3D)
(fp_text reference C1 (at 0 2.286 270) (layer Opisowa_Gorna)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value 220uF (at 0 -2.286 270) (layer Opisowa_Gorna)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text user + (at -3.429 -0.127 270) (layer Opisowa_Gorna)
(effects (font (size 1.524 1.524) (thickness 0.3048)))
)
(fp_circle (center 0 0) (end 0 4.445) (layer Opisowa_Gorna) (width 0.381))
(pad 1 thru_hole rect (at -1.905 0 270) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 7 N-000004)
)
(pad 2 thru_hole circle (at 1.905 0 270) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(model discret/c_vert_c1v8.wrl
(at (xyz 0 0 0))
(scale (xyz 1.5 1.5 1))
(rotate (xyz 0 0 0))
)
)
(module C1 (layer Front) (tedit 3F92C496) (tstamp 51AB8608)
(at 140.8 134 90)
(descr "Condensateur e = 1 pas")
(tags C)
(path /50F18F99)
(fp_text reference C9 (at 0.254 -2.286 90) (layer Opisowa_Gorna)
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_text value 100uF (at 0 -2.286 90) (layer Opisowa_Gorna) hide
(effects (font (size 1.016 1.016) (thickness 0.2032)))
)
(fp_line (start -2.4892 -1.27) (end 2.54 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(fp_line (start -2.54 -0.635) (end -1.905 -1.27) (layer Opisowa_Gorna) (width 0.3048))
(pad 1 thru_hole circle (at -1.27 0 90) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 1 +5V)
)
(pad 2 thru_hole circle (at 1.27 0 90) (size 1.397 1.397) (drill 0.8128)
(layers *.Cu *.Mask Opisowa_Gorna)
(net 2 GND)
)
(model discret/capa_1_pas.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 126.6 171.3) (end 126.6 121.5) (angle 90) (layer Krawedziowa) (width 0.381))
(gr_line (start 172.5 121.5) (end 172.5 171.3) (angle 90) (layer Krawedziowa) (width 0.381))
(gr_line (start 172.5 121.5) (end 126.5 121.5) (angle 90) (layer Krawedziowa) (width 0.381))
(gr_circle (center 169.25036 163.10102) (end 168.04894 163.10102) (layer Krawedziowa) (width 0.381))
(gr_circle (center 130.05054 163.10102) (end 131.24942 163.10102) (layer Krawedziowa) (width 0.381))
(gr_line (start 126.64948 56.2991) (end 126.70028 56.2991) (angle 90) (layer Krawedziowa) (width 0.381))
(gr_line (start 172.54982 171.30014) (end 172.54982 171.20108) (angle 90) (layer Krawedziowa) (width 0.381))
(gr_line (start 126.64948 171.30014) (end 172.54982 171.30014) (angle 90) (layer Krawedziowa) (width 0.381))
(segment (start 166.6 124.8) (end 166.6 124.99) (width 0.50038) (layer Back) (net 1) (status C00000))
(segment (start 152.94 128.24) (end 151.573 126.873) (width 0.50038) (layer Back) (net 1) (tstamp 5465EACC))
(segment (start 163.35 128.24) (end 152.94 128.24) (width 0.50038) (layer Back) (net 1) (tstamp 5465EAC9))
(segment (start 166.6 124.99) (end 163.35 128.24) (width 0.50038) (layer Back) (net 1) (tstamp 5465EAC8) (status 400000))
(segment (start 142.85214 156.70022) (end 142.875 156.718) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 142.875 156.718) (end 140.462 154.305) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 140.462 154.305) (end 140.462 143.002) (width 0.50038) (layer Front) (net 1) (status 80000))
(via (at 140.462 143.002) (size 0.889) (layers Front Back) (net 1) (status 80000))
(segment (start 140.462 143.002) (end 139.065 141.605) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 139.065 141.605) (end 138.43 141.605) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 138.43 141.605) (end 138.41 141.59) (width 0.50038) (layer Back) (net 1) (tstamp 54480006) (status 80000))
(segment (start 168.81 141.79) (end 168.783 141.732) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 168.783 141.732) (end 167.64 142.875) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 167.64 142.875) (end 167.005 142.875) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 167.005 142.875) (end 165.354 144.526) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 165.354 144.526) (end 164.084 144.526) (width 0.50038) (layer Back) (net 1) (status 80000))
(via (at 164.084 144.526) (size 0.889) (layers Front Back) (net 1) (status 80000))
(segment (start 164.084 144.526) (end 162.941 145.669) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 162.941 145.669) (end 162.306 145.669) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 162.306 145.669) (end 161.163 146.812) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 161.163 146.812) (end 161.19 146.87) (width 0.50038) (layer Front) (net 1) (tstamp 54480004) (status 80000))
(segment (start 138.41 141.59) (end 138.43 141.605) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 138.43 141.605) (end 137.287 142.748) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 137.287 142.748) (end 136.652 142.748) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 136.652 142.748) (end 135.509 143.891) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 135.509 143.891) (end 134.239 143.891) (width 0.50038) (layer Back) (net 1) (status 80000))
(via (at 134.239 143.891) (size 0.889) (layers Front Back) (net 1) (status 80000))
(segment (start 134.239 143.891) (end 132.588 145.542) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 132.588 145.542) (end 131.953 145.542) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 131.953 145.542) (end 130.81 146.685) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 130.81 146.685) (end 130.79 146.67) (width 0.50038) (layer Front) (net 1) (tstamp 54480002) (status 80000))
(segment (start 140.8 135.27) (end 140.843 135.255) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 140.843 135.255) (end 143.002 133.096) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 143.002 133.096) (end 144.399 133.096) (width 0.50038) (layer Back) (net 1) (status 80000))
(via (at 144.399 133.096) (size 0.889) (layers Front Back) (net 1) (status 80000))
(segment (start 144.399 133.096) (end 147.066 130.429) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 147.066 130.429) (end 147.10918 130.40106) (width 0.50038) (layer Front) (net 1) (tstamp 5447FFFE) (status 80000))
(segment (start 166.6 124.8) (end 166.624 124.841) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 166.624 124.841) (end 168.783 127) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 168.783 127) (end 168.783 141.732) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 168.783 141.732) (end 168.81 141.79) (width 0.50038) (layer Front) (net 1) (tstamp 5447FFFC) (status 80000))
(segment (start 143 124.8) (end 143.002 124.841) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 145.034 126.873) (end 151.573 126.873) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 143.002 124.841) (end 145.034 126.873) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 147.10918 130.40106) (end 147.066 130.429) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 147.066 130.429) (end 143.002 126.365) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 143.002 126.365) (end 143.002 124.841) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 143.002 124.841) (end 143 124.8) (width 0.50038) (layer Front) (net 1) (tstamp 5447FFFA) (status 80000))
(segment (start 138.41 141.59) (end 138.43 141.605) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 138.43 141.605) (end 140.843 139.192) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 140.843 139.192) (end 140.843 135.255) (width 0.50038) (layer Front) (net 1) (status 80000))
(segment (start 140.843 135.255) (end 140.8 135.27) (width 0.50038) (layer Front) (net 1) (tstamp 5447FFF4) (status 80000))
(segment (start 140.8 135.27) (end 140.843 135.255) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 140.843 135.255) (end 132.969 135.255) (width 0.50038) (layer Back) (net 1) (status 80000))
(segment (start 132.969 135.255) (end 133 135.27) (width 0.50038) (layer Back) (net 1) (tstamp 5447FFEE) (status 80000))
(segment (start 149.64918 130.40106) (end 149.64918 131.91082) (width 0.59944) (layer Back) (net 2) (status 400000))
(segment (start 146.43 132.79) (end 145.593 131.953) (width 0.59944) (layer Back) (net 2) (tstamp 5465EABA))
(segment (start 148.77 132.79) (end 146.43 132.79) (width 0.59944) (layer Back) (net 2) (tstamp 5465EAB8))
(segment (start 149.64918 131.91082) (end 148.77 132.79) (width 0.59944) (layer Back) (net 2) (tstamp 5465EAB7))
(segment (start 133.149 156.6) (end 133.096 156.591) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 133.096 156.591) (end 135.255 158.75) (width 0.50038) (layer Front) (net 2) (status 80000))
(via (at 135.255 158.75) (size 0.889) (layers Front Back) (net 2) (status 80000))
(segment (start 135.255 158.75) (end 138.938 162.433) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 138.938 162.433) (end 141.605 162.433) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 141.605 162.433) (end 141.55166 162.39998) (width 0.50038) (layer Back) (net 2) (tstamp 54480009) (status 80000))
(segment (start 133.149 156.6) (end 133.096 156.591) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 133.096 156.591) (end 138.43 151.257) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 138.43 151.257) (end 138.43 149.225) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 138.43 149.225) (end 138.41 149.21) (width 0.50038) (layer Front) (net 2) (tstamp 54480005) (status 80000))
(segment (start 161.19 144.33) (end 161.163 144.272) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 161.163 144.272) (end 162.306 145.415) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 162.306 145.415) (end 162.941 145.415) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 162.941 145.415) (end 166.878 149.352) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 166.878 149.352) (end 168.783 149.352) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 168.783 149.352) (end 168.81 149.41) (width 0.50038) (layer Back) (net 2) (tstamp 54480003) (status 80000))
(segment (start 138.41 149.21) (end 138.43 149.225) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 138.43 149.225) (end 137.287 148.082) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 137.287 148.082) (end 136.652 148.082) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 136.652 148.082) (end 132.715 144.145) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 132.715 144.145) (end 130.81 144.145) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 130.81 144.145) (end 130.79 144.13) (width 0.50038) (layer Back) (net 2) (tstamp 54480001) (status 80000))
(segment (start 149.64918 130.40106) (end 149.606 130.429) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 149.606 130.429) (end 154.432 135.255) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 154.432 135.255) (end 157.861 135.255) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 157.861 135.255) (end 157.8 135.27) (width 0.50038) (layer Back) (net 2) (tstamp 5447FFFF) (status 80000))
(segment (start 166 134.405) (end 165.989 134.366) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 165.989 134.366) (end 161.544 129.921) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 161.544 129.921) (end 161.544 124.841) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 161.544 124.841) (end 161.6 124.8) (width 0.50038) (layer Front) (net 2) (tstamp 5447FFFD) (status 80000))
(segment (start 157.8 135.27) (end 157.861 135.255) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 157.861 135.255) (end 161.163 138.557) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 161.163 138.557) (end 161.163 141.732) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 161.163 141.732) (end 161.19 141.79) (width 0.50038) (layer Front) (net 2) (tstamp 5447FFF9) (status 80000))
(segment (start 140.8 132.73) (end 140.843 132.715) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 140.843 132.715) (end 138.049 129.921) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 138.049 129.921) (end 138.049 124.841) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 138.049 124.841) (end 138 124.8) (width 0.50038) (layer Front) (net 2) (tstamp 5447FFF8) (status 80000))
(segment (start 140.8 132.73) (end 140.843 132.715) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 140.843 132.715) (end 141.605 131.953) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 141.605 131.953) (end 145.593 131.953) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 149.606 130.429) (end 149.64918 130.40106) (width 0.50038) (layer Back) (net 2) (tstamp 5447FFF7) (status 80000))
(segment (start 130.79 141.59) (end 130.81 141.605) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 130.81 141.605) (end 131.699 140.716) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 131.699 140.716) (end 131.699 134.747) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 131.699 134.747) (end 131.826 134.62) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 131.826 134.62) (end 131.826 134.493) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 131.826 134.493) (end 132.969 133.35) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 132.969 133.35) (end 132.969 132.715) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 132.969 132.715) (end 133 132.73) (width 0.50038) (layer Front) (net 2) (tstamp 5447FFF6) (status 80000))
(segment (start 146.1516 161.50082) (end 146.177 161.544) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 146.177 161.544) (end 146.177 161.417) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 146.177 161.417) (end 147.447 160.147) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 147.447 160.147) (end 152.654 160.147) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 152.654 160.147) (end 152.781 160.274) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 152.781 160.274) (end 152.908 160.274) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 152.908 160.274) (end 155.067 162.433) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 155.067 162.433) (end 157.861 162.433) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 157.861 162.433) (end 157.80004 162.39998) (width 0.50038) (layer Back) (net 2) (tstamp 5447FFF3) (status 80000))
(segment (start 157.8 135.27) (end 157.861 135.255) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 157.861 135.255) (end 158.75 134.366) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 158.75 134.366) (end 165.989 134.366) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 165.989 134.366) (end 166 134.405) (width 0.50038) (layer Back) (net 2) (tstamp 5447FFF1) (status 80000))
(segment (start 133 132.73) (end 132.969 132.715) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 132.969 132.715) (end 140.843 132.715) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 140.843 132.715) (end 140.8 132.73) (width 0.50038) (layer Back) (net 2) (tstamp 5447FFEF) (status 80000))
(segment (start 141.55166 162.39998) (end 141.605 162.433) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 141.605 162.433) (end 142.494 161.544) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 142.494 161.544) (end 146.177 161.544) (width 0.50038) (layer Back) (net 2) (status 80000))
(segment (start 146.177 161.544) (end 146.1516 161.50082) (width 0.50038) (layer Back) (net 2) (tstamp 5447FFED) (status 80000))
(segment (start 130.79 144.13) (end 130.81 144.145) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 130.81 144.145) (end 130.81 141.605) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 130.81 141.605) (end 130.79 141.59) (width 0.50038) (layer Front) (net 2) (tstamp 5447FFEC) (status 80000))
(segment (start 161.19 141.79) (end 161.163 141.732) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 161.163 141.732) (end 161.163 144.272) (width 0.50038) (layer Front) (net 2) (status 80000))
(segment (start 161.163 144.272) (end 161.19 144.33) (width 0.50038) (layer Front) (net 2) (tstamp 5447FFEB) (status 80000))
(segment (start 156.6 124.8) (end 156.591 124.841) (width 0.50038) (layer Front) (net 3) (status 80000))
(segment (start 156.591 124.841) (end 156.464 124.968) (width 0.50038) (layer Front) (net 3) (status 80000))
(segment (start 156.464 124.968) (end 156.464 135.636) (width 0.50038) (layer Front) (net 3) (status 80000))
(segment (start 156.464 135.636) (end 156.591 135.763) (width 0.50038) (layer Front) (net 3) (status 80000))
(segment (start 156.591 135.763) (end 156.591 136.017) (width 0.50038) (layer Front) (net 3) (status 80000))
(segment (start 156.591 136.017) (end 159.131 138.557) (width 0.50038) (layer Front) (net 3) (status 80000))
(segment (start 159.131 138.557) (end 159.131 147.955) (width 0.50038) (layer Front) (net 3) (status 80000))
(via (at 159.131 147.955) (size 0.889) (layers Front Back) (net 3) (status 80000))
(segment (start 159.131 147.955) (end 160.528 149.352) (width 0.50038) (layer Back) (net 3) (status 80000))
(segment (start 160.528 149.352) (end 161.163 149.352) (width 0.50038) (layer Back) (net 3) (status 80000))
(segment (start 161.163 149.352) (end 161.19 149.41) (width 0.50038) (layer Back) (net 3) (tstamp 5448000D) (status 80000))
(segment (start 154.05 158.877) (end 160.547 158.877) (width 0.50038) (layer Back) (net 4))
(segment (start 161.2145 161.8955) (end 161.2145 166.6755) (width 0.50038) (layer Front) (net 4) (tstamp 5465EA7A))
(segment (start 161.24 161.87) (end 161.2145 161.8955) (width 0.50038) (layer Front) (net 4) (tstamp 5465EA79))
(via (at 161.24 161.87) (size 0.889) (layers Front Back) (net 4))
(segment (start 161.24 159.57) (end 161.24 161.87) (width 0.50038) (layer Back) (net 4) (tstamp 5465EA77))
(segment (start 160.547 158.877) (end 161.24 159.57) (width 0.50038) (layer Back) (net 4) (tstamp 5465EA76))
(segment (start 168.81 144.33) (end 168.783 144.272) (width 0.50038) (layer Back) (net 4) (status 80000))
(segment (start 168.783 144.272) (end 167.64 145.415) (width 0.50038) (layer Back) (net 4) (status 80000))
(segment (start 167.64 145.415) (end 167.005 145.415) (width 0.50038) (layer Back) (net 4) (status 80000))
(segment (start 167.005 145.415) (end 166.37 146.05) (width 0.50038) (layer Back) (net 4) (status 80000))
(via (at 166.37 146.05) (size 0.889) (layers Front Back) (net 4) (status 80000))
(segment (start 166.37 146.05) (end 163.322 149.098) (width 0.50038) (layer Front) (net 4) (status 80000))
(segment (start 163.322 149.098) (end 163.322 168.783) (width 0.50038) (layer Front) (net 4) (status 80000))
(segment (start 163.322 168.783) (end 163.349 168.8) (width 0.50038) (layer Front) (net 4) (tstamp 54480010) (status 80000))
(segment (start 163.349 168.8) (end 163.322 168.783) (width 0.50038) (layer Front) (net 4) (status 80000))
(segment (start 163.322 168.783) (end 161.2145 166.6755) (width 0.50038) (layer Front) (net 4) (status 80000))
(segment (start 154.05 158.877) (end 152.4 158.877) (width 0.50038) (layer Back) (net 4) (tstamp 5465EA74) (status 80000))
(via (at 152.4 158.877) (size 0.889) (layers Front Back) (net 4) (status 80000))
(segment (start 152.4 158.877) (end 150.114 161.163) (width 0.50038) (layer Front) (net 4) (status 80000))
(segment (start 150.114 161.163) (end 150.114 161.544) (width 0.50038) (layer Front) (net 4) (status 80000))
(segment (start 150.114 161.544) (end 150.1521 161.50082) (width 0.50038) (layer Front) (net 4) (tstamp 5448000F) (status 80000))
(segment (start 160.17 167.49) (end 162.73 164.93) (width 0.50038) (layer Back) (net 5))
(segment (start 164.592 165.162) (end 164.592 166.751) (width 0.50038) (layer Back) (net 5) (tstamp 5465EA8F))
(segment (start 164.36 164.93) (end 164.592 165.162) (width 0.50038) (layer Back) (net 5) (tstamp 5465EA8A))
(segment (start 162.73 164.93) (end 164.36 164.93) (width 0.50038) (layer Back) (net 5) (tstamp 5465EA89))
(segment (start 151.15032 163.4998) (end 151.15032 167.76032) (width 0.50038) (layer Back) (net 5) (status 400000))
(segment (start 158.29 169.37) (end 160.17 167.49) (width 0.50038) (layer Back) (net 5) (tstamp 5465EA62))
(segment (start 152.76 169.37) (end 158.29 169.37) (width 0.50038) (layer Back) (net 5) (tstamp 5465EA5F))
(segment (start 151.15032 167.76032) (end 152.76 169.37) (width 0.50038) (layer Back) (net 5) (tstamp 5465EA5E))
(segment (start 166.651 168.8) (end 166.651 166.301) (width 0.50038) (layer Front) (net 5))
(segment (start 164.55 157.82) (end 167.005 155.365) (width 0.50038) (layer Front) (net 5) (tstamp 54480015))
(segment (start 164.55 164.2) (end 164.55 157.82) (width 0.50038) (layer Front) (net 5) (tstamp 54480013))
(segment (start 166.651 166.301) (end 164.55 164.2) (width 0.50038) (layer Front) (net 5) (tstamp 54480012))
(via (at 164.592 166.751) (size 0.889) (layers Front Back) (net 5) (status 80000))
(segment (start 164.592 166.751) (end 166.624 168.783) (width 0.50038) (layer Front) (net 5) (status 80000))
(segment (start 166.624 168.783) (end 166.651 168.8) (width 0.50038) (layer Front) (net 5) (tstamp 5448000A) (status 80000))
(segment (start 166.651 168.8) (end 166.624 168.783) (width 0.50038) (layer Front) (net 5) (status 80000))
(segment (start 167.005 155.365) (end 167.005 147.955) (width 0.50038) (layer Front) (net 5) (tstamp 54480019) (status 80000))
(segment (start 168.783 146.812) (end 168.81 146.87) (width 0.50038) (layer Front) (net 5) (tstamp 54480000) (status 80000))
(segment (start 167.64 147.955) (end 168.783 146.812) (width 0.50038) (layer Front) (net 5) (status 80000))
(segment (start 167.005 147.955) (end 167.64 147.955) (width 0.50038) (layer Front) (net 5) (status 80000))
(segment (start 140.784 168.344) (end 140.754 168.344) (width 0.50038) (layer Back) (net 6))
(segment (start 132.949 167.891) (end 132.949 168.8) (width 0.50038) (layer Front) (net 6) (tstamp 5465EAA3) (status C00000))
(segment (start 135 165.84) (end 132.949 167.891) (width 0.50038) (layer Front) (net 6) (tstamp 5465EAA2) (status 800000))
(via (at 135 165.84) (size 0.889) (layers Front Back) (net 6))
(segment (start 135.31 165.53) (end 135 165.84) (width 0.50038) (layer Back) (net 6) (tstamp 5465EA9F))
(segment (start 137.94 165.53) (end 135.31 165.53) (width 0.50038) (layer Back) (net 6) (tstamp 5465EA9E))
(segment (start 140.754 168.344) (end 137.94 165.53) (width 0.50038) (layer Back) (net 6) (tstamp 5465EA9B))
(segment (start 149.15134 166.92866) (end 149.15134 163.4998) (width 0.50038) (layer Back) (net 6) (tstamp 5465EA58) (status 800000))
(segment (start 146.89 169.19) (end 149.15134 166.92866) (width 0.50038) (layer Back) (net 6) (tstamp 5465EA57))
(segment (start 141.63 169.19) (end 146.89 169.19) (width 0.50038) (layer Back) (net 6) (tstamp 5465EA56))
(segment (start 140.784 168.344) (end 141.63 169.19) (width 0.50038) (layer Back) (net 6) (tstamp 5465EA55))
(segment (start 138.41 146.67) (end 138.43 146.685) (width 0.50038) (layer Back) (net 6) (status 80000))
(segment (start 149.098 163.449) (end 149.15134 163.4998) (width 0.50038) (layer Front) (net 6) (tstamp 54480011) (status 80000))
(segment (start 149.098 163.576) (end 149.098 163.449) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 147.828 164.846) (end 149.098 163.576) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.558 164.846) (end 147.828 164.846) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.431 164.719) (end 146.558 164.846) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.304 164.719) (end 146.431 164.719) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 145.923 164.338) (end 146.304 164.719) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 145.923 164.211) (end 145.923 164.338) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 145.796 164.084) (end 145.923 164.211) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 145.796 163.195) (end 145.796 164.084) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 144.907 162.306) (end 145.796 163.195) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 144.907 162.052) (end 144.907 162.306) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 144.78 161.925) (end 144.907 162.052) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 144.78 159.131) (end 144.78 161.925) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.304 157.607) (end 144.78 159.131) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.304 157.48) (end 146.304 157.607) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.431 157.353) (end 146.304 157.48) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.431 157.226) (end 146.431 157.353) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.558 157.099) (end 146.431 157.226) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 146.558 154.178) (end 146.558 157.099) (width 0.50038) (layer Front) (net 6) (status 80000))
(segment (start 141.605 149.225) (end 146.558 154.178) (width 0.50038) (layer Front) (net 6) (status 80000))
(via (at 141.605 149.225) (size 0.889) (layers Front Back) (net 6) (status 80000))
(segment (start 140.208 147.828) (end 141.605 149.225) (width 0.50038) (layer Back) (net 6) (status 80000))
(segment (start 139.573 147.828) (end 140.208 147.828) (width 0.50038) (layer Back) (net 6) (status 80000))
(segment (start 138.43 146.685) (end 139.573 147.828) (width 0.50038) (layer Back) (net 6) (status 80000))
(segment (start 152.18918 130.40106) (end 152.146 130.429) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 152.146 130.429) (end 154.686 132.969) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 154.686 132.969) (end 154.686 152.019) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 154.686 152.019) (end 152.908 153.797) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 152.908 153.797) (end 152.908 157.226) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 152.908 157.226) (end 153.035 157.353) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.035 157.353) (end 153.035 157.48) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.035 157.48) (end 153.543 157.988) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.543 157.988) (end 153.543 161.925) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.543 161.925) (end 153.416 162.052) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.416 162.052) (end 153.416 162.179) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.416 162.179) (end 153.289 162.306) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.289 162.306) (end 153.289 162.433) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.289 162.433) (end 153.162 162.56) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.162 162.56) (end 153.162 163.449) (width 0.50038) (layer Front) (net 7) (status 80000))
(segment (start 153.162 163.449) (end 153.15184 163.4998) (width 0.50038) (layer Front) (net 7) (tstamp 5448000C) (status 80000))
(segment (start 157.8 132.73) (end 157.861 132.715) (width 0.50038) (layer Back) (net 7) (status 80000))
(segment (start 157.861 132.715) (end 160.02 130.556) (width 0.50038) (layer Back) (net 7) (status 80000))
(segment (start 160.02 130.556) (end 165.989 130.556) (width 0.50038) (layer Back) (net 7) (status 80000))
(segment (start 165.989 130.556) (end 166 130.595) (width 0.50038) (layer Back) (net 7) (tstamp 5447FFF5) (status 80000))
(segment (start 152.18918 130.40106) (end 152.146 130.429) (width 0.50038) (layer Back) (net 7) (status 80000))
(segment (start 152.146 130.429) (end 154.432 132.715) (width 0.50038) (layer Back) (net 7) (status 80000))
(segment (start 154.432 132.715) (end 157.861 132.715) (width 0.50038) (layer Back) (net 7) (status 80000))
(segment (start 157.861 132.715) (end 157.8 132.73) (width 0.50038) (layer Back) (net 7) (tstamp 5447FFF2) (status 80000))
(segment (start 136.251 168.8) (end 136.271 168.783) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 136.271 168.783) (end 136.779 168.275) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 136.779 168.275) (end 136.779 167.005) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 136.779 167.005) (end 138.049 165.735) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 138.049 165.735) (end 138.049 159.766) (width 0.50038) (layer Front) (net 8) (status 80000))
(via (at 138.049 159.766) (size 0.889) (layers Front Back) (net 8) (status 80000))
(segment (start 138.049 159.766) (end 138.176 159.639) (width 0.50038) (layer Back) (net 8) (status 80000))
(segment (start 138.176 159.639) (end 146.177 159.639) (width 0.50038) (layer Back) (net 8) (status 80000))
(via (at 146.177 159.639) (size 0.889) (layers Front Back) (net 8) (status 80000))
(segment (start 146.177 159.639) (end 146.304 159.639) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 146.304 159.639) (end 148.209 161.544) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 148.209 161.544) (end 148.15058 161.50082) (width 0.50038) (layer Front) (net 8) (tstamp 5448000E) (status 80000))
(segment (start 136.251 168.8) (end 136.271 168.783) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 136.271 168.783) (end 139.192 165.862) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 139.192 165.862) (end 139.192 154.813) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 139.192 154.813) (end 139.065 154.686) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 139.065 154.686) (end 139.065 154.559) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 139.065 154.559) (end 138.049 153.543) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 138.049 153.543) (end 138.049 153.416) (width 0.50038) (layer Front) (net 8) (status 80000))
(via (at 138.049 153.416) (size 0.889) (layers Front Back) (net 8) (status 80000))
(segment (start 138.049 153.416) (end 136.271 151.638) (width 0.50038) (layer Back) (net 8) (status 80000))
(via (at 136.271 151.638) (size 0.889) (layers Front Back) (net 8) (status 80000))
(segment (start 136.271 151.638) (end 136.652 151.257) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 136.652 151.257) (end 136.652 145.288) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 136.652 145.288) (end 137.287 145.288) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 137.287 145.288) (end 138.43 144.145) (width 0.50038) (layer Front) (net 8) (status 80000))
(segment (start 138.43 144.145) (end 138.41 144.13) (width 0.50038) (layer Front) (net 8) (tstamp 54480008) (status 80000))
(segment (start 145.15084 156.70022) (end 145.15084 155.50084) (width 0.50038) (layer Back) (net 9) (status 400000))
(segment (start 139.127 154.37) (end 138.176 155.321) (width 0.50038) (layer Back) (net 9) (tstamp 5465EAE2))
(segment (start 144.02 154.37) (end 139.127 154.37) (width 0.50038) (layer Back) (net 9) (tstamp 5465EAE0))
(segment (start 145.15084 155.50084) (end 144.02 154.37) (width 0.50038) (layer Back) (net 9) (tstamp 5465EADF))
(segment (start 136.451 156.6) (end 136.398 156.591) (width 0.50038) (layer Front) (net 9) (status 80000))
(via (at 138.176 155.321) (size 0.889) (layers Front Back) (net 9) (status 80000))
(segment (start 136.906 156.591) (end 138.176 155.321) (width 0.50038) (layer Front) (net 9) (status 80000))
(segment (start 136.398 156.591) (end 136.906 156.591) (width 0.50038) (layer Front) (net 9) (status 80000))
(segment (start 133 124.8) (end 132.969 124.841) (width 0.50038) (layer Front) (net 10) (status 80000))
(segment (start 132.969 124.841) (end 129.032 128.778) (width 0.50038) (layer Front) (net 10) (status 80000))
(segment (start 129.032 128.778) (end 129.032 148.082) (width 0.50038) (layer Front) (net 10) (status 80000))
(segment (start 129.032 148.082) (end 129.667 148.082) (width 0.50038) (layer Front) (net 10) (status 80000))
(segment (start 129.667 148.082) (end 130.81 149.225) (width 0.50038) (layer Front) (net 10) (status 80000))
(segment (start 130.81 149.225) (end 130.79 149.21) (width 0.50038) (layer Front) (net 10) (tstamp 54480007) (status 80000))
(zone (net 2) (net_name GND) (layer Back) (tstamp 5447FFCE) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 126.64 121.46) (xy 172.47 121.59) (xy 172.48 171.3) (xy 126.61 171.22) (xy 126.65 121.51)
)
)
(filled_polygon
(pts
(xy 171.6745 170.47464) (xy 171.26196 170.47464) (xy 171.26196 163.26128) (xy 171.261819 163.10102) (xy 171.26196 162.94076)
(xy 171.261678 162.940079) (xy 171.261678 162.939186) (xy 171.170165 162.481212) (xy 171.170164 162.479275) (xy 171.046644 162.181807)
(xy 170.78587 161.792266) (xy 170.622833 161.629512) (xy 170.622833 146.87) (xy 170.514559 146.325671) (xy 170.206222 145.864211)
(xy 169.810801 145.6) (xy 170.206222 145.335789) (xy 170.514559 144.874329) (xy 170.622833 144.33) (xy 170.514559 143.785671)
(xy 170.206222 143.324211) (xy 169.810801 143.06) (xy 170.206222 142.795789) (xy 170.514559 142.334329) (xy 170.622833 141.79)
(xy 170.514559 141.245671) (xy 170.206222 140.784211) (xy 169.744762 140.475874) (xy 169.200433 140.3676) (xy 168.73537 140.3676)
(xy 168.73537 124.377185) (xy 168.41102 123.5922) (xy 167.810959 122.991091) (xy 167.026541 122.665372) (xy 166.177185 122.66463)
(xy 165.3922 122.98898) (xy 164.791091 123.589041) (xy 164.465372 124.373459) (xy 164.46463 125.222815) (xy 164.654885 125.683266)
(xy 163.742723 126.595428) (xy 163.742723 125.183813) (xy 163.726497 124.334613) (xy 163.432739 123.625418) (xy 163.113969 123.465636)
(xy 162.934364 123.645241) (xy 162.934364 123.286031) (xy 162.774582 122.967261) (xy 161.983813 122.657277) (xy 161.134613 122.673503)
(xy 160.425418 122.967261) (xy 160.265636 123.286031) (xy 161.6 124.620395) (xy 162.934364 123.286031) (xy 162.934364 123.645241)
(xy 161.779605 124.8) (xy 163.113969 126.134364) (xy 163.432739 125.974582) (xy 163.742723 125.183813) (xy 163.742723 126.595428)
(xy 162.983342 127.35481) (xy 162.934364 127.35481) (xy 162.934364 126.313969) (xy 161.6 124.979605) (xy 161.420395 125.15921)
(xy 161.420395 124.8) (xy 160.086031 123.465636) (xy 159.767261 123.625418) (xy 159.457277 124.416187) (xy 159.473503 125.265387)
(xy 159.767261 125.974582) (xy 160.086031 126.134364) (xy 161.420395 124.8) (xy 161.420395 125.15921) (xy 160.265636 126.313969)
(xy 160.425418 126.632739) (xy 161.216187 126.942723) (xy 162.065387 126.926497) (xy 162.774582 126.632739) (xy 162.934364 126.313969)
(xy 162.934364 127.35481) (xy 158.73537 127.35481) (xy 158.73537 124.377185) (xy 158.41102 123.5922) (xy 157.810959 122.991091)
(xy 157.026541 122.665372) (xy 156.177185 122.66463) (xy 155.3922 122.98898) (xy 154.791091 123.589041) (xy 154.465372 124.373459)
(xy 154.46463 125.222815) (xy 154.78898 126.0078) (xy 155.389041 126.608909) (xy 156.173459 126.934628) (xy 157.022815 126.93537)
(xy 157.8078 126.61102) (xy 158.408909 126.010959) (xy 158.734628 125.226541) (xy 158.73537 124.377185) (xy 158.73537 127.35481)
(xy 153.306657 127.35481) (xy 152.198924 126.247076) (xy 151.911748 126.055191) (xy 151.573 125.98781) (xy 145.400658 125.98781)
(xy 144.989322 125.576474) (xy 145.134628 125.226541) (xy 145.13537 124.377185) (xy 144.81102 123.5922) (xy 144.210959 122.991091)
(xy 143.426541 122.665372) (xy 142.577185 122.66463) (xy 141.7922 122.98898) (xy 141.191091 123.589041) (xy 140.865372 124.373459)
(xy 140.86463 125.222815) (xy 141.18898 126.0078) (xy 141.789041 126.608909) (xy 142.573459 126.934628) (xy 143.422815 126.93537)
(xy 143.721222 126.81207) (xy 144.408075 127.498923) (xy 144.408076 127.498924) (xy 144.695252 127.690809) (xy 145.033999 127.75819)
(xy 145.033999 127.758189) (xy 145.034 127.75819) (xy 151.206342 127.75819) (xy 152.314075 128.865923) (xy 152.314076 128.865924)
(xy 152.330927 128.877184) (xy 151.887368 128.876797) (xy 151.327032 129.108323) (xy 151.136867 129.298155) (xy 151.076821 129.152831)
(xy 150.898348 128.974047) (xy 150.665044 128.877171) (xy 150.412425 128.87695) (xy 149.93493 128.87706) (xy 149.77618 129.03581)