-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflare.kicad_pcb
2013 lines (1992 loc) · 92.6 KB
/
flare.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 "A5")
(title_block
(title "Flare")
(date "2022-01-08")
(rev "0.2")
(company "DJM0")
)
(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
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(C1-Pad1)")
(net 3 "Net-(C2-Pad1)")
(net 4 "Net-(D1-Pad1)")
(net 5 "Net-(D1-Pad2)")
(net 6 "Net-(J1-Pad5)")
(net 7 "Net-(J1-Pad3)")
(net 8 "Net-(J1-Pad2)")
(net 9 "Net-(J3-Pad2)")
(net 10 "Net-(J4-Pad5)")
(net 11 "Net-(J4-Pad3)")
(net 12 "Net-(J4-Pad1)")
(net 13 "Net-(L1-Pad2)")
(net 14 "Earth")
(net 15 "Net-(J5-Pad2)")
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061c8b3c5)
(at 95.25 66.99 90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(path "/00000000-0000-0000-0000-000061c3d7b2")
(attr smd)
(fp_text reference "C1" (at 2.728 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8412992d-8754-44de-9e08-115cec1a3eff)
)
(fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df32840e-2912-4088-b54c-9a85f64c0265)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 4fb21471-41be-4be8-9687-66030f97befc)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(C1-Pad1)") (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_SMD:LED_Cree-XP-G" (layer "F.Cu")
(tedit 5E7E48A5) (tstamp 00000000-0000-0000-0000-000061c8b3ed)
(at 124.714 69.596 90)
(descr "LED Cree-XP-G http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/XLampXPG.pdf")
(tags "LED Cree XP-G")
(path "/00000000-0000-0000-0000-000061c470c5")
(attr smd)
(fp_text reference "D1" (at 0 -2.9 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8)
)
(fp_text value "LED" (at 0 2.9 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0217dfc4-fc13-4699-99ad-d9948522648e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.08)))
(tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56)
)
(fp_line (start -1.8 1.8) (end -1.8 -1.8) (layer "F.SilkS") (width 0.12) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(fp_line (start -1.8 -1.8) (end 1.8 -1.8) (layer "F.SilkS") (width 0.12) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_line (start 1.8 1.8) (end -1.8 1.8) (layer "F.SilkS") (width 0.12) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(fp_line (start -2.15 -2.15) (end 2.15 -2.15) (layer "F.CrtYd") (width 0.05) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(fp_line (start 2.15 2.15) (end -2.15 2.15) (layer "F.CrtYd") (width 0.05) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(fp_line (start 2.15 -2.15) (end 2.15 2.15) (layer "F.CrtYd") (width 0.05) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(fp_line (start -2.15 2.15) (end -2.15 -2.15) (layer "F.CrtYd") (width 0.05) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(fp_line (start 1.65 -1.65) (end 1.65 1.65) (layer "F.Fab") (width 0.1) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
(fp_line (start -1.65 1.65) (end -1.65 -1.65) (layer "F.Fab") (width 0.1) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(fp_line (start 1.65 1.65) (end -1.65 1.65) (layer "F.Fab") (width 0.1) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
(fp_line (start -1.65 -1.65) (end 1.65 -1.65) (layer "F.Fab") (width 0.1) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
(fp_circle (center 0 0) (end 0 1.3) (layer "F.Fab") (width 0.1) (fill none) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(pad "" smd rect locked (at 0 -1 90) (size 1.01 0.75) (layers "F.Paste") (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(pad "" smd rect locked (at 0 0 90) (size 1.01 0.75) (layers "F.Paste") (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(pad "" smd rect locked (at 0 1 90) (size 1.01 0.75) (layers "F.Paste") (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(pad "1" smd rect locked (at -1.4 0 90) (size 0.5 3.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(D1-Pad1)") (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(pad "2" smd rect locked (at 1.4 0 90) (size 0.5 3.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(D1-Pad2)") (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(pad "3" smd rect locked (at 0 0 90) (size 1.3 3.3) (layers "F.Cu" "F.Mask")
(net 14 "Earth") (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(model "${KISYS3DMOD}/LED_SMD.3dshapes/LED_Cree-XP-G.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_CNCTech_1001-011-01101_Horizontal" (layer "F.Cu")
(tedit 5E754393) (tstamp 00000000-0000-0000-0000-000061c8b421)
(at 80.01 69.596 180)
(descr "USB type A Plug, Horizontal, http://cnctech.us/pdfs/1001-011-01101.pdf")
(tags "USB-A")
(path "/00000000-0000-0000-0000-000061c3afb0")
(attr smd)
(fp_text reference "J1" (at -6.9 -8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f22151c-f260-4674-b486-4710a2c42a55)
)
(fp_text value "USB_A" (at 0 8 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d)
)
(fp_text user "PCB Edge" (at -4.55 -0.05 90) (layer "Dwgs.User")
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b)
)
(fp_text user "${REFERENCE}" (at -6 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08a7c925-7fae-4530-b0c9-120e185cb318)
)
(fp_line (start -8.02 -4.4) (end -8.775 -4.4) (layer "F.SilkS") (width 0.12) (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(fp_line (start -4.85 -6.145) (end -3.8 -6.145) (layer "F.SilkS") (width 0.12) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start -4.85 6.145) (end -3.8 6.145) (layer "F.SilkS") (width 0.12) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start -8.02 -4.4) (end -8.02 4.4) (layer "F.SilkS") (width 0.12) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(fp_line (start -3.8 6.025) (end -3.8 -6.025) (layer "Dwgs.User") (width 0.1) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start -9.15 4.55) (end -9.15 7.15) (layer "F.CrtYd") (width 0.05) (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(fp_line (start -4.65 -6.52) (end 11.4 -6.52) (layer "F.CrtYd") (width 0.05) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(fp_line (start -4.65 7.15) (end -4.65 6.52) (layer "F.CrtYd") (width 0.05) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(fp_line (start -9.15 -7.15) (end -9.15 -4.55) (layer "F.CrtYd") (width 0.05) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start -9.15 -7.15) (end -4.65 -7.15) (layer "F.CrtYd") (width 0.05) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(fp_line (start -11.4 -4.55) (end -9.15 -4.55) (layer "F.CrtYd") (width 0.05) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start -11.4 4.55) (end -11.4 -4.55) (layer "F.CrtYd") (width 0.05) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(fp_line (start -9.15 7.15) (end -4.65 7.15) (layer "F.CrtYd") (width 0.05) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(fp_line (start 11.4 6.52) (end 11.4 -6.52) (layer "F.CrtYd") (width 0.05) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(fp_line (start -11.4 4.55) (end -9.15 4.55) (layer "F.CrtYd") (width 0.05) (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(fp_line (start -4.65 6.52) (end 11.4 6.52) (layer "F.CrtYd") (width 0.05) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(fp_line (start -4.65 -6.52) (end -4.65 -7.15) (layer "F.CrtYd") (width 0.05) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(fp_line (start -7.25 -4) (end -7.25 -3.05) (layer "F.Fab") (width 0.1) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(fp_line (start -10.4 -1.25) (end -7.9 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(fp_line (start 10.9 6.025) (end 10.9 -6.025) (layer "F.Fab") (width 0.1) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
(fp_line (start -10.4 0.75) (end -7.9 0.75) (layer "F.Fab") (width 0.1) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(fp_line (start -7.75 -3.5) (end -7.25 -4) (layer "F.Fab") (width 0.1) (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
(fp_line (start -7.9 -6.025) (end 10.9 -6.025) (layer "F.Fab") (width 0.1) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
(fp_line (start -10.4 1.25) (end -10.4 0.75) (layer "F.Fab") (width 0.1) (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(fp_line (start -10.4 3.75) (end -10.4 3.25) (layer "F.Fab") (width 0.1) (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(fp_line (start -7.9 6.025) (end 10.9 6.025) (layer "F.Fab") (width 0.1) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(fp_line (start -7.9 6.025) (end -7.9 -6.025) (layer "F.Fab") (width 0.1) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
(fp_line (start -10.4 -0.75) (end -7.9 -0.75) (layer "F.Fab") (width 0.1) (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(fp_line (start -10.4 3.25) (end -7.9 3.25) (layer "F.Fab") (width 0.1) (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(fp_line (start -10.4 -3.75) (end -7.9 -3.75) (layer "F.Fab") (width 0.1) (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(fp_line (start -10.4 -3.25) (end -10.4 -3.75) (layer "F.Fab") (width 0.1) (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(fp_line (start -10.4 3.75) (end -7.9 3.75) (layer "F.Fab") (width 0.1) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(fp_line (start -10.4 -3.25) (end -7.9 -3.25) (layer "F.Fab") (width 0.1) (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
(fp_line (start -10.4 1.25) (end -7.9 1.25) (layer "F.Fab") (width 0.1) (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(fp_line (start -10.4 -0.75) (end -10.4 -1.25) (layer "F.Fab") (width 0.1) (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(fp_line (start -7.75 -3.5) (end -7.25 -3) (layer "F.Fab") (width 0.1) (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(fp_circle (center -6.9 2.3) (end -6.9 2.8) (layer "F.Fab") (width 0.1) (fill none) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(fp_circle (center -6.9 -2.3) (end -6.9 -2.8) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(pad "" np_thru_hole circle locked (at -6.9 2.3 180) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(pad "" np_thru_hole circle locked (at -6.9 -2.3 180) (size 1.1 1.1) (drill 1.1) (layers *.Cu *.Mask) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(pad "1" smd rect locked (at -9.65 -3.5 180) (size 2.5 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(C1-Pad1)") (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(pad "2" smd rect locked (at -9.65 -1 180) (size 2.5 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J1-Pad2)") (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(pad "3" smd rect locked (at -9.65 1 180) (size 2.5 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-Pad3)") (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(pad "4" smd rect locked (at -9.65 3.5 180) (size 2.5 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(pad "5" thru_hole oval locked (at -6.9 -5.7 180) (size 3.5 1.9) (drill oval 2.5 0.9) (layers *.Cu *.Mask)
(net 6 "Net-(J1-Pad5)") (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(pad "5" thru_hole oval locked (at -6.9 5.7 180) (size 3.5 1.9) (drill oval 2.5 0.9) (layers *.Cu *.Mask)
(net 6 "Net-(J1-Pad5)") (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(model "${KISYS3DMOD}/Connector_USB.3dshapes/USB_A_CNCTech_1001-011-01101_Horizontal.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 "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000061c8b437)
(at 112.522 61.468 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path "/00000000-0000-0000-0000-000061c455f2")
(attr through_hole)
(fp_text reference "J2" (at 0 -2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(fp_text value "Jumper" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8174b4de-74b1-48db-ab8e-c8432251095b)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(C2-Pad1)") (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(D1-Pad2)") (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8))
(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_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000061c8b44d)
(at 115.062 77.724 -90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path "/00000000-0000-0000-0000-000061c47f6f")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.794 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1830a1b-f0cc-47ae-a2c9-679c82032f14)
)
(fp_text value "Jumper" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 66116376-6967-4178-9f23-a26cdeafc400)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 10109f84-4940-47f8-8640-91f185ac9bc1))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 47baf4b1-0938-497d-88f9-671136aa8be7))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 55e740a3-0735-4744-896e-2bf5437093b9))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp c022004a-c968-410e-b59e-fbab0e561e9d))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp f4f99e3d-7269-4f6a-a759-16ad2a258779))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 71c31975-2c45-4d18-a25a-18e07a55d11e))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e10b5627-3247-4c86-b9f6-ef474ca11543))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e8314017-7be6-4011-9179-37449a29b311))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 44d8279a-9cd1-4db6-856f-0363131605fc))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp ef8fe2ac-6a7f-4682-9418-b801a1b10a3b))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(D1-Pad1)") (tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137))
(pad "2" thru_hole oval locked (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "Net-(J3-Pad2)") (tstamp 749dfe75-c0d6-4872-9330-29c5bbcb8ff8))
(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_2x03_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000061c8b469)
(at 108.966 72.136 180)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(path "/00000000-0000-0000-0000-000061c4be03")
(attr through_hole)
(fp_text reference "J4" (at 1.27 -2.794) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1169a2d-8998-4b50-a48d-c520bcc1b8e1)
)
(fp_text value "R Selector Pins" (at 1.27 7.41) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd)
)
(fp_text user "${REFERENCE}" (at 1.27 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23bb2798-d93a-4696-a962-c305c4298a0c)
)
(fp_line (start -1.33 6.41) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp 13abf99d-5265-4779-8973-e94370fd18ff))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
(fp_line (start 3.87 -1.33) (end 3.87 6.41) (layer "F.SilkS") (width 0.12) (tstamp 32667662-ae86-4904-b198-3e95f11851bf))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3dcc657b-55a1-48e0-9667-e01e7b6b08b5))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 67f6e996-3c99-493c-8f6f-e739e2ed5d7a))
(fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp a05d7640-f2f6-4ba7-8c51-5a4af431fc13))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b6270a28-e0d9-4655-a18a-03dbf007b940))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f3490fa5-5a27-423b-af60-53609669542c))
(fp_line (start -1.8 6.85) (end 4.35 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 0a3cc030-c9dd-4d74-9d50-715ed2b361a2))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 15875808-74d5-4210-b8ca-aa8fbc04ae21))
(fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f))
(fp_line (start 4.35 6.85) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp dd00c2e1-6027-4717-b312-4fab3ee52002))
(fp_line (start 3.81 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 46918595-4a45-48e8-84c0-961b4db7f35f))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 94c158d1-8503-4553-b511-bf42f506c2a8))
(fp_line (start 3.81 -1.27) (end 3.81 6.35) (layer "F.Fab") (width 0.1) (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6))
(fp_line (start -1.27 6.35) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934))
(pad "1" thru_hole rect locked (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(J4-Pad1)") (tstamp 62c076a3-d618-44a2-9042-9a08b3576787))
(pad "2" thru_hole oval locked (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "Net-(J3-Pad2)") (tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12))
(pad "3" thru_hole oval locked (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "Net-(J4-Pad3)") (tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf))
(pad "4" thru_hole oval locked (at 2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "Net-(J3-Pad2)") (tstamp 983c426c-24e0-4c65-ab69-1f1824adc5c6))
(pad "5" thru_hole oval locked (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(J4-Pad5)") (tstamp 6e105729-aba0-497c-a99e-c32d2b3ddb6d))
(pad "6" thru_hole oval locked (at 2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "Net-(J3-Pad2)") (tstamp 78cbdd6c-4878-4cc5-9a58-0e506478e37d))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061c8b48b)
(at 114.3 72.644)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(path "/00000000-0000-0000-0000-000061c4972d")
(attr smd)
(fp_text reference "R1" (at 3.556 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 417f13e4-c121-485a-a6b5-8b55e70350b8)
)
(fp_text value "0.1" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c201e1b2-fc01-4110-bdaa-a33290468c83)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388)
)
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp 128e34ce-eee7-477d-b905-a493e98db783))
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp c801d42e-dd94-493e-bd2f-6c3ddad43f55))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 0088d107-13d8-496c-8da6-7bbeb9d096b0))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 67621f9e-0a6a-4778-ad69-04dcf300659c))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 68e09be7-3bbc-4443-a838-209ce20b2bef))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 6a780180-586a-4241-a52d-dc7a5ffcc966))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 98e81e80-1f85-4152-be3f-99785ea97751))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf))
(pad "1" smd roundrect locked (at -1.4625 0) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222213333)
(net 12 "Net-(J4-Pad1)") (tstamp 03d88a85-11fd-47aa-954c-c318bb15294a))
(pad "2" smd roundrect locked (at 1.4625 0) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222213333)
(net 1 "GND") (tstamp 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061c8b49c)
(at 114.3 69.596)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(path "/00000000-0000-0000-0000-000061c499b6")
(attr smd)
(fp_text reference "R2" (at 3.556 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2bf3f24b-fd30-41a7-a274-9b519491916b)
)
(fp_text value "0.2" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4831966c-bb32-4bc8-a400-0382a02ffa1c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 78f88cf6-751c-4e9b-ae75-fb8b6d44ff39))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp c19dbe3c-ced0-48f7-a91d-777569cfb936))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 587a157d-dedf-4558-a037-1a94bbba1848))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 9762c9ed-64d8-4f3e-baf6-f6ba6effc919))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp e25ce415-914a-48fe-bf09-324317917b2e))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 0867287d-2e6a-4d69-a366-c29f88198f2b))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1b54105e-6590-4d26-a763-ecfcf81eedc4))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp 75286985-9fa5-4d30-89c5-493b6e63cd66))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp afd3dbad-e7a8-4e4c-b77c-4065a69aefa2))
(pad "1" smd roundrect locked (at -1.4625 0) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222213333)
(net 11 "Net-(J4-Pad3)") (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
(pad "2" smd roundrect locked (at 1.4625 0) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222213333)
(net 1 "GND") (tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061c8b4ad)
(at 114.3 66.548)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(path "/00000000-0000-0000-0000-000061c49fc2")
(attr smd)
(fp_text reference "R3" (at 3.556 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a9f2d82-f64d-4264-8bec-c182528fc4de)
)
(fp_text value "0.5" (at 0 1.82) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b60c50d1-225e-415c-8712-7acb5e3dc8ea)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 4e66a44f-7fa6-4e16-bf9b-62ec864301a5)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 55992e35-fe7b-468a-9b7a-1e4dc931b904))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp f9865a9f-edb8-49c7-828f-4896e1f3047a))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 5740c959-93d8-47fd-8f68-62f0109e753d))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 7e08f2a4-63d6-468b-bd8b-ec607077e023))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp b6bcc3cf-50de-4a33-bc41-678825c1ecf2))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp c3c93de0-69b1-4a04-8e0b-d78caf487c63))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 0d35483a-0b12-46cc-b9f2-896fd6831779))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9702d639-3b1f-4825-8985-b32b9008503d))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp a06e8e78-f567-42e6-b645-013b1073ca31))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp ec9e24d8-d1c5-40e2-9812-dc315d05f470))
(pad "1" smd roundrect locked (at -1.4625 0) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222213333)
(net 10 "Net-(J4-Pad5)") (tstamp 7447a6e7-8205-46ba-afca-d0fa8f90c95a))
(pad "2" smd roundrect locked (at 1.4625 0) (size 1.125 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2222213333)
(net 1 "GND") (tstamp 4412226e-d975-40a2-921f-502ff4129a95))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:TSOT-23-5" (layer "F.Cu")
(tedit 5A02FF57) (tstamp 00000000-0000-0000-0000-000061c8b4c2)
(at 98.512 72.07 180)
(descr "5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf")
(tags "TSOT-23-5")
(path "/00000000-0000-0000-0000-000061c39461")
(attr smd)
(fp_text reference "U1" (at 3.262 -0.066) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b994142f-02ac-4881-9587-6d3df53c96d2)
)
(fp_text value "PAM2804" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b603d26a-e034-42fb-8327-b60c5bf9cdd2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 909b030b-fa1a-4fe8-b1ee-422b4d9e23cf)
)
(fp_line (start 0.88 -1.51) (end -1.55 -1.51) (layer "F.SilkS") (width 0.12) (tstamp 43891a3c-749f-498d-ba99-685a27689b0d))
(fp_line (start -0.88 1.56) (end 0.88 1.56) (layer "F.SilkS") (width 0.12) (tstamp cbc539d2-6a10-4052-9b7a-f10326dcac67))
(fp_line (start -2.17 -1.7) (end 2.17 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 04f5865e-f449-4408-a0c8-771cccfcb129))
(fp_line (start 2.17 1.7) (end -2.17 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 2d6718e7-f18d-444d-9792-ddf1a113460c))
(fp_line (start -2.17 -1.7) (end -2.17 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 71c77456-1405-42e3-95ed-69e629de0558))
(fp_line (start 2.17 1.7) (end 2.17 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp f144a97d-c3f0-423f-b0a9-3f7dbc42478b))
(fp_line (start 0.88 -1.45) (end -0.43 -1.45) (layer "F.Fab") (width 0.1) (tstamp 213a2af1-412b-47f4-ab3b-c5f43b6be7a6))
(fp_line (start 0.88 -1.45) (end 0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 6199bec7-e7eb-4ae0-b9ec-c563e157d635))
(fp_line (start -0.88 -1) (end -0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp 7f3eb118-a20c-4239-b800-c9211c66847d))
(fp_line (start -0.88 -1) (end -0.43 -1.45) (layer "F.Fab") (width 0.1) (tstamp d2de4093-1fc2-4bc1-94b6-4d0fe3426c6f))
(fp_line (start 0.88 1.45) (end -0.88 1.45) (layer "F.Fab") (width 0.1) (tstamp e47adf3d-9c24-4345-80c9-66679cad107e))
(pad "1" smd rect locked (at -1.31 -0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(J5-Pad2)") (tstamp db83d0af-e085-4050-8496-fa2ebdecbd62))
(pad "2" smd rect locked (at -1.31 0 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "GND") (tstamp 0c30a4be-5679-499f-8c5b-5f3024f9d6cf))
(pad "3" smd rect locked (at -1.31 0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(L1-Pad2)") (tstamp 4dc6088c-89a5-4db7-b3ae-db4b6396ad49))
(pad "4" smd rect locked (at 1.31 0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(C1-Pad1)") (tstamp ebadd2a5-21ab-4a7e-b5bc-6f737367e560))
(pad "5" smd rect locked (at 1.31 -0.95 180) (size 1.22 0.65) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J3-Pad2)") (tstamp 936e2ca6-11ae-4f42-9128-52bb329f3d21))
(model "${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/TSOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD:L_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEF0) (tstamp 00000000-0000-0000-0000-000061c8c5ee)
(at 101.854 67.056 -90)
(descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(path "/00000000-0000-0000-0000-000061c41f68")
(attr smd)
(fp_text reference "L1" (at -2.794 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381)
)
(fp_text value "4.7uH" (at 0 1.55 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13475e15-f37c-4de8-857e-1722b0c39513)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
)
(fp_line (start -0.399622 0.56) (end 0.399622 0.56) (layer "F.SilkS") (width 0.12) (tstamp 48f827a8-6e22-4a2e-abdc-c2a03098d883))
(fp_line (start -0.399622 -0.56) (end 0.399622 -0.56) (layer "F.SilkS") (width 0.12) (tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b))
(fp_line (start -1.75 -0.85) (end 1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp 120a7b0f-ddfd-4447-85c1-35665465acdb))
(fp_line (start 1.75 0.85) (end -1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp 2732632c-4768-42b6-bf7f-14643424019e))
(fp_line (start 1.75 -0.85) (end 1.75 0.85) (layer "F.CrtYd") (width 0.05) (tstamp 854dd5d4-5fd2-4730-bd49-a9cd8299a065))
(fp_line (start -1.75 0.85) (end -1.75 -0.85) (layer "F.CrtYd") (width 0.05) (tstamp 8d55e186-3e11-40e8-a65e-b36a8a00069e))
(fp_line (start -1 0.45) (end -1 -0.45) (layer "F.Fab") (width 0.1) (tstamp 5b2b5c7d-f943-4634-9f0a-e9561705c49d))
(fp_line (start 1 -0.45) (end 1 0.45) (layer "F.Fab") (width 0.1) (tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e))
(fp_line (start -1 -0.45) (end 1 -0.45) (layer "F.Fab") (width 0.1) (tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd))
(fp_line (start 1 0.45) (end -1 0.45) (layer "F.Fab") (width 0.1) (tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b))
(pad "1" smd roundrect locked (at -1.0625 0 270) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad1)") (tstamp aa02e544-13f5-4cf8-a5f4-3e6cda006090))
(pad "2" smd roundrect locked (at 1.0625 0 270) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(L1-Pad2)") (tstamp 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a))
(model "${KISYS3DMOD}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-000061c8c726)
(at 98.552 66.99 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor")
(path "/00000000-0000-0000-0000-000061c42ef4")
(attr smd)
(fp_text reference "C2" (at -2.728 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807)
)
(fp_text value "10uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(fp_line (start 1.7 0.98) (end -1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(fp_line (start -1.7 0.98) (end -1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(fp_line (start -1.7 -0.98) (end 1.7 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(fp_line (start 1.7 -0.98) (end 1.7 0.98) (layer "F.CrtYd") (width 0.05) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(pad "1" smd roundrect locked (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(C2-Pad1)") (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
(pad "2" smd roundrect locked (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.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 "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-000061c9a9f5)
(at 97.282 77.724 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path "/00000000-0000-0000-0000-000061cab7a4")
(attr through_hole)
(fp_text reference "J5" (at 0 -2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 99030c03-63b4-49ba-b5ab-4d56974f7963)
)
(fp_text value "Jumper" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 87c78429-be2b-40ed-8d3b-56cb9666a56f)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb868d2e-5efb-4bfb-8796-88435b326918)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 46cfd089-6873-4d8b-89af-02ff30e49472))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 9d984d1b-8097-407f-92f3-3ef68867dcfa))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp bb4f0314-c44c-4dda-b85c-537120eaae9a))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp bbb15673-6d42-42b8-9d51-7515b3ad9ee9))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e83e0227-ac0f-4180-82bd-68d3a7b56476))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 02165243-61a3-4857-84ba-71a77cb9a387))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 825c70b0-4860-42b7-97dc-86bfa46e06fd))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 9ff4672a-e1a4-4a1e-887d-1b9a3429d278))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp edc9ab4f-487a-48dc-95f2-4d87f0e9cf9e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 68b52f01-fa04-4908-bf88-60c62ace1cfa))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 7e969d15-6cc0-4258-8b27-586608a21adb))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp b8c83ad1-b3c9-495c-bdc6-62dead00f5ad))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp f022716e-b121-4cbf-a833-20e924070c22))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp f1dd8642-b405-490b-a449-d1cc5797fda8))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "Net-(C1-Pad1)") (tstamp 2bef89de-08c7-4a13-9d85-67948d429ca0))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(J5-Pad2)") (tstamp fc0a4225-db46-4d48-8163-d522602d57cd))
(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))
)
)
(gr_line (start 83.82 81.28) (end 83.82 57.912) (layer "Edge.Cuts") (width 0.1) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(gr_line (start 83.82 57.912) (end 132.08 57.912) (layer "Edge.Cuts") (width 0.1) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(gr_line (start 132.08 81.28) (end 83.82 81.28) (layer "Edge.Cuts") (width 0.1) (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
(gr_line (start 132.08 57.912) (end 132.08 81.28) (layer "Edge.Cuts") (width 0.1) (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(gr_text "DJM0" (at 130.556 78.486 90) (layer "F.SilkS") (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "Flare V0.2" (at 130.556 62.738 90) (layer "F.SilkS") (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 100.01 72.07) (end 100.05999 72.02001) (width 0.7) (layer "F.Cu") (net 1) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(segment (start 99.822 72.07) (end 104.206 72.07) (width 0.7) (layer "F.Cu") (net 1) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(segment (start 100.05999 72.02001) (end 102.47799 72.02001) (width 0.7) (layer "F.Cu") (net 1) (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
(segment (start 99.822 72.07) (end 100.01 72.07) (width 0.7) (layer "F.Cu") (net 1) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(via (at 107.95 64.008) (size 1.6) (drill 0.8) (layers "F.Cu" "B.Cu") (net 1) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(via (at 103.378 60.452) (size 1.6) (drill 0.8) (layers "F.Cu" "B.Cu") (net 1) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(segment (start 104.394 60.452) (end 107.95 64.008) (width 0.8) (layer "B.Cu") (net 1) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(segment (start 103.378 60.452) (end 104.394 60.452) (width 0.8) (layer "B.Cu") (net 1) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(segment (start 97.282 77.724) (end 97.282 77.47) (width 0.8) (layer "F.Cu") (net 2) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
(segment (start 95.616 71.12) (end 95.25 70.754) (width 0.8) (layer "F.Cu") (net 2) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(segment (start 97.282 77.47) (end 92.908 73.096) (width 0.8) (layer "F.Cu") (net 2) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(segment (start 89.66 73.096) (end 92.908 73.096) (width 0.8) (layer "F.Cu") (net 2) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(segment (start 95.25 70.754) (end 95.25 67.94) (width 0.8) (layer "F.Cu") (net 2) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(segment (start 97.202 71.12) (end 95.616 71.12) (width 0.8) (layer "F.Cu") (net 2) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(segment (start 92.908 73.096) (end 95.25 70.754) (width 0.8) (layer "F.Cu") (net 2) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(segment (start 101.8075 66.04) (end 101.854 65.9935) (width 0.8) (layer "F.Cu") (net 3) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
(segment (start 106.3795 61.468) (end 112.522 61.468) (width 0.8) (layer "F.Cu") (net 3) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
(segment (start 101.854 65.9935) (end 106.3795 61.468) (width 0.8) (layer "F.Cu") (net 3) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(segment (start 98.552 66.04) (end 101.8075 66.04) (width 0.8) (layer "F.Cu") (net 3) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(segment (start 115.062 77.724) (end 117.986 77.724) (width 0.8) (layer "F.Cu") (net 4) (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(segment (start 117.986 77.724) (end 124.714 70.996) (width 0.8) (layer "F.Cu") (net 4) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(segment (start 115.062 61.468) (end 117.986 61.468) (width 0.8) (layer "F.Cu") (net 5) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(segment (start 117.986 61.468) (end 124.714 68.196) (width 0.8) (layer "F.Cu") (net 5) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
(segment (start 97.202 73.02) (end 97.202 74.596) (width 0.8) (layer "F.Cu") (net 9) (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
(segment (start 106.426 67.056) (end 106.426 72.136) (width 0.8) (layer "F.Cu") (net 9) (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
(segment (start 97.536 74.93) (end 103.632 74.93) (width 0.8) (layer "F.Cu") (net 9) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
(segment (start 97.202 74.596) (end 97.536 74.93) (width 0.8) (layer "F.Cu") (net 9) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(segment (start 108.204 77.724) (end 112.522 77.724) (width 0.8) (layer "F.Cu") (net 9) (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
(segment (start 106.426 72.136) (end 106.426 75.946) (width 0.8) (layer "F.Cu") (net 9) (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
(segment (start 103.632 74.93) (end 106.426 72.136) (width 0.8) (layer "F.Cu") (net 9) (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
(segment (start 106.426 75.946) (end 108.204 77.724) (width 0.8) (layer "F.Cu") (net 9) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(segment (start 112.3295 67.056) (end 112.8375 66.548) (width 0.8) (layer "F.Cu") (net 10) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
(segment (start 108.966 67.056) (end 112.3295 67.056) (width 0.8) (layer "F.Cu") (net 10) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
(segment (start 108.966 69.596) (end 112.8375 69.596) (width 0.8) (layer "F.Cu") (net 11) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
(segment (start 108.966 72.136) (end 112.3295 72.136) (width 0.8) (layer "F.Cu") (net 12) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(segment (start 112.3295 72.136) (end 112.8375 72.644) (width 0.8) (layer "F.Cu") (net 12) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(segment (start 101.6 71.12) (end 101.854 70.866) (width 0.7) (layer "F.Cu") (net 13) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(segment (start 99.822 71.12) (end 101.6 71.12) (width 0.7) (layer "F.Cu") (net 13) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(segment (start 101.854 70.866) (end 101.854 68.1185) (width 0.7) (layer "F.Cu") (net 13) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(segment (start 124.714 69.596) (end 121.666 69.596) (width 0.8) (layer "F.Cu") (net 14) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(segment (start 124.714 69.596) (end 127.254 69.596) (width 0.8) (layer "F.Cu") (net 14) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(segment (start 102.484 73.02) (end 102.87 73.406) (width 0.8) (layer "F.Cu") (net 15) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(segment (start 99.822 73.02) (end 102.484 73.02) (width 0.8) (layer "F.Cu") (net 15) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(segment (start 99.822 77.724) (end 102.87 77.724) (width 0.7) (layer "F.Cu") (net 15) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(via (at 102.87 73.406) (size 1.4) (drill 0.7) (layers "F.Cu" "B.Cu") (net 15) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(via (at 102.87 77.724) (size 1.4) (drill 0.7) (layers "F.Cu" "B.Cu") (net 15) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(segment (start 102.87 73.406) (end 102.87 77.724) (width 0.8) (layer "B.Cu") (net 15) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(zone (net 1) (net_name "GND") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061c9bd78) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 117.094 80.772)
(xy 84.328 80.772)
(xy 84.328 58.42)
(xy 117.094 58.42)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 116.967 60.433)
(xy 116.127107 60.433)
(xy 116.008632 60.314525)
(xy 115.765411 60.15201)
(xy 115.495158 60.040068)
(xy 115.20826 59.983)
(xy 114.91574 59.983)
(xy 114.628842 60.040068)
(xy 114.358589 60.15201)
(xy 114.115368 60.314525)
(xy 113.983513 60.44638)
(xy 113.961502 60.37382)
(xy 113.902537 60.263506)
(xy 113.823185 60.166815)
(xy 113.726494 60.087463)
(xy 113.61618 60.028498)
(xy 113.496482 59.992188)
(xy 113.372 59.979928)
(xy 111.672 59.979928)
(xy 111.547518 59.992188)
(xy 111.42782 60.028498)
(xy 111.317506 60.087463)
(xy 111.220815 60.166815)
(xy 111.141463 60.263506)
(xy 111.082498 60.37382)
(xy 111.064546 60.433)
(xy 106.430327 60.433)
(xy 106.379499 60.427994)
(xy 106.328671 60.433)
(xy 106.328662 60.433)
(xy 106.176605 60.447976)
(xy 105.981507 60.507159)
(xy 105.801703 60.603266)
(xy 105.644104 60.732604)
(xy 105.611697 60.772092)
(xy 101.465109 64.918681)
(xy 101.305592 64.934392)
(xy 101.144858 64.98315)
(xy 101.10398 65.005)
(xy 99.433213 65.005)
(xy 99.36685 64.969528)
(xy 99.200254 64.918992)
(xy 99.027 64.901928)
(xy 98.077 64.901928)
(xy 97.903746 64.918992)
(xy 97.73715 64.969528)
(xy 97.583614 65.051595)
(xy 97.449038 65.162038)
(xy 97.338595 65.296614)
(xy 97.256528 65.45015)
(xy 97.205992 65.616746)
(xy 97.188928 65.79)
(xy 97.188928 66.29)
(xy 97.205992 66.463254)
(xy 97.256528 66.62985)
(xy 97.338595 66.783386)
(xy 97.449038 66.917962)
(xy 97.455594 66.923342)
(xy 97.375815 66.988815)
(xy 97.296463 67.085506)
(xy 97.237498 67.19582)
(xy 97.201188 67.315518)
(xy 97.188928 67.44)
(xy 97.192 67.65425)
(xy 97.35075 67.813)
(xy 98.425 67.813)
(xy 98.425 67.793)
(xy 98.679 67.793)
(xy 98.679 67.813)
(xy 99.75325 67.813)
(xy 99.912 67.65425)
(xy 99.915072 67.44)
(xy 99.902812 67.315518)
(xy 99.866502 67.19582)
(xy 99.807537 67.085506)
(xy 99.798915 67.075)
(xy 101.254139 67.075)
(xy 101.144858 67.10815)
(xy 100.996725 67.187329)
(xy 100.866885 67.293885)
(xy 100.760329 67.423725)
(xy 100.68115 67.571858)
(xy 100.632392 67.732592)
(xy 100.615928 67.89975)
(xy 100.615928 68.33725)
(xy 100.632392 68.504408)
(xy 100.68115 68.665142)
(xy 100.760329 68.813275)
(xy 100.866885 68.943115)
(xy 100.869001 68.944851)
(xy 100.869 70.135)
(xy 99.77362 70.135)
(xy 99.628906 70.149253)
(xy 99.603605 70.156928)
(xy 99.212 70.156928)
(xy 99.087518 70.169188)
(xy 98.96782 70.205498)
(xy 98.857506 70.264463)
(xy 98.760815 70.343815)
(xy 98.681463 70.440506)
(xy 98.622498 70.55082)
(xy 98.586188 70.670518)
(xy 98.573928 70.795)
(xy 98.573928 71.445)
(xy 98.586188 71.569482)
(xy 98.593929 71.595)
(xy 98.586188 71.620518)
(xy 98.573928 71.745)
(xy 98.577 71.78425)
(xy 98.73575 71.943)
(xy 98.817859 71.943)
(xy 98.857506 71.975537)
(xy 98.96782 72.034502)
(xy 99.084841 72.07)
(xy 98.96782 72.105498)
(xy 98.857506 72.164463)
(xy 98.817859 72.197)
(xy 98.73575 72.197)
(xy 98.577 72.35575)
(xy 98.573928 72.395)
(xy 98.586188 72.519482)
(xy 98.593929 72.545)
(xy 98.586188 72.570518)
(xy 98.573928 72.695)
(xy 98.573928 73.345)
(xy 98.586188 73.469482)
(xy 98.622498 73.58918)
(xy 98.681463 73.699494)
(xy 98.760815 73.796185)
(xy 98.857506 73.875537)
(xy 98.893918 73.895)
(xy 98.237 73.895)
(xy 98.237 73.817674)
(xy 98.263185 73.796185)
(xy 98.342537 73.699494)
(xy 98.401502 73.58918)
(xy 98.437812 73.469482)
(xy 98.450072 73.345)
(xy 98.450072 72.695)
(xy 98.437812 72.570518)
(xy 98.401502 72.45082)
(xy 98.342537 72.340506)
(xy 98.263185 72.243815)
(xy 98.166494 72.164463)
(xy 98.05618 72.105498)
(xy 97.939159 72.07)
(xy 98.05618 72.034502)
(xy 98.166494 71.975537)
(xy 98.263185 71.896185)
(xy 98.342537 71.799494)
(xy 98.401502 71.68918)
(xy 98.437812 71.569482)
(xy 98.450072 71.445)
(xy 98.450072 70.795)
(xy 98.437812 70.670518)
(xy 98.401502 70.55082)
(xy 98.342537 70.440506)
(xy 98.263185 70.343815)
(xy 98.166494 70.264463)
(xy 98.05618 70.205498)
(xy 97.936482 70.169188)
(xy 97.812 70.156928)
(xy 97.592638 70.156928)
(xy 97.404895 70.099976)
(xy 97.252838 70.085)
(xy 96.285 70.085)
(xy 96.285 68.873737)
(xy 96.352962 68.817962)
(xy 96.463405 68.683386)
(xy 96.545472 68.52985)
(xy 96.572727 68.44)
(xy 97.188928 68.44)
(xy 97.201188 68.564482)
(xy 97.237498 68.68418)
(xy 97.296463 68.794494)
(xy 97.375815 68.891185)
(xy 97.472506 68.970537)
(xy 97.58282 69.029502)
(xy 97.702518 69.065812)
(xy 97.827 69.078072)
(xy 98.26625 69.075)
(xy 98.425 68.91625)
(xy 98.425 68.067)
(xy 98.679 68.067)
(xy 98.679 68.91625)
(xy 98.83775 69.075)
(xy 99.277 69.078072)
(xy 99.401482 69.065812)
(xy 99.52118 69.029502)
(xy 99.631494 68.970537)
(xy 99.728185 68.891185)
(xy 99.807537 68.794494)
(xy 99.866502 68.68418)
(xy 99.902812 68.564482)
(xy 99.915072 68.44)
(xy 99.912 68.22575)
(xy 99.75325 68.067)
(xy 98.679 68.067)
(xy 98.425 68.067)
(xy 97.35075 68.067)
(xy 97.192 68.22575)
(xy 97.188928 68.44)
(xy 96.572727 68.44)
(xy 96.596008 68.363254)
(xy 96.613072 68.19)
(xy 96.613072 67.69)
(xy 96.596008 67.516746)
(xy 96.545472 67.35015)
(xy 96.463405 67.196614)
(xy 96.352962 67.062038)
(xy 96.346406 67.056658)
(xy 96.426185 66.991185)
(xy 96.505537 66.894494)
(xy 96.564502 66.78418)
(xy 96.600812 66.664482)
(xy 96.613072 66.54)
(xy 96.61 66.32575)
(xy 96.45125 66.167)
(xy 95.377 66.167)
(xy 95.377 66.187)
(xy 95.123 66.187)
(xy 95.123 66.167)
(xy 94.04875 66.167)
(xy 93.89 66.32575)
(xy 93.886928 66.54)
(xy 93.899188 66.664482)
(xy 93.935498 66.78418)
(xy 93.994463 66.894494)
(xy 94.073815 66.991185)