-
Notifications
You must be signed in to change notification settings - Fork 3
/
usata.kicad_pcb
1832 lines (1822 loc) · 78.2 KB
/
usata.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A5")
(title_block
(title "USata Console Adapter")
(date "2022-01-10")
(rev "0")
(company "Ash Logan")
)
(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.0508)
(grid_origin 52 56)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 "fab/v1/")
)
)
(net 0 "")
(net 1 "unconnected-(J1-Pin_8-Pad8)")
(net 2 "unconnected-(J1-Pin_9-Pad9)")
(net 3 "unconnected-(J1-Pin_11-Pad11)")
(net 4 "unconnected-(J1-Pin_10-Pad10)")
(net 5 "unconnected-(J1-Pin_12-Pad12)")
(net 6 "GND")
(net 7 "unconnected-(J1-Pin_18-Pad18)")
(net 8 "/3.3v unused")
(net 9 "unconnected-(J1-Pin_14-Pad14)")
(net 10 "+5V")
(net 11 "unconnected-(J1-Pin_22-Pad22)")
(net 12 "unconnected-(J1-Pin_25-Pad25)")
(net 13 "+12V")
(net 14 "/A+")
(net 15 "/A-")
(net 16 "/B-")
(net 17 "/B+")
(net 18 "unconnected-(J2-SHIELD-Pad23)")
(net 19 "unconnected-(J2-SHIELD-Pad24)")
(net 20 "unconnected-(J2-8-PadP1)")
(net 21 "unconnected-(J2-9-PadP2)")
(net 22 "unconnected-(J2-10-PadP3)")
(footprint "2022-08-04_04-39-13:2023246-2" (layer "F.Cu")
(tstamp 755c926e-ce51-456b-a80e-69f4bfceeed8)
(at 45.6246 52.245794 -90)
(property "Sheetfile" "usata.kicad_sch")
(property "Sheetname" "")
(path "/125e1ce3-ea7a-4f9c-a339-e37620308876")
(attr through_hole)
(fp_text reference "J2" (at 10.75 -0.1 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c423182-cd2a-4a12-bf14-cb8d68c37775)
)
(fp_text value "2023246-2" (at 14.5 3.15 -90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfe52e7a-6045-44e2-8584-bc63bb210176)
)
(fp_text user "Copyright 2021 Accelerated Designs. All rights reserved." (at 0 0 -90) (layer "Cmts.User")
(effects (font (size 0.127 0.127) (thickness 0.002)))
(tstamp b6fda2b1-f5c2-46fe-a7c2-83d74e1dd8aa)
)
(fp_text user "*" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b36baa2-f0c9-4c84-ae75-02802121b938)
)
(fp_line (start -5.572798 -1.8) (end -5.572798 5.3416)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f41939b7-27b8-412a-af8d-f4c6407e00b7))
(fp_line (start -5.572798 5.3416) (end 37.221198 5.3416)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd85d847-b81c-402d-9e6d-8f5efd290ea4))
(fp_line (start 37.221198 -9.422399) (end 11.4 -9.422399)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86df87a4-8060-4bcf-92dc-01aad74e86d3))
(fp_line (start 37.221198 5.3416) (end 37.221198 -9.422399)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4593bfc-4b2a-4d96-9aac-57c60004f71e))
(fp_line (start -15.732798 -9.041399) (end -15.478798 -9.041399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 36bc3fdc-46a4-48d8-8a62-a5984027c147))
(fp_line (start -15.732798 4.9606) (end -15.478798 4.9606)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 5905bf66-51e7-423c-85c3-932a22dc141b))
(fp_line (start -15.605798 -9.295399) (end -15.732798 -9.041399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 87919752-d734-4132-bd27-0c888c9805c7))
(fp_line (start -15.605798 -9.295399) (end -15.605798 5.2146)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 630b9655-480c-4152-8b19-40fa9b00ff91))
(fp_line (start -15.605798 -9.295399) (end -15.478798 -9.041399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp c655869c-d9f9-4516-9c17-ee389c5d96fe))
(fp_line (start -15.605798 5.2146) (end -15.732798 4.9606)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp da85163f-523f-4fc0-8bbe-f7fb4f33fe2c))
(fp_line (start -15.605798 5.2146) (end -15.478798 4.9606)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp d3be2a60-bbab-42fd-893c-e416cc7fe105))
(fp_line (start -13.192798 -9.041399) (end -12.938798 -9.041399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 0f5732a6-52df-4a46-a6ac-c1dd42c4c6fb))
(fp_line (start -13.192798 -0.2794) (end -12.938798 -0.2794)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 29d9e82d-1942-4de4-90c0-acf910f0bd49))
(fp_line (start -13.065798 -9.295399) (end -13.192798 -9.041399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 6f6a09b8-e467-4c49-83bf-97b6c9bcfef8))
(fp_line (start -13.065798 -9.295399) (end -13.065798 -0.0254)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 1d7000d2-e6f1-4cd3-b186-5fe86b3755e4))
(fp_line (start -13.065798 -9.295399) (end -12.938798 -9.041399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp fd834454-562d-4a5e-a2f4-6de64f80848f))
(fp_line (start -13.065798 -0.0254) (end -13.192798 -0.2794)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp d83b4be0-ee34-4a20-a0e3-a2a5746a435f))
(fp_line (start -13.065798 -0.0254) (end -12.938798 -0.2794)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 0326701f-e942-4475-ad3a-2e1a1fd058e2))
(fp_line (start -5.445798 -19.455399) (end -5.191798 -19.582399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 50668bfc-7a4c-4581-89c0-5d11592d38d0))
(fp_line (start -5.445798 -19.455399) (end -5.191798 -19.328399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 41b24545-b3e4-4e18-8d36-9b32dbba3f09))
(fp_line (start -5.445798 -19.455399) (end 37.094198 -19.455399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 50488d25-cc06-4e61-bcec-2bf4e97ba61e))
(fp_line (start -5.445798 -9.295399) (end -15.986798 -9.295399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp cfae2ff9-703f-45b9-a783-e1df5e30d763))
(fp_line (start -5.445798 -9.295399) (end -13.446798 -9.295399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 675eb673-7169-4463-a853-e58ce81d9a97))
(fp_line (start -5.445798 -9.295399) (end -5.445798 -19.836399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 5d55aa2e-7c72-4681-aa7b-12f24e56bc77))
(fp_line (start -5.445798 5.2146) (end -15.986798 5.2146)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 0ebdffad-588a-4149-8b70-cae187bf5f7e))
(fp_line (start -5.191798 -19.582399) (end -5.191798 -19.328399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 428b2d54-81ce-4f51-bfe6-23db5a880104))
(fp_line (start 2.2352 -11.962399) (end 2.2352 -11.708399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 78e4d0f2-3ffa-46fe-bf75-97bf8eb2b021))
(fp_line (start 2.4892 -11.835399) (end 1.2192 -11.835399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp b73cf442-cdb6-4aa5-b228-6235c6777587))
(fp_line (start 2.4892 -11.835399) (end 2.2352 -11.962399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 8a254cc5-71bc-4046-a64c-2fdec01e3145))
(fp_line (start 2.4892 -11.835399) (end 2.2352 -11.708399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp ea8dfb0c-4795-401e-9a3f-9585d5d183a7))
(fp_line (start 2.4892 -2.5654) (end 40.015198 -2.5654)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp e131544a-0d87-4a2f-996b-35e36a091505))
(fp_line (start 2.4892 -0.0254) (end 2.4892 -12.216399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp fde1d631-a408-4177-ae95-914dfc1149b8))
(fp_line (start 2.4892 -0.0254) (end 40.015198 -0.0254)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 1710d04e-1864-40c3-9a57-7ce32d52f446))
(fp_line (start 3.7592 -11.835399) (end 4.0132 -11.962399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp f66e750e-619e-4f90-bde5-f1e5894f39ee))
(fp_line (start 3.7592 -11.835399) (end 4.0132 -11.708399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp c7a62e07-3321-4130-8448-f63199869121))
(fp_line (start 3.7592 -11.835399) (end 5.0292 -11.835399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 3a8a554a-4ef3-4ca5-acfa-d433387a0841))
(fp_line (start 3.7592 -0.0254) (end 3.7592 -12.216399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 21f54512-c8f4-4cae-b19b-1da725da70c3))
(fp_line (start 4.0132 -11.962399) (end 4.0132 -11.708399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 3823293a-7d40-4618-b89b-123a222fe83c))
(fp_line (start 15.8242 -0.0254) (end -13.446798 -0.0254)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp db1d831a-996c-49b9-a4c8-ab9df21628e5))
(fp_line (start 36.840198 -19.582399) (end 36.840198 -19.328399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 21303615-e9a1-40da-991d-718c9c8767cc))
(fp_line (start 37.094198 -19.455399) (end 36.840198 -19.582399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 0bee9265-be18-423b-83d3-009b2b1c0bbe))
(fp_line (start 37.094198 -19.455399) (end 36.840198 -19.328399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp e7f3dd0a-b1b9-4ba1-bdb0-6649fc21bc62))
(fp_line (start 37.094198 -9.295399) (end 37.094198 -19.836399)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 77155dfa-5517-4d32-844b-2431c1223eef))
(fp_line (start 39.507198 -2.8194) (end 39.761198 -2.8194)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp f4e6c8b9-83dc-4fea-8b20-238f4f7357f7))
(fp_line (start 39.507198 0.2286) (end 39.761198 0.2286)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 21a88fa5-07e2-4c87-b9b9-1452854ad5df))
(fp_line (start 39.634198 -2.5654) (end 39.507198 -2.8194)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp c2770e55-336f-44dc-b8c0-95d88764e9c4))
(fp_line (start 39.634198 -2.5654) (end 39.634198 -3.8354)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 3273e33c-878a-4115-b0e5-60ae5a9fbca4))
(fp_line (start 39.634198 -2.5654) (end 39.761198 -2.8194)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 95aacde0-eedf-4849-a5b9-12e1a019d0d2))
(fp_line (start 39.634198 -0.0254) (end 39.507198 0.2286)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp e559760d-814e-4e31-a194-e3825fba3ad1))
(fp_line (start 39.634198 -0.0254) (end 39.634198 1.2446)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 6694f277-e13b-4363-9375-e23e01305c2c))
(fp_line (start 39.634198 -0.0254) (end 39.761198 0.2286)
(stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 48604798-4b27-4536-88d9-fdca2daaa745))
(fp_line (start -5.445798 -9.295399) (end -5.445798 5.2146)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd0c3c2c-b5c3-4f57-803c-1826a11dd8b4))
(fp_line (start -5.445798 5.2146) (end 37.094198 5.2146)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 997f5384-c991-447c-8dbe-1fb2a4c45279))
(fp_line (start 37.094198 -9.295399) (end -5.445798 -9.295399)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06c53e40-3a62-4568-baf9-61129b32a67d))
(fp_line (start 37.094198 5.2146) (end 37.094198 -9.295399)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 504e2667-a7de-4dbb-a601-9f68f2aaf01f))
(fp_line (start -5.445798 -9.295399) (end -5.445798 5.2146)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d38558b-8261-4592-afa0-a1ec9411c243))
(fp_line (start -5.445798 5.2146) (end 37.094198 5.2146)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57a24bf5-4067-4199-bcd8-9a8659fe16b0))
(fp_line (start 37.094198 -9.295399) (end -5.445798 -9.295399)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b883a93-eb82-4307-885a-36e6358a9a28))
(fp_line (start 37.094198 5.2146) (end 37.094198 -9.295399)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ddfb296-11b8-46bb-9846-7a49775f466d))
(fp_circle (center -0.0508 1.9812) (end 0.3302 1.9812)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp b0348083-ee23-4285-990d-9e4f358a3fad))
(pad "23" thru_hole oval (at -3.045803 1.4746) (size 5 1.4) (drill oval 4.4 0.8) (layers "*.Cu" "*.Mask")
(net 18 "unconnected-(J2-SHIELD-Pad23)") (pinfunction "SHIELD") (pintype "unspecified") (tstamp 6f1570f7-f3f8-4170-8991-9266dc152f66))
(pad "24" thru_hole oval (at 34.694203 1.4746) (size 5 1.4) (drill oval 4.4 0.8) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(J2-SHIELD-Pad24)") (pinfunction "SHIELD") (pintype "unspecified") (tstamp 7d58a486-7d9c-4e9d-b884-187d02d69018))
(pad "P1" smd rect (at 13.924194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(J2-8-PadP1)") (pinfunction "8") (pintype "unspecified") (tstamp 17889d88-c892-4d33-9409-b89e72697dac))
(pad "P2" smd rect (at 15.194194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(J2-9-PadP2)") (pinfunction "9") (pintype "unspecified") (tstamp e0752020-da8d-4b70-99d7-b683b2f105cb))
(pad "P3" smd rect (at 16.464194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(J2-10-PadP3)") (pinfunction "10") (pintype "unspecified") (tstamp 224d8ac0-4792-4138-98cd-bae1054a65d2))
(pad "P4" smd rect (at 17.734194 0.4746 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "11") (pintype "unspecified") (tstamp 11fcf6ea-3507-4dc7-90d2-c7d971fbb64e))
(pad "P5" smd rect (at 19.004194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "12") (pintype "unspecified") (tstamp 7e917ff8-46d3-45fe-af95-49bf6b409d65))
(pad "P6" smd rect (at 20.274194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "13") (pintype "unspecified") (tstamp 28cea42f-53f8-4683-baba-0e4968b39fa6))
(pad "P7" smd rect (at 21.544194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+5V") (pinfunction "14") (pintype "unspecified") (tstamp f66845de-3fce-4898-8f94-4f24145f20b9))
(pad "P8" smd rect (at 22.814194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+5V") (pinfunction "15") (pintype "unspecified") (tstamp 8dbee7c7-0698-4bc6-96e7-069fba24341b))
(pad "P9" smd rect (at 24.084194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+5V") (pinfunction "16") (pintype "unspecified") (tstamp daac4be6-cd4d-4f62-a070-a8163bced115))
(pad "P10" smd rect (at 25.354194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "17") (pintype "unspecified") (tstamp 88545eea-45c9-41c3-8ee4-27f99bceaab1))
(pad "P11" smd rect (at 26.624194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "18") (pintype "unspecified") (tstamp 088ea2e2-f7f0-4a2d-b855-3d56335739a2))
(pad "P12" smd rect (at 27.894194 0.4746 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "19") (pintype "unspecified") (tstamp d19f6fc8-85b1-4998-be66-c3bc5e63efb2))
(pad "P13" smd rect (at 29.164194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "+12V") (pinfunction "20") (pintype "unspecified") (tstamp e55072b2-554e-4fdf-af8a-d836aebea83b))
(pad "P14" smd rect (at 30.434194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "+12V") (pinfunction "21") (pintype "unspecified") (tstamp 454ed38b-b60d-4273-afc3-cb6a88c1fc50))
(pad "P15" smd rect (at 31.704194 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "+12V") (pinfunction "22") (pintype "unspecified") (tstamp fafb38c9-5fdd-40c4-aad3-85ae6718fa34))
(pad "S1" smd rect (at -0.055794 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "1") (pintype "unspecified") (tstamp 900f861d-003d-4a63-828a-93351158cfee))
(pad "S2" smd rect (at 1.214206 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/A+") (pinfunction "2") (pintype "unspecified") (tstamp cbacb96a-83ce-4f85-b36d-c7a9c452b570))
(pad "S3" smd rect (at 2.484206 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/A-") (pinfunction "3") (pintype "unspecified") (tstamp 45159826-8f03-4487-9a91-392e9317df83))
(pad "S4" smd rect (at 3.754206 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "4") (pintype "unspecified") (tstamp 84bff159-0629-4418-be93-63c525cd3a5a))
(pad "S5" smd rect (at 5.024206 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/B-") (pinfunction "5") (pintype "unspecified") (tstamp d6b764c2-cbde-4b88-9fb8-1a0f52e8a49e))
(pad "S6" smd rect (at 6.294206 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/B+") (pinfunction "6") (pintype "unspecified") (tstamp d86f82c6-c09d-41e2-b729-0c4c32c2313b))
(pad "S7" smd rect (at 7.564206 -0.0254 270) (size 0.9 2.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "7") (pintype "unspecified") (tstamp 5cdf6704-963f-4af8-ba82-577743ec7242))
)
(footprint "FPC Connector:FH28K28S05SH" (layer "F.Cu")
(tstamp a656f644-e487-42bf-a429-3d974f9cee9e)
(at 55.575 50.75 90)
(descr "FH28K-28S-0.5SH-1")
(tags "Connector")
(property "Sheetfile" "usata.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x28, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/f10f0db3-3318-48dc-816a-864f97adb332")
(attr smd)
(fp_text reference "J1" (at 0 -0.325 90) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp ba77d7f7-9c4f-4668-b718-c538ece6824a)
)
(fp_text value "FH28K-28S-0.5SH" (at 0 -0.325 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 942e4117-d4b1-4293-9708-f05bbb5dea5d)
)
(fp_text user "${REFERENCE}" (at 0 -0.325 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 845cb848-b834-4f9b-b9b2-e6cd85bf37fd)
)
(fp_line (start -9.45 -2.925) (end -7.5 -2.925)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 13e0ecac-0496-4607-ac45-2964f93772f4))
(fp_line (start -9.45 0.5) (end -9.45 -2.925)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp ca0c0423-ce1c-4cda-b9a7-c2bf942cd812))
(fp_line (start -8.5 3.575) (end 8.9 3.575)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 51eda3af-0a65-4762-be02-a7f3cce351fd))
(fp_line (start -7.6 -4) (end -7.6 -4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp d7995ce0-d578-4cc6-b3ba-a88d2b363df6))
(fp_line (start -7.5 -4) (end -7.5 -4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 7f068f00-e9b4-44f8-be7f-c1f8d6bbdc06))
(fp_line (start 7.5 -2.925) (end 9.45 -2.925)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 5c9e512b-9443-4983-9516-0322ed1da2b0))
(fp_line (start 9.45 -2.925) (end 9.45 0.5)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp e6685e87-269c-491a-a6e3-9cdfd800e349))
(fp_arc (start -7.6 -4) (mid -7.55 -4.05) (end -7.5 -4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 595e32dd-3654-4ac5-97bc-518f3b1b3e20))
(fp_arc (start -7.5 -4) (mid -7.55 -3.95) (end -7.6 -4)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 3ef6ea83-9deb-4fd1-aeaf-1e647c603181))
(fp_line (start -10.8 -5.225) (end 10.8 -5.225)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp e6aefaea-49b5-4ece-8c6d-488b9fdcb727))
(fp_line (start -10.8 4.575) (end -10.8 -5.225)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 8404b0a0-021d-46ef-bd13-274a23a9fb1e))
(fp_line (start 10.8 -5.225) (end 10.8 4.575)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp f26738a5-e2b1-4089-b4a5-3c0fe664e9cf))
(fp_line (start 10.8 4.575) (end -10.8 4.575)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 99a41dd4-2620-4356-b129-b60f51d0d2fe))
(fp_line (start -9.45 -2.925) (end 9.45 -2.925)
(stroke (width 0.2) (type solid)) (layer "F.Fab") (tstamp 026b4f47-72e4-432b-9cbe-de6b4b32236b))
(fp_line (start -9.45 3.575) (end -9.45 -2.925)
(stroke (width 0.2) (type solid)) (layer "F.Fab") (tstamp 763cbaca-af6c-4424-9a65-f60cbdd543bd))
(fp_line (start 9.45 -2.925) (end 9.45 3.575)
(stroke (width 0.2) (type solid)) (layer "F.Fab") (tstamp 56ce0bd0-10eb-4478-8793-9689c0e9e860))
(fp_line (start 9.45 3.575) (end -9.45 3.575)
(stroke (width 0.2) (type solid)) (layer "F.Fab") (tstamp 3cd0fd59-48ea-48ed-9833-bedd27e22aa8))
(pad "1" smd rect (at -6.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 88de4a2f-5634-4a94-807d-cfc7d257cae6))
(pad "2" smd rect (at -6.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/B+") (pinfunction "Pin_2") (pintype "passive") (tstamp 1847228d-fbfe-4a24-ad3f-cf000eb54303))
(pad "3" smd rect (at -5.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/B-") (pinfunction "Pin_3") (pintype "passive") (tstamp 1ece3803-7bb0-492e-be71-201e05f3154d))
(pad "4" smd rect (at -5.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp e19dbad3-73e0-4e7c-ae53-fb8490c6c41d))
(pad "5" smd rect (at -4.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/A-") (pinfunction "Pin_5") (pintype "passive") (tstamp 902f57a1-2079-4b8c-9357-424171fd89b4))
(pad "6" smd rect (at -4.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/A+") (pinfunction "Pin_6") (pintype "passive") (tstamp 8f1d3522-7885-4e28-8a57-fa8023735111))
(pad "7" smd rect (at -3.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 713cafd8-9dec-43fe-a939-578e90267802))
(pad "8" smd rect (at -3.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "unconnected-(J1-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive") (tstamp 776a533b-4ae7-4f28-9560-6c38e0ab9377))
(pad "9" smd rect (at -2.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "unconnected-(J1-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp 3c8e7e14-0f80-48be-b2b8-5a0b13718318))
(pad "10" smd rect (at -2.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "unconnected-(J1-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp 424577ef-94ce-4966-82ac-3c874df5a978))
(pad "11" smd rect (at -1.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "unconnected-(J1-Pin_11-Pad11)") (pinfunction "Pin_11") (pintype "passive") (tstamp b009e354-f9fe-4894-a1ae-462ce965c5fb))
(pad "12" smd rect (at -1.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "unconnected-(J1-Pin_12-Pad12)") (pinfunction "Pin_12") (pintype "passive") (tstamp e3a97253-2304-4141-8de0-a4a6ed8c0b9d))
(pad "13" smd rect (at -0.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "Pin_13") (pintype "passive") (tstamp c5669f00-12a9-43ec-8ec1-efc364f9e090))
(pad "14" smd rect (at -0.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(J1-Pin_14-Pad14)") (pinfunction "Pin_14") (pintype "passive") (tstamp f8863313-f242-41c5-98d4-21a1321bb89d))
(pad "15" smd rect (at 0.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/3.3v unused") (pinfunction "Pin_15") (pintype "passive") (tstamp fbe4192a-a41c-4335-9eb5-1de841f1de69))
(pad "16" smd rect (at 0.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "Pin_16") (pintype "passive") (tstamp f805e9f0-008a-4162-bc6d-b0e79317b117))
(pad "17" smd rect (at 1.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "Pin_17") (pintype "passive") (tstamp b8b6730c-b779-499a-bfd9-039e164d362d))
(pad "18" smd rect (at 1.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "unconnected-(J1-Pin_18-Pad18)") (pinfunction "Pin_18") (pintype "passive") (tstamp 83d90a03-0b3f-465f-ba85-abb2965c1cd7))
(pad "19" smd rect (at 2.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+5V") (pinfunction "Pin_19") (pintype "passive") (tstamp 18bdd521-13ed-407e-8d51-85cc7f612b2e))
(pad "20" smd rect (at 2.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+5V") (pinfunction "Pin_20") (pintype "passive") (tstamp 73973316-5930-4204-bdda-d3fe6c3b4a0b))
(pad "21" smd rect (at 3.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "+5V") (pinfunction "Pin_21") (pintype "passive") (tstamp 7c5f1ce2-8d54-4c10-b077-39fd6cc065c9))
(pad "22" smd rect (at 3.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "unconnected-(J1-Pin_22-Pad22)") (pinfunction "Pin_22") (pintype "passive") (tstamp 3e651eaf-32c0-475b-a625-6d57c7ef41f9))
(pad "23" smd rect (at 4.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "Pin_23") (pintype "passive") (tstamp babc1b8e-1267-4fff-85f2-dd72e1982263))
(pad "24" smd rect (at 4.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "GND") (pinfunction "Pin_24") (pintype "passive") (tstamp 283d5789-679b-4434-9203-3d0037a0bcc8))
(pad "25" smd rect (at 5.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "unconnected-(J1-Pin_25-Pad25)") (pinfunction "Pin_25") (pintype "passive") (tstamp 54c40a88-1798-4fe1-911b-5b7c98bbeaed))
(pad "26" smd rect (at 5.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "+12V") (pinfunction "Pin_26") (pintype "passive") (tstamp 7a0ae786-09eb-4a3f-b850-753c75a1d2c6))
(pad "27" smd rect (at 6.25 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "+12V") (pinfunction "Pin_27") (pintype "passive") (tstamp 315a9308-4709-456b-a9ca-45aaddc8ae3b))
(pad "28" smd rect (at 6.75 -3.575 90) (size 0.3 1.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "+12V") (pinfunction "Pin_28") (pintype "passive") (tstamp 7880f30d-e6ff-48fa-adab-abf297a552c0))
(pad "MP1" smd rect (at -8.9 2.075 90) (size 1.8 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 20098297-3e2d-40db-9a04-e34ad6a566ab))
(pad "MP2" smd rect (at 8.9 2.075 90) (size 1.8 2.2) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fd14372f-c926-40e2-95a1-42e056ffda09))
(model "FH28K-28S-0.5SH.stp"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_rect (start 40 40) (end 60 90)
(stroke (width 0.1) (type solid)) (fill none) (layer "Edge.Cuts") (tstamp 3d47c1d4-9eec-4232-8626-74fc4be3e23c))
(gr_text "USata Console v1\nheyquark.com/usata" (at 57.75 81.75 90) (layer "F.SilkS") (tstamp 525820f1-c4e8-4f38-ba66-9f0454eccc55)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 45.65 69.937025) (end 45.65 71.007037) (width 0.508) (layer "F.Cu") (net 6) (tstamp 02afbb0b-291a-4202-aeec-7e4269921b6d))
(segment (start 49.25 56) (end 52 56) (width 0.1524) (layer "F.Cu") (net 6) (tstamp 06bbdc38-e45f-4eb0-b672-6f2fe4d38fdd))
(segment (start 51 54.5) (end 50.75 54.25) (width 0.1524) (layer "F.Cu") (net 6) (tstamp 160b83c5-4c46-4163-ad72-d05c5c213b5e))
(segment (start 52 51.5) (end 50.5 51.5) (width 0.25) (layer "F.Cu") (net 6) (tstamp 1a656b95-0128-40e7-9665-ad5bbae2b472))
(segment (start 45.65 78.869988) (end 45.65 79.94) (width 0.508) (layer "F.Cu") (net 6) (tstamp 2d2dd6b2-32bd-4ecf-bd92-fed4b0d5b738))
(segment (start 52 46.25) (end 50.75 46.25) (width 0.75) (layer "F.Cu") (net 6) (tstamp 6fde5a31-ee79-460c-91c2-e502a3d4b0fa))
(segment (start 52 54.5) (end 51 54.5) (width 0.1524) (layer "F.Cu") (net 6) (tstamp 76d9d0d2-5c95-408f-9d60-5405ee97e98c))
(segment (start 52 58.5) (end 52 57.6) (width 0.3) (layer "F.Cu") (net 6) (tstamp 8dc62479-d780-4721-b298-a44c6d2b73bc))
(segment (start 52 57.5) (end 51 57.5) (width 0.1524) (layer "F.Cu") (net 6) (tstamp be9b0dff-a56c-4caa-b867-d976c9de4b93))
(segment (start 52 49.75) (end 50.75 49.75) (width 0.75) (layer "F.Cu") (net 6) (tstamp d09565ab-06b7-4da2-8200-f8daeaae5747))
(segment (start 51 57.5) (end 50.75 57.75) (width 0.1524) (layer "F.Cu") (net 6) (tstamp d426b8f8-4c06-4074-8d51-a3f9872f0a4b))
(via (at 43.237 59.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 6) (tstamp 29710990-c81e-490b-89aa-42ca3ec3013d))
(via (at 50.349 53.841) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 6) (tstamp 316bd52b-e6bb-490a-a3dd-5d06b49bdb26))
(via (at 48.19 59.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 6) (tstamp 3dd2cb7a-c15f-4a79-b255-21aee29eb13d))
(via (at 50.349 58.159) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 6) (tstamp 406da0cd-4f94-43db-85f9-f374e1282edf))
(via (at 48.19 56) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 6) (tstamp 8a90c039-46bf-422d-b3d6-d341a7858bf2))
(via (at 43.237 56) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 6) (tstamp d4bb148e-e5e6-41c2-89c0-d444b8c3503d))
(via (at 43.237 52.19) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 6) (tstamp dc1f9f21-c354-4f4d-b439-96fb79468f39))
(via (at 48.063 52.19) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 6) (tstamp e3dd9a95-9dc5-4fe2-93f8-f7185d5afccd))
(segment (start 46.92 75.059988) (end 45.65 75.059988) (width 1.25) (layer "F.Cu") (net 10) (tstamp 0d4e1490-7b44-4c28-b32e-cfe8af46bd4e))
(segment (start 54 67.979988) (end 46.92 75.059988) (width 1.25) (layer "F.Cu") (net 10) (tstamp 1267faf8-01e4-4dbe-8bbc-5fae41e24146))
(segment (start 52 48) (end 53.3548 48) (width 1.25) (layer "F.Cu") (net 10) (tstamp 5d474f04-9591-4c3c-8378-1ff7e582f86d))
(segment (start 54 48.6452) (end 54 67.979988) (width 1.25) (layer "F.Cu") (net 10) (tstamp 9c72c0b2-b02b-4314-9e31-0d734844ba7a))
(segment (start 45.65 74) (end 45.65 76) (width 1.25) (layer "F.Cu") (net 10) (tstamp cd499104-e5b1-40cc-a70d-b8d20afaa811))
(segment (start 53.3548 48) (end 54 48.6452) (width 1.25) (layer "F.Cu") (net 10) (tstamp cf9c467e-a06e-4315-84b3-f768a401edc6))
(segment (start 55.5 72.829988) (end 45.65 82.679988) (width 1.25) (layer "F.Cu") (net 13) (tstamp 220ce565-2839-4b63-9720-dd38d7a0b91e))
(segment (start 52 44.5) (end 53.3548 44.5) (width 1.25) (layer "F.Cu") (net 13) (tstamp 499bf363-6522-42b3-b944-7ee8f3a4b413))
(segment (start 55.5 46.6452) (end 55.5 72.829988) (width 1.25) (layer "F.Cu") (net 13) (tstamp 7d068180-22e7-4c02-a2b8-35feb8f076d8))
(segment (start 45.65 83.5) (end 45.65 81.8) (width 1.25) (layer "F.Cu") (net 13) (tstamp 8943ad6e-dcb4-462b-afdb-e82c2fd8192b))
(segment (start 53.3548 44.5) (end 55.5 46.6452) (width 1.25) (layer "F.Cu") (net 13) (tstamp af421e4d-2c6d-446d-b406-513f30953780))
(segment (start 47.450001 53.46) (end 47.932601 53.9426) (width 0.1524) (layer "F.Cu") (net 14) (tstamp 21d68ef9-97a6-4db6-aec9-249392c0851f))
(segment (start 48.658128 53.9426) (end 49.715528 55) (width 0.1524) (layer "F.Cu") (net 14) (tstamp 244f4402-918f-4115-9014-7f5027843670))
(segment (start 47.932601 53.9426) (end 48.658128 53.9426) (width 0.1524) (layer "F.Cu") (net 14) (tstamp 56f72afc-9b9c-4a70-8100-f993a6969208))
(segment (start 45.65 53.46) (end 47.450001 53.46) (width 0.1524) (layer "F.Cu") (net 14) (tstamp 70dcebc4-ffb9-49dd-b4fa-ae70a7c1405a))
(segment (start 49.715528 55) (end 52 55) (width 0.1524) (layer "F.Cu") (net 14) (tstamp 716a8357-c334-40ad-8334-4270c545b683))
(segment (start 47.932601 54.2474) (end 48.531872 54.2474) (width 0.1524) (layer "F.Cu") (net 15) (tstamp 0702a5fb-a98a-4c07-9fcd-66a202f8bb7e))
(segment (start 49.784472 55.5) (end 52 55.5) (width 0.1524) (layer "F.Cu") (net 15) (tstamp 26f6ee88-5d4d-4e91-86fe-e482f2b4026e))
(segment (start 47.450001 54.73) (end 47.932601 54.2474) (width 0.1524) (layer "F.Cu") (net 15) (tstamp 5faa00cb-342a-409e-905b-ee9d7c5bffd6))
(segment (start 45.65 54.73) (end 47.450001 54.73) (width 0.1524) (layer "F.Cu") (net 15) (tstamp c6d308c9-f878-4216-96a9-4a210155e4c3))
(segment (start 48.531872 54.2474) (end 49.784472 55.5) (width 0.1524) (layer "F.Cu") (net 15) (tstamp f3e0e3da-7f43-417c-97a4-917d21ad8fda))
(segment (start 47.450001 57.27) (end 45.65 57.27) (width 0.1524) (layer "F.Cu") (net 16) (tstamp 33f20d86-cdec-4169-ac91-6457e9351ca8))
(segment (start 48.531872 57.7526) (end 47.932601 57.7526) (width 0.1524) (layer "F.Cu") (net 16) (tstamp 3432e09a-146e-4759-883b-a581291c45fd))
(segment (start 52 56.5) (end 49.784472 56.5) (width 0.1524) (layer "F.Cu") (net 16) (tstamp 3fcab684-18cd-4a06-8334-7090c5d99385))
(segment (start 49.784472 56.5) (end 48.531872 57.7526) (width 0.1524) (layer "F.Cu") (net 16) (tstamp 5f104162-549a-46c5-9e0a-63102b414895))
(segment (start 47.932601 57.7526) (end 47.450001 57.27) (width 0.1524) (layer "F.Cu") (net 16) (tstamp bd3b6265-f27b-4048-b9c0-f2a26cecb315))
(segment (start 49.715528 57) (end 48.658128 58.0574) (width 0.1524) (layer "F.Cu") (net 17) (tstamp 2b4d5d0c-72fc-4a1d-b517-bc65cec316a5))
(segment (start 47.932601 58.0574) (end 47.450001 58.54) (width 0.1524) (layer "F.Cu") (net 17) (tstamp 3784bfd1-233c-4eb7-ba3d-a01ed2332565))
(segment (start 47.450001 58.54) (end 45.65 58.54) (width 0.1524) (layer "F.Cu") (net 17) (tstamp 5908e185-4087-441f-850c-fd7bc1af05fc))
(segment (start 52 57) (end 49.715528 57) (width 0.1524) (layer "F.Cu") (net 17) (tstamp af6ed5c7-60aa-49fc-b41e-548f374eea59))
(segment (start 48.658128 58.0574) (end 47.932601 58.0574) (width 0.1524) (layer "F.Cu") (net 17) (tstamp f028056f-8035-4508-b32e-506f4197cf8a))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 8926a9e7-22a3-42e5-a7dd-063b2c423141) (hatch edge 0.5)
(connect_pads (clearance 0))
(min_thickness 0.25) (filled_areas_thickness no)
(keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.5) (thermal_bridge_width 0.5))
(polygon
(pts
(xy 52.889 45.332)
(xy 54.667 47.11)
(xy 54.667 47.999)
(xy 52.889 46.475)
)
)
)
(zone (net 6) (net_name "GND") (layer "F.Cu") (tstamp ca994c00-0a58-4f93-b346-70c0c79dc1e5) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 62.5583 92.188)
(xy 38.69 92.52)
(xy 38.58 38.45)
(xy 62.2983 38.568)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 56.340099 40.270502)
(xy 56.386592 40.324158)
(xy 56.396696 40.394432)
(xy 56.367202 40.459012)
(xy 56.316011 40.494554)
(xy 56.309134 40.497119)
(xy 56.303792 40.499112)
(xy 56.186738 40.586738)
(xy 56.099112 40.703792)
(xy 56.09911 40.703797)
(xy 56.048011 40.840795)
(xy 56.048009 40.840803)
(xy 56.0415 40.90135)
(xy 56.0415 42.798649)
(xy 56.048009 42.859196)
(xy 56.048011 42.859204)
(xy 56.09911 42.996202)
(xy 56.099112 42.996207)
(xy 56.186738 43.113261)
(xy 56.303792 43.200887)
(xy 56.303794 43.200888)
(xy 56.303796 43.200889)
(xy 56.362875 43.222924)
(xy 56.440795 43.251988)
(xy 56.440803 43.25199)
(xy 56.50135 43.258499)
(xy 56.501355 43.258499)
(xy 56.501362 43.2585)
(xy 56.501368 43.2585)
(xy 58.798632 43.2585)
(xy 58.798638 43.2585)
(xy 58.798645 43.258499)
(xy 58.798649 43.258499)
(xy 58.859196 43.25199)
(xy 58.859199 43.251989)
(xy 58.859201 43.251989)
(xy 58.996204 43.200889)
(xy 59.113261 43.113261)
(xy 59.200889 42.996204)
(xy 59.251989 42.859201)
(xy 59.2585 42.798638)
(xy 59.2585 40.901362)
(xy 59.258499 40.90135)
(xy 59.25199 40.840803)
(xy 59.251988 40.840795)
(xy 59.200889 40.703797)
(xy 59.200887 40.703792)
(xy 59.113261 40.586738)
(xy 58.996207 40.499112)
(xy 58.994274 40.498391)
(xy 58.983988 40.494554)
(xy 58.927154 40.452009)
(xy 58.902343 40.385489)
(xy 58.917434 40.316115)
(xy 58.967636 40.265913)
(xy 59.028022 40.2505)
(xy 59.6235 40.2505)
(xy 59.691621 40.270502)
(xy 59.738114 40.324158)
(xy 59.7495 40.3765)
(xy 59.7495 89.6235)
(xy 59.729498 89.691621)
(xy 59.675842 89.738114)
(xy 59.6235 89.7495)
(xy 40.3765 89.7495)
(xy 40.308379 89.729498)
(xy 40.261886 89.675842)
(xy 40.2505 89.6235)
(xy 40.2505 86.994435)
(xy 41.137837 86.994435)
(xy 41.152526 87.102873)
(xy 41.167037 87.210004)
(xy 41.234261 87.416893)
(xy 41.337337 87.608441)
(xy 41.337341 87.608448)
(xy 41.472973 87.778523)
(xy 41.63679 87.921647)
(xy 41.823519 88.033212)
(xy 41.823526 88.033215)
(xy 41.823532 88.033219)
(xy 42.027195 88.109655)
(xy 42.027197 88.109655)
(xy 42.027199 88.109656)
(xy 42.24123 88.148497)
(xy 42.241233 88.148497)
(xy 46.004269 88.148497)
(xy 46.004276 88.148497)
(xy 46.166658 88.133882)
(xy 46.166666 88.133879)
(xy 46.16667 88.133879)
(xy 46.254443 88.109655)
(xy 46.376353 88.07601)
(xy 46.572344 87.981626)
(xy 46.748333 87.853763)
(xy 46.898663 87.69653)
(xy 47.018501 87.514982)
(xy 47.103998 87.314954)
(xy 47.152404 87.102874)
(xy 47.162163 86.885559)
(xy 47.132963 86.669993)
(xy 47.065741 86.463106)
(xy 46.962659 86.271547)
(xy 46.962658 86.271545)
(xy 46.827026 86.10147)
(xy 46.663209 85.958346)
(xy 46.47648 85.846781)
(xy 46.47647 85.846776)
(xy 46.476469 85.846775)
(xy 46.476468 85.846775)
(xy 46.272805 85.770339)
(xy 46.2728 85.770337)
(xy 46.05877 85.731497)
(xy 46.058767 85.731497)
(xy 42.295724 85.731497)
(xy 42.173937 85.742458)
(xy 42.13334 85.746112)
(xy 42.133329 85.746114)
(xy 41.923655 85.803981)
(xy 41.923641 85.803986)
(xy 41.72766 85.898365)
(xy 41.727652 85.89837)
(xy 41.551666 86.026231)
(xy 41.551665 86.026232)
(xy 41.401338 86.183461)
(xy 41.281501 86.365007)
(xy 41.281499 86.365012)
(xy 41.196 86.565043)
(xy 41.147596 86.777118)
(xy 41.147596 86.77712)
(xy 41.137837 86.994435)
(xy 40.2505 86.994435)
(xy 40.2505 80.638585)
(xy 43.442 80.638585)
(xy 43.448505 80.699081)
(xy 43.499555 80.835952)
(xy 43.499555 80.835953)
(xy 43.587095 80.952892)
(xy 43.704034 81.040432)
(xy 43.840903 81.091481)
(xy 43.844473 81.092325)
(xy 43.846957 81.093739)
(xy 43.848291 81.094237)
(xy 43.84821 81.094453)
(xy 43.906169 81.127456)
(xy 43.939078 81.190364)
(xy 43.9415 81.214949)
(xy 43.9415 81.908637)
(xy 43.948009 81.969183)
(xy 43.94801 81.969186)
(xy 43.95986 82.000958)
(xy 43.964923 82.071774)
(xy 43.95986 82.089018)
(xy 43.94801 82.120789)
(xy 43.948009 82.120792)
(xy 43.9415 82.181338)
(xy 43.9415 83.178637)
(xy 43.948009 83.239183)
(xy 43.94801 83.239186)
(xy 43.95986 83.270958)
(xy 43.964923 83.341774)
(xy 43.95986 83.359018)
(xy 43.94801 83.390789)
(xy 43.948009 83.390792)
(xy 43.9415 83.451338)
(xy 43.9415 84.448637)
(xy 43.948009 84.509184)
(xy 43.948011 84.509192)
(xy 43.99911 84.64619)
(xy 43.999112 84.646195)
(xy 44.086738 84.763249)
(xy 44.203792 84.850875)
(xy 44.203794 84.850876)
(xy 44.203796 84.850877)
(xy 44.262875 84.872912)
(xy 44.340795 84.901976)
(xy 44.340803 84.901978)
(xy 44.40135 84.908487)
(xy 44.401355 84.908487)
(xy 44.401362 84.908488)
(xy 44.401368 84.908488)
(xy 46.898632 84.908488)
(xy 46.898638 84.908488)
(xy 46.898645 84.908487)
(xy 46.898649 84.908487)
(xy 46.959196 84.901978)
(xy 46.959199 84.901977)
(xy 46.959201 84.901977)
(xy 47.096204 84.850877)
(xy 47.213261 84.763249)
(xy 47.300889 84.646192)
(xy 47.351989 84.509189)
(xy 47.3585 84.448626)
(xy 47.3585 83.45135)
(xy 47.35199 83.390792)
(xy 47.35199 83.390791)
(xy 47.351989 83.390789)
(xy 47.351989 83.390787)
(xy 47.34014 83.359021)
(xy 47.335074 83.288209)
(xy 47.340137 83.270962)
(xy 47.351989 83.239189)
(xy 47.3585 83.178626)
(xy 47.3585 82.626688)
(xy 47.378502 82.558567)
(xy 47.3954 82.537598)
(xy 56.227146 73.705851)
(xy 56.243157 73.692309)
(xy 56.245661 73.690527)
(xy 56.31004 73.623006)
(xy 56.312097 73.620901)
(xy 56.339681 73.593318)
(xy 56.339681 73.593317)
(xy 56.339687 73.593312)
(xy 56.345431 73.586353)
(xy 56.351405 73.579624)
(xy 56.395042 73.53386)
(xy 56.395041 73.53386)
(xy 56.395044 73.533858)
(xy 56.412999 73.505918)
(xy 56.421834 73.49382)
(xy 56.442975 73.468216)
(xy 56.473292 73.412694)
(xy 56.477871 73.404974)
(xy 56.512078 73.35175)
(xy 56.524425 73.320906)
(xy 56.530797 73.307381)
(xy 56.546722 73.27822)
(xy 56.565986 73.217951)
(xy 56.569029 73.209489)
(xy 56.580412 73.181057)
(xy 56.592532 73.150784)
(xy 56.598818 73.118163)
(xy 56.602519 73.103665)
(xy 56.612634 73.072026)
(xy 56.620146 73.009195)
(xy 56.621523 73.000362)
(xy 56.6335 72.938224)
(xy 56.6335 72.905019)
(xy 56.634391 72.890061)
(xy 56.634506 72.889099)
(xy 56.638334 72.857085)
(xy 56.633821 72.793983)
(xy 56.6335 72.784995)
(xy 56.6335 61.1845)
(xy 56.653502 61.116379)
(xy 56.707158 61.069886)
(xy 56.7595 61.0585)
(xy 58.798632 61.0585)
(xy 58.798638 61.0585)
(xy 58.798645 61.058499)
(xy 58.798649 61.058499)
(xy 58.859196 61.05199)
(xy 58.859199 61.051989)
(xy 58.859201 61.051989)
(xy 58.996204 61.000889)
(xy 59.113261 60.913261)
(xy 59.200889 60.796204)
(xy 59.251989 60.659201)
(xy 59.255892 60.622904)
(xy 59.258499 60.598649)
(xy 59.2585 60.598632)
(xy 59.2585 58.701367)
(xy 59.258499 58.70135)
(xy 59.25199 58.640803)
(xy 59.251988 58.640795)
(xy 59.212146 58.533977)
(xy 59.200889 58.503796)
(xy 59.200888 58.503794)
(xy 59.200887 58.503792)
(xy 59.113261 58.386738)
(xy 58.996207 58.299112)
(xy 58.996202 58.29911)
(xy 58.859204 58.248011)
(xy 58.859196 58.248009)
(xy 58.798649 58.2415)
(xy 58.798638 58.2415)
(xy 56.7595 58.2415)
(xy 56.691379 58.221498)
(xy 56.644886 58.167842)
(xy 56.6335 58.1155)
(xy 56.6335 46.750361)
(xy 56.635246 46.72946)
(xy 56.635755 46.726433)
(xy 56.633536 46.633221)
(xy 56.6335 46.630222)
(xy 56.6335 46.591214)
(xy 56.6335 46.591204)
(xy 56.632639 46.582195)
(xy 56.632108 46.573266)
(xy 56.630603 46.51002)
(xy 56.623542 46.477565)
(xy 56.621236 46.462774)
(xy 56.618079 46.429708)
(xy 56.60025 46.368993)
(xy 56.598032 46.360297)
(xy 56.596209 46.351918)
(xy 56.584589 46.298494)
(xy 56.571514 46.267961)
(xy 56.566449 46.253873)
(xy 56.557092 46.222004)
(xy 56.5281 46.165769)
(xy 56.524267 46.157632)
(xy 56.520998 46.149999)
(xy 56.499374 46.0995)
(xy 56.480762 46.072)
(xy 56.473116 46.059114)
(xy 56.457897 46.029594)
(xy 56.418794 45.979872)
(xy 56.413497 45.972618)
(xy 56.37804 45.920229)
(xy 56.354557 45.896746)
(xy 56.344615 45.885545)
(xy 56.329916 45.866854)
(xy 56.324084 45.859437)
(xy 56.276261 45.817998)
(xy 56.269693 45.811882)
(xy 54.230668 43.772857)
(xy 54.217121 43.756842)
(xy 54.215338 43.754338)
(xy 54.14782 43.689959)
(xy 54.145715 43.687904)
(xy 54.118125 43.660314)
(xy 54.118124 43.660313)
(xy 54.118121 43.66031)
(xy 54.118117 43.660307)
(xy 54.111177 43.654577)
(xy 54.104445 43.648603)
(xy 54.05867 43.604956)
(xy 54.058667 43.604954)
(xy 54.058666 43.604953)
(xy 54.030731 43.587)
(xy 54.018629 43.578163)
(xy 53.993026 43.557023)
(xy 53.993025 43.557022)
(xy 53.937511 43.526709)
(xy 53.929778 43.522121)
(xy 53.87656 43.48792)
(xy 53.876556 43.487919)
(xy 53.845741 43.475583)
(xy 53.832182 43.469195)
(xy 53.803031 43.453277)
(xy 53.742779 43.434017)
(xy 53.734316 43.430975)
(xy 53.698918 43.416804)
(xy 53.675596 43.407468)
(xy 53.642985 43.401182)
(xy 53.628471 43.397477)
(xy 53.623047 43.395744)
(xy 53.596841 43.387366)
(xy 53.534019 43.379854)
(xy 53.525137 43.378468)
(xy 53.463037 43.3665)
(xy 53.463036 43.3665)
(xy 53.429832 43.3665)
(xy 53.414875 43.365609)
(xy 53.405045 43.364433)
(xy 53.381897 43.361666)
(xy 53.381895 43.361666)
(xy 53.318796 43.366179)
(xy 53.309808 43.3665)
(xy 52.831504 43.3665)
(xy 52.78747 43.358555)
(xy 52.759201 43.348011)
(xy 52.759196 43.348009)
(xy 52.698649 43.3415)
(xy 52.698638 43.3415)
(xy 51.301362 43.3415)
(xy 51.30135 43.3415)
(xy 51.240803 43.348009)
(xy 51.240795 43.348011)
(xy 51.103797 43.39911)
(xy 51.103792 43.399112)
(xy 50.986738 43.486738)
(xy 50.899112 43.603792)
(xy 50.89911 43.603797)
(xy 50.848011 43.740795)
(xy 50.848009 43.740803)
(xy 50.8415 43.80135)
(xy 50.8415 44.19863)
(xy 50.841501 44.198654)
(xy 50.845573 44.236534)
(xy 50.845573 44.263466)
(xy 50.841501 44.301345)
(xy 50.8415 44.301369)
(xy 50.8415 44.69863)
(xy 50.841501 44.698654)
(xy 50.845573 44.736534)
(xy 50.845573 44.763466)
(xy 50.841501 44.801345)
(xy 50.8415 44.801369)
(xy 50.8415 45.19863)
(xy 50.841501 45.198654)
(xy 50.845573 45.236534)
(xy 50.845573 45.263466)
(xy 50.841501 45.301345)
(xy 50.8415 45.301369)
(xy 50.8415 45.698649)
(xy 50.845826 45.738881)
(xy 50.845826 45.765817)
(xy 50.842 45.801398)
(xy 50.842 45.850001)
(xy 50.858853 45.866854)
(xy 50.869573 45.870002)
(xy 50.902318 45.900488)
(xy 50.938253 45.948491)
(xy 50.963063 46.015012)
(xy 50.947971 46.084386)
(xy 50.897769 46.134588)
(xy 50.84358 46.148418)
(xy 50.842 46.149999)
(xy 50.842 46.198599)
(xy 50.846079 46.236531)
(xy 50.846079 46.263469)
(xy 50.842 46.3014)
(xy 50.842 46.350001)
(xy 50.843917 46.351918)
(xy 50.905505 46.370002)
(xy 50.951998 46.423658)
(xy 50.962102 46.493932)
(xy 50.938253 46.551507)
(xy 50.902319 46.59951)
(xy 50.863219 46.628779)
(xy 50.842 46.649999)
(xy 50.842 46.698601)
(xy 50.845826 46.734181)
(xy 50.845826 46.761116)
(xy 50.841501 46.801348)
(xy 50.8415 46.801369)
(xy 50.8415 47.19863)
(xy 50.841501 47.198654)
(xy 50.845573 47.236534)
(xy 50.845573 47.263466)
(xy 50.841501 47.301345)
(xy 50.8415 47.301369)
(xy 50.8415 47.69863)
(xy 50.841501 47.698654)
(xy 50.845573 47.736534)
(xy 50.845573 47.763466)
(xy 50.841501 47.801345)
(xy 50.8415 47.801369)
(xy 50.8415 48.19863)
(xy 50.841501 48.198654)
(xy 50.845573 48.236534)
(xy 50.845573 48.263466)
(xy 50.841501 48.301345)
(xy 50.8415 48.301369)
(xy 50.8415 48.69863)
(xy 50.841501 48.698654)
(xy 50.845573 48.736534)
(xy 50.845573 48.763466)
(xy 50.841501 48.801345)
(xy 50.8415 48.801369)
(xy 50.8415 49.198649)
(xy 50.845826 49.238881)
(xy 50.845826 49.265817)
(xy 50.842 49.301398)
(xy 50.842 49.350001)
(xy 50.858853 49.366854)
(xy 50.869573 49.370002)
(xy 50.902318 49.400488)
(xy 50.938253 49.448491)
(xy 50.963063 49.515012)
(xy 50.947971 49.584386)
(xy 50.897769 49.634588)
(xy 50.84358 49.648418)
(xy 50.842 49.649999)
(xy 50.842 49.698599)
(xy 50.846079 49.736531)
(xy 50.846079 49.763469)
(xy 50.842 49.8014)
(xy 50.842 49.850001)
(xy 50.843917 49.851918)
(xy 50.905505 49.870002)
(xy 50.951998 49.923658)
(xy 50.962102 49.993932)
(xy 50.938253 50.051507)
(xy 50.902319 50.09951)