-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAtomiswaveNetwork.kicad_pcb
15943 lines (15934 loc) · 552 KB
/
AtomiswaveNetwork.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "plots/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/AD3_D3")
(net 3 "/AD7_D7")
(net 4 "/AD11_A3")
(net 5 "/AD15_A7")
(net 6 "/LBE_WE_n")
(net 7 "/CLK")
(net 8 "+3V3")
(net 9 "/AD1_D1")
(net 10 "/AD5_D5")
(net 11 "/AD9_A1")
(net 12 "/AD13_A5")
(net 13 "/BTB_n")
(net 14 "/RESET_n")
(net 15 "/AD2_D2")
(net 16 "/AD6_D6")
(net 17 "/AD10_A2")
(net 18 "/AD14_A6")
(net 19 "/BTA_n")
(net 20 "/UBE_RD_n")
(net 21 "/AD0_D0")
(net 22 "/AD4_D4")
(net 23 "/AD8_A0")
(net 24 "/AD12_A4")
(net 25 "/IRQB_n")
(net 26 "/AEN_n")
(net 27 "unconnected-(U2-Pad1)")
(net 28 "unconnected-(U2-Pad2)")
(net 29 "unconnected-(U2-Pad3)")
(net 30 "unconnected-(U2-Pad4)")
(net 31 "unconnected-(U2-Pad5)")
(net 32 "unconnected-(U2-Pad6)")
(net 33 "unconnected-(U2-Pad7)")
(net 34 "unconnected-(U2-Pad8)")
(net 35 "unconnected-(U2-Pad9)")
(net 36 "unconnected-(U2-Pad15)")
(net 37 "unconnected-(U2-Pad49)")
(net 38 "unconnected-(U2-Pad50)")
(footprint "DreamcastCommonFootprints:G2_FFC" (layer "F.Cu")
(tedit 61D39568) (tstamp 91f6ba44-875a-430c-97d2-aa1cad21d445)
(at 143.256 81.28 180)
(descr "THD THD0515-50CL-SN")
(property "Sheetfile" "AtomiswaveNetwork.kicad_sch")
(property "Sheetname" "")
(path "/6d5d6073-3f0e-4ff8-9975-b669c2b7caa3")
(attr through_hole)
(fp_text reference "U2" (at 0 1.95) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e6fbc5d1-28b7-4cc3-9c96-edcdbd3d50e3)
)
(fp_text value "G2_FFC" (at 0 3.1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0eaef929-8631-493b-8c57-16d0ce10e05e)
)
(fp_line (start -12.5 0.98) (end -12.5 3.72) (layer "F.SilkS") (width 0.12) (tstamp 1c57f224-a55b-4b9f-81aa-d1c2e32a4f1c))
(fp_line (start -15.31 3.72) (end -15.31 1.56) (layer "F.SilkS") (width 0.12) (tstamp 27631731-229b-44ed-bd1a-52ba4a0731d4))
(fp_line (start -12.5 3.72) (end -15.31 3.72) (layer "F.SilkS") (width 0.12) (tstamp 27e03d5a-27d3-4ced-8621-bd538573c6a1))
(fp_line (start -15.31 1.56) (end -12.5 1.56) (layer "F.SilkS") (width 0.12) (tstamp 7086d095-fffd-4c7e-83a5-f13e703b81c4))
(fp_line (start -12.5 0.98) (end 12.5 0.98) (layer "F.SilkS") (width 0.12) (tstamp 8e94c367-1476-4bc0-b929-e37bd16678cd))
(fp_line (start -12.5 1.56) (end -12.5 -0.98) (layer "F.SilkS") (width 0.12) (tstamp 93e0a59b-1ba5-4724-a5fd-3c8a20141ab6))
(fp_line (start 12.5 0.98) (end 12.5 3.72) (layer "F.SilkS") (width 0.12) (tstamp c485f0f3-8ef9-4087-b58e-4730074387b9))
(fp_line (start -12.5 -0.98) (end 12.5 -0.98) (layer "F.SilkS") (width 0.12) (tstamp cd22f60a-274a-4855-bd70-43b56874512e))
(fp_line (start 15.31 1.56) (end 12.5 1.56) (layer "F.SilkS") (width 0.12) (tstamp d33bd528-76ff-4c1b-be75-016452a62de0))
(fp_line (start 12.5 3.72) (end 15.31 3.72) (layer "F.SilkS") (width 0.12) (tstamp f2b7e2e7-5a7c-4a64-b1c4-4fc6644ee2fe))
(fp_line (start 12.5 1.56) (end 12.5 -0.98) (layer "F.SilkS") (width 0.12) (tstamp f3950878-3ae7-4610-824f-f32c2ddbb149))
(fp_line (start 15.31 3.72) (end 15.31 1.56) (layer "F.SilkS") (width 0.12) (tstamp fa70fe71-e640-4086-a4d0-bc3ff9f4933f))
(fp_line (start -15.55 -1.2) (end -15.55 3.95) (layer "F.CrtYd") (width 0.05) (tstamp 03daee5c-c091-4abe-a951-1b2020e2c980))
(fp_line (start -15.55 -1.2) (end 15.55 -1.2) (layer "F.CrtYd") (width 0.05) (tstamp b6d70637-06aa-42b0-888e-01ff548a913e))
(fp_line (start -15.55 3.95) (end 15.55 3.95) (layer "F.CrtYd") (width 0.05) (tstamp c9de6e3d-c06e-4469-97f3-88872bf34019))
(fp_line (start 15.55 -1.2) (end 15.55 3.95) (layer "F.CrtYd") (width 0.05) (tstamp fde98f7c-988d-48fe-8c55-9b2a3b34f61b))
(pad "0" smd rect (at -14.4 2.7 180) (size 1.1 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3779459a-03f0-4498-a837-08ec2de48ab7))
(pad "0" smd rect (at 14.4 2.7 180) (size 1.1 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4a5b2855-0957-4909-9afb-5011b1950c05))
(pad "1" smd rect (at -12.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U2-Pad1)") (pinfunction "5V") (pintype "input") (tstamp 5af84632-12ca-4f4d-969f-c188e2d46aa5))
(pad "2" smd rect (at -11.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U2-Pad2)") (pinfunction "5V") (pintype "input") (tstamp 36eb152d-5f51-48ce-bc84-9340e4f6b798))
(pad "3" smd rect (at -11.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "unconnected-(U2-Pad3)") (pinfunction "5V") (pintype "input") (tstamp 8fdb59f0-7ed7-4a3b-84db-a49cd6186351))
(pad "4" smd rect (at -10.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "unconnected-(U2-Pad4)") (pinfunction "5V") (pintype "input") (tstamp d493f42d-d4fd-4c79-afb0-b130507948da))
(pad "5" smd rect (at -10.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "unconnected-(U2-Pad5)") (pinfunction "/MODEMCS") (pintype "input") (tstamp 798e25ed-1709-49bb-b096-7f216159c0b8))
(pad "6" smd rect (at -9.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U2-Pad6)") (pinfunction "IRQA") (pintype "input") (tstamp d0e1da87-9d63-462a-b7c4-7d04a15bf910))
(pad "7" smd rect (at -9.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "unconnected-(U2-Pad7)") (pinfunction "/RQEX0??") (pintype "input") (tstamp bd632bce-8f21-4134-9c1c-e3f5ef2572a9))
(pad "8" smd rect (at -8.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U2-Pad8)") (pinfunction "/RQEX1??") (pintype "input") (tstamp a9c170c7-7682-4351-871f-ffdfdd8c510f))
(pad "9" smd rect (at -8.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "unconnected-(U2-Pad9)") (pinfunction "/RQDEV??") (pintype "input") (tstamp 05b9ac97-87cb-4ef8-a190-1edc709e8fe6))
(pad "10" smd rect (at -7.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 075486e6-3cd8-4a96-8ef6-e6e40cca94c5))
(pad "11" smd rect (at -7.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 96376a76-9ad2-48b6-87db-1f56819a0bca))
(pad "12" smd rect (at -6.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp d3687b13-7243-431a-97d2-51c0ffdff36e))
(pad "13" smd rect (at -6.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "/IRQB_n") (pinfunction "IRQB") (pintype "input") (tstamp d20cc5a3-622c-41e5-bec8-0e4a586cf546))
(pad "14" smd rect (at -5.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/LBE_WE_n") (pinfunction "/LBE") (pintype "input") (tstamp 24c7d396-6840-4d95-bb40-338c24fb5d68))
(pad "15" smd rect (at -5.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "unconnected-(U2-Pad15)") (pinfunction "/TR??") (pintype "input") (tstamp f447021a-b7f2-4309-beac-e236533547fd))
(pad "16" smd rect (at -4.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "/UBE_RD_n") (pinfunction "/UBE") (pintype "input") (tstamp 73f4fe15-6f59-4048-9790-dfbfa41603ce))
(pad "17" smd rect (at -4.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "3.3V") (pintype "input") (tstamp 31e76a40-818c-40c0-b3f3-25199499ed29))
(pad "18" smd rect (at -3.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "3.3V") (pintype "input") (tstamp 43c78321-553b-4f6b-96c8-ea1f1ac94e44))
(pad "19" smd rect (at -3.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "+3V3") (pinfunction "3.3V") (pintype "input") (tstamp 8870b3ce-3084-4e75-a714-2db035834d49))
(pad "20" smd rect (at -2.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/BTB_n") (pinfunction "/BTB") (pintype "input") (tstamp 48db7973-414a-41a1-b6f4-5e93d8be85cd))
(pad "21" smd rect (at -2.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/AEN_n") (pinfunction "/AEN") (pintype "input") (tstamp a69b4179-53c3-414a-b565-68ec831b205a))
(pad "22" smd rect (at -1.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/BTA_n") (pinfunction "/BTA") (pintype "input") (tstamp 2626952f-517d-4b85-8764-759a3d8a6403))
(pad "23" smd rect (at -1.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 85e9fa7d-7931-47ff-86ff-565c090e032a))
(pad "24" smd rect (at -0.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 477ce66a-b1f5-40fd-832a-4f1f7e909742))
(pad "25" smd rect (at -0.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/AD15_A7") (pinfunction "AD15") (pintype "input") (tstamp 8a4e02d2-8bde-42d3-a536-b4dda893d0c7))
(pad "26" smd rect (at 0.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/AD14_A6") (pinfunction "AD14") (pintype "input") (tstamp 2afe4c65-9a74-4307-b905-4d9117c4aac5))
(pad "27" smd rect (at 0.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/AD13_A5") (pinfunction "AD13") (pintype "input") (tstamp 922d7e8a-4ff6-472e-a41f-cc205c10ff4e))
(pad "28" smd rect (at 1.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "/AD12_A4") (pinfunction "AD12") (pintype "input") (tstamp 55fc24cc-62d3-4c4c-9ea8-96a7ce0d2fba))
(pad "29" smd rect (at 1.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/AD11_A3") (pinfunction "AD11") (pintype "input") (tstamp 88bc025d-a7bc-4e61-b9dd-87f54d47bf1c))
(pad "30" smd rect (at 2.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/AD10_A2") (pinfunction "AD10") (pintype "input") (tstamp d8358b1f-2259-4e7c-a39b-8734ea447c9f))
(pad "31" smd rect (at 2.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/AD9_A1") (pinfunction "AD9") (pintype "input") (tstamp fc7af457-8603-4446-8c67-b7f1d049cb71))
(pad "32" smd rect (at 3.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "/AD8_A0") (pinfunction "AD8") (pintype "input") (tstamp f6efd27f-9911-4892-b1b3-178d371b6301))
(pad "33" smd rect (at 3.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "/AD7_D7") (pinfunction "AD7") (pintype "input") (tstamp 580c4d18-efe7-4266-ae8c-8985afab330b))
(pad "34" smd rect (at 4.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/AD6_D6") (pinfunction "AD6") (pintype "input") (tstamp 03b5bd0b-0ac0-4591-93af-6d474cd87be0))
(pad "35" smd rect (at 4.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/AD5_D5") (pinfunction "AD5") (pintype "input") (tstamp a4557287-e79a-4241-a44b-a57dd89cb74a))
(pad "36" smd rect (at 5.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "/AD4_D4") (pinfunction "AD4") (pintype "input") (tstamp a8cfc29b-82ef-4f47-be79-14dc72ddcaea))
(pad "37" smd rect (at 5.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/AD3_D3") (pinfunction "AD3") (pintype "input") (tstamp 94798ed1-e726-4f8e-b7ec-604df7c85952))
(pad "38" smd rect (at 6.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/AD2_D2") (pinfunction "AD2") (pintype "input") (tstamp 32ec4646-d7a3-43f4-8a7d-1ce85d35e3f8))
(pad "39" smd rect (at 6.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/AD1_D1") (pinfunction "AD1") (pintype "input") (tstamp 6617b768-0e70-4b63-9d22-612096fa571e))
(pad "40" smd rect (at 7.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "/AD0_D0") (pinfunction "AD0") (pintype "input") (tstamp e1840d7a-c834-4cc3-ba79-34f9cf76090f))
(pad "41" smd rect (at 7.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 5cb8daf4-6f5d-4c01-8e72-e581d2a520c3))
(pad "42" smd rect (at 8.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp b48621d6-9789-4f30-95c4-a1ed96d953fd))
(pad "43" smd rect (at 8.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/CLK") (pinfunction "CLK") (pintype "input") (tstamp f2a5f9d8-3530-4c8a-9432-27d9b8957d28))
(pad "44" smd rect (at 9.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 2e1e4116-be03-4463-9b91-302c34ff96c3))
(pad "45" smd rect (at 9.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp d79faf8d-b174-4112-8f10-98157d54b3a1))
(pad "46" smd rect (at 10.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/RESET_n") (pinfunction "/RESET") (pintype "input") (tstamp 7bbec812-dd4b-4505-abd7-94ffbc084bba))
(pad "47" smd rect (at 10.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 66480fe1-5068-4c43-b05d-38e26fafacb1))
(pad "48" smd rect (at 11.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 97da2000-4997-4b9d-aed0-42a06f2b339f))
(pad "49" smd rect (at 11.75 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "unconnected-(U2-Pad49)") (pinfunction "MIDI_OUT") (pintype "input") (tstamp d43c5fc5-00d8-4413-9915-7c6ca604711e))
(pad "50" smd rect (at 12.25 0 180) (size 0.3 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(U2-Pad50)") (pinfunction "MIDI_IN") (pintype "input") (tstamp 19fb4f3b-6b7f-448c-b0a9-9d2e6483cd85))
)
(footprint "AW_Footprints:AW_LAN_PCB_Connector" (layer "F.Cu")
(tedit 61E4494B) (tstamp fd630517-2cdb-45ce-9b55-63fbce3e0650)
(at 132.08 91.44)
(property "Sheetfile" "AtomiswaveNetwork.kicad_sch")
(property "Sheetname" "")
(path "/038cdd7f-b046-4e33-aa39-eb552b9d9ac9")
(fp_text reference "U1" (at -2.54 6.35 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c63f6a5-7aec-4a1a-9093-f5107fda2a65)
)
(fp_text value "LAN_PCB_Connector" (at 3.81 8.89) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9c35c04-8a1f-46ee-9355-dc00ce000896)
)
(fp_text user "50" (at 31.115 6.6 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3bfab2b-de1a-42b0-84de-e39cc4bad5de)
)
(fp_text user "1" (at -1.27 0 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea92b21d-a4e2-4988-b0ce-c558ea165d10)
)
(fp_line (start 35.56 -1.27) (end -5.08 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 6c2ce8b2-9fdb-4d72-a15e-3c0ff2f2aadf))
(fp_line (start -5.08 7.747) (end -5.08 -1.27) (layer "F.SilkS") (width 0.12) (tstamp 6cdb27ef-49da-44bf-b1c4-d3422ff3bd53))
(fp_line (start 35.56 7.747) (end -5.08 7.747) (layer "F.SilkS") (width 0.12) (tstamp 8a48bb2d-c8f3-4b45-8a9a-388cccb0caaa))
(fp_line (start 35.56 7.747) (end 35.56 -1.27) (layer "F.SilkS") (width 0.12) (tstamp c77dd4ea-04b4-46f0-8ce3-7be4ee95b3c9))
(fp_circle (center -2.94 3.3) (end -1.14 3.3) (layer "Edge.Cuts") (width 0.12) (fill none) (tstamp a9302f15-03c7-4f12-bd3e-80b412d09d06))
(fp_circle (center 33.42 3.3) (end 35.22 3.3) (layer "Edge.Cuts") (width 0.12) (fill none) (tstamp bbadb721-aa88-4e68-9b70-3c6191f720e3))
(fp_line (start -5.08 7.747) (end 35.56 7.747) (layer "F.CrtYd") (width 0.05) (tstamp 41e63821-9551-42cd-ac9b-e695ef497cd0))
(fp_line (start 35.56 7.747) (end 35.56 -1.27) (layer "F.CrtYd") (width 0.05) (tstamp 99044d91-2a4a-450a-87c3-9efdeff21347))
(fp_line (start -5.08 7.747) (end -5.08 -1.27) (layer "F.CrtYd") (width 0.05) (tstamp c794e615-91d9-4c55-bccb-75991bf3c5d7))
(fp_line (start -5.08 -1.27) (end 35.56 -1.27) (layer "F.CrtYd") (width 0.05) (tstamp ed86d310-a7d9-4137-9ee3-12f06290ce5d))
(pad "1" thru_hole rect (at 0 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5be020be-c034-48b9-a552-8dbaeb4d16f9))
(pad "2" thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3772fe6e-5bf7-4415-a6e3-caae4ee2288d))
(pad "3" thru_hole circle (at 5.08 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 2 "/AD3_D3") (pinfunction "AD3_D3") (pintype "input") (tstamp f3e36bb5-03d2-422f-9fbe-a4588cbd8e29))
(pad "4" thru_hole circle (at 7.62 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 3 "/AD7_D7") (pinfunction "AD7_D7") (pintype "input") (tstamp a4a36958-5160-4442-9cc6-3f42f15434c8))
(pad "5" thru_hole circle (at 10.16 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 4 "/AD11_A3") (pinfunction "AD11_A3") (pintype "input") (tstamp a89701b8-a6da-49e4-89e7-73d771a7d0cd))
(pad "6" thru_hole circle (at 12.7 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 5 "/AD15_A7") (pinfunction "AD15_A7") (pintype "input") (tstamp ddca445e-dc8e-4d72-8946-3d45b6bbcf5d))
(pad "7" thru_hole circle (at 15.24 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask) (tstamp 53a23065-8232-4184-b863-f877796fb155))
(pad "8" thru_hole circle (at 17.78 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 6 "/LBE_WE_n") (pinfunction "LBE_WE_n") (pintype "input") (tstamp 8861c4e8-c9c3-40b8-9c5a-1d2343d6aa97))
(pad "9" thru_hole circle (at 20.32 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 7 "/CLK") (pinfunction "CLK") (pintype "input") (tstamp 7d9b35c6-79b8-429a-9d28-c25e4ec9c0b5))
(pad "10" thru_hole circle (at 22.86 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask) (tstamp c4f46afa-8ab7-403b-8e1a-9304fe7de4e6))
(pad "11" thru_hole circle (at 25.4 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 6927217f-ca68-4984-8416-c6a8c038833b))
(pad "12" thru_hole circle (at 27.94 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 8 "+3V3") (pinfunction "3.3V") (pintype "power_in") (tstamp 1cc4d8c8-60a7-4c22-8fc3-0594d501f031))
(pad "13" thru_hole circle (at 30.48 0) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask) (tstamp 15444e1e-db8b-461b-ab8b-90fab34836ec))
(pad "14" thru_hole circle (at 1.27 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 857c663e-e599-4b70-b9bd-c71313aec570))
(pad "15" thru_hole circle (at 3.81 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 9 "/AD1_D1") (pinfunction "AD1_D1") (pintype "input") (tstamp 191889e3-501a-490e-8570-6cddf8306087))
(pad "16" thru_hole circle (at 6.35 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 10 "/AD5_D5") (pinfunction "AD5_D5") (pintype "input") (tstamp 6bf33c0f-caec-42cf-8992-646e0f5b6c66))
(pad "17" thru_hole circle (at 8.89 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 11 "/AD9_A1") (pinfunction "AD9_A1") (pintype "input") (tstamp e53a8fca-d29b-47a8-b637-7f52fa1eb236))
(pad "18" thru_hole circle (at 11.43 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 12 "/AD13_A5") (pinfunction "AD13_A5") (pintype "input") (tstamp c758f9ae-5563-4066-ad38-a3e3cc26c6b0))
(pad "19" thru_hole circle (at 13.97 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b007462d-63ee-4855-83ee-22446463a4a3))
(pad "20" thru_hole circle (at 16.51 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 13 "/BTB_n") (pinfunction "BTB_n") (pintype "input") (tstamp 391ee832-8967-4099-aa42-c955e6c96b61))
(pad "21" thru_hole circle (at 19.05 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 14 "/RESET_n") (pinfunction "RESET_n") (pintype "input") (tstamp a165ee89-ae0b-4d8a-be05-49a52ddaf518))
(pad "22" thru_hole circle (at 21.59 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask) (tstamp 54b58771-6838-418f-b645-1c0d41b96888))
(pad "23" thru_hole circle (at 24.13 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3ab77ebd-2026-481d-9bee-344930e0ec68))
(pad "24" thru_hole circle (at 26.67 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 8 "+3V3") (pinfunction "3.3V") (pintype "power_in") (tstamp 1e489fdb-a9bb-4acf-9917-9b41c484d173))
(pad "25" thru_hole circle (at 29.21 2.2) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask) (tstamp 677ee55f-4541-41df-8ef5-2ed64ad097e3))
(pad "26" thru_hole circle (at 0 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 46ca071b-4a69-4d0f-85a0-ccba8237a96f))
(pad "27" thru_hole circle (at 2.54 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b0ae7cb6-5971-4bbd-9e97-a03d9953233f))
(pad "28" thru_hole circle (at 5.08 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 15 "/AD2_D2") (pinfunction "AD2_D2") (pintype "input") (tstamp 21658bdb-4cec-488f-b071-2d99a8195c8e))
(pad "29" thru_hole circle (at 7.62 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 16 "/AD6_D6") (pinfunction "AD6_D6") (pintype "input") (tstamp 1f4669c7-3bde-45b5-a86c-9b862398a546))
(pad "30" thru_hole circle (at 10.16 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 17 "/AD10_A2") (pinfunction "AD10_A2") (pintype "input") (tstamp c8684b90-1cc6-4df2-84f8-df12d8c5e28d))
(pad "31" thru_hole circle (at 12.7 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 18 "/AD14_A6") (pinfunction "AD14_A6") (pintype "input") (tstamp 73446e76-ef05-4ec7-8628-34cd5d02f997))
(pad "32" thru_hole circle (at 15.24 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 19 "/BTA_n") (pinfunction "BTA_n") (pintype "input") (tstamp 9f08986a-e2e4-4356-9d8a-70609b7442fc))
(pad "33" thru_hole circle (at 17.78 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 20 "/UBE_RD_n") (pinfunction "UBE_RD_n") (pintype "input") (tstamp 7f0938bb-ca39-4216-9c21-028d82325047))
(pad "34" thru_hole circle (at 20.32 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 016f4730-56af-44b2-95d8-c7581b129d0e))
(pad "35" thru_hole circle (at 22.86 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask) (tstamp d7037fce-5901-4d6d-9a27-8edc8a00e4ee))
(pad "36" thru_hole circle (at 25.4 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp f5e8ddf4-f2f2-42c6-9f8c-e6c144689faa))
(pad "37" thru_hole circle (at 27.94 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 8 "+3V3") (pinfunction "3.3V") (pintype "power_in") (tstamp 42ab213c-9767-4273-ac7d-0e004c28bc2f))
(pad "38" thru_hole circle (at 30.48 4.4 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask) (tstamp fca31dcb-95b7-4946-8308-b04ec684b539))
(pad "39" thru_hole circle (at 1.27 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cb0c8cc8-0526-499d-87a8-fe36694018cd))
(pad "40" thru_hole circle (at 3.81 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 21 "/AD0_D0") (pinfunction "AD0_D0") (pintype "input") (tstamp 6a439b24-483f-4043-9b76-1ac6b375d8ba))
(pad "41" thru_hole circle (at 6.35 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 22 "/AD4_D4") (pinfunction "AD4_D4") (pintype "input") (tstamp 9c992225-b545-4d68-9449-07214b9d578a))
(pad "42" thru_hole circle (at 8.89 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 23 "/AD8_A0") (pinfunction "AD8_A0") (pintype "input") (tstamp 19995576-a69c-4af3-bf8e-32a9b8e084c9))
(pad "43" thru_hole circle (at 11.43 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 24 "/AD12_A4") (pinfunction "AD12_A4") (pintype "input") (tstamp 7ebb46c5-df69-4406-99f9-f6b643093014))
(pad "44" thru_hole circle (at 13.97 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 25 "/IRQB_n") (pinfunction "IRQB_n") (pintype "input") (tstamp 6e9aa2f2-757d-4b8a-ab52-90d75272f63b))
(pad "45" thru_hole circle (at 16.51 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 26 "/AEN_n") (pinfunction "AEN_n") (pintype "input") (tstamp 5e47be1c-724b-4df3-be99-224931bf0bd5))
(pad "46" thru_hole circle (at 19.05 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 57f83ce3-2206-4eeb-9fbd-c04f77453dd7))
(pad "47" thru_hole circle (at 21.59 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 921fba86-270d-4410-9708-8a1af751496e))
(pad "48" thru_hole circle (at 24.13 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 05f2c930-81c7-4558-8b36-3c0f12399cc4))
(pad "49" thru_hole circle (at 26.67 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask)
(net 8 "+3V3") (pinfunction "3.3V") (pintype "power_in") (tstamp cc4495f0-fe76-4fc1-856e-66d9ec26a158))
(pad "50" thru_hole circle (at 29.21 6.6 180) (size 1.8 1.8) (drill 1.4) (layers *.Cu *.Mask) (tstamp ea432ff8-bd4d-47af-bfde-e5d5e504c305))
)
(gr_line (start 126.746 99.7) (end 126.746 76.454) (layer "Edge.Cuts") (width 0.1) (tstamp 01106a52-6b7d-40fd-b165-c927be1f6a1d))
(gr_line (start 160.782 88.392) (end 159.766 87.376) (layer "Edge.Cuts") (width 0.1) (tstamp 186a2205-0fe2-402e-9400-c5f232f64c32))
(gr_line (start 167.894 99.7) (end 126.746 99.7) (layer "Edge.Cuts") (width 0.1) (tstamp a97391c0-c438-44dc-aec7-4249e6f62568))
(gr_line (start 167.894 88.392) (end 160.782 88.392) (layer "Edge.Cuts") (width 0.1) (tstamp cb91cf7f-89d9-4ebe-976e-5813f8704211))
(gr_line (start 159.766 76.454) (end 159.766 87.376) (layer "Edge.Cuts") (width 0.1) (tstamp cc593834-034b-404b-8f85-eac9af921408))
(gr_line (start 126.746 76.454) (end 159.766 76.454) (layer "Edge.Cuts") (width 0.1) (tstamp d76ec66c-d0c1-4040-8259-8685c076073a))
(gr_line (start 167.894 88.392) (end 167.894 99.7) (layer "Edge.Cuts") (width 0.1) (tstamp fe0a8ab1-7b25-4d9a-9a3b-f8c5e10b289a))
(gr_text "Atomiswave LAN to FFC\ncepawiel/AW_LAN_to_FFC\nV1.1" (at 143.764 86.36) (layer "F.SilkS") (tstamp 6325c32f-c82a-4357-b022-f9c7e76f412e)
(effects (font (size 1 1) (thickness 0.15)))
)
(via (at 160.02 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 094d80bd-35d7-4ff5-8490-3b51422c597b))
(via (at 157.48 83.82) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 0a5843fe-9e27-4812-b54d-7cb5c78c7315))
(via (at 132.08 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 0c00d5f8-aa35-4d0c-bd84-8b759efa9914))
(via (at 165.1 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 19ba0009-a93f-4469-92ff-026fc2648759))
(via (at 129.54 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1dbfe119-2837-4ceb-9076-5a2712ad0b2e))
(via (at 134.62 83.82) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 208ec227-77c9-4feb-b025-6f61c0e27115))
(via (at 137.16 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 222ab4e6-06ac-4bf1-9f79-cb3f2e2af397))
(via (at 129.54 83.82) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 267bc64f-3ffe-4086-8efa-28b2e21d194d))
(via (at 129.54 86.36) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 3cceefda-4442-4b19-a320-dadeabbc5917))
(via (at 132.08 83.82) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 501d869d-406a-48be-bcfe-280a7f02740f))
(via (at 147.32 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 530a745a-a54b-4f0b-b6eb-6ee7e01a47d6))
(via (at 162.56 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 544a5d72-afef-4211-8691-46f2264ad83e))
(via (at 144.272 83.82) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 552decfa-3f5d-4ed1-a105-f5f2f42d5028))
(via (at 157.48 81.28) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 6683abe0-7a39-4b66-b11f-6dc5e6e5df25))
(via (at 142.24 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 6fa07aa4-4875-4554-b3ce-d3e1e774a411))
(via (at 144.78 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 75f837bd-6a55-4c30-8df9-8c50eacc2669))
(via (at 134.62 86.36) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7877bce4-edd4-41c6-b854-531fd1169bd1))
(via (at 134.62 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7932a23c-1fd2-40de-8906-e4e7c267738c))
(via (at 132.08 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7c5045ea-a819-4b33-b622-042fe69ee6cc))
(via (at 165.1 91.44) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 824c4775-1589-41f8-a43e-149ac4f7dff3))
(via (at 144.272 86.36) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 8fb0bdec-7158-4437-9873-55520c17ce44))
(via (at 154.94 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 9c3281bb-c293-4767-b5ad-7077b16ea6c1))
(via (at 157.48 86.36) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp acefb981-8e19-4968-95ce-47897ceece83))
(via (at 152.4 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp b23d6c83-ab52-4865-9650-51e51fde51df))
(via (at 129.54 81.28) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp b8556f58-3ae0-46ed-ab16-18e3069234e2))
(via (at 134.62 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp bc48aee1-5de5-4295-aab6-8ca4736c1c88))
(via (at 132.08 86.36) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp d5743587-144e-43b2-af1c-71d213db96ff))
(via (at 154.94 83.82) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp dffac277-499e-4c83-997c-1d9d39c3497d))
(via (at 139.7 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp e4ebfbbb-b69d-4927-897f-5731093999d1))
(via (at 149.86 78.74) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp ef0018a9-e016-49eb-a046-dfe2feb64238))
(via (at 152.4 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp fa1baeda-3a31-4aaf-894b-3e7f1978168f))
(via (at 144.272 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp fa7fe579-9b0d-4f49-a1ac-99f451b32675))
(via (at 129.54 91.44) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp ff172e39-e7d9-4768-b3ee-32c23b3cc4f4))
(segment (start 137.506 81.28) (end 137.506 91.094) (width 0.127) (layer "F.Cu") (net 2) (tstamp 2dc15ded-b740-4e64-8bd2-eebc5152a97e))
(segment (start 137.506 91.094) (end 137.16 91.44) (width 0.127) (layer "F.Cu") (net 2) (tstamp 675ecd44-fe6d-433e-98eb-95cbcd8aa620))
(segment (start 137.16 91.44) (end 137.16 91.425826) (width 0.2) (layer "F.Cu") (net 2) (tstamp cd67f98b-991e-43da-bcfe-7e581efcd2cf))
(segment (start 139.506 81.28) (end 139.506 91.246) (width 0.127) (layer "F.Cu") (net 3) (tstamp 4222f9e8-91cf-4702-b26c-23175359b82f))
(segment (start 139.506 91.246) (end 139.7 91.44) (width 0.127) (layer "F.Cu") (net 3) (tstamp 5176217a-a7ab-4453-8501-3eb3ac9a68ae))
(segment (start 139.7 91.44) (end 139.7 91.425826) (width 0.2) (layer "F.Cu") (net 3) (tstamp fb3482c9-9e98-442c-b52e-b64540e46a5e))
(segment (start 141.506 90.706) (end 142.24 91.44) (width 0.127) (layer "F.Cu") (net 4) (tstamp 896c9019-0992-4dcd-8e5c-634378ed069a))
(segment (start 141.506 81.28) (end 141.506 90.706) (width 0.127) (layer "F.Cu") (net 4) (tstamp d7544428-e04c-4eeb-be2f-2ceb62bf173a))
(segment (start 143.506 90.166) (end 144.78 91.44) (width 0.127) (layer "F.Cu") (net 5) (tstamp 0ed46860-000b-45c9-8360-b99f1deb503a))
(segment (start 143.506 81.28) (end 143.506 90.166) (width 0.127) (layer "F.Cu") (net 5) (tstamp bcf9a610-e865-4f96-9662-53a252d7b301))
(segment (start 144.78 90.608921) (end 144.78 91.44) (width 0.2) (layer "F.Cu") (net 5) (tstamp be2687bd-118d-4f46-9f2c-c97e4e32a154))
(segment (start 149.006 90.586) (end 149.86 91.44) (width 0.127) (layer "F.Cu") (net 6) (tstamp 1b3442a2-535a-463c-871d-cf276b7b7538))
(segment (start 149.07 81.28) (end 149.033489 81.316511) (width 0.2) (layer "F.Cu") (net 6) (tstamp 21c1a208-44ba-46c2-b517-a69128f8f8dd))
(segment (start 149.86 91.44) (end 149.53348 91.76652) (width 0.2) (layer "F.Cu") (net 6) (tstamp 6c682f90-1dd0-429b-af15-613df87085da))
(segment (start 149.006 81.28) (end 149.006 90.586) (width 0.127) (layer "F.Cu") (net 6) (tstamp eb2b255d-200f-421e-b91f-52abf1722890))
(segment (start 154.922271 78.1) (end 156.2 79.377729) (width 0.127) (layer "F.Cu") (net 7) (tstamp 6a3c688a-4ec5-45a4-ae42-39bc95855fc9))
(segment (start 134.506 81.28) (end 134.506 80.449978) (width 0.127) (layer "F.Cu") (net 7) (tstamp 717c223b-05fb-4943-a06f-755c6c64c939))
(segment (start 156.2 87.64) (end 152.4 91.44) (width 0.127) (layer "F.Cu") (net 7) (tstamp 9c52b622-9a1d-496e-90b3-d5bb6ee73a6d))
(segment (start 136.855978 78.1) (end 154.922271 78.1) (width 0.127) (layer "F.Cu") (net 7) (tstamp b73e54a9-bbe1-4025-aa63-c3a6f1d5ef1f))
(segment (start 156.2 79.377729) (end 156.2 87.64) (width 0.127) (layer "F.Cu") (net 7) (tstamp b755bf29-4527-4c9f-9965-51d1395490d5))
(segment (start 134.506 80.449978) (end 136.855978 78.1) (width 0.127) (layer "F.Cu") (net 7) (tstamp c7d88427-02cf-4328-89a2-63391255e74c))
(segment (start 152.146 91.44) (end 152.4 91.44) (width 0.2) (layer "F.Cu") (net 7) (tstamp fe5244e1-2763-402f-8b80-93eb0a65639f))
(via (at 147.066 85.09) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 63b8ac0a-b4ab-462a-8011-de82ed353afa))
(via (at 147.066 83.058) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 76b5165a-98e4-41fd-bd5a-ebe1042628f3))
(via (at 147.066 84.074) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 7c3ffd3f-d8f3-402f-acf7-d40e044ed181))
(segment (start 136.506 81.28) (end 136.506 90.552491) (width 0.127) (layer "F.Cu") (net 9) (tstamp 40c3f17e-2714-4d16-8f42-02db04e6b4dd))
(segment (start 135.89 91.168491) (end 135.89 93.64) (width 0.127) (layer "F.Cu") (net 9) (tstamp 729a8a81-1afa-41c9-9134-922c1a304526))
(segment (start 136.506 90.552491) (end 135.89 91.168491) (width 0.127) (layer "F.Cu") (net 9) (tstamp bf11ecac-1c80-4abb-8e09-9706bcba4e29))
(segment (start 138.506 81.28) (end 138.506 93.564) (width 0.127) (layer "F.Cu") (net 10) (tstamp 31b13a16-ef9b-47c4-b6d0-c1f80d130759))
(segment (start 138.506 93.564) (end 138.43 93.64) (width 0.127) (layer "F.Cu") (net 10) (tstamp 64760f4b-0b6a-42ad-a894-dfadacb8be91))
(segment (start 140.97 91.168491) (end 140.97 93.64) (width 0.127) (layer "F.Cu") (net 11) (tstamp 1aa2659a-46e0-4d76-a924-a188b4e3af2d))
(segment (start 140.506 90.704491) (end 140.97 91.168491) (width 0.127) (layer "F.Cu") (net 11) (tstamp 45eed397-aadb-46b5-b852-cf79b65e6bb2))
(segment (start 140.506 81.28) (end 140.506 90.704491) (width 0.127) (layer "F.Cu") (net 11) (tstamp 4726e34a-2a8e-4abf-a4c0-d533351b516d))
(segment (start 143.51 91.168491) (end 143.51 93.64) (width 0.127) (layer "F.Cu") (net 12) (tstamp 3788fb50-808e-499e-ad26-c82afde4a58d))
(segment (start 142.506 90.164491) (end 143.51 91.168491) (width 0.127) (layer "F.Cu") (net 12) (tstamp 894c1289-9456-4b9f-8d4e-59a7d16d9199))
(segment (start 142.506 81.28) (end 142.506 90.164491) (width 0.127) (layer "F.Cu") (net 12) (tstamp aaff29dd-02d0-442a-863c-d6244b0cb3ee))
(segment (start 143.43748 93.56748) (end 143.51 93.64) (width 0.2) (layer "F.Cu") (net 12) (tstamp df82f374-ebce-4abd-a82f-ccd102095981))
(segment (start 148.25 93.64) (end 148.59 93.64) (width 0.2) (layer "F.Cu") (net 13) (tstamp 20eee047-4ecd-4199-9a4e-a0dbf81aaccd))
(segment (start 146.006 81.28) (end 146.006 88.197468) (width 0.127) (layer "F.Cu") (net 13) (tstamp 7d6e1221-4120-49cf-91a1-7b545afc81e3))
(segment (start 148.7 90.891468) (end 148.7 93.53) (width 0.127) (layer "F.Cu") (net 13) (tstamp a11e6034-ec01-474f-a870-b575d74ea355))
(segment (start 146.006 88.197468) (end 148.7 90.891468) (width 0.127) (layer "F.Cu") (net 13) (tstamp d64caa32-5259-44bf-a6f6-967d187e3d95))
(segment (start 148.7 93.53) (end 148.59 93.64) (width 0.127) (layer "F.Cu") (net 13) (tstamp d92f270a-ca66-4d22-acf5-f962cf9fad58))
(segment (start 144.9 97.888491) (end 144.9 98.431509) (width 0.127) (layer "F.Cu") (net 14) (tstamp 22ad371c-08a6-4ddb-9293-996fe789e791))
(segment (start 133.006 87.351729) (end 130.8 89.557729) (width 0.127) (layer "F.Cu") (net 14) (tstamp 2a4c5f68-5acb-4be8-b0ca-e8ba82cdc23a))
(segment (start 152.220011 98.491498) (end 152.220011 97.220011) (width 0.127) (layer "F.Cu") (net 14) (tstamp 2c31d3e2-8ab8-4442-86d9-d1d80b0ac065))
(segment (start 151.203531 96.203531) (end 151.203531 93.713531) (width 0.127) (layer "F.Cu") (net 14) (tstamp 3a54920b-edb9-4ca0-8957-2346f86c37d4))
(segment (start 133.529989 95.429989) (end 133.529989 96.291498) (width 0.127) (layer "F.Cu") (net 14) (tstamp 3b4ca3a9-ec4a-4050-a485-fc1c927859c1))
(segment (start 151.327978 99.383531) (end 152.220011 98.491498) (width 0.127) (layer "F.Cu") (net 14) (tstamp 3d534e89-6e39-456c-ac65-320ba66ca05b))
(segment (start 130.8 92.7) (end 133.529989 95.429989) (width 0.127) (layer "F.Cu") (net 14) (tstamp 4f107406-cbd7-4714-bb5a-1e432650ad4e))
(segment (start 151.368864 93.64) (end 151.13 93.64) (width 0.2) (layer "F.Cu") (net 14) (tstamp 6b22dacd-95b6-451e-b7c6-d0f56dc4e80c))
(segment (start 151.203531 93.713531) (end 151.13 93.64) (width 0.127) (layer "F.Cu") (net 14) (tstamp 6fdf2823-8f0f-4008-8b54-54f62d3b5cbc))
(segment (start 144.9 98.431509) (end 145.852022 99.383531) (width 0.127) (layer "F.Cu") (net 14) (tstamp 873f297c-726f-4f6e-b534-2622f18f8b7d))
(segment (start 143.961498 96.949989) (end 144.9 97.888491) (width 0.127) (layer "F.Cu") (net 14) (tstamp ab7aacbe-3f97-4358-a596-b73b55273069))
(segment (start 152.220011 97.220011) (end 151.203531 96.203531) (width 0.127) (layer "F.Cu") (net 14) (tstamp e4b55947-d340-43b2-a420-45016a82192d))
(segment (start 134.18848 96.949989) (end 143.961498 96.949989) (width 0.127) (layer "F.Cu") (net 14) (tstamp e9ff3daf-1e80-4fa1-b33e-63fc7b643753))
(segment (start 133.529989 96.291498) (end 134.18848 96.949989) (width 0.127) (layer "F.Cu") (net 14) (tstamp ebfb23d8-be54-4c34-9797-16aebdeaac62))
(segment (start 133.006 81.28) (end 133.006 87.351729) (width 0.127) (layer "F.Cu") (net 14) (tstamp f45a1823-a355-413a-8930-15281781a2e4))
(segment (start 145.852022 99.383531) (end 151.327978 99.383531) (width 0.127) (layer "F.Cu") (net 14) (tstamp f798ea35-b148-49db-9504-7ee4ed53e5a9))
(segment (start 130.8 89.557729) (end 130.8 92.7) (width 0.127) (layer "F.Cu") (net 14) (tstamp f8eddcbf-62d0-4d84-a60a-01f0482f6f3e))
(segment (start 137.006 81.28) (end 137.006 88.894) (width 0.127) (layer "F.Cu") (net 15) (tstamp 8901ef54-801b-4c34-99c5-d5e3f370bd3d))
(segment (start 137.006 88.894) (end 137 88.9) (width 0.127) (layer "F.Cu") (net 15) (tstamp b59f7d7e-f7e4-4a65-b2d9-00e43c9204ec))
(via (at 137 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 15) (tstamp 438d63bc-ca20-4d9e-90b3-dfd3e23e9bd4))
(segment (start 137 88.9) (end 136.069989 89.830011) (width 0.127) (layer "B.Cu") (net 15) (tstamp 12fd65e7-ff0a-4726-a7df-9edc1948ef58))
(segment (start 136.980011 95.660011) (end 137.16 95.84) (width 0.127) (layer "B.Cu") (net 15) (tstamp 2e3c2e1b-1b09-4564-b4d0-334ad8f9534e))
(segment (start 136.069989 89.830011) (end 136.069989 92.27848) (width 0.127) (layer "B.Cu") (net 15) (tstamp 6941bc5e-4ef6-4bdb-a738-43a95808753e))
(segment (start 136.980011 93.188502) (end 136.980011 95.660011) (width 0.127) (layer "B.Cu") (net 15) (tstamp 753c6cef-e7a6-49f8-83da-3a362f992a76))
(segment (start 136.069989 92.27848) (end 136.980011 93.188502) (width 0.127) (layer "B.Cu") (net 15) (tstamp ecc7811b-b2f0-472d-9952-f066d900e903))
(segment (start 139.006 88.894) (end 139 88.9) (width 0.127) (layer "F.Cu") (net 16) (tstamp e63379ee-7db9-402f-941b-98c249aca60c))
(segment (start 139.006 81.28) (end 139.006 88.894) (width 0.127) (layer "F.Cu") (net 16) (tstamp feb3d208-6374-4409-aae5-87f3e3c6cfe4))
(via (at 139 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 16) (tstamp 8c4b3805-f6cc-44a7-9507-b05c4b95ba33))
(segment (start 139 88.9) (end 138.609989 89.290011) (width 0.127) (layer "B.Cu") (net 16) (tstamp 567a38cd-0ec2-4c0a-ae52-f11f02266028))
(segment (start 138.609989 89.290011) (end 138.609989 92.27848) (width 0.127) (layer "B.Cu") (net 16) (tstamp 82ab1380-70b6-440d-b99f-dbac1be61646))
(segment (start 139.626469 95.766469) (end 139.7 95.84) (width 0.127) (layer "B.Cu") (net 16) (tstamp 96a19387-2b11-450e-95b2-fff4b14f57ee))
(segment (start 138.609989 92.27848) (end 139.626469 93.29496) (width 0.127) (layer "B.Cu") (net 16) (tstamp aa9aff87-bff8-4f85-92ee-5068a9c85be7))
(segment (start 139.626469 93.29496) (end 139.626469 95.766469) (width 0.127) (layer "B.Cu") (net 16) (tstamp b896ccd3-a880-4dfe-a75d-ec43e3adedcc))
(segment (start 141.006 81.28) (end 141.006 88.894) (width 0.127) (layer "F.Cu") (net 17) (tstamp 8f5a3fc8-c460-46fc-9a26-fd1e6a8c9c4e))
(segment (start 141.006 88.894) (end 141 88.9) (width 0.127) (layer "F.Cu") (net 17) (tstamp bbf3e9ac-27e3-4da8-bf3c-019498858e51))
(via (at 141 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 17) (tstamp 3deb67b9-4507-42cf-8713-76c79c00a5c3))
(segment (start 141.043531 92.143531) (end 142.09648 93.19648) (width 0.127) (layer "B.Cu") (net 17) (tstamp 1c8f3bf1-dd8e-4cdf-bdbc-a6644dacfcf7))
(segment (start 142.09648 93.19648) (end 142.09648 95.69648) (width 0.127) (layer "B.Cu") (net 17) (tstamp 746b1ca4-d655-41ce-b99e-dd33d925c234))
(segment (start 142.09648 95.69648) (end 142.24 95.84) (width 0.127) (layer "B.Cu") (net 17) (tstamp d2ddf847-7f5f-497d-9fc9-902e41664f2a))
(segment (start 141 88.9) (end 141.043531 88.943531) (width 0.127) (layer "B.Cu") (net 17) (tstamp ea607c86-a959-489c-828b-241c8dc9c664))
(segment (start 141.043531 88.943531) (end 141.043531 92.143531) (width 0.127) (layer "B.Cu") (net 17) (tstamp f5bf9b83-4d4a-4012-8186-e6d768779ab0))
(segment (start 143.006 81.28) (end 143.006 88.894) (width 0.127) (layer "F.Cu") (net 18) (tstamp 2f6307e6-0b93-4e60-b978-afd30750bc9e))
(segment (start 143.006 88.894) (end 143 88.9) (width 0.127) (layer "F.Cu") (net 18) (tstamp ff6c7ced-bd01-44a1-bdae-5a0da6fa85e3))
(via (at 143 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 18) (tstamp a5fa8269-8a8e-4870-995a-ee49c6668c0e))
(segment (start 143.689989 89.589989) (end 143.689989 92.139989) (width 0.127) (layer "B.Cu") (net 18) (tstamp 1b835869-d1ec-427d-a86d-39d73b30da6b))
(segment (start 144.78 93.23) (end 144.78 95.84) (width 0.127) (layer "B.Cu") (net 18) (tstamp 43cf5479-cda1-4476-a21a-e7e0fc048dd2))
(segment (start 143 88.9) (end 143.689989 89.589989) (width 0.127) (layer "B.Cu") (net 18) (tstamp 71a5ca3d-0f18-497c-9e91-de8357f689f3))
(segment (start 143.689989 92.139989) (end 144.78 93.23) (width 0.127) (layer "B.Cu") (net 18) (tstamp a4f6d456-7e49-4cec-b028-58eeb048ac5d))
(segment (start 147.081136 95.84) (end 147.32 95.84) (width 0.2) (layer "F.Cu") (net 19) (tstamp 05bd8f50-39fa-4a50-a4f7-7fb23c6ddf61))
(segment (start 145.006 81.28) (end 145.006 88.894) (width 0.127) (layer "F.Cu") (net 19) (tstamp 21a1d705-c6ab-4f0e-b1e1-2960f5404a80))
(segment (start 145.006 88.894) (end 145 88.9) (width 0.127) (layer "F.Cu") (net 19) (tstamp 373b1069-596c-4e32-82f0-361fce667a8a))
(via (at 145 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 19) (tstamp ebb38a7b-89bf-40a3-877a-89afee8e1088))
(segment (start 145.870011 89.770011) (end 145.870011 91.918502) (width 0.127) (layer "B.Cu") (net 19) (tstamp 1faa3d32-fc36-4066-80b4-116eaefd063f))
(segment (start 145.870011 91.918502) (end 147.32 93.368491) (width 0.127) (layer "B.Cu") (net 19) (tstamp 34edcca2-092c-4ff7-b648-18794a1c747d))
(segment (start 145 88.9) (end 145.870011 89.770011) (width 0.127) (layer "B.Cu") (net 19) (tstamp 635beec0-cb14-400a-9299-937bb7ebbe48))
(segment (start 147.32 93.368491) (end 147.32 95.84) (width 0.127) (layer "B.Cu") (net 19) (tstamp d6335225-f020-42ed-af20-3194d3f91243))
(segment (start 148.006 81.28) (end 148.006 88.894) (width 0.127) (layer "F.Cu") (net 20) (tstamp 1a92bfbe-b6c7-42a9-8841-b5d8232ab362))
(segment (start 148.006 88.894) (end 148 88.9) (width 0.127) (layer "F.Cu") (net 20) (tstamp 3f9d4e3c-c161-4817-bcae-521558b1f6f2))
(via (at 148 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 20) (tstamp 5fc0f678-14d2-41a1-b14b-8731cc3ecf36))
(segment (start 148.769989 92.269989) (end 149.86 93.36) (width 0.127) (layer "B.Cu") (net 20) (tstamp 17d5eb28-c6d2-4779-90e0-6006b7a2fd10))
(segment (start 148 88.9) (end 148.769989 89.669989) (width 0.127) (layer "B.Cu") (net 20) (tstamp 1da03b7f-6c81-4f9d-b21b-534ea3c00cb3))
(segment (start 149.86 93.36) (end 149.86 95.84) (width 0.127) (layer "B.Cu") (net 20) (tstamp c275e5ad-540e-4d38-a0ac-3749597d35f6))
(segment (start 148.769989 89.669989) (end 148.769989 92.269989) (width 0.127) (layer "B.Cu") (net 20) (tstamp cf3ad4a5-9ea5-4766-8b70-f8133dcbd30a))
(segment (start 136.006 88.894) (end 136 88.9) (width 0.127) (layer "F.Cu") (net 21) (tstamp 3d3a2880-536f-4034-95dc-a46f6c70dc0e))
(segment (start 136.006 81.28) (end 136.006 88.894) (width 0.127) (layer "F.Cu") (net 21) (tstamp 7dfbfe5b-d9e9-405d-b8ee-ca0b4ac4f743))
(via (at 136 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 21) (tstamp ca8699c7-3914-4af5-8e64-9dee5773c885))
(segment (start 135.710011 92.27848) (end 134.799989 93.188502) (width 0.127) (layer "B.Cu") (net 21) (tstamp 09b0a8cb-9251-4e9b-a5d3-f2c1f7ab1724))
(segment (start 136 88.9) (end 135.710011 89.189989) (width 0.127) (layer "B.Cu") (net 21) (tstamp 0a1193c9-ae90-42ed-a224-831cdc3c50e8))
(segment (start 135.89 95.39) (end 135.89 98.04) (width 0.127) (layer "B.Cu") (net 21) (tstamp 299068e9-6c6d-4da3-b072-27b06e598d3e))
(segment (start 135.710011 89.189989) (end 135.710011 92.27848) (width 0.127) (layer "B.Cu") (net 21) (tstamp 7ead4b69-b929-48bd-90a0-4225dfeb6730))
(segment (start 134.799989 94.299989) (end 135.89 95.39) (width 0.127) (layer "B.Cu") (net 21) (tstamp e1a4ab12-4ade-41ff-a8a0-441689cd7581))
(segment (start 134.799989 93.188502) (end 134.799989 94.299989) (width 0.127) (layer "B.Cu") (net 21) (tstamp e55e7b91-72e2-4516-8a80-c28051ef6a5d))
(segment (start 138.006 88.894) (end 138 88.9) (width 0.127) (layer "F.Cu") (net 22) (tstamp 248f317f-bf5d-414f-87dc-46563a9a1219))
(segment (start 138.006 88.094) (end 138.006 88.894) (width 0.127) (layer "F.Cu") (net 22) (tstamp 574c4d6f-efda-47fd-bb15-d1fa707249c6))
(segment (start 138.006 81.28) (end 138.006 88.094) (width 0.127) (layer "F.Cu") (net 22) (tstamp a4a15de8-0f03-4141-9268-f2494fe59f1c))
(via (at 138 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 22) (tstamp 534284c6-73eb-46a0-a185-294fe6dd0753))
(segment (start 138.250011 89.150011) (end 138.250011 92.249989) (width 0.127) (layer "B.Cu") (net 22) (tstamp 0ec258b5-6cf0-4478-a552-9afa3d96b365))
(segment (start 137.339989 94.189989) (end 138.43 95.28) (width 0.127) (layer "B.Cu") (net 22) (tstamp 90aba858-7f08-4bb3-8f4f-6d37910876d3))
(segment (start 138.250011 92.249989) (end 137.339989 93.160011) (width 0.127) (layer "B.Cu") (net 22) (tstamp 990ce8ee-d85f-409c-bf59-068a721aa1d8))
(segment (start 138 88.9) (end 138.250011 89.150011) (width 0.127) (layer "B.Cu") (net 22) (tstamp d05e9dfe-67f4-472b-bd5b-f916f7de92f3))
(segment (start 137.339989 93.160011) (end 137.339989 94.189989) (width 0.127) (layer "B.Cu") (net 22) (tstamp f72112ab-0a4c-4eff-b9fb-9bfcd0f994c9))
(segment (start 138.43 95.28) (end 138.43 98.04) (width 0.127) (layer "B.Cu") (net 22) (tstamp f9be8a71-f5ab-48e9-b3fb-79bfd6375211))
(segment (start 140.006 81.28) (end 140.006 88.894) (width 0.127) (layer "F.Cu") (net 23) (tstamp 15b87a0e-a5af-42be-8eef-b10f4e99834a))
(segment (start 140.006 88.894) (end 140 88.9) (width 0.127) (layer "F.Cu") (net 23) (tstamp 4b18c943-9d99-4ea1-8018-d19146f1cb59))
(via (at 140 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 23) (tstamp b6e997aa-db6d-43eb-864b-ec9fc34eee7d))
(segment (start 140.97 95.42) (end 140.97 98.04) (width 0.127) (layer "B.Cu") (net 23) (tstamp 011020f5-f65d-45f6-a98b-35451af82ae2))
(segment (start 140 88.9) (end 140.790011 89.690011) (width 0.127) (layer "B.Cu") (net 23) (tstamp 13351983-1aa0-4a10-bccb-16be6dd9c10c))
(segment (start 140.790011 92.159989) (end 139.879989 93.070011) (width 0.127) (layer "B.Cu") (net 23) (tstamp 233a234c-e323-4984-a4d8-6efadf9bfeea))
(segment (start 140.790011 89.690011) (end 140.790011 92.159989) (width 0.127) (layer "B.Cu") (net 23) (tstamp 61ecc94e-5457-44d1-bcbd-56611996a602))
(segment (start 139.879989 93.070011) (end 139.879989 94.329989) (width 0.127) (layer "B.Cu") (net 23) (tstamp 85a7071a-bd1d-42a0-9704-db0224585b4c))
(segment (start 139.879989 94.329989) (end 140.97 95.42) (width 0.127) (layer "B.Cu") (net 23) (tstamp 988ec461-f4fd-499b-aef1-7da0d4b5bd81))
(segment (start 142.006 88.894) (end 142 88.9) (width 0.127) (layer "F.Cu") (net 24) (tstamp 6b0e6466-ec20-4ece-8b9b-7ccc4b05b65b))
(segment (start 142.006 81.28) (end 142.006 88.894) (width 0.127) (layer "F.Cu") (net 24) (tstamp 9be8655d-dda2-46e2-98d2-8fe1862146b4))
(via (at 142 88.9) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 24) (tstamp dac5a086-574a-469a-957f-555475aa5b1d))
(segment (start 143.51 95.568491) (end 143.51 98.04) (width 0.127) (layer "B.Cu") (net 24) (tstamp 43dc7e13-43d0-4eca-b93b-ef650134dc32))
(segment (start 142.35 93.258491) (end 142.35 94.408491) (width 0.127) (layer "B.Cu") (net 24) (tstamp 47abc0ed-f5ce-4026-84b4-d04f62f86aff))
(segment (start 143.330011 90.230011) (end 143.330011 92.27848) (width 0.127) (layer "B.Cu") (net 24) (tstamp 6cd64244-bd0c-4448-a9a4-eef2670429cf))
(segment (start 143.330011 92.27848) (end 142.35 93.258491) (width 0.127) (layer "B.Cu") (net 24) (tstamp 8a2feadb-cb1e-46c5-9315-e4e147ece91a))
(segment (start 142 88.9) (end 143.330011 90.230011) (width 0.127) (layer "B.Cu") (net 24) (tstamp 961e57d9-ee5d-48dd-b5b3-2b3af9dc9bf1))
(segment (start 142.35 94.408491) (end 143.51 95.568491) (width 0.127) (layer "B.Cu") (net 24) (tstamp d560045e-cb5d-48ae-a4ec-1a49c8c86750))
(segment (start 150.950011 95.388502) (end 150.950011 96.649989) (width 0.127) (layer "F.Cu") (net 25) (tstamp 05a2a2af-9444-4521-ae17-5ab6e6b0a56d))
(segment (start 149.041498 99.130011) (end 147.140011 99.130011) (width 0.127) (layer "F.Cu") (net 25) (tstamp 0b5ff223-fcde-49b7-a6ff-30073d2e13d1))
(segment (start 150.950011 92.249989) (end 149.749989 93.450011) (width 0.127) (layer "F.Cu") (net 25) (tstamp 16fba014-5b25-4019-a2ca-8761c367c901))
(segment (start 150.950011 90.988502) (end 150.950011 92.249989) (width 0.127) (layer "F.Cu") (net 25) (tstamp 1cc0527e-6489-460b-b5bf-9add4cfc6777))
(segment (start 149.506 89.544491) (end 150.950011 90.988502) (width 0.127) (layer "F.Cu") (net 25) (tstamp 3200aea3-8709-4257-9cbb-942fbc2a6c13))
(segment (start 147.140011 99.130011) (end 146.05 98.04) (width 0.127) (layer "F.Cu") (net 25) (tstamp 3990dacd-6c6a-4dfa-b9b4-356f14982644))
(segment (start 150.950011 96.649989) (end 149.7 97.9) (width 0.127) (layer "F.Cu") (net 25) (tstamp 8b2cf3be-f5bf-4cfd-b77f-df8391be191f))
(segment (start 149.506 81.28) (end 149.506 89.544491) (width 0.127) (layer "F.Cu") (net 25) (tstamp a132b1f2-dff6-4161-a4b7-274c699f5b4c))
(segment (start 149.7 97.9) (end 149.7 98.471509) (width 0.127) (layer "F.Cu") (net 25) (tstamp d9c5c9ab-d1df-43a5-83ba-7e0b550e7b58))
(segment (start 149.749989 94.18848) (end 150.950011 95.388502) (width 0.127) (layer "F.Cu") (net 25) (tstamp ed77f09c-4996-4e87-be00-d67ec05749d3))
(segment (start 149.749989 93.450011) (end 149.749989 94.18848) (width 0.127) (layer "F.Cu") (net 25) (tstamp f49b0786-f506-4f28-b5ad-e2ccc6fada9b))
(segment (start 149.7 98.471509) (end 149.041498 99.130011) (width 0.127) (layer "F.Cu") (net 25) (tstamp f80b1fa2-21a1-4f5e-bdba-65ac856aa5ef))
(segment (start 146.229989 91.891498) (end 147.499989 93.161498) (width 0.127) (layer "F.Cu") (net 26) (tstamp 4c28c916-babe-4fbd-94c9-ce31f49d958e))
(segment (start 147.89 98.04) (end 148.59 98.04) (width 0.127) (layer "F.Cu") (net 26) (tstamp 51b766c7-cb01-42f0-813a-44912d27a3bd))
(segment (start 146.229989 88.920011) (end 146.229989 91.891498) (width 0.127) (layer "F.Cu") (net 26) (tstamp 6ad8fc1b-e4b9-4034-8c91-b1b0c45a1919))
(segment (start 148.59 95.568491) (end 148.59 98.04) (width 0.127) (layer "F.Cu") (net 26) (tstamp 6c0b4009-46a3-48f8-9dea-dfdc63f849cc))
(segment (start 145.506 88.196022) (end 146.229989 88.920011) (width 0.127) (layer "F.Cu") (net 26) (tstamp 86b132b8-7582-464c-8da6-7081e06a1068))
(segment (start 145.506 81.28) (end 145.506 88.196022) (width 0.127) (layer "F.Cu") (net 26) (tstamp a24d926b-afbd-4b0d-8679-687f107f7e6b))
(segment (start 147.499989 94.47848) (end 148.59 95.568491) (width 0.127) (layer "F.Cu") (net 26) (tstamp b1ba89c0-4eb2-4748-8c81-3595d0116bec))
(segment (start 147.499989 93.161498) (end 147.499989 94.47848) (width 0.127) (layer "F.Cu") (net 26) (tstamp b8dc2dd7-8331-4754-a497-a33ffce9bbe6))
(zone (net 8) (net_name "+3V3") (layer "F.Cu") (tstamp 3f345fa7-00e4-4610-9020-46f264c4e7e9) (hatch edge 0.508)
(priority 1)
(connect_pads (clearance 0.127))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.254) (thermal_bridge_width 0.254))
(polygon
(pts
(xy 147.828 85.852)
(xy 146.304 85.852)
(xy 146.304 80.264)
(xy 147.828 80.264)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 147.575121 81.173002)
(xy 147.621614 81.226658)
(xy 147.633 81.279)
(xy 147.633 82.315884)
(xy 147.637475 82.331123)
(xy 147.638865 82.332328)
(xy 147.646548 82.333999)
(xy 147.674827 82.333999)
(xy 147.676655 82.333819)
(xy 147.677604 82.333999)
(xy 147.681016 82.333999)
(xy 147.681016 82.334646)
(xy 147.746408 82.347051)
(xy 147.797934 82.395893)
(xy 147.815 82.459213)
(xy 147.815 85.726)
(xy 147.794998 85.794121)
(xy 147.741342 85.840614)
(xy 147.689 85.852)
(xy 146.43 85.852)
(xy 146.361879 85.831998)
(xy 146.315386 85.778342)
(xy 146.304 85.726)
(xy 146.304 82.445025)
(xy 146.324002 82.376904)
(xy 146.368422 82.338414)
(xy 146.377329 82.328135)
(xy 146.379 82.320452)
(xy 146.379 82.315884)
(xy 146.633 82.315884)
(xy 146.637475 82.331123)
(xy 146.638865 82.332328)
(xy 146.646548 82.333999)
(xy 146.674828 82.333999)
(xy 146.687085 82.332792)
(xy 146.731418 82.323974)
(xy 146.780579 82.323974)
(xy 146.824915 82.332793)
(xy 146.83717 82.334)
(xy 146.860885 82.334)
(xy 146.876124 82.329525)
(xy 146.877329 82.328135)
(xy 146.879 82.320452)
(xy 146.879 82.315884)
(xy 147.133 82.315884)
(xy 147.137475 82.331123)
(xy 147.138865 82.332328)
(xy 147.146548 82.333999)
(xy 147.174828 82.333999)
(xy 147.187085 82.332792)
(xy 147.231418 82.323974)
(xy 147.280579 82.323974)
(xy 147.324915 82.332793)
(xy 147.33717 82.334)
(xy 147.360885 82.334)
(xy 147.376124 82.329525)
(xy 147.377329 82.328135)
(xy 147.379 82.320452)
(xy 147.379 81.425115)
(xy 147.374525 81.409876)
(xy 147.373135 81.408671)
(xy 147.365452 81.407)
(xy 147.151115 81.407)
(xy 147.135876 81.411475)
(xy 147.134671 81.412865)
(xy 147.133 81.420548)
(xy 147.133 82.315884)
(xy 146.879 82.315884)
(xy 146.879 81.425115)
(xy 146.874525 81.409876)
(xy 146.873135 81.408671)
(xy 146.865452 81.407)
(xy 146.651115 81.407)
(xy 146.635876 81.411475)
(xy 146.634671 81.412865)
(xy 146.633 81.420548)
(xy 146.633 82.315884)
(xy 146.379 82.315884)
(xy 146.379 81.279)
(xy 146.399002 81.210879)
(xy 146.452658 81.164386)
(xy 146.505 81.153)
(xy 147.507 81.153)
)
)
)
(zone (net 1) (net_name "GND") (layers F&B.Cu) (tstamp 917471a4-9b48-4daa-ac28-a70096e8cbd4) (hatch edge 0.508)
(connect_pads (clearance 0.2))
(min_thickness 0.2) (filled_areas_thickness no)
(fill yes (thermal_gap 0.2) (thermal_bridge_width 0.2))
(polygon
(pts
(xy 159.766 87.383306)
(xy 160.782 88.392)
(xy 167.894 88.392)
(xy 167.9 99.7)
(xy 126.746 99.7)
(xy 126.746 76.454)
(xy 159.766 76.454)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 159.525191 76.672907)
(xy 159.561155 76.722407)
(xy 159.566 76.753)
(xy 159.566 87.335487)
(xy 159.565567 87.343118)
(xy 159.562175 87.352777)
(xy 159.563408 87.363857)
(xy 159.563408 87.363859)
(xy 159.565392 87.381682)
(xy 159.566 87.392633)
(xy 159.566 87.398546)
(xy 159.567237 87.403967)
(xy 159.567241 87.404005)
(xy 159.569098 87.414991)
(xy 159.571033 87.43238)
(xy 159.571035 87.432386)
(xy 159.572268 87.443464)
(xy 159.577803 87.452306)
(xy 159.578177 87.453607)
(xy 159.578829 87.45479)
(xy 159.58115 87.464962)
(xy 159.588097 87.47368)
(xy 159.599004 87.487368)
(xy 159.605485 87.496521)
(xy 159.608511 87.501354)
(xy 159.612637 87.50548)
(xy 159.620055 87.513785)
(xy 159.638015 87.536323)
(xy 159.647357 87.540829)
(xy 159.653287 87.54613)
(xy 160.611935 88.504778)
(xy 160.617023 88.510479)
(xy 160.621453 88.519705)
(xy 160.630159 88.526667)
(xy 160.644165 88.537868)
(xy 160.652338 88.545181)
(xy 160.656521 88.549364)
(xy 160.66122 88.552318)
(xy 160.661246 88.552338)
(xy 160.670345 88.558805)
(xy 160.684008 88.569731)
(xy 160.692715 88.576694)
(xy 160.702882 88.579031)
(xy 160.704066 88.579687)
(xy 160.705366 88.580063)
(xy 160.714197 88.585614)
(xy 160.742659 88.588832)
(xy 160.753721 88.590723)
(xy 160.753817 88.590745)
(xy 160.75382 88.590745)
(xy 160.759277 88.592)
(xy 160.765104 88.592)
(xy 160.776226 88.592627)
(xy 160.793788 88.594613)
(xy 160.79379 88.594613)
(xy 160.804866 88.595865)
(xy 160.81466 88.592445)
(xy 160.822614 88.592)
(xy 167.595 88.592)
(xy 167.653191 88.610907)
(xy 167.689155 88.660407)
(xy 167.694 88.691)
(xy 167.694 94.607848)
(xy 167.675093 94.666039)
(xy 167.625593 94.702003)
(xy 167.564407 94.702003)
(xy 167.514907 94.666039)
(xy 167.496247 94.61484)
(xy 167.485353 94.460974)
(xy 167.485352 94.460968)
(xy 167.485105 94.457478)
(xy 167.425494 94.180592)
(xy 167.327463 93.914869)
(xy 167.210362 93.697842)
(xy 167.194631 93.668687)
(xy 167.19463 93.668685)
(xy 167.19297 93.665609)
(xy 167.182244 93.651086)
(xy 167.061411 93.487493)
(xy 167.024697 93.437786)
(xy 166.903224 93.31439)
(xy 166.828459 93.238441)
(xy 166.828452 93.238435)
(xy 166.826002 93.235946)
(xy 166.600851 93.064115)
(xy 166.597794 93.062403)
(xy 166.597791 93.062401)
(xy 166.356793 92.927436)
(xy 166.356792 92.927435)
(xy 166.353734 92.925723)
(xy 166.089583 92.823531)
(xy 166.086177 92.822741)
(xy 166.086172 92.82274)
(xy 165.914632 92.782979)
(xy 165.813668 92.759577)
(xy 165.593326 92.740493)
(xy 165.534983 92.73544)
(xy 165.534982 92.73544)
(xy 165.531495 92.735138)
(xy 165.410192 92.741814)
(xy 165.252192 92.750509)
(xy 165.252186 92.75051)
(xy 165.248693 92.750702)
(xy 164.970906 92.805957)
(xy 164.703675 92.899802)
(xy 164.65621 92.924458)
(xy 164.455439 93.02875)
(xy 164.455433 93.028754)
(xy 164.452333 93.030364)
(xy 164.449485 93.032399)
(xy 164.449482 93.032401)
(xy 164.224745 93.193)
(xy 164.224742 93.193003)
(xy 164.221895 93.195037)
(xy 164.219362 93.197453)
(xy 164.21936 93.197455)
(xy 164.019497 93.388115)
(xy 164.019491 93.388121)
(xy 164.016959 93.390537)
(xy 163.841613 93.612962)
(xy 163.699357 93.857874)
(xy 163.681407 93.902191)
(xy 163.603922 94.093492)
(xy 163.593028 94.120387)
(xy 163.592184 94.123786)
(xy 163.526522 94.388123)
(xy 163.524748 94.395263)
(xy 163.524391 94.398744)
(xy 163.524391 94.398746)
(xy 163.496721 94.668813)
(xy 163.49588 94.677018)
(xy 163.496017 94.680509)
(xy 163.496017 94.680514)
(xy 163.498314 94.738961)
(xy 163.498355 94.74)
(xy 163.507 94.960029)
(xy 163.507629 94.963472)
(xy 163.507629 94.963474)
(xy 163.51007 94.976839)
(xy 163.501925 95.03748)
(xy 163.459692 95.081751)
(xy 163.399502 95.092744)
(xy 163.34548 95.067323)
(xy 163.313196 95.03748)
(xy 163.232812 94.963174)
(xy 163.227828 94.960029)
(xy 163.065594 94.857667)
(xy 163.061757 94.855246)
(xy 162.873898 94.780298)
(xy 162.675526 94.740839)
(xy 162.57593 94.739535)
(xy 162.477826 94.738251)
(xy 162.477821 94.738251)
(xy 162.473286 94.738192)
(xy 162.468813 94.738961)
(xy 162.468808 94.738961)
(xy 162.370245 94.755898)
(xy 162.273949 94.772444)
(xy 162.084193 94.842449)
(xy 161.910371 94.945862)
(xy 161.906956 94.948857)
(xy 161.906953 94.948859)
(xy 161.843313 95.00467)
(xy 161.758305 95.07922)
(xy 161.755497 95.082782)
(xy 161.635951 95.234427)
(xy 161.633089 95.238057)
(xy 161.538914 95.417053)
(xy 161.537569 95.421384)
(xy 161.537568 95.421387)
(xy 161.537251 95.42241)
(xy 161.478937 95.610213)
(xy 161.455164 95.811069)
(xy 161.457251 95.842913)
(xy 161.467133 95.99368)
(xy 161.468392 96.012894)
(xy 161.469508 96.017287)
(xy 161.469508 96.017289)
(xy 161.507177 96.16561)
(xy 161.518178 96.208928)
(xy 161.602856 96.392607)
(xy 161.719588 96.55778)
(xy 161.864466 96.698913)
(xy 162.032637 96.811282)
(xy 162.21847 96.891122)
(xy 162.41574 96.93576)
(xy 162.617842 96.9437)
(xy 162.631464 96.941725)
(xy 162.813519 96.915329)
(xy 162.813522 96.915328)
(xy 162.818007 96.914678)
(xy 162.913769 96.882171)
(xy 163.005234 96.851123)
(xy 163.005237 96.851121)
(xy 163.009531 96.849664)
(xy 163.147476 96.772412)
(xy 163.182039 96.753056)
(xy 163.182041 96.753055)
(xy 163.186001 96.750837)
(xy 163.341505 96.621505)
(xy 163.470837 96.466001)
(xy 163.569664 96.289531)
(xy 163.571194 96.285026)
(xy 163.61173 96.16561)
(xy 163.634678 96.098007)
(xy 163.643897 96.034427)
(xy 163.66313 95.901774)
(xy 163.690192 95.846899)
(xy 163.74434 95.81841)
(xy 163.804892 95.82719)
(xy 163.842547 95.859692)
(xy 163.935152 95.99368)
(xy 163.937518 95.99624)
(xy 163.937524 95.996247)
(xy 164.035458 96.102191)
(xy 164.127408 96.201662)
(xy 164.130118 96.203868)
(xy 164.130122 96.203872)
(xy 164.185785 96.249188)
(xy 164.347052 96.380479)
(xy 164.350044 96.382281)
(xy 164.350045 96.382281)
(xy 164.38382 96.402615)
(xy 164.5897 96.526565)
(xy 164.654674 96.554078)
(xy 164.836622 96.631123)
(xy 164.85051 96.637004)
(xy 165.12428 96.709593)
(xy 165.127753 96.710004)
(xy 165.127758 96.710005)
(xy 165.344308 96.735635)
(xy 165.405546 96.742883)
(xy 165.409035 96.742801)
(xy 165.40904 96.742801)
(xy 165.526871 96.740024)
(xy 165.688697 96.73621)
(xy 165.968083 96.689708)
(xy 165.971415 96.688654)
(xy 165.97142 96.688653)
(xy 166.093673 96.649989)
(xy 166.23813 96.604303)
(xy 166.241288 96.602787)
(xy 166.241292 96.602785)
(xy 166.490288 96.483219)
(xy 166.490289 96.483218)
(xy 166.493449 96.481701)
(xy 166.728945 96.324347)
(xy 166.76562 96.291498)
(xy 166.937316 96.137716)
(xy 166.937322 96.137709)
(xy 166.939922 96.135381)
(xy 166.975111 96.093519)
(xy 167.119911 95.921257)
(xy 167.119912 95.921256)
(xy 167.122167 95.918573)
(xy 167.272046 95.67825)
(xy 167.386568 95.419206)
(xy 167.388308 95.413039)
(xy 167.436553 95.241972)
(xy 167.463448 95.146611)
(xy 167.496881 94.8977)
(xy 167.523367 94.842544)
(xy 167.577214 94.81349)
(xy 167.637854 94.821635)
(xy 167.682126 94.863868)
(xy 167.694 94.910879)
(xy 167.694 99.401)
(xy 167.675093 99.459191)
(xy 167.625593 99.495155)
(xy 167.595 99.5)
(xy 151.823869 99.5)
(xy 151.765678 99.481093)
(xy 151.729714 99.431593)
(xy 151.729714 99.370407)
(xy 151.753865 99.330996)
(xy 152.19634 98.888521)
(xy 152.968729 98.888521)
(xy 152.969496 98.893368)
(xy 152.969511 98.893388)
(xy 152.971532 98.895357)
(xy 152.978554 98.901044)
(xy 153.139099 99.008317)