-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheurorack_balanced_out.kicad_pcb
7792 lines (7728 loc) · 371 KB
/
eurorack_balanced_out.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Eurorack powered stereo balanced output")
(rev "0.1.1")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0.5)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Vcc")
(net 3 "Vee")
(net 4 "Net-(C15-Pad1)")
(net 5 "Net-(U2-+OUT)")
(net 6 "Net-(U2-+SNS)")
(net 7 "Net-(J2-PadT)")
(net 8 "Net-(C4-Pad1)")
(net 9 "Net-(C5-Pad1)")
(net 10 "Net-(U2--OUT)")
(net 11 "Net-(U2--SNS)")
(net 12 "Net-(U3-+OUT)")
(net 13 "Net-(C14-Pad1)")
(net 14 "Net-(U3-+SNS)")
(net 15 "Net-(J4-PadT)")
(net 16 "Net-(U3--OUT)")
(net 17 "Net-(U3--SNS)")
(net 18 "Net-(U5-+OUT)")
(net 19 "Net-(U5-+SNS)")
(net 20 "Net-(C24-Pad1)")
(net 21 "Net-(C25-Pad1)")
(net 22 "Net-(U5--OUT)")
(net 23 "Net-(U5--SNS)")
(net 24 "Net-(U6-+OUT)")
(net 25 "Net-(U6-+SNS)")
(net 26 "Net-(C28-Pad1)")
(net 27 "Net-(C29-Pad1)")
(net 28 "Net-(U6--OUT)")
(net 29 "Net-(U6--SNS)")
(net 30 "Net-(J3-PadT)")
(net 31 "Net-(J5-PadT)")
(net 32 "Net-(U1A-+)")
(net 33 "Net-(U1B-+)")
(net 34 "Net-(U4A-+)")
(net 35 "Net-(U4B-+)")
(net 36 "Net-(U1A--)")
(net 37 "Net-(U1B--)")
(net 38 "Net-(U4A--)")
(net 39 "Net-(U4B--)")
(footprint "Connector_Audio:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" (layer "F.Cu")
(tstamp 048453d2-f375-4876-a16a-a009dc5b6a00)
(at 160.6 22.57)
(descr "TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html)")
(tags "WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(path "/c34e0417-ef8b-4b96-9dd8-868e4806c846")
(attr through_hole)
(fp_text reference "J4" (at -4.03 1.08 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ca6d530-cfb5-466a-8f3c-b5a642e42c75)
)
(fp_text value "Audio_in_1" (at 0 5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4d96e49-cf18-4852-bfbd-56a89c46f8df)
)
(fp_text user "KEEPOUT" (at 0 6.48) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.051)))
(tstamp f75799a3-c42e-4b11-ad91-0d843bde02ba)
)
(fp_text user "${REFERENCE}" (at 0 8 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5209dffa-aa32-42e1-a2d5-aadada92f72e)
)
(fp_line (start -4.5 1.98) (end -4.5 12.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bdaf81c9-ef0c-4cab-9c22-77bb1cabf7e9))
(fp_line (start -1.23 -1.17) (end -1.23 -0.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ed09afb-1bc3-4fe6-867e-38a2681d0398))
(fp_line (start -1.23 -1.17) (end -0.37 -1.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b683bb81-0916-4f39-93ab-95b3e4240635))
(fp_line (start -0.8 12.48) (end -4.5 12.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 691151b6-7074-4412-955f-895eab91ebce))
(fp_line (start -0.72 1.98) (end -4.5 1.98)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24c15100-5fc5-4d47-a5f7-ec8c55e5b6bf))
(fp_line (start 4.5 1.98) (end 0.72 1.98)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55ec2497-3337-40c4-b7b9-8569bf2b1a29))
(fp_line (start 4.5 1.98) (end 4.5 12.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75fa25ae-243b-4e73-b2d7-c6a05bee3589))
(fp_line (start 4.5 12.48) (end 0.8 12.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20b86c98-00c9-4940-9869-9df0c98d3401))
(fp_circle (center 0 6.48) (end 1.8 6.48)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 19b4dcda-3088-45c0-a392-792183512161))
(fp_line (start -5 12.98) (end -5 -1.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp adf8a322-51fd-4cf5-8d60-a1fd2d7cbdef))
(fp_line (start 5 -1.42) (end -5 -1.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fb4bd02-0471-4930-ab07-672744906611))
(fp_line (start 5 12.98) (end -5 12.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 82a16bc0-e24b-413c-932a-cbb0e324c98a))
(fp_line (start 5 12.98) (end 5 -1.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a797be33-a11b-4ead-a7c4-b48f82cb0ff1))
(fp_line (start -4.5 12.48) (end -4.5 2.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58b3afa8-0ab6-46e7-bd16-cad2b8c500dc))
(fp_line (start 0 0) (end 0 2.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80193a8d-805b-4a33-9f00-ac8367894658))
(fp_line (start 4.5 2.03) (end -4.5 2.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90beb487-aa33-4fc7-a959-81326d36f123))
(fp_line (start 4.5 12.48) (end -4.5 12.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc76a2c0-dfdc-49de-87ae-f864d5ec313a))
(fp_line (start 4.5 12.48) (end 4.5 2.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1372cb9a-6fd4-4410-9705-e6116e1061ab))
(fp_circle (center 0 6.48) (end 1.8 6.48)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp abdf685c-b086-476a-b447-6be47846f9c7))
(pad "S" thru_hole rect (at 0 0 180) (size 1.93 1.83) (drill 1.22) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "passive") (tstamp ca71437a-c754-456b-8098-17e779174fc6))
(pad "T" thru_hole circle (at 0 11.4 180) (size 2.13 2.13) (drill 1.43) (layers "*.Cu" "*.Mask")
(net 15 "Net-(J4-PadT)") (pintype "passive") (tstamp f0fefe9a-a7f3-4d5b-a9cb-380eea496d5f))
(pad "TN" thru_hole circle (at 0 3.1 180) (size 2.13 2.13) (drill 1.42) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "passive") (tstamp 37456f25-6aa4-459a-a8e7-f37e013997d4))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 8f6f34c1-eac5-490d-9c6f-995ff2c5c656) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 162.105141 29.05)
(xy 162.08493 28.804171)
(xy 162.024841 28.564945)
(xy 161.926486 28.338744)
(xy 161.792508 28.131645)
(xy 161.626504 27.94921)
(xy 161.432932 27.796336)
(xy 161.216992 27.677131)
(xy 160.984482 27.594794)
(xy 160.741646 27.551539)
(xy 160.495007 27.548525)
(xy 160.251187 27.585835)
(xy 160.016734 27.662466)
(xy 159.797946 27.77636)
(xy 159.600697 27.924458)
(xy 159.430286 28.102784)
(xy 159.291288 28.306548)
(xy 159.187436 28.530278)
(xy 159.121519 28.767965)
(xy 159.095308 29.013226)
(xy 159.109507 29.259475)
(xy 159.163734 29.500099)
(xy 159.256532 29.728634)
(xy 159.385411 29.938945)
(xy 159.546908 30.125382)
(xy 159.736687 30.282939)
(xy 159.94965 30.407385)
(xy 160.180079 30.495377)
(xy 160.421785 30.544553)
(xy 160.668278 30.553592)
(xy 160.912936 30.52225)
(xy 161.149191 30.45137)
(xy 161.370697 30.342856)
(xy 161.571505 30.199621)
(xy 161.746223 30.025512)
(xy 161.890158 29.825205)
(xy 161.999445 29.604079)
(xy 162.071149 29.368074)
(xy 162.103344 29.123526)
)
)
)
(model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 0602b7c6-912e-4a48-b174-78368c2a1b5e)
(at 172 72.05)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Mouser" "81-BLM21A601F")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(path "/77c6d030-5f0d-4b07-86df-1ebb01407ede")
(attr smd)
(fp_text reference "FB7" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 68a99831-bda1-43b0-bc77-f24243963c7f)
)
(fp_text value "600R @ 100Mhz" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a941eba5-9552-44cc-b4c8-ab8103c2586b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 168e63b6-7754-4e0c-bba4-a2b7799949a3)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0afa63d6-ebcc-4196-b898-62a4a298cb42))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fae93461-1835-4909-8d71-5aed5f727bf4))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3e251df-65a2-45a5-a64c-5c8d999c677a))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e60db899-00bc-4f53-a0e2-118dc086c30a))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6617ef6f-6d2d-4fdd-9993-3f2c8dbbc3be))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9346ff6f-45ef-4785-90ba-aa0bc8df39fd))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c57e289e-8805-464e-a912-c74d0df86f94))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f3e3cc9-5f9e-46a9-b06f-e2e355458f52))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9210bef0-9b31-4649-accf-5fe72d54d2f2))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 163e222f-6ce0-4b54-b668-1b6e7bf8eaec))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 27 "Net-(C29-Pad1)") (pintype "passive") (tstamp 0c1c78b9-c2e1-4b33-ad0a-a5ed36dc392e))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 24 "Net-(U6-+OUT)") (pintype "passive") (tstamp 28512229-b7ac-44ae-b977-8dbee24ab69b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 0f4d8fa6-8d20-46fe-9134-7eb4702498e1)
(at 150 70.05)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Mouser" "81-BLM21A601F")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(path "/952fde2f-4b1f-4ce3-aa47-61230c087f7e")
(attr smd)
(fp_text reference "FB5" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f81671c6-2ced-4de8-a6e0-54680427e8c2)
)
(fp_text value "600R @ 100Mhz" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8389c564-9f75-4be8-b915-32923b88946f)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f7c6928a-ccee-4337-be8f-4a91818febfe)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4fb30719-fffd-4996-918a-ab3789cde25f))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64d9512b-8deb-4f62-90c7-204a377096ba))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66f36e84-03b7-4828-81e8-6f81dbd2027b))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89b79f6d-3cd2-4e2c-9c53-774d96526ac9))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25c47105-d2b6-4adf-8018-cc32d2017bd2))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31e43999-d622-46ee-b628-961c21f16909))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 330ab357-1b50-4d1a-90d6-310ddceeaa80))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95cf0fc9-7b09-4703-b5bd-76b1b6cefbd3))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 634edd5c-e784-4706-8d02-404d0f38134a))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dfb2edc1-f6cf-49d6-ace2-e965d12f17a3))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 21 "Net-(C25-Pad1)") (pintype "passive") (tstamp 1158e244-9f38-4dee-9765-768d2db81a4e))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 18 "Net-(U5-+OUT)") (pintype "passive") (tstamp 3d8b608b-2049-41d2-a6c9-1658a29becdb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 1dfeed6d-557e-4604-abb0-0133f94a045e)
(at 140 116)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Mouser" "80-C0805C104K5RACLR")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/972dadcb-37b5-451c-afa2-a02b8cb8f1ee")
(attr smd)
(fp_text reference "C18" (at 0 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07b3d47d-b9d7-4394-9c58-ac5fc4589a93)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ddf0511-ba8b-4b73-aff9-6c2705db250a)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 34af4d67-696f-4a95-8a82-d5bf73d1eca4)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3da13f9a-7c87-4f47-839c-770a65454d61))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15379744-6fc3-4f8a-9465-ae9c62139196))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac81f179-0f87-4b34-b61d-3e908deefb5f))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1f47312-c8ca-4035-9482-bbdd676450b8))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a39cffde-e3ff-450e-8c57-a1bde9383fa9))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30a39d34-6c1f-4e92-9c97-a7cf6f71eec8))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 777100b2-50a4-47ff-932c-3cb8d1797203))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 446ca8fb-38a7-4619-b4e6-103817002d69))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04b23bc8-27ae-434b-869c-782ab7827c29))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f998d268-f237-4468-83a8-20d9363acad8))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 1 "GND") (pintype "passive") (tstamp 376162af-574c-4d0a-9118-55d01a7ac77b))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 2 "Vcc") (pintype "passive") (tstamp fe242f37-60a2-43f6-9302-fe4ede7ca686))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 25d62746-8958-47e3-a4d6-33a0137cea3b)
(at 166 73)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Mouser" "80-C0805C101JAGAUTO ")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/0af30851-7788-4571-95d9-ecb34354e8bf")
(attr smd)
(fp_text reference "C29" (at 0 -1.68) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3bb0f0b4-eb5f-4927-83c7-649a4c2184a4)
)
(fp_text value "100p" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9627eeb2-ef36-4006-8a14-5c1e78c2f207)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 27726be3-fbf4-43f9-b7a8-3f6dea61b04d)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b10a3d06-8413-4201-9f98-3bfacd73131f))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4ae0f33-f78a-4a11-9443-907f362c371e))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff2a4be6-d582-4b3e-b7e0-7d42e7c76976))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c56d20fa-536c-440a-a3ba-f3e45474acd6))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12289ce4-4c32-4290-95d0-9c90edbae340))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0002ab5-eed7-48f9-9859-c17e02702248))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e797c912-c2b6-4f55-8a37-d651f3eee9e0))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34129c3b-f772-4a09-b2f1-fa41cf990142))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 124261f2-bf99-4fbe-a5cd-ccd4c8a65d55))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d650717-7a51-4716-ac3b-bc8eea47fd0b))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 27 "Net-(C29-Pad1)") (pintype "passive") (tstamp e1023e2b-116c-4e4a-b091-fe1be45ebcfc))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 1 "GND") (pintype "passive") (tstamp e74ea165-a171-42ca-aab4-648c3d1fd454))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SO-8_5.3x6.2mm_P1.27mm" (layer "F.Cu")
(tstamp 2aa31c4c-5e7d-43f6-b98e-b18e27ed51df)
(at 167.7 45.75)
(descr "SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SO SO")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8")
(property "ki_keywords" "dual opamp")
(path "/e0667a2c-719a-4ff8-b87f-cf342270b8eb")
(attr smd)
(fp_text reference "U4" (at 0 -4.05) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19a972fd-1f6d-4034-8e76-a19722f61622)
)
(fp_text value "TL072" (at 0 4.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d2e4370c-6c93-453f-9b51-893d96f1086b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e6bc1d8-ae0e-47eb-b3f5-7d8c8719ff71)
)
(fp_line (start -2.76 -3.21) (end -2.76 -2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2565247f-bc70-4673-9bd4-9d6ca8af85a1))
(fp_line (start -2.76 -2.465) (end -4.45 -2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 754fdedf-c825-4900-911b-62141c6c25ef))
(fp_line (start -2.76 3.21) (end -2.76 2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08deaffd-0987-4868-942b-a3a23e958386))
(fp_line (start 0 -3.21) (end -2.76 -3.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34e237d0-21e0-4bc7-a3ce-24d4df04a1cf))
(fp_line (start 0 -3.21) (end 2.76 -3.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd099943-f552-42d8-a310-02ffae67548d))
(fp_line (start 0 3.21) (end -2.76 3.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9948566-4805-41c3-a572-3d34fdf9fb2c))
(fp_line (start 0 3.21) (end 2.76 3.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd79f35e-013d-45a6-abfa-ba2b763350fc))
(fp_line (start 2.76 -3.21) (end 2.76 -2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f5fc0cb-26c5-4f80-a470-be54dcbbe4ec))
(fp_line (start 2.76 3.21) (end 2.76 2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd845572-f1b2-47c3-a419-fa41bc87b6e0))
(fp_line (start -4.7 -3.35) (end -4.7 3.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd919c69-8c22-4a6c-a243-091503aaa091))
(fp_line (start -4.7 3.35) (end 4.7 3.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f50acf2c-a963-4404-a1ef-91e31e2835d0))
(fp_line (start 4.7 -3.35) (end -4.7 -3.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6503808-dc5b-44c8-b4cc-57dd3cc14b45))
(fp_line (start 4.7 3.35) (end 4.7 -3.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 311c98ed-ceb4-4dfa-9514-7222d130b5c7))
(fp_line (start -2.65 -2.1) (end -1.65 -3.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa4b6467-7578-4b01-ac4b-d53a45a3600c))
(fp_line (start -2.65 3.1) (end -2.65 -2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f92f904-28f8-4579-9d31-10ed896ba0ec))
(fp_line (start -1.65 -3.1) (end 2.65 -3.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d50ff5e1-15bc-48fd-8336-2053d3ed2d13))
(fp_line (start 2.65 -3.1) (end 2.65 3.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d63699cb-61f6-49d1-a05b-d53005e72430))
(fp_line (start 2.65 3.1) (end -2.65 3.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a26a259f-1864-4fef-9e23-900ac5137a70))
(pad "1" smd roundrect (at -3.5 -1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "Net-(U4A--)") (pintype "output") (tstamp bcd47cf8-eb0f-4322-b524-d56f2de0370f))
(pad "2" smd roundrect (at -3.5 -0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "Net-(U4A--)") (pinfunction "-") (pintype "input") (tstamp 0633822e-aeb8-4953-ad63-07b3499cd3bd))
(pad "3" smd roundrect (at -3.5 0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "Net-(U4A-+)") (pinfunction "+") (pintype "input") (tstamp 47716c65-11fb-4511-93e9-89758278e3a2))
(pad "4" smd roundrect (at -3.5 1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Vee") (pinfunction "V-") (pintype "power_in") (tstamp 37d9ad85-1b0d-41cd-992e-2dadde1ffe53))
(pad "5" smd roundrect (at 3.5 1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 35 "Net-(U4B-+)") (pinfunction "+") (pintype "input") (tstamp 4b53ca99-5266-4ff3-a9c2-8983a5b1d702))
(pad "6" smd roundrect (at 3.5 0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "Net-(U4B--)") (pinfunction "-") (pintype "input") (tstamp 431dc461-a583-4147-8fae-823db4be71c4))
(pad "7" smd roundrect (at 3.5 -0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 39 "Net-(U4B--)") (pintype "output") (tstamp 3464d2c0-b9b8-4fe4-a588-fe03293ac172))
(pad "8" smd roundrect (at 3.5 -1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Vcc") (pinfunction "V+") (pintype "power_in") (tstamp b40a3e47-d4d1-4a93-b244-71de39c13292))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SO-8_5.3x6.2mm_P1.27mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 2ad1b958-9723-47f1-ac39-28a098a4dc49)
(at 64 59 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Mouser" "667-ERJ-S06F1201V")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/00000000-0000-0000-0000-00005ed56ed2")
(attr smd)
(fp_text reference "R4" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10ff2102-7293-44cb-9752-628d5c7354a2)
)
(fp_text value "12k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94089555-ae55-4062-8ebe-8dde44680c05)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp df955889-5d99-4239-8c44-3e6b2535d8f0)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9814ed0d-91b4-4f65-b66c-351cb9fdb414))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7c6ab73-fbec-4f44-9aa2-e9a6083f9774))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9cb0a6d-8a1e-4e99-9755-199121a9c34b))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd3a3906-97b6-4c79-805a-e85eb30d1f16))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ab05873-caf1-4e2e-b066-36536d67661a))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 970ed47b-5381-4645-9303-3d1cace86b22))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d2f3bcb-672c-4ca4-b353-f2ccdc91c59f))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08438af0-d517-4645-9920-a2b56853f9ad))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf67e6b3-6ff1-4b2d-b7fc-1050ddf0c4f4))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d69fbc6b-ec6a-4a35-b42e-7b6a7f198c22))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 1 "GND") (pintype "passive") (tstamp 1795ee86-8709-4e32-83a9-9985cadf4c7a))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 33 "Net-(U1B-+)") (pintype "passive") (tstamp 3755b8d7-8e63-4160-87f2-6ac980d42ea2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tstamp 2e7d05dd-1ce1-440d-8abf-28519d624165)
(at 148 120)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Mouser" "80-C0805C104K5RACLR")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/02135831-1a1b-4ca5-8d8d-2cfb6f3a1a62")
(attr smd)
(fp_text reference "C22" (at 0 -1.68) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1acefcc-9995-4d9c-8c4d-8d448e2fb2c9)
)
(fp_text value "100n" (at 0 1.68) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 207362d9-7537-4500-b450-a14f4afa6879)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f59f8cf0-ad45-4b26-90ad-761df5aaba6c)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ded2084-f544-4d23-a5ed-8028195df3bc))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e43bc7f1-f712-4c31-ae31-9bafb5552c18))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2518b0c7-ec7a-48d4-aae7-8b1f845b747f))
(fp_line (start -1.88 0.98) (end -1.88 -0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 129b1fa9-6f02-40d6-aee5-2c90ab7cbe19))
(fp_line (start 1.88 -0.98) (end 1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2cc49b2f-970d-4269-9534-6fd40c97af81))
(fp_line (start 1.88 0.98) (end -1.88 0.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37c14483-cd77-4f62-a42d-bbc9ba40a6fc))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec0685f6-1552-4210-82c3-ecfbb40e6fca))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9c50a6c-bdac-48cb-9cfe-024374e6bad7))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c217f756-6364-4f14-a392-1dd768f2cde5))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a8d5a92-0d81-4e84-a3d7-64962d5e7f28))
(pad "1" smd roundrect (at -1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 3 "Vee") (pintype "passive") (tstamp cb0c01b6-eb1c-466e-b086-980b491f63c6))
(pad "2" smd roundrect (at 1.0375 0) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.212766)
(net 1 "GND") (pintype "passive") (tstamp bfac35a2-be14-4487-ba0d-768edb097fa7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 37920e3b-7165-4f38-844e-cea006ffe687)
(at 45 59 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Mouser" "667-ERJ-S06F1201V")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/00000000-0000-0000-0000-00005ed2b05b")
(attr smd)
(fp_text reference "R2" (at 0 -1.65 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b995b734-f489-4bdd-8bec-f9c9028cc83b)
)
(fp_text value "12k" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4b95153-5a17-4dec-a2ae-4c69dff5c233)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 912364ef-1f01-4837-9fea-170516ec0aa9)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be0a57d5-20ce-4403-9ae0-aadbe95a5900))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 756c387e-6d08-4b78-b41c-61a2ddd697f5))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2cc5c841-518e-4e95-8b2a-dbf35479999d))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 82c07a16-5243-41f7-b397-4922144af356))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db04a915-4cd3-48d9-84da-538a8a51a081))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2fa2fdc-18c9-4550-a6ff-a4caa1e12e33))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6195dc2-f36d-46b0-8454-8552cdae51ce))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 034ef1f4-a72a-455c-bbfe-74c500ea5b0d))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7aadea4a-18e6-45ad-b5a1-81251b8150b2))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41c472cd-2d08-4eef-a4dc-e0bb47dc1c69))
(pad "1" smd roundrect (at -1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 1 "GND") (pintype "passive") (tstamp d29194a5-62dc-49cd-934e-9a4e0141200f))
(pad "2" smd roundrect (at 1 0 270) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 32 "Net-(U1A-+)") (pintype "passive") (tstamp 1ce745ee-7a77-46a1-9156-498f3e9e21e3))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Audio:Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles" (layer "F.Cu")
(tstamp 39e29c4d-89c0-4f38-9c1c-e8d4183047de)
(at 61.05 43.82)
(descr "TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html)")
(tags "WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000608e218c")
(attr through_hole)
(fp_text reference "J3" (at -4.03 1.08 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a0ebe4b-eb94-46cb-b504-8e6908c21c98)
)
(fp_text value "Audio_in_2" (at 0 5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0a90a9b-26f4-4888-a207-a2d3262b797c)
)
(fp_text user "KEEPOUT" (at 0 6.48) (layer "Cmts.User")
(effects (font (size 0.4 0.4) (thickness 0.051)))
(tstamp 781ac393-6a06-423d-9f1c-bfcee7396711)
)
(fp_text user "${REFERENCE}" (at 0 8 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0deadfe6-5144-4889-bdc8-a74fc2211851)
)
(fp_line (start -4.5 1.98) (end -4.5 12.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 909d5655-e2d4-4528-a589-3711f2cb953c))
(fp_line (start -1.23 -1.17) (end -1.23 -0.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d12bab9-4570-47b7-80f8-479604324a52))
(fp_line (start -1.23 -1.17) (end -0.37 -1.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce2a4c12-6303-4932-b9fb-fd85dd06850c))
(fp_line (start -0.8 12.48) (end -4.5 12.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8eb79480-2977-4347-87e2-efa3202164b4))
(fp_line (start -0.72 1.98) (end -4.5 1.98)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8557ae42-f3bf-4a61-9dc8-455606a76e48))
(fp_line (start 4.5 1.98) (end 0.72 1.98)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 056c87d2-8f8a-4dd2-8bb0-0ee57cc50892))
(fp_line (start 4.5 1.98) (end 4.5 12.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44a5765b-9bb4-466b-b1fd-ae8d2c8581e0))
(fp_line (start 4.5 12.48) (end 0.8 12.48)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bc6267f-b6e1-48a7-9407-fc189857323f))
(fp_circle (center 0 6.48) (end 1.8 6.48)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 4d94f187-adfb-4d82-a2da-a503a9af8d46))
(fp_line (start -5 12.98) (end -5 -1.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc492974-b4a7-4b23-9c93-2f24ee866793))
(fp_line (start 5 -1.42) (end -5 -1.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1836e8ab-3279-4f89-9c6d-f6507a16db5e))
(fp_line (start 5 12.98) (end -5 12.98)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9caf1997-d43b-4385-b754-cffffcf5e9a2))
(fp_line (start 5 12.98) (end 5 -1.42)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25f7b7c6-5512-4a12-be20-831fbffe77f4))
(fp_line (start -4.5 12.48) (end -4.5 2.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 296619b6-945c-4c20-b207-4871bfe705c0))
(fp_line (start 0 0) (end 0 2.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 728f5688-41b8-4faa-8201-0ae4a45dbd24))
(fp_line (start 4.5 2.03) (end -4.5 2.03)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a58863b-cf87-4652-a37b-c24a0e9fd1be))
(fp_line (start 4.5 12.48) (end -4.5 12.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ae89424-23c5-4ca2-837c-02cabd2f9718))
(fp_line (start 4.5 12.48) (end 4.5 2.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 281af291-2c43-4482-80df-96f0f4b46ec5))
(fp_circle (center 0 6.48) (end 1.8 6.48)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 980bf574-f67d-4c3b-91ce-a36b48a290a8))
(pad "S" thru_hole rect (at 0 0 180) (size 1.93 1.83) (drill 1.22) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pintype "passive") (tstamp d3550b1f-6ba0-43c4-bb44-a5267224d88e))
(pad "T" thru_hole circle (at 0 11.4 180) (size 2.13 2.13) (drill 1.43) (layers "*.Cu" "*.Mask")
(net 30 "Net-(J3-PadT)") (pintype "passive") (tstamp 7c3aed7f-69c9-4be0-ace7-072fe8f6de8c))
(pad "TN" thru_hole circle (at 0 3.1 180) (size 2.13 2.13) (drill 1.42) (layers "*.Cu" "*.Mask")
(net 7 "Net-(J2-PadT)") (pintype "passive") (tstamp 2c82bbde-a9a3-4546-be7b-c54c25f432f3))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp f8494bf8-b039-424c-aacb-42247e102d50) (hatch full 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254) (filled_areas_thickness no)
(keepout (tracks not_allowed) (vias not_allowed) (pads not_allowed) (copperpour not_allowed) (footprints not_allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 62.555141 50.3)
(xy 62.53493 50.054171)
(xy 62.474841 49.814945)
(xy 62.376486 49.588744)
(xy 62.242508 49.381645)
(xy 62.076504 49.19921)
(xy 61.882932 49.046336)
(xy 61.666992 48.927131)
(xy 61.434482 48.844794)
(xy 61.191646 48.801539)
(xy 60.945007 48.798525)
(xy 60.701187 48.835835)
(xy 60.466734 48.912466)
(xy 60.247946 49.02636)
(xy 60.050697 49.174458)
(xy 59.880286 49.352784)
(xy 59.741288 49.556548)
(xy 59.637436 49.780278)
(xy 59.571519 50.017965)
(xy 59.545308 50.263226)
(xy 59.559507 50.509475)
(xy 59.613734 50.750099)
(xy 59.706532 50.978634)
(xy 59.835411 51.188945)
(xy 59.996908 51.375382)
(xy 60.186687 51.532939)
(xy 60.39965 51.657385)
(xy 60.630079 51.745377)
(xy 60.871785 51.794553)
(xy 61.118278 51.803592)
(xy 61.362936 51.77225)
(xy 61.599191 51.70137)
(xy 61.820697 51.592856)
(xy 62.021505 51.449621)
(xy 62.196223 51.275512)
(xy 62.340158 51.075205)
(xy 62.449445 50.854079)
(xy 62.521149 50.618074)
(xy 62.553344 50.373526)
)
)
)
(model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 45875526-599e-43ed-a945-d3272637f806)
(at 153 41)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Mouser" "667-ERJ-S06F1201V")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/d63a5bef-699e-4472-a145-27bb27d0c053")
(attr smd)
(fp_text reference "R6" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cccd89f-6161-49b1-81ce-7d59ec0c4217)
)
(fp_text value "12k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82e627f9-a3fa-4f70-8a64-23c277f4dc51)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 3bb957a1-1bda-423d-9c5a-b811896d16c2)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f38785ac-30ff-4ff6-9e3c-90f6c47a5d7e))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d6dc76f-5f29-4f67-a5d2-e4f161dad405))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d019df6-980c-44fc-8079-f47ea49e263a))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83101fd0-ef4f-420e-8faa-459ce96d273d))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c679cea7-a095-4c5f-80d9-5b8802216d4b))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09abe2e8-b0d0-43c0-9041-d586f56b2eb1))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ca2632d-f40f-498a-9c2c-0aa9fd610929))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8dacee2-e6d4-4256-b883-ef257abe956d))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2ea18c8-8c5d-46f6-aaca-91d5e0b70dda))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6fc65c9-87ee-4dbb-9922-3be3b7710f82))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 1 "GND") (pintype "passive") (tstamp a667fe15-7095-4cbf-8092-b82851fa6937))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 34 "Net-(U4A-+)") (pintype "passive") (tstamp 781612f0-90c6-4506-ad88-e6935d2e0233))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" (layer "F.Cu")
(tstamp 49ffab15-3e36-4e78-a571-04634082a851)
(at 59 88)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Mouser" "81-BLM21A601F")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005ecbf5a9")
(attr smd)
(fp_text reference "FB4" (at 0 -1.65) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f1aee65-d130-4e6d-8541-a9333d30117a)
)
(fp_text value "600R @ 100Mhz" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd464456-01fd-4400-ac21-80b490fb4ef7)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp eecd3aad-be2b-4ae4-add0-bdae10d02832)
)
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a8a7dce-3164-481e-92cf-35bf7b64ac36))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6c2195b-3a48-4e3c-be92-cf8930db22dd))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51db7fae-8f38-4d0a-a735-1b29befda385))
(fp_line (start -1.85 0.95) (end -1.85 -0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15e32515-23c1-43bc-a87f-87ecca473eaa))
(fp_line (start 1.85 -0.95) (end 1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1e4cbd9-70e7-4315-a480-47777053ba43))
(fp_line (start 1.85 0.95) (end -1.85 0.95)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba663c49-7141-4821-9df4-d38ae0ddbf06))
(fp_line (start -1 -0.625) (end 1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b8f0428-f765-433d-8915-48d5c369f8bc))
(fp_line (start -1 0.625) (end -1 -0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2daffc20-4120-49d0-823c-07dd4a811b30))
(fp_line (start 1 -0.625) (end 1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58422453-8538-470e-b414-99f4a6a01f85))
(fp_line (start 1 0.625) (end -1 0.625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fae06bdb-8020-4fb7-9024-cf257c605645))
(pad "1" smd roundrect (at -1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 13 "Net-(C14-Pad1)") (pintype "passive") (tstamp b68a18d2-2cc0-4c7f-96ec-30f818763c6f))
(pad "2" smd roundrect (at 1 0) (size 1.2 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.208333)
(net 16 "Net-(U3--OUT)") (pintype "passive") (tstamp bdeb33cc-4538-4ddd-9761-a84e865e8b25))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SO:SO-8_5.3x6.2mm_P1.27mm" (layer "F.Cu")
(tstamp 4d26b475-630f-4cdf-a7a0-f6de8ea33c7d)
(at 55 61)
(descr "SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SO SO")
(property "Sheetfile" "eurorack_balanced_out.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8")
(property "ki_keywords" "dual opamp")
(path "/00000000-0000-0000-0000-0000608be71a")
(attr smd)
(fp_text reference "U1" (at 0 -2) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ddee357-3a25-4387-b4f7-388cb0fdd064)
)
(fp_text value "TL072" (at 0 4.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ec27563-eb56-4b71-8085-b16a8afa4dfe)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d2bf6d7-3fa1-4e3e-a314-15b7c70b1066)
)
(fp_line (start -2.76 -3.21) (end -2.76 -2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff6f8caf-13c5-4784-9177-7ca1bd672771))
(fp_line (start -2.76 -2.465) (end -4.45 -2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 685d04dc-fbd5-4a95-96a4-1a00e988f204))
(fp_line (start -2.76 3.21) (end -2.76 2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1ee4725-8e28-4ca8-9d05-b5816d163670))
(fp_line (start 0 -3.21) (end -2.76 -3.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27a38512-deed-4eb6-8094-3176f157a981))
(fp_line (start 0 -3.21) (end 2.76 -3.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4660cf38-94ff-4a76-9bfa-c4b538ea21fb))
(fp_line (start 0 3.21) (end -2.76 3.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c879c18a-1a7f-4ba5-9ce1-6eda231265c0))
(fp_line (start 0 3.21) (end 2.76 3.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b5fdecf-82a7-4954-a64e-321a0158995e))
(fp_line (start 2.76 -3.21) (end 2.76 -2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50503b45-6d07-41b6-965f-e4939396f90b))
(fp_line (start 2.76 3.21) (end 2.76 2.465)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e020518b-0863-4631-b02a-f46b69a988e0))
(fp_line (start -4.7 -3.35) (end -4.7 3.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61121e04-97b7-4236-8971-15da1a019d60))
(fp_line (start -4.7 3.35) (end 4.7 3.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d1b4959-9ed5-42f3-90be-3b52f5a1ce07))
(fp_line (start 4.7 -3.35) (end -4.7 -3.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0de994e8-cf79-4492-9926-709f4970d85e))
(fp_line (start 4.7 3.35) (end 4.7 -3.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9ad83a6-436e-4e51-8104-08a0e5a6f998))
(fp_line (start -2.65 -2.1) (end -1.65 -3.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf7d5dae-205c-47d5-acdb-9eee42d4208a))
(fp_line (start -2.65 3.1) (end -2.65 -2.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c79c123-57be-46f2-b374-c14716cb6c1a))
(fp_line (start -1.65 -3.1) (end 2.65 -3.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81af95fb-e2c5-4aaf-9dc9-59a6eb97957a))
(fp_line (start 2.65 -3.1) (end 2.65 3.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2b60dfb-04f3-4a25-917a-e96106c1b957))
(fp_line (start 2.65 3.1) (end -2.65 3.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80114d53-74ac-46a2-84dc-f5f021ee635c))
(pad "1" smd roundrect (at -3.5 -1.905) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "Net-(U1A--)") (pintype "output") (tstamp 5983ab4b-be4d-4578-8390-c6f1d2797c99))
(pad "2" smd roundrect (at -3.5 -0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 36 "Net-(U1A--)") (pinfunction "-") (pintype "input") (tstamp 816dc13a-b0ce-432f-9a84-3af2aa29e181))
(pad "3" smd roundrect (at -3.5 0.635) (size 1.9 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)