forked from ducky64/e73-breakout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
e73-breakout.kicad_pcb
5170 lines (5154 loc) · 218 KB
/
e73-breakout.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 "A4")
(title_block
(title "E73-2G4M04S1D-51822 Breakout")
(date "2023-06-24")
(rev "v0.1")
(company "Namnlos")
(comment 1 "Jan Lindblom")
)
(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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White") (material "Direct Printing"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Black") (thickness 0.01) (material "Liquid Ink") (epsilon_r 3.3) (loss_tangent 0))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (color "FR4 natural") (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") (color "Black") (thickness 0.01) (material "Liquid Ink") (epsilon_r 3.3) (loss_tangent 0))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White") (material "Direct Printing"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.051)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 "gerbers")
)
)
(net 0 "")
(net 1 "+3V3")
(net 2 "GND")
(net 3 "/SWDIO")
(net 4 "/SWDCLK")
(net 5 "unconnected-(J1-SWO{slash}TDO-Pad6)")
(net 6 "unconnected-(J1-KEY-Pad7)")
(net 7 "unconnected-(J1-NC{slash}TDI-Pad8)")
(net 8 "/P000")
(net 9 "/P001")
(net 10 "/P002")
(net 11 "/P003")
(net 12 "/P004")
(net 13 "/P005")
(net 14 "/P006")
(net 15 "/P007")
(net 16 "/P010")
(net 17 "/P011")
(net 18 "/P012")
(net 19 "/P008")
(net 20 "/P009")
(net 21 "/P015")
(net 22 "/P014")
(net 23 "/P013")
(net 24 "/P025")
(net 25 "/P024")
(net 26 "/P023")
(net 27 "/P022")
(net 28 "/P021")
(net 29 "/P020")
(net 30 "/P019")
(net 31 "/P018")
(net 32 "/P017")
(net 33 "/P016")
(net 34 "/P028")
(net 35 "/P029")
(net 36 "/P030")
(footprint "Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005c9e216f)
(at 97.2275 124.9636 90)
(descr "Through hole straight pin header, 2x05, 1.27mm pitch, double rows")
(tags "Through hole pin header THT 2x05 1.27mm double row")
(property "Sheetfile" "e73-breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Cortex Debug Connector, standard ARM Cortex-M SWD and JTAG interface")
(property "ki_keywords" "Cortex Debug Connector ARM SWD JTAG")
(path "/00000000-0000-0000-0000-00005c9de675")
(attr through_hole)
(fp_text reference "J1" (at 3.45 2.6199 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24af130a-c2e0-4a00-b3f2-590b22a49c8e)
)
(fp_text value "Conn_ARM_JTAG_SWD_10" (at 0.635 6.775 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp baba3d0e-5a4b-4ba2-8ba4-25c331b7c989)
)
(fp_text user "${REFERENCE}" (at 0.635 2.54 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62afcf5c-203f-4de1-b79e-a90f461ff934)
)
(fp_line (start -1.13 -0.76) (end 0 -0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec485f39-af2d-402c-8a0f-755e2f7ef114))
(fp_line (start -1.13 0) (end -1.13 -0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 044ccce6-3f36-453e-b0f6-105779b4a9b2))
(fp_line (start -1.13 0.76) (end -1.13 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53be7d8b-a54e-4d76-a10f-43c31f0b7727))
(fp_line (start -1.13 0.76) (end -0.563471 0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f40d5881-f90e-4e91-a6ab-406dfd5d64e9))
(fp_line (start -1.13 5.775) (end -0.30753 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d44467d3-3e87-448a-a66f-6840b210d054))
(fp_line (start 0.30753 5.775) (end 0.96247 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34ac32f1-2ffc-4c16-8cf8-a77848c3f00e))
(fp_line (start 0.563471 0.76) (end 0.706529 0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a005037d-b995-4e7b-9f75-e3a1f3939c72))
(fp_line (start 0.76 -0.695) (end 0.96247 -0.695)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd6f4498-1c07-4f37-9fe0-661e481f18c3))
(fp_line (start 0.76 -0.563471) (end 0.76 -0.695)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6ca63ac-4155-49dd-bbdd-00cfe9ef7c84))
(fp_line (start 0.76 0.706529) (end 0.76 0.563471)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd12868c-35bf-4ddb-9d89-c7f1e7a2573d))
(fp_line (start 1.57753 -0.695) (end 2.4 -0.695)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5381ded6-51a4-498c-a70f-3aa29d016e3d))
(fp_line (start 1.57753 5.775) (end 2.4 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd72fef3-9644-4141-a163-646c25c2b643))
(fp_line (start 2.4 -0.695) (end 2.4 5.775)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b07a5fbc-cb59-4c2f-b104-cc3cecc048fa))
(fp_line (start -1.6 -1.15) (end -1.6 6.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d59698f5-cb87-45b0-a895-280defda9523))
(fp_line (start -1.6 6.25) (end 2.85 6.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2cd911a-769a-425a-9fbd-08bc2a8c7343))
(fp_line (start 2.85 -1.15) (end -1.6 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7398e61-ce16-4f50-b8e6-60b79d1158e9))
(fp_line (start 2.85 6.25) (end 2.85 -1.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bfb5bcbe-362b-4803-979f-8d97379f04e3))
(fp_line (start -1.07 0.2175) (end -0.2175 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b3ef045-e69a-47dc-9064-c7eb5b059cc0))
(fp_line (start -1.07 5.715) (end -1.07 0.2175)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcc070e1-9850-4a97-8162-1ad353bda284))
(fp_line (start -0.2175 -0.635) (end 2.34 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a169d0dc-792f-4caf-a2b2-b36347f27e61))
(fp_line (start 2.34 -0.635) (end 2.34 5.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5bc73a0e-8587-497f-8e28-b76a99abe198))
(fp_line (start 2.34 5.715) (end -1.07 5.715)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa3ddf12-2f7f-4cc6-9436-a5d935885965))
(pad "1" thru_hole circle (at 0 0 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 1 "+3V3") (pinfunction "VTref") (pintype "power_in") (tstamp 49cdd3fb-6e02-4a00-bfba-835e393a8897))
(pad "2" thru_hole oval (at 1.27 0 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 3 "/SWDIO") (pinfunction "SWDIO/TMS") (pintype "bidirectional") (tstamp feab62b5-c936-4040-a6ae-1bb1f13b2a7b))
(pad "3" thru_hole rect (at 0 1.27 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp bb6d291f-7f64-48fb-b487-ce571aebfcc8))
(pad "4" thru_hole oval (at 1.27 1.27 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 4 "/SWDCLK") (pinfunction "SWDCLK/TCK") (pintype "output") (tstamp 50d8033f-c294-4b15-93b5-e36027a1b368))
(pad "5" thru_hole rect (at 0 2.54 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp f65706ff-08ad-4aec-b2b5-1682c5d20ca4))
(pad "6" thru_hole oval (at 1.27 2.54 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 5 "unconnected-(J1-SWO{slash}TDO-Pad6)") (pinfunction "SWO/TDO") (pintype "input+no_connect") (tstamp b0b64374-3929-4d71-ae0d-81ca11e5dd7b))
(pad "7" thru_hole oval (at 0 3.81 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 6 "unconnected-(J1-KEY-Pad7)") (pinfunction "KEY") (pintype "no_connect") (tstamp 304984dc-2db3-4e0f-8b0a-94c708835075))
(pad "8" thru_hole oval (at 1.27 3.81 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(J1-NC{slash}TDI-Pad8)") (pinfunction "NC/TDI") (pintype "output+no_connect") (tstamp 1f97400f-5d2f-4e5a-87d4-77899964b2be))
(pad "9" thru_hole rect (at 0 5.08 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GNDDetect") (pintype "passive") (tstamp 685707cb-a9f4-41e7-b40f-e8d3f1467d77))
(pad "10" thru_hole oval (at 1.27 5.08 90) (size 1 1) (drill 0.65) (layers "*.Cu" "*.Mask")
(net 3 "/SWDIO") (pinfunction "~{RESET}") (pintype "open_collector") (tstamp 8d946f75-601f-4b47-bec0-1eb0cb549a8d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_2x05_P1.27mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D3.0mm_W1.6mm_P2.50mm" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005c9e3e4a)
(at 104.7367 123.0136 -90)
(descr "C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor")
(property "Sheetfile" "e73-breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/00000000-0000-0000-0000-00005c9e817d")
(attr through_hole)
(fp_text reference "C1" (at -1.6524 0.0633) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de01ef49-a6a7-404b-8630-fc32e0439241)
)
(fp_text value "4.7uF" (at 1.25 2.05 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c01c78f-2b85-4a50-94ea-fb581902a8c7)
)
(fp_text user "${REFERENCE}" (at 1.25 0 -90) (layer "F.Fab")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 8686e8a9-0dd3-4d49-b9b1-8eb7334324e3)
)
(fp_line (start 0.621 -0.92) (end 1.879 -0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a89af67-b166-4aeb-83eb-2fca4266b73d))
(fp_line (start 0.621 0.92) (end 1.879 0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68392ca1-de5c-44c4-b08e-bde2f822f28d))
(fp_line (start -1.05 -1.05) (end -1.05 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73c055c8-79f1-4488-bbb5-f12d7b7f7a56))
(fp_line (start -1.05 1.05) (end 3.55 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b35e3b3c-c830-4e24-ad20-0471ecb8c69f))
(fp_line (start 3.55 -1.05) (end -1.05 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8ef2f7a-b256-4513-a1e6-fccbaa33758d))
(fp_line (start 3.55 1.05) (end 3.55 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62cbfb97-c82d-46fd-97c3-3848a282dd71))
(fp_line (start -0.25 -0.8) (end -0.25 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b474f3c0-d3c5-425a-b045-e0e20dd5aa48))
(fp_line (start -0.25 0.8) (end 2.75 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a0160b3-2a21-4a9a-af94-7ff0e1f15336))
(fp_line (start 2.75 -0.8) (end -0.25 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 072906a1-9083-40c9-bb15-1b9427049ad6))
(fp_line (start 2.75 0.8) (end 2.75 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4716a7b2-2d87-46b9-b031-69f7b2665bb8))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+3V3") (pintype "passive") (tstamp f8ee2412-154b-4def-872b-bebbecf60850))
(pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp 46df8d41-60de-4900-9993-9e28c5a56612))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D3.0mm_W1.6mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RF_Module:E73-2G4M04S1D" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005c9e58ba)
(at 100 95.655)
(descr "http://www.cdebyte.com/en/downpdf.aspx?id=243")
(tags "BLE BLE5 nRF52832")
(property "Sheetfile" "e73-breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "nRF52832 BLE5 Module")
(property "ki_keywords" "BLE5, BLE, nRF52832")
(path "/00000000-0000-0000-0000-00005c9da1ac")
(attr smd)
(fp_text reference "U1" (at 0 16.42) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33635ec4-2ac8-4285-9599-4dd5a7107d9d)
)
(fp_text value "E73-2G4M04S1D-51822" (at 0 -15.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c17470a-bad1-46f0-8f19-6a0e1b0ec0ae)
)
(fp_text user "KEEP-OUT ZONE" (at 0 -12.77) (layer "Cmts.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0650837a-309e-4fd9-950f-05b5fa55392e)
)
(fp_text user "No metal, traces, or components" (at 0 -11.02) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 14c197c8-7e94-4a96-aff5-410ea660f08d)
)
(fp_text user "on any PCB layer." (at 0 -10.02) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp eb430db9-c0b5-4d71-9479-ab06b0abeb01)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 474ac40b-56df-4930-9acc-d2d36df4b72c)
)
(fp_line (start -8.87 -14.39) (end -8.87 -3.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cdbdae4b-5a83-4d90-a14e-d8f52be973b4))
(fp_line (start -8.87 -3.16) (end -8.87 -2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 454fb93b-1786-4192-a378-eb3967fd3be9))
(fp_line (start -8.87 14.49) (end -8.87 13.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58a7acc2-fee0-4b87-b7c0-161895d1a896))
(fp_line (start -8.87 14.49) (end -7.72 14.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4efabdeb-0e77-49f9-831f-44f66cfa9f23))
(fp_line (start 8.87 -14.39) (end -8.87 -14.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e74c142c-feff-4682-b011-4fdfd23ae54c))
(fp_line (start 8.87 -14.39) (end 8.87 -3.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 165b8644-43e4-4db2-8805-64343fb688c5))
(fp_line (start 8.87 -3.16) (end 8.87 -2.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7480ed87-e2d4-4955-9b5b-78ec8349cb27))
(fp_line (start 8.87 14.49) (end 7.72 14.49)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb2b258b-eafb-4ede-ba90-62f7d780551a))
(fp_line (start 8.87 14.49) (end 8.87 13.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 842b6d05-ea78-4d06-8aed-2b44d5c6ef96))
(fp_line (start -9.9 -14.52) (end -9.9 15.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31c603a1-3268-4512-b49b-76ae9cfd8aa5))
(fp_line (start -9.9 15.52) (end 9.9 15.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7b1e55cf-b013-4fda-bbb9-b3370b6a25d9))
(fp_line (start 9.9 -14.52) (end -9.9 -14.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53809e0d-e2f2-4023-a3dd-885a261bcb8f))
(fp_line (start 9.9 15.5) (end 9.9 -14.52)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5c3eab8-9713-446e-b828-680061d0a0c1))
(fp_line (start -8.75 -8.07) (end -8.75 -7.37)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d77de5a2-6042-4e8b-b6ac-d1379b8a1b15))
(fp_line (start -8.75 -7.99) (end -8.75 -14.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3665aaa4-6e5a-4914-9ed5-ab6df73ed8f4))
(fp_line (start -8.75 -7.37) (end -8.75 14.37)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4d5978d-be7d-4cdd-ac88-05356d95a4f8))
(fp_line (start -8.75 14.37) (end 8.75 14.37)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b9c14ba-d28a-4d66-b929-1743743fad8a))
(fp_line (start 8.75 -14.27) (end -8.75 -14.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d22252ba-358c-4bfc-9200-c1e291c3a0df))
(fp_line (start 8.75 14.37) (end 8.75 -14.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37c60628-55dd-4006-a146-119c033fe08d))
(pad "1" smd rect (at -8.75 -1.37) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "/P021") (pinfunction "P0.21") (pintype "bidirectional") (tstamp af5ab3b0-5c9c-4b58-99a3-1f4f5b6beeeb))
(pad "2" smd rect (at -8.75 -0.1) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "/P022") (pinfunction "P0.22") (pintype "bidirectional") (tstamp f0077040-5e94-4281-b6ba-867feb338379))
(pad "3" smd rect (at -8.75 1.17) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "/P023") (pinfunction "P0.23") (pintype "bidirectional") (tstamp 84c315f1-90cc-4472-907c-da2e0879e3f6))
(pad "4" smd rect (at -8.75 2.44) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "/P024") (pinfunction "P0.24") (pintype "bidirectional") (tstamp 8a3cadec-7933-4f7d-a18d-a5771803700c))
(pad "5" smd rect (at -8.75 3.71) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "/P025") (pinfunction "P0.25") (pintype "bidirectional") (tstamp 83148950-2e88-40a6-b22e-5cd646719a5d))
(pad "6" smd rect (at -8.75 4.98) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 34 "/P028") (pinfunction "P0.28") (pintype "bidirectional") (tstamp 1991d2ac-52f5-4ff9-b8bf-be29958b479e))
(pad "7" smd rect (at -8.75 6.25) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/P029") (pinfunction "P0.29") (pintype "bidirectional") (tstamp 3f362af8-ecc9-4dba-95bd-7902b4a87f70))
(pad "8" smd rect (at -8.75 7.52) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 36 "/P030") (pinfunction "P0.30") (pintype "bidirectional") (tstamp b433cb9d-1aed-4e7e-872a-1d3ef478000a))
(pad "9" smd rect (at -8.75 8.79) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/P000") (pinfunction "AREF0/P0.00") (pintype "bidirectional") (tstamp 1ea3a062-4876-4a97-bc73-cc3438af9f83))
(pad "10" smd rect (at -8.75 10.06) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/P001") (pinfunction "AIN2/P0.01") (pintype "bidirectional") (tstamp 1c7ac8c2-2a4c-40d9-b3cc-ff95afdf7b7c))
(pad "11" smd rect (at -8.75 11.33) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+3V3") (pinfunction "VCC") (pintype "power_in") (tstamp 64a683bb-6e6c-46aa-959b-fb4823417781))
(pad "12" smd rect (at -8.75 12.6) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 84509712-73c7-43c6-be25-7fa53ed5351b))
(pad "13" smd rect (at -6.985 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp bbe5f0ac-0f62-4e60-a684-1fb5b0c18cc2))
(pad "14" smd rect (at -5.715 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/P002") (pinfunction "AIN3/P0.02") (pintype "bidirectional") (tstamp efe36fc6-2d6a-497f-bfb2-2166c29eadd7))
(pad "15" smd rect (at -4.445 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/P003") (pinfunction "AIN4/P0.03") (pintype "bidirectional") (tstamp ed37f4b2-d36b-4cd6-b3f9-de5a3b822f12))
(pad "16" smd rect (at -3.175 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/P004") (pinfunction "AIN5/P0.04") (pintype "bidirectional") (tstamp a038a099-068d-409f-97de-06893442f73e))
(pad "17" smd rect (at -1.905 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/P005") (pinfunction "AIN6/P0.05") (pintype "bidirectional") (tstamp 436a32ee-117a-43b9-bfc2-580d6b50b524))
(pad "18" smd rect (at -0.635 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/P006") (pinfunction "AIN7/AREF1/P0.06") (pintype "bidirectional") (tstamp adf4c92e-f6bc-4f13-b24a-44b1130c114d))
(pad "19" smd rect (at 0.635 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/P007") (pinfunction "P0.07") (pintype "bidirectional") (tstamp c6c615d0-d2ec-4aa5-b82b-4f1207bae3db))
(pad "20" smd rect (at 1.905 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/P008") (pinfunction "P0.08") (pintype "bidirectional") (tstamp 4c7e4a91-8437-4412-9f4e-a657b3d1f607))
(pad "21" smd rect (at 3.175 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "/P009") (pinfunction "P0.09") (pintype "bidirectional") (tstamp 3a5174c6-0eb7-4a5e-94d2-1b9dd5349e60))
(pad "22" smd rect (at 4.445 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/P010") (pinfunction "P0.10") (pintype "bidirectional") (tstamp f96ac2b2-4527-4538-8128-4dc5e3bdae70))
(pad "23" smd rect (at 5.715 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/P011") (pinfunction "P0.11") (pintype "bidirectional") (tstamp 98a3b899-ab0a-4883-8778-c055313fe8bc))
(pad "24" smd rect (at 6.985 14.37) (size 0.7 1.8) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp caccf597-85c0-4192-8c36-87d7b6ee7dce))
(pad "25" smd rect (at 8.75 12.6) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 00409675-7060-4654-9e67-f910398d0e52))
(pad "26" smd rect (at 8.75 11.33) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/P012") (pinfunction "P0.12") (pintype "bidirectional") (tstamp bfb974da-979d-45a0-a50a-92b2b4b7f636))
(pad "27" smd rect (at 8.75 10.06) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "/P013") (pinfunction "P0.13") (pintype "bidirectional") (tstamp 9c915b08-5c7f-465c-adc4-03792840c0e8))
(pad "28" smd rect (at 8.75 8.79) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "/P014") (pinfunction "P0.14") (pintype "bidirectional") (tstamp 2fc764d5-c571-4242-b651-472287c4b3f6))
(pad "29" smd rect (at 8.75 7.52) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "/P015") (pinfunction "P0.15") (pintype "bidirectional") (tstamp 65e4e978-c01b-46f2-b523-abcc10480dd8))
(pad "30" smd rect (at 8.75 6.25) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 33 "/P016") (pinfunction "P0.16") (pintype "bidirectional") (tstamp a86bda27-30cb-4644-a3a1-2e057da4a0ff))
(pad "31" smd rect (at 8.75 4.98) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "/SWDIO") (pinfunction "SWDIO/~{RESET}") (pintype "input") (tstamp 20cff165-cafd-44c5-9d09-cf6172572001))
(pad "32" smd rect (at 8.75 3.71) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/SWDCLK") (pinfunction "SWDCLK") (pintype "input") (tstamp 8278839c-9e7c-4e0d-ab79-6c46286561de))
(pad "33" smd rect (at 8.75 2.44) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 32 "/P017") (pinfunction "P0.17") (pintype "bidirectional") (tstamp 8097334b-e4c1-4aae-8795-ba92bf2614e5))
(pad "34" smd rect (at 8.75 1.17) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "/P018") (pinfunction "P0.18") (pintype "bidirectional") (tstamp 2bc5c2ea-0d67-4538-bd2a-ab648d6a14f9))
(pad "35" smd rect (at 8.75 -0.1) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "/P019") (pinfunction "P0.19") (pintype "bidirectional") (tstamp 4ae4ba63-4006-40cf-8361-0151a6cd8d44))
(pad "36" smd rect (at 8.75 -1.37) (size 1.8 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "/P020") (pinfunction "P0.20") (pintype "bidirectional") (tstamp d93255ef-779a-4d9e-a4eb-c7e047ec9f86))
(zone (net 0) (net_name "") (layers "*.Cu") (tstamp 552e69d8-e4c4-43b6-b07e-3ef53f774f30) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 91.25 86.885)
(xy 108.75 86.885)
(xy 108.75 81.385)
(xy 91.25 81.385)
)
)
)
(model "${KIPRJMOD}/e73-2g4m04s1b.STEP" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal" (layer "F.Cu")
(tstamp 65e4a9f6-823e-4445-be13-2f27bdae81ad)
(at 94.8182 125.6136 90)
(descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm")
(property "Sheetfile" "e73-breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/06bc1466-cf03-4e53-ba24-3961882c82fa")
(attr through_hole)
(fp_text reference "R1" (at 2.54 -1.92 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 591fd699-8975-4d4e-9e84-28131ff3db6a)
)
(fp_text value "10k" (at 2.54 1.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a64d2ef3-96cd-4fbc-bec1-15ab0681f7be)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 0.72 0.72) (thickness 0.108)))
(tstamp e134bcae-0451-4807-8b47-43b91149453a)
)
(fp_line (start 0.62 -0.92) (end 4.46 -0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6257d4c-1448-4865-a869-918d0e0c046c))
(fp_line (start 0.62 0.92) (end 4.46 0.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 002e3848-f762-46d7-8772-6563d7768fda))
(fp_line (start -0.95 -1.05) (end -0.95 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27689d90-50cf-45ef-9666-e17dbd54dc1e))
(fp_line (start -0.95 1.05) (end 6.03 1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95d627ba-3e9c-45a4-b638-e37f223833c6))
(fp_line (start 6.03 -1.05) (end -0.95 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7861d043-aa1f-4dc4-b5c7-5935862ae269))
(fp_line (start 6.03 1.05) (end 6.03 -1.05)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 051e2532-aedf-4ba3-b0c6-ac443a8d7cb0))
(fp_line (start 0 0) (end 0.74 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c73bb80f-337a-4eb0-9636-db5c4690e88a))
(fp_line (start 0.74 -0.8) (end 0.74 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 416f4306-d87e-46f2-aa90-e10b91a8f94e))
(fp_line (start 0.74 0.8) (end 4.34 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d538555a-41e5-4e37-80fa-a7eee070d617))
(fp_line (start 4.34 -0.8) (end 0.74 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp acdf2810-78e7-4434-8bd8-e635ad054336))
(fp_line (start 4.34 0.8) (end 4.34 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc8bed20-7721-4d70-8f6a-99dbd5c8bbf3))
(fp_line (start 5.08 0) (end 4.34 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a342dc7-db8d-42f8-8208-2703260d6001))
(pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp 4017e81a-479b-4a95-aaeb-2fda17a8decc))
(pad "2" thru_hole oval (at 5.08 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask")
(net 3 "/SWDIO") (pintype "passive") (tstamp d7d76fe9-fd9d-454f-9c4e-1681e43263b7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "kbd:ResetSW_1side" (layer "F.Cu")
(tstamp f4a332a1-5033-4d84-9430-087dda3c0ea9)
(at 107.696 123.3424 90)
(property "Sheetfile" "e73-breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/a6753b3a-f3ad-4303-98fb-a348bdd7c67a")
(attr through_hole)
(fp_text reference "SW1" (at 0 2.55 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f15e407c-850a-4a25-87bb-455e2977b5aa)
)
(fp_text value "2x3mm" (at 0 -2.55 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5d47688-7de9-43b8-8536-9524e4130575)
)
(fp_text user "RESET" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8052edb1-d16e-4717-a513-d8caf5f91295)
)
(fp_line (start -2.85 -1.6) (end -2.85 -1.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a7b60fff-31a4-422b-80a7-a9fc95a9b4bd))
(fp_line (start -2.85 -1.6) (end 2.85 -1.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 32f7b28d-3ac4-4d74-8b89-a52f77b79c0d))
(fp_line (start -2.85 1.6) (end -2.85 1.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 51c87edd-5880-4c85-9e7f-2dd05535c80d))
(fp_line (start -2.85 1.6) (end 2.85 1.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 11141057-3296-41f8-8dfa-9620dbf4ea55))
(fp_line (start 2.85 -1.6) (end 2.85 -1.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4037bfce-ceb8-46a0-9300-cc3f6513141f))
(fp_line (start 2.85 1.6) (end 2.85 1.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b4cea5e3-523d-4bf3-9aac-856396f49cbc))
(pad "1" thru_hole circle (at 3.25 0 90) (size 2 2) (drill 1.3) (layers "*.Cu" "B.Mask")
(net 3 "/SWDIO") (pinfunction "1") (pintype "passive") (tstamp 415bc4f6-5e7d-4767-b753-8546a8678cfb))
(pad "2" thru_hole circle (at -3.25 0 90) (size 2 2) (drill 1.3) (layers "*.Cu" "B.Mask")
(net 1 "+3V3") (pinfunction "2") (pintype "passive") (tstamp 4f557785-623c-4863-907b-e193f160654f))
(model "/Users/foostan/src/github.com/foostan/kbd/kicad-packages3D/kbd.3dshapes/tact-switch.step"
(offset (xyz 0 0 3.47))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model ":KBD:kbd.3dshapes/tact-switch.step"
(offset (xyz 0 0 3.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x16_P2.54mm_Vertical" (layer "B.Cu")
(tstamp 00000000-0000-0000-0000-00005c9e07dc)
(at 111.43 88.57 180)
(descr "Through hole straight pin header, 1x16, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x16 2.54mm single row")
(property "Sheetfile" "e73-breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x16, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005c9f9f44")
(attr through_hole)
(fp_text reference "J3" (at 0 2.33) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6e0f6ef2-f6cc-46cc-b9c1-571b77b55d79)
)
(fp_text value "Pin" (at 0 -40.43) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 9df25167-1008-4ada-9257-07a02c98e7a3)
)
(fp_text user "${REFERENCE}" (at 0 -19.05 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d6c354da-cff4-4ca0-aa85-c4b06979678b)
)
(fp_line (start -1.33 -39.43) (end 1.33 -39.43)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 760b5f3f-44b9-4475-8aba-1d2ce6828d2f))
(fp_line (start -1.33 -1.27) (end -1.33 -39.43)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4144b743-d68b-4c37-9954-54c495fe32d7))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e5269617-9baa-49f8-acb2-462b35c10f1d))
(fp_line (start -1.33 0) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0620f903-c9a4-461f-9c3c-9e7161bcebb4))
(fp_line (start -1.33 1.33) (end 0 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6f0d6ac5-44eb-4d4d-8d29-9f46bb210938))
(fp_line (start 1.33 -1.27) (end 1.33 -39.43)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6c75d897-2c49-47bc-9bd6-73acc3596cad))
(fp_line (start -1.8 -39.9) (end 1.8 -39.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cbd17939-30b6-493a-9b6c-1a8f0a63cab7))
(fp_line (start -1.8 1.8) (end -1.8 -39.9)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ae50b0e0-8b85-4255-a52c-9f8c20aeded1))
(fp_line (start 1.8 -39.9) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e4115b82-0c3b-4100-8d9c-774983d7146e))
(fp_line (start 1.8 1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dc79c492-2c8d-49eb-a3cc-1830dcfbbe29))
(fp_line (start -1.27 -39.37) (end -1.27 0.635)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 4c987ff2-b410-4eca-897e-267ce259da18))
(fp_line (start -1.27 0.635) (end -0.635 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 96849815-db1f-4b8b-85cf-84c10ea97219))
(fp_line (start -0.635 1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ba88528b-7a31-4616-8e4e-aaaa5bd4854f))
(fp_line (start 1.27 -39.37) (end -1.27 -39.37)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 77018efe-e765-427a-85b2-ce1c6eadd6ed))
(fp_line (start 1.27 1.27) (end 1.27 -39.37)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 76478ffc-aaec-4e33-9ca9-255f7d5f95e7))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp e494a0c4-e4cd-4cd5-90d0-21d1e6721c84))
(pad "2" thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/P020") (pinfunction "Pin_2") (pintype "passive") (tstamp d01ee85e-0de6-4644-aac2-26cbfb699f58))
(pad "3" thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/P019") (pinfunction "Pin_3") (pintype "passive") (tstamp 38666eec-582f-45a9-8eae-08bd4cfe887d))
(pad "4" thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "/P018") (pinfunction "Pin_4") (pintype "passive") (tstamp 1aa19a7d-ecf8-4f84-a28b-a613d75275fe))
(pad "5" thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "/P017") (pinfunction "Pin_5") (pintype "passive") (tstamp 1634e7cd-c1c6-40fa-b69c-78b75e166036))
(pad "6" thru_hole oval (at 0 -12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "/P016") (pinfunction "Pin_6") (pintype "passive") (tstamp 651a6a86-328b-4614-99db-5fafb8322c55))
(pad "7" thru_hole oval (at 0 -15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "/P015") (pinfunction "Pin_7") (pintype "passive") (tstamp 97402427-2337-44bc-a18b-5331e82e3949))
(pad "8" thru_hole oval (at 0 -17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/P014") (pinfunction "Pin_8") (pintype "passive") (tstamp 848b9cf8-9a18-42aa-b075-c3b06699bc35))
(pad "9" thru_hole oval (at 0 -20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/P013") (pinfunction "Pin_9") (pintype "passive") (tstamp f2dec00f-ca5a-4e58-800c-4787bf27e0ff))
(pad "10" thru_hole oval (at 0 -22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/P012") (pinfunction "Pin_10") (pintype "passive") (tstamp fd722d80-5278-4318-b249-f6b37fe320db))
(pad "11" thru_hole oval (at 0 -25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/P011") (pinfunction "Pin_11") (pintype "passive") (tstamp ba99925a-6fa1-4521-af8e-a57c861e533f))
(pad "12" thru_hole oval (at 0 -27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/P010") (pinfunction "Pin_12") (pintype "passive") (tstamp e06f74e1-a1d9-4630-8d07-e153eab9c646))
(pad "13" thru_hole oval (at 0 -30.48 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/P009") (pinfunction "Pin_13") (pintype "passive") (tstamp 037a0615-cf31-4155-ac47-96f1e7f2d52e))
(pad "14" thru_hole oval (at 0 -33.02 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/P008") (pinfunction "Pin_14") (pintype "passive") (tstamp 7fd0b581-b2b7-4870-9a4e-e54bc1130da0))
(pad "15" thru_hole oval (at 0 -35.56 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/P007") (pinfunction "Pin_15") (pintype "passive") (tstamp b67624ce-da58-4667-a703-882e8660f6fd))
(pad "16" thru_hole oval (at 0 -38.1 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/P006") (pinfunction "Pin_16") (pintype "passive") (tstamp a0f8ecea-5557-4e68-8869-8213e4b91a6c))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x16_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "B.Cu")
(tstamp 00000000-0000-0000-0000-00005c9e186d)
(at 88.57 88.57 180)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "e73-breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005c9f2b9d")
(attr through_hole)
(fp_text reference "J2" (at 0 2.33 180) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b8502a97-88b8-412f-8c85-4dc949a90b11)
)
(fp_text value "Pin" (at 0 -4.87 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0d00507c-7479-4ea4-be9f-b81208a96084)
)
(fp_text user "${REFERENCE}" (at 0 -1.27 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a6fe144c-0953-4392-bbae-eee0da1c1845)
)
(fp_line (start -1.33 -3.87) (end 1.33 -3.87)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 8a572c7e-94a3-4f97-bfd0-7f449006bd83))
(fp_line (start -1.33 -1.27) (end -1.33 -3.87)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 63eb60f4-ff76-4a35-aea1-1fbef24f631a))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 8402374d-f1a0-45ba-8913-4715bded1540))
(fp_line (start -1.33 0) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9952ce70-87e7-44c0-8080-49087ea95b84))
(fp_line (start -1.33 1.33) (end 0 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp bc2bca61-498b-4e7b-9957-3fc1b3f3b622))
(fp_line (start 1.33 -1.27) (end 1.33 -3.87)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 159d6164-e2ba-4fc5-90e3-71aaff1e9d4d))
(fp_line (start -1.8 -4.35) (end 1.8 -4.35)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp eca746e0-80b5-4e36-9768-21252df10094))
(fp_line (start -1.8 1.8) (end -1.8 -4.35)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e4157e81-8646-4c49-9911-d5d8a1d93c3c))
(fp_line (start 1.8 -4.35) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4f01690e-608c-4024-b62a-335654c42345))
(fp_line (start 1.8 1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9a8f5f59-d3e7-4868-9b4b-5b2591acceb5))
(fp_line (start -1.27 -3.81) (end -1.27 0.635)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 88fd8539-5d50-4028-a1d2-cb4f11f11b70))
(fp_line (start -1.27 0.635) (end -0.635 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1fe339f0-7cd1-468b-aacb-b49e6233db59))
(fp_line (start -0.635 1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp db6fd892-0c43-4219-b62f-0a796e2a81cc))
(fp_line (start 1.27 -3.81) (end -1.27 -3.81)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 9c82796e-f250-463f-a44a-0c8e87fb21f7))
(fp_line (start 1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6a98f805-ee19-4518-a949-7eeecc4b0b83))
(pad "1" thru_hole circle (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+3V3") (pinfunction "Pin_1") (pintype "passive") (tstamp 6e315b3e-9148-4162-b74a-ec7dcba28e21))
(pad "2" thru_hole rect (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 2a653930-14d2-4c54-bc5b-77e3469656dd))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x14_P2.54mm_Vertical" (layer "B.Cu")
(tstamp 00000000-0000-0000-0000-00005c9e18a0)
(at 88.57 93.65 180)
(descr "Through hole straight pin header, 1x14, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x14 2.54mm single row")
(property "Sheetfile" "e73-breakout.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x14, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/00000000-0000-0000-0000-00005ca1537a")
(attr through_hole)
(fp_text reference "J4" (at 0 2.33) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b73237ff-7c32-484a-a587-87c527995428)
)
(fp_text value "Pin" (at 0 -35.35) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp da56a12e-cdc4-496e-8b79-1527508291b0)
)
(fp_text user "${REFERENCE}" (at 0 -16.51 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6f504684-ae33-48e2-bd6e-166a55bbd5db)
)
(fp_line (start -1.33 -34.35) (end 1.33 -34.35)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 639c06b4-9e08-4265-909c-1bd0bb35a520))
(fp_line (start -1.33 -1.27) (end -1.33 -34.35)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 99d62df1-cfab-4497-b881-a791bb7e425c))
(fp_line (start -1.33 -1.27) (end 1.33 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9d41d5b5-8009-4ce6-a2f5-a72d89094182))
(fp_line (start -1.33 0) (end -1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp bd758c76-d159-452c-8eda-7cd3b1fe01c2))
(fp_line (start -1.33 1.33) (end 0 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6b8a41c2-4a6e-4a5f-86c0-2c0b575ed50a))
(fp_line (start 1.33 -1.27) (end 1.33 -34.35)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 18eb598b-c8df-4d97-a4a1-dae7002a86ed))
(fp_line (start -1.8 -34.8) (end 1.8 -34.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ac9af9dd-59dd-4d42-b57a-17e13458035b))
(fp_line (start -1.8 1.8) (end -1.8 -34.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2c5fd48f-8ca6-4095-a843-e5178c020a7b))
(fp_line (start 1.8 -34.8) (end 1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c088cb2e-c2ff-497c-8237-ff4dc614aa2e))
(fp_line (start 1.8 1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 46112875-0ffd-4e26-b574-037c59697de1))
(fp_line (start -1.27 -34.29) (end -1.27 0.635)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0b920dc5-b2be-42cb-b8a5-794353b92376))
(fp_line (start -1.27 0.635) (end -0.635 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 37f3769b-eb7f-4074-9af7-12623c6f3607))
(fp_line (start -0.635 1.27) (end 1.27 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 57955754-9752-4421-99a4-b3355ac9f25b))
(fp_line (start 1.27 -34.29) (end -1.27 -34.29)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fb90661f-4b7c-4710-ab45-ab7aa9760578))
(fp_line (start 1.27 1.27) (end 1.27 -34.29)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1934c546-2b5c-49b3-b59c-884ccde4190c))
(pad "1" thru_hole circle (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/P000") (pinfunction "Pin_1") (pintype "passive") (tstamp 34953856-590d-4bcd-87da-a3ceee1c3ee4))
(pad "2" thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/P001") (pinfunction "Pin_2") (pintype "passive") (tstamp 25359e27-d419-47df-9681-0bf0ba4ccfe7))
(pad "3" thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/P021") (pinfunction "Pin_3") (pintype "passive") (tstamp 4bbcd21a-4172-490d-a407-05b9143cdf92))
(pad "4" thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/P022") (pinfunction "Pin_4") (pintype "passive") (tstamp 8030c418-091e-418e-9895-6976b9127cf4))
(pad "5" thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "/P023") (pinfunction "Pin_5") (pintype "passive") (tstamp 93a98f07-7c44-470a-82bd-e088bd0e2da0))
(pad "6" thru_hole oval (at 0 -12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/P024") (pinfunction "Pin_6") (pintype "passive") (tstamp 54f82461-ee72-471e-aaa5-8690dd2a9ca4))
(pad "7" thru_hole oval (at 0 -15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/P025") (pinfunction "Pin_7") (pintype "passive") (tstamp 561d4304-4dce-4147-bf01-b22592f3d771))
(pad "8" thru_hole oval (at 0 -17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "/P028") (pinfunction "Pin_8") (pintype "passive") (tstamp ba74bcac-5c90-4db2-a210-78b1a7fab612))
(pad "9" thru_hole oval (at 0 -20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "/P029") (pinfunction "Pin_9") (pintype "passive") (tstamp 06587dba-63a1-474c-821c-ad560bc07575))
(pad "10" thru_hole oval (at 0 -22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "/P030") (pinfunction "Pin_10") (pintype "passive") (tstamp adc540f3-7fe2-4410-9521-eff0eb226532))
(pad "11" thru_hole oval (at 0 -25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/P002") (pinfunction "Pin_11") (pintype "passive") (tstamp 29e2e611-4c07-4bfe-8ab1-e4aed395a7c5))
(pad "12" thru_hole oval (at 0 -27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/P003") (pinfunction "Pin_12") (pintype "passive") (tstamp b9c2c192-5302-483e-8bc6-4ff98eae0eb4))
(pad "13" thru_hole oval (at 0 -30.48 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/P004") (pinfunction "Pin_13") (pintype "passive") (tstamp 0556dd99-953a-4c2c-b1ec-e8b5c6747ebd))
(pad "14" thru_hole oval (at 0 -33.02 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/P005") (pinfunction "Pin_14") (pintype "passive") (tstamp 39013bff-52bb-4526-a978-474d051f744d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x14_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 87.554 91.745) (end 87.554 87.935)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d7cca2c-e289-434a-b4c6-baf1b20821a5))
(gr_line (start 87.554 91.745) (end 87.935 92.126)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92d49b46-6f48-49fe-8fda-4ae5eaed6adc))
(gr_line (start 87.935 92.126) (end 88.57 92.126)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1d65b1f-e0e8-47a1-81c1-cafb1441650a))
(gr_line (start 112.7 119.05) (end 112.7 88.57)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 00000000-0000-0000-0000-00005c9e323b))
(gr_line (start 111.43 87.3) (end 88.57 87.3)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 00000000-0000-0000-0000-00005c9e323c))
(gr_line (start 87.3 88.57) (end 87.3 119.05)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 00000000-0000-0000-0000-00005c9e323d))
(gr_line (start 88.5698 127.889) (end 111.4298 127.889)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 00000000-0000-0000-0000-00005c9e323e))
(gr_line (start 112.7 119.05) (end 112.6998 126.619)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp 2f6d2402-df6d-4da4-a5ff-537a79cd9223))
(gr_arc (start 112.6998 126.619) (mid 112.327826 127.517026) (end 111.4298 127.889)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 5198cfd7-d3ff-49a6-b3ed-16c63631896a))
(gr_arc (start 88.5698 127.889) (mid 87.671774 127.517026) (end 87.2998 126.619)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 5d9bfd35-479e-4b7a-9b6d-a7e88fc41064))
(gr_arc (start 111.43 87.3) (mid 112.328026 87.671974) (end 112.7 88.57)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp c8f70830-6d4b-4d61-a241-c555cfa6130b))
(gr_line (start 87.3 119.05) (end 87.2998 126.619)
(stroke (width 0.05) (type default)) (layer "Edge.Cuts") (tstamp db8379da-edb0-407f-8b1e-c1461b1c1a1d))
(gr_arc (start 87.3 88.57) (mid 87.671974 87.671974) (end 88.57 87.3)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp fd42c0bb-f088-41a2-8f4b-2515075d8e5c))
(gr_text "E73-2G4M04S1D-51822\nBreakout v0.1" (at 99.9998 95.6564) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005c9ed44d)
(effects (font (size 1.25 1) (thickness 0.15)) (justify mirror))
)
(gr_text "25" (at 89.525 93.335 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e66ca)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "27" (at 89.525 98.415 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e673b)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "28" (at 89.525 100.955 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e673e)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "29" (at 89.525 103.495 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6741)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "24" (at 89.525 106.035 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6744)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "25" (at 89.525 108.575 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6748)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "28" (at 89.525 111.115 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e674c)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "29" (at 89.525 113.655 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e674f)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "30" (at 89.525 116.195 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6752)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "02" (at 89.525 118.735 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6755)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "⏚" (at 89.525 90.795 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e688a)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "V" (at 89.525 88.255 45) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e68a1)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(gr_text "24" (at 110.795 87.935 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e692c)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "23" (at 110.795 90.475 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6937)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "22" (at 110.795 93.015 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e693a)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "20" (at 110.795 95.555 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e693d)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "19" (at 110.795 98.095 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6940)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "17" (at 110.795 100.635 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6949)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "16" (at 110.795 103.175 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e694c)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "15" (at 110.795 105.715 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6951)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "14" (at 110.795 108.255 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6954)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "13" (at 110.795 110.795 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6957)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "12" (at 110.795 113.335 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e695a)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "10" (at 110.795 115.875 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e695d)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "09" (at 110.795 118.415 315) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005c9e6960)
(effects (font (size 1 0.75) (thickness 0.15)) (justify right))
)
(gr_text "26" (at 89.525 95.875 45) (layer "F.SilkS") (tstamp f1f32cce-a3c3-4b4f-b157-bf5a7e2074a0)
(effects (font (size 1 0.75) (thickness 0.15)) (justify left))
)
(dimension (type aligned) (layer "Dwgs.User") (tstamp 1bdfe299-acb5-49e3-9a60-a1e50200e5c6)
(pts (xy 111.43 84.76) (xy 88.57 84.76))
(height 3.81)
(gr_text "22.8600 mm" (at 100 79.8) (layer "Dwgs.User") (tstamp 1bdfe299-acb5-49e3-9a60-a1e50200e5c6)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4))
(style (thickness 0.12) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned)
)
(dimension (type aligned) (layer "Dwgs.User") (tstamp f3d88eba-376c-4991-a265-684c6b93c520)
(pts (xy 112.7 84.76) (xy 87.3 84.76))
(height 6.35)
(gr_text "25.4000 mm" (at 100 77.26) (layer "Dwgs.User") (tstamp f3d88eba-376c-4991-a265-684c6b93c520)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4))
(style (thickness 0.12) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned)
)
(segment (start 92.5543 106.985) (end 91.25 106.985) (width 0.5) (layer "F.Cu") (net 1) (tstamp 2ac6aabe-79f4-4747-86c5-cb9224e59df8))
(segment (start 92.5543 106.985) (end 93.8784 106.985) (width 0.5) (layer "F.Cu") (net 1) (tstamp 406c6abb-d409-4f9c-ac9d-59659a4db091))
(segment (start 95.0079 95.0079) (end 95.0079 104.531) (width 0.5) (layer "F.Cu") (net 1) (tstamp 4a44bd1d-ec97-4305-8d56-175785959de5))
(segment (start 95.0079 104.531) (end 92.5543 106.985) (width 0.5) (layer "F.Cu") (net 1) (tstamp a1fe02c7-4fba-43e3-9856-240523cd13b4))
(segment (start 88.57 88.57) (end 95.0079 95.0079) (width 0.5) (layer "F.Cu") (net 1) (tstamp e44e93f2-ae9b-4ec0-b8ad-77842a008085))
(via (at 93.8784 106.985) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 77414102-6fca-470d-a5d4-e99da8e12935))
(segment (start 93.8784 112.155) (end 100.655 118.932) (width 0.5) (layer "B.Cu") (net 1) (tstamp 031b7774-59b0-4907-b3b4-8d4f24148d35))
(segment (start 97.2271 124.964) (end 97.2275 124.964) (width 0.5) (layer "B.Cu") (net 1) (tstamp 2513d06a-a3bd-49fb-a683-741537a730dc))
(segment (start 96.3232 124.964) (end 97.2271 124.964) (width 0.5) (layer "B.Cu") (net 1) (tstamp 4e3b3b21-3531-476f-8257-ad4f273ca553))
(segment (start 96.3232 123.264) (end 96.3232 124.964) (width 0.5) (layer "B.Cu") (net 1) (tstamp 681ff60f-3ca8-49a6-87c4-75edd6c7ecf2))
(segment (start 97.2271 124.964) (end 97.2275 124.9636) (width 0.5) (layer "B.Cu") (net 1) (tstamp 73c7fec3-939d-48fc-999a-5ce40b93bc9d))
(segment (start 100.655 118.932) (end 103.8104 122.0874) (width 0.5) (layer "B.Cu") (net 1) (tstamp 7acea969-3b49-48a4-b646-d942141d322d))
(segment (start 93.8784 106.985) (end 93.8784 112.155) (width 0.5) (layer "B.Cu") (net 1) (tstamp 7d38b7e4-9b64-429c-9633-83908d5ec9c5))
(segment (start 103.8104 122.0874) (end 104.737 123.014) (width 0.5) (layer "B.Cu") (net 1) (tstamp 7e9fea80-4be3-4c6d-b76c-4342004d6fc6))
(segment (start 100.655 118.932) (end 96.3232 123.264) (width 0.5) (layer "B.Cu") (net 1) (tstamp 85e06378-04be-4728-bc74-9c5f4c4f84da))
(segment (start 103.8105 122.0874) (end 104.7367 123.0136) (width 0.5) (layer "B.Cu") (net 1) (tstamp ace450c4-a195-4223-9f68-ad06109e38d8))
(segment (start 104.737 123.014) (end 107.696 125.973) (width 0.5) (layer "B.Cu") (net 1) (tstamp d710e943-e2d0-4713-8118-6326d28c6264))
(segment (start 103.8104 122.0874) (end 103.8105 122.0874) (width 0.5) (layer "B.Cu") (net 1) (tstamp dbf9c932-cc1d-4a84-a23e-088fdfab9af1))
(segment (start 107.696 125.973) (end 107.696 126.5924) (width 0.5) (layer "B.Cu") (net 1) (tstamp ef1a3f81-efa6-4bcd-805d-5f1dfc871b98))
(via (at 90.4748 91.694) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp b38d2128-fb4b-4fbd-a671-97140b421fc4))
(via (at 108.407 109.677) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp c293df14-f119-4dcf-8c82-34e702eba164))
(via (at 91.5924 109.6772) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp e173e377-332e-45eb-a5cb-36b42200e570))
(segment (start 108.75 100.635) (end 107.036 100.635) (width 0.2) (layer "F.Cu") (net 3) (tstamp 020b4f62-a6a8-4de6-b922-f5c43e7ed0c6))
(segment (start 102.3075 123.694) (end 102.308 123.694) (width 0.2) (layer "F.Cu") (net 3) (tstamp 2788c48a-f148-4b93-a3bc-04dc580f9439))
(segment (start 94.8182 120.5336) (end 94.8182 121.2843) (width 0.2) (layer "F.Cu") (net 3) (tstamp 36e489a1-4d9b-45bb-a0e9-8f7438c8f69a))
(segment (start 102.307 123.694) (end 102.3075 123.694) (width 0.2) (layer "F.Cu") (net 3) (tstamp 5b802261-c17a-425f-91f0-08c5cad272b2))
(segment (start 102.308 120.985) (end 102.308 123.694) (width 0.2) (layer "F.Cu") (net 3) (tstamp 72da39be-5eb5-417e-9d34-3e6d1b9b5639))
(segment (start 94.8182 121.2843) (end 97.2275 123.6936) (width 0.2) (layer "F.Cu") (net 3) (tstamp 83a494dd-94a0-4af4-ac5a-3043bf89c3bf))
(segment (start 97.2275 123.6936) (end 97.2275 123.694) (width 0.2) (layer "F.Cu") (net 3) (tstamp a1a0ec2d-48c9-4af2-b60e-cae5feba4aa9))
(segment (start 102.3075 123.694) (end 102.3075 123.6936) (width 0.2) (layer "F.Cu") (net 3) (tstamp a853ad16-cd2a-404a-9529-0f92c904f245))
(segment (start 105.977 117.316) (end 102.308 120.985) (width 0.2) (layer "F.Cu") (net 3) (tstamp e72acef5-26d6-4a59-a75e-94e692074998))
(via (at 105.977 117.316) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 780c50e5-195e-4938-9ef3-c2772238080e))
(via (at 107.036 100.635) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 79685be2-562e-4877-bfd9-2246f94353da))
(segment (start 107.696 119.035) (end 107.696 120.0924) (width 0.2) (layer "B.Cu") (net 3) (tstamp 089805f9-65e2-41c7-b890-da3187c187f5))
(segment (start 101.534 122.92) (end 98.0007 122.92) (width 0.2) (layer "B.Cu") (net 3) (tstamp 09fb7fec-8d59-42fb-935a-8b211a780c94))
(segment (start 102.308 123.694) (end 102.3075 123.6935) (width 0.2) (layer "B.Cu") (net 3) (tstamp 1e4c7cb7-c8ad-469a-b8db-31ca3a268e64))
(segment (start 107.036 100.635) (end 107.036 116.257) (width 0.2) (layer "B.Cu") (net 3) (tstamp 1ed28f68-9d26-4941-ba9f-5acb98c92c23))
(segment (start 102.3075 123.6935) (end 102.3075 123.6936) (width 0.2) (layer "B.Cu") (net 3) (tstamp 6676dd92-2e40-4b48-9cb0-f313dbae92e9))
(segment (start 98.0007 122.92) (end 97.2277 123.6938) (width 0.2) (layer "B.Cu") (net 3) (tstamp 7c971585-d67f-4ee3-922e-2ab3d980240d))
(segment (start 97.2275 123.6936) (end 97.2277 123.6938) (width 0.2) (layer "B.Cu") (net 3) (tstamp 837ce96d-793d-4808-8224-ec6da69fd150))
(segment (start 105.977 117.316) (end 107.696 119.035) (width 0.2) (layer "B.Cu") (net 3) (tstamp 846612e2-c65a-41ee-b9d5-356337f5de99))
(segment (start 107.036 116.257) (end 105.977 117.316) (width 0.2) (layer "B.Cu") (net 3) (tstamp b73589b3-9119-4636-a26b-7c56fce768b2))
(segment (start 97.2277 123.6938) (end 97.2275 123.694) (width 0.2) (layer "B.Cu") (net 3) (tstamp ef55ed04-d9f8-4080-98f3-ff35e9cbb950))
(segment (start 102.3075 123.6935) (end 101.534 122.92) (width 0.2) (layer "B.Cu") (net 3) (tstamp f6883884-5b29-44de-a23c-9881f8f8b02e))
(segment (start 98.7301 107.671) (end 98.7301 123.461) (width 0.2) (layer "F.Cu") (net 4) (tstamp 321c3cbf-4cca-4e93-94bb-40665ecdf459))
(segment (start 107.036 99.3648) (end 98.7301 107.671) (width 0.2) (layer "F.Cu") (net 4) (tstamp 6f5d893a-8183-4b15-bffc-1e19cf28fe6f))
(segment (start 98.4975 123.6936) (end 98.4975 123.694) (width 0.2) (layer "F.Cu") (net 4) (tstamp 8ac6a5c2-8290-4da1-9b44-8560db8642b2))
(segment (start 107.036 99.3648) (end 108.75 99.3648) (width 0.2) (layer "F.Cu") (net 4) (tstamp c6eae10c-ec4d-4f22-8c90-c4130726c168))
(segment (start 98.7301 123.461) (end 98.4975 123.6936) (width 0.2) (layer "F.Cu") (net 4) (tstamp d6fc3a30-6343-4376-80d1-28fd98b457e8))
(segment (start 108.75 99.3648) (end 108.75 99.365) (width 0.2) (layer "F.Cu") (net 4) (tstamp ecc2ac64-bc81-4c84-978c-a74d8ebf25db))
(via (at 107.036 99.3648) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 2cae7578-05e3-43b6-8b03-69a3ba964ddb))
(segment (start 92.4043 104.445) (end 93.545 103.304) (width 0.2) (layer "F.Cu") (net 8) (tstamp 456d11b6-8b4d-486d-89dc-bda97c8d4a42))
(segment (start 93.545 94.9685) (end 92.2265 93.65) (width 0.2) (layer "F.Cu") (net 8) (tstamp 4a76901d-dbf3-43d1-b46f-4d77ead4d76b))
(segment (start 92.2265 93.65) (end 88.57 93.65) (width 0.2) (layer "F.Cu") (net 8) (tstamp 8ab6afb4-d298-48bb-a8e0-7a75b231fc1d))
(segment (start 93.545 103.304) (end 93.545 94.9685) (width 0.2) (layer "F.Cu") (net 8) (tstamp ada7ec23-57a1-43b6-be0c-90abfec44366))
(segment (start 91.25 104.445) (end 92.4043 104.445) (width 0.2) (layer "F.Cu") (net 8) (tstamp ce24d31d-d660-4463-9320-ebbe1d257b97))
(segment (start 94.1993 103.92) (end 94.1993 97.1848) (width 0.2) (layer "F.Cu") (net 9) (tstamp 9b04ff0e-3794-48dd-9a67-ca9bb2680801))
(segment (start 92.4043 105.715) (end 94.1993 103.92) (width 0.2) (layer "F.Cu") (net 9) (tstamp d48e07a4-ff82-4658-84aa-70d44f0b5fbf))
(segment (start 91.25 105.715) (end 92.4043 105.715) (width 0.2) (layer "F.Cu") (net 9) (tstamp e504f03e-bdf1-47aa-addb-55714d3b044f))
(via (at 94.1993 97.1848) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp c45b3655-6867-4dc7-9317-2560f4b3d8bb))
(segment (start 94.1993 97.1848) (end 93.2045 96.19) (width 0.2) (layer "B.Cu") (net 9) (tstamp c8fad647-aa66-40b3-b675-b0c91b23b9c5))
(segment (start 93.2045 96.19) (end 88.57 96.19) (width 0.2) (layer "B.Cu") (net 9) (tstamp d750ceed-b127-47f9-9882-b9bcf12899b1))
(segment (start 88.8826 119.05) (end 88.57 119.05) (width 0.2) (layer "F.Cu") (net 10) (tstamp 4a9eeb11-3772-4d9d-9398-a5eda3137a34))
(segment (start 94.285 110.025) (end 94.285 113.648) (width 0.2) (layer "F.Cu") (net 10) (tstamp a644579c-6c76-4f25-b756-0c4f0f8b53eb))
(segment (start 94.285 113.648) (end 88.8826 119.05) (width 0.2) (layer "F.Cu") (net 10) (tstamp cf5a2683-4182-477e-80a3-dc49de0a4404))
(segment (start 88.57 120.715) (end 95.555 113.73) (width 0.2) (layer "F.Cu") (net 11) (tstamp 0d24bbda-d9a8-4a28-9796-0931813ab5c2))
(segment (start 95.555 113.73) (end 95.555 110.025) (width 0.2) (layer "F.Cu") (net 11) (tstamp 330e314e-4a15-4fc8-ba1d-e75fdbd3c629))
(segment (start 88.57 121.59) (end 88.57 120.715) (width 0.2) (layer "F.Cu") (net 11) (tstamp c9d0d273-be4d-430c-af2b-faa8a46a6dcf))
(segment (start 88.57 123.255) (end 96.825 115) (width 0.2) (layer "F.Cu") (net 12) (tstamp 7daa1b58-4572-4caf-ba7b-9c73c3890452))
(segment (start 88.57 124.13) (end 88.57 123.255) (width 0.2) (layer "F.Cu") (net 12) (tstamp bcb4ddd3-17dd-45f0-810f-39042083e9ab))
(segment (start 96.825 115) (end 96.825 110.025) (width 0.2) (layer "F.Cu") (net 12) (tstamp e4ff00ca-098f-4a26-a0b9-e370c47021ac))
(segment (start 89.6724 124.333) (end 89.6724 125.568) (width 0.2) (layer "F.Cu") (net 13) (tstamp 319ec9f8-5d8b-41c8-b384-eb97909d420f))
(segment (start 98.095 115.91) (end 89.6724 124.333) (width 0.2) (layer "F.Cu") (net 13) (tstamp 5a8d3a52-9397-452a-bd0b-9b4da1a85b9b))
(segment (start 98.095 110.025) (end 98.095 115.91) (width 0.2) (layer "F.Cu") (net 13) (tstamp 98ea8258-49ea-4b68-aa00-bb19803e5f35))
(segment (start 89.6724 125.568) (end 88.57 126.67) (width 0.2) (layer "F.Cu") (net 13) (tstamp b71f3fd4-665f-480a-910a-5088757e33a1))
(segment (start 99.365 112.344) (end 101.524 114.503) (width 0.2) (layer "F.Cu") (net 14) (tstamp 8fd50f19-c3af-4e58-8e77-106048d0e706))
(segment (start 99.365 110.025) (end 99.365 112.344) (width 0.2) (layer "F.Cu") (net 14) (tstamp bc6ee394-1077-4e29-bb46-2540d557b0d9))
(via (at 101.524 114.503) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14) (tstamp c0a979ae-d4b7-48bf-8bd1-77e756a1f04e))
(segment (start 101.524 116.764) (end 101.524 114.503) (width 0.2) (layer "B.Cu") (net 14) (tstamp 346655c0-0878-4529-b226-b90021a116a9))
(segment (start 111.43 126.67) (end 101.524 116.764) (width 0.2) (layer "B.Cu") (net 14) (tstamp 381eeefa-ddd5-4d78-b407-bb9f9024a536))
(segment (start 100.635 110.025) (end 100.635 112.636) (width 0.2) (layer "F.Cu") (net 15) (tstamp 655621f6-7467-43ef-8513-2bd760713c46))
(segment (start 100.635 112.636) (end 102.476 114.476) (width 0.2) (layer "F.Cu") (net 15) (tstamp db024334-7fdc-46d1-baf7-ecdfe1e6d2f9))