-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDouble Stack.kicad_pcb
9932 lines (9884 loc) · 404 KB
/
Double Stack.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Double Stack")
(date "2019-11-03")
(rev "r01")
(company "Nuclear Lighthouse Studios")
(comment 1 "CC BY-NC-SA")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "Black"))
(layer "F.Mask" (type "Top Solder Mask") (color "White") (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") (color "White") (thickness 0.01))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "Black"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(grid_origin 115.57 62.865)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+9V")
(net 3 "Input")
(net 4 "Output")
(net 5 "+9VA")
(net 6 "Net-(C1-Pad1)")
(net 7 "Net-(C2-Pad1)")
(net 8 "Net-(C3-Pad1)")
(net 9 "Net-(C4-Pad1)")
(net 10 "BuffOut")
(net 11 "Net-(C5-Pad1)")
(net 12 "Net-(C6-Pad1)")
(net 13 "Net-(C7-Pad1)")
(net 14 "LOut")
(net 15 "Net-(C8-Pad1)")
(net 16 "Net-(C9-Pad1)")
(net 17 "Net-(C10-Pad2)")
(net 18 "Net-(C10-Pad1)")
(net 19 "unconnected-(J1-Pad2)")
(net 20 "Net-(Q4-Pad2)")
(net 21 "Net-(C4-Pad2)")
(net 22 "Net-(C7-Pad2)")
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5A19A430) (tstamp 00000000-0000-0000-0000-00005bfc548b)
(at 121.92 103.505 -90)
(descr "Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x06 2.54mm single row")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2b8a4c")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.77 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18948082-4978-47ba-bec3-498e52e0e3d9)
)
(fp_text value "Conn_01x06_Male" (at 0 15.47 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6eec54b4-b45b-408a-9e9d-53d5c2eaf83f)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4a0a896f-77e2-4d0d-8372-7d634db75b34)
)
(fp_line (start 1.33 -1.33) (end 1.33 0) (layer "F.SilkS") (width 0.12) (tstamp 190b07b0-35e4-4017-ba71-bfb48624776a))
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 3334dad3-1a83-43e4-91f4-3b93b1296223))
(fp_line (start 0 -1.33) (end 1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 4252d519-95b9-4695-a6a5-8358dc71fb18))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 4fc3284a-7f48-4171-8c5e-2f0ee9da06e6))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp b4a8d7f6-3e82-4b65-87a2-dbb014b55aa0))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp bb1ebaa3-1236-4966-aacd-40df1c249d43))
(fp_line (start -1.8 14.45) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 130302a7-5b27-4c26-8420-f71efac638bf))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 148fa661-ee2b-4b27-b41e-d0eb17c10853))
(fp_line (start 1.75 14.45) (end -1.8 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 3eda7066-b6ad-4020-b4f5-47993b9bd5aa))
(fp_line (start 1.75 -1.8) (end 1.75 14.45) (layer "F.CrtYd") (width 0.05) (tstamp 997fb89a-fc52-4905-bc30-46c62c7109b4))
(fp_line (start 1.27 -0.635) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 31faf8a9-6a7c-417a-a1a0-a1c3e3d8cf97))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 56b40aee-ab52-46c3-aa95-96d9c1ae3f1d))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 7369a910-b99e-4ff3-b798-7f7f0e8cc42d))
(fp_line (start -1.27 13.97) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7e174ebd-d5c2-48ce-bc6a-d087c348d673))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 882e327b-980c-49ee-88cd-8a1294da8794))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+9VA") (pinfunction "Pin_1") (pintype "passive") (tstamp 40ec9027-8ce9-45b3-b716-29b79b3ec4b1))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "unconnected-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp abcf19e8-4141-434b-be45-46d2b8dd9a9e))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Output") (pinfunction "Pin_3") (pintype "passive") (tstamp 20f6cc14-797e-4b22-8f61-c7ea01768e96))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Input") (pinfunction "Pin_4") (pintype "passive") (tstamp bb357ec4-8671-42a1-b0e4-31c0773e7c18))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "+9V") (pinfunction "Pin_5") (pintype "passive") (tstamp 5ac06cc3-35f1-45c4-8f01-6378f85f7944))
(pad "6" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp e89a9d00-9610-42ec-abb0-744e31b89c50))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a8189)
(at 139.7 56.515)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06bd36f5-8276-492c-8026-c19414b18a00)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e2b1c88-bf8a-48c9-9229-5042cc727d5f)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 080df44e-c051-4886-917b-242e58ea7334)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 7cf5aac3-d31b-4bd1-b87c-c61ee5801d0b))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fc998bef-8a51-482a-ad60-67f88d7ad107))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 32b4bb7e-11e8-430d-955d-3519fa0bfe72))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81b9)
(at 91.44 56.515)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25da572f-03a8-4393-9e27-4043a11e0c41)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3fc43d8-eab3-4199-a48e-9c26f891e967)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a823cb9-3b2e-4458-b4b1-9e1994cf89aa)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp bf92d3ba-bda3-4f0c-b1b1-ace3c32037c9))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 0e6c750f-bdb3-4d7d-914f-e490ea02a9cd))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 2b2b8bd8-4566-44b3-8165-cff215b78637))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81eb)
(at 140.335 103.505)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a12a268a-92fb-4a41-884b-a8f273f11ccd)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c44a0ff9-e34d-47ac-beea-2ba615ebbdcf)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3283dd4a-2e5f-47a9-816f-4c28acff9ad5)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 17833726-395d-4dd8-a93f-507ee717001a))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp fd7eb0b4-0937-4247-a0f8-883678593722))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 532c1a95-4ce3-46b3-8fd1-1e19b1008806))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81f9)
(at 90.805 103.505)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b7f7a70-1077-47fb-89ad-5e974f2b43ef)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f040b37-f825-4959-a101-d605d7787efb)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9606c5e4-8507-4184-a470-33f6361c5a73)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 7b68ba28-b82a-448f-8512-48a98c2f2c08))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b0f71a24-8660-473c-a59b-04d40df09a5e))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 4d391225-8e29-4fa3-acb6-aceaa88036ef))
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d324438)
(at 92.075 91.52 -90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d24e9d1")
(attr through_hole)
(fp_text reference "C1" (at 2.5 -2.413 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 13bc9520-37a4-48cc-ac29-c126d3e840f7)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbaabaaf-a0a5-4ed2-b633-b9d7a3c63422)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1a1df4a-756e-426a-9ed2-b4f224b840ad)
)
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 4979238c-7e53-458c-a4df-ce39988d0bf4))
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 7791b4dc-cc35-41e0-b9ae-bd0ce0f9e059))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 93023b5c-2101-4199-84e1-1fe45f5ee92f))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp ae000486-7a04-4dd7-96e5-b3f183adb667))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 85fc1b26-f4fb-4776-9a43-3b9e91b2725c))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c9170051-cbee-49e9-9b5c-6487f70daa15))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e6e075bb-d3b6-455f-a6c3-e664ac5b7d6c))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp fb2c583b-1175-4aad-ac56-765c99c2de30))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 09eda6b9-f12b-4c76-8a1c-20beea818ea0))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 432b361e-a690-48b5-96c5-1afbde2a0588))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp a048c842-6aee-48f1-b901-33cadc9c7b9d))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp ca47c283-d01f-4f50-879e-53df854746a9))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 300c98b0-3dae-4d03-a45d-762d6d878fde))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Input") (pintype "passive") (tstamp 1da5d78b-ec40-472f-9ca3-a2b1c9bd8457))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d32444b)
(at 113.03 74.295)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2657d7")
(attr through_hole)
(fp_text reference "C2" (at 7.112 0.127 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c83f8cd-12f1-4817-afd9-e2ce605d91f6)
)
(fp_text value "470n" (at 2.5 3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd1186f4-850f-4027-a756-a9f2a9bd28f4)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c381f6d-835d-42a1-a094-8cbf8d320092)
)
(fp_line (start -1.22 -1.87) (end 6.22 -1.87) (layer "F.SilkS") (width 0.12) (tstamp 16f32dae-6945-471b-81b2-e057d38aa9c3))
(fp_line (start 6.22 -1.87) (end 6.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 8542df61-5d44-4e07-8cc9-a22f1b56bca4))
(fp_line (start -1.22 -1.87) (end -1.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp bcc68385-2984-46da-a8a5-79eccede0330))
(fp_line (start -1.22 1.87) (end 6.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp c4c1785a-f5ff-43bc-bd3a-0fd5d17650db))
(fp_line (start -1.35 -2) (end -1.35 2) (layer "F.CrtYd") (width 0.05) (tstamp 0db59d11-6003-4923-8293-eb73218bd44e))
(fp_line (start -1.35 2) (end 6.35 2) (layer "F.CrtYd") (width 0.05) (tstamp 618a2c55-038e-4751-9b33-2d7a5ae74915))
(fp_line (start 6.35 -2) (end -1.35 -2) (layer "F.CrtYd") (width 0.05) (tstamp 67e2daeb-c480-4795-941e-0c1d8975b394))
(fp_line (start 6.35 2) (end 6.35 -2) (layer "F.CrtYd") (width 0.05) (tstamp 6d20c5a6-27dc-4442-8769-a29334c49313))
(fp_line (start 6.1 -1.75) (end -1.1 -1.75) (layer "F.Fab") (width 0.1) (tstamp 7843cb8b-21f1-43b3-846e-36ba32ac4806))
(fp_line (start 6.1 1.75) (end 6.1 -1.75) (layer "F.Fab") (width 0.1) (tstamp b3f3ea4e-fa36-4833-be82-f1645c284919))
(fp_line (start -1.1 1.75) (end 6.1 1.75) (layer "F.Fab") (width 0.1) (tstamp ed474bd7-7eee-4e3a-b9c7-31e3ac8edf78))
(fp_line (start -1.1 -1.75) (end -1.1 1.75) (layer "F.Fab") (width 0.1) (tstamp fe03a53f-f770-4780-8dbc-b09c7c845fa7))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad1)") (pintype "passive") (tstamp 698175d9-4581-45eb-93f1-68d9eee51d73))
(pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 2ee3716a-652f-4846-a1f5-70be4b176e81))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d32445e)
(at 113.03 68.58)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2672d1")
(attr through_hole)
(fp_text reference "C3" (at -2.032 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e5742d1-fd4f-46ed-9a2b-67c8876ce701)
)
(fp_text value "1µ" (at 2.5 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abab9d45-b582-4916-9ac5-59908b1e60ee)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cdbfeb78-e0ef-46fc-bb8a-5a4495d7cf87)
)
(fp_line (start -1.22 -2.37) (end -1.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 894ac9ef-451b-4155-bf83-aa45768de943))
(fp_line (start 6.22 -2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 94a17e28-2884-48a3-96d0-c6b6684a9509))
(fp_line (start -1.22 -2.37) (end 6.22 -2.37) (layer "F.SilkS") (width 0.12) (tstamp a06698c9-01ae-4b89-9009-900feec714ff))
(fp_line (start -1.22 2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp a269caf3-085b-455a-9e77-062c1b57d0ef))
(fp_line (start -1.35 2.5) (end 6.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 038ca6ef-9a49-4552-84d4-53656ef13b18))
(fp_line (start 6.35 -2.5) (end -1.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 5660b5bc-3187-45cc-a4aa-d18c658f6dbe))
(fp_line (start -1.35 -2.5) (end -1.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 77baabd2-42d0-40fe-8dbf-c86e7ed43354))
(fp_line (start 6.35 2.5) (end 6.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 9e7f1495-b041-4a63-a4f5-4f79497237e0))
(fp_line (start 6.1 -2.25) (end -1.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 2c3f4d62-1b38-4e70-bca5-917259ac0cd3))
(fp_line (start -1.1 -2.25) (end -1.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 3fc335a2-f985-4893-8dd4-d798e96795bd))
(fp_line (start 6.1 2.25) (end 6.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 6ba009e4-9bc6-4212-a1b3-dde556a78325))
(fp_line (start -1.1 2.25) (end 6.1 2.25) (layer "F.Fab") (width 0.1) (tstamp d3601fac-82eb-4185-9635-26ac78afbfd0))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C3-Pad1)") (pintype "passive") (tstamp b2c4ddee-475f-4738-af60-29f1d04df490))
(pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad1)") (pintype "passive") (tstamp df564ab6-10c6-406b-9c38-b349d1c3d873))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d324471)
(at 92.075 76.28 -90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d332c1d")
(attr through_hole)
(fp_text reference "C4" (at 2.5 -2.667 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ab8c08bd-3d82-4be8-bf10-5462dfe67f13)
)
(fp_text value "470n" (at 2.5 3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffa1b705-be54-42bd-bbb3-f30fdf2b779a)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06d57b67-d491-407d-837d-f702f3852ee6)
)
(fp_line (start 6.22 -1.87) (end 6.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 00555c4b-05c0-4833-ad5c-de9a307675c3))
(fp_line (start -1.22 -1.87) (end -1.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 4bab14cd-e32a-4a82-98db-8a749d616a3f))
(fp_line (start -1.22 -1.87) (end 6.22 -1.87) (layer "F.SilkS") (width 0.12) (tstamp 87aa5d36-1dc4-40f1-a1bc-3fde29feb3ea))
(fp_line (start -1.22 1.87) (end 6.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 9c51ff4e-2fb0-48fe-ab43-d2d465f09357))
(fp_line (start -1.35 2) (end 6.35 2) (layer "F.CrtYd") (width 0.05) (tstamp 38f4bc6a-412c-47d7-8ec6-4f213a0669bd))
(fp_line (start 6.35 2) (end 6.35 -2) (layer "F.CrtYd") (width 0.05) (tstamp 8894f4dc-708a-4209-9652-04b2885c86e6))
(fp_line (start 6.35 -2) (end -1.35 -2) (layer "F.CrtYd") (width 0.05) (tstamp e3b428c9-d624-421c-9305-0966f8b9897d))
(fp_line (start -1.35 -2) (end -1.35 2) (layer "F.CrtYd") (width 0.05) (tstamp fa3bc7be-06a7-4585-b32f-69ba3f275f78))
(fp_line (start -1.1 -1.75) (end -1.1 1.75) (layer "F.Fab") (width 0.1) (tstamp 55023823-d217-40e4-958e-c37bb5aaa348))
(fp_line (start -1.1 1.75) (end 6.1 1.75) (layer "F.Fab") (width 0.1) (tstamp 81e61cb5-2469-4c5e-873e-4245242b4b8c))
(fp_line (start 6.1 1.75) (end 6.1 -1.75) (layer "F.Fab") (width 0.1) (tstamp c7926a90-c62a-489a-97a1-85dbd845d0ae))
(fp_line (start 6.1 -1.75) (end -1.1 -1.75) (layer "F.Fab") (width 0.1) (tstamp d3e7541e-671e-4009-9cc3-70b413fe79a8))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C4-Pad1)") (pintype "passive") (tstamp b17b71a2-f5b2-48cd-bbb2-c6f24ac68b0a))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(C4-Pad2)") (pintype "passive") (tstamp 24c48127-dc84-4fc2-a40f-beee9ffabaf4))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d324497)
(at 118.03 92.075 180)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d285844")
(attr through_hole)
(fp_text reference "C6" (at 7.032 -0.508 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fa65f88-8678-4bed-9378-7cabcd072d95)
)
(fp_text value "1µ" (at 2.5 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d203ffde-31c4-4bb9-bc22-df8b74bb5aa9)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6abf6add-d904-4a98-94d8-082cb1822746)
)
(fp_line (start -1.22 -2.37) (end -1.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 7e770b14-7cdc-48c5-bfe6-9b7101e85d14))
(fp_line (start 6.22 -2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 867c3e0e-43ce-449f-8cba-8f5d3a1fb691))
(fp_line (start -1.22 2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp b47fb62b-079c-40ed-ae6e-e7e02531b0c4))
(fp_line (start -1.22 -2.37) (end 6.22 -2.37) (layer "F.SilkS") (width 0.12) (tstamp d6b08a10-8642-4193-84c5-89dd6279d0d9))
(fp_line (start 6.35 2.5) (end 6.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 153bcebf-0670-49b4-84be-0d25661748e2))
(fp_line (start 6.35 -2.5) (end -1.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 165a6d3a-4ec1-4bbd-8982-24bab0cc388b))
(fp_line (start -1.35 2.5) (end 6.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 1a8cb30f-069d-4de2-b423-c986f80bd528))
(fp_line (start -1.35 -2.5) (end -1.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp c2641b46-b5a9-4648-b715-a4ee6db962a6))
(fp_line (start -1.1 2.25) (end 6.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 042472a2-a67d-4ae8-96b6-c0c94b38e9a6))
(fp_line (start -1.1 -2.25) (end -1.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 5121dcef-4941-408b-8efc-f1de623c40d5))
(fp_line (start 6.1 -2.25) (end -1.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp a3391155-b162-48ab-8023-0996342eb68e))
(fp_line (start 6.1 2.25) (end 6.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp fb46c656-d80c-434a-8c30-e18160a79efc))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C6-Pad1)") (pintype "passive") (tstamp 9d837b36-bece-43af-9282-e5c0850acd46))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C5-Pad1)") (pintype "passive") (tstamp 0f87c77e-084f-4f3f-89d6-b5dbef591392))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d3244aa)
(at 139.065 91.52 -90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d31f0d3")
(attr through_hole)
(fp_text reference "C7" (at 2.5 2.159 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7ba5988-2a14-4b57-af25-3552df2d4621)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df00977f-8585-441c-901f-04f29af14585)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17781b84-e6f5-403c-9dd7-5e6d9b7f7059)
)
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 707ffec4-27d5-4fef-a207-206f308d7b65))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp cdde607f-16c1-4c65-8150-60fb0e48fb50))
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp f40b6d22-a2c3-4b1e-b9e2-7fb066df1c61))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp fd2cf955-ad42-43f3-9996-9616d5d18489))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 074f988b-e849-476b-ae6f-cc51e9fa2bfa))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0a64c060-2a7f-4f90-9713-96c9649ff2fb))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4f181ecf-45ff-452c-a6c1-8912c8647582))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp bc108216-0e69-4902-8537-d0f17d0c334c))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 3a49590f-f8b5-4e2d-95aa-ef1691e18be9))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 55c5fb6f-62b2-4b95-aadc-e8b9baaa49fc))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7f460ae3-4dcf-4ba1-8993-0e27af383cf1))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp e252fc15-04ec-4824-a335-24b351be0336))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C7-Pad1)") (pintype "passive") (tstamp b42a4180-e786-4d9d-854c-566b876b3a9b))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "Net-(C7-Pad2)") (pintype "passive") (tstamp 2b8ace03-6ac3-447b-8a63-cc01af53006a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d3244d0)
(at 118.11 85.09 180)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d3251b6")
(attr through_hole)
(fp_text reference "C9" (at -2.032 0 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8836de5b-ae90-43fa-9055-74c450a27b43)
)
(fp_text value "1n" (at 2.5 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be005d5a-9d0f-43c2-bfc4-3b59f92eb3d9)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ffeb1ac9-ea30-4c5c-94c6-edbea9f100b4)
)
(fp_line (start 6.22 -2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 8744756a-5ab8-4b64-ba02-62ba845e225c))
(fp_line (start -1.22 2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 92fc181f-dd6f-4009-acbc-07d9a59a721c))
(fp_line (start -1.22 -2.37) (end -1.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp d464d775-5a49-418e-bd60-a6995141c423))
(fp_line (start -1.22 -2.37) (end 6.22 -2.37) (layer "F.SilkS") (width 0.12) (tstamp ee2085fe-da1b-4e7e-b8dd-27cf5ff32fb5))
(fp_line (start -1.35 -2.5) (end -1.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 1028ab8c-a14a-4a05-a41b-6495c2eb7d67))
(fp_line (start 6.35 -2.5) (end -1.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 213cd6f6-f114-41c5-a955-8aa9d4442631))
(fp_line (start 6.35 2.5) (end 6.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 2f80c28d-ac81-4696-a8db-1cf1f3d46f05))
(fp_line (start -1.35 2.5) (end 6.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 71099b6b-8120-4568-9126-b1c404796c2b))
(fp_line (start 6.1 -2.25) (end -1.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 1ffb5f95-5c72-498b-889d-d37630dcd855))
(fp_line (start 6.1 2.25) (end 6.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 2bf1698e-6180-4c8f-8070-b516b291da19))
(fp_line (start -1.1 -2.25) (end -1.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 98c0aae7-cd82-4ea3-9677-5e2cd45de14b))
(fp_line (start -1.1 2.25) (end 6.1 2.25) (layer "F.Fab") (width 0.1) (tstamp fa3f6188-e973-4ddb-a5e7-40bd8038d28a))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(C9-Pad1)") (pintype "passive") (tstamp 31503a2b-6bd1-485c-bbca-dad9bd90e570))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp af7ca181-5159-4f5b-b904-3be13668ef89))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d3244e3)
(at 139.065 76.28 -90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005bdda4a3")
(attr through_hole)
(fp_text reference "C10" (at 2.587 3.175 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0f000fd-133c-4799-af35-627810d53125)
)
(fp_text value "1µ" (at 2.5 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f86c8104-7ff6-454e-9164-e6ca1d06b3bc)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 974ea947-dced-4359-ac7a-b0a2eed0a549)
)
(fp_line (start -1.22 -2.37) (end -1.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 3465317d-c8a7-4cd9-9e33-94fcd038b3df))
(fp_line (start -1.22 -2.37) (end 6.22 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 6afc17b5-fe5f-4934-a9c1-8bfa8bc58630))
(fp_line (start 6.22 -2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 8e8becb1-53cc-48d2-93d3-d82aaa7eedb5))
(fp_line (start -1.22 2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp f484967f-bc5a-4a47-8c00-f35523f3e180))
(fp_line (start -1.35 -2.5) (end -1.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 035cc415-67b2-4411-b25b-e104baf1444f))
(fp_line (start -1.35 2.5) (end 6.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 17299a20-7a15-47f7-9912-6d0c76d35121))
(fp_line (start 6.35 -2.5) (end -1.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 9dd8f3b9-d52a-40f5-ad34-868d442ecbaa))
(fp_line (start 6.35 2.5) (end 6.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp cc8213db-8cd8-4e3f-a099-eaa3f5497e4f))
(fp_line (start 6.1 -2.25) (end -1.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 24d92549-5630-4c4f-98e1-e0b79be24153))
(fp_line (start -1.1 -2.25) (end -1.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 38b90169-9cad-41be-b282-853de5c38c69))
(fp_line (start 6.1 2.25) (end 6.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp aa8b1340-85e5-423e-8127-1e075422d774))
(fp_line (start -1.1 2.25) (end 6.1 2.25) (layer "F.Fab") (width 0.1) (tstamp e5c46782-ce22-499d-9c3d-77f0131379b2))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(C10-Pad1)") (pintype "passive") (tstamp 79e3fdb1-8cbb-4d27-a1af-74d06064ab87))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(C10-Pad2)") (pintype "passive") (tstamp ee95ee40-62b8-41d6-9f59-a8a6f9f132d9))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp 00000000-0000-0000-0000-00005d324505)
(at 97.155 76.835)
(descr "Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d258b7e")
(attr through_hole)
(fp_text reference "D2" (at 1.27 -2.032) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3c890d0b-f915-4c62-bd40-a163776b1490)
)
(fp_text value "1N4148" (at 1.27 3.215371) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60791852-977b-4617-b526-fb9c7c5641d5)
)
(fp_text user "A" (at 4.34 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp be2b0c66-57c8-44e8-8473-3b0ba25bcbc9)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.326371) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62330334-bb6d-4a35-945f-f7144921dff3)
)
(fp_text user "A" (at 4.34 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d3c2134a-3639-401a-b556-98a4c8906373)
)
(fp_line (start 1.326371 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 50facdef-3844-4a0d-91d2-d383fe0642a0))
(fp_circle (center 0 0) (end 1.326371 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp aaece7f1-cf9d-4cff-8394-b876a06d4dd1))
(fp_line (start 3.59 1.25) (end 3.59 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 02bb2aa8-6f4f-4952-8cc9-202ea4b48894))
(fp_line (start -1.25 1.25) (end 3.59 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1305f065-8ea7-48cf-b2b8-3da65a4dec22))
(fp_line (start 3.59 -1.25) (end -1.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 191f1ffe-f6de-4ffd-b909-2f8d772a032f))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 7a6e9ac2-e9f5-46c1-97fc-8a947945db0e))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 327eadb6-4b44-4cc7-8ac4-5331da6e09d4))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 6aca4671-103c-4537-b62c-d2f2c81b51be))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(C4-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 3548e7c7-c8f0-4cd8-8451-fee9c8c0f453))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C3-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 58b1dff5-065d-4035-99c4-c9738ca51b2d))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp 00000000-0000-0000-0000-00005d324516)
(at 131.445 92.075)
(descr "Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d285821")
(attr through_hole)
(fp_text reference "D3" (at 1.27 -2.032) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6ce195b-7132-4822-8031-a5163ad0be75)
)
(fp_text value "1N4148" (at 1.27 3.215371) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 09637da3-6412-4f99-b51e-bfd534eb0a16)
)
(fp_text user "A" (at 4.34 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea6bcce0-b07f-4e18-9453-a2cb87cc03d5)
)
(fp_text user "A" (at 4.34 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12528122-d182-48d3-9d89-195fe9b91a5c)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.326371) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c914ee4-f148-47a1-83bb-9465cdec4815)
)
(fp_line (start 1.326371 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp f49b4336-6f5e-4d82-b8c8-f1477ccb091d))
(fp_circle (center 0 0) (end 1.326371 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp ba01b6a1-8bca-431b-bf1d-ea34c7608e1e))
(fp_line (start -1.25 1.25) (end 3.59 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5dbf7071-eda1-4c6b-aba2-7852d0c5e2b7))
(fp_line (start 3.59 -1.25) (end -1.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 6eabd6b0-ad58-4ad3-8cb6-8c81871f89fa))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp d0e8b06d-950c-42f6-9c71-fa15f58185bf))
(fp_line (start 3.59 1.25) (end 3.59 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp d9a12a93-b720-45a7-8019-182cdcbbb2c7))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp baffc458-1bf8-4d4f-a5e5-852a562225ba))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp a3c46ee2-46e8-4d11-a91b-683ba05b8de6))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C6-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 7f4b714e-5110-471a-9fbb-66f34bba4280))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "Net-(C7-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 9a634215-ee2d-4693-9ed5-98914f51bbc1))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp 00000000-0000-0000-0000-00005d324527)
(at 133.985 95.885 180)
(descr "Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d28581b")
(attr through_hole)
(fp_text reference "D4" (at 1.27 -2.032) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0bac97ae-787e-4668-8c4a-9ed646a2b966)
)
(fp_text value "1N4148" (at 1.27 3.215371) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1aab6bb2-a409-456a-b18c-75aae93159a8)
)
(fp_text user "A" (at 4.34 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfd4800b-c1e3-483e-adef-9cf9370c9b81)
)
(fp_text user "A" (at 4.34 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b04dc094-b608-4a4b-b3cf-ed9fe5fc6a68)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.326371) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbfccfa5-4d32-4588-a870-425318923fab)
)
(fp_line (start 1.326371 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 1f130b73-0bfa-4af1-9fe8-9fc40f2d3572))
(fp_circle (center 0 0) (end 1.326371 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp ae90f815-705a-4352-a1e8-05085f41529f))
(fp_line (start 3.59 -1.25) (end -1.25 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1685d1cf-6ea1-4da1-aa2b-1bab27efc632))
(fp_line (start -1.25 -1.25) (end -1.25 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 3bf05581-b5bc-4449-9cd6-0c164d9903dd))
(fp_line (start 3.59 1.25) (end 3.59 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 932e19eb-4576-4f14-8a0e-675386fa564b))
(fp_line (start -1.25 1.25) (end 3.59 1.25) (layer "F.CrtYd") (width 0.05) (tstamp c621a036-11ce-44e8-8a2d-b39ad8d4643b))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 64aafb70-81a3-4e31-a8a2-711606cbf094))
(fp_circle (center 0 0) (end 1 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 8aa642e8-40b7-4ca1-9e28-4ae6312153ee))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "Net-(C7-Pad2)") (pinfunction "K") (pintype "passive") (tstamp 72be79fb-a06e-4e23-a443-c5f3f629341b))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C6-Pad1)") (pinfunction "A") (pintype "passive") (tstamp e0c07c32-4141-4108-8313-f0cd6873c6dd))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d3245aa)
(at 106.68 81.28 90)
(descr "TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d253e62")
(attr through_hole)
(fp_text reference "Q2" (at 2.55 -4.19 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp af726b1b-5c02-4eff-8574-58dad9443f62)
)
(fp_text value "BC547" (at 2.54 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp de47f764-dd00-44cb-93fe-866da18b98e8)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a476957-4027-4b34-bd8c-a251ea02f709)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 40472824-affc-451f-a817-6b345d2b2017))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp 0f4d07be-9205-4087-aea4-436c0c8b5afd))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 1634ac2b-9e0b-4a93-bf78-e16d384fe431))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 40e35b5c-6c7d-4fa7-b7e6-9f078e5272b3))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp e2593ecf-1a07-4c98-b838-77d577d214e5))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 56a41e11-ace4-4777-9bcd-03bbec838b87))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 8a309a26-e4db-48da-bbef-796783de95ce))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 8cc73c23-761c-4316-8602-d6b790ca49dd))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp f00d719b-fa31-4d36-b13d-7321250f7027))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp 39a48cfe-8398-4ebf-8897-c6533bfad4c0))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp 2ea93831-7f50-48ef-91f3-2dc095d51579))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 43089785-08c6-47ed-a8db-5349636e6981))
(pad "1" thru_hole rect (at 0 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(C4-Pad2)") (pinfunction "C") (pintype "passive") (tstamp 574a38fd-f9c5-498e-9ef5-e6cc8f49b11b))
(pad "2" thru_hole circle (at 2.54 -2.54 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C3-Pad1)") (pinfunction "B") (pintype "input") (tstamp 00e257f8-2d3a-4f81-8006-fda6f3724050))
(pad "3" thru_hole circle (at 5.08 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "E") (pintype "passive") (tstamp 701bec08-e528-4e4b-a58a-ce293810152b))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Wide.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d3245be)
(at 124.46 91.44 -90)
(descr "TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d285815")
(attr through_hole)
(fp_text reference "Q3" (at 2.55 -4.445 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5125efa7-17b7-48b4-9f3b-49224f874824)
)
(fp_text value "BC547" (at 2.54 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d0cd8fc-ffef-4b43-8386-4d7aaaeab387)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f7164b7-519d-4018-a78c-ff6336bc0a2e)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp bc9a0f58-52a0-4df7-a2d8-c29a44485a52))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp 1dca40f6-4c9f-498b-af0f-683833e83a89))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 24f919de-136a-4ea1-a51f-f827e74524d2))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 3afab01b-3bed-481f-a290-a41c1fb55d21))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp b489a052-a34b-4290-8f5f-f070b9f7304e))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 24b35e11-5ab9-4511-89dc-8adfedc57418))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp ae18a575-dafd-475f-8eac-b8902a8d5328))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp c7cde53e-c403-480b-aa38-4102e8918459))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp deef2125-1070-4364-8ab5-c52c7ead715c))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp e4a8a548-4b3b-492e-9032-0cae84344c2c))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 4ea97702-f9ad-4d21-ab8b-cf889573c3ef))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp 654b78bc-7914-4492-83c0-c98a567d27f7))
(pad "1" thru_hole rect (at 0 0 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "Net-(C7-Pad2)") (pinfunction "C") (pintype "passive") (tstamp ed86353f-e210-4afd-95b2-690a80c87e07))
(pad "2" thru_hole circle (at 2.54 -2.54 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C6-Pad1)") (pinfunction "B") (pintype "input") (tstamp 90152ed4-3473-4331-9400-ff5ffdc4b0de))
(pad "3" thru_hole circle (at 5.08 0 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "E") (pintype "passive") (tstamp 98ce57e9-98e0-4986-9f7b-e4aa03b84326))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Wide.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d3245e1)
(at 97.155 95.885)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d25024a")
(attr through_hole)
(fp_text reference "R1" (at 1.27 2.286) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29304614-c7dc-4881-a118-2ea713d0030c)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 25765093-b5f6-40c8-9909-354f15fede06)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03a5bb94-157f-4391-9a4b-b3baf40194bc)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp aa1989e8-dc50-4d6c-9ecc-8c18effeebcd))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 7453a05d-26b0-499d-92c7-f4d978db36e8))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 09aaf33b-c7b2-4e0c-bf10-7be27ce9a5f8))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3c6d465f-e09e-4131-a995-ad27630be06a))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 71fb9462-0931-4eb8-825c-4b056f72877e))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 74a46a3d-4e9f-4dd9-95c6-f2b17429d856))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 3573ff72-259e-4fd2-9d6a-f94ee4302157))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 8da1198f-386c-4491-bbc2-0fdf4205b7f4))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp ea9334fd-c243-4818-a3ea-5d105bed6139))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp cbd69189-693a-4d39-a64b-344ae078873d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d3245f0)
(at 99.695 92.075 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d250dbd")
(attr through_hole)
(fp_text reference "R2" (at 1.27 2.286) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d8576d8-8842-4493-bf4d-49c01184788a)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7817cbda-09fb-4a2c-87a3-86e70063a340)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c9e5028-e22a-4c47-988a-dd4e23ddcac1)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp e2ccb2f7-6f7c-4bb4-b701-44f245c9cfd7))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp e2fcd424-85fd-41ad-bbe6-3f478b57868f))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 28c978f9-68d2-4671-bb88-547e7d4b7051))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 41de82a8-f871-46d1-a66f-ee480455b7d9))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8d89bd9b-88ce-401e-973d-87638600634b))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 93941e2d-0be9-4dc9-9d9d-51dfefa728f7))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp fa1b026b-b806-4a7a-bf1d-7409e6df3d55))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 26fdc9bb-a9e6-4378-8f8e-c68adf0b9013))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 7ff6e622-e148-4fd3-b813-c2d50652e558))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp f1ea54d2-ea02-43a0-a481-962aedfbd34d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d3245ff)
(at 97.155 85.09 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d251e0a")
(attr through_hole)
(fp_text reference "R3" (at 1.27 2.159 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3a9a0cd-9ac8-4799-81d2-fea6858bcf25)
)
(fp_text value "10k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b61d422f-2dc8-4a43-9e10-43c0ea697fbd)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58d933e2-ed7e-4b6a-a19c-e25487d6d28f)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp ba7b2c16-eba4-4149-9ae3-06586f9b7a62))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 17ae8606-dd29-4e12-b4a5-7d6b6413a598))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 03abde74-419a-41f9-afe4-0597576f2f45))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2a5001a9-9a57-4005-9f24-ff678378cb7b))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3cb59cb3-9927-42d2-8b51-f62405096cc4))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 846c4dd7-b59d-4aeb-ac7b-2357adc16e96))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp f574b769-ee15-416b-9e3c-0f0ac87190b1))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 428f88ed-3ce2-45e6-9fcf-1cb25d78435a))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 288cc24d-c530-41b2-9240-274b3345e081))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "BuffOut") (pintype "passive") (tstamp 8223bd1b-db9a-4d1c-907d-62faa9603023))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d32460e)
(at 102.235 87.63 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Double Stack/Double Stack.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d26fa1d")
(attr through_hole)
(fp_text reference "R4" (at 1.27 -2.159 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71072624-4843-47a4-85b2-a88f3de7048d)
)
(fp_text value "4.7k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a66e7fde-53e9-4573-a2ac-af7cc16a7418)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86108682-b352-4ddf-a13c-6336bbf3591a)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 66152dee-de3c-439f-a758-fc3627c15243))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp bdca7b9c-bfc3-45cc-a301-b565e5be9c0e))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1679230b-23a1-4ce0-a704-87a9430f4ef5))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 96b9de9c-2892-4f6a-8c32-40418d4f93ea))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9be60466-6353-4ff9-891a-015e89772b1b))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e915465d-621c-4ed2-a522-370647a1b64c))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp cdbfbd62-1db2-4833-9009-c0ac9c1cea43))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 0487805d-e9d1-463f-87b3-bdfad8f83609))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "BuffOut") (pintype "passive") (tstamp 28f06804-dcb7-4e93-83a2-8625f3b612f4))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad1)") (pintype "passive") (tstamp 3d0996d6-be5f-41a8-bdd5-dffb21055a4a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d324686)