-
Notifications
You must be signed in to change notification settings - Fork 6
/
Unified-Daughterboard.kicad_pcb
4672 lines (4657 loc) · 181 KB
/
Unified-Daughterboard.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes 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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers")
)
)
(net 0 "")
(net 1 "D+")
(net 2 "GND")
(net 3 "D-")
(net 4 "/CC1")
(net 5 "/CC2")
(net 6 "+5V")
(net 7 "VBUS")
(net 8 "unconnected-(J3-PadB8)")
(net 9 "unconnected-(J3-PadA8)")
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 00000000-0000-0000-0000-00005c91b700)
(at 154.675 90.125)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "Unified-Daughterboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c91ec94")
(attr exclude_from_pos_files)
(fp_text reference "MH2" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 953486d0-8a04-481a-9cb3-429397b3237c)
)
(fp_text value "Mount-M2" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c87bb80-1a4d-4785-87ca-ea55b69c038d)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01db55fc-f2ab-465b-9525-6186a5d68868)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp d50b858f-870b-4b80-a32f-fd9892957fb1))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 1da08b61-e38a-47c0-a30b-9fc7d843ca7e))
(pad "1" thru_hole circle locked (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 16a07c45-b12b-43bc-8c79-7178503fc852))
(pad "1" thru_hole circle locked (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 2a2ed8ee-c7c8-42c2-bc34-16066c9e9ba9))
(pad "1" thru_hole circle locked (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 76bc5345-9c2c-4403-9e8c-0ed835a41298))
(pad "1" thru_hole circle locked (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 97ae7c5c-82d6-4ef2-9c0e-e358781495db))
(pad "1" thru_hole circle locked (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 9ee01db0-fdb4-4964-b888-2644c5ff6aaa))
(pad "1" thru_hole circle locked (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp bb1ca48c-9b80-4152-b297-fca398737a72))
(pad "1" thru_hole circle locked (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp c6d5303d-543e-443e-b105-01b30dda091b))
(pad "1" thru_hole circle locked (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp e7ccd444-f96f-4821-ab86-eeba9305f02b))
(pad "1" thru_hole circle locked (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp f055be03-112c-40e8-8161-b194faa2fec8))
)
(footprint "random-keyboard-parts:JST-SR-4" (layer "F.Cu")
(tedit 62E6C8C6) (tstamp 00000000-0000-0000-0000-00005c91c18e)
(at 126.975 92.475)
(property "Sheetfile" "Unified-Daughterboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c91afcb")
(attr smd)
(fp_text reference "J2" (at 4.053 -2.75 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91a996f6-e46d-46f9-994a-36b5f930440c)
)
(fp_text value "Conn_01x04" (at 0 1) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10518a70-37fa-4595-8334-c185b62f8db3)
)
(fp_line (start -3 -4.4) (end -2 -4.4) (layer "F.SilkS") (width 0.15) (tstamp 2c720100-cbf2-442b-a932-473683dcf2e3))
(fp_line (start -3 -2) (end -3 -4.4) (layer "F.SilkS") (width 0.15) (tstamp ad2c40d3-1fa6-4cf2-9d6a-ea59d1c31d93))
(fp_line (start 2 -4.4) (end 3 -4.4) (layer "F.SilkS") (width 0.15) (tstamp b826fd14-3112-4ed6-aaa6-ffff6283f0fa))
(fp_line (start 2 -0.2) (end -2 -0.2) (layer "F.SilkS") (width 0.15) (tstamp bab7a1b4-f6bc-4a63-8962-eeab179d71ab))
(fp_line (start 3 -4.4) (end 3 -2) (layer "F.SilkS") (width 0.15) (tstamp bf8b0aff-dcbb-459a-b8c6-8527d11e5a8f))
(fp_line (start 3 -4.4) (end 3 -0.2) (layer "B.CrtYd") (width 0.15) (tstamp 56e6b4f8-8649-4482-a6e5-d4473b2c0da3))
(fp_line (start 3 -0.2) (end -3 -0.2) (layer "B.CrtYd") (width 0.15) (tstamp 623e6cec-edd8-459a-9996-1930ab893a41))
(fp_line (start -3 -0.2) (end -3 -4.4) (layer "B.CrtYd") (width 0.15) (tstamp ebc9301b-32e3-460c-b60b-7edd47b74f1f))
(fp_line (start -3 -4.4) (end 3 -4.4) (layer "B.CrtYd") (width 0.15) (tstamp ff6043af-4ff1-4751-9238-eef76f08b58d))
(pad "1" smd rect locked (at -1.5 -4.775) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 54b4d9a9-9cc2-4ecc-8e6f-e4f77f3d91fb))
(pad "2" smd rect locked (at -0.5 -4.775) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "D-") (pinfunction "Pin_2") (pintype "passive") (tstamp da89cdec-c242-4af5-b43c-63449df1decf))
(pad "3" smd rect locked (at 0.5 -4.775) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "D+") (pinfunction "Pin_3") (pintype "passive") (tstamp 35565c8d-06e6-4ad5-9463-16e2cf620cd4))
(pad "4" smd rect locked (at 1.5 -4.775) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 353609dc-9107-4982-9144-1f843180ed4b))
(pad "MP" smd rect locked (at -2.8 -0.9) (size 1.2 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 5cf65efa-5fcf-44e4-81c9-8389b054253f))
(pad "MP" smd rect locked (at 2.8 -0.9) (size 1.2 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "MountPin") (pintype "passive") (tstamp 6297b023-2e09-42ac-9331-f68b433b7545))
(model "${KIPRJMOD}/random-keyboard-parts.pretty/JST-SR-4.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (layer "F.Cu")
(tedit 56DDBCCA) (tstamp 00000000-0000-0000-0000-00005fa20baa)
(at 118.675 90.125)
(descr "Mounting Hole 3.2mm, M3")
(tags "mounting hole 3.2mm m3")
(property "Sheetfile" "Unified-Daughterboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c91ec0e")
(attr exclude_from_pos_files)
(fp_text reference "MH1" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d41ebf9e-bf40-42d7-939e-e39262e6f2fc)
)
(fp_text value "Mount-M2" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd2deda9-0706-4635-833f-458515e20d4e)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1368d72-ec57-44b0-8f9b-627f0c410075)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 54d18d59-3d8b-4308-9f78-fbe691e703a6))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 534594c3-c598-486b-bd03-65c522d02710))
(pad "1" thru_hole circle locked (at 1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 154b5b51-9c9c-492b-b529-92474ede41a8))
(pad "1" thru_hole circle locked (at -1.697056 -1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 1c272244-71ce-4758-a23b-e41096ce075d))
(pad "1" thru_hole circle locked (at -2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp a57bb225-91da-4308-8f84-ba9e147bca9b))
(pad "1" thru_hole circle locked (at 1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp b513fe77-97ea-42aa-9b7a-cf1370b596fb))
(pad "1" thru_hole circle locked (at 0 2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d0adeb2d-d186-4452-91d4-cf580b3c00d8))
(pad "1" thru_hole circle locked (at -1.697056 1.697056) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d4b98d8f-3df6-4bf9-b6b0-cc7df65c09f4))
(pad "1" thru_hole circle locked (at 2.4 0) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d4c0c625-1ad8-45a2-8132-4e8b37a59164))
(pad "1" thru_hole circle locked (at 0 -2.4) (size 0.8 0.8) (drill 0.5) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp d6d827e1-8037-4a64-9433-b930cfff7250))
(pad "1" thru_hole circle locked (at 0 0) (size 6.4 6.4) (drill 3.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp e47c79da-989d-43e3-8830-7d276c20b139))
)
(footprint "Fuse:Fuse_1206_3216Metric" (layer "F.Cu")
(tedit 5F68FEF1) (tstamp 08e2d62f-f99a-4268-8b33-617dfcc63e75)
(at 145.746875 90.4875 -90)
(descr "Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "Sheetfile" "Unified-Daughterboard.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061e74dfe")
(attr smd)
(fp_text reference "F1" (at 3.1225 -0.153125 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6ff874d0-4ac5-414c-83a7-573eda4c7703)
)
(fp_text value "500mA" (at -0.23 1.92 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9538e4ed-27e6-4c37-b989-9859dc0d49e8)
)
(fp_text user "${REFERENCE}" (at 0.075 0.01 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
)
(fp_line (start -0.602064 -0.91) (end 0.602064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 681bd495-c396-44ce-92bd-4b397cd48c04))
(fp_line (start -0.602064 0.91) (end 0.602064 0.91) (layer "F.SilkS") (width 0.12) (tstamp be0953c0-632d-4dd2-85e9-4d41239f22d2))
(fp_line (start 2.28 -1.12) (end 2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 3451168c-3c76-4628-aee4-7c231bd100c3))
(fp_line (start -2.28 -1.12) (end 2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 563c12e4-8f8c-446c-a11f-94f5aa93b994))
(fp_line (start -2.28 1.12) (end -2.28 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp a3668681-09b1-48f0-a7b1-f6b24183a469))
(fp_line (start 2.28 1.12) (end -2.28 1.12) (layer "F.CrtYd") (width 0.05) (tstamp ca213826-0282-4b3a-840f-ec416dc34acf))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 5994a946-119f-4db4-aafe-00ae73b5b800))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp a1c7b1f5-f895-4192-9484-2357882c73e0))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp b680b4a7-6cb0-40b5-a7ec-a02910a0daa4))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp c5a1761e-3391-4e74-90c9-947fd66e1fc6))
(pad "1" smd roundrect locked (at -1.4 0 270) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 6 "+5V") (pintype "passive") (tstamp eaef1172-3351-417c-bfc4-74a598f141cb))
(pad "2" smd roundrect locked (at 1.4 0 270) (size 1.25 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2)
(net 7 "VBUS") (pintype "passive") (tstamp f6ee98b5-4773-4eeb-a825-33c1705abace))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 223d0f58-6a79-4060-9acd-b28cd7fd9815)
(at 144.065625 91.278125 -90)
(descr "Resistor SMD 0402 (1005 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")
(property "Sheetfile" "Unified-Daughterboard.kicad_sch")
(property "Sheetname" "")
(path "/532e0619-d9a9-4f3b-8054-9e0d869495a3")
(attr smd)
(fp_text reference "R2" (at 1.811875 -0.014375 -90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 146ee5e6-f44a-4763-8f5a-439013e9ad3a)
)
(fp_text value "5k1" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5688eec4-d452-47ce-af02-b71d07b731b2)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 92517c9c-1497-4949-8787-fade13ee75f2)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp dd0f6b72-814c-4ef4-9979-089fe35aed85))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp e6d632f1-060e-40af-a147-849428cf25e5))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 27f4451e-d0ac-4c6e-a89b-66103d29fc50))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 673e0ce9-0c81-4aad-a1f0-38580d3970e6))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e0466234-2409-497f-81e3-892fc5fea5fe))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp f1b53b7a-a2c0-419c-8651-4203cff295fb))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 22d4cfca-6a14-48d0-b409-3d853f06044e))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2bbd1312-1f9f-4d9a-97e6-d4c070c49ec4))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 31193fe5-3a28-4ebe-8d0d-2cefe2bc31e0))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 7137ba9e-fec3-48de-bc91-6a64e1b0c342))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/CC2") (pintype "passive") (tstamp 9a47665e-ec21-4b98-913f-7c963748210c))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 4a1928fc-b402-4119-bb12-25651bf2612e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "F.Cu")
(tedit 62F87C0B) (tstamp 708d97c3-fa8c-4c35-b264-86048c818eca)
(at 136.652 88.138 180)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "Sheetfile" "Unified-Daughterboard.kicad_sch")
(property "Sheetname" "")
(path "/748a98b2-4951-4164-83bf-809a73016e20")
(attr smd)
(fp_text reference "J3" (at 0 -5.645) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d6c6f303-b2a5-4f0f-a4de-fae950001aa6)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 17.97 4.64) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5efdad6a-34d7-401b-b873-d70225e7d5de)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 76699fc8-e252-4c81-b0d5-3568b12f8a6c)
)
(fp_line (start -4.7 -1.9) (end -4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 57467f4f-5056-4ff2-bcbd-dd7c63b26532))
(fp_line (start 4.7 -1.9) (end 4.7 0.1) (layer "F.SilkS") (width 0.12) (tstamp 9d014f7c-bb9e-4d7b-b66c-be347e5f3b4c))
(fp_line (start -5.32 -5.27) (end 5.32 -5.27) (layer "F.CrtYd") (width 0.05) (tstamp 005a4e38-cd30-4d8e-a621-613380e5868c))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65) (layer "F.Fab") (width 0.1) (tstamp 4230eb56-fa3e-44cd-8933-94cd3ef6f34a))
(pad "" np_thru_hole circle (at -2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 1abfec18-b14b-43a3-912e-61c6112b3e14))
(pad "" np_thru_hole circle (at 2.89 -2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 2fec5ddd-67e5-4d6a-90f7-9f1c1746f978))
(pad "A1" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp aa1f484b-f15d-439e-bf23-97ed7924c844))
(pad "A4" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp afc15887-104c-4741-8d96-ce1ff7565810))
(pad "A5" smd rect (at -1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "/CC1") (pinfunction "CC1") (pintype "bidirectional") (tstamp 416291c7-3b23-4aa1-afa3-5551b37fa12b))
(pad "A6" smd rect (at -0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp 956c0e28-bbd7-47ff-8e0c-088cbfa52f14))
(pad "A7" smd rect (at 0.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp 86485eec-4b42-4abb-bd25-38bb5653b446))
(pad "A8" smd rect (at 1.25 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(J3-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 82f96a42-1cc7-468a-8ef5-030435c9a228))
(pad "A9" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 8ddf43ba-2e5c-4e39-a521-54172ce82b28))
(pad "A12" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp bab0e5ac-c871-42e5-8de4-a4d7cf4e9fb6))
(pad "B1" smd rect (at 3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp b845ec66-b573-466e-97bf-36d9b6f16317))
(pad "B4" smd rect (at 2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp f98b0343-6964-4c1e-ad01-fc1b47fce11f))
(pad "B5" smd rect (at 1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/CC2") (pinfunction "CC2") (pintype "bidirectional") (tstamp eb787885-ec79-4127-8e01-ecbcb0dc10b3))
(pad "B6" smd rect (at 0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "D+") (pinfunction "D+") (pintype "bidirectional") (tstamp b88727b3-0049-49cd-a46c-9fb8b316567c))
(pad "B7" smd rect (at -0.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "D-") (pinfunction "D-") (pintype "bidirectional") (tstamp d67facd5-0cc5-4d75-bf01-08d6a90e16a5))
(pad "B8" smd rect (at -1.75 -4.045 180) (size 0.3 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(J3-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp a8b22190-4a2d-4ed5-abcb-fa8379577a17))
(pad "B9" smd rect (at -2.45 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp ad858cf3-cec2-4b3f-b875-f39da3352d13))
(pad "B12" smd rect (at -3.25 -4.045 180) (size 0.6 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp b086448e-46ce-4d74-a8f6-bc5db13d68b1))
(pad "S1" thru_hole oval (at 4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 3fbebab0-f5fa-4c66-8970-8eb9f82b3e71))
(pad "S1" thru_hole oval (at -4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 864e6b64-fbd4-443f-b028-ee3997aa681e))
(pad "S1" thru_hole oval (at 4.32 1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 97f9a18a-c3c7-43ec-89ec-90625496727f))
(pad "S1" thru_hole oval (at -4.32 -3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp cad465b5-45d6-4663-9fa0-56bc92349e5a))
(model "${SHIT}/xyztkl-r2-main/xyztkl-r2-main/dboard/HRO-TYPE-C-31-M-12.step"
(offset (xyz -4.47 -3.65 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 89cb63c1-c092-44d6-950d-4f39230b31e6)
(at 142.922625 91.278125 -90)
(descr "Resistor SMD 0402 (1005 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")
(property "Sheetfile" "Unified-Daughterboard.kicad_sch")
(property "Sheetname" "")
(path "/f047350b-ed50-4620-a77e-de8cf445973c")
(attr smd)
(fp_text reference "R1" (at 1.751875 -0.047375 -90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6decdb62-ec06-434b-854a-67e4840b3600)
)
(fp_text value "5k1" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a271958f-fa18-46ea-91c7-b5d06bb36b07)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp e9562585-93b7-489e-a0df-54b31f895a35)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 3f6063d7-0c97-4ef0-be54-ba9adf40bef9))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 9156f569-b131-4233-b1f9-dc152be12de8))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 654605b2-5f6e-4a40-ab90-dafc7cb6610b))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8aca45bb-0506-43a3-ac16-7765e39493dd))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 8f6638e4-1459-4923-8de8-e87ec9334951))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp dde9e87a-e770-4f32-ae6b-755017c3e9d5))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp bbeeb0d2-c6a8-4ad7-a280-037e57bebf23))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp e21dc3c6-d8f6-484c-8c17-ff2f3bc7430a))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp e3ddee38-a3b5-401f-b9c3-7e5cef47e8e4))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp f40059d2-9740-48d5-8ce1-8401c0a12d51))
(pad "1" smd roundrect (at -0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/CC1") (pintype "passive") (tstamp 0297099f-55ee-420f-bfea-fe8d73fce889))
(pad "2" smd roundrect (at 0.51 0 270) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pintype "passive") (tstamp 038a6141-248f-48a2-b158-45deac04ca94))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp bcc82edf-d3ff-47ec-b91e-82b6e866fdd7)
(at 148.078125 90.4875 90)
(descr "SOD-123")
(tags "SOD-123")
(property "LCSC Part No" "C123799")
(property "Manufacturer" "Microdiode Electronics")
(property "Manufacturer Part No" "SMF9.0CA")
(property "Package" "SOD-123F-B")
(property "Sheetfile" "Unified-Daughterboard.kicad_sch")
(property "Sheetname" "")
(path "/211d3d27-78ea-4fe2-80e0-bfa6a0d4871e")
(attr smd)
(fp_text reference "D1" (at -3.1225 0.001875 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 33d3bb03-e7de-43e7-9b78-b6bebee3ec95)
)
(fp_text value "SMF9.0CA" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d77ee948-16e9-475a-86b0-90edc83948cf)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7024204-2535-4bf3-9771-78594da79847)
)
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 550d6148-b27f-4819-913a-1187ee8f2e67))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 88e977cb-0363-487e-9eee-f64d388982f2))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp d725fbaa-ed0d-48a3-9a0f-2495c5adae48))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0cd87488-af1a-4477-9fbc-7ce7afd11eee))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 76fef458-871c-4867-a311-2db07c25db94))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 8377d102-2334-41db-a504-ea4c01d4b2b5))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp eae73756-f3a0-4116-b3bb-77202bc0f2c1))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 040091b6-3b41-4388-823e-3e4bb29961ad))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 0a2ab516-8c00-42e4-a6c3-7c1326be2fa4))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 4802eff1-a344-4d99-8d81-de6759199d18))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 78007619-e171-40c9-9364-4c0a1270949e))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 7afa9cf0-e9ce-4a4c-8666-1282f970bfa7))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 8d532acb-e4fe-4320-afda-821433d43151))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp a46bbdfb-1282-44e8-9ec3-18b8ffefa335))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp d4696d13-3be9-4660-8bd6-d67f74943fb9))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp e0c15636-d057-4570-9ad9-688d870adc71))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp ebadc82c-41f0-420d-8df8-9d16a4db976d))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp f5e12565-aa00-4ae9-bb70-0d9946968974))
(pad "1" smd rect locked (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (pinfunction "A1") (pintype "passive") (tstamp fc27eabb-efe6-4ad4-b173-fcc0d9c3ff74))
(pad "2" smd rect locked (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "+5V") (pinfunction "A2") (pintype "passive") (tstamp 60250710-b6ec-448a-9a76-47c76eda6bc6))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 151.675 96.475) (end 151.675 92.475) (layer "Eco1.User") (width 0.15) (tstamp 861657bb-4842-4ff4-8909-397630472fdf))
(gr_line (start 121.675 96.475) (end 121.675 93.475) (layer "Eco1.User") (width 0.15) (tstamp 9636eaaa-055f-4a35-be80-fef6771118a9))
(gr_line (start 121.675 83.475) (end 121.675 87.475) (layer "Eco1.User") (width 0.15) (tstamp acbe2442-831e-42f3-b550-b0746f45c79a))
(gr_line (start 151.675 83.475) (end 151.675 87.475) (layer "Eco1.User") (width 0.15) (tstamp cbd4486f-8cae-4373-b89f-038bed926156))
(gr_line (start 112.675 90.125) (end 118.675 90.125) (layer "Eco2.User") (width 0.15) (tstamp 02d36023-f211-42ca-b061-ce08ad54c2f2))
(gr_line (start 160.675 90.125) (end 154.675 90.125) (layer "Eco2.User") (width 0.15) (tstamp 1f846304-d9a6-49c2-a234-3d3cda7b58bf))
(gr_arc (start 154.675 85.775) (mid 159.025 90.125) (end 154.675 94.475) (layer "Edge.Cuts") (width 0.15) (tstamp 1027e95d-e76f-4aeb-b314-c79331cd7fb5))
(gr_line (start 118.675 85.775) (end 154.675 85.775) (layer "Edge.Cuts") (width 0.15) (tstamp 4cddb568-0771-4bda-b25c-c9ebb5c9c2f2))
(gr_arc (start 118.675 94.475) (mid 114.325 90.125) (end 118.675 85.775) (layer "Edge.Cuts") (width 0.15) (tstamp b924d4ea-48dd-4018-a73e-6a4d4e505e32))
(gr_line (start 118.675 94.475) (end 154.675 94.475) (layer "Edge.Cuts") (width 0.15) (tstamp c2c5199f-1384-4417-b6c1-3c765db2736d))
(gr_text "Unifried Daughterboard" (at 136.67 88.975) (layer "B.SilkS") (tstamp 4816aa61-8892-4652-8f05-74376c03a784)
(effects (font (size 1 1) (thickness 0.15) italic) (justify mirror))
)
(dimension (type aligned) (layer "Eco1.User") (tstamp 15bf633d-19eb-4d0b-9c9c-d9a3dc70e350)
(pts (xy 154.675 94.475) (xy 154.675 85.775))
(height 11.993495)
(gr_text "8.7000 mm" (at 165.518495 90.125 90) (layer "Eco1.User") (tstamp 15bf633d-19eb-4d0b-9c9c-d9a3dc70e350)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 2) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned)
)
(segment (start 136.906 91.186) (end 136.902 91.19) (width 0.25) (layer "F.Cu") (net 1) (tstamp 315a90a8-084f-40f9-a5b1-1fb41bb57cd9))
(segment (start 131.318 92.178) (end 132.819511 93.679511) (width 0.2) (layer "F.Cu") (net 1) (tstamp 42e8d2c1-98b7-43d2-ace1-f82ebfd046c4))
(segment (start 135.902 93.157022) (end 135.902 92.183) (width 0.2) (layer "F.Cu") (net 1) (tstamp 4f8b3508-871d-478e-a366-12e9841bd9ea))
(segment (start 127.475 87.7) (end 127.475 88.612282) (width 0.2) (layer "F.Cu") (net 1) (tstamp 564ad9c4-e2d7-4516-887f-30a635ecf795))
(segment (start 135.902 92.183) (end 135.902 91.158978) (width 0.25) (layer "F.Cu") (net 1) (tstamp 7120646c-2177-478a-b30a-1055f1b937b7))
(segment (start 135.902 91.158978) (end 135.927489 91.133489) (width 0.25) (layer "F.Cu") (net 1) (tstamp 735a7df2-ad39-4579-a41a-92fc4902bc53))
(segment (start 131.318 89.788282) (end 131.318 92.178) (width 0.2) (layer "F.Cu") (net 1) (tstamp 7521bec4-8f59-4093-95fe-c9fbf1799ccf))
(segment (start 132.819511 93.679511) (end 135.379511 93.679511) (width 0.2) (layer "F.Cu") (net 1) (tstamp 7c316a9d-591e-473b-b5a8-c91553de740e))
(segment (start 135.379511 93.679511) (end 135.902 93.157022) (width 0.2) (layer "F.Cu") (net 1) (tstamp 7f0fa36e-a62a-4567-8213-54022c1ed17c))
(segment (start 130.615197 89.08548) (end 131.318 89.788282) (width 0.2) (layer "F.Cu") (net 1) (tstamp 898af41c-509a-427f-8e7c-cf07a8fdc66a))
(segment (start 135.927489 91.133489) (end 136.853489 91.133489) (width 0.25) (layer "F.Cu") (net 1) (tstamp 8a7ad8ce-9ad8-477e-9bc3-2c9fcee8fafc))
(segment (start 136.853489 91.133489) (end 136.906 91.186) (width 0.25) (layer "F.Cu") (net 1) (tstamp 8d2e4470-7cb7-47d9-8507-9bb36f14eec1))
(segment (start 127.948198 89.08548) (end 130.615197 89.08548) (width 0.2) (layer "F.Cu") (net 1) (tstamp ad88cb89-6e4b-434b-aaec-a2e66b1b851d))
(segment (start 127.475 88.612282) (end 127.948198 89.08548) (width 0.2) (layer "F.Cu") (net 1) (tstamp f61be729-dd76-4913-8430-3f679d3d0294))
(segment (start 136.902 91.19) (end 136.902 92.183) (width 0.25) (layer "F.Cu") (net 1) (tstamp f8bb194b-2e99-4237-b36b-2166935c6053))
(segment (start 128.151 91.575) (end 128.143 91.567) (width 0.5) (layer "F.Cu") (net 2) (tstamp 01939703-4f79-49fb-a4c1-80d21dce9c47))
(segment (start 129.775 91.575) (end 128.151 91.575) (width 0.5) (layer "F.Cu") (net 2) (tstamp 08940dcc-1f06-4edc-ace0-7c22dad497ad))
(segment (start 133.402 92.183) (end 133.402 92.648) (width 0.35) (layer "F.Cu") (net 2) (tstamp 2215c3cc-9572-458d-8c50-c154d8a21edd))
(segment (start 129.483 87.7) (end 129.54 87.757) (width 0.35) (layer "F.Cu") (net 2) (tstamp 26b55e89-e51f-49a2-a12e-a76d572c3101))
(segment (start 128.475 87.7) (end 129.483 87.7) (width 0.35) (layer "F.Cu") (net 2) (tstamp 77cfa10b-9733-4d8c-93b8-7734528199b6))
(segment (start 132.332 91.268) (end 132.487 91.268) (width 0.35) (layer "F.Cu") (net 2) (tstamp 8b686b56-b90c-4b15-a794-36b7c1158cfb))
(segment (start 132.487 91.268) (end 133.402 92.183) (width 0.35) (layer "F.Cu") (net 2) (tstamp ca23cb51-1148-4996-a7af-433473e460ea))
(segment (start 153.05 88.5) (end 154.675 90.125) (width 0.8) (layer "F.Cu") (net 2) (tstamp f7438791-2bad-47de-804a-6059760de4ca))
(via (at 129.54 87.757) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 54bf2047-5ed8-470a-a654-e1e41af651c0))
(via (at 128.143 91.567) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp d7a89d76-2964-4dd2-a85b-cf6f47a8ad00))
(segment (start 136.279028 93.345) (end 136.39974 93.345) (width 0.2) (layer "F.Cu") (net 3) (tstamp 05505b4d-a326-4c86-a677-ae32e667aeee))
(segment (start 132.654025 94.079031) (end 135.544997 94.079031) (width 0.2) (layer "F.Cu") (net 3) (tstamp 0a80ac06-6b0b-434e-9d00-81edba3778ad))
(segment (start 137.402 92.183) (end 137.402 93.23) (width 0.25) (layer "F.Cu") (net 3) (tstamp 0e37dc7e-46e4-4410-9b67-9ebc8bfcf6a9))
(segment (start 130.91848 89.953769) (end 130.918481 92.343487) (width 0.2) (layer "F.Cu") (net 3) (tstamp 16908ade-7d62-4061-83cf-5630edda52dd))
(segment (start 136.402 93.207022) (end 136.402 92.183) (width 0.25) (layer "F.Cu") (net 3) (tstamp 204a697f-980d-4fec-a166-2b7f3108d3bc))
(segment (start 136.402 92.183) (end 136.402 93.222028) (width 0.2) (layer "F.Cu") (net 3) (tstamp 220a545b-057f-4c74-9654-58fdb17eaf75))
(segment (start 126.475 88.502) (end 127.457999 89.484999) (width 0.2) (layer "F.Cu") (net 3) (tstamp 236b4ba4-479c-49a1-8f06-36a5bcf8c23a))
(segment (start 136.539978 93.345) (end 136.39974 93.345) (width 0.25) (layer "F.Cu") (net 3) (tstamp 2a9be37c-99bc-4bc5-8878-c665dae7a959))
(segment (start 127.457999 89.484999) (end 130.44971 89.485) (width 0.2) (layer "F.Cu") (net 3) (tstamp 35a05abe-0c60-48ff-9760-4eec5e9bcfa6))
(segment (start 126.475 87.7) (end 126.475 88.502) (width 0.2) (layer "F.Cu") (net 3) (tstamp 4906b81b-bb6b-4687-9c79-516b2b8e379f))
(segment (start 136.539978 93.345) (end 136.402 93.207022) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5aa7c7d1-4e2e-4022-bad9-6301688beb5a))
(segment (start 130.44971 89.485) (end 130.91848 89.953769) (width 0.2) (layer "F.Cu") (net 3) (tstamp 5e09f505-c9d0-43ff-8a49-8f56ef891bc4))
(segment (start 130.918481 92.343487) (end 132.654025 94.079031) (width 0.2) (layer "F.Cu") (net 3) (tstamp 82dcbba2-381e-4b4f-b5f9-084c13535fcc))
(segment (start 137.402 93.23) (end 137.287 93.345) (width 0.25) (layer "F.Cu") (net 3) (tstamp 8ad6ef0b-f9e3-4026-80f7-d65193440854))
(segment (start 136.402 93.222028) (end 136.279028 93.345) (width 0.2) (layer "F.Cu") (net 3) (tstamp 9c9f9871-d76e-470e-af1c-2daa738382b5))
(segment (start 135.544997 94.079031) (end 136.279028 93.345) (width 0.2) (layer "F.Cu") (net 3) (tstamp aca510c8-bce4-4c56-9bde-4e8d8f6ab3d7))
(segment (start 137.287 93.345) (end 136.539978 93.345) (width 0.25) (layer "F.Cu") (net 3) (tstamp bc1cb746-59de-49cc-b88e-31f783a71fd5))
(segment (start 142.89 90.7355) (end 142.922625 90.768125) (width 0.25) (layer "F.Cu") (net 4) (tstamp 834bc23b-519f-4fea-9243-456c1a55d3ea))
(segment (start 142.89 89.82) (end 142.89 90.7355) (width 0.25) (layer "F.Cu") (net 4) (tstamp 874def14-a130-4579-9fb7-b2e76ea0cfe2))
(segment (start 137.902 92.183) (end 137.902 90.971797) (width 0.25) (layer "F.Cu") (net 4) (tstamp 95213a22-0bde-47b6-a246-ae9506bdae5f))
(via (at 142.89 89.82) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 1f591611-2ebe-4753-bd3e-8a51e018d086))
(via (at 137.903843 90.969954) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 56223123-a71a-424d-a4b6-fa540ca2e40f))
(segment (start 142.89598 89.81402) (end 142.89 89.82) (width 0.25) (layer "B.Cu") (net 4) (tstamp 1c07355d-4dee-4f1a-b987-bb1cbb3ff594))
(segment (start 142.89598 89.789) (end 142.89598 89.81402) (width 0.25) (layer "B.Cu") (net 4) (tstamp af0c0232-64d2-4d64-b729-0dc165c7597a))
(segment (start 139.084797 89.789) (end 137.903843 90.969954) (width 0.25) (layer "B.Cu") (net 4) (tstamp e529644b-2c9e-4f8b-9c38-08ff67cc8ee7))
(segment (start 142.89598 89.789) (end 139.084797 89.789) (width 0.25) (layer "B.Cu") (net 4) (tstamp f3fd93c8-fe74-4a3c-8553-9a8f33dbf1c2))
(segment (start 134.902 91.013829) (end 134.877797 90.989626) (width 0.25) (layer "F.Cu") (net 5) (tstamp 17b625a4-a888-44e0-b5b5-5c9335e7d116))
(segment (start 144.02 90.7225) (end 144.065625 90.768125) (width 0.25) (layer "F.Cu") (net 5) (tstamp 190e1fe9-4180-4d97-87ef-d5296d973b73))
(segment (start 144 90.7025) (end 144.065625 90.768125) (width 0.25) (layer "F.Cu") (net 5) (tstamp 8bff12f7-e357-42aa-b8a8-b9fe5e5f67df))
(segment (start 134.902 92.183) (end 134.902 91.013829) (width 0.25) (layer "F.Cu") (net 5) (tstamp bc8bf929-a5cc-4f99-8d2a-948f66411e56))
(segment (start 144.02 89.79) (end 144.02 90.7225) (width 0.25) (layer "F.Cu") (net 5) (tstamp d1574cef-bfd8-4ff8-9354-27c5daafeefc))
(via (at 144.02 89.79) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp c97d7326-0f2f-4319-8736-15f3cf821dcf))
(via (at 134.877797 90.989626) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp cdd5f992-704a-4275-b34b-d59a09f96eeb))
(segment (start 141.99948 89.33948) (end 142.345906 89.33948) (width 0.25) (layer "B.Cu") (net 5) (tstamp 18cb8227-d7c2-4b7a-a085-35caa5fd90b2))
(segment (start 142.345906 89.33948) (end 142.589897 89.095489) (width 0.25) (layer "B.Cu") (net 5) (tstamp 263a8afd-acb8-40c9-9b75-2a629c49da5e))
(segment (start 136.527943 89.33948) (end 134.877797 90.989626) (width 0.25) (layer "B.Cu") (net 5) (tstamp 42745ede-9c50-4290-add5-723ac005521d))
(segment (start 141.99948 89.33948) (end 141.70948 89.33948) (width 0.25) (layer "B.Cu") (net 5) (tstamp 52a0ff32-8e0a-4aff-b9df-8f06356b4307))
(segment (start 137.15948 89.33948) (end 136.527943 89.33948) (width 0.25) (layer "B.Cu") (net 5) (tstamp 77df5590-6902-4355-8181-65f2e7e6c536))
(segment (start 141.70948 89.33948) (end 142.345906 89.33948) (width 0.25) (layer "B.Cu") (net 5) (tstamp 7c735b18-3971-41bd-b8af-358c4f6b337e))
(segment (start 141.70948 89.33948) (end 137.15948 89.33948) (width 0.25) (layer "B.Cu") (net 5) (tstamp 9b830683-694e-4695-b68b-f4bbc4edb414))
(segment (start 142.589897 89.095489) (end 143.325489 89.095489) (width 0.25) (layer "B.Cu") (net 5) (tstamp e21e41f3-bf63-47de-80aa-f344004fc98e))
(segment (start 143.325489 89.095489) (end 144.02 89.79) (width 0.25) (layer "B.Cu") (net 5) (tstamp fe10497b-4a47-4258-abf5-3d8d5fc97057))
(segment (start 125.475 86.725978) (end 125.725489 86.475489) (width 0.5) (layer "F.Cu") (net 6) (tstamp 1c4995d2-54d7-446c-b2df-f6eb5db58452))
(segment (start 145.746875 89.0875) (end 147.828125 89.0875) (width 0.5) (layer "F.Cu") (net 6) (tstamp 69857e17-3ce9-418a-b903-ed4527c3c0d3))
(segment (start 125.725489 86.475489) (end 130.544489 86.475489) (width 0.5) (layer "F.Cu") (net 6) (tstamp 7109c1d9-3f66-4747-a632-ee5dd6af696e))
(segment (start 146.396875 88.8375) (end 146.146875 89.0875) (width 0.5) (layer "F.Cu") (net 6) (tstamp 8342beae-7955-478b-bad6-f39c565940a7))
(segment (start 125.475 87.7) (end 125.475 86.725978) (width 0.5) (layer "F.Cu") (net 6) (tstamp 90a1cc2f-cbfd-46be-ad83-e35b5b1757dc))
(segment (start 148.078125 88.8375) (end 148.078125 88.018125) (width 0.5) (layer "F.Cu") (net 6) (tstamp a4327a23-8ed3-4bc9-b257-79b9c5bc75dd))
(segment (start 148.078125 88.018125) (end 147.73 87.67) (width 0.5) (layer "F.Cu") (net 6) (tstamp a5b8bd3f-4b65-4d8a-abf0-3ac017205084))
(segment (start 130.937 86.868) (end 130.937 88.392) (width 0.5) (layer "F.Cu") (net 6) (tstamp b1343285-43b5-4376-b01d-10721086ec04))
(segment (start 147.828125 89.0875) (end 148.078125 88.8375) (width 0.5) (layer "F.Cu") (net 6) (tstamp b8246894-66f9-4689-97c0-676d7e76ac3e))
(segment (start 130.81 86.741) (end 130.937 86.868) (width 0.5) (layer "F.Cu") (net 6) (tstamp b9bf6821-9952-45d5-b135-63a52eb6c5ec))
(segment (start 130.544489 86.475489) (end 130.81 86.741) (width 0.5) (layer "F.Cu") (net 6) (tstamp d529b08a-36ba-4831-a6ce-f905732ab7d9))
(via (at 130.937 88.392) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 4f0c0cf1-d37c-4801-88d6-381facd97c00))
(via (at 147.73 87.67) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 723e4993-19d6-4352-9093-32f977211f5c))
(segment (start 147.73 87.67) (end 147.69 87.63) (width 0.5) (layer "B.Cu") (net 6) (tstamp 0f25c6e5-4413-4819-82bf-02527aba3144))
(segment (start 143.217872 87.63) (end 142.082912 88.76496) (width 0.5) (layer "B.Cu") (net 6) (tstamp 387c8746-1bff-4613-8d73-fbb8f3d3f688))
(segment (start 131.309961 88.764961) (end 130.937 88.392) (width 0.5) (layer "B.Cu") (net 6) (tstamp 7f611aeb-d0e5-4955-ab22-376a3756bd8d))
(segment (start 147.69 87.63) (end 143.217872 87.63) (width 0.5) (layer "B.Cu") (net 6) (tstamp bb221450-a9b1-471b-8317-32ee4643e75a))
(segment (start 142.082912 88.76496) (end 131.309961 88.764961) (width 0.5) (layer "B.Cu") (net 6) (tstamp e7c89a0c-4b0a-41fa-9fda-08ac823a6673))
(segment (start 139.1235 93.2765) (end 139.446 93.599) (width 0.5) (layer "F.Cu") (net 7) (tstamp 0e8cb752-fa0a-45c2-a0bf-3778c73abe61))
(segment (start 144.035375 93.599) (end 145.746875 91.8875) (width 0.5) (layer "F.Cu") (net 7) (tstamp 36f84fa4-b650-46e8-8647-e82981678c60))
(segment (start 139.102 93.255) (end 139.1235 93.2765) (width 0.5) (layer "F.Cu") (net 7) (tstamp 87811b0d-c507-40aa-8258-ab54e439904f))
(segment (start 134.202 93.078) (end 134.2 93.08) (width 0.25) (layer "F.Cu") (net 7) (tstamp c31f3f01-3fda-448f-89d9-9f552c927f9f))
(segment (start 143.681 93.599) (end 144.035375 93.599) (width 0.5) (layer "F.Cu") (net 7) (tstamp dc3e6453-5e1b-43da-ad81-11cac78435bc))
(segment (start 134.202 92.183) (end 134.202 93.078) (width 0.25) (layer "F.Cu") (net 7) (tstamp e232042d-12f7-4809-895a-32548ea7470c))
(segment (start 139.446 93.599) (end 143.681 93.599) (width 0.5) (layer "F.Cu") (net 7) (tstamp ef09f8ea-6e78-4a42-b541-7414cb3a1e07))
(segment (start 139.102 92.183) (end 139.102 93.255) (width 0.5) (layer "F.Cu") (net 7) (tstamp f40f4366-3caf-4fcd-be77-511510fc01d4))
(via (at 139.1235 93.2765) (size 0.65) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp 3b6c68ad-83f1-4a2b-98c7-df1fa569cc7b))
(via (at 134.22 93.05) (size 0.65) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp be7146e7-5e44-40f1-9f35-53164f8aac33))
(segment (start 134.2 93.08) (end 138.927 93.08) (width 0.5) (layer "B.Cu") (net 7) (tstamp 88d97ce6-c74b-40ff-9a03-559a3305d776))
(segment (start 138.927 93.08) (end 139.1235 93.2765) (width 0.5) (layer "B.Cu") (net 7) (tstamp e5ca153c-07b5-4334-9ac3-e4234641fa88))
(zone (net 7) (net_name "VBUS") (layer "F.Cu") (tstamp 2d99acde-c83f-480e-84ea-28939e7f3071) (hatch edge 0.508)
(priority 16962)
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 139.644916 93.349)
(xy 139.605665 93.346002)
(xy 139.571463 93.337546)
(xy 139.541901 93.324435)
(xy 139.51657 93.307474)
(xy 139.49506 93.287464)
(xy 139.476962 93.265212)
(xy 139.461866 93.241519)
(xy 139.449364 93.217191)
(xy 139.439044 93.193031)
(xy 139.4305 93.169843)
(xy 139.008596 93.161596)
(xy 139.1235 93.6015)
(xy 139.170046 93.60843)
(xy 139.212819 93.62724)
(xy 139.2537 93.654959)
(xy 139.294571 93.68862)
(xy 139.337312 93.72525)
(xy 139.383805 93.76188)
(xy 139.43593 93.79554)
(xy 139.49557 93.82326)
(xy 139.564604 93.84207)
(xy 139.644916 93.849)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 139.412897 93.169499)
(xy 139.422513 93.169687)
(xy 139.430717 93.173275)
(xy 139.433262 93.17734)
(xy 139.439044 93.193031)
(xy 139.449364 93.217191)
(xy 139.449454 93.217367)
(xy 139.449461 93.217381)
(xy 139.461739 93.241273)
(xy 139.461744 93.241283)
(xy 139.461866 93.241519)
(xy 139.476962 93.265212)
(xy 139.49506 93.287464)
(xy 139.51657 93.307474)
(xy 139.527836 93.315017)
(xy 139.541479 93.324153)
(xy 139.541484 93.324156)
(xy 139.541901 93.324435)
(xy 139.542365 93.324641)
(xy 139.542369 93.324643)
(xy 139.570996 93.337339)
(xy 139.571463 93.337546)
(xy 139.582101 93.340176)
(xy 139.605191 93.345885)
(xy 139.605193 93.345885)
(xy 139.605665 93.346002)
(xy 139.634108 93.348174)
(xy 139.642095 93.352221)
(xy 139.644916 93.35984)
(xy 139.644916 93.836247)
(xy 139.641489 93.84452)
(xy 139.633216 93.847947)
(xy 139.632219 93.847904)
(xy 139.597218 93.844884)
(xy 139.565651 93.84216)
(xy 139.563581 93.841791)
(xy 139.496528 93.823521)
(xy 139.494673 93.822843)
(xy 139.485514 93.818586)
(xy 139.436662 93.79588)
(xy 139.435256 93.795105)
(xy 139.384266 93.762177)
(xy 139.383371 93.761538)
(xy 139.33751 93.725406)
(xy 139.337137 93.7251)
(xy 139.294607 93.688651)
(xy 139.294571 93.68862)
(xy 139.291482 93.686076)
(xy 139.253911 93.655132)
(xy 139.253901 93.655124)
(xy 139.2537 93.654959)
(xy 139.253485 93.654813)
(xy 139.253478 93.654808)
(xy 139.236677 93.643417)
(xy 139.212819 93.62724)
(xy 139.212334 93.627027)
(xy 139.212331 93.627025)
(xy 139.17076 93.608744)
(xy 139.170046 93.60843)
(xy 139.148896 93.605281)
(xy 139.131144 93.602638)
(xy 139.123466 93.598031)
(xy 139.121547 93.594023)
(xy 139.06477 93.376655)
(xy 139.008596 93.161596)
)
)
)
(zone (net 7) (net_name "VBUS") (layer "F.Cu") (tstamp 34d45569-5fbf-48c0-b043-9144bc94890b) (hatch edge 0.508)
(priority 16962)
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 138.852 92.62)
(xy 138.852713 92.696151)
(xy 138.854407 92.764762)
(xy 138.856406 92.826766)
(xy 138.858039 92.883094)
(xy 138.858632 92.934678)
(xy 138.857512 92.98245)
(xy 138.854006 93.027343)
(xy 138.847442 93.070288)
(xy 138.837146 93.112217)
(xy 138.822445 93.154064)
(xy 139.134017 93.438659)
(xy 139.406218 93.116202)
(xy 139.387749 93.079151)
(xy 139.373793 93.041313)
(xy 139.363744 93.001937)
(xy 139.356998 92.960269)
(xy 139.35295 92.915557)
(xy 139.350995 92.867048)
(xy 139.350527 92.813991)
(xy 139.350942 92.755632)
(xy 139.351634 92.691219)
(xy 139.352 92.62)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 139.348513 92.623427)
(xy 139.35194 92.631759)
(xy 139.351634 92.691219)
(xy 139.350942 92.755632)
(xy 139.350527 92.813991)
(xy 139.350995 92.867048)
(xy 139.35295 92.915557)
(xy 139.356998 92.960269)
(xy 139.363744 93.001937)
(xy 139.363805 93.002176)
(xy 139.37028 93.027546)
(xy 139.373793 93.041313)
(xy 139.373899 93.0416)
(xy 139.384578 93.070553)
(xy 139.387749 93.079151)
(xy 139.38789 93.079433)
(xy 139.38789 93.079434)
(xy 139.402785 93.109315)
(xy 139.403409 93.118248)
(xy 139.401254 93.122082)
(xy 139.362066 93.168505)
(xy 139.362067 93.168505)
(xy 139.134017 93.438659)
(xy 138.828157 93.159281)
(xy 138.82436 93.151172)
(xy 138.825009 93.146765)
(xy 138.837054 93.11248)
(xy 138.837056 93.112473)
(xy 138.837146 93.112217)
(xy 138.847442 93.070288)
(xy 138.854006 93.027343)
(xy 138.854023 93.027128)
(xy 138.8575 92.982608)
(xy 138.857501 92.982596)
(xy 138.857512 92.98245)
(xy 138.858632 92.934678)
(xy 138.858039 92.883094)
(xy 138.856406 92.826766)
(xy 138.854407 92.764762)
(xy 138.852715 92.696222)
(xy 138.852712 92.696057)
(xy 138.852111 92.631809)
(xy 138.85546 92.623505)
(xy 138.86381 92.62)
(xy 139.34024 92.62)
)
)
)
(zone (net 7) (net_name "VBUS") (layer "F.Cu") (tstamp 3b0b463c-954b-4b65-9926-e09327fbdfa1) (hatch edge 0.508)
(priority 16962)
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 134.077 92.433)
(xy 134.074809 92.504358)
(xy 134.068512 92.564552)
(xy 134.058516 92.615935)
(xy 134.04523 92.66086)
(xy 134.029063 92.701681)
(xy 134.010425 92.740752)
(xy 133.989725 92.780426)
(xy 133.967371 92.823056)
(xy 133.943772 92.870997)
(xy 133.919338 92.926601)
(xy 134.229998 93.212192)
(xy 134.503229 92.890608)
(xy 134.473822 92.84093)
(xy 134.446229 92.797837)
(xy 134.420751 92.759187)
(xy 134.39769 92.722836)
(xy 134.377349 92.686641)
(xy 134.360028 92.64846)
(xy 134.346031 92.606148)
(xy 134.335659 92.557562)
(xy 134.329215 92.500561)
(xy 134.327 92.433)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 134.32395 92.436427)
(xy 134.327371 92.444317)
(xy 134.329215 92.500561)
(xy 134.335659 92.557562)
(xy 134.346031 92.606148)
(xy 134.346127 92.606438)
(xy 134.346128 92.606442)
(xy 134.349352 92.616188)
(xy 134.360028 92.64846)
(xy 134.377349 92.686641)
(xy 134.377466 92.68685)
(xy 134.377471 92.686859)
(xy 134.385698 92.701497)
(xy 134.39769 92.722836)
(xy 134.409056 92.740752)
(xy 134.420742 92.759173)
(xy 134.420751 92.759187)
(xy 134.446202 92.797797)
(xy 134.446286 92.797927)
(xy 134.473711 92.840756)
(xy 134.473916 92.841088)
(xy 134.49898 92.88343)
(xy 134.500246 92.892294)
(xy 134.497828 92.896965)
(xy 134.237875 93.202921)
(xy 134.229907 93.207007)
(xy 134.221041 93.203958)
(xy 133.925496 92.932262)
(xy 133.921724 92.92414)
(xy 133.922703 92.918944)
(xy 133.943669 92.871232)
(xy 133.943883 92.870772)
(xy 133.967302 92.823196)
(xy 133.967437 92.82293)
(xy 133.989725 92.780426)
(xy 133.989734 92.780409)
(xy 134.010385 92.740828)
(xy 134.010425 92.740752)
(xy 134.018972 92.722836)
(xy 134.028977 92.701862)
(xy 134.028981 92.701854)
(xy 134.029063 92.701681)
(xy 134.03511 92.686414)
(xy 134.045133 92.661105)
(xy 134.045133 92.661104)
(xy 134.04523 92.66086)
(xy 134.058516 92.615935)
(xy 134.068512 92.564552)
(xy 134.069244 92.557562)
(xy 134.074788 92.50456)
(xy 134.074788 92.504557)
(xy 134.074809 92.504358)
(xy 134.074919 92.500792)
(xy 134.076652 92.444341)
(xy 134.080331 92.436177)
(xy 134.088346 92.433)
(xy 134.315677 92.433)
)
)
)
(zone (net 5) (net_name "/CC2") (layer "F.Cu") (tstamp 6804143a-a52a-4064-8d20-71653561a2d6) (hatch edge 0.508)
(priority 16962)
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 144.145 90.58)
(xy 144.148266 90.489538)
(xy 144.157658 90.413777)
(xy 144.172564 90.34961)
(xy 144.192374 90.293935)
(xy 144.216476 90.243647)
(xy 144.244261 90.19564)
(xy 144.275116 90.146812)
(xy 144.308432 90.094058)
(xy 144.343596 90.034274)
(xy 144.38 89.964355)
(xy 144.02 89.59)
(xy 143.66 89.964355)
(xy 143.696403 90.034274)
(xy 143.731567 90.094058)
(xy 143.764883 90.146812)
(xy 143.795738 90.19564)
(xy 143.823523 90.243647)
(xy 143.847625 90.293935)
(xy 143.867435 90.34961)
(xy 143.882341 90.413777)
(xy 143.891733 90.489538)
(xy 143.895 90.58)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 144.028433 89.598769)
(xy 144.374174 89.958297)
(xy 144.377439 89.966635)
(xy 144.376119 89.971809)
(xy 144.343736 90.034005)
(xy 144.343443 90.034534)
(xy 144.308513 90.093921)
(xy 144.30832 90.094236)
(xy 144.275118 90.146809)
(xy 144.275115 90.146811)
(xy 144.275116 90.146812)
(xy 144.244261 90.19564)
(xy 144.216476 90.243647)
(xy 144.192374 90.293935)
(xy 144.172564 90.34961)
(xy 144.157658 90.413777)
(xy 144.148266 90.489538)
(xy 144.148257 90.489799)
(xy 144.145407 90.568722)
(xy 144.141684 90.576866)
(xy 144.133715 90.58)
(xy 143.906285 90.58)
(xy 143.898012 90.576573)
(xy 143.894593 90.568722)
(xy 143.891742 90.489799)
(xy 143.891733 90.489538)
(xy 143.882341 90.413777)
(xy 143.867435 90.34961)
(xy 143.847625 90.293935)
(xy 143.823523 90.243647)
(xy 143.795738 90.19564)
(xy 143.764883 90.146812)
(xy 143.731666 90.094214)
(xy 143.731486 90.093921)
(xy 143.696556 90.034534)
(xy 143.696263 90.034005)
(xy 143.663881 89.97181)
(xy 143.6631 89.962889)
(xy 143.665826 89.958297)
(xy 144.011567 89.598769)
(xy 144.019771 89.595181)
)
)
)
(zone (net 6) (net_name "+5V") (layer "F.Cu") (tstamp 7d55e02d-a487-4346-aa56-9a079f4ce447) (hatch edge 0.508)
(priority 16962)
(connect_pads yes (clearance 0))
(min_thickness 0.0254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 148.328125 88.325801)
(xy 148.322577 88.230984)
(xy 148.30752 88.150177)
(xy 148.285329 88.080564)
(xy 148.258385 88.019326)
(xy 148.229062 87.963646)
(xy 148.19974 87.910707)
(xy 148.172795 87.85769)
(xy 148.150605 87.801778)
(xy 148.135547 87.740154)
(xy 148.13 87.67)
(xy 147.588579 87.528579)
(xy 147.59873 88.047846)
(xy 147.635485 88.061301)
(xy 147.670519 88.076107)
(xy 147.703326 88.092951)
(xy 147.733401 88.112524)
(xy 147.760236 88.135512)
(xy 147.783327 88.162605)
(xy 147.802167 88.194492)
(xy 147.816251 88.231861)
(xy 147.825072 88.275401)
(xy 147.828125 88.325801)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 147.603536 87.532486)
(xy 148.121949 87.667897)
(xy 148.129087 87.673303)
(xy 148.130656 87.678294)
(xy 148.135547 87.740154)
(xy 148.150605 87.801778)
(xy 148.150747 87.802137)
(xy 148.15075 87.802145)
(xy 148.163857 87.835168)
(xy 148.172795 87.85769)