-
Notifications
You must be signed in to change notification settings - Fork 0
/
keyboardbreakout2_framework.kicad_pcb
4048 lines (4034 loc) · 162 KB
/
keyboardbreakout2_framework.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")
(title_block
(comment 4 "AISLER Project ID: LTFLLIPQ")
)
(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 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "../gerber/")
)
)
(net 0 "")
(net 1 "unconnected-(U1-Pad2)")
(net 2 "unconnected-(U1-Pad3)")
(net 3 "unconnected-(U1-Pad4)")
(net 4 "unconnected-(U1-Pad5)")
(net 5 "unconnected-(U1-Pad6)")
(net 6 "unconnected-(U1-Pad7)")
(net 7 "unconnected-(U1-Pad8)")
(net 8 "unconnected-(U1-Pad9)")
(net 9 "unconnected-(U1-Pad10)")
(net 10 "unconnected-(U1-Pad11)")
(net 11 "unconnected-(U1-Pad12)")
(net 12 "unconnected-(U1-Pad13)")
(net 13 "unconnected-(U1-Pad14)")
(net 14 "unconnected-(U1-Pad18)")
(net 15 "unconnected-(U1-Pad19)")
(net 16 "unconnected-(U1-Pad20)")
(net 17 "unconnected-(U1-Pad22)")
(net 18 "Net-(U1-Pad24)")
(net 19 "Net-(U1-Pad28)")
(net 20 "unconnected-(U1-Pad26)")
(net 21 "Net-(U1-Pad23)")
(net 22 "Net-(JPWR1-Pad2)")
(net 23 "Net-(JUSB1-Pad3)")
(net 24 "Net-(JUSB1-Pad2)")
(net 25 "Net-(JUSB1-Pad1)")
(net 26 "unconnected-(U1-Pad33)")
(net 27 "unconnected-(U1-Pad34)")
(net 28 "unconnected-(U1-Pad35)")
(net 29 "unconnected-(U1-Pad36)")
(net 30 "unconnected-(U1-Pad37)")
(net 31 "unconnected-(U1-Pad39)")
(net 32 "unconnected-(U1-Pad40)")
(net 33 "unconnected-(U1-Pad41)")
(net 34 "unconnected-(U1-Pad42)")
(net 35 "unconnected-(U1-Pad43)")
(net 36 "unconnected-(U1-Pad44)")
(net 37 "unconnected-(U1-Pad45)")
(net 38 "unconnected-(U1-Pad46)")
(net 39 "unconnected-(U1-Pad47)")
(net 40 "unconnected-(U1-Pad48)")
(net 41 "unconnected-(U1-Pad49)")
(net 42 "unconnected-(U1-Pad50)")
(net 43 "GND")
(net 44 "+5V")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" locked (layer "F.Cu")
(tedit 59FED5CC) (tstamp 131f74ee-5fca-4081-b7c6-2fb29060a0ca)
(at 81.5 57.065 90)
(descr "Through hole straight pin header, 1x05, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.54mm single row")
(attr through_hole board_only exclude_from_bom)
(fp_text reference "REF**" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b00dc5c-c831-4b61-b42b-6c7842f78e50)
)
(fp_text value "PinHeader_1x05_P2.54mm_Vertical" (at 0 12.49 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37633f6a-0892-414e-af1d-554a5eeb690f)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e8fe78b-1e87-406a-a3d1-4751f88e66da)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0baf20fe-b9eb-4599-9212-c3031b2f5171))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 237438d2-f748-4739-9428-24e35496b96a))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 7641ac69-32c8-4820-9bfa-5637a1bacded))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 7cc7aa69-063d-4260-be37-40b60e3df3e8))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp 9f9fe552-0de5-4780-b8e5-b3db954bb42f))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp fd9dfb04-5385-493c-8520-93541493fd52))
(fp_line (start -1.8 -1.8) (end -1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 06656ee3-d097-4490-b9a6-08927119818d))
(fp_line (start -1.8 11.95) (end 1.8 11.95) (layer "F.CrtYd") (width 0.05) (tstamp 0a7cdb1a-1f89-4661-ba8c-b85d4446fccf))
(fp_line (start 1.8 11.95) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5027647b-9bd5-4703-ab1b-cdbf19592e86))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d0802abd-6e07-4139-8349-6b0b6f6dc420))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1bec0452-bcff-4f82-9043-8eeff2c6aed7))
(fp_line (start -1.27 11.43) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 70a5eece-c344-4406-9660-ff89420773ad))
(fp_line (start 1.27 -1.27) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 92b5f9c4-65dc-413e-8a89-38845ed99746))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp a27adf8a-0aeb-4145-8868-3a5fbf10f6a1))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp ca5e66dd-b271-43a5-adc7-3a2fa2b73247))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 83816712-9958-42f6-8d24-4a2e6a129535))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp b27a2923-573b-493d-b589-3104758ed800))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 2bcb3afc-5138-4948-9911-881360e27bb0))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 28482dd8-cfbf-4a72-a824-8bfe164e2419))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp b43f94f5-f040-4b21-b007-b08baf58888a))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A425) (tstamp 3be2c64f-abd6-429f-ba1f-516eb691729e)
(at 75 52.5 180)
(descr "Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x03 2.54mm double row")
(property "Sheetfile" "keyboardbreakout2_framework.kicad_sch")
(property "Sheetname" "")
(path "/f15f5360-6898-4b5a-a12d-4f0ff3d9c56c")
(attr through_hole)
(fp_text reference "JLED1" (at -1.27 7.2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e9a6d9f-ed92-4a9e-ade4-21557bd6cfb7)
)
(fp_text value "Conn_02x03_Odd_Even" (at -1.27 7.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df0eac4f-4a00-4c13-9404-6d38cee4180b)
)
(fp_text user "${REFERENCE}" (at -1.27 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2843be2-93a6-4ad4-8fda-e82b0f25aeda)
)
(fp_line (start -1.27 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 43211acd-ca7c-4fb3-bd04-a0ee3ec32797))
(fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6954daa8-2789-4823-8142-7ba2993e71d3))
(fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 6a0fcd53-a1b6-43c6-9cd4-9c6e4fef6e2f))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6f6f75e5-e64b-41bb-bbf0-3d63de1f6d1f))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp b7debb4d-9de0-4e38-8924-683c96189fc8))
(fp_line (start -3.87 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp d24f0d67-adcf-4c71-a9f7-ba0231b8a486))
(fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp e7ce3acb-c17e-47ae-9253-bf7b931dcb8e))
(fp_line (start -3.87 -1.33) (end -3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp f8083090-ec81-42b5-aacb-6eaa01bdc7e7))
(fp_line (start -4.34 6.85) (end -4.34 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2511051e-ab88-4972-b34d-14697b2979da))
(fp_line (start 1.76 -1.8) (end 1.76 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 8e21acfc-bc0d-45d2-8513-b759878d5592))
(fp_line (start 1.76 6.85) (end -4.34 6.85) (layer "F.CrtYd") (width 0.05) (tstamp acb0a024-11f6-4437-89ae-cde1b33d5165))
(fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d367d5c2-0c79-40b6-a7ad-4d13be5165e9))
(fp_line (start 1.27 -0.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 3a545518-8ba7-4607-b2dc-bb06b86e85c4))
(fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 76fe8a30-0ab0-4a82-8290-9cb67f24f01d))
(fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer "F.Fab") (width 0.1) (tstamp 8fadf4c1-83ec-4422-832d-5ab6912cb476))
(fp_line (start -3.81 6.35) (end -3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp a81b3e76-a13d-4a5a-a336-ee4637fe7be3))
(fp_line (start 1.27 6.35) (end -3.81 6.35) (layer "F.Fab") (width 0.1) (tstamp d2330d04-a6ff-46b3-a7eb-8127db6d7d47))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 44 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 697a7171-54b0-40fb-90ab-ab74d5a313f7))
(pad "2" thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "Net-(U1-Pad23)") (pinfunction "Pin_2") (pintype "passive") (tstamp 67abf334-6ba7-4236-ac50-062db633ec69))
(pad "3" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 44 "+5V") (pinfunction "Pin_3") (pintype "passive") (tstamp c70c2284-9500-4fab-8a12-c2f7b6499425))
(pad "4" thru_hole oval (at -2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "Net-(U1-Pad28)") (pinfunction "Pin_4") (pintype "passive") (tstamp 095f37c7-8706-405a-825f-9b00b65923f6))
(pad "5" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 44 "+5V") (pinfunction "Pin_5") (pintype "passive") (tstamp 654bb2a8-a52b-4327-87cc-c71b81c1fe26))
(pad "6" thru_hole oval (at -2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "Net-(U1-Pad24)") (pinfunction "Pin_6") (pintype "passive") (tstamp b1d37d2d-e9ff-4717-b75d-b50886d2bcd4))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A420) (tstamp 50252a24-d1ea-4aac-8bf5-6048a7f37f2e)
(at 75 57.065 90)
(descr "Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x02 2.54mm single row")
(property "Sheetfile" "keyboardbreakout2_framework.kicad_sch")
(property "Sheetname" "")
(path "/d95488d9-9719-43de-9dcd-d0ebae4d1ea3")
(attr through_hole)
(fp_text reference "JPWR1" (at 2.065 1.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8603d12c-6f85-466c-a949-1c8f269642cc)
)
(fp_text value "Conn_01x02" (at 0 5.31 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae059491-ede4-4ddc-9fad-f84e0ce989d8)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 103eb98d-dc50-459e-829f-78a347c8ca9e)
)
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 13f510d0-e61d-4e50-90c3-5e5863df33f4))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 8c0a03e0-9390-4ebb-9286-600cecfa8d20))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp c9c0043d-4703-4362-a33c-cbff22daee6f))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e8ace254-2058-497c-abd7-015588b636c3))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp eab3fe84-3a3f-40fc-a1d1-3a5885b98153))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp f3215db8-3aef-4036-bcdd-9c0500e700ac))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 07678921-bc3c-4ff2-b58d-0fc829547980))
(fp_line (start -1.8 4.3) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 07c367fd-0a4d-4d04-ab28-9863ea08a794))
(fp_line (start 1.75 -1.8) (end 1.75 4.3) (layer "F.CrtYd") (width 0.05) (tstamp 526365d2-5914-46ee-95e0-80eb25aacdc1))
(fp_line (start 1.75 4.3) (end -1.8 4.3) (layer "F.CrtYd") (width 0.05) (tstamp 88769a56-d83b-4163-8e17-6dafc3747a72))
(fp_line (start 1.27 -0.635) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 18855766-c3ad-4748-999e-b411b5bbe699))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 2150afa9-98ca-4f9c-917b-549889e8e315))
(fp_line (start -1.27 3.81) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 47521772-4fa3-473d-9010-7a572a5f9c2e))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 93222668-8fff-4d66-880f-ad268a264e99))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp f28f586d-9190-4a52-9b80-e4ea20211fc4))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 70e747a8-ac7f-4319-aded-46a7c76ceae5))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "Net-(JPWR1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 44789653-15a3-4410-a517-ffcb4c89ae51))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x05_P2.54mm_Vertical" locked (layer "F.Cu")
(tedit 5A19A420) (tstamp e0573931-aa59-4fca-8655-0adc50a1eab6)
(at 81.5 54.525 90)
(descr "Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x05 2.54mm single row")
(property "Sheetfile" "keyboardbreakout2_framework.kicad_sch")
(property "Sheetname" "")
(path "/c3f2d4fa-c51d-4adc-abaf-611d657cd88d")
(attr through_hole)
(fp_text reference "JUSB1" (at 2.025 5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 979de443-02e3-47fb-9be3-8df91dd5fca9)
)
(fp_text value "Conn_01x05" (at 0 12.93 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f74a3288-afc3-489d-b4ad-6c3b4ea35553)
)
(fp_text user "${REFERENCE}" (at 0 5.08) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 877d5b07-d45e-46a2-bef9-796d6e7229c8)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 7b91037a-b0e3-48d6-9230-16f36e5655f5))
(fp_line (start 1.33 1.27) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp acb5d0c0-99b9-4ecc-aef9-68e2b5f7c14a))
(fp_line (start -1.33 1.27) (end -1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp bfaf9094-8207-4f5f-b775-257d61dc1cdb))
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp d8bee1ba-b44c-4640-b97d-52b2070b9725))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp db823843-b2c5-427c-9e39-83fa3be12f60))
(fp_line (start -1.33 11.49) (end 1.33 11.49) (layer "F.SilkS") (width 0.12) (tstamp ea735529-89cb-4f6d-aac3-adc613fcecb5))
(fp_line (start 1.75 11.9) (end -1.8 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 1dfc4fbf-6ca4-49cb-b143-b06a52fdd36d))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 257a32b5-1505-4ef9-8e6e-80a89f7b2e92))
(fp_line (start 1.75 -1.8) (end 1.75 11.9) (layer "F.CrtYd") (width 0.05) (tstamp 34d59f2a-a267-46c2-89dc-bfb63783494d))
(fp_line (start -1.8 11.9) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 861a9c11-9105-4650-aba1-ba244b8825bf))
(fp_line (start -1.27 11.43) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 24763a1c-f96c-409b-af50-d71dc9df3304))
(fp_line (start 1.27 -0.635) (end 1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp 3f196e85-9e0e-4e9b-a172-68f3ef7d2839))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp a7740ccf-7a6a-4596-9b1e-125037335d04))
(fp_line (start 1.27 11.43) (end -1.27 11.43) (layer "F.Fab") (width 0.1) (tstamp d58ab9fc-3252-479f-a869-d6cae66b54ea))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp f990d316-4d5f-4a9c-be64-816fbf542796))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "Net-(JUSB1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 384babc6-5967-4f91-8992-e835f258333a))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "Net-(JUSB1-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 505ddbd1-fb7e-4d17-9193-f49c08685056))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "Net-(JUSB1-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 415a9e2d-fcde-4959-8ce5-e134bd5919f9))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp db6eb9ec-f55b-4180-a99c-b86beca844dc))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 43 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp f83f4c03-c80c-4b93-a1ca-a1043de8c859))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x05_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "footprints:10156001-051100LF" locked (layer "F.Cu")
(tedit 0) (tstamp fb6768d3-604b-4222-ab9d-fdf0f7a4cca5)
(at 80.5 46.5)
(property "LCSC" "C3643393")
(property "Sheetfile" "keyboardbreakout2_framework.kicad_sch")
(property "Sheetname" "")
(path "/b3b0842e-320e-49f4-a905-1d56558400d0")
(attr through_hole)
(fp_text reference "U1" (at 6.000001 1.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9671bcd-c9fc-45f0-a629-75122bd49cd0)
)
(fp_text value "10156001-051100LF" (at 6.000001 1.8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3bdebf80-0601-4111-975e-87e33f36dbca)
)
(fp_text user "*" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f00aea4-31f2-4506-815a-74c34921c30d)
)
(fp_text user "Copyright 2021 Accelerated Designs. All rights reserved." (at 0 0) (layer "Cmts.User") hide
(effects (font (size 0.127 0.127) (thickness 0.002)))
(tstamp 79f46548-29a8-40e3-b2f8-8a32c5b8032b)
)
(fp_text user "*" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16d63a05-5a3a-4627-b1cd-ee5d0798ebe8)
)
(fp_line (start 12.485142 3.7685) (end 13.302501 3.7685) (layer "F.SilkS") (width 0.12) (tstamp 69ab4735-d4b0-454d-8643-4b92c8600b99))
(fp_line (start 13.302501 3.7685) (end 13.302501 -0.1685) (layer "F.SilkS") (width 0.12) (tstamp 70972e5d-a505-47eb-9138-33666302476d))
(fp_line (start -1.302499 3.7685) (end -0.48514 3.7685) (layer "F.SilkS") (width 0.12) (tstamp 782183e0-130e-401d-98a6-bfb0ae0c8fa9))
(fp_line (start -0.48514 -0.1685) (end -1.302499 -0.1685) (layer "F.SilkS") (width 0.12) (tstamp 7e869dad-b31a-4fb1-aec1-80e086ec09ff))
(fp_line (start -1.302499 -0.1685) (end -1.302499 3.7685) (layer "F.SilkS") (width 0.12) (tstamp c93737c3-6dfb-43d9-8433-316d1d683e0f))
(fp_line (start 13.302501 -0.1685) (end 12.485142 -0.1685) (layer "F.SilkS") (width 0.12) (tstamp ff286dcc-1730-44a7-a9a4-221113b296b8))
(fp_line (start 15.588501 -0.254) (end 15.842501 -0.254) (layer "Cmts.User") (width 0.1) (tstamp 0a21055d-baeb-4063-a17f-28512e7ec9d9))
(fp_line (start -1.175499 -11.214098) (end -0.921499 -11.087098) (layer "Cmts.User") (width 0.1) (tstamp 0ca0c3fe-c6eb-4314-9e9b-d4037eb8f017))
(fp_line (start 0.499999 -5.499098) (end 0.753999 -5.626098) (layer "Cmts.User") (width 0.1) (tstamp 19dd1744-d9ce-440c-b8f3-e0f2292fa216))
(fp_line (start -11.589499 -0.0415) (end -11.589499 -1.3115) (layer "Cmts.User") (width 0.1) (tstamp 19e31668-426a-4376-a4c9-c38d971d6124))
(fp_line (start -10.319499 3.6415) (end -10.319499 4.9115) (layer "Cmts.User") (width 0.1) (tstamp 1c517c6d-14bb-42eb-9da3-0e2de1d97e21))
(fp_line (start -11.716499 -0.2955) (end -11.462499 -0.2955) (layer "Cmts.User") (width 0.1) (tstamp 2a52a1fc-0f54-4895-9823-0674153f27d3))
(fp_line (start -10.319499 -0.0415) (end -10.192499 -0.2955) (layer "Cmts.User") (width 0.1) (tstamp 31173853-d21f-4e65-abb0-8b16e345980e))
(fp_line (start 0.753999 -5.626098) (end 0.753999 -5.372098) (layer "Cmts.User") (width 0.1) (tstamp 32e5dd16-93f1-4bba-9996-c6b02a0c5fad))
(fp_line (start 15.715501 3.6) (end 15.715501 4.87) (layer "Cmts.User") (width 0.1) (tstamp 34f00764-8a38-429d-beb5-e123bc4be5d2))
(fp_line (start 13.175501 -11.214098) (end 12.921501 -11.341098) (layer "Cmts.User") (width 0.1) (tstamp 3781ca3a-927a-443a-87d2-a622d8084ce4))
(fp_line (start -10.319499 -0.0415) (end -10.319499 -1.3115) (layer "Cmts.User") (width 0.1) (tstamp 380ab333-67a9-4dea-b6b5-006ab5c04d13))
(fp_line (start -1.175499 -11.214098) (end -0.921499 -11.341098) (layer "Cmts.User") (width 0.1) (tstamp 3ad36d53-38f3-49c7-8301-f63f278829c9))
(fp_line (start -10.319499 3.6415) (end -10.446499 3.8955) (layer "Cmts.User") (width 0.1) (tstamp 3ae35b80-c1d3-4ec4-b47b-4505ab82f7e1))
(fp_line (start 15.715501 0) (end 15.842501 -0.254) (layer "Cmts.User") (width 0.1) (tstamp 3cac6fed-db68-4f6b-8277-0bceec0bab72))
(fp_line (start 0 0) (end 0 -5.880098) (layer "Cmts.User") (width 0.1) (tstamp 45eb9e55-10a2-47ca-98af-8d39a53891a6))
(fp_line (start 6.000001 1.8) (end -11.970499 1.8) (layer "Cmts.User") (width 0.1) (tstamp 4915be58-e8e8-477f-bfa1-a6be58ec3c56))
(fp_line (start 0.499999 -5.499098) (end 0.753999 -5.372098) (layer "Cmts.User") (width 0.1) (tstamp 597bd24c-085b-4a73-a4fd-23c145187aaa))
(fp_line (start 12.921501 -11.341098) (end 12.921501 -11.087098) (layer "Cmts.User") (width 0.1) (tstamp 5fb6be0a-b8d0-4bd6-9d1e-f84df3bb14a1))
(fp_line (start -10.319499 3.6415) (end -10.192499 3.8955) (layer "Cmts.User") (width 0.1) (tstamp 61a569a9-fea0-4b50-8466-46d41e87d208))
(fp_line (start -1.175499 3.6415) (end -10.700499 3.6415) (layer "Cmts.User") (width 0.1) (tstamp 636ebcbc-05a8-4c3f-bbf7-58529cd3b314))
(fp_line (start 0.499999 -5.499098) (end 1.769999 -5.499098) (layer "Cmts.User") (width 0.1) (tstamp 683c862d-b9b2-4ec7-9e29-3ebb668e3633))
(fp_line (start 0 3.6) (end 16.096501 3.6) (layer "Cmts.User") (width 0.1) (tstamp 6a420540-9bb0-40b0-8941-0057b9e39724))
(fp_line (start 0 -5.499098) (end -0.254 -5.372098) (layer "Cmts.User") (width 0.1) (tstamp 744de5ed-44f9-44bb-9f29-e0c04ea5588b))
(fp_line (start -11.716499 2.054) (end -11.462499 2.054) (layer "Cmts.User") (width 0.1) (tstamp 7c42bd83-daa9-4a9b-bd00-3227afcc5dd6))
(fp_line (start -11.589499 1.8) (end -11.589499 3.07) (layer "Cmts.User") (width 0.1) (tstamp 7f2e2e95-8507-4067-abc0-78ed6fc615b4))
(fp_line (start -1.175499 -0.0415) (end -11.970499 -0.0415) (layer "Cmts.User") (width 0.1) (tstamp 834530af-9517-4ecd-9c49-f435d0f9f260))
(fp_line (start 15.715501 0) (end 15.715501 -1.27) (layer "Cmts.User") (width 0.1) (tstamp 93007476-4217-4209-8057-eb013943d6ec))
(fp_line (start -11.589499 -0.0415) (end -11.716499 -0.2955) (layer "Cmts.User") (width 0.1) (tstamp 9e21a595-6aea-4caa-9c53-996f49569724))
(fp_line (start -1.175499 -11.214098) (end 13.175501 -11.214098) (layer "Cmts.User") (width 0.1) (tstamp 9edf8ccd-bca9-461e-ad3a-511ff0803e0c))
(fp_line (start -1.175499 -0.0415) (end -1.175499 -11.595098) (layer "Cmts.User") (width 0.1) (tstamp a02594bc-438e-43bb-8336-251e174e191d))
(fp_line (start 15.715501 0) (end 15.588501 -0.254) (layer "Cmts.User") (width 0.1) (tstamp a1aab107-74f6-4068-b3be-0f102dbd5d4c))
(fp_line (start -10.446499 -0.2955) (end -10.192499 -0.2955) (layer "Cmts.User") (width 0.1) (tstamp a389a778-a977-49f8-98a8-f51974fd7c65))
(fp_line (start -10.319499 -0.0415) (end -10.446499 -0.2955) (layer "Cmts.User") (width 0.1) (tstamp aa400ff8-6424-4b46-88f2-46d5f8a55daa))
(fp_line (start 0.499999 0) (end 0.499999 -5.880098) (layer "Cmts.User") (width 0.1) (tstamp b18ac576-bb0c-4047-9764-e6aca75779b0))
(fp_line (start -11.589499 1.8) (end -11.716499 2.054) (layer "Cmts.User") (width 0.1) (tstamp b18f8574-f684-4acb-8497-6ef8031025f4))
(fp_line (start -1.175499 -0.0415) (end -10.700499 -0.0415) (layer "Cmts.User") (width 0.1) (tstamp b30d96c0-fdeb-4663-a73a-456d5d6011a5))
(fp_line (start -10.446499 3.8955) (end -10.192499 3.8955) (layer "Cmts.User") (width 0.1) (tstamp b5d34381-4b0c-4d74-8f05-d4753bad6f9f))
(fp_line (start 0 -5.499098) (end -0.254 -5.626098) (layer "Cmts.User") (width 0.1) (tstamp b735c498-5417-4798-81e7-d92274f76e41))
(fp_line (start 0 -5.499098) (end -1.27 -5.499098) (layer "Cmts.User") (width 0.1) (tstamp b9bee27c-b046-4b0e-b0b0-aa3149f520a8))
(fp_line (start 13.175501 -0.0415) (end 13.175501 -11.595098) (layer "Cmts.User") (width 0.1) (tstamp be6a6d26-a767-40c9-9e01-708faf24d5f2))
(fp_line (start -0.254 -5.626098) (end -0.254 -5.372098) (layer "Cmts.User") (width 0.1) (tstamp c0e40484-39ca-4bf3-8e81-e225baa9374d))
(fp_line (start -11.589499 -0.0415) (end -11.462499 -0.2955) (layer "Cmts.User") (width 0.1) (tstamp cc1fa429-1a74-4e65-978b-74b6a6e9da35))
(fp_line (start 15.588501 3.854) (end 15.842501 3.854) (layer "Cmts.User") (width 0.1) (tstamp d9d9d884-8097-4af3-862f-026ebfc1d6d4))
(fp_line (start 13.175501 -11.214098) (end 12.921501 -11.087098) (layer "Cmts.User") (width 0.1) (tstamp db5591b6-803b-446a-b1fc-f812705f5c0b))
(fp_line (start 0 0) (end 16.096501 0) (layer "Cmts.User") (width 0.1) (tstamp ea37ae95-cb57-4177-812a-823c89e6be42))
(fp_line (start -11.589499 1.8) (end -11.462499 2.054) (layer "Cmts.User") (width 0.1) (tstamp eee023d5-1725-42cc-adc9-0d00d1ab6c7b))
(fp_line (start -0.921499 -11.341098) (end -0.921499 -11.087098) (layer "Cmts.User") (width 0.1) (tstamp f21b3126-e937-4387-9baa-855353680b1a))
(fp_line (start 15.715501 3.6) (end 15.842501 3.854) (layer "Cmts.User") (width 0.1) (tstamp f710b1ec-953e-4359-9cfb-1d16270f864a))
(fp_line (start 15.715501 3.6) (end 15.588501 3.854) (layer "Cmts.User") (width 0.1) (tstamp fa63e1c4-43a0-4f85-8148-1f19fbff3d9e))
(fp_line (start -1.429499 -1.054099) (end -1.429499 4.654099) (layer "F.CrtYd") (width 0.05) (tstamp 1886a9e6-e968-4c7a-b2c7-ef6cb9da5e57))
(fp_line (start 13.429501 4.654099) (end 13.429501 -1.054099) (layer "F.CrtYd") (width 0.05) (tstamp 35afdc26-542d-4ab3-b81d-9d1b85653815))
(fp_line (start -1.429499 4.654099) (end 13.429501 4.654099) (layer "F.CrtYd") (width 0.05) (tstamp 37df4c60-2c31-44a8-847e-a273552de7d0))
(fp_line (start 13.429501 -1.054099) (end -1.429499 -1.054099) (layer "F.CrtYd") (width 0.05) (tstamp 5e6f3be8-7bff-4c7d-b611-faf7d7b1d566))
(fp_line (start 13.429501 -1.054099) (end -1.429499 -1.054099) (layer "F.CrtYd") (width 0.05) (tstamp 6765aeda-57f2-421d-b160-58a95bfef3e3))
(fp_line (start -1.429499 -1.054099) (end -1.429499 4.654099) (layer "F.CrtYd") (width 0.05) (tstamp dbbaed81-c652-487b-9217-dcb62dd7e47d))
(fp_line (start -1.429499 4.654099) (end 13.429501 4.654099) (layer "F.CrtYd") (width 0.05) (tstamp ec46ce47-2a2d-461c-8642-cee8baca4721))
(fp_line (start 13.429501 4.654099) (end 13.429501 -1.054099) (layer "F.CrtYd") (width 0.05) (tstamp ecd037ce-1b53-4378-b5c7-0a2510e3037d))
(fp_line (start 13.175501 3.6415) (end 13.175501 -0.0415) (layer "F.Fab") (width 0.1) (tstamp 11dde64a-2f68-498b-8bc3-498b5d57f23a))
(fp_line (start 13.175501 -0.0415) (end -1.175499 -0.0415) (layer "F.Fab") (width 0.1) (tstamp 8708511f-9c29-4ba8-96aa-8baf71dfcfa9))
(fp_line (start -1.175499 -0.0415) (end -1.175499 3.6415) (layer "F.Fab") (width 0.1) (tstamp a2260c28-62ac-4bbd-8fea-abca1b7d33e7))
(fp_line (start -1.175499 3.6415) (end 13.175501 3.6415) (layer "F.Fab") (width 0.1) (tstamp dcf3fc16-8f59-4a9a-a5f6-9f20c58d6bc6))
(fp_circle (center 0 -1.905) (end 0.381 -1.905) (layer "F.Fab") (width 0.1) (fill none) (tstamp fb211314-c863-42db-8325-190017947154))
(pad "1" smd rect locked (at 0 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "GND") (pinfunction "1") (pintype "unspecified") (tstamp bc4b3ef3-e765-4fbf-bc25-28adc403a19a))
(pad "2" smd rect locked (at 0.500002 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "unconnected-(U1-Pad2)") (pinfunction "2") (pintype "unspecified") (tstamp 618a24d1-19a6-44de-acd5-83d9d73692b0))
(pad "3" smd rect locked (at 1.000001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "unconnected-(U1-Pad3)") (pinfunction "3") (pintype "unspecified") (tstamp e8f4230e-4bdd-4799-9deb-b45a5a218232))
(pad "4" smd rect locked (at 1.5 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "unconnected-(U1-Pad4)") (pinfunction "4") (pintype "unspecified") (tstamp d2b88ebd-eba6-4ef5-ae54-bc0a9582af17))
(pad "5" smd rect locked (at 2.000001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "unconnected-(U1-Pad5)") (pinfunction "5") (pintype "unspecified") (tstamp b85321f2-5190-4aca-a042-09bc2bd15570))
(pad "6" smd rect locked (at 2.5 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "unconnected-(U1-Pad6)") (pinfunction "6") (pintype "unspecified") (tstamp fa94a855-6bdc-48dc-8a64-df48d3228bf2))
(pad "7" smd rect locked (at 3.000002 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "unconnected-(U1-Pad7)") (pinfunction "7") (pintype "unspecified") (tstamp e0db92ee-bde3-4df8-b910-fd567045ab01))
(pad "8" smd rect locked (at 3.500001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "unconnected-(U1-Pad8)") (pinfunction "8") (pintype "unspecified") (tstamp 64b6e228-8b3f-49da-a7d4-9463258b32c4))
(pad "9" smd rect locked (at 4 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(U1-Pad9)") (pinfunction "9") (pintype "unspecified") (tstamp 5c0bc2a2-7b58-4d77-855d-a2d12dddad53))
(pad "10" smd rect locked (at 4.500001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(U1-Pad10)") (pinfunction "10") (pintype "unspecified") (tstamp c38a373f-6d06-4ec8-9d3a-ab4d950e1274))
(pad "11" smd rect locked (at 5 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "unconnected-(U1-Pad11)") (pinfunction "11") (pintype "unspecified") (tstamp d01a8825-32ce-4f51-9de6-b5ae0bbb0c1c))
(pad "12" smd rect locked (at 5.500002 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "unconnected-(U1-Pad12)") (pinfunction "12") (pintype "unspecified") (tstamp 9f43a977-e241-43d7-975b-16ba5c5d28d7))
(pad "13" smd rect locked (at 6.000001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "unconnected-(U1-Pad13)") (pinfunction "13") (pintype "unspecified") (tstamp 2ddbca23-7df0-4d03-ab2a-3f709cd644bc))
(pad "14" smd rect locked (at 6.5 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "unconnected-(U1-Pad14)") (pinfunction "14") (pintype "unspecified") (tstamp 93bd267b-e45c-4498-8e02-e62c0ea9b405))
(pad "15" smd rect locked (at 7.000001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "GND") (pinfunction "15") (pintype "unspecified") (tstamp 52aa189b-d234-4786-89a6-2d4f9aa09574))
(pad "16" smd rect locked (at 7.5 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "GND") (pinfunction "16") (pintype "unspecified") (tstamp 0d2c488d-01c8-4a30-96cb-e51d536a0f1c))
(pad "17" smd rect locked (at 8.000002 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "GND") (pinfunction "17") (pintype "unspecified") (tstamp dc3284fd-de09-4bbd-b9cb-b6ee823f92b3))
(pad "18" smd rect locked (at 8.500001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "unconnected-(U1-Pad18)") (pinfunction "18") (pintype "unspecified") (tstamp a4d70992-9e18-4fdc-8f2b-3b1ca9a03948))
(pad "19" smd rect locked (at 9 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "unconnected-(U1-Pad19)") (pinfunction "19") (pintype "unspecified") (tstamp b96a8883-7b0d-4444-a089-bf204c391961))
(pad "20" smd rect locked (at 9.500001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "unconnected-(U1-Pad20)") (pinfunction "20") (pintype "unspecified") (tstamp a0ee7773-2720-4f98-b322-7b70ce872ccc))
(pad "21" smd rect locked (at 10 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "GND") (pinfunction "21") (pintype "unspecified") (tstamp 87becea9-f508-4107-a5e3-0c4744cad053))
(pad "22" smd rect locked (at 10.500002 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "unconnected-(U1-Pad22)") (pinfunction "22") (pintype "unspecified") (tstamp 8cceb885-e23b-42b5-bb61-0cc0aa628b1a))
(pad "23" smd rect locked (at 11.000001 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(U1-Pad23)") (pinfunction "23") (pintype "unspecified") (tstamp a0f7faa9-be00-411b-aed3-077a799fa12e))
(pad "24" smd rect locked (at 11.5 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "Net-(U1-Pad24)") (pinfunction "24") (pintype "unspecified") (tstamp 0cf2ef91-9c87-4522-83ba-440c900269e0))
(pad "25" smd rect locked (at 12.000002 0.000001) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "GND") (pinfunction "25") (pintype "unspecified") (tstamp 0af2a0e8-0f9a-43e5-9731-a442338faafb))
(pad "26" smd rect locked (at 12.000002 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(U1-Pad26)") (pinfunction "26") (pintype "unspecified") (tstamp 3894de3e-c1ac-4f6a-afeb-adbf343f5966))
(pad "27" smd rect locked (at 11.5 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 44 "+5V") (pinfunction "27") (pintype "unspecified") (tstamp 8bfec112-823e-4320-b08a-1c93acc87e25))
(pad "28" smd rect locked (at 11.000001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "Net-(U1-Pad28)") (pinfunction "28") (pintype "unspecified") (tstamp ee9266c5-be9a-4e30-9b64-40ec97006afe))
(pad "29" smd rect locked (at 10.500002 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(JPWR1-Pad2)") (pinfunction "29") (pintype "unspecified") (tstamp 53379e4b-665f-4644-82d7-8b8d06036ca6))
(pad "30" smd rect locked (at 10 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(JUSB1-Pad3)") (pinfunction "30") (pintype "unspecified") (tstamp 9800ac70-1f4c-48ee-928c-955b1db6cbb5))
(pad "31" smd rect locked (at 9.500001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(JUSB1-Pad2)") (pinfunction "31") (pintype "unspecified") (tstamp b1153763-209e-43b9-8bd2-52d5bdfdc274))
(pad "32" smd rect locked (at 9 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(JUSB1-Pad1)") (pinfunction "32") (pintype "unspecified") (tstamp c9d05557-ec45-42c7-a3e2-784ee78add6d))
(pad "33" smd rect locked (at 8.500001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(U1-Pad33)") (pinfunction "33") (pintype "unspecified") (tstamp 4143ec6f-9c1e-458e-b962-2326c17c2c45))
(pad "34" smd rect locked (at 8.000002 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(U1-Pad34)") (pinfunction "34") (pintype "unspecified") (tstamp 52c6f71a-f3e7-4344-9058-8de55a343b32))
(pad "35" smd rect locked (at 7.5 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(U1-Pad35)") (pinfunction "35") (pintype "unspecified") (tstamp 597a445d-048e-4a42-8a11-925960013ca1))
(pad "36" smd rect locked (at 7.000001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "unconnected-(U1-Pad36)") (pinfunction "36") (pintype "unspecified") (tstamp d1b1931d-3a22-4e8f-96b5-fce09eebfdaf))
(pad "37" smd rect locked (at 6.5 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "unconnected-(U1-Pad37)") (pinfunction "37") (pintype "unspecified") (tstamp 62c05cf0-c4a5-4a35-a264-46826b72b1a0))
(pad "38" smd rect locked (at 6.000001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 43 "GND") (pinfunction "38") (pintype "unspecified") (tstamp 4ad54374-c2fc-4ddd-b624-af1f855b5f3d))
(pad "39" smd rect locked (at 5.500002 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "unconnected-(U1-Pad39)") (pinfunction "39") (pintype "unspecified") (tstamp 22f48749-7674-4a47-9e86-c4f5459bde34))
(pad "40" smd rect locked (at 5 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "unconnected-(U1-Pad40)") (pinfunction "40") (pintype "unspecified") (tstamp aacc2c8b-8eaf-4472-95aa-ff6b7813e4fa))
(pad "41" smd rect locked (at 4.500001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "unconnected-(U1-Pad41)") (pinfunction "41") (pintype "unspecified") (tstamp 1b7288e0-4c47-45a7-a385-5838e8e57f47))
(pad "42" smd rect locked (at 4 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "unconnected-(U1-Pad42)") (pinfunction "42") (pintype "unspecified") (tstamp 35682f87-5327-4773-a1a9-a4007bf45174))
(pad "43" smd rect locked (at 3.500001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "unconnected-(U1-Pad43)") (pinfunction "43") (pintype "unspecified") (tstamp 141513a7-b30c-4d91-add0-65af70f3e34b))
(pad "44" smd rect locked (at 3.000002 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "unconnected-(U1-Pad44)") (pinfunction "44") (pintype "unspecified") (tstamp d7b43465-a965-4436-afcb-241ad0b67469))
(pad "45" smd rect locked (at 2.5 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 37 "unconnected-(U1-Pad45)") (pinfunction "45") (pintype "unspecified") (tstamp 54caa7e0-bebd-4716-909e-fcace7fa520e))
(pad "46" smd rect locked (at 2.000001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 38 "unconnected-(U1-Pad46)") (pinfunction "46") (pintype "unspecified") (tstamp 3824b706-cd03-42dc-8634-f3f6a325dcef))
(pad "47" smd rect locked (at 1.5 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 39 "unconnected-(U1-Pad47)") (pinfunction "47") (pintype "unspecified") (tstamp 9d3afd6e-8ac3-493e-a3e5-a8eebac67bfe))
(pad "48" smd rect locked (at 1.000001 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 40 "unconnected-(U1-Pad48)") (pinfunction "48") (pintype "unspecified") (tstamp 73f2afd6-a4a4-450b-aea5-1843170b056e))
(pad "49" smd rect locked (at 0.500002 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 41 "unconnected-(U1-Pad49)") (pinfunction "49") (pintype "unspecified") (tstamp d4930e0b-6dc2-44f2-b06e-72a165aa131f))
(pad "50" smd rect locked (at 0 3.599999) (size 0.3048 1.6002) (layers "F.Cu" "F.Paste" "F.Mask")
(net 42 "unconnected-(U1-Pad50)") (pinfunction "50") (pintype "unspecified") (tstamp fcaad62e-8620-428f-aa71-98f771532afa))
)
(footprint "LOGO" (layer "B.Cu")
(tedit 0) (tstamp 6b4cf650-eb62-468a-b63f-c447f677004b)
(at 89 49)
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "G***" (at 0 0) (layer "B.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror))
(tstamp 8f415c8c-5774-465c-ba11-07c85bc4b693)
)
(fp_text value "LOGO" (at 0.75 0) (layer "B.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)) (justify mirror))
(tstamp e251cf56-2b39-4f4c-bbba-846aa4423022)
)
(fp_poly (pts
(xy -3.765403 1.819354)
(xy -4.013727 1.819354)
(xy -4.013727 2.067678)
(xy -3.765403 2.067678)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 107c3172-ec96-4a9e-97f1-71cc05af68f4))
(fp_poly (pts
(xy 0.613346 2.919074)
(xy 0.613389 2.875694)
(xy 0.613426 2.825989)
(xy 0.613456 2.773773)
(xy 0.613476 2.722857)
(xy 0.613484 2.677053)
(xy 0.613485 2.67075)
(xy 0.613478 2.626319)
(xy 0.61346 2.576433)
(xy 0.613431 2.524833)
(xy 0.613395 2.475261)
(xy 0.613354 2.431458)
(xy 0.613346 2.42496)
(xy 0.613208 2.305866)
(xy 0.364884 2.305866)
(xy 0.364884 3.040702)
(xy 0.613208 3.040702)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 121730b9-3d01-4b09-a0aa-05e9bc85d4ae))
(fp_poly (pts
(xy -2.310934 2.310934)
(xy -4.013727 2.310934)
(xy -4.013727 2.55419)
(xy -3.770471 2.55419)
(xy -2.55419 2.55419)
(xy -2.55419 3.770471)
(xy -3.770471 3.770471)
(xy -3.770471 2.55419)
(xy -4.013727 2.55419)
(xy -4.013727 4.013727)
(xy -2.310934 4.013727)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 24103578-1628-4189-a00d-b961e998bf0c))
(fp_poly (pts
(xy -2.305866 1.332841)
(xy -2.422012 1.332841)
(xy -2.455592 1.332786)
(xy -2.485958 1.332632)
(xy -2.511581 1.332394)
(xy -2.530931 1.33209)
(xy -2.54248 1.331736)
(xy -2.544907 1.331534)
(xy -2.551686 1.331225)
(xy -2.567119 1.331056)
(xy -2.589726 1.331026)
(xy -2.618028 1.331133)
(xy -2.650543 1.331378)
(xy -2.674551 1.331624)
(xy -2.797446 1.333021)
(xy -2.797446 1.581165)
(xy -2.305866 1.581165)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 36a1786a-c075-40fa-81d8-903c15bc3d60))
(fp_poly (pts
(xy -3.76531 -0.729768)
(xy -3.765297 -0.752721)
(xy -3.765284 -0.784873)
(xy -3.765272 -0.825291)
(xy -3.765261 -0.873037)
(xy -3.76525 -0.927178)
(xy -3.765241 -0.986777)
(xy -3.765233 -1.0509)
(xy -3.765227 -1.11861)
(xy -3.765222 -1.188972)
(xy -3.765219 -1.261051)
(xy -3.765218 -1.333912)
(xy -3.765218 -1.342977)
(xy -3.765219 -1.415798)
(xy -3.765222 -1.487904)
(xy -3.765226 -1.558366)
(xy -3.765232 -1.626252)
(xy -3.76524 -1.690634)
(xy -3.765249 -1.750581)
(xy -3.765259 -1.805163)
(xy -3.76527 -1.853451)
(xy -3.765282 -1.894515)
(xy -3.765295 -1.927425)
(xy -3.765309 -1.951251)
(xy -3.76531 -1.953651)
(xy -3.765403 -2.072745)
(xy -4.013727 -2.072745)
(xy -4.013727 -0.60814)
(xy -3.765403 -0.60814)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 4fb4f228-a7d9-4686-abdf-7d36ce0a12c2))
(fp_poly (pts
(xy -2.310934 -4.013727)
(xy -4.013727 -4.013727)
(xy -4.013727 -3.770471)
(xy -3.770471 -3.770471)
(xy -2.55419 -3.770471)
(xy -2.55419 -2.55419)
(xy -3.770471 -2.55419)
(xy -3.770471 -3.770471)
(xy -4.013727 -3.770471)
(xy -4.013727 -2.310934)
(xy -2.310934 -2.310934)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 6e5e9a7f-23ca-4c35-81c2-a801a4753baa))
(fp_poly (pts
(xy 2.559258 -2.559258)
(xy 2.310934 -2.559258)
(xy 2.310934 -2.310934)
(xy 2.559258 -2.310934)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 71388971-bed9-4f08-bfbd-940aeecba02d))
(fp_poly (pts
(xy -2.305866 0.846329)
(xy -2.55419 0.846329)
(xy -2.55419 1.094653)
(xy -2.305866 1.094653)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 7864158a-b92c-439b-bf7f-9970826625dc))
(fp_poly (pts
(xy -2.797446 -3.527215)
(xy -3.527215 -3.527215)
(xy -3.527215 -2.797446)
(xy -2.797446 -2.797446)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 7aea8853-4026-4942-aa72-e335041c1e60))
(fp_poly (pts
(xy 4.013727 2.310934)
(xy 2.310934 2.310934)
(xy 2.310934 2.55419)
(xy 2.55419 2.55419)
(xy 3.770471 2.55419)
(xy 3.770471 3.770471)
(xy 2.55419 3.770471)
(xy 2.55419 2.55419)
(xy 2.310934 2.55419)
(xy 2.310934 4.013727)
(xy 4.013727 4.013727)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp 846585e3-562f-4c99-ba79-d14dfc3a357b))
(fp_poly (pts
(xy 0.126696 -3.770471)
(xy 0.369952 -3.770471)
(xy 0.369952 -4.018795)
(xy 0.121628 -4.018795)
(xy 0.121628 -3.775539)
(xy -0.121628 -3.775539)
(xy -0.121628 -3.527215)
(xy 0.126696 -3.527215)
) (layer "B.SilkS") (width 0) (fill solid) (tstamp b414e163-9ffa-4c0e-ab45-6545ae4ebe6d))
(fp_poly (pts
(xy -1.089335 3.890832)
(xy -1.089257 3.832538)
(xy -1.089259 3.776771)
(xy -1.089337 3.724379)
(xy -1.089485 3.676214)
(xy -1.089699 3.633124)
(xy -1.089973 3.59596)
(xy -1.090302 3.565571)
(xy -1.090682 3.542806)
(xy -1.091106 3.528516)
(xy -1.091548 3.523563)
(xy -1.096754 3.523241)
(xy -1.111103 3.522892)
(xy -1.1336 3.522527)
(xy -1.163253 3.522157)
(xy -1.199067 3.521793)
(xy -1.24005 3.521446)
(xy -1.285208 3.521128)
(xy -1.333293 3.520851)
(xy -1.573564 3.519613)
(xy -1.574622 3.397985)
(xy -1.574965 3.353759)
(xy -1.575283 3.303572)
(xy -1.575557 3.251419)
(xy -1.575766 3.201296)
(xy -1.575887 3.157201)
(xy -1.575889 3.156087)
(xy -1.576097 3.035818)
(xy -1.696459 3.034459)
(xy -1.81682 3.033101)
(xy -1.817995 2.550389)
(xy -1.819171 2.067678)
(xy -1.581165 2.067678)
(xy -0.846269 2.067678)
(xy -0.608141 2.067678)
(xy -0.608141 2.310934)
(xy -0.360003 2.310934)
(xy -0.121628 2.310934)
(xy -0.121628 2.549309)
(xy -0.239455 2.547949)
(xy -0.357283 2.546588)
(xy -0.360003 2.310934)
(xy -0.608141 2.310934)
(xy -0.608141 2.549309)
(xy -0.725968 2.547949)
(xy -0.843795 2.546588)
(xy -0.846269 2.067678)
(xy -1.581165 2.067678)
(xy -1.581165 2.310934)
(xy -1.333028 2.310934)
(xy -1.094653 2.310934)
(xy -1.094653 2.549309)
(xy -1.21248 2.547949)
(xy -1.330307 2.546588)
(xy -1.331668 2.428761)
(xy -1.333028 2.310934)
(xy -1.581165 2.310934)
(xy -1.581165 2.797446)
(xy -1.094653 2.797446)
(xy -0.60326 2.797446)
(xy -0.364884 2.797446)
(xy -0.364884 3.035821)
(xy -0.482712 3.034461)
(xy -0.600539 3.033101)
(xy -0.601899 2.915273)
(xy -0.60326 2.797446)
(xy -1.094653 2.797446)
(xy -1.094653 3.035635)
(xy -1.337909 3.035635)
(xy -1.337909 3.283959)
(xy -1.089585 3.283959)
(xy -1.089585 3.040702)
(xy -0.608141 3.040702)
(xy -0.608141 3.278891)
(xy -0.851397 3.278891)
(xy -0.851397 3.283959)
(xy -0.60326 3.283959)
(xy -0.364884 3.283959)
(xy -0.116747 3.283959)
(xy 0.121628 3.283959)
(xy 0.121628 3.522334)
(xy 0.003801 3.520973)
(xy -0.114026 3.519613)
(xy -0.115387 3.401786)
(xy -0.116747 3.283959)
(xy -0.364884 3.283959)
(xy -0.364884 3.522334)
(xy -0.482712 3.520973)
(xy -0.600539 3.519613)
(xy -0.601899 3.401786)
(xy -0.60326 3.283959)
(xy -0.851397 3.283959)
(xy -0.851397 4.013727)
(xy -0.603073 4.013727)
(xy -0.603073 3.770471)
(xy 0.121628 3.770471)
(xy 0.121628 4.013727)
(xy 1.342977 4.013727)
(xy 1.342977 3.770471)
(xy 1.581165 3.770471)
(xy 1.581165 4.013727)
(xy 1.829489 4.013727)
(xy 1.829489 3.765587)
(xy 1.588767 3.762869)
(xy 1.587571 3.401786)
(xy 1.586375 3.040702)
(xy 1.824421 3.040702)
(xy 1.824421 3.283959)
(xy 2.072745 3.283959)
(xy 2.072745 3.035818)
(xy 1.952384 3.034459)
(xy 1.832023 3.033101)
(xy 1.830663 2.915273)
(xy 1.829302 2.797446)
(xy 2.072745 2.797446)
(xy 2.072918 2.674551)
(xy 2.072993 2.606284)
(xy 2.073028 2.53882)
(xy 2.073025 2.472913)
(xy 2.072986 2.409317)
(xy 2.072913 2.348785)
(xy 2.072808 2.292071)
(xy 2.072673 2.23993)
(xy 2.07251 2.193115)
(xy 2.072322 2.15238)
(xy 2.07211 2.118479)
(xy 2.071876 2.092166)
(xy 2.071623 2.074195)
(xy 2.071352 2.065319)
(xy 2.071245 2.064488)
(xy 2.065872 2.064051)
(xy 2.05125 2.06365)
(xy 2.028265 2.06329)
(xy 1.997806 2.062976)
(xy 1.960758 2.062714)
(xy 1.918008 2.062508)
(xy 1.870443 2.062364)
(xy 1.818949 2.062286)
(xy 1.764414 2.062281)
(xy 1.707725 2.062353)
(xy 1.70406 2.06236)
(xy 1.581165 2.06261)
(xy 1.581165 2.306053)
(xy 1.463338 2.304692)
(xy 1.345511 2.303332)
(xy 1.342793 2.06261)
(xy 1.094653 2.06261)
(xy 1.094653 2.305866)
(xy 0.851397 2.305866)
(xy 0.851397 2.310934)
(xy 1.09978 2.310934)
(xy 1.337909 2.310934)
(xy 1.337909 2.55419)
(xy 1.586233 2.55419)
(xy 1.586233 2.310934)
(xy 1.824421 2.310934)
(xy 1.824421 2.792378)
(xy 1.581165 2.792378)
(xy 1.581165 3.035821)
(xy 1.345511 3.033101)
(xy 1.344152 2.912831)
(xy 1.342794 2.792561)
(xy 1.222524 2.791203)
(xy 1.102255 2.789844)
(xy 1.101017 2.550389)
(xy 1.09978 2.310934)
(xy 0.851397 2.310934)
(xy 0.851397 2.797446)
(xy 1.094653 2.797446)
(xy 1.094653 3.035635)
(xy 0.851397 3.035635)
(xy 0.851397 3.040702)
(xy 1.099534 3.040702)
(xy 1.337909 3.040702)
(xy 1.337909 3.279078)
(xy 1.220082 3.277717)
(xy 1.102255 3.276357)
(xy 1.100894 3.15853)
(xy 1.099534 3.040702)
(xy 0.851397 3.040702)
(xy 0.851397 3.765344)
(xy 0.611941 3.764106)
(xy 0.372486 3.762869)
(xy 0.371126 3.645042)
(xy 0.369765 3.527215)
(xy 0.613208 3.527215)
(xy 0.613208 3.278891)
(xy 0.492847 3.278682)
(xy 0.448945 3.278563)
(xy 0.398906 3.278357)
(xy 0.34673 3.278085)
(xy 0.296416 3.277767)
(xy 0.251962 3.277425)
(xy 0.250858 3.277415)
(xy 0.12923 3.276357)
(xy 0.127871 3.156087)
(xy 0.126513 3.035818)
(xy 0.006243 3.034459)
(xy -0.114026 3.033101)
(xy -0.115387 2.915273)
(xy -0.116747 2.797446)
(xy 0.126351 2.797446)
(xy 0.12779 2.674551)
(xy 0.128168 2.629981)
(xy 0.128358 2.579303)
(xy 0.128362 2.526529)
(xy 0.128179 2.475674)
(xy 0.12781 2.43075)
(xy 0.127788 2.428852)
(xy 0.126346 2.306049)
(xy 0.00616 2.30469)
(xy -0.114026 2.303332)
(xy -0.115264 2.063877)
(xy -0.116501 1.824421)
(xy 0.121628 1.824421)
(xy 0.121628 2.067678)
(xy 0.369952 2.067678)
(xy 0.369952 1.824421)
(xy 1.342977 1.824421)
(xy 1.343227 1.701526)
(xy 1.34328 1.657211)
(xy 1.34328 1.607028)
(xy 1.343231 1.554917)
(xy 1.343136 1.504821)
(xy 1.342999 1.460679)
(xy 1.342989 1.45827)
(xy 1.342501 1.337909)
(xy 1.586233 1.337909)
(xy 1.586233 1.094653)
(xy 1.824421 1.094653)
(xy 1.824421 1.576097)
(xy 1.581165 1.576097)
(xy 1.581165 1.824421)
(xy 1.829489 1.824421)
(xy 1.829489 1.581165)
(xy 2.072745 1.581165)
(xy 2.072745 1.337909)
(xy 2.316002 1.337909)
(xy 2.316252 1.215014)
(xy 2.316305 1.170699)
(xy 2.316305 1.120516)
(xy 2.316256 1.068405)
(xy 2.31616 1.018308)
(xy 2.316023 0.974166)
(xy 2.316014 0.971758)
(xy 2.315526 0.851397)
(xy 2.55419 0.851397)
(xy 2.55419 1.094653)
(xy 2.797446 1.094653)
(xy 2.797446 1.337909)
(xy 3.045583 1.337909)
(xy 3.283958 1.337909)
(xy 3.283958 1.576284)
(xy 3.048304 1.573564)
(xy 3.046944 1.455736)
(xy 3.045583 1.337909)
(xy 2.797446 1.337909)
(xy 2.797446 1.576573)
(xy 2.677085 1.576085)
(xy 2.633433 1.575946)
(xy 2.583586 1.575848)
(xy 2.531485 1.575795)
(xy 2.481072 1.575792)
(xy 2.436287 1.575843)
(xy 2.433829 1.575847)
(xy 2.310934 1.576097)
(xy 2.310934 1.581165)
(xy 2.802327 1.581165)
(xy 3.040702 1.581165)
(xy 3.040702 1.81954)
(xy 2.805048 1.81682)
(xy 2.803687 1.698992)
(xy 2.802327 1.581165)
(xy 2.310934 1.581165)
(xy 2.310934 2.067678)
(xy 3.532282 2.067678)
(xy 3.532532 1.944783)
(xy 3.532586 1.900467)
(xy 3.532586 1.850284)
(xy 3.532537 1.798174)
(xy 3.532441 1.748077)
(xy 3.532304 1.703935)
(xy 3.532295 1.701526)
(xy 3.531807 1.581165)
(xy 3.770471 1.581165)
(xy 3.770471 1.824421)
(xy 4.018795 1.824421)
(xy 4.018795 1.576281)
(xy 3.898434 1.574922)
(xy 3.778073 1.573564)
(xy 3.776712 1.455736)
(xy 3.775352 1.337909)
(xy 4.018795 1.337909)
(xy 4.018933 1.216281)
(xy 4.018975 1.1729)
(xy 4.019012 1.123196)
(xy 4.019042 1.07098)
(xy 4.019062 1.020064)
(xy 4.019071 0.974259)
(xy 4.019071 0.967957)
(xy 4.019065 0.923535)
(xy 4.019046 0.873667)
(xy 4.019018 0.822091)
(xy 4.018982 0.772546)
(xy 4.01894 0.728771)
(xy 4.018933 0.722259)