-
Notifications
You must be signed in to change notification settings - Fork 0
/
rpi468-pcb.kicad_pcb
3097 lines (3080 loc) · 149 KB
/
rpi468-pcb.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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 175.768 107.1626)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(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 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "Net-(J1-Pad2)")
(net 3 "Net-(J1-Pad3)")
(net 4 "GND")
(net 5 "Net-(J2-PadA6)")
(net 6 "Net-(J2-PadA7)")
(net 7 "unconnected-(J2-PadA8)")
(net 8 "Net-(J2-PadA5)")
(net 9 "unconnected-(J2-PadB8)")
(net 10 "Net-(S1-Pad4)")
(net 11 "Net-(S1-Pad6)")
(net 12 "Net-(R3-Pad2)")
(net 13 "Net-(R5-Pad2)")
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 4d7be7c7-489f-4951-ba90-95cc9ef7990a)
(at 171.5 112.4875 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/6da03d20-475c-43ba-9c2d-1d8574e4fab1")
(attr smd)
(fp_text reference "R3" (at 0 1.7 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d947f73f-489e-42ec-b148-8346988cdebf)
)
(fp_text value "100k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cd4fb5c-7ed8-4524-bff0-a3067a87da06)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp bf650b79-8eac-46bc-9c81-0d2c44f78366)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp adbb5302-3586-4fe3-bd52-06ff2ab94cc6))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp f18a0137-f201-48d0-aa77-6d34ae5c5134))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 01e3c427-9dfc-4ec5-8ff1-736f1a51656b))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 19600278-ce4a-4120-960b-a3b821d4ca6c))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 9aca30f9-62f6-4e90-9f3c-192d8768d917))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp c42cc33d-73c5-4c7a-8730-5b0b099bdfb6))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 01b36d0c-8578-47f2-8023-029e2f23f1e5))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 4cf568ca-2681-4b2c-aba2-3af2607686d2))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 4da23f46-8fb5-4f90-bfb3-680a90d9b300))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 5d4f0b9d-b3a2-49da-870b-e9f081f9b2ff))
(pad "1" smd roundrect (at -0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp aecf6522-e316-44ac-a415-1c508f81c02f))
(pad "2" smd roundrect (at 0.9125 0 270) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(R3-Pad2)") (pintype "passive") (tstamp 7eb5d107-b2fa-44bf-92f2-e16597b0599a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_JST:JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical" (layer "F.Cu")
(tedit 5B78AD87) (tstamp 4fa47e25-9d85-43b2-94d2-ba3cf0cbeb30)
(at 167.8686 117.4242)
(descr "JST SH series connector, BM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator")
(tags "connector JST SH side entry")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/e68b378b-715b-4790-8da2-8ea2e44dd6a6")
(attr smd)
(fp_text reference "J3" (at 0 -3.3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8ca7cd0e-68c2-4ec7-b00f-f84732c52537)
)
(fp_text value "Conn_01x04_Female" (at 0 3.3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db14fe71-f9a5-41d3-b84c-0ee4334a5bcb)
)
(fp_text user "${REFERENCE}" (at 0 -0.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce8ac3e0-6f52-444e-8ce1-995906113d73)
)
(fp_line (start -3.11 1.11) (end -2.06 1.11) (layer "F.SilkS") (width 0.12) (tstamp 139ef1c6-3cc9-4b50-a93c-b6d50becdcbb))
(fp_line (start -3.11 -0.04) (end -3.11 1.11) (layer "F.SilkS") (width 0.12) (tstamp 435d424e-00d0-4ae0-94aa-d56425079526))
(fp_line (start 3.11 -0.04) (end 3.11 1.11) (layer "F.SilkS") (width 0.12) (tstamp 826bc112-50e5-437b-89f7-7bf31d574298))
(fp_line (start -1.94 -2.01) (end 1.94 -2.01) (layer "F.SilkS") (width 0.12) (tstamp 9d189696-8c8b-4156-ad95-ca6bad117030))
(fp_line (start 3.11 1.11) (end 2.06 1.11) (layer "F.SilkS") (width 0.12) (tstamp a4b3874d-5187-4883-90a0-ec5d0ac6067a))
(fp_line (start -2.06 1.11) (end -2.06 2.1) (layer "F.SilkS") (width 0.12) (tstamp e2cf8382-4394-41bd-aac6-03b22a655593))
(fp_line (start 3.9 -2.6) (end -3.9 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp 3aec33cd-eb5b-40d4-9394-336530f2ef54))
(fp_line (start -3.9 2.6) (end 3.9 2.6) (layer "F.CrtYd") (width 0.05) (tstamp 3db4bed7-239d-4948-a7ea-af8f3e9f5a89))
(fp_line (start -3.9 -2.6) (end -3.9 2.6) (layer "F.CrtYd") (width 0.05) (tstamp bdb6ffa6-dcc1-4aac-a593-bac0ee48fe33))
(fp_line (start 3.9 2.6) (end 3.9 -2.6) (layer "F.CrtYd") (width 0.05) (tstamp f2429db0-7201-4d50-b415-8fcbe1fd459d))
(fp_line (start 0.65 -1.55) (end 0.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp 0129e451-520a-4d3e-bff0-1541882a793c))
(fp_line (start 0.65 -0.95) (end 0.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp 02681114-7b64-424c-befc-574fd71c7679))
(fp_line (start -3 1) (end -3 -1.9) (layer "F.Fab") (width 0.1) (tstamp 027d9655-1bf8-40cc-90c2-37e2b1ebc61c))
(fp_line (start -1.65 -1.55) (end -1.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 0285c6f1-80d9-455d-a101-39f6452af8bc))
(fp_line (start -0.65 -0.95) (end -0.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp 0d6da785-b02f-403a-8495-a7bfb5d141ad))
(fp_line (start -1.65 -0.95) (end -1.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp 1c056ad7-3a3f-49b3-bfe0-8ee42688733b))
(fp_line (start -0.35 -1.55) (end -0.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp 26f9dec6-69bf-4c5e-9f08-7086b642166f))
(fp_line (start 1.65 -0.95) (end 1.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp 30d16dd7-3449-4f83-957c-7ffe49575671))
(fp_line (start -3 1) (end 3 1) (layer "F.Fab") (width 0.1) (tstamp 35c2cc72-0e98-440f-9501-f8305d11c577))
(fp_line (start 1.35 -0.95) (end 1.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 594acc59-d5a4-4ddd-94a1-48a904de28dc))
(fp_line (start -0.65 -1.55) (end -0.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 66be635a-1d59-4189-b0a5-10717a4b4345))
(fp_line (start -1.5 0.292893) (end -1 1) (layer "F.Fab") (width 0.1) (tstamp 9cb385e9-ed3a-4651-bae8-c5544b00091f))
(fp_line (start -0.35 -0.95) (end -0.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp a172e5dc-ba28-4735-bee8-ec6d46aafb59))
(fp_line (start 0.35 -0.95) (end 0.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp b5eac434-6996-4b02-8d55-fe6cae245bdf))
(fp_line (start 1.65 -1.55) (end 1.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp c15127df-9347-4b67-b616-8e43b3e5398d))
(fp_line (start -1.35 -0.95) (end -1.35 -1.55) (layer "F.Fab") (width 0.1) (tstamp cba6668d-6406-4a0e-adc7-383e4acfb0cf))
(fp_line (start -1.35 -1.55) (end -1.65 -1.55) (layer "F.Fab") (width 0.1) (tstamp d5fd6ed5-b881-4e71-9536-bacba73c719b))
(fp_line (start 0.35 -1.55) (end 0.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp dd81e525-2ff9-48da-be7e-a660beb57be1))
(fp_line (start 1.35 -1.55) (end 1.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp e8d070b8-863f-4b16-99e5-90cb4de3b8ee))
(fp_line (start -3 -1.9) (end 3 -1.9) (layer "F.Fab") (width 0.1) (tstamp ed6ce8f4-911b-4430-a15f-2245333b8231))
(fp_line (start -2 1) (end -1.5 0.292893) (layer "F.Fab") (width 0.1) (tstamp f0b29b29-a7a6-4c2e-bfb4-c5c14f598fad))
(fp_line (start 3 1) (end 3 -1.9) (layer "F.Fab") (width 0.1) (tstamp fadd2016-1bb4-4b73-8435-400da45c204a))
(pad "1" smd roundrect (at -1.5 1.325) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp afcfdbbb-adca-453d-83cb-9bbc1543ae8a))
(pad "2" smd roundrect (at -0.5 1.325) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "Net-(S1-Pad4)") (pinfunction "Pin_2") (pintype "passive") (tstamp cf88c740-2203-4f29-9f04-e6541726deab))
(pad "3" smd roundrect (at 0.5 1.325) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "Net-(S1-Pad6)") (pinfunction "Pin_3") (pintype "passive") (tstamp dfdfb3d8-aa5e-461a-b35e-5983fbc8cc2d))
(pad "4" smd roundrect (at 1.5 1.325) (size 0.6 1.55) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pinfunction "Pin_4") (pintype "passive") (tstamp c5ad6363-a7a8-4376-96be-a36a08a8f12e))
(pad "MP" smd roundrect (at 2.8 -1.2) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333) (tstamp 4f67c529-a4fe-4500-aca6-883136cb2c1d))
(pad "MP" smd roundrect (at -2.8 -1.2) (size 1.2 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333) (tstamp 7aeb0dee-ef71-48fb-aa0d-b89f838d8aba))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 69a8912d-3ae9-484c-ab76-ec342675f80d)
(at 173.8875 111.6)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/38762778-9a44-491f-be9d-282c618545cb")
(attr smd)
(fp_text reference "R6" (at 0 -1) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf6f043a-8c8e-471c-9660-121eca4e25df)
)
(fp_text value "5.1k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80264eaf-4ef3-4a9a-a488-43419609db48)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5517ecb3-b2c4-46d2-9faa-75610eb0247d)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp dcc17b0f-bd0a-4574-b80d-d1399cec439a))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp e6221933-80ae-4f1c-ade2-873501941423))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 322e21f6-f70e-413b-b4d7-54860ee29e7a))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7ce261ba-2668-482c-91bd-056b5dbfeb3b))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp b1d747cf-2772-4ee3-bf5f-0c4f8fe533fc))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp ff96ec78-8505-4637-bbea-4e56355ec1cf))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 355617e7-0d01-4d79-bf68-4c0a6534aa95))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 82357c16-8a22-44c6-a5f4-e07794d35d86))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8a35fd2b-2844-40b7-aa8f-a8ea92f8285c))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp e7ea04bf-1b51-403f-bea2-133e4b41e34d))
(pad "1" smd roundrect (at -0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pintype "passive") (tstamp 16dadb97-365c-4a32-82df-ce3dbf0e228e))
(pad "2" smd roundrect (at 0.9125 0) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(R5-Pad2)") (pintype "passive") (tstamp 1fec2b60-3c45-4403-967d-cff24bcf883e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 823169c2-8d61-47e2-bb7b-42977e629b83)
(at 176.3 112.5 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/de324e25-0d21-4c49-8736-7d79013e10c4")
(attr smd)
(fp_text reference "R5" (at -2.5 0.3 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c71bd13-0ab3-422c-8429-04be3e68ffd4)
)
(fp_text value "50k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1290b41e-1d80-44ce-af2a-d2680bd00b6e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 5582e6b1-e7f1-4275-b3cc-e0c477a2c580)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 1a5800aa-f61c-4a9a-839f-3cacd14fedf7))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp e0276c29-bd61-437e-8721-2beb0c405e10))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 0e91df3a-e4dd-46ec-90d3-43680a70eae6))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 38f479c6-9cf6-4cfd-aebd-afda79a42d0f))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 984d8104-b17c-439a-b3e0-52ce169f88a3))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d417f821-1dab-4b90-90a9-ceab41d5a5c9))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 215c923f-99f7-4de6-8c69-a48b77f1660a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 2eb1d384-4f43-41ff-b918-e7826bbf3f29))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp e028979e-a998-4a81-9257-d9b3e8aa121b))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f1f9ad81-9e2b-44f0-810f-1ef233f40482))
(pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(R3-Pad2)") (pintype "passive") (tstamp 1fab9ae5-e557-4c15-949b-3eae5c71aa1e))
(pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(R5-Pad2)") (pintype "passive") (tstamp 85507af3-f3de-4745-8643-8d151c18487d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-5" (layer "F.Cu")
(tedit 5F6F9B37) (tstamp 9b144627-0de0-405d-8528-033d0d4de461)
(at 173.9 114.4625 90)
(descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/f911c51f-a1bc-45ca-acf5-2820d357c16a")
(attr smd)
(fp_text reference "U1" (at -1.1375 -2.7 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5417730c-dbc6-4ae7-9cf2-5b0a04e1d479)
)
(fp_text value "LM397" (at 0 2.4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5fc95d4-01d3-4dac-a461-809a480511f8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d41a6703-cac7-4d31-9340-b64a58be1d48)
)
(fp_line (start 0 -1.56) (end -1.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp 4b371d44-e25c-4db3-ba2a-a2fea852a331))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp 7ed7801c-4053-4e58-80cf-38e97398b015))
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "F.SilkS") (width 0.12) (tstamp be31cca5-7b71-4aff-b5d0-dd25b84b22dc))
(fp_line (start 0 1.56) (end -0.8 1.56) (layer "F.SilkS") (width 0.12) (tstamp c2594afd-6b0d-48d1-b716-bb70b821c431))
(fp_line (start -2.05 -1.7) (end -2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 048d5b98-be8a-4052-808c-c073db56f770))
(fp_line (start 2.05 1.7) (end 2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp 2dc83e6a-089e-45b4-8d4d-ef452f257681))
(fp_line (start -2.05 1.7) (end 2.05 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 97fdf370-ca4c-40e6-b2bd-8e940b95b247))
(fp_line (start 2.05 -1.7) (end -2.05 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp ef9eca16-ecac-4278-baa5-afe5723d9c14))
(fp_line (start -0.4 -1.45) (end 0.8 -1.45) (layer "F.Fab") (width 0.1) (tstamp 268a9fc0-0210-40dc-a648-f432d6316558))
(fp_line (start 0.8 -1.45) (end 0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 6e0ed90e-810b-4ff3-978b-6b2856906c81))
(fp_line (start 0.8 1.45) (end -0.8 1.45) (layer "F.Fab") (width 0.1) (tstamp 797c23bf-5735-4e86-89e7-c8442755dcce))
(fp_line (start -0.8 -1.05) (end -0.4 -1.45) (layer "F.Fab") (width 0.1) (tstamp d68bf06d-e553-4b4c-8931-e046db42b830))
(fp_line (start -0.8 1.45) (end -0.8 -1.05) (layer "F.Fab") (width 0.1) (tstamp f09bad5b-e51b-496c-a951-9770b92d55f6))
(pad "1" smd roundrect (at -1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(J2-PadA5)") (pinfunction "-") (pintype "input") (tstamp bc66f392-7498-46e9-bf30-1d9e281253b5))
(pad "2" smd roundrect (at -1.1375 0 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pinfunction "V-") (pintype "power_in") (tstamp a08c1813-94b6-4bf9-89da-da1b8850b68c))
(pad "3" smd roundrect (at -1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(R3-Pad2)") (pinfunction "+") (pintype "input") (tstamp c6d89bcf-7ec6-43e3-b9c0-26b20b29009d))
(pad "4" smd roundrect (at 1.1375 0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(R5-Pad2)") (pintype "open_collector") (tstamp 6120d5fa-47ad-4d5a-ae99-d73e07728b95))
(pad "5" smd roundrect (at 1.1375 -0.95 90) (size 1.325 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "+5V") (pinfunction "V+") (pintype "power_in") (tstamp fe5bd967-a1d0-426d-aa38-7141813b19cb))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DFN_QFN:DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm" (layer "F.Cu")
(tedit 5EA4BEDC) (tstamp be5729c2-802f-42ed-afca-b1928c80f098)
(at 165.7 108.4 90)
(descr "10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826)")
(tags "DFN 0.5")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/79c45e63-ba55-4398-a9ee-f0bf60391ac7")
(attr smd)
(fp_text reference "S1" (at 0 2.8 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c385f73e-52c7-41b7-8c88-305e7d0a056b)
)
(fp_text value "ISL54225" (at 0 2.475 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c623c36-6ee5-4729-b070-34ba2156b81d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.7 0.7) (thickness 0.105)))
(tstamp 390c416a-c585-482b-b5c6-bcd16bebf5f1)
)
(fp_line (start 0 -1.62) (end 1.5 -1.62) (layer "F.SilkS") (width 0.12) (tstamp 06c5453a-ddf6-4e7e-ae3b-b3cf6cc55f8b))
(fp_line (start -1.5 1.62) (end 1.5 1.62) (layer "F.SilkS") (width 0.12) (tstamp db6311a9-f37e-46bc-9897-475e72e35bba))
(fp_line (start -2.13 -1.75) (end 2.13 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 5fe09469-777d-4f78-a5d9-e439a97fc3f4))
(fp_line (start -2.13 -1.75) (end -2.13 1.75) (layer "F.CrtYd") (width 0.05) (tstamp aee09762-4d19-4bed-9187-a39a7866d36c))
(fp_line (start 2.13 -1.75) (end 2.13 1.75) (layer "F.CrtYd") (width 0.05) (tstamp b471d7ac-01a1-407b-965b-535f7297e800))
(fp_line (start -2.13 1.75) (end 2.13 1.75) (layer "F.CrtYd") (width 0.05) (tstamp fa3cdc92-86bb-4050-bdb7-ecd118191c33))
(fp_line (start 1.5 -1.5) (end 1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp 30d8829d-a7d1-4540-8f7e-a31219f0c5a7))
(fp_line (start -1.5 -0.5) (end -0.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp 6e79adc3-6bad-4c52-b103-02c9f3ea3573))
(fp_line (start -1.5 1.5) (end -1.5 -0.5) (layer "F.Fab") (width 0.1) (tstamp 735647e9-8ca8-4325-af04-2d40e3edad71))
(fp_line (start -0.5 -1.5) (end 1.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp 7575e8bd-bdf7-43f2-a8df-254557e965f9))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp e0a04989-05e1-4d1e-8fd1-672f526cd7c6))
(pad "" smd rect (at 0.3875 -0.62 90) (size 0.6 1.05) (layers "F.Paste") (tstamp 0e74d6e6-6c20-4233-ba1f-7606533c0ed7))
(pad "" smd rect (at -0.3875 0.62 90) (size 0.6 1.05) (layers "F.Paste") (tstamp 508d1410-5696-44a4-9cb3-a16142eeaed0))
(pad "" smd rect (at -0.3875 -0.62 90) (size 0.6 1.05) (layers "F.Paste") (tstamp a99af2b7-08c4-4f58-8385-d98340d2c9c3))
(pad "" smd rect (at 0.3875 0.62 90) (size 0.6 1.05) (layers "F.Paste") (tstamp e68af297-9a62-44f0-aa9d-fb941e0b0ec6))
(pad "1" smd rect (at -1.45 -1 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(R5-Pad2)") (pinfunction "SEL") (pintype "input") (tstamp 902bc64e-ca21-41cd-907e-d572c6d4e16a))
(pad "2" smd rect (at -1.45 -0.5 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(J1-Pad2)") (pinfunction "HSD2-") (pintype "output") (tstamp a221f6c6-b79c-4b51-8b8b-9cba24b9ff6a))
(pad "3" smd rect (at -1.45 0 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-Pad3)") (pinfunction "HSD2+") (pintype "output") (tstamp 67ce9fba-06a0-4d86-ac86-4bef813752c0))
(pad "4" smd rect (at -1.45 0.5 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "Net-(S1-Pad4)") (pinfunction "D+") (pintype "input") (tstamp aef211d6-aee8-4097-b472-8e67d4cfb95e))
(pad "5" smd rect (at -1.45 1 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "passive") (tstamp 0195f33c-c733-441e-90ca-5bdcb106232b))
(pad "6" smd rect (at 1.45 1 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "Net-(S1-Pad6)") (pinfunction "D-") (pintype "input") (tstamp f35c02c3-9212-452a-8c05-29aea7a10c74))
(pad "7" smd rect (at 1.45 0.5 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(J2-PadA7)") (pinfunction "HSD1-") (pintype "output") (tstamp c6537d95-2b8b-43f3-86b1-212c958c5dab))
(pad "8" smd rect (at 1.45 0 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(J2-PadA6)") (pinfunction "HSD1+") (pintype "output") (tstamp 8357b9e7-c416-474d-9767-ebcc82a02086))
(pad "9" smd rect (at 1.45 -0.5 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "!OE") (pintype "input") (tstamp 3606ada8-5d56-4cdb-87f8-8bb52245ee43))
(pad "10" smd rect (at 1.45 -1 90) (size 0.85 0.3) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VDD") (pintype "input") (tstamp 3b4fc3eb-0b98-433a-bcb4-a73d9d86adea))
(pad "11" smd rect (at 0 0 90) (size 1.75 2.7) (layers "F.Cu" "F.Mask")
(net 4 "GND") (pinfunction "THERM") (pintype "input") (tstamp e1d37ffa-c7a5-4879-be61-2f4fb40c998f))
(model "${KICAD6_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_C_Receptacle_Amphenol_12401610E4-2A" (layer "F.Cu")
(tedit 5A142044) (tstamp cae02d01-af5b-4335-8ffe-bec327edb1d2)
(at 170.911792 94.54 180)
(descr "USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A")
(tags "USB C Type-C Receptacle SMD")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/bc32768b-85e6-4895-85d8-acf87f438080")
(attr smd)
(fp_text reference "J2" (at 0 -6.36) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a416dab-e618-4f4e-9ce8-2757187ff2fb)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 0 6.14) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1aba819a-dac1-4230-91f5-9b7c5e20a6e8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp ab84a1d2-3947-413b-ac67-04c9583e24d4)
)
(fp_line (start -4.75 -5.37) (end -4.75 1.89) (layer "F.SilkS") (width 0.12) (tstamp 019d1e1f-9dfa-469d-ad46-499f465da531))
(fp_line (start -4.75 -5.37) (end -3.25 -5.37) (layer "F.SilkS") (width 0.12) (tstamp 0dc10e1e-c73c-4146-96fe-a5d69437d778))
(fp_line (start 3.25 -5.37) (end 4.75 -5.37) (layer "F.SilkS") (width 0.12) (tstamp ecf77b45-086e-45be-a0ac-758b05acbb9c))
(fp_line (start 4.75 -5.37) (end 4.75 1.89) (layer "F.SilkS") (width 0.12) (tstamp fb8cc383-3c4b-441a-87f5-1804ace2c86d))
(fp_line (start -5.39 5.73) (end -5.39 -5.87) (layer "F.CrtYd") (width 0.05) (tstamp 6b3fdfd8-911d-45c9-b2a4-30edfb6244ac))
(fp_line (start -5.39 -5.87) (end 5.39 -5.87) (layer "F.CrtYd") (width 0.05) (tstamp 6e1ca9a3-846a-4b52-9736-c1a511d21004))
(fp_line (start 5.39 -5.87) (end 5.39 5.73) (layer "F.CrtYd") (width 0.05) (tstamp e726b965-2cbf-46b0-8c75-682672a43453))
(fp_line (start 5.39 5.73) (end -5.39 5.73) (layer "F.CrtYd") (width 0.05) (tstamp f1f75f9a-90e3-4b3b-861a-4c4a009f8f54))
(fp_line (start 4.6 5.23) (end 4.6 -5.22) (layer "F.Fab") (width 0.1) (tstamp 044b2576-86a3-4ce9-a5bb-b611ad150532))
(fp_line (start -4.6 5.23) (end 4.6 5.23) (layer "F.Fab") (width 0.1) (tstamp 8d8ab8b0-dff3-4461-856e-1315c59af8fa))
(fp_line (start -4.6 5.23) (end -4.6 -5.22) (layer "F.Fab") (width 0.1) (tstamp af6f71ac-bf1b-440b-8572-c06451129c72))
(fp_line (start -4.6 -5.22) (end 4.6 -5.22) (layer "F.Fab") (width 0.1) (tstamp ec6ad5ce-0d02-4c27-b6c7-212460072ead))
(pad "" np_thru_hole oval (at 3.6 -4.36 180) (size 0.95 0.65) (drill oval 0.95 0.65) (layers *.Cu *.Mask) (tstamp 71f2313d-b2f9-4d41-9ca4-27099777d1c7))
(pad "" np_thru_hole circle (at -3.6 -4.36 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 758981d6-3cd4-4565-83b6-0719b46ec08c))
(pad "A1" smd rect (at -2.75 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "passive") (tstamp e8378fc5-bec4-4522-a8aa-efc7a2c91e60))
(pad "A2" smd rect (at -2.25 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bbc5a0dc-8427-4672-80dd-257da79dfc37))
(pad "A3" smd rect (at -1.75 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp faa802ef-6bcc-43ac-b0b7-fd7500e5a5fb))
(pad "A4" smd rect (at -1.25 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 16dd0d1f-de2b-4458-89b9-7f8ec7431db1))
(pad "A5" smd rect (at -0.75 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J2-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 43ae712f-5d55-40ae-8e29-7b653b8a10f0))
(pad "A6" smd rect (at -0.25 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(J2-PadA6)") (pinfunction "D+") (pintype "bidirectional") (tstamp 743f8915-e6f7-4c45-b41d-37eab29ea499))
(pad "A7" smd rect (at 0.25 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(J2-PadA7)") (pinfunction "D-") (pintype "bidirectional") (tstamp 4d17da34-b2d7-43ab-ac2a-a54f81c9469d))
(pad "A8" smd rect (at 0.75 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "unconnected-(J2-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 8f389a74-9331-4ee1-8923-d4ac3eccaaf0))
(pad "A9" smd rect (at 1.25 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp d83c4dbd-e894-4f09-94ac-282e4ee8ce4b))
(pad "A10" smd rect (at 1.75 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e580d0e5-97d2-4fca-8c1d-319ab9ce7df1))
(pad "A11" smd rect (at 2.25 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4d750964-d3d6-42e5-98d3-b4100351e2db))
(pad "A12" smd rect (at 2.75 -5.02 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2833f043-3412-430f-bab9-106701ed8833))
(pad "B1" smd rect (at 2.5 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "passive") (tstamp 970412c0-387a-4ce3-b5cf-388cd3f42c5b))
(pad "B2" smd rect (at 2 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5d527aa5-3ce9-43b0-9f95-3242a86de53b))
(pad "B3" smd rect (at 1.5 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4600ad20-acf6-491b-af12-5e28622377cc))
(pad "B4" smd rect (at 1 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 39765099-9506-4ed8-9ed9-a6aa1f848011))
(pad "B5" smd rect (at 0.5 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J2-PadA5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 5e14023f-4ccd-43c9-8842-9940e8f0a17c))
(pad "B6" smd rect (at 0 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(J2-PadA6)") (pinfunction "D+") (pintype "bidirectional") (tstamp 6c19cdca-501d-45f9-b6d3-bb158bc329a8))
(pad "B7" smd rect (at -0.5 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(J2-PadA7)") (pinfunction "D-") (pintype "bidirectional") (tstamp 3d5e8da0-15b0-4d6c-8e9e-9538c1f05bb6))
(pad "B8" smd rect (at -1 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(J2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp de3630ee-fcbf-40b6-a3a3-58b0ce03e832))
(pad "B9" smd rect (at -1.5 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "passive") (tstamp 98e39857-75db-4fc2-aae2-6dd8e45197d7))
(pad "B10" smd rect (at -2 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a1928681-dd02-479a-83a9-87068353b780))
(pad "B11" smd rect (at -2.5 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 71dd437e-f76f-4e01-8fa5-8b876f4a92b0))
(pad "B12" smd rect (at -3 -3.32 180) (size 0.3 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7260e549-492c-4bcb-a60a-759c9058023d))
(pad "S1" thru_hole oval (at -4.13 -3.11 180) (size 0.8 1.4) (drill oval 0.5 1.1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 1015daf3-af98-470e-9884-c86aa2927bf2))
(pad "S1" thru_hole oval (at 4.13 -3.11 180) (size 0.8 1.4) (drill oval 0.5 1.1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 1f490284-bf1c-414e-9e45-0265e279c383))
(pad "S1" thru_hole oval (at 4.49 2.84 180) (size 0.8 1.4) (drill oval 0.5 1.1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 62abf317-dbc2-4ec6-ad5c-b84922ca83d0))
(pad "S1" thru_hole oval (at -4.49 2.84 180) (size 0.8 1.4) (drill oval 0.5 1.1) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "SHIELD") (pintype "passive") (tstamp 8300f517-3d2b-43ae-92ef-a5c210ae3439))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_Amphenol_12401610E4-2A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "/home/vinh/Downloads/M-12401610E4#2A-REVT2.stp"
(offset (xyz 0 -5.25 1.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp cdea6dda-ba1b-4d16-830a-07444bdbebd3)
(at 173.9125 117.3 180)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/1829c383-9c86-4d52-a146-f19816fab1a7")
(attr smd)
(fp_text reference "R4" (at -2.6875 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdee8cd9-314d-48b3-9ea7-360887e2b8d4)
)
(fp_text value "1k" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7344cf60-45ae-4c2d-9690-41d88b93efd3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp d32f8f9b-efa0-4c6a-8259-c6dd38379738)
)
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp 5eb1ba37-33f1-470c-8553-19d72df95a10))
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp c8c795d2-bbff-44c1-a2ca-0dc07688c930))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 478de518-33ac-42d2-9ab1-e9dbf92c9ef3))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7b01ee00-657a-480a-8952-60500fbbd021))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp d4a332d5-5afb-485c-b16b-9278cb00fbfb))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp da7ff5c1-b944-4f65-81ec-a060ddb1ae01))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 1362957e-0d3f-42b1-b8c6-4e32743a36f1))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 69c4f7e7-9fd0-47ee-8548-f2f49c3f5438))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 9e9540aa-8411-44c9-8a88-b283d570759a))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp fcdc51d7-9995-4ac7-9d69-6422b0201c47))
(pad "1" smd roundrect (at -0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "Net-(R3-Pad2)") (pintype "passive") (tstamp a9bdf3e5-b820-41d2-a42d-dbbe4c408fa1))
(pad "2" smd roundrect (at 0.9125 0 180) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pintype "passive") (tstamp da21c100-c4b9-4c79-80a4-3dafafdc7c0a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_A_Molex_67643_Horizontal" (layer "F.Cu")
(tedit 5EA03975) (tstamp e684ba0e-58a0-4fb5-a9a8-6fa3b8029101)
(at 174.4218 102.489 180)
(descr "USB type A, Horizontal, https://www.molex.com/pdm_docs/sd/676433910_sd.pdf")
(tags "USB_A Female Connector receptacle")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/971400f4-14f8-404a-a3be-59d24f2bdcd3")
(attr through_hole)
(fp_text reference "J1" (at 4.6218 -3.511 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da94d9b6-b773-41e9-abcb-2f9d83a79da1)
)
(fp_text value "USB_A" (at 3.5 14.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b8347a7a-174f-4f86-9252-af36c737b983)
)
(fp_text user "${REFERENCE}" (at 4.6218 -3.511) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c852bc08-50a2-4e2e-9807-8c3178437a3b)
)
(fp_line (start -0.9 -2.6) (end 0.9 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 0f41732b-dc52-452a-9d25-b1e0d15f96e4))
(fp_line (start -3.16 12.58) (end -3.16 4.47) (layer "F.SilkS") (width 0.12) (tstamp 1108b7b9-90bd-4ff0-9b7d-f8116fffdece))
(fp_line (start -3.81 12.58) (end -3.81 13.1) (layer "F.SilkS") (width 0.12) (tstamp 1e5c2993-0954-4bb1-aa63-d9232d7d4d56))
(fp_line (start -3.16 -2.38) (end -3.16 0.95) (layer "F.SilkS") (width 0.12) (tstamp 253ef953-a781-4e88-b4aa-a7d78a74b0c1))
(fp_line (start -3.16 -2.38) (end 10.16 -2.38) (layer "F.SilkS") (width 0.12) (tstamp 35ddd973-b8b6-44e1-b5d7-6922c7f9a20e))
(fp_line (start 10.81 12.58) (end 10.16 12.58) (layer "F.SilkS") (width 0.12) (tstamp 661602c9-d8f2-4925-b746-1a05587c289d))
(fp_line (start 10.81 13.1) (end 10.81 12.58) (layer "F.SilkS") (width 0.12) (tstamp 7a72ebb3-dd73-4f31-bc20-3174c9b3a54b))
(fp_line (start -3.81 13.1) (end 10.81 13.1) (layer "F.SilkS") (width 0.12) (tstamp 9e11cfcd-4044-40c5-9a8f-2026d4d61460))
(fp_line (start 10.16 4.47) (end 10.16 12.58) (layer "F.SilkS") (width 0.12) (tstamp a8d2828c-d845-4f42-8824-091f36f7ad5e))
(fp_line (start 10.16 -2.38) (end 10.16 0.95) (layer "F.SilkS") (width 0.12) (tstamp c982d11c-a566-45c9-aba7-43f968fc325b))
(fp_line (start -3.16 12.58) (end -3.81 12.58) (layer "F.SilkS") (width 0.12) (tstamp f92433f9-a6c4-4308-9dad-5f65fe598221))
(fp_line (start -4.2 13.49) (end -4.2 12.19) (layer "F.CrtYd") (width 0.05) (tstamp 090df1f8-9b7e-418e-9991-4f87cdbe6625))
(fp_line (start -4.2 13.49) (end 11.2 13.49) (layer "F.CrtYd") (width 0.05) (tstamp 3947bf48-92d8-4824-9ddf-16a3aacebab8))
(fp_line (start -3.55 -2.77) (end -3.55 0.76) (layer "F.CrtYd") (width 0.05) (tstamp 485740f1-4c99-4112-9c2e-26aac02f79bd))
(fp_line (start 11.2 12.19) (end 10.55 12.19) (layer "F.CrtYd") (width 0.05) (tstamp 62ef1f67-ea18-4f23-a970-5571fad07750))
(fp_line (start -3.55 12.19) (end -3.55 4.66) (layer "F.CrtYd") (width 0.05) (tstamp 8970a3c6-1f95-4f7a-a00f-8d48be2e180d))
(fp_line (start 10.55 -2.77) (end 10.55 0.76) (layer "F.CrtYd") (width 0.05) (tstamp 99c92da7-9876-4d69-a9d5-c9b6ffa802b1))
(fp_line (start -3.55 -2.77) (end 10.55 -2.77) (layer "F.CrtYd") (width 0.05) (tstamp 9efd8f13-6b89-4a47-9730-eee39c29cf88))
(fp_line (start 10.55 12.19) (end 10.55 4.66) (layer "F.CrtYd") (width 0.05) (tstamp eb6cf11d-3987-47d1-a957-8f88f43ec97d))
(fp_line (start 11.2 13.49) (end 11.2 12.19) (layer "F.CrtYd") (width 0.05) (tstamp fd809d82-6e79-459c-882f-cfaccd051a22))
(fp_line (start -4.2 12.19) (end -3.55 12.19) (layer "F.CrtYd") (width 0.05) (tstamp ff758a37-b2f3-45d2-ad02-c4f443e0a795))
(fp_arc (start -3.55 4.66) (mid -5.078208 2.71) (end -3.55 0.76) (layer "F.CrtYd") (width 0.05) (tstamp 34246010-1f50-44a7-924a-f3a858c42f68))
(fp_arc (start 10.55 0.76) (mid 12.078208 2.71) (end 10.55 4.66) (layer "F.CrtYd") (width 0.05) (tstamp 3c2b1f91-301f-4d8b-8a3f-29359040e8d8))
(fp_line (start 0 -1.27) (end 1 -2.27) (layer "F.Fab") (width 0.1) (tstamp 02018ae2-fac2-4e1d-96da-a37efc287167))
(fp_line (start -3.05 12.69) (end -3.7 12.69) (layer "F.Fab") (width 0.1) (tstamp 0d33d812-c7e5-4813-a8cb-646f605b7ce9))
(fp_line (start 10.7 12.99) (end 10.7 12.69) (layer "F.Fab") (width 0.1) (tstamp 17642567-70a4-4d9a-9dea-64e5c023b284))
(fp_line (start 10.05 -2.27) (end 10.05 12.69) (layer "F.Fab") (width 0.1) (tstamp 27f41fd0-365d-449c-b8c6-02a5de292500))
(fp_line (start -1 -2.27) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 46037890-6360-4ab8-92e2-4b999cf10ac9))
(fp_line (start -3.7 12.69) (end -3.7 12.99) (layer "F.Fab") (width 0.1) (tstamp 50f18302-e688-412a-a60a-5b02a65cb3e8))
(fp_line (start -3.7 12.99) (end 10.7 12.99) (layer "F.Fab") (width 0.1) (tstamp 6c2b4057-8a7c-4712-a50f-f3e4e6a40edd))
(fp_line (start -3.05 -2.27) (end 10.05 -2.27) (layer "F.Fab") (width 0.1) (tstamp 75d1f738-6411-4fd9-98ce-9812050dc93b))
(fp_line (start -3.05 12.69) (end -3.05 -2.27) (layer "F.Fab") (width 0.1) (tstamp 80638dc2-8e82-4539-81f3-7cee0b1c8f4c))
(fp_line (start -3.05 9.27) (end 10.05 9.27) (layer "F.Fab") (width 0.1) (tstamp 97a794ba-0be7-4046-af37-e0e3c94bd45e))
(fp_line (start 10.7 12.69) (end 10.05 12.69) (layer "F.Fab") (width 0.1) (tstamp d98b703a-26d2-4737-b74c-fe5075791334))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.5) (drill 0.95) (layers *.Cu *.Mask)
(net 1 "+5V") (pinfunction "VBUS") (pintype "power_in") (tstamp 31854835-ed19-4484-8963-49127811dc30))
(pad "2" thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.95) (layers *.Cu *.Mask)
(net 2 "Net-(J1-Pad2)") (pinfunction "D-") (pintype "bidirectional") (tstamp 58d7bb52-94e0-4251-8983-8b5ac589eab3))
(pad "3" thru_hole circle (at 4.5 0 180) (size 1.6 1.6) (drill 0.95) (layers *.Cu *.Mask)
(net 3 "Net-(J1-Pad3)") (pinfunction "D+") (pintype "bidirectional") (tstamp b8774192-d7e2-42a4-879c-459e2f67ce7a))
(pad "4" thru_hole circle (at 7 0 180) (size 1.6 1.6) (drill 0.95) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 938f8e76-1bfc-4832-9196-b62a3b7c2f1d))
(pad "5" thru_hole circle (at -3.07 2.71 180) (size 3 3) (drill 2.3) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 55123860-cc8d-434b-910e-f859e830ad71))
(pad "5" thru_hole circle (at 10.07 2.71 180) (size 3 3) (drill 2.3) (layers *.Cu *.Mask)
(net 4 "GND") (pinfunction "Shield") (pintype "passive") (tstamp fe48f2eb-798e-4704-ac2a-491ce8e23c5e))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_A_Molex_67643_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp f20c5df9-ef98-4c39-bcbd-5eb5b730bee3)
(at 164.7 94.5875 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "rpi468-pcb.kicad_sch")
(property "Sheetname" "")
(path "/2fa03c2b-51fc-4456-bdb0-f263cbb97ec2")
(attr smd)
(fp_text reference "R2" (at -2.4125 0.2 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ae7f4e55-0734-470e-9872-6701aed17e1d)
)
(fp_text value "5.1k" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dcf34e8c-3163-4830-adbb-54ee993808a8)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 55ddb154-7835-4d55-86c3-82e7b13fd8df)
)
(fp_line (start -0.254724 0.5225) (end 0.254724 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 66ea7c3a-fe1b-4bc1-88e3-d03fffdbe8a0))
(fp_line (start -0.254724 -0.5225) (end 0.254724 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp cca6899b-cf20-400e-97f6-f90297ae9b26))
(fp_line (start 1.65 -0.73) (end 1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 13bc9cf0-bbcd-409b-b94c-6a8593a0e226))
(fp_line (start -1.65 0.73) (end -1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 7d0d328d-2776-4be4-b4da-7ff0a1041516))
(fp_line (start -1.65 -0.73) (end 1.65 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 8be8219a-2f93-43e2-a889-c26f5201067d))
(fp_line (start 1.65 0.73) (end -1.65 0.73) (layer "F.CrtYd") (width 0.05) (tstamp bc5b78cf-0a24-41e9-946d-58265a1b4479))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 7fdc85c4-d4f7-41d4-9495-4514796a7b4c))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 8bf6a852-16d9-49ee-881c-020287ee21d6))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 90d06b84-0dc0-474b-ad66-1c6b76ba36ac))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp d4debb9f-bc5c-40e4-95fe-d5519278ebc6))
(pad "1" smd roundrect (at -0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "Net-(J2-PadA5)") (pintype "passive") (tstamp d39de62b-8bb1-4708-9f21-a5f7cfda100c))
(pad "2" smd roundrect (at 0.9125 0 90) (size 0.975 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "GND") (pintype "passive") (tstamp 53b392c7-b14b-40a0-b3ae-354c7bdaa72f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 170.434 104.5) (end 178 104.5) (layer "Edge.Cuts") (width 0.1) (tstamp 00c4c5d1-0640-4fe5-bfca-5fd70c3d82b9))
(gr_line (start 169.4 110.1) (end 169.4 105.537051) (layer "Edge.Cuts") (width 0.1) (tstamp 18b7e960-9b98-4ff2-8139-c9df21cfb202))
(gr_line (start 178 110.1) (end 178 120) (layer "Edge.Cuts") (width 0.1) (tstamp 2f758474-3483-4af0-948d-68e7678d9fe7))
(gr_line (start 178 90.2) (end 178 104.5) (layer "Edge.Cuts") (width 0.1) (tstamp 341b078b-3205-426c-82a8-999db4c2faff))
(gr_line (start 169.4 110.1) (end 178 110.1) (layer "Edge.Cuts") (width 0.1) (tstamp 5f144401-49e6-44bc-a9cb-66ee56f596c1))
(gr_line (start 178 90.2) (end 164 90.2) (layer "Edge.Cuts") (width 0.1) (tstamp b91d212f-a55a-4bc9-853e-38a6eb01f095))
(gr_line (start 178 120) (end 164 120) (layer "Edge.Cuts") (width 0.1) (tstamp bc299518-5e14-49bc-961b-75effea0ac8c))
(gr_line (start 164 120) (end 164 90.2) (layer "Edge.Cuts") (width 0.1) (tstamp d47fc2c7-5bbe-4c4d-8706-9bd4a1fdb539))
(gr_arc (start 169.4 105.537051) (mid 169.70222 104.804377) (end 170.434 104.5) (layer "Edge.Cuts") (width 0.1) (tstamp f2c5ff9c-d277-4862-9e0f-05413a7a3034))
(segment (start 169.785896 98.685896) (end 169.911792 98.56) (width 0.3) (layer "F.Cu") (net 1) (tstamp 02458d2e-fb75-4427-a896-50ce5523fa0b))
(segment (start 169.785896 98.685896) (end 172.285896 98.685896) (width 0.3) (layer "F.Cu") (net 1) (tstamp 041e8c7e-6855-4950-a651-68628e3ae921))
(segment (start 164.5 103.2) (end 164.9 102.8) (width 0.3) (layer "F.Cu") (net 1) (tstamp 175657c6-b2f1-4230-ba8e-f92a7bf58a7e))
(segment (start 173.2218 103.689) (end 169.9452 103.689) (width 0.4) (layer "F.Cu") (net 1) (tstamp 19bef82d-4af4-43ce-a5fe-6f82c048e3ff))
(segment (start 169.7 103.9342) (end 169.682957 103.9342) (width 0.4) (layer "F.Cu") (net 1) (tstamp 1a4fd490-9415-40a4-9e6f-b3c47a846d57))
(segment (start 169.682957 103.9342) (end 169.1894 104.427757) (width 0.4) (layer "F.Cu") (net 1) (tstamp 28773ce4-f375-4f6b-bde8-235a627e0996))
(segment (start 174.4218 102.489) (end 174.3718 102.489) (width 0.4) (layer "F.Cu") (net 1) (tstamp 34bac006-f2b0-47b8-82b7-f864655c7c34))
(segment (start 172.411792 98.56) (end 172.411792 97.86) (width 0.3) (layer "F.Cu") (net 1) (tstamp 36c54f55-2c7f-4399-9c77-1e97640f6699))
(segment (start 169.661792 99.56) (end 169.661792 98.81) (width 0.3) (layer "F.Cu") (net 1) (tstamp 3861cc17-656e-450e-8612-72e39718432a))
(segment (start 169.1894 110.6932) (end 170.0712 111.575) (width 0.4) (layer "F.Cu") (net 1) (tstamp 3abe77e8-029d-49e0-b671-caa393b610b9))
(segment (start 169.7 103.9342) (end 169.9452 103.689) (width 0.4) (layer "F.Cu") (net 1) (tstamp 3c2c188a-08e4-431b-9039-9119da2be5a3))
(segment (start 172.95 111.625) (end 172.975 111.6) (width 0.4) (layer "F.Cu") (net 1) (tstamp 3fd228db-7b39-4156-a427-31e7ce0665f9))
(segment (start 174.4218 102.489) (end 173.2218 103.689) (width 0.4) (layer "F.Cu") (net 1) (tstamp 4d1f1d3c-6945-47c9-ba5b-d797ce495b24))
(segment (start 171.5 111.575) (end 172.95 111.575) (width 0.4) (layer "F.Cu") (net 1) (tstamp 4dac6015-c5c1-4ba8-9eea-a8b3f2a2d191))
(segment (start 164.7 104.4) (end 164.5 104.2) (width 0.3) (layer "F.Cu") (net 1) (tstamp 500f07a3-9854-4fb9-be84-baaf9517ba19))
(segment (start 169.661792 98.81) (end 169.785896 98.685896) (width 0.3) (layer "F.Cu") (net 1) (tstamp 5be72df7-26df-4e52-9dda-62d11308eea2))
(segment (start 169.1 96.3) (end 169.911792 97.111792) (width 0.3) (layer "F.Cu") (net 1) (tstamp 6950770e-c98a-43fa-8f9e-d6cd116f9cc7))
(segment (start 169.1894 104.427757) (end 169.1894 110.6932) (width 0.4) (layer "F.Cu") (net 1) (tstamp 70843ce5-c647-4827-90d7-7d4c5122c493))
(segment (start 169.3686 118.7492) (end 169.3686 112.303) (width 0.4) (layer "F.Cu") (net 1) (tstamp 74091c1f-e551-4563-bb32-a6e7d5268ed9))
(segment (start 164.5 104.2) (end 164.5 103.2) (width 0.3) (layer "F.Cu") (net 1) (tstamp 741abf78-7dc9-4706-8c36-ddff32f4f98b))
(segment (start 170.0966 111.575) (end 171.5 111.575) (width 0.4) (layer "F.Cu") (net 1) (tstamp 7c88cfbf-09ed-4c2f-8184-bd7497573fd1))
(segment (start 170.0712 111.575) (end 170.0966 111.575) (width 0.4) (layer "F.Cu") (net 1) (tstamp 960a80b1-1eb7-4d80-88a9-1a09a16e36ac))
(segment (start 164.7 106.95) (end 164.7 104.4) (width 0.3) (layer "F.Cu") (net 1) (tstamp 9ca532ba-acd4-41ea-92d9-6361d1b63f4b))
(segment (start 172.161792 99.56) (end 172.161792 98.81) (width 0.3) (layer "F.Cu") (net 1) (tstamp b8bbf00c-3085-4e07-9e01-074e9780ff36))
(segment (start 169.911792 97.111792) (end 169.911792 97.86) (width 0.3) (layer "F.Cu") (net 1) (tstamp c3efd27f-ddaf-4a99-bb45-228eb0cccc66))
(segment (start 172.95 113.325) (end 172.95 111.625) (width 0.4) (layer "F.Cu") (net 1) (tstamp c4a1b044-bae2-44ab-86cb-385d4deb4109))
(segment (start 169.911792 98.56) (end 169.911792 97.86) (width 0.3) (layer "F.Cu") (net 1) (tstamp ca45a982-82ee-4b0f-8f24-152792e98f13))
(segment (start 172.285896 98.685896) (end 172.411792 98.56) (width 0.3) (layer "F.Cu") (net 1) (tstamp cbacd466-cc95-4799-85ba-7a361cc94d3b))
(segment (start 172.161792 100.228992) (end 174.4218 102.489) (width 0.3) (layer "F.Cu") (net 1) (tstamp cbd05f7a-005d-471d-9d1c-502be5797411))
(segment (start 172.95 111.575) (end 172.975 111.6) (width 0.4) (layer "F.Cu") (net 1) (tstamp d25813b3-f154-4380-a487-419c1f031799))
(segment (start 172.161792 98.81) (end 172.411792 98.56) (width 0.3) (layer "F.Cu") (net 1) (tstamp d443a744-1ce4-4f3e-8cde-64ac077e100b))
(segment (start 169.3686 112.303) (end 170.0966 111.575) (width 0.4) (layer "F.Cu") (net 1) (tstamp d7c7277c-6c2b-4fea-8b44-fae0d9d1392c))
(segment (start 172.161792 99.56) (end 172.161792 100.228992) (width 0.3) (layer "F.Cu") (net 1) (tstamp fd8abeea-7f9b-4e0b-9334-22033b58ffec))
(via (at 164.9 102.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 8c3c224d-3dbb-4ba2-a9eb-10179eb0da01))
(via (at 169.1 96.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp cc42bca5-4ac7-40b4-a633-7479d0f20a21))
(segment (start 169.1 98.6) (end 169.1 96.3) (width 0.3) (layer "B.Cu") (net 1) (tstamp abcd4480-c054-4828-8ebd-b3ae194c019d))
(segment (start 164.9 102.8) (end 169.1 98.6) (width 0.3) (layer "B.Cu") (net 1) (tstamp b1fc3b31-f55d-40d4-bfa7-e09114b2d345))
(segment (start 165.2 111.595932) (end 166.197234 112.593166) (width 0.3) (layer "F.Cu") (net 2) (tstamp 75d73583-6b99-4be6-b644-26f9635d15a4))
(segment (start 165.2 109.85) (end 165.2 111.595932) (width 0.3) (layer "F.Cu") (net 2) (tstamp d68a27bb-f6f6-4156-895a-73f645c8f333))
(via (at 166.197234 112.593166) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 68a395ae-7b85-4c8e-9f00-413979d02528))
(segment (start 165.616553 107.501353) (end 169.435106 103.6828) (width 0.3) (layer "B.Cu") (net 2) (tstamp 1487fb55-9078-48d9-b018-7941bf350465))
(segment (start 167.505961 113.281277) (end 167.9453 112.841938) (width 0.3) (layer "B.Cu") (net 2) (tstamp 3850ef2b-9889-4f62-9b77-cfff17c4bf24))
(segment (start 169.435106 103.6828) (end 170.505068 103.6828) (width 0.3) (layer "B.Cu") (net 2) (tstamp 466a9af5-fbe4-429f-8285-d67124262948))
(segment (start 166.885345 113.281277) (end 167.505961 113.281277) (width 0.3) (layer "B.Cu") (net 2) (tstamp 4f6e2dc2-f7f1-4c8f-8a36-825430d40b82))
(segment (start 165.616553 109.838153) (end 165.616553 107.501353) (width 0.3) (layer "B.Cu") (net 2) (tstamp 775b53f0-70ef-43ed-b3b1-2ea83cb8c7e0))
(segment (start 167.9453 112.841938) (end 167.9453 112.1669) (width 0.3) (layer "B.Cu") (net 2) (tstamp 7b182fc9-dc6d-42cc-9d79-6244801dd8d9))
(segment (start 170.505068 103.6828) (end 171.698868 102.489) (width 0.3) (layer "B.Cu") (net 2) (tstamp 8dbb115a-dbc4-4f6c-8741-0aa582dae82e))
(segment (start 167.9453 112.1669) (end 165.616553 109.838153) (width 0.3) (layer "B.Cu") (net 2) (tstamp b769408a-c657-49f5-a608-a0af3ee7f479))
(segment (start 166.197234 112.593166) (end 166.885345 113.281277) (width 0.3) (layer "B.Cu") (net 2) (tstamp e82feaab-03aa-4b87-a1b5-821330905eb0))
(segment (start 171.698868 102.489) (end 171.9218 102.489) (width 0.3) (layer "B.Cu") (net 2) (tstamp f3147e24-bef3-4f38-98fc-61539a48960c))
(segment (start 165.7 111.035977) (end 167.1953 112.531277) (width 0.3) (layer "F.Cu") (net 3) (tstamp 09baee7d-6832-412e-99e2-0dd3d96c9f3d))
(segment (start 165.7 109.85) (end 165.7 111.035977) (width 0.3) (layer "F.Cu") (net 3) (tstamp a3d22f0e-1f68-4224-9d71-a8c7fa20b1a1))
(via (at 167.1953 112.531277) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp 332f64f6-bb78-477b-9ccb-407b3a1c08f9))
(segment (start 165.0746 110.410577) (end 167.1953 112.531277) (width 0.3) (layer "B.Cu") (net 3) (tstamp 9df4fedb-4873-47d6-a703-6db96c9530d8))
(segment (start 169.9218 102.489) (end 165.0746 107.3362) (width 0.3) (layer "B.Cu") (net 3) (tstamp b4af4a7d-fea5-4a16-b20e-7ab9e2b76e46))
(segment (start 165.0746 107.3362) (end 165.0746 110.410577) (width 0.3) (layer "B.Cu") (net 3) (tstamp ff373884-9dcc-404c-b940-13305de8327a))
(segment (start 168.161792 99.56) (end 168.161792 99.025) (width 0.25) (layer "F.Cu") (net 4) (tstamp 03435ef8-03f4-46e8-b694-9600be705623))
(segment (start 166.3686 118.7492) (end 165.426 118.7492) (width 0.4) (layer "F.Cu") (net 4) (tstamp 08b5d9ed-a4d5-4878-adf0-68970a6373c3))
(segment (start 173.661792 98.674999) (end 173.911792 98.424999) (width 0.3) (layer "F.Cu") (net 4) (tstamp 0c7818ee-854c-4dfa-869a-8a842b6eabd3))
(segment (start 168.186792 99.013208) (end 168.186792 99) (width 0.3) (layer "F.Cu") (net 4) (tstamp 0efed1b5-1aa1-4a84-baa2-f181897b12fc))
(segment (start 175.3628 97.65) (end 177.4918 99.779) (width 0.3) (layer "F.Cu") (net 4) (tstamp 32f164fb-c1ef-4607-b123-687cef5c775e))
(segment (start 166.025 108.4) (end 166.7 109.075) (width 0.3) (layer "F.Cu") (net 4) (tstamp 3a736a29-8475-4cc4-a359-48ae9da0db08))
(segment (start 168.161792 99.56) (end 168.161792 99.225305) (width 0.3) (layer "F.Cu") (net 4) (tstamp 50cfb309-3b7b-4562-84fe-d5cfe3764e0b))
(segment (start 166.991792 97.86) (end 166.781792 97.65) (width 0.3) (layer "F.Cu") (net 4) (tstamp 6719df39-3bf2-4849-9aab-098360037c3c))
(segment (start 173.911792 97.86) (end 174.831792 97.86) (width 0.3) (layer "F.Cu") (net 4) (tstamp 78207ec1-0981-4b9a-a99e-0f399c74de6d))
(segment (start 173.661792 99.56) (end 173.661792 98.674999) (width 0.3) (layer "F.Cu") (net 4) (tstamp 79096b23-80ef-479d-a0e2-ac4ef71ea5cf))
(segment (start 168.411792 97.86) (end 166.991792 97.86) (width 0.3) (layer "F.Cu") (net 4) (tstamp 7af153e2-6b0d-4ae7-821f-1a569f864207))
(segment (start 175.041792 97.65) (end 175.3628 97.65) (width 0.3) (layer "F.Cu") (net 4) (tstamp 81d6ffa8-a7c8-4d8f-92bd-9d5d77f6b492))
(segment (start 165.7 108.4) (end 166.025 108.4) (width 0.3) (layer "F.Cu") (net 4) (tstamp 85a91c9a-a063-4730-9b39-031e58270ecf))
(segment (start 165.2 104.140046) (end 165.2 106.95) (width 0.3) (layer "F.Cu") (net 4) (tstamp 8b0fe1a1-cacc-40ca-8cac-8a302896e383))
(segment (start 167.0618 102.489) (end 167.4218 102.489) (width 0.3) (layer "F.Cu") (net 4) (tstamp 9028542a-2982-479a-bdb3-0fc28482631a))
(segment (start 173.911792 98.424999) (end 173.911792 97.86) (width 0.3) (layer "F.Cu") (net 4) (tstamp 911aaab4-40c2-4b86-b0c7-c650ccc7f07c))
(segment (start 165.426 118.7492) (end 165.227 118.9482) (width 0.4) (layer "F.Cu") (net 4) (tstamp 94853da6-d0bd-4fe3-83c9-6c76f3cb9022))
(segment (start 173.9 116.4) (end 173 117.3) (width 0.3) (layer "F.Cu") (net 4) (tstamp 982bcbc9-f89d-4737-9f72-754c500dce36))
(segment (start 174.831792 97.86) (end 175.041792 97.65) (width 0.3) (layer "F.Cu") (net 4) (tstamp a82d270d-4c05-4cae-b5e0-4c902a1b2137))
(segment (start 168.161792 99.025) (end 168.186792 99) (width 0.25) (layer "F.Cu") (net 4) (tstamp c6059b79-57af-4229-8ce9-726df3e79cea))
(segment (start 166.7 109.075) (end 166.7 109.85) (width 0.3) (layer "F.Cu") (net 4) (tstamp c7cc2758-66fe-42f6-be1b-b77fc3c1f2dc))
(segment (start 166.7 109.85) (end 166.7 109.861646) (width 0.3) (layer "F.Cu") (net 4) (tstamp c7fa2ac6-fdc2-4cb8-86b2-0948658c8747))
(segment (start 172.974 118.3894) (end 172.974 117.326) (width 0.4) (layer "F.Cu") (net 4) (tstamp c8574a76-ea2f-4834-9fb9-05fa27826844))
(segment (start 168.411792 97.86) (end 168.411792 98.788208) (width 0.3) (layer "F.Cu") (net 4) (tstamp d117c55b-0eb5-4b03-895b-42acebbe3b71))
(segment (start 173.9 115.6) (end 173.9 116.4) (width 0.3) (layer "F.Cu") (net 4) (tstamp d32fa169-3cbb-409b-9f5d-ce3f0f05aa32))
(segment (start 165.2 106.95) (end 165.2 107.9) (width 0.3) (layer "F.Cu") (net 4) (tstamp d39586d8-dfe0-46be-92e0-1f44b60d0800))
(segment (start 168.411792 98.788208) (end 168.186792 99.013208) (width 0.3) (layer "F.Cu") (net 4) (tstamp d9ed7e92-ebc4-4471-b314-743cb82409f8))
(segment (start 165.2 107.9) (end 165.7 108.4) (width 0.3) (layer "F.Cu") (net 4) (tstamp da4b5390-4e62-4fcf-915b-fce6098fdc48))
(segment (start 165.370023 103.970023) (end 165.2 104.140046) (width 0.3) (layer "F.Cu") (net 4) (tstamp ea93c75e-2a04-423e-864e-071bef643b32))
(segment (start 172.974 117.326) (end 173 117.3) (width 0.4) (layer "F.Cu") (net 4) (tstamp fcfcc62d-8cd6-4452-94f3-85b6041be6de))
(via (at 172.974 118.3894) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 0851c336-461b-4e3d-92b7-227c3d93d710))
(via (at 165.227 118.9482) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 0dcc04fd-4e2e-4fa9-9611-43dbd7b627ed))
(via (at 165.370023 103.970023) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 96a38e09-f0b9-4bb9-b748-4334d55a7877))
(segment (start 166.29043 102.489) (end 165.75 103.02943) (width 0.5) (layer "B.Cu") (net 4) (tstamp 0c915a24-f62b-4a1c-a9e4-a5a716dbb28a))
(segment (start 164.2492 117.9704) (end 165.227 118.9482) (width 0.4) (layer "B.Cu") (net 4) (tstamp 2599eb7b-d021-4f78-a7aa-9c1736605ba4))
(segment (start 166.4808 97.65) (end 164.3518 99.779) (width 0.3) (layer "B.Cu") (net 4) (tstamp 3aea6d91-d7b4-4d61-9a60-17517808aaf0))
(segment (start 164.2492 105.090846) (end 164.2492 117.9704) (width 0.4) (layer "B.Cu") (net 4) (tstamp 3d048c42-56bc-4d3b-b138-841d79897bee))
(segment (start 167.4218 102.489) (end 166.29043 102.489) (width 0.5) (layer "B.Cu") (net 4) (tstamp 4dd941bb-f374-418a-a3c7-623bccb29090))
(segment (start 165.75 103.02943) (end 165.75 103.590046) (width 0.5) (layer "B.Cu") (net 4) (tstamp 967dc90f-794c-40aa-a810-7bff02132a6c))
(segment (start 165.75 103.590046) (end 165.370023 103.970023) (width 0.5) (layer "B.Cu") (net 4) (tstamp 9b9b3c1f-3123-4d74-b8e0-17920405069c))
(segment (start 165.370023 103.970023) (end 164.2492 105.090846) (width 0.4) (layer "B.Cu") (net 4) (tstamp d3693b6d-847f-4497-a122-0c9419ffd251))
(segment (start 166.781792 97.65) (end 166.4808 97.65) (width 0.3) (layer "B.Cu") (net 4) (tstamp ead53d7d-e2ba-4d0e-b9c8-8c528d2ab047))
(segment (start 170.911792 96.4495) (end 171.161292 96.2) (width 0.3) (layer "F.Cu") (net 5) (tstamp 1217c8af-c965-40eb-be4c-7be26032c993))
(segment (start 165.7 106.95) (end 165.7 104.7) (width 0.3) (layer "F.Cu") (net 5) (tstamp 1b50b404-1a86-46c3-b39e-0ceb63c36410))
(segment (start 171.161792 99.56) (end 171.161792 100.658163) (width 0.3) (layer "F.Cu") (net 5) (tstamp 7ab7c9ca-a895-4f12-ac09-4671abe3db7c))
(segment (start 170.911792 97.86) (end 170.911792 96.4495) (width 0.3) (layer "F.Cu") (net 5) (tstamp 9f8d3a15-dbb0-47f0-b7ab-16804e573dd9))
(segment (start 171.161792 100.658163) (end 170.57085 101.249105) (width 0.3) (layer "F.Cu") (net 5) (tstamp e1e045be-3a20-4526-b67b-f69d762044c6))
(segment (start 165.7 104.7) (end 166.6 103.8) (width 0.3) (layer "F.Cu") (net 5) (tstamp eab9e84d-f3ee-40e5-a084-94eda44f4314))
(via (at 170.57085 101.249105) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 3acdf221-8478-4d40-af50-5830fe86bd1b))
(via (at 171.161292 96.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 59e23666-2ae1-4ea3-b07b-753f647d7d82))
(via (at 166.6 103.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp 751fc89b-dd48-4702-83a5-057951f211b0))
(segment (start 167.737146 103.8) (end 168.7 102.837146) (width 0.3) (layer "B.Cu") (net 5) (tstamp 3eaa13f5-f341-472e-a95d-e7ea75faf99e))
(segment (start 170.57085 96.790442) (end 170.57085 101.249105) (width 0.3) (layer "B.Cu") (net 5) (tstamp 47dec49d-eb6d-4bf3-be71-48b8b1ef91f9))
(segment (start 168.7 102.837146) (end 168.7 101.4) (width 0.3) (layer "B.Cu") (net 5) (tstamp 6660569d-1f3d-410f-b34b-90ca1c44b206))
(segment (start 168.850895 101.249105) (end 170.57085 101.249105) (width 0.3) (layer "B.Cu") (net 5) (tstamp 7ee67bef-c386-4986-aa7c-53f8f4e3b1d7))
(segment (start 168.7 101.4) (end 168.850895 101.249105) (width 0.3) (layer "B.Cu") (net 5) (tstamp 916cab08-00b2-48ae-b964-3ac16a3daa63))
(segment (start 166.6 103.8) (end 167.737146 103.8) (width 0.3) (layer "B.Cu") (net 5) (tstamp bf770084-0cc8-4a41-8c14-f8104ea4e4ca))
(segment (start 171.161292 96.2) (end 170.57085 96.790442) (width 0.3) (layer "B.Cu") (net 5) (tstamp f02107dd-2f5d-4e95-b0ae-730ae3f28680))
(segment (start 171.411792 97.86) (end 171.411792 97.288208) (width 0.3) (layer "F.Cu") (net 6) (tstamp 016ae4a4-b7df-4b81-ad76-4c2a970cc369))
(segment (start 169.989776 100.589776) (end 170.08 100.68) (width 0.3) (layer "F.Cu") (net 6) (tstamp 08b7445a-2e5d-451d-a95c-6f06dee9dea4))
(segment (start 166.2 105.337146) (end 168.7718 102.765346) (width 0.3) (layer "F.Cu") (net 6) (tstamp 362b7d1b-db18-4e73-871d-fd1c29bb187b))
(segment (start 168.494473 100.589776) (end 169.989776 100.589776) (width 0.3) (layer "F.Cu") (net 6) (tstamp 3711e3e4-bf3f-4487-abb5-21fdd81299e6))
(segment (start 170.661792 100.098208) (end 170.661792 99.56) (width 0.3) (layer "F.Cu") (net 6) (tstamp 567f162a-01ba-43d3-84f3-055ba78a23e8))
(segment (start 168.7718 101.9882) (end 170.08 100.68) (width 0.3) (layer "F.Cu") (net 6) (tstamp 6972ce14-c8ce-41c2-9255-57cc12226ef3))
(segment (start 168.7718 102.765346) (end 168.7718 101.9882) (width 0.3) (layer "F.Cu") (net 6) (tstamp 6dfb04bb-9414-42d2-afb0-2dbdab750030))
(segment (start 171.411792 97.288208) (end 172.2 96.5) (width 0.3) (layer "F.Cu") (net 6) (tstamp ae546923-05c5-4544-842e-4b9f58d109f9))
(segment (start 170.08 100.68) (end 170.661792 100.098208) (width 0.3) (layer "F.Cu") (net 6) (tstamp cfa7600e-4750-476c-9a64-237726f34e5b))
(segment (start 166.2 106.95) (end 166.2 105.337146) (width 0.3) (layer "F.Cu") (net 6) (tstamp dd1f7c63-5cb9-476d-8ae3-c92a4f1798d7))
(via (at 168.494473 100.589776) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 993bf997-f829-4985-a617-1cd5a8df47f4))
(via (at 172.2 96.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp e4b830a7-65c7-4c06-b1d8-92f177018afe))
(segment (start 172.2 96.5) (end 172.2 96.178047) (width 0.3) (layer "B.Cu") (net 6) (tstamp 01b78966-0181-4a30-b21d-21500c6d209f))
(segment (start 170.850631 95.45) (end 169.9 96.400631) (width 0.3) (layer "B.Cu") (net 6) (tstamp 395c9189-9947-4e45-8230-9888b3175c7d))
(segment (start 168.910224 100.589776) (end 168.494473 100.589776) (width 0.3) (layer "B.Cu") (net 6) (tstamp 405acaa4-a73e-462b-a063-38d483a239f8))
(segment (start 172.2 96.178047) (end 171.471953 95.45) (width 0.3) (layer "B.Cu") (net 6) (tstamp 4f404b3f-adeb-4782-a817-4a6935a6df57))
(segment (start 171.471953 95.45) (end 170.850631 95.45) (width 0.3) (layer "B.Cu") (net 6) (tstamp 6bce46f3-64dd-4e14-b1fe-74e2fadbb79c))
(segment (start 169.9 96.400631) (end 169.9 99.6) (width 0.3) (layer "B.Cu") (net 6) (tstamp 7a46bad1-9ae1-4a8b-9281-f2dc0a441680))
(segment (start 169.9 99.6) (end 168.910224 100.589776) (width 0.3) (layer "B.Cu") (net 6) (tstamp 8de90300-8d45-4989-8396-83dbf0fec8e9))
(segment (start 176.6 102.3) (end 174.440923 100.140923) (width 0.3) (layer "F.Cu") (net 8) (tstamp 1ce32dd6-396a-44d2-91fa-54c78b34415f))
(segment (start 170.5 94.6) (end 170.411792 94.511792) (width 0.3) (layer "F.Cu") (net 8) (tstamp 1d3a49fd-0655-4d39-9520-f88f9faa89c0))
(segment (start 173 94.6) (end 170.5 94.6) (width 0.3) (layer "F.Cu") (net 8) (tstamp 222cb9e5-d485-4ed7-8862-14fd378a5468))
(segment (start 169.2 93.3) (end 170.411792 94.511792) (width 0.3) (layer "F.Cu") (net 8) (tstamp 263006fe-e365-4b85-9207-5736947326f7))
(segment (start 172.3242 114.9742) (end 171.3114 114.9742) (width 0.3) (layer "F.Cu") (net 8) (tstamp 3717043c-e4ac-4b6a-b771-7a4798f42d67))
(segment (start 166.9 93.3) (end 169.2 93.3) (width 0.3) (layer "F.Cu") (net 8) (tstamp 44125e64-1984-45f9-a0a5-c5fc01a987be))
(segment (start 172.95 115.6) (end 172.3242 114.9742) (width 0.3) (layer "F.Cu") (net 8) (tstamp 6341d329-1133-4de5-88e5-acbe452e875d))
(segment (start 176.6 102.7) (end 176.6 102.3) (width 0.3) (layer "F.Cu") (net 8) (tstamp 656bd5ca-893d-4b05-ae27-eaa10ca5f800))
(segment (start 171.661792 100.957092) (end 171.799548 101.094848) (width 0.3) (layer "F.Cu") (net 8) (tstamp 93e173e4-f181-490d-9852-890df9e61bea))
(segment (start 164.7 95.5) (end 166.9 93.3) (width 0.3) (layer "F.Cu") (net 8) (tstamp a6f58221-48bc-4740-954c-eb6c176edd26))
(segment (start 171.661792 99.56) (end 171.661792 100.957092) (width 0.3) (layer "F.Cu") (net 8) (tstamp bbbf30b0-a5cb-404f-ad0c-ab66786faccb))
(segment (start 170.411792 94.511792) (end 170.411792 97.86) (width 0.3) (layer "F.Cu") (net 8) (tstamp db005573-93e9-4a1c-99f6-c70d0dbb41c3))
(segment (start 171.3114 114.9742) (end 170.3324 113.9952) (width 0.3) (layer "F.Cu") (net 8) (tstamp e31202d6-adbe-45b7-9360-c97c449d3c48))
(via (at 174.440923 100.140923) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp 24d75b98-dbed-4c74-a2f3-fe7d69be2b58))
(via (at 170.3324 113.9952) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp ae2cc625-1b00-48c6-9303-2a3fcefef3c9))
(via (at 171.799548 101.094848) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp bd5e3acb-1985-4934-bcc8-207708318fbd))
(via (at 173 94.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp f90023b5-38c2-4b6c-86eb-74c58365b136))
(via (at 176.6 102.7) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp fd34ae07-5c27-4c9a-98c5-e56dfc986864))
(segment (start 167.64 111.154494) (end 170.3324 113.846894) (width 0.3) (layer "B.Cu") (net 8) (tstamp 07a05271-8f50-4c86-b877-30ac67e5b835))
(segment (start 175.711 103.589) (end 173.476799 103.589) (width 0.3) (layer "B.Cu") (net 8) (tstamp 117e4c7a-b4e9-48d7-80f2-1eaca6922ab3))
(segment (start 174.440923 100.140923) (end 173 98.7) (width 0.3) (layer "B.Cu") (net 8) (tstamp 13881ffc-8692-4ce4-8454-b93ec86c53fc))
(segment (start 174.440923 100.140923) (end 173.486998 101.094848) (width 0.25) (layer "B.Cu") (net 8) (tstamp 3da1d08a-650f-4cff-9acd-68eaeb3a3598))
(segment (start 173.486998 101.094848) (end 171.799548 101.094848) (width 0.25) (layer "B.Cu") (net 8) (tstamp 51083f49-11cd-4e05-96ce-ab1cb75fb1fc))
(segment (start 167.64 106.4006) (end 167.64 111.154494) (width 0.3) (layer "B.Cu") (net 8) (tstamp 5290af01-7213-46ea-b030-fdd3b8fb0aa9))
(segment (start 173 98.7) (end 173 94.6) (width 0.3) (layer "B.Cu") (net 8) (tstamp 5466ec82-9708-41e1-95d3-dd5d8b547ab5))
(segment (start 176.6 102.7) (end 175.711 103.589) (width 0.3) (layer "B.Cu") (net 8) (tstamp 8ef82b9e-a91f-4a9d-86bb-031ac03735b1))
(segment (start 173.476799 103.589) (end 172.882999 104.1828) (width 0.3) (layer "B.Cu") (net 8) (tstamp b3ba3a6d-19cd-49c6-9134-6a524edde4c6))
(segment (start 172.882999 104.1828) (end 169.8578 104.1828) (width 0.3) (layer "B.Cu") (net 8) (tstamp c44ca457-e032-4c9c-88e7-0ec92e061973))
(segment (start 170.3324 113.846894) (end 170.3324 113.9952) (width 0.3) (layer "B.Cu") (net 8) (tstamp c5c0a0b1-c3f4-4f28-abd5-efc8d2501e05))
(segment (start 169.8578 104.1828) (end 167.64 106.4006) (width 0.3) (layer "B.Cu") (net 8) (tstamp f2276a1a-a914-41d9-ae4d-6fa334291fe3))
(segment (start 167.3686 118.7492) (end 167.3686 117.7464) (width 0.3) (layer "F.Cu") (net 10) (tstamp 24f769cb-e13d-4f4c-8f5e-30db26f6e9f4))
(segment (start 166.2 109.85) (end 166.2 110.4216) (width 0.3) (layer "F.Cu") (net 10) (tstamp 2cc991b4-de76-495a-bb0c-638f02f52b44))
(segment (start 167.9448 117.1702) (end 167.9448 112.1664) (width 0.3) (layer "F.Cu") (net 10) (tstamp 3001cc32-ce0b-49a4-a890-c1508d2f9cef))
(segment (start 167.9448 112.1664) (end 166.2 110.4216) (width 0.3) (layer "F.Cu") (net 10) (tstamp 4625735f-f8b0-4db5-9bbb-73f99cd13700))
(segment (start 167.3686 117.7464) (end 167.9448 117.1702) (width 0.3) (layer "F.Cu") (net 10) (tstamp e3595d75-74a5-416d-91a9-f174b06f03a9))
(segment (start 168.440706 111.9552) (end 168.4448 111.9552) (width 0.3) (layer "F.Cu") (net 11) (tstamp 095269b9-87c3-4c94-b5ad-8f65303a4c31))
(segment (start 168.3686 118.7492) (end 168.4448 118.673) (width 0.3) (layer "F.Cu") (net 11) (tstamp 1397fdf4-3403-427b-844e-dad7dae44cae))
(segment (start 168.3686 118.7878) (end 168.4274 118.8466) (width 0.3) (layer "F.Cu") (net 11) (tstamp 21f51873-c2c7-4876-a9e9-3a9fcd7c08a1))
(segment (start 167.280595 106.95) (end 167.637953 107.307358) (width 0.3) (layer "F.Cu") (net 11) (tstamp 4504f19e-19d5-4a92-936e-799f997ce8e2))
(segment (start 166.7 106.95) (end 167.280595 106.95) (width 0.3) (layer "F.Cu") (net 11) (tstamp 719bad90-93aa-4739-bf07-1453d8e2a98e))
(segment (start 168.4448 118.673) (end 168.4448 111.9552) (width 0.3) (layer "F.Cu") (net 11) (tstamp a82a8387-453e-4630-8bc3-b33fc9ae410b))
(segment (start 167.637953 107.307358) (end 167.637953 111.152447) (width 0.3) (layer "F.Cu") (net 11) (tstamp a8baf291-1a49-491e-98c5-0da63a0df375))
(segment (start 168.3686 118.7492) (end 168.3686 118.7878) (width 0.3) (layer "F.Cu") (net 11) (tstamp b518c3b7-e3b8-4357-a781-ea6bab3f6d47))
(segment (start 167.637953 111.152447) (end 168.440706 111.9552) (width 0.3) (layer "F.Cu") (net 11) (tstamp ff0390cb-51ca-4a67-89ea-66b12b490a23))
(segment (start 174.85 115.180393) (end 174.85 115.6) (width 0.3) (layer "F.Cu") (net 12) (tstamp 172e96b2-8739-432d-88be-8fc54f9059c4))
(segment (start 172.6875 114.5875) (end 174.257107 114.5875) (width 0.3) (layer "F.Cu") (net 12) (tstamp 59f1d480-9fcc-4fc5-82b2-866873e13734))
(segment (start 174.85 115.6) (end 174.85 114.8625) (width 0.3) (layer "F.Cu") (net 12) (tstamp a4af60c7-9901-4e2e-9e08-37cf0d4521c1))
(segment (start 174.85 114.8625) (end 176.3 113.4125) (width 0.3) (layer "F.Cu") (net 12) (tstamp a4b461bf-658a-41fd-9ff8-93511c2a578e))
(segment (start 174.85 115.6) (end 174.85 117.275) (width 0.3) (layer "F.Cu") (net 12) (tstamp b6366792-ba96-45fd-92df-40d17f6af4fa))
(segment (start 171.5 113.4) (end 172.6875 114.5875) (width 0.3) (layer "F.Cu") (net 12) (tstamp b7fe5843-ceff-454d-a67d-bda3bff26973))
(segment (start 174.85 117.275) (end 174.825 117.3) (width 0.3) (layer "F.Cu") (net 12) (tstamp e8be0241-f08b-4698-8e3e-97609e5445c4))
(segment (start 174.257107 114.5875) (end 174.85 115.180393) (width 0.3) (layer "F.Cu") (net 12) (tstamp e934b065-6dad-4789-84c3-ccdfe57b1aa2))
(segment (start 172.413632 110.466168) (end 172.2374 110.6424) (width 0.3) (layer "F.Cu") (net 13) (tstamp 067af0a4-27b3-4cce-81d6-64e4045296a8))
(segment (start 173.9 113.5) (end 174.675 113.5) (width 0.3) (layer "F.Cu") (net 13) (tstamp 16328762-7aa7-4c24-941c-5a43e4e34f99))
(segment (start 174.8 111.6) (end 173.666168 110.466168) (width 0.3) (layer "F.Cu") (net 13) (tstamp 41b7d035-5f23-40d8-8347-4b1462b609cd))
(segment (start 174.85 111.65) (end 174.8 111.6) (width 0.3) (layer "F.Cu") (net 13) (tstamp 434181e7-fd2c-407b-8106-75519f495c59))
(segment (start 174.675 113.5) (end 174.85 113.325) (width 0.3) (layer "F.Cu") (net 13) (tstamp 61e31db1-4c14-4fef-aafd-0831052de693))
(segment (start 174.85 113.325) (end 174.85 111.65) (width 0.3) (layer "F.Cu") (net 13) (tstamp 7f609dfa-1b43-4d01-9703-86ab03a8dca8))
(segment (start 164.7 109.85) (end 164.7 112.249) (width 0.3) (layer "F.Cu") (net 13) (tstamp 8f346259-22f7-4e74-ae86-ced777bc58ee))
(segment (start 173.666168 110.466168) (end 172.413632 110.466168) (width 0.3) (layer "F.Cu") (net 13) (tstamp 979c17d4-2d78-45de-811c-892ec367f970))
(segment (start 164.7 112.249) (end 165.0492 112.5982) (width 0.3) (layer "F.Cu") (net 13) (tstamp d26eb69a-05f3-48ce-9eae-6d86c478650b))
(segment (start 174.8 111.6) (end 176.2875 111.6) (width 0.3) (layer "F.Cu") (net 13) (tstamp d76b5053-f118-4cc1-9418-4a11f63f4974))
(segment (start 176.2875 111.6) (end 176.3 111.5875) (width 0.3) (layer "F.Cu") (net 13) (tstamp d78bda63-221b-493e-afbb-9303dabaae14))
(via (at 165.0492 112.5982) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp 62c443bc-2240-4967-bdbc-e9c1e637b246))
(via (at 172.2374 110.6424) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp 7e796cbc-b33f-45d1-9f2e-ac4fe8a74283))
(via (at 173.9 113.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp 959fb1f8-dde0-4a7a-9285-cab54ec3750e))
(segment (start 171.521832 111.357968) (end 171.521832 113.866429) (width 0.3) (layer "B.Cu") (net 13) (tstamp 0a1b9a18-3609-4141-b934-f59f97a72fec))
(segment (start 165.0492 112.5982) (end 166.232277 113.781277) (width 0.3) (layer "B.Cu") (net 13) (tstamp 0cb56774-3b87-453d-adea-b67f5686015b))
(segment (start 172.2374 110.6424) (end 171.521832 111.357968) (width 0.3) (layer "B.Cu") (net 13) (tstamp 0f13e275-c377-4ae7-89c5-0359114a64fe))
(segment (start 166.232277 113.781277) (end 168.041523 113.781277) (width 0.3) (layer "B.Cu") (net 13) (tstamp 33333fef-901c-42a0-8b21-706c8e8545a6))
(segment (start 170.643061 114.7452) (end 171.521832 113.866429) (width 0.3) (layer "B.Cu") (net 13) (tstamp 36447df7-64a0-4a9e-a5dc-225f41f20e59))
(segment (start 169.005446 114.7452) (end 170.643061 114.7452) (width 0.3) (layer "B.Cu") (net 13) (tstamp 98e480c9-242b-47df-b142-f548d7d05c5d))
(segment (start 168.041523 113.781277) (end 169.005446 114.7452) (width 0.3) (layer "B.Cu") (net 13) (tstamp c137a237-1c7d-443f-8c03-78ab9d1ad5dc))
(zone (net 4) (net_name "GND") (layer "F.Cu") (tstamp 5ced0cc6-300a-4002-ac68-04baf0c29c14) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 178.0032 104.4956)
(xy 169.926 105.1306)
(xy 169.418 110.0836)
(xy 178 110.109)
(xy 178.0032 119.9896)
(xy 164 119.9896)
(xy 164 90)
(xy 178 90)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 165.688638 113.347632)
(xy 165.700739 113.355409)
(xy 165.740482 113.384284)
(xy 165.74651 113.386968)
(xy 165.746512 113.386969)
(xy 165.908915 113.459275)
(xy 165.914946 113.46196)
(xy 165.989674 113.477844)
(xy 166.09529 113.500294)
(xy 166.095295 113.500294)
(xy 166.101747 113.501666)
(xy 166.292721 113.501666)
(xy 166.299173 113.500294)
(xy 166.299178 113.500294)
(xy 166.404794 113.477844)
(xy 166.479522 113.46196)
(xy 166.485553 113.459275)
(xy 166.647956 113.386969)
(xy 166.647958 113.386968)
(xy 166.653986 113.384284)
(xy 166.659324 113.380406)
(xy 166.659327 113.380404)
(xy 166.680081 113.365325)
(xy 166.746949 113.341467)
(xy 166.805389 113.352155)
(xy 166.906977 113.397385)
(xy 166.906985 113.397388)
(xy 166.913012 113.400071)
(xy 167.006413 113.419924)
(xy 167.093356 113.438405)
(xy 167.093361 113.438405)
(xy 167.099813 113.439777)
(xy 167.1603 113.439777)
(xy 167.228421 113.459779)
(xy 167.274914 113.513435)
(xy 167.2863 113.565777)
(xy 167.2863 116.84525)
(xy 167.266298 116.913371)
(xy 167.249395 116.934345)
(xy 166.960995 117.222745)
(xy 166.952215 117.230735)
(xy 166.952213 117.230737)
(xy 166.94552 117.234984)
(xy 166.940094 117.240762)
(xy 166.940093 117.240763)
(xy 166.896996 117.286657)
(xy 166.894241 117.289499)
(xy 166.873673 117.310067)
(xy 166.870956 117.31357)
(xy 166.863248 117.322595)
(xy 166.831628 117.356267)
(xy 166.827807 117.363218)
(xy 166.827806 117.363219)
(xy 166.821297 117.375058)
(xy 166.810443 117.391582)
(xy 166.802157 117.402265)
(xy 166.797296 117.408532)
(xy 166.794149 117.415804)
(xy 166.791794 117.419786)
(xy 166.739899 117.468237)
(xy 166.670048 117.480941)
(xy 166.64819 117.476641)
(xy 166.639997 117.474261)
(xy 166.625895 117.474301)
(xy 166.6226 117.481571)
(xy 166.6226 117.80663)
(xy 166.612485 117.855475)
(xy 166.609455 117.860599)
(xy 166.607245 117.868207)
(xy 166.607243 117.868211)
(xy 166.583882 117.948622)
(xy 166.563038 118.020369)
(xy 166.562534 118.026774)
(xy 166.562533 118.026779)
(xy 166.560293 118.055242)
(xy 166.5601 118.057698)
(xy 166.5601 118.8772)
(xy 166.540098 118.945321)
(xy 166.486442 118.991814)
(xy 166.4341 119.0032)
(xy 165.578716 119.0032)
(xy 165.563477 119.007675)
(xy 165.562272 119.009065)
(xy 165.560601 119.016748)
(xy 165.560601 119.3655)
(xy 165.540599 119.433621)
(xy 165.486943 119.480114)
(xy 165.434601 119.4915)
(xy 164.6345 119.4915)
(xy 164.566379 119.471498)
(xy 164.519886 119.417842)
(xy 164.5085 119.3655)
(xy 164.5085 117.755907)
(xy 164.528502 117.687786)