-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathiot-wifi-uno-hw.kicad_pcb
executable file
·6295 lines (6230 loc) · 553 KB
/
iot-wifi-uno-hw.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20170919) (host pcbnew "(2017-09-19 revision dddaa7e69)-makepkg")
(general
(thickness 1.6)
(drawings 33)
(tracks 1593)
(zones 0)
(modules 56)
(nets 49)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user hide)
(37 F.SilkS user hide)
(38 B.Mask user hide)
(39 F.Mask user hide)
(40 Dwgs.User user hide)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(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.4)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 1)
(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 0 0)
(grid_origin 217.707582 108.430898)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x00030_ffffffff)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 GND)
(net 2 XO)
(net 3 XI)
(net 4 Vin)
(net 5 REST)
(net 6 +3V3)
(net 7 +5V)
(net 8 GPIO16)
(net 9 "Net-(D2-Pad2)")
(net 10 VCC)
(net 11 "Net-(D4-Pad2)")
(net 12 ADC_EX)
(net 13 RXD)
(net 14 TXD)
(net 15 GPIO0)
(net 16 GPIO2)
(net 17 CSO)
(net 18 MISO)
(net 19 GPIO10)
(net 20 GPIO5)
(net 21 GPIO4)
(net 22 GPIO09)
(net 23 MOSI)
(net 24 SCLK)
(net 25 GPIO15)
(net 26 GPIO13)
(net 27 GPIO12)
(net 28 GPIO14)
(net 29 "Net-(Q1-Pad1)")
(net 30 "Net-(Q1-Pad2)")
(net 31 "Net-(Q2-Pad2)")
(net 32 "Net-(Q2-Pad1)")
(net 33 EN)
(net 34 "Net-(R6-Pad2)")
(net 35 "Net-(R7-Pad2)")
(net 36 "Net-(R13-Pad2)")
(net 37 ADC)
(net 38 "Net-(R17-Pad2)")
(net 39 "Net-(R18-Pad1)")
(net 40 D+)
(net 41 D-)
(net 42 "Net-(U5-Pad1)")
(net 43 "Net-(CON1-Pad1)")
(net 44 "Net-(S1-Pad30)")
(net 45 "Net-(S1-Pad11)")
(net 46 "Net-(S1-Pad10)")
(net 47 "Net-(S1-Pad2)")
(net 48 "Net-(S1-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.4)
(via_dia 1)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net ADC)
(add_net ADC_EX)
(add_net CSO)
(add_net D+)
(add_net D-)
(add_net EN)
(add_net GND)
(add_net GPIO0)
(add_net GPIO09)
(add_net GPIO10)
(add_net GPIO12)
(add_net GPIO13)
(add_net GPIO14)
(add_net GPIO15)
(add_net GPIO16)
(add_net GPIO2)
(add_net GPIO4)
(add_net GPIO5)
(add_net MISO)
(add_net MOSI)
(add_net "Net-(D2-Pad2)")
(add_net "Net-(D4-Pad2)")
(add_net "Net-(Q1-Pad1)")
(add_net "Net-(Q1-Pad2)")
(add_net "Net-(Q2-Pad1)")
(add_net "Net-(Q2-Pad2)")
(add_net "Net-(R13-Pad2)")
(add_net "Net-(R17-Pad2)")
(add_net "Net-(R18-Pad1)")
(add_net "Net-(R6-Pad2)")
(add_net "Net-(R7-Pad2)")
(add_net "Net-(S1-Pad1)")
(add_net "Net-(S1-Pad10)")
(add_net "Net-(S1-Pad11)")
(add_net "Net-(S1-Pad2)")
(add_net "Net-(S1-Pad30)")
(add_net "Net-(U5-Pad1)")
(add_net REST)
(add_net RXD)
(add_net SCLK)
(add_net TXD)
(add_net XI)
(add_net XO)
)
(net_class Power ""
(clearance 0.2)
(trace_width 1)
(via_dia 1)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V3)
(add_net +5V)
(add_net "Net-(CON1-Pad1)")
(add_net VCC)
(add_net Vin)
)
(module ESP8266:shield-uno (layer F.Cu) (tedit 59F966CB) (tstamp 59F46817)
(at 238.467002 107.129)
(path /59EFFE6D)
(fp_text reference S1 (at -2.921 -1.8622) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ESP-UNO (at -2.921 -2.8622) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -3 -15) (end -3 12.5) (layer F.CrtYd) (width 0.3))
(fp_line (start -28 -15) (end -3 -15) (layer F.CrtYd) (width 0.3))
(fp_line (start -28 12.5) (end -3 12.5) (layer F.CrtYd) (width 0.3))
(fp_line (start -28 12.5) (end -28 4) (layer F.CrtYd) (width 0.3))
(fp_line (start -28 -6.5) (end -28 -15) (layer F.CrtYd) (width 0.3))
(fp_line (start -21 11.5) (end -21 19.5) (layer F.CrtYd) (width 0.3))
(fp_line (start -35 11.5) (end -21 11.5) (layer F.CrtYd) (width 0.3))
(fp_line (start -35 19.5) (end -35 11.5) (layer F.CrtYd) (width 0.3))
(fp_line (start -21 19.5) (end -35 19.5) (layer F.CrtYd) (width 0.3))
(fp_line (start -17.779155 -23.764466) (end -17.723446 -23.763501) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.834798 -23.767361) (end -17.779155 -23.764466) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.890307 -23.772181) (end -17.834798 -23.767361) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.945615 -23.778922) (end -17.890307 -23.772181) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.000657 -23.787575) (end -17.945615 -23.778922) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.055366 -23.798129) (end -18.000657 -23.787575) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.109676 -23.810572) (end -18.055366 -23.798129) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.163523 -23.824889) (end -18.109676 -23.810572) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.216842 -23.841063) (end -18.163523 -23.824889) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.269568 -23.859074) (end -18.216842 -23.841063) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.321638 -23.878902) (end -18.269568 -23.859074) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.372991 -23.900521) (end -18.321638 -23.878902) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.423564 -23.923906) (end -18.372991 -23.900521) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.473296 -23.949029) (end -18.423564 -23.923906) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.522128 -23.97586) (end -18.473296 -23.949029) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.570001 -24.004367) (end -18.522128 -23.97586) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.616858 -24.034514) (end -18.570001 -24.004367) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.662642 -24.066267) (end -18.616858 -24.034514) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.707299 -24.099588) (end -18.662642 -24.066267) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.750775 -24.134435) (end -18.707299 -24.099588) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.793017 -24.170767) (end -18.750775 -24.134435) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.833976 -24.208541) (end -18.793017 -24.170767) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.873601 -24.247711) (end -18.833976 -24.208541) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.911845 -24.28823) (end -18.873601 -24.247711) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.948663 -24.33005) (end -18.911845 -24.28823) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.98401 -24.373121) (end -18.948663 -24.33005) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.017844 -24.41739) (end -18.98401 -24.373121) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.050123 -24.462804) (end -19.017844 -24.41739) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.08081 -24.50931) (end -19.050123 -24.462804) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.109868 -24.556851) (end -19.08081 -24.50931) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.137261 -24.60537) (end -19.109868 -24.556851) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.162957 -24.654808) (end -19.137261 -24.60537) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.186925 -24.705107) (end -19.162957 -24.654808) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.209136 -24.756207) (end -19.186925 -24.705107) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.229563 -24.808045) (end -19.209136 -24.756207) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.248182 -24.86056) (end -19.229563 -24.808045) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.264971 -24.913688) (end -19.248182 -24.86056) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.279909 -24.967366) (end -19.264971 -24.913688) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.292978 -25.021529) (end -19.279909 -24.967366) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.304164 -25.076112) (end -19.292978 -25.021529) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.313452 -25.13105) (end -19.304164 -25.076112) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.320831 -25.186277) (end -19.313452 -25.13105) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.326292 -25.241727) (end -19.320831 -25.186277) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.329829 -25.297332) (end -19.326292 -25.241727) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.331437 -25.353026) (end -19.329829 -25.297332) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.331116 -25.408743) (end -19.331437 -25.353026) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.328864 -25.464415) (end -19.331116 -25.408743) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.324685 -25.519976) (end -19.328864 -25.464415) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.318584 -25.575359) (end -19.324685 -25.519976) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.310567 -25.630497) (end -19.318584 -25.575359) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.300646 -25.685324) (end -19.310567 -25.630497) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.288831 -25.739775) (end -19.300646 -25.685324) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.275136 -25.793783) (end -19.288831 -25.739775) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.259579 -25.847285) (end -19.275136 -25.793783) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.242178 -25.900216) (end -19.259579 -25.847285) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.222953 -25.952512) (end -19.242178 -25.900216) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.201929 -26.00411) (end -19.222953 -25.952512) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.179129 -26.05495) (end -19.201929 -26.00411) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.154582 -26.104969) (end -19.179129 -26.05495) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.128317 -26.154107) (end -19.154582 -26.104969) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.100365 -26.202307) (end -19.128317 -26.154107) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.070761 -26.249509) (end -19.100365 -26.202307) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.039539 -26.295657) (end -19.070761 -26.249509) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.006737 -26.340695) (end -19.039539 -26.295657) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.972394 -26.384571) (end -19.006737 -26.340695) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.936552 -26.42723) (end -18.972394 -26.384571) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.899254 -26.468622) (end -18.936552 -26.42723) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.860544 -26.508697) (end -18.899254 -26.468622) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.820469 -26.547407) (end -18.860544 -26.508697) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.779077 -26.584705) (end -18.820469 -26.547407) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.736417 -26.620547) (end -18.779077 -26.584705) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.692542 -26.65489) (end -18.736417 -26.620547) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.647503 -26.687692) (end -18.692542 -26.65489) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.601355 -26.718914) (end -18.647503 -26.687692) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.554153 -26.748519) (end -18.601355 -26.718914) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.505954 -26.77647) (end -18.554153 -26.748519) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.456816 -26.802736) (end -18.505954 -26.77647) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.406796 -26.827283) (end -18.456816 -26.802736) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.355957 -26.850082) (end -18.406796 -26.827283) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.304358 -26.871107) (end -18.355957 -26.850082) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.252062 -26.890331) (end -18.304358 -26.871107) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.199132 -26.907732) (end -18.252062 -26.890331) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.14563 -26.92329) (end -18.199132 -26.907732) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.091621 -26.936984) (end -18.14563 -26.92329) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.037171 -26.948799) (end -18.091621 -26.936984) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.982343 -26.958721) (end -18.037171 -26.948799) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.927205 -26.966737) (end -17.982343 -26.958721) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.871823 -26.972838) (end -17.927205 -26.966737) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.816262 -26.977017) (end -17.871823 -26.972838) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.76059 -26.979269) (end -17.816262 -26.977017) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.704873 -26.979591) (end -17.76059 -26.979269) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.649179 -26.977982) (end -17.704873 -26.979591) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.593573 -26.974445) (end -17.649179 -26.977982) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.538124 -26.968984) (end -17.593573 -26.974445) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.482897 -26.961605) (end -17.538124 -26.968984) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.427959 -26.952317) (end -17.482897 -26.961605) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.373375 -26.941132) (end -17.427959 -26.952317) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.319212 -26.928062) (end -17.373375 -26.941132) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.265534 -26.913124) (end -17.319212 -26.928062) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.212406 -26.896335) (end -17.265534 -26.913124) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.159892 -26.877716) (end -17.212406 -26.896335) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.108053 -26.857289) (end -17.159892 -26.877716) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.056954 -26.835078) (end -17.108053 -26.857289) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.006655 -26.81111) (end -17.056954 -26.835078) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.957216 -26.785414) (end -17.006655 -26.81111) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.908697 -26.758021) (end -16.957216 -26.785414) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.861157 -26.728964) (end -16.908697 -26.758021) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.814651 -26.698277) (end -16.861157 -26.728964) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.769237 -26.665997) (end -16.814651 -26.698277) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.724967 -26.632163) (end -16.769237 -26.665997) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.681897 -26.596816) (end -16.724967 -26.632163) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.640077 -26.559999) (end -16.681897 -26.596816) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.599558 -26.521754) (end -16.640077 -26.559999) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.560388 -26.482129) (end -16.599558 -26.521754) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.522614 -26.441171) (end -16.560388 -26.482129) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.486281 -26.398928) (end -16.522614 -26.441171) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.451434 -26.355452) (end -16.486281 -26.398928) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.418114 -26.310796) (end -16.451434 -26.355452) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.386361 -26.265011) (end -16.418114 -26.310796) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.356213 -26.218154) (end -16.386361 -26.265011) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.327707 -26.170281) (end -16.356213 -26.218154) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.300876 -26.121449) (end -16.327707 -26.170281) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.275753 -26.071717) (end -16.300876 -26.121449) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.252367 -26.021144) (end -16.275753 -26.071717) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.230748 -25.969792) (end -16.252367 -26.021144) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.210921 -25.917721) (end -16.230748 -25.969792) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.19291 -25.864995) (end -16.210921 -25.917721) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.176736 -25.811677) (end -16.19291 -25.864995) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.162419 -25.75783) (end -16.176736 -25.811677) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.149975 -25.703519) (end -16.162419 -25.75783) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.139421 -25.64881) (end -16.149975 -25.703519) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.130769 -25.593768) (end -16.139421 -25.64881) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.124028 -25.53846) (end -16.130769 -25.593768) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.119208 -25.482951) (end -16.124028 -25.53846) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.116313 -25.427309) (end -16.119208 -25.482951) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.115348 -25.371599) (end -16.116313 -25.427309) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.116327 -25.315478) (end -16.115348 -25.371599) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.119265 -25.259424) (end -16.116327 -25.315478) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.124157 -25.203507) (end -16.119265 -25.259424) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.130998 -25.147795) (end -16.124157 -25.203507) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.139778 -25.092356) (end -16.130998 -25.147795) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.150488 -25.037257) (end -16.139778 -25.092356) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.163115 -24.982565) (end -16.150488 -25.037257) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.177643 -24.928347) (end -16.163115 -24.982565) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.194054 -24.87467) (end -16.177643 -24.928347) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.212328 -24.821597) (end -16.194054 -24.87467) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.232443 -24.769195) (end -16.212328 -24.821597) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.254375 -24.717527) (end -16.232443 -24.769195) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.278097 -24.666655) (end -16.254375 -24.717527) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.303579 -24.616643) (end -16.278097 -24.666655) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.330792 -24.56755) (end -16.303579 -24.616643) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.359701 -24.519437) (end -16.330792 -24.56755) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.390272 -24.472362) (end -16.359701 -24.519437) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.422467 -24.426383) (end -16.390272 -24.472362) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.456247 -24.381555) (end -16.422467 -24.426383) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.491571 -24.337934) (end -16.456247 -24.381555) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.528396 -24.295572) (end -16.491571 -24.337934) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.566677 -24.25452) (end -16.528396 -24.295572) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.606367 -24.21483) (end -16.566677 -24.25452) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.647418 -24.176549) (end -16.606367 -24.21483) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.68978 -24.139725) (end -16.647418 -24.176549) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.733402 -24.104401) (end -16.68978 -24.139725) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.77823 -24.07062) (end -16.733402 -24.104401) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.824209 -24.038425) (end -16.77823 -24.07062) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.871284 -24.007855) (end -16.824209 -24.038425) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.919397 -23.978945) (end -16.871284 -24.007855) (layer Edge.Cuts) (width 0.1))
(fp_line (start -16.96849 -23.951733) (end -16.919397 -23.978945) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.018502 -23.92625) (end -16.96849 -23.951733) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.069374 -23.902528) (end -17.018502 -23.92625) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.121042 -23.880597) (end -17.069374 -23.902528) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.173444 -23.860481) (end -17.121042 -23.880597) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.226516 -23.842207) (end -17.173444 -23.860481) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.280194 -23.825796) (end -17.226516 -23.842207) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.334412 -23.811268) (end -17.280194 -23.825796) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.389104 -23.798642) (end -17.334412 -23.811268) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.444203 -23.787932) (end -17.389104 -23.798642) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.499642 -23.779151) (end -17.444203 -23.787932) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.555354 -23.77231) (end -17.499642 -23.779151) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.611271 -23.767418) (end -17.555354 -23.77231) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.667324 -23.764481) (end -17.611271 -23.767418) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.723446 -23.763501) (end -17.667324 -23.764481) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.309463 -11.120835) (end 34.274616 -11.164311) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.342783 -11.076179) (end 34.309463 -11.120835) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.374536 -11.030394) (end 34.342783 -11.076179) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.404684 -10.983537) (end 34.374536 -11.030394) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.43319 -10.935664) (end 34.404684 -10.983537) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.460021 -10.886832) (end 34.43319 -10.935664) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.485145 -10.8371) (end 34.460021 -10.886832) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.50853 -10.786527) (end 34.485145 -10.8371) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.530149 -10.735175) (end 34.50853 -10.786527) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.549976 -10.683104) (end 34.530149 -10.735175) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.567987 -10.630378) (end 34.549976 -10.683104) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.584161 -10.57706) (end 34.567987 -10.630378) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.598479 -10.523213) (end 34.584161 -10.57706) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.610922 -10.468902) (end 34.598479 -10.523213) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.621476 -10.414193) (end 34.610922 -10.468902) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.630129 -10.359152) (end 34.621476 -10.414193) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.636869 -10.303843) (end 34.630129 -10.359152) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.64169 -10.248334) (end 34.636869 -10.303843) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.644584 -10.192692) (end 34.64169 -10.248334) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.64555 -10.136983) (end 34.644584 -10.192692) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.161339 -11.287137) (end 34.12082 -11.325382) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.64457 -10.080861) (end 34.64555 -10.136983) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.641632 -10.024807) (end 34.64457 -10.080861) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.63674 -9.96889) (end 34.641632 -10.024807) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.6299 -9.913178) (end 34.63674 -9.96889) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.621119 -9.857739) (end 34.6299 -9.913178) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.610409 -9.80264) (end 34.621119 -9.857739) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.597782 -9.747948) (end 34.610409 -9.80264) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.583255 -9.693731) (end 34.597782 -9.747948) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.566844 -9.640053) (end 34.583255 -9.693731) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.548569 -9.58698) (end 34.566844 -9.640053) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.528454 -9.534578) (end 34.548569 -9.58698) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.506522 -9.48291) (end 34.528454 -9.534578) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.4828 -9.432039) (end 34.506522 -9.48291) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.457318 -9.382026) (end 34.4828 -9.432039) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.430105 -9.332933) (end 34.457318 -9.382026) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.401196 -9.28482) (end 34.430105 -9.332933) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.370625 -9.237745) (end 34.401196 -9.28482) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.33843 -9.191766) (end 34.370625 -9.237745) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.30465 -9.146938) (end 34.33843 -9.191766) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.269326 -9.103317) (end 34.30465 -9.146938) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.232501 -9.060955) (end 34.269326 -9.103317) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.19422 -9.019903) (end 34.232501 -9.060955) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.15453 -8.980213) (end 34.19422 -9.019903) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.113479 -8.941932) (end 34.15453 -8.980213) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.071117 -8.905108) (end 34.113479 -8.941932) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.027495 -8.869784) (end 34.071117 -8.905108) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.982668 -8.836004) (end 34.027495 -8.869784) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.936688 -8.803808) (end 33.982668 -8.836004) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.889613 -8.773238) (end 33.936688 -8.803808) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.8415 -8.744328) (end 33.889613 -8.773238) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.792408 -8.717116) (end 33.8415 -8.744328) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.742395 -8.691633) (end 33.792408 -8.717116) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.691524 -8.667911) (end 33.742395 -8.691633) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.639855 -8.64598) (end 33.691524 -8.667911) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.587453 -8.625864) (end 33.639855 -8.64598) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.534381 -8.60759) (end 33.587453 -8.625864) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.480703 -8.591179) (end 33.534381 -8.60759) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.426485 -8.576651) (end 33.480703 -8.591179) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.371794 -8.564025) (end 33.426485 -8.576651) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.316694 -8.553315) (end 33.371794 -8.564025) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.261255 -8.544534) (end 33.316694 -8.553315) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.205543 -8.537693) (end 33.261255 -8.544534) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.149626 -8.532801) (end 33.205543 -8.537693) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.093573 -8.529864) (end 33.149626 -8.532801) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.037451 -8.528884) (end 33.093573 -8.529864) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.20051 -11.247512) (end 34.161339 -11.287137) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.513989 -27.910702) (end 33.037451 -26.387241) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.037451 -26.387241) (end 33.037451 -14.961278) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.037451 -14.961278) (end 35.576554 -12.422175) (layer Edge.Cuts) (width 0.1))
(fp_line (start 35.576554 -12.422175) (end 35.576554 20.311092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 35.576554 20.311092) (end 33.037451 22.850195) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.037451 22.850195) (end 33.037451 24.394816) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.037451 24.394816) (end 32.995133 24.648726) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.995133 24.648726) (end 32.910496 24.881477) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.910496 24.881477) (end 32.741222 25.093069) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.741222 25.093069) (end 32.529631 25.262343) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.529631 25.262343) (end 32.296879 25.346979) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.296879 25.346979) (end 32.042969 25.389298) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.042969 25.389298) (end -31.963581 25.389298) (layer Edge.Cuts) (width 0.1))
(fp_line (start -31.963581 25.389298) (end -32.217491 25.346979) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.217491 25.346979) (end -32.450242 25.262343) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.450242 25.262343) (end -32.661834 25.093069) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.661834 25.093069) (end -32.831108 24.881477) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.831108 24.881477) (end -32.915745 24.648726) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.915745 24.648726) (end -32.958063 24.394816) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.958063 24.394816) (end -32.958063 -26.895061) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.958063 -26.895061) (end -32.915745 -27.170131) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.915745 -27.170131) (end -32.831108 -27.402882) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.831108 -27.402882) (end -32.661834 -27.614474) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.661834 -27.614474) (end -32.450242 -27.762588) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.450242 -27.762588) (end -32.217491 -27.868384) (layer Edge.Cuts) (width 0.1))
(fp_line (start -32.217491 -27.868384) (end -31.963581 -27.910702) (layer Edge.Cuts) (width 0.1))
(fp_line (start -31.963581 -27.910702) (end 31.513989 -27.910702) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.274616 -11.164311) (end 34.238284 -11.206554) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.12082 -11.325382) (end 34.079 -11.3622) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.238284 -11.206554) (end 34.20051 -11.247512) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.981742 19.379122) (end 33.037451 19.380088) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.926099 19.376228) (end 32.981742 19.379122) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.870591 19.371407) (end 32.926099 19.376228) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.815282 19.364667) (end 32.870591 19.371407) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.76024 19.356014) (end 32.815282 19.364667) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.705531 19.34546) (end 32.76024 19.356014) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.651221 19.333017) (end 32.705531 19.34546) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.597374 19.3187) (end 32.651221 19.333017) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.544056 19.302526) (end 32.597374 19.3187) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.491329 19.284514) (end 32.544056 19.302526) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.439259 19.264687) (end 32.491329 19.284514) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.387906 19.243068) (end 32.439259 19.264687) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.337334 19.219683) (end 32.387906 19.243068) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.287601 19.19456) (end 32.337334 19.219683) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.238769 19.167729) (end 32.287601 19.19456) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.190896 19.139222) (end 32.238769 19.167729) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.144039 19.109074) (end 32.190896 19.139222) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.098255 19.077321) (end 32.144039 19.109074) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.053598 19.044001) (end 32.098255 19.077321) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.010122 19.009154) (end 32.053598 19.044001) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.96788 18.972822) (end 32.010122 19.009154) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.926922 18.935048) (end 31.96788 18.972822) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.887296 18.895878) (end 31.926922 18.935048) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.849052 18.855358) (end 31.887296 18.895878) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.812234 18.813538) (end 31.849052 18.855358) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.776887 18.770468) (end 31.812234 18.813538) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.743053 18.726199) (end 31.776887 18.770468) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.710774 18.680784) (end 31.743053 18.726199) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.680087 18.634279) (end 31.710774 18.680784) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.651029 18.586738) (end 31.680087 18.634279) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.623636 18.538219) (end 31.651029 18.586738) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.59794 18.48878) (end 31.623636 18.538219) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.573972 18.438481) (end 31.59794 18.48878) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.551762 18.387382) (end 31.573972 18.438481) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.531334 18.335544) (end 31.551762 18.387382) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.512715 18.283029) (end 31.531334 18.335544) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.495926 18.229901) (end 31.512715 18.283029) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.480988 18.176223) (end 31.495926 18.229901) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.467919 18.12206) (end 31.480988 18.176223) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.456733 18.067477) (end 31.467919 18.12206) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.447446 18.012538) (end 31.456733 18.067477) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.440067 17.957311) (end 31.447446 18.012538) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.434605 17.901862) (end 31.440067 17.957311) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.431068 17.846257) (end 31.434605 17.901862) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.42946 17.790562) (end 31.431068 17.846257) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.429781 17.734846) (end 31.42946 17.790562) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.432033 17.679173) (end 31.429781 17.734846) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.436212 17.623613) (end 31.432033 17.679173) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.442314 17.56823) (end 31.436212 17.623613) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.45033 17.513092) (end 31.442314 17.56823) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.460252 17.458265) (end 31.45033 17.513092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.472067 17.403814) (end 31.460252 17.458265) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.485761 17.349806) (end 31.472067 17.403814) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.501318 17.296304) (end 31.485761 17.349806) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.518719 17.243373) (end 31.501318 17.296304) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.537944 17.191077) (end 31.518719 17.243373) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.558968 17.139478) (end 31.537944 17.191077) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.581768 17.088639) (end 31.558968 17.139478) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.606315 17.03862) (end 31.581768 17.088639) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.63258 16.989481) (end 31.606315 17.03862) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.660532 16.941282) (end 31.63258 16.989481) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.690136 16.89408) (end 31.660532 16.941282) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.721359 16.847932) (end 31.690136 16.89408) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.754161 16.802893) (end 31.721359 16.847932) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.788503 16.759018) (end 31.754161 16.802893) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.824345 16.716359) (end 31.788503 16.759018) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.861644 16.674967) (end 31.824345 16.716359) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.900354 16.634892) (end 31.861644 16.674967) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.940429 16.596182) (end 31.900354 16.634892) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.981821 16.558884) (end 31.940429 16.596182) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.02448 16.523041) (end 31.981821 16.558884) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.068355 16.488699) (end 32.02448 16.523041) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.113394 16.455897) (end 32.068355 16.488699) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.159542 16.424675) (end 32.113394 16.455897) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.206744 16.39507) (end 32.159542 16.424675) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.254943 16.367118) (end 32.206744 16.39507) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.304082 16.340853) (end 32.254943 16.367118) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.354101 16.316306) (end 32.304082 16.340853) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.40494 16.293507) (end 32.354101 16.316306) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.456539 16.272482) (end 32.40494 16.293507) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.508835 16.253257) (end 32.456539 16.272482) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.561766 16.235856) (end 32.508835 16.253257) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.615267 16.220299) (end 32.561766 16.235856) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.669276 16.206605) (end 32.615267 16.220299) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.723727 16.19479) (end 32.669276 16.206605) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.778554 16.184868) (end 32.723727 16.19479) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.833692 16.176852) (end 32.778554 16.184868) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.889074 16.17075) (end 32.833692 16.176852) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.944635 16.166571) (end 32.889074 16.17075) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.000307 16.16432) (end 32.944635 16.166571) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.056024 16.163998) (end 33.000307 16.16432) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.111719 16.165607) (end 33.056024 16.163998) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.167324 16.169144) (end 33.111719 16.165607) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.222773 16.174605) (end 33.167324 16.169144) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.278 16.181984) (end 33.222773 16.174605) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.332938 16.191272) (end 33.278 16.181984) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.387522 16.202457) (end 33.332938 16.191272) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.441685 16.215527) (end 33.387522 16.202457) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.495363 16.230465) (end 33.441685 16.215527) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.548491 16.247253) (end 33.495363 16.230465) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.601006 16.265873) (end 33.548491 16.247253) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.652844 16.2863) (end 33.601006 16.265873) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.703943 16.308511) (end 33.652844 16.2863) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.754242 16.332478) (end 33.703943 16.308511) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.803681 16.358174) (end 33.754242 16.332478) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.8522 16.385567) (end 33.803681 16.358174) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.899741 16.414625) (end 33.8522 16.385567) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.946246 16.445312) (end 33.899741 16.414625) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.991661 16.477592) (end 33.946246 16.445312) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.03593 16.511425) (end 33.991661 16.477592) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.079 16.546772) (end 34.03593 16.511425) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.12082 16.58359) (end 34.079 16.546772) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.161339 16.621835) (end 34.12082 16.58359) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.20051 16.66146) (end 34.161339 16.621835) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.238284 16.702418) (end 34.20051 16.66146) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.274616 16.744661) (end 34.238284 16.702418) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.309463 16.788136) (end 34.274616 16.744661) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.342783 16.832793) (end 34.309463 16.788136) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.374536 16.878578) (end 34.342783 16.832793) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.404684 16.925434) (end 34.374536 16.878578) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.43319 16.973308) (end 34.404684 16.925434) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.460021 17.02214) (end 34.43319 16.973308) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.485145 17.071872) (end 34.460021 17.02214) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.50853 17.122444) (end 34.485145 17.071872) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.530149 17.173797) (end 34.50853 17.122444) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.549976 17.225868) (end 34.530149 17.173797) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.567987 17.278594) (end 34.549976 17.225868) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.584161 17.331912) (end 34.567987 17.278594) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.598479 17.385759) (end 34.584161 17.331912) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.610922 17.44007) (end 34.598479 17.385759) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.621476 17.494779) (end 34.610922 17.44007) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.630129 17.54982) (end 34.621476 17.494779) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.636869 17.605129) (end 34.630129 17.54982) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.64169 17.660637) (end 34.636869 17.605129) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.644584 17.71628) (end 34.64169 17.660637) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.64555 17.771989) (end 34.644584 17.71628) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.64457 17.828111) (end 34.64555 17.771989) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.641632 17.884165) (end 34.64457 17.828111) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.63674 17.940081) (end 34.641632 17.884165) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.6299 17.995793) (end 34.63674 17.940081) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.621119 18.051233) (end 34.6299 17.995793) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.610409 18.106332) (end 34.621119 18.051233) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.597782 18.161024) (end 34.610409 18.106332) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.583255 18.215241) (end 34.597782 18.161024) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.566844 18.268919) (end 34.583255 18.215241) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.548569 18.321991) (end 34.566844 18.268919) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.528454 18.374394) (end 34.548569 18.321991) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.506522 18.426062) (end 34.528454 18.374394) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.4828 18.476933) (end 34.506522 18.426062) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.457318 18.526946) (end 34.4828 18.476933) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.430105 18.576039) (end 34.457318 18.526946) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.401196 18.624152) (end 34.430105 18.576039) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.370625 18.671227) (end 34.401196 18.624152) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.33843 18.717206) (end 34.370625 18.671227) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.30465 18.762034) (end 34.33843 18.717206) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.269326 18.805655) (end 34.30465 18.762034) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.232501 18.848017) (end 34.269326 18.805655) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.19422 18.889068) (end 34.232501 18.848017) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.15453 18.928759) (end 34.19422 18.889068) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.113479 18.967039) (end 34.15453 18.928759) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.071117 19.003864) (end 34.113479 18.967039) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.027495 19.039188) (end 34.071117 19.003864) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.982668 19.072968) (end 34.027495 19.039188) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.936688 19.105163) (end 33.982668 19.072968) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.889613 19.135734) (end 33.936688 19.105163) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.8415 19.164643) (end 33.889613 19.135734) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.792408 19.191856) (end 33.8415 19.164643) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.742395 19.217339) (end 33.792408 19.191856) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.691524 19.24106) (end 33.742395 19.217339) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.639855 19.262992) (end 33.691524 19.24106) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.587453 19.283108) (end 33.639855 19.262992) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.534381 19.301382) (end 33.587453 19.283108) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.480703 19.317793) (end 33.534381 19.301382) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.426485 19.33232) (end 33.480703 19.317793) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.371794 19.344947) (end 33.426485 19.33232) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.316694 19.355657) (end 33.371794 19.344947) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.261255 19.364438) (end 33.316694 19.355657) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.205543 19.371278) (end 33.261255 19.364438) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.149626 19.37617) (end 33.205543 19.371278) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.093573 19.379108) (end 33.149626 19.37617) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.037451 19.380088) (end 33.093573 19.379108) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.048707 24.457328) (end -18.992997 24.458293) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.104349 24.454434) (end -19.048707 24.457328) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.159858 24.449613) (end -19.104349 24.454434) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.215167 24.442872) (end -19.159858 24.449613) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.270208 24.43422) (end -19.215167 24.442872) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.324917 24.423666) (end -19.270208 24.43422) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.379228 24.411222) (end -19.324917 24.423666) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.433075 24.396905) (end -19.379228 24.411222) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.486393 24.380731) (end -19.433075 24.396905) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.539119 24.36272) (end -19.486393 24.380731) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.59119 24.342893) (end -19.539119 24.36272) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.642542 24.321274) (end -19.59119 24.342893) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.693115 24.297888) (end -19.642542 24.321274) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.742847 24.272765) (end -19.693115 24.297888) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.791679 24.245934) (end -19.742847 24.272765) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.839552 24.217428) (end -19.791679 24.245934) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.886409 24.18728) (end -19.839552 24.217428) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.932194 24.155527) (end -19.886409 24.18728) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.97685 24.122207) (end -19.932194 24.155527) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.020326 24.08736) (end -19.97685 24.122207) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.062569 24.051027) (end -20.020326 24.08736) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.103527 24.013253) (end -20.062569 24.051027) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.143152 23.974083) (end -20.103527 24.013253) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.181397 23.933564) (end -20.143152 23.974083) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.218215 23.891744) (end -20.181397 23.933564) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.253561 23.848674) (end -20.218215 23.891744) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.287395 23.804404) (end -20.253561 23.848674) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.319675 23.75899) (end -20.287395 23.804404) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.350362 23.712484) (end -20.319675 23.75899) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.379419 23.664944) (end -20.350362 23.712484) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.406813 23.616425) (end -20.379419 23.664944) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.432508 23.566986) (end -20.406813 23.616425) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.456476 23.516687) (end -20.432508 23.566986) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.478687 23.465588) (end -20.456476 23.516687) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.499114 23.413749) (end -20.478687 23.465588) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.517733 23.361235) (end -20.499114 23.413749) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.534522 23.308107) (end -20.517733 23.361235) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.54946 23.254429) (end -20.534522 23.308107) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.56253 23.200266) (end -20.54946 23.254429) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.573715 23.145682) (end -20.56253 23.200266) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.583003 23.090744) (end -20.573715 23.145682) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.590382 23.035517) (end -20.583003 23.090744) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.595843 22.980068) (end -20.590382 23.035517) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.59938 22.924462) (end -20.595843 22.980068) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.600989 22.868768) (end -20.59938 22.924462) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.600667 22.813051) (end -20.600989 22.868768) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.598415 22.757379) (end -20.600667 22.813051) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.594236 22.701818) (end -20.598415 22.757379) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.588135 22.646436) (end -20.594236 22.701818) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.580119 22.591298) (end -20.588135 22.646436) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.570197 22.53647) (end -20.580119 22.591298) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.558382 22.48202) (end -20.570197 22.53647) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.544688 22.428011) (end -20.558382 22.48202) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.529131 22.374509) (end -20.544688 22.428011) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.511729 22.321579) (end -20.529131 22.374509) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.492505 22.269283) (end -20.511729 22.321579) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.47148 22.217684) (end -20.492505 22.269283) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.448681 22.166845) (end -20.47148 22.217684) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.424134 22.116825) (end -20.448681 22.166845) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.397869 22.067687) (end -20.424134 22.116825) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.369917 22.019488) (end -20.397869 22.067687) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.340312 21.972286) (end -20.369917 22.019488) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.30909 21.926138) (end -20.340312 21.972286) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.276288 21.881099) (end -20.30909 21.926138) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.241945 21.837224) (end -20.276288 21.881099) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.206103 21.794564) (end -20.241945 21.837224) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.168805 21.753172) (end -20.206103 21.794564) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.130095 21.713097) (end -20.168805 21.753172) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.09002 21.674388) (end -20.130095 21.713097) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.048628 21.637089) (end -20.09002 21.674388) (layer Edge.Cuts) (width 0.1))
(fp_line (start -20.005969 21.601247) (end -20.048628 21.637089) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.962093 21.566904) (end -20.005969 21.601247) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.917055 21.534102) (end -19.962093 21.566904) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.870907 21.50288) (end -19.917055 21.534102) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.823705 21.473276) (end -19.870907 21.50288) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.775506 21.445324) (end -19.823705 21.473276) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.726367 21.419059) (end -19.775506 21.445324) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.676348 21.394512) (end -19.726367 21.419059) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.625509 21.371712) (end -19.676348 21.394512) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.57391 21.350688) (end -19.625509 21.371712) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.521614 21.331463) (end -19.57391 21.350688) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.468683 21.314062) (end -19.521614 21.331463) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.415181 21.298505) (end -19.468683 21.314062) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.361173 21.28481) (end -19.415181 21.298505) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.306722 21.272995) (end -19.361173 21.28481) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.251895 21.263074) (end -19.306722 21.272995) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.196757 21.255057) (end -19.251895 21.263074) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.141374 21.248956) (end -19.196757 21.255057) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.085813 21.244777) (end -19.141374 21.248956) (layer Edge.Cuts) (width 0.1))
(fp_line (start -19.030141 21.242525) (end -19.085813 21.244777) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.974424 21.242204) (end -19.030141 21.242525) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.91873 21.243812) (end -18.974424 21.242204) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.863125 21.247349) (end -18.91873 21.243812) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.807675 21.252811) (end -18.863125 21.247349) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.752448 21.260189) (end -18.807675 21.252811) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.69751 21.269477) (end -18.752448 21.260189) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.642927 21.280663) (end -18.69751 21.269477) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.588764 21.293732) (end -18.642927 21.280663) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.535086 21.30867) (end -18.588764 21.293732) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.481958 21.325459) (end -18.535086 21.30867) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.429443 21.344078) (end -18.481958 21.325459) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.377605 21.364505) (end -18.429443 21.344078) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.326506 21.386716) (end -18.377605 21.364505) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.276206 21.410684) (end -18.326506 21.386716) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.226768 21.43638) (end -18.276206 21.410684) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.178249 21.463773) (end -18.226768 21.43638) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.130708 21.492831) (end -18.178249 21.463773) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.084202 21.523518) (end -18.130708 21.492831) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.038788 21.555797) (end -18.084202 21.523518) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.994519 21.589631) (end -18.038788 21.555797) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.951449 21.624978) (end -17.994519 21.589631) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.909629 21.661796) (end -17.951449 21.624978) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.869109 21.70004) (end -17.909629 21.661796) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.829939 21.739665) (end -17.869109 21.70004) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.792165 21.780624) (end -17.829939 21.739665) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.755833 21.822866) (end -17.792165 21.780624) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.720986 21.866342) (end -17.755833 21.822866) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.687666 21.910999) (end -17.720986 21.866342) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.655912 21.956783) (end -17.687666 21.910999) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.625765 22.00364) (end -17.655912 21.956783) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.597258 22.051513) (end -17.625765 22.00364) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.570427 22.100345) (end -17.597258 22.051513) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.545304 22.150077) (end -17.570427 22.100345) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.521919 22.20065) (end -17.545304 22.150077) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.5003 22.252003) (end -17.521919 22.20065) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.480473 22.304073) (end -17.5003 22.252003) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.462461 22.356799) (end -17.480473 22.304073) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.446287 22.410118) (end -17.462461 22.356799) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.43197 22.463965) (end -17.446287 22.410118) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.419527 22.518275) (end -17.43197 22.463965) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.408973 22.572984) (end -17.419527 22.518275) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.40032 22.628026) (end -17.408973 22.572984) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.393579 22.683334) (end -17.40032 22.628026) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.388759 22.738843) (end -17.393579 22.683334) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.385864 22.794486) (end -17.388759 22.738843) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.384899 22.850195) (end -17.385864 22.794486) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.385879 22.906317) (end -17.384899 22.850195) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.388816 22.96237) (end -17.385879 22.906317) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.393708 23.018287) (end -17.388816 22.96237) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.400549 23.073999) (end -17.393708 23.018287) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.40933 23.129438) (end -17.400549 23.073999) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.42004 23.184537) (end -17.40933 23.129438) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.432666 23.239229) (end -17.42004 23.184537) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.447194 23.293447) (end -17.432666 23.239229) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.463605 23.347125) (end -17.447194 23.293447) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.481879 23.400197) (end -17.463605 23.347125) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.501995 23.452599) (end -17.481879 23.400197) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.523926 23.504267) (end -17.501995 23.452599) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.547648 23.555139) (end -17.523926 23.504267) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.573131 23.605151) (end -17.547648 23.555139) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.600343 23.654244) (end -17.573131 23.605151) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.629253 23.702357) (end -17.600343 23.654244) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.659823 23.749432) (end -17.629253 23.702357) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.692019 23.795411) (end -17.659823 23.749432) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.725799 23.840239) (end -17.692019 23.795411) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.761123 23.883861) (end -17.725799 23.840239) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.797947 23.926223) (end -17.761123 23.883861) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.836228 23.967274) (end -17.797947 23.926223) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.875918 24.006964) (end -17.836228 23.967274) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.91697 24.045245) (end -17.875918 24.006964) (layer Edge.Cuts) (width 0.1))
(fp_line (start -17.959332 24.08207) (end -17.91697 24.045245) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.002953 24.117394) (end -17.959332 24.08207) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.047781 24.151174) (end -18.002953 24.117394) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.09376 24.183369) (end -18.047781 24.151174) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.140835 24.21394) (end -18.09376 24.183369) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.188948 24.242849) (end -18.140835 24.21394) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.238041 24.270062) (end -18.188948 24.242849) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.288054 24.295544) (end -18.238041 24.270062) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.338925 24.319266) (end -18.288054 24.295544) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.390593 24.341198) (end -18.338925 24.319266) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.442995 24.361313) (end -18.390593 24.341198) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.496068 24.379587) (end -18.442995 24.361313) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.549745 24.395998) (end -18.496068 24.379587) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.603963 24.410526) (end -18.549745 24.395998) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.658655 24.423153) (end -18.603963 24.410526) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.713754 24.433863) (end -18.658655 24.423153) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.769193 24.442643) (end -18.713754 24.433863) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.824905 24.449484) (end -18.769193 24.442643) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.880822 24.454376) (end -18.824905 24.449484) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.936876 24.457314) (end -18.880822 24.454376) (layer Edge.Cuts) (width 0.1))
(fp_line (start -18.992997 24.458293) (end -18.936876 24.457314) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.981742 -8.529849) (end 33.037451 -8.528884) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.926099 -8.532744) (end 32.981742 -8.529849) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.870591 -8.537564) (end 32.926099 -8.532744) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.815282 -8.544305) (end 32.870591 -8.537564) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.76024 -8.552958) (end 32.815282 -8.544305) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.705531 -8.563512) (end 32.76024 -8.552958) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.651221 -8.575955) (end 32.705531 -8.563512) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.597374 -8.590272) (end 32.651221 -8.575955) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.544056 -8.606446) (end 32.597374 -8.590272) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.491329 -8.624458) (end 32.544056 -8.606446) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.439259 -8.644285) (end 32.491329 -8.624458) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.387906 -8.665904) (end 32.439259 -8.644285) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.337334 -8.689289) (end 32.387906 -8.665904) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.287601 -8.714412) (end 32.337334 -8.689289) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.238769 -8.741243) (end 32.287601 -8.714412) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.190896 -8.76975) (end 32.238769 -8.741243) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.144039 -8.799897) (end 32.190896 -8.76975) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.098255 -8.831651) (end 32.144039 -8.799897) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.053598 -8.864971) (end 32.098255 -8.831651) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.010122 -8.899818) (end 32.053598 -8.864971) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.96788 -8.93615) (end 32.010122 -8.899818) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.926922 -8.973924) (end 31.96788 -8.93615) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.887296 -9.013094) (end 31.926922 -8.973924) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.849052 -9.053614) (end 31.887296 -9.013094) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.812234 -9.095434) (end 31.849052 -9.053614) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.776887 -9.138504) (end 31.812234 -9.095434) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.743053 -9.182773) (end 31.776887 -9.138504) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.710774 -9.228188) (end 31.743053 -9.182773) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.680087 -9.274693) (end 31.710774 -9.228188) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.651029 -9.322234) (end 31.680087 -9.274693) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.623636 -9.370753) (end 31.651029 -9.322234) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.59794 -9.420191) (end 31.623636 -9.370753) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.573972 -9.470491) (end 31.59794 -9.420191) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.551762 -9.52159) (end 31.573972 -9.470491) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.531334 -9.573428) (end 31.551762 -9.52159) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.512715 -9.625943) (end 31.531334 -9.573428) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.495926 -9.679071) (end 31.512715 -9.625943) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.480988 -9.732749) (end 31.495926 -9.679071) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.467919 -9.786912) (end 31.480988 -9.732749) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.456733 -9.841495) (end 31.467919 -9.786912) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.447446 -9.896433) (end 31.456733 -9.841495) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.440067 -9.95166) (end 31.447446 -9.896433) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.434605 -10.00711) (end 31.440067 -9.95166) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.431068 -10.062715) (end 31.434605 -10.00711) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.42946 -10.11841) (end 31.431068 -10.062715) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.429781 -10.174126) (end 31.42946 -10.11841) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.432033 -10.229798) (end 31.429781 -10.174126) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.436212 -10.285359) (end 31.432033 -10.229798) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.442314 -10.340742) (end 31.436212 -10.285359) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.45033 -10.39588) (end 31.442314 -10.340742) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.460252 -10.450707) (end 31.45033 -10.39588) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.472067 -10.505158) (end 31.460252 -10.450707) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.485761 -10.559166) (end 31.472067 -10.505158) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.501318 -10.612668) (end 31.485761 -10.559166) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.518719 -10.665599) (end 31.501318 -10.612668) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.537944 -10.717895) (end 31.518719 -10.665599) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.558968 -10.769494) (end 31.537944 -10.717895) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.581768 -10.820333) (end 31.558968 -10.769494) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.606315 -10.870352) (end 31.581768 -10.820333) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.63258 -10.919491) (end 31.606315 -10.870352) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.660532 -10.96769) (end 31.63258 -10.919491) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.690136 -11.014892) (end 31.660532 -10.96769) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.721359 -11.06104) (end 31.690136 -11.014892) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.754161 -11.106079) (end 31.721359 -11.06104) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.788503 -11.149954) (end 31.754161 -11.106079) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.824345 -11.192613) (end 31.788503 -11.149954) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.861644 -11.234005) (end 31.824345 -11.192613) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.900354 -11.27408) (end 31.861644 -11.234005) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.940429 -11.31279) (end 31.900354 -11.27408) (layer Edge.Cuts) (width 0.1))
(fp_line (start 31.981821 -11.350088) (end 31.940429 -11.31279) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.02448 -11.38593) (end 31.981821 -11.350088) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.068355 -11.420273) (end 32.02448 -11.38593) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.113394 -11.453075) (end 32.068355 -11.420273) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.159542 -11.484297) (end 32.113394 -11.453075) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.206744 -11.513902) (end 32.159542 -11.484297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.254943 -11.541854) (end 32.206744 -11.513902) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.304082 -11.568119) (end 32.254943 -11.541854) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.354101 -11.592666) (end 32.304082 -11.568119) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.40494 -11.615465) (end 32.354101 -11.592666) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.456539 -11.63649) (end 32.40494 -11.615465) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.508835 -11.655714) (end 32.456539 -11.63649) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.561766 -11.673116) (end 32.508835 -11.655714) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.615267 -11.688673) (end 32.561766 -11.673116) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.669276 -11.702367) (end 32.615267 -11.688673) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.723727 -11.714182) (end 32.669276 -11.702367) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.778554 -11.724104) (end 32.723727 -11.714182) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.833692 -11.73212) (end 32.778554 -11.724104) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.889074 -11.738221) (end 32.833692 -11.73212) (layer Edge.Cuts) (width 0.1))
(fp_line (start 32.944635 -11.7424) (end 32.889074 -11.738221) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.000307 -11.744652) (end 32.944635 -11.7424) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.056024 -11.744974) (end 33.000307 -11.744652) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.111719 -11.743365) (end 33.056024 -11.744974) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.167324 -11.739828) (end 33.111719 -11.743365) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.222773 -11.734367) (end 33.167324 -11.739828) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.278 -11.726988) (end 33.222773 -11.734367) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.332938 -11.7177) (end 33.278 -11.726988) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.387522 -11.706515) (end 33.332938 -11.7177) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.441685 -11.693445) (end 33.387522 -11.706515) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.495363 -11.678507) (end 33.441685 -11.693445) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.548491 -11.661718) (end 33.495363 -11.678507) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.601006 -11.643099) (end 33.548491 -11.661718) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.652844 -11.622672) (end 33.601006 -11.643099) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.703943 -11.600461) (end 33.652844 -11.622672) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.754242 -11.576493) (end 33.703943 -11.600461) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.803681 -11.550798) (end 33.754242 -11.576493) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.8522 -11.523404) (end 33.803681 -11.550798) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.899741 -11.494347) (end 33.8522 -11.523404) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.946246 -11.46366) (end 33.899741 -11.494347) (layer Edge.Cuts) (width 0.1))
(fp_line (start 33.991661 -11.43138) (end 33.946246 -11.46366) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.03593 -11.397546) (end 33.991661 -11.43138) (layer Edge.Cuts) (width 0.1))
(fp_line (start 34.079 -11.3622) (end 34.03593 -11.397546) (layer Edge.Cuts) (width 0.1))
(pad 36 thru_hole oval (at -27.94 2.54 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 6 +3V3))
(pad 35 thru_hole oval (at -27.94 0 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND))
(pad 34 thru_hole oval (at -27.94 -2.54 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 20 GPIO5))
(pad 33 thru_hole oval (at -27.94 -5.08 180) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 21 GPIO4))
(pad 32 thru_hole oval (at -13.97 -25.4 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 20 GPIO5))
(pad 31 thru_hole oval (at -11.43 -25.4 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 21 GPIO4))
(pad 30 thru_hole oval (at -8.89 -25.4 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 44 "Net-(S1-Pad30)"))
(pad 29 thru_hole oval (at -6.35 -25.4 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND))
(pad 28 thru_hole oval (at -3.81 -25.4 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 28 GPIO14))
(pad 27 thru_hole oval (at -1.27 -25.4 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 27 GPIO12))
(pad 26 thru_hole oval (at 1.27 -25.4 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 26 GPIO13))
(pad 25 thru_hole oval (at 3.81 -25.4 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)