-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTriode Sun.kicad_pcb
8457 lines (8418 loc) · 337 KB
/
Triode Sun.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 "Triode Sun")
(date "2022-01-21")
(rev "${REVISION}")
(company "${COMPANY}")
(comment 1 "${LICENSE}")
)
(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 "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(grid_origin 115.57 76.835)
(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 "gerber/")
)
)
(property "CODE" "NFX003")
(property "COMPANY" "Nuclear Lighthouse Studios")
(property "DATE" "Jan 2022")
(property "LICENSE" "CC BY-NC-SA")
(property "REVISION" "r01")
(property "YEAR" "2022")
(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-Pad2)")
(net 8 "Net-(C2-Pad1)")
(net 9 "Net-(C3-Pad2)")
(net 10 "Net-(C3-Pad1)")
(net 11 "Net-(C4-Pad1)")
(net 12 "Net-(C5-Pad1)")
(net 13 "Net-(C6-Pad2)")
(net 14 "Net-(C6-Pad1)")
(net 15 "Net-(C5-Pad2)")
(net 16 "Net-(C4-Pad2)")
(net 17 "-9VA")
(net 18 "unconnected-(U1-Pad9)")
(footprint "NLS:BarrelJack_Horizontal_Short" (layer "F.Cu")
(tedit 5BE2B3F8) (tstamp 00000000-0000-0000-0000-00005bfad432)
(at 115.57 62.865 -90)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005be333ff")
(attr through_hole)
(fp_text reference "J2" (at -5.08 -5.715 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a40774c-614f-437e-9a8e-04afbf2e1aca)
)
(fp_text value "Barrel_Jack_Switch" (at -6.2 -5.5 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fb2a551-2498-4ae4-9ad0-8593c8213f68)
)
(fp_text user "${REFERENCE}" (at -3 -2.95 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb7381df-65e4-4514-9b42-5b3580f798a7)
)
(fp_line (start -5 4.6) (end -8 4.6) (layer "F.SilkS") (width 0.12) (tstamp 4f01eead-452f-4395-8ce8-4f888fb782f1))
(fp_line (start 0.9 4.6) (end -1 4.6) (layer "F.SilkS") (width 0.12) (tstamp 75992fb1-1fdd-4a9d-8c0f-9e1ab9b0c060))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp 91fd87a5-0daa-456f-a84b-8e49298182da))
(fp_line (start 0.9 -4.6) (end 0.9 -2) (layer "F.SilkS") (width 0.12) (tstamp 97ce9b14-e859-4945-b7d8-b21115c8f9d1))
(fp_line (start -8 -4.6) (end 0.9 -4.6) (layer "F.SilkS") (width 0.12) (tstamp 9cc699c9-f408-4f0f-877a-9f68063eb8e2))
(fp_line (start 0.9 1.9) (end 0.9 4.6) (layer "F.SilkS") (width 0.12) (tstamp ec6e1dc9-7c35-4beb-a2c2-826f34abab78))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp f169ae0a-6902-48b4-bcdf-339b676af67f))
(fp_line (start 1 -4.5) (end 1 -2) (layer "F.CrtYd") (width 0.05) (tstamp 0c98aa09-b925-4191-8398-6a9d4aa707fe))
(fp_line (start 1 -4.5) (end 1 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 2b9d25af-5acb-4c5f-94f4-b6e2f8f50146))
(fp_line (start 1 -4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 3069b417-1b5f-455f-abf7-ffecf57bd880))
(fp_line (start -14 4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 3613a3ec-aa2c-4b13-b06d-d6d7d1205910))
(fp_line (start -5 6.75) (end -5 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 3c65fc13-570a-4df0-8102-e8b2532bfd5a))
(fp_line (start 1 2) (end 1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 4b27a8b5-1e9b-47c2-a689-27cccd300744))
(fp_line (start 2 -2) (end 2 2) (layer "F.CrtYd") (width 0.05) (tstamp 6c7b24ab-e67c-491b-91d0-4fc47ca2395a))
(fp_line (start 2 2) (end 1 2) (layer "F.CrtYd") (width 0.05) (tstamp 77cbe108-1148-4120-979e-d6fab50d6147))
(fp_line (start -1 6.75) (end -5 6.75) (layer "F.CrtYd") (width 0.05) (tstamp a2fd9f70-4b5c-4660-acbc-6b6f9321ed81))
(fp_line (start 1 -2) (end 2 -2) (layer "F.CrtYd") (width 0.05) (tstamp c091d58e-138a-4102-b891-b3995ef88884))
(fp_line (start -5 4.75) (end -14 4.75) (layer "F.CrtYd") (width 0.05) (tstamp d332f420-db39-43a5-afc3-a4306e6927dc))
(fp_line (start 1 4.75) (end -1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp e2241094-fe0b-4c41-843f-b92970923243))
(fp_line (start -1 4.75) (end -1 6.75) (layer "F.CrtYd") (width 0.05) (tstamp e4717e58-74a2-44aa-8785-5c9bd6995e24))
(fp_line (start -13.7 4.5) (end 0.8 4.5) (layer "F.Fab") (width 0.1) (tstamp 284ef4d3-9ecb-4caf-a63c-f2fec88f6822))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp 2ff9c3ba-31bc-4630-96b1-d2652d2a559e))
(fp_line (start 0.8 4.5) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp 64492385-761f-4e91-87d1-31624608dff5))
(fp_line (start -10.2 -4.5) (end -10.2 4.5) (layer "F.Fab") (width 0.1) (tstamp 681098ce-bbcd-480b-a430-1f9b6c35e00d))
(fp_line (start -13.7 -4.5) (end -13.7 4.5) (layer "F.Fab") (width 0.1) (tstamp bab23587-be9c-4377-843c-c971c8b83c80))
(fp_line (start 0 -4.5) (end -13.7 -4.5) (layer "F.Fab") (width 0.1) (tstamp e356f8a7-6610-44d4-86b6-a7adddc6a690))
(pad "1" thru_hole rect locked (at 0 0 270) (size 3.5 3.5) (drill oval 1 3) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp e37579f7-67b1-4b44-952c-6cd15eedfb8c))
(pad "2" thru_hole roundrect locked (at -6 0 270) (size 3 3.5) (drill oval 1 3) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "+9V") (pintype "passive") (tstamp c2a411ff-ed17-4aa7-abb9-258d84ddbea8))
(pad "3" thru_hole roundrect locked (at -3 4.7 270) (size 3.5 3.5) (drill oval 3 1) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "+9V") (pintype "passive") (tstamp 686d97c2-7a81-484f-9d61-394eba8ff296))
(model "/home/sly/Creative/Electro/Libs/3D/CUI-PJ-102AH.step"
(offset (xyz -13.75 0 6.5))
(scale (xyz 1 1 1))
(rotate (xyz 90 -180 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bfc548b)
(at 121.92 103.505 -90)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2bd68e")
(attr through_hole)
(fp_text reference "J1" (at -2.54 6.35 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c86f4ac3-32ab-425b-bd40-983d229a812b)
)
(fp_text value "Conn_01x06_Female" (at 0 15.03 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4656e943-b7f0-4a6f-be67-62a727eaf955)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e68a6b80-4456-4685-b9fe-23f15f029452)
)
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 26a5ae81-bb53-413f-b810-9971a20ea32d))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 34bf04bd-b77a-4005-bc94-f8ea8f257603))
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 426100e4-ba8c-4e8d-811a-a12f2239a367))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 97f64f96-2ea7-4279-a7fc-b6cc0013874e))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 9b02489a-9bc4-4e02-9dfd-0900e4d81936))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp b2326934-9a62-4fd7-b336-d01817603d1e))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 830d9702-0452-4e6f-8cff-4fc96cf72610))
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 87640fca-e573-44fc-8ee8-8a4adc3dad5e))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 92e3784d-c688-41c0-87f9-f271bf578fb4))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp dcaf6f14-d56c-4a1b-8a6c-08f744575ee0))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6813928c-f524-4f25-b94c-cf2a809da30e))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7de99e7d-f7f5-4e0b-80fc-cb35e7dfcecb))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 8acdced9-6474-48e1-a9bc-8cf0b84913bc))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp cf4cca5b-3c77-4845-9e93-0731b0a389df))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp e32cea4f-8545-4fcf-b94d-0dd71463b461))
(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 ead2a033-ec8c-4017-8997-d802dfbe01c7))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "-9VA") (pinfunction "Pin_2") (pintype "passive") (tstamp 6ee2c3f3-0b1f-4bb1-9561-f721eb395465))
(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 6f189599-f4b4-46e0-8c8f-dd718498ff94))
(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 a00d0361-0e93-412f-b25d-4d55d1dc7d61))
(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 3acc696a-cee8-43ff-a72c-8229c97413b6))
(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 b5d4929d-c328-4ff9-bec1-9e07b0c911b1))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_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-00005d2efdfa)
(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 156cf160-d6f8-4f68-b8eb-cf2e4df7f2e8)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 37616e14-9cb3-4c24-80a6-72997b3489c6)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b23dc36-3e32-4f0a-a2e8-8b9c5ab70ee2)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 0dd41a9a-f14c-4caa-b14e-f89cbcd92374))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d7359700-5e78-45e3-8f04-45c1c51935e0))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 050187d7-56de-442b-9297-9d57f4c42760))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d2efe10)
(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 d715734e-ceb6-455a-a26b-8451a1eb99fb)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ee71885-7502-43bf-8238-dc53a5dda547)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c8f3962-424e-4f48-9afa-ed9fe15c327b)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 462848f8-0a84-4310-81b3-bde2e9e6fb86))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 563904ca-babd-4571-a48f-214637771190))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp c4ac127b-6d50-4dd5-b55e-3838c72560ce))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d2efe1e)
(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 f48abd32-9603-42d8-b0ca-81799071b112)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7985412b-ea54-4914-b21e-aa3aee3bb770)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd7cb8ea-60d1-4230-8188-a60b57b65dae)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp d1e3b4ad-4575-45c5-a0bf-c6c7ee060791))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d960d639-f082-42c0-962c-3868772b6949))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp f449a672-5cc2-4116-8662-28e1895bffc8))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d2efe2c)
(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 9bc0b374-8749-4500-b9f5-b3c44a6f8a2e)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 561cbd2b-cee5-4087-ba39-e4b1c6b3cc72)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58e69f62-291e-435c-b4bf-d5b617624fa6)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp e262eebe-4fcf-4c25-b4a4-0898c01883b1))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 727dfb62-bbcf-4f0d-8bbc-816d2c37ed83))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp c3b4d51f-92ce-4af5-a054-d08ecd699ff8))
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2f09ef)
(at 92.71 88.9 -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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c37e6b5")
(attr through_hole)
(fp_text reference "R3" (at 1.27 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1d9e8ef-7eaa-4639-b6d1-ad1420f587e2)
)
(fp_text value "10k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96733cc6-b80f-4c34-a4aa-d66adb41e085)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6db7896d-76fb-4ca2-a986-9be7b70e63eb)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp b954e486-50dd-42ad-843f-bbe652483bde))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp eefa913e-aa58-4119-9764-f3948dfb45d8))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 126f62d4-edc1-4c4e-8f47-3575e71d79ab))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7cb910c8-eae9-4043-b9e8-aefc5fd3f4c9))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ef3ba92c-4c68-41d2-b65b-d864b75e3091))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f779a8ee-baca-499e-9828-913a6a819ee1))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 4a023ca4-c2b3-4359-b43b-6defeb3f57c5))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp fb1432c3-ba6a-4cea-b54d-cbdc7f3128bc))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad2)") (pintype "passive") (tstamp 9c9d19e4-de45-43f7-8cf7-38c7f333f7ee))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp ad11d22f-862a-4546-be32-164daf1667df))
(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 "Capacitor_THT:C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2f11d6)
(at 118.11 91.44 180)
(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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005af6e74f")
(attr through_hole)
(fp_text reference "C4" (at 2.54 3.175) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp adc7a69c-3a31-4cd6-bf19-11c1e62bb0f7)
)
(fp_text value "470n" (at 2.5 3) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c50ad445-4294-4d38-b040-65d0ef6ddcb4)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3b93e8c-0768-4e78-a779-51983a92b83c)
)
(fp_line (start -1.22 -1.87) (end -1.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 04210058-0964-4861-99c8-b791af29bbf2))
(fp_line (start 6.22 -1.87) (end 6.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 41db1604-deaa-4d1b-8187-37f08b043e2b))
(fp_line (start -1.22 1.87) (end 6.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 545927d3-d245-432a-bc59-d66cf1b94831))
(fp_line (start -1.22 -1.87) (end 6.22 -1.87) (layer "F.SilkS") (width 0.12) (tstamp d19a575a-a616-4b27-8f79-29ec40a00674))
(fp_line (start -1.35 -2) (end -1.35 2) (layer "F.CrtYd") (width 0.05) (tstamp 6be56a0d-2290-4710-b262-b9dc1238873b))
(fp_line (start 6.35 2) (end 6.35 -2) (layer "F.CrtYd") (width 0.05) (tstamp 90e7bec3-0ace-4a26-bc81-8baff32e58c1))
(fp_line (start -1.35 2) (end 6.35 2) (layer "F.CrtYd") (width 0.05) (tstamp b283c303-6edc-4d7e-b749-d2a3f920ee38))
(fp_line (start 6.35 -2) (end -1.35 -2) (layer "F.CrtYd") (width 0.05) (tstamp f9d29179-5246-4a54-9390-d8ea0c711e8a))
(fp_line (start -1.1 -1.75) (end -1.1 1.75) (layer "F.Fab") (width 0.1) (tstamp 12fc0bbd-045c-4d49-b394-3e222fffa2ba))
(fp_line (start 6.1 -1.75) (end -1.1 -1.75) (layer "F.Fab") (width 0.1) (tstamp 18780a2a-312f-465b-9b11-0bfc35ae4265))
(fp_line (start 6.1 1.75) (end 6.1 -1.75) (layer "F.Fab") (width 0.1) (tstamp c886a42a-0349-4085-9316-55b5d6e7919f))
(fp_line (start -1.1 1.75) (end 6.1 1.75) (layer "F.Fab") (width 0.1) (tstamp e8491169-04a7-4936-bc12-445cf712e71e))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(C4-Pad1)") (pintype "passive") (tstamp c28fd7d3-9ee5-4b9e-b4c5-77e42d150b09))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(C4-Pad2)") (pintype "passive") (tstamp c4e888d4-3055-4fdc-ab6f-d6f7038a7908))
(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_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2f11dc)
(at 113.11 97.79)
(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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005af6e617")
(attr through_hole)
(fp_text reference "C1" (at 2.5 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df8c948b-003d-4188-9bb1-a8cff38f1a95)
)
(fp_text value "100n" (at 2.5 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 645d65bd-664e-4e61-9aad-85c22c3d2b89)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 53bd96d8-4095-4596-9653-c4d158d2c09b)
)
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 0529d864-e86f-4c41-b1cb-600496d649f3))
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 88211654-4913-4d79-9e16-f7fc1440341e))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 9fbbbd15-68f6-493e-b884-73e502b510c0))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp f4ea4f64-9299-42c0-a37b-c341ba782c99))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 380e17b7-f223-447c-ad11-fc44db458ee0))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a0363e84-a4b3-48a5-9f51-7d7517f35abb))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c7854a74-dc74-4bc7-9e43-c485f6f4622c))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d2fccdc9-39cb-452e-b47b-ef241ef1d9cd))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 07e740dd-1a19-4837-a310-0ed916fc5509))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 66dda440-5192-45a7-ac7a-5d9c199cb869))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 69f47a31-9673-4358-84d2-5dedceb5a79e))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7e684956-f61d-42f7-a0ab-e72874f6c382))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp b60ebf86-38dc-4eea-98d4-b04d1c30998c))
(pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Input") (pintype "passive") (tstamp e125f675-1e8d-4de2-861e-310f4029a0d3))
(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-00005d2f1202)
(at 95.25 83.82 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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c393281")
(attr through_hole)
(fp_text reference "C2" (at 2.5 -3 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7902f0a-3ca6-43b8-8eee-2b3929592b0f)
)
(fp_text value "470n" (at 2.5 3 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f61dbad-8bcb-483b-9fd0-ba7241f60362)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 474d5287-3b43-4a13-acd6-f1d625b8f4f8)
)
(fp_line (start -1.22 -1.87) (end -1.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 3aff10ef-873e-4a56-b91b-d2bf343db0e5))
(fp_line (start 6.22 -1.87) (end 6.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp 3cab0f45-7491-4967-95cb-0e2c2ce4fddb))
(fp_line (start -1.22 1.87) (end 6.22 1.87) (layer "F.SilkS") (width 0.12) (tstamp afee9667-6773-413b-ae4d-0d6d6dd32258))
(fp_line (start -1.22 -1.87) (end 6.22 -1.87) (layer "F.SilkS") (width 0.12) (tstamp e5edfbcf-8f16-4212-af3d-3cc8ff298911))
(fp_line (start -1.35 2) (end 6.35 2) (layer "F.CrtYd") (width 0.05) (tstamp 0c3c0c18-8bd8-4f72-a24e-e87fd9405335))
(fp_line (start 6.35 2) (end 6.35 -2) (layer "F.CrtYd") (width 0.05) (tstamp 18a1036d-9534-499c-85b8-6fac384121e3))
(fp_line (start -1.35 -2) (end -1.35 2) (layer "F.CrtYd") (width 0.05) (tstamp 575b1ae0-bacb-42ff-8384-b0f481577c68))
(fp_line (start 6.35 -2) (end -1.35 -2) (layer "F.CrtYd") (width 0.05) (tstamp 5d201a41-50e0-48a9-b890-e4409cbb5a0b))
(fp_line (start -1.1 1.75) (end 6.1 1.75) (layer "F.Fab") (width 0.1) (tstamp 001c1784-30b8-4212-872d-ed1caa6274e1))
(fp_line (start 6.1 1.75) (end 6.1 -1.75) (layer "F.Fab") (width 0.1) (tstamp 18fb0e9d-f8e7-4a01-a4d0-cc8bea4d01d7))
(fp_line (start 6.1 -1.75) (end -1.1 -1.75) (layer "F.Fab") (width 0.1) (tstamp 4b118bfa-f3a7-44c6-9d00-28889fb69a28))
(fp_line (start -1.1 -1.75) (end -1.1 1.75) (layer "F.Fab") (width 0.1) (tstamp 52b62083-2794-46c5-85b1-0957a86f6963))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C2-Pad1)") (pintype "passive") (tstamp 4ba905cf-7602-4c4a-8baf-4b37007307ad))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad2)") (pintype "passive") (tstamp 81073799-d039-4401-b2d8-ce9a9f9c3141))
(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-00005d2f123b)
(at 135.89 83.82 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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005af6e7af")
(attr through_hole)
(fp_text reference "C6" (at 2.5 3.81 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a88fe53b-5edb-4751-88db-5a8adc283748)
)
(fp_text value "1µ" (at 2.5 3.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b2bd151c-2359-43e3-b8f4-72a8cea6898c)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55d778fc-42f5-49f5-ab32-b3390a7d5ab6)
)
(fp_line (start -1.22 2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 0a31ec17-9950-47e7-9e2b-9216f2ddd2f6))
(fp_line (start -1.22 -2.37) (end 6.22 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 115bc0b5-2bc1-4795-9afc-30dae00da980))
(fp_line (start -1.22 -2.37) (end -1.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp bb55b7ed-a166-4b6c-b83b-213cf391fe5b))
(fp_line (start 6.22 -2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp fb3bbf68-a036-4c89-9c84-a2c215a7e98d))
(fp_line (start 6.35 -2.5) (end -1.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 010ed2be-b2a8-4b01-9888-a10a777197ae))
(fp_line (start 6.35 2.5) (end 6.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp 20ae4bd5-891c-4b48-aec7-cfc50d54ad5b))
(fp_line (start -1.35 2.5) (end 6.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 8afdcf05-9a2b-4c18-8330-3baadcd3ff38))
(fp_line (start -1.35 -2.5) (end -1.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp b1a35cec-2752-44be-bb31-fea1831d0054))
(fp_line (start -1.1 -2.25) (end -1.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 191e4d27-41ea-4ae2-a05e-c9b66ad80a58))
(fp_line (start 6.1 -2.25) (end -1.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 2be85d28-275d-414a-a13e-63dc77cf146c))
(fp_line (start 6.1 2.25) (end 6.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 33055176-51da-4caf-ab6d-b9521955cc1f))
(fp_line (start -1.1 2.25) (end 6.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 4d7dca83-f06b-44e1-8542-7b75687d0095))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(C6-Pad1)") (pintype "passive") (tstamp 331c8863-6bbe-4083-911e-21b8c0d5756a))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C6-Pad2)") (pintype "passive") (tstamp 115c5c1b-934c-4f38-b0a7-95f60f622831))
(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 "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d2f12c3)
(at 97.79 60.325 -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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c37e61c")
(attr through_hole)
(fp_text reference "Q1" (at 2.54 3.175 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 40e4f521-f647-4ee1-a3df-48fc669f743a)
)
(fp_text value "BC547" (at 2.54 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fee64cf5-1382-46ed-86ac-5ca4b8f7bce3)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8d38ccd0-4f45-4616-80bd-f93021c08441)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 0a1f38b8-ce59-4712-83c6-6de5013f8bd8))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 6572a169-79cb-4947-aa3d-98ee37d62e72))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 6eeb7129-fdda-4a9c-8e72-3390f731cb4d))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp e79f6137-f160-484a-95bb-3584709d93c3))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp ff3fdc11-3576-43aa-bc84-4d0d158fdb03))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 0f1e972d-632b-4d19-a11b-91eaa85f7a9f))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 464fd812-b3d5-4eda-8e7b-a390ee181919))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp c88af982-3f31-4f7b-bc85-da4c418ea3e8))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp f6bbf861-ce23-4449-bd1c-92cfc1669623))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp cf083c34-1231-47f7-8c13-be81c358a1d0))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 0e58b8c7-3e63-48fc-8371-f6713173f311))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp c08e7014-2afe-4856-82df-19941b8aeee5))
(pad "1" thru_hole rect (at 0 0 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pinfunction "C") (pintype "passive") (tstamp e5a8cd14-9649-4c88-baae-03dca93e3b18))
(pad "2" thru_hole circle (at 2.54 -2.54 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pinfunction "B") (pintype "input") (tstamp 155d0f1a-093f-46c7-a6a5-c2ed648a1c13))
(pad "3" thru_hole circle (at 5.08 0 270) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad2)") (pinfunction "E") (pintype "passive") (tstamp af6b2b9e-0aae-49b6-a2e6-f9c07c30fd1a))
(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-00005d2f12d2)
(at 106.68 60.325 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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c381fa2")
(attr through_hole)
(fp_text reference "R1" (at 1.27 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5fafba7-7e6f-4180-8982-e5c7fe7c415a)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f197a6a9-4ccb-4991-8f89-5f820dd7ab5f)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3ce68da-ed9e-4c35-b27e-1fdb52c5af98)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 72412b1b-2bea-423e-b988-8831e225f625))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp ccd0e5e1-dca6-48d7-bf5e-a99bd7931e27))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5f38f5ab-ebc4-4ca4-be55-8088a24d2715))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 90418199-2b6a-41eb-a7da-3c9e51ad834e))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp cad97f9f-d111-417e-a55f-36233fbb743b))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e5af2692-1f3f-4412-b0c8-2a1573113c97))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 95faaac7-a9e9-4d3a-a96a-5ad723ca0547))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 280bb9ac-88d3-4ec7-ac97-10008da07387))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp eea97f18-6dde-410e-9a44-49c94df46e49))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 4e83ba13-6f41-4346-a218-984729e3f74e))
(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-00005d2f12e1)
(at 106.68 65.405 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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c381ee0")
(attr through_hole)
(fp_text reference "R2" (at 1.27 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca556892-a886-4e21-9cbc-95c995ef0cb7)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7fd50f38-aa29-42e9-85bd-601de3687306)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa260b1f-ccc6-494c-b27b-78521dd8757d)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp ee32bd9b-4f33-4f6d-89bb-5d3fa753e3cb))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp bf106028-95e8-4cbd-9a08-0d9d59941a92))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0bcb13eb-cab6-40fd-8b2d-3037d641c443))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp be8abf6c-274e-43c5-ab3b-ef9467556159))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp cd1adb05-7bbc-46be-ba1c-e8775de103fa))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e5dca669-8abd-4e8e-9dec-1442fa633596))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp f5988fe5-bf15-4ca5-b770-f53d8f9c0916))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 653bdbdb-6942-4f83-a9a5-9bb1e0b2a38e))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp cf2496fa-59cc-42e4-9a76-1f7094efbbce))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp d6d15d93-5c08-4a79-9842-da9a61592b5e))
(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-00005d2f1326)
(at 101.6 71.12 -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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005af70baa")
(attr through_hole)
(fp_text reference "R5" (at 1.27 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 969e2abc-29c3-44fc-a6cb-61c13d5190b0)
)
(fp_text value "1M" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 67c6697c-85c5-4c7b-9d89-35e3a87b9746)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dcdfa134-ac7f-46c3-bd1c-087f9de4e866)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 178856b6-2b6f-4368-9b9b-bff9c627ac32))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp c5212818-df47-46d9-8ac6-b12f162698c2))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0b74ca8b-6152-49a4-8cae-dd01a6dcc681))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9e00416f-a1ad-4de5-80cf-6a08f4fac7ad))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ab6bc20e-74fc-42cc-88da-c5e220e75a30))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp bb0c015d-9b6f-4fcf-8494-334d6d07b766))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 97cfa1d0-58ee-45d6-add9-fc42415e44c8))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp fc3fa6f2-0952-42c5-9107-34dea0ae14df))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "-9VA") (pintype "passive") (tstamp 65a7b314-6ff0-499b-8199-578c92dacda8))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C3-Pad1)") (pintype "passive") (tstamp aa07339d-127c-4909-ac7f-e04da754917f))
(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-00005d2f135b)
(at 129.54 71.12 -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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005af6f3df")
(attr through_hole)
(fp_text reference "R8" (at 1.27 -2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8efd85b-5647-496c-917a-24c746ba0a35)
)
(fp_text value "100K" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77fd99e6-a2fc-43bb-91e0-f3b475e86f87)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21d29375-7bca-4f0b-804d-d06ab959b21a)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp dcb3de63-1cb5-4463-a608-026c3cfc9e85))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp a1746ecd-559f-473b-9ad8-3ce17fb18385))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 22c26ba1-3cea-433c-9be8-27620717c563))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 39d3f37b-33c9-459e-bc99-63f8dfffdfb8))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 69bd8ac0-2963-4151-8a30-9b64fca60be2))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9e45222c-bafd-49d0-a0c8-3befefbaacb0))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 9b5c497f-6bf2-4595-9a2f-2ea315364104))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp c4533729-d91f-47b6-a8cf-4cf74cf76d4c))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp b051afed-0b83-4171-b2e3-028dc9bfea25))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(C5-Pad2)") (pintype "passive") (tstamp 2458a0db-a7f1-418f-b275-28e0e97abc02))
(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-00005d2f1372)
(at 138.43 94.615 -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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c421ec9")
(attr through_hole)
(fp_text reference "R12" (at 1.27 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2322a819-122c-4a0e-988c-f446c25b8eeb)
)
(fp_text value "39k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e314c41-56d8-4632-923f-bf2492867661)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfdbd95d-c615-4c77-bd12-4babc52013fe)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 71a322e0-d2de-462c-810f-fdfeed7e1125))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp d3d51df7-93c1-4b58-a0ce-e19c429dcff9))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2ba959bf-fcdd-48ec-9690-9229ef23be7b))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 931a64ef-845b-4b0e-8b69-39c1d86008da))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c6764e12-1581-48d5-9576-a4726f40ae2a))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d260f7e7-25b0-4d53-bda3-fd0957b320fd))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 849023df-7a08-4f2d-a43c-534665c2f2c0))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 39217fcb-fa2d-4f9b-bd33-73681eabc253))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Output") (pintype "passive") (tstamp 5ec24b07-52c2-4910-8b93-e5fa53af8c60))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp eb866b6b-e495-4aad-8701-9448bd4b4374))
(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 "logos:foxlogo" locked (layer "F.Cu")
(tedit 5B029788) (tstamp 00000000-0000-0000-0000-00005d2f14da)
(at 115.57 75.184)
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 8.75) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b38a623-b73d-4307-aeca-51ed05afe33a)
)
(fp_text value "foxlogo" (at 0 -4.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b409215-8c5d-4da9-aa46-cc8dc977de24)
)
(fp_text user "Slyka" (at 0 6.5) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.25)))
(tstamp 2177ea3a-2f23-40c8-88e1-feb86227677c)
)
(fp_line (start -1.75 0) (end -0.75 0.75) (layer "F.Cu") (width 0.5) (tstamp 205bfc78-da45-4340-a30e-6adcae0454ad))
(fp_line (start 1.75 0) (end 2.75 0.75) (layer "F.Cu") (width 0.5) (tstamp 89403f12-d7d5-464a-8191-bd4011b89dad))
(fp_line (start -2.75 0.75) (end -1.75 0) (layer "F.Cu") (width 0.5) (tstamp 8d7686ab-f184-4f70-8856-814fd6fb0bfe))
(fp_line (start 0.75 0.75) (end 1.75 0) (layer "F.Cu") (width 0.5) (tstamp bc99098a-c88c-46b5-8221-16c4a2a2da6e))
(fp_line (start 2.5 5) (end 4 0) (layer "F.SilkS") (width 0.5) (tstamp 0849bdb0-9cb4-4733-b0b8-ef272753c26c))
(fp_line (start -4 0) (end -2.5 5) (layer "F.SilkS") (width 0.5) (tstamp 5d03a6f4-3573-45cc-a308-e791b4a2609d))
(fp_line (start -2.5 5) (end 2.5 5) (layer "F.SilkS") (width 0.5) (tstamp 5d35aad7-5a63-445e-af85-91f1a3026bc2))
(fp_line (start -1 -1) (end -2.5 -3.5) (layer "F.SilkS") (width 0.5) (tstamp 663e8935-edd0-4074-8224-6e7ebe1be746))
(fp_line (start 2.5 -3.5) (end 4 0) (layer "F.SilkS") (width 0.5) (tstamp 972bbce4-84d8-4daf-aa6b-3c0bd2820ae1))
(fp_line (start -1 -1) (end 1 -1) (layer "F.SilkS") (width 0.5) (tstamp d409f267-9188-4cd3-b18d-28a0e239cea6))
(fp_line (start -0.5 2.75) (end 0.5 2.75) (layer "F.SilkS") (width 0.75) (tstamp d671d100-c8bb-4671-86ad-92a3f7bda587))
(fp_line (start 1 -1) (end 2.5 -3.5) (layer "F.SilkS") (width 0.5) (tstamp f569203b-5d6b-426d-a0c9-60a7579885b1))
(fp_line (start -2.5 -3.5) (end -4 0) (layer "F.SilkS") (width 0.5) (tstamp fc23182b-de4c-4a9b-b549-ec1dc1095a33))
(fp_line (start -1.75 0) (end -0.75 0.75) (layer "F.Mask") (width 0.4) (tstamp 0dd605d8-5d21-4d45-96cc-551b7e3ddfe7))
(fp_line (start -2.75 0.75) (end -1.75 0) (layer "F.Mask") (width 0.4) (tstamp 360e76fb-ce31-48ed-b6fb-5e4bcc583100))
(fp_line (start 1.75 0) (end 2.75 0.75) (layer "F.Mask") (width 0.4) (tstamp 5df61fb0-b888-4745-886b-3fb8787ad814))
(fp_line (start 0.75 0.75) (end 1.75 0) (layer "F.Mask") (width 0.4) (tstamp cdd106f9-c996-4931-9d66-95ce64df4ae8))
)
(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-00005d2f2377)
(at 95.25 69.93 -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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c467757")
(attr through_hole)
(fp_text reference "C3" (at 2.46 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f036d1a4-82c7-4419-a299-5a60ead32a78)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 69b948d6-f98a-4159-8dad-4ded506de2ff)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 031512f7-acfa-48e0-9a1f-32f7a3ec9b86)
)
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 081daa04-a523-4b70-b58b-a7521d847940))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5613286c-1fc5-4f98-87e9-89b0388fb303))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6e847f55-7f72-4b47-aef4-6d9d3c912c96))
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp b3d3a1f8-2e71-4b26-a05c-dc54b4196bf7))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 44dfa0f4-7175-4eb5-b514-70f69c7a022e))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 84548ee5-72ec-4a3f-94da-963091488499))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 977e73b8-130e-48c8-a608-7fc313fb5853))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp fe8c042e-35cf-4f80-911c-a1e05013e84d))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 2533f592-e968-4b6c-a0e6-29eb366c831b))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 6b5c0e5b-af53-445b-a858-e5f58eed4ca9))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 75195a1f-e7a7-4f7b-b9d9-7f81b411190b))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp eb238aff-456d-408b-b024-203c1ff45672))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C3-Pad1)") (pintype "passive") (tstamp d27b8763-b5d3-49a9-b123-bfa81eec9cd1))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C3-Pad2)") (pintype "passive") (tstamp 4fa0dce9-25e9-438f-a523-822e1f1abbb9))
(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_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2f3b63)
(at 135.89 69.93 -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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d315770")
(attr through_hole)
(fp_text reference "C5" (at 2.5 -2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 422f0dcd-02e8-4a59-93bf-65ac398f17fd)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79b06991-fc6c-4c67-9cd2-b7c222d3bb5e)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e4d7424-4525-4320-848b-b368e7cb0eac)
)
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1f93b4dd-8998-46d4-85b9-423274e011e5))
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 7ef44c17-adf7-470b-a560-b9e91e006d4e))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp b9931def-322f-47d9-95fb-b308bc4b8d8b))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp d432d347-af42-4c19-94db-6bff0205b14b))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 42fd7b17-4216-43c1-b4e4-333b7841a39f))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5fca2c70-a373-4ca9-802c-9100bd674a15))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6c1d9d50-491d-4374-9044-c43ce2cee946))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp e21cac55-1d5b-449a-85e6-2b07b8377eba))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1d28d5d7-6c13-4405-8028-7024beee1a28))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 5dfa87a7-0f3a-494d-8465-aec8072d6d5f))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 92784591-751f-44c0-aa4b-d27ac9dc465a))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 97cbe17e-812f-4b46-aee5-17f194204596))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C5-Pad1)") (pintype "passive") (tstamp 06f49f96-1b8e-4879-a707-ff0c073997ab))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(C5-Pad2)") (pintype "passive") (tstamp 88ffd0ad-19f3-40c6-9375-20c38334f32d))
(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 "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d2f3c23)
(at 133.35 65.405 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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d315766")
(attr through_hole)
(fp_text reference "Q2" (at 2.54 3.175 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7230e604-5eae-4451-a8ed-3604c532eb2f)
)
(fp_text value "BC547" (at 2.54 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e7a0c00-55f3-441d-ac8a-21d685c48a46)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31bc71e1-6f1c-411f-a31b-9ea8fa2a2108)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 40b88548-f06a-4172-a255-8f6084457aa6))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp 46eb1382-eb85-4718-a1a8-4b8329b1f7ed))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp 82d6baa2-0a2f-472c-8961-2366f12626ac))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 87237c57-34a5-459a-96d6-2c876ec5c7cd))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp f2e0b856-b194-42e9-95ef-df06d1359d36))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 2deb5fd7-5d74-4364-af30-0c3556d305e2))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 78dd8854-cf11-43d3-a889-6fedb46c3744))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 8eaddc46-dfb1-4dda-9c68-78e3f1202d1d))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp d9558a9c-c972-4243-a90b-0898071ffba0))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp aa198d0e-2df3-4314-9ecb-e7af4f6977fa))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp 67611df2-03a9-4644-8644-d625d3402258))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp d512791c-121a-4ec2-8f9d-3be41d344420))
(pad "1" thru_hole rect (at 0 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pinfunction "C") (pintype "passive") (tstamp c6416ac3-5f28-4747-a9f3-d2232282dce6))
(pad "2" thru_hole circle (at 2.54 -2.54 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C5-Pad1)") (pinfunction "B") (pintype "input") (tstamp 80c3359b-ab4f-4024-bbc8-a0b568006c49))
(pad "3" thru_hole circle (at 5.08 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C6-Pad2)") (pinfunction "E") (pintype "passive") (tstamp 0d869f55-24c9-4010-9f1b-7ef7ee30597d))
(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-00005d2f3d2e)
(at 124.46 65.405)
(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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d315747")
(attr through_hole)
(fp_text reference "R9" (at 1.27 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8835f14-f62a-474a-b712-1dce43a77f2a)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ecacd1ef-966f-4cf6-9805-6826279c586e)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 456878bd-c2f1-4b57-8ecd-874b104a2667)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 2ff8fcee-041a-4777-b89c-10496b552816))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp c4e0d62a-a1e4-44a6-9738-3b8210839264))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 19c45474-4509-4a66-87c8-5b21b4eda571))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3f4793a4-0d6e-41d8-940a-88f1ba745a8c))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp de7f0362-4241-4716-a34d-2bef046bb920))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f8f7f632-3b88-422b-b9b6-c18c37cc150a))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp ddba5cd3-7f71-4cd2-b34e-232b000a6328))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp dedbfe46-5689-43f0-b383-92cfb149527c))
(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 8ccf90a0-b30a-4f65-9178-f19856af1689))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C5-Pad1)") (pintype "passive") (tstamp 48e4c55e-d7ba-4f7e-a20d-1656fe8ecaa2))
(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-00005d2f3d3d)
(at 124.46 60.325)
(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" "Triode Sun.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d315751")
(attr through_hole)
(fp_text reference "R10" (at 1.27 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea9a5493-3fb4-455e-bba8-9f3001fc0dcb)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))