aboutsummaryrefslogtreecommitdiff
path: root/potentiosynth/driver-pcb/galvanosynth.net
blob: 9d48d9c9228482b1364f14eeae9f77a3498edf4d (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
(export (version D)
  (design
    (source /home/blaise/uw-madison/galvanosynth/PCB/galvanosynth.sch)
    (date "Thu 30 Jan 2020 02:30:12 PM CST")
    (tool "Eeschema 5.1.5+dfsg1-2")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.1.0)
        (date 2020-01-30)
        (source galvanosynth.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu))))
    (sheet (number 2) (name /2/) (tstamps /5E3EAB60/)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.0.0)
        (date 2020-01-30)
        (source active-feedback.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu))))
    (sheet (number 3) (name /6/) (tstamps /5E4039E6/)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.0.0)
        (date 2020-01-30)
        (source active-feedback.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu))))
    (sheet (number 4) (name /7/) (tstamps /5E4039EC/)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.0.0)
        (date 2020-01-30)
        (source active-feedback.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu))))
    (sheet (number 5) (name /8/) (tstamps /5E4039F2/)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.0.0)
        (date 2020-01-30)
        (source active-feedback.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu))))
    (sheet (number 6) (name /5/) (tstamps /5E4039E0/)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.0.0)
        (date 2020-01-30)
        (source active-feedback.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu))))
    (sheet (number 7) (name /3/) (tstamps /5E3EC44B/)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.0.0)
        (date 2020-01-30)
        (source active-feedback.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu))))
    (sheet (number 8) (name /4/) (tstamps /5E3ED540/)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.0.0)
        (date 2020-01-30)
        (source active-feedback.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu))))
    (sheet (number 9) (name /1/) (tstamps /5E39B760/)
      (title_block
        (title galvanosynth)
        (company "University of Wisconsin-Madison")
        (rev 4.0.0)
        (date 2020-01-30)
        (source active-feedback.sch)
        (comment (number 1) (value "Instrument Shop"))
        (comment (number 2) (value "Department of Chemistry"))
        (comment (number 3) (value "Blaise Thompson"))
        (comment (number 4) (value bthompson@chem.wisc.edu)))))
  (components
    (comp (ref C1)
      (value 100uF)
      (footprint Capacitor_THT:CP_Radial_Tantal_D7.0mm_P2.50mm)
      (libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BE211A8))
    (comp (ref U0)
      (value L7815)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib Regulator_Linear) (part L7815) (description "Positive 1.5A 35V Linear Regulator, Fixed Output 15V, TO-220/TO-263/TO-252"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BE47BAB))
    (comp (ref C2)
      (value 330nF)
      (footprint Capacitor_THT:CP_Radial_Tantal_D7.0mm_P2.50mm)
      (libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BE494E1))
    (comp (ref C3)
      (value 100nF)
      (footprint Capacitor_THT:CP_Radial_Tantal_D7.0mm_P2.50mm)
      (libsource (lib Device) (part CP1) (description "Polarized capacitor, US symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BE495CB))
    (comp (ref TP2)
      (value TestPoint)
      (footprint TestPoint:TestPoint_THTPad_D3.0mm_Drill1.5mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint) (description "test point"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEBD293))
    (comp (ref TP1)
      (value TestPoint)
      (footprint TestPoint:TestPoint_THTPad_D3.0mm_Drill1.5mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint) (description "test point"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEBEB23))
    (comp (ref RV0)
      (value 1k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5E22E94B))
    (comp (ref R0)
      (value 10k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5E22F737))
    (comp (ref JP0)
      (value Barrel_Jack_Switch)
      (footprint Connector_BarrelJack:BarrelJack_Horizontal)
      (datasheet ~)
      (libsource (lib Connector) (part Barrel_Jack_Switch) (description "DC Barrel Jack with an internal switch"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5E723E68))
    (comp (ref JP1)
      (value Barrel_Jack_Switch)
      (footprint Connector_BarrelJack:BarrelJack_Horizontal)
      (datasheet ~)
      (libsource (lib Connector) (part Barrel_Jack_Switch) (description "DC Barrel Jack with an internal switch"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5E72439C))
    (comp (ref J1)
      (value Conn_01x40)
      (footprint Connector_PinHeader_2.54mm:PinHeader_1x40_P2.54mm_Horizontal)
      (datasheet ~)
      (libsource (lib Connector_Generic) (part Conn_01x40) (description "Generic connector, single row, 01x40, script generated (kicad-library-utils/schlib/autogen/connector/)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5DEA202E))
    (comp (ref TP3)
      (value TestPoint)
      (footprint TestPoint:TestPoint_THTPad_D3.0mm_Drill1.5mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint) (description "test point"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5DF5B544))
    (comp (ref R1)
      (value 68)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5E2951CD))
    (comp (ref QD2)
      (value IRF630)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib IRF630) (part IRF630) (description ""))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E5D6B88))
    (comp (ref QE2)
      (value 2N7000)
      (footprint Package_TO_SOT_THT:TO-92_Inline)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (libsource (lib Transistor_FET) (part 2N7000) (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92"))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E5D6BA0))
    (comp (ref RV2)
      (value 2k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E5D6BAB))
    (comp (ref R-2)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E5D6BC6))
    (comp (ref U2)
      (value LM358)
      (footprint Package_DIP:DIP-8_W7.62mm_LongPads)
      (libsource (lib LM358) (part LM358) (description ""))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E5D6B7B))
    (comp (ref R+2)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E5D6BCC))
    (comp (ref RF2)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E5D6BB9))
    (comp (ref RG2)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E66B3AD))
    (comp (ref RL2)
      (value 10)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /2/) (tstamps /5E3EAB60/))
      (tstamp 5E3668AF))
    (comp (ref QD6)
      (value IRF630)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib IRF630) (part IRF630) (description ""))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E5D6B88))
    (comp (ref QE6)
      (value 2N7000)
      (footprint Package_TO_SOT_THT:TO-92_Inline)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (libsource (lib Transistor_FET) (part 2N7000) (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92"))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E5D6BA0))
    (comp (ref RV6)
      (value 2k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E5D6BAB))
    (comp (ref R-6)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E5D6BC6))
    (comp (ref U6)
      (value LM358)
      (footprint Package_DIP:DIP-8_W7.62mm_LongPads)
      (libsource (lib LM358) (part LM358) (description ""))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E5D6B7B))
    (comp (ref R+6)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E5D6BCC))
    (comp (ref RF6)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E5D6BB9))
    (comp (ref RG6)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E66B3AD))
    (comp (ref RL6)
      (value 10)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /6/) (tstamps /5E4039E6/))
      (tstamp 5E3668AF))
    (comp (ref QD7)
      (value IRF630)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib IRF630) (part IRF630) (description ""))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E5D6B88))
    (comp (ref QE7)
      (value 2N7000)
      (footprint Package_TO_SOT_THT:TO-92_Inline)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (libsource (lib Transistor_FET) (part 2N7000) (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92"))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E5D6BA0))
    (comp (ref RV7)
      (value 2k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E5D6BAB))
    (comp (ref R-7)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E5D6BC6))
    (comp (ref U7)
      (value LM358)
      (footprint Package_DIP:DIP-8_W7.62mm_LongPads)
      (libsource (lib LM358) (part LM358) (description ""))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E5D6B7B))
    (comp (ref R+7)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E5D6BCC))
    (comp (ref RF7)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E5D6BB9))
    (comp (ref RG7)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E66B3AD))
    (comp (ref RL7)
      (value 10)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /7/) (tstamps /5E4039EC/))
      (tstamp 5E3668AF))
    (comp (ref QD8)
      (value IRF630)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib IRF630) (part IRF630) (description ""))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E5D6B88))
    (comp (ref QE8)
      (value 2N7000)
      (footprint Package_TO_SOT_THT:TO-92_Inline)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (libsource (lib Transistor_FET) (part 2N7000) (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92"))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E5D6BA0))
    (comp (ref RV8)
      (value 2k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E5D6BAB))
    (comp (ref R-8)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E5D6BC6))
    (comp (ref U8)
      (value LM358)
      (footprint Package_DIP:DIP-8_W7.62mm_LongPads)
      (libsource (lib LM358) (part LM358) (description ""))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E5D6B7B))
    (comp (ref R+8)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E5D6BCC))
    (comp (ref RF8)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E5D6BB9))
    (comp (ref RG8)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E66B3AD))
    (comp (ref RL8)
      (value 10)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /8/) (tstamps /5E4039F2/))
      (tstamp 5E3668AF))
    (comp (ref QD5)
      (value IRF630)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib IRF630) (part IRF630) (description ""))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E5D6B88))
    (comp (ref QE5)
      (value 2N7000)
      (footprint Package_TO_SOT_THT:TO-92_Inline)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (libsource (lib Transistor_FET) (part 2N7000) (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92"))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E5D6BA0))
    (comp (ref RV5)
      (value 2k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E5D6BAB))
    (comp (ref R-5)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E5D6BC6))
    (comp (ref U5)
      (value LM358)
      (footprint Package_DIP:DIP-8_W7.62mm_LongPads)
      (libsource (lib LM358) (part LM358) (description ""))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E5D6B7B))
    (comp (ref R+5)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E5D6BCC))
    (comp (ref RF5)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E5D6BB9))
    (comp (ref RG5)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E66B3AD))
    (comp (ref RL5)
      (value 10)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /5/) (tstamps /5E4039E0/))
      (tstamp 5E3668AF))
    (comp (ref QD3)
      (value IRF630)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib IRF630) (part IRF630) (description ""))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E5D6B88))
    (comp (ref QE3)
      (value 2N7000)
      (footprint Package_TO_SOT_THT:TO-92_Inline)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (libsource (lib Transistor_FET) (part 2N7000) (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92"))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E5D6BA0))
    (comp (ref RV3)
      (value 2k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E5D6BAB))
    (comp (ref R-3)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E5D6BC6))
    (comp (ref U3)
      (value LM358)
      (footprint Package_DIP:DIP-8_W7.62mm_LongPads)
      (libsource (lib LM358) (part LM358) (description ""))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E5D6B7B))
    (comp (ref R+3)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E5D6BCC))
    (comp (ref RF3)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E5D6BB9))
    (comp (ref RG3)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E66B3AD))
    (comp (ref RL3)
      (value 10)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /3/) (tstamps /5E3EC44B/))
      (tstamp 5E3668AF))
    (comp (ref QD4)
      (value IRF630)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib IRF630) (part IRF630) (description ""))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E5D6B88))
    (comp (ref QE4)
      (value 2N7000)
      (footprint Package_TO_SOT_THT:TO-92_Inline)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (libsource (lib Transistor_FET) (part 2N7000) (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92"))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E5D6BA0))
    (comp (ref RV4)
      (value 2k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E5D6BAB))
    (comp (ref R-4)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E5D6BC6))
    (comp (ref U4)
      (value LM358)
      (footprint Package_DIP:DIP-8_W7.62mm_LongPads)
      (libsource (lib LM358) (part LM358) (description ""))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E5D6B7B))
    (comp (ref R+4)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E5D6BCC))
    (comp (ref RF4)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E5D6BB9))
    (comp (ref RG4)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E66B3AD))
    (comp (ref RL4)
      (value 10)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /4/) (tstamps /5E3ED540/))
      (tstamp 5E3668AF))
    (comp (ref QD1)
      (value IRF630)
      (footprint Package_TO_SOT_THT:TO-220-3_Vertical)
      (libsource (lib IRF630) (part IRF630) (description ""))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E5D6B88))
    (comp (ref QE1)
      (value 2N7000)
      (footprint Package_TO_SOT_THT:TO-92_Inline)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (libsource (lib Transistor_FET) (part 2N7000) (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92"))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E5D6BA0))
    (comp (ref RV1)
      (value 2k)
      (footprint Potentiometer_THT:Potentiometer_Bourns_3296X_Horizontal)
      (datasheet ~)
      (libsource (lib Device) (part R_POT_TRIM_US) (description "Trim-potentiometer, US symbol"))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E5D6BAB))
    (comp (ref R-1)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E5D6BC6))
    (comp (ref U1)
      (value LM358)
      (footprint Package_DIP:DIP-8_W7.62mm_LongPads)
      (libsource (lib LM358) (part LM358) (description ""))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E5D6B7B))
    (comp (ref R+1)
      (value 1k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E5D6BCC))
    (comp (ref RF1)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E5D6BB9))
    (comp (ref RG1)
      (value 100k)
      (footprint Resistor_SMD:R_1206_3216Metric)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E66B3AD))
    (comp (ref RL1)
      (value 10)
      (datasheet ~)
      (libsource (lib Device) (part R_US) (description "Resistor, US symbol"))
      (sheetpath (names /1/) (tstamps /5E39B760/))
      (tstamp 5E3668AF)))
  (libparts
    (libpart (lib Connector) (part Barrel_Jack_Switch)
      (description "DC Barrel Jack with an internal switch")
      (docs ~)
      (footprints
        (fp BarrelJack*))
      (fields
        (field (name Reference) J)
        (field (name Value) Barrel_Jack_Switch))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))
        (pin (num 3) (name ~) (type passive))))
    (libpart (lib Connector) (part TestPoint)
      (description "test point")
      (docs ~)
      (footprints
        (fp Pin*)
        (fp Test*))
      (fields
        (field (name Reference) TP)
        (field (name Value) TestPoint))
      (pins
        (pin (num 1) (name 1) (type passive))))
    (libpart (lib Connector_Generic) (part Conn_01x40)
      (description "Generic connector, single row, 01x40, script generated (kicad-library-utils/schlib/autogen/connector/)")
      (docs ~)
      (footprints
        (fp Connector*:*_1x??_*))
      (fields
        (field (name Reference) J)
        (field (name Value) Conn_01x40))
      (pins
        (pin (num 1) (name Pin_1) (type passive))
        (pin (num 2) (name Pin_2) (type passive))
        (pin (num 3) (name Pin_3) (type passive))
        (pin (num 4) (name Pin_4) (type passive))
        (pin (num 5) (name Pin_5) (type passive))
        (pin (num 6) (name Pin_6) (type passive))
        (pin (num 7) (name Pin_7) (type passive))
        (pin (num 8) (name Pin_8) (type passive))
        (pin (num 9) (name Pin_9) (type passive))
        (pin (num 10) (name Pin_10) (type passive))
        (pin (num 11) (name Pin_11) (type passive))
        (pin (num 12) (name Pin_12) (type passive))
        (pin (num 13) (name Pin_13) (type passive))
        (pin (num 14) (name Pin_14) (type passive))
        (pin (num 15) (name Pin_15) (type passive))
        (pin (num 16) (name Pin_16) (type passive))
        (pin (num 17) (name Pin_17) (type passive))
        (pin (num 18) (name Pin_18) (type passive))
        (pin (num 19) (name Pin_19) (type passive))
        (pin (num 20) (name Pin_20) (type passive))
        (pin (num 21) (name Pin_21) (type passive))
        (pin (num 22) (name Pin_22) (type passive))
        (pin (num 23) (name Pin_23) (type passive))
        (pin (num 24) (name Pin_24) (type passive))
        (pin (num 25) (name Pin_25) (type passive))
        (pin (num 26) (name Pin_26) (type passive))
        (pin (num 27) (name Pin_27) (type passive))
        (pin (num 28) (name Pin_28) (type passive))
        (pin (num 29) (name Pin_29) (type passive))
        (pin (num 30) (name Pin_30) (type passive))
        (pin (num 31) (name Pin_31) (type passive))
        (pin (num 32) (name Pin_32) (type passive))
        (pin (num 33) (name Pin_33) (type passive))
        (pin (num 34) (name Pin_34) (type passive))
        (pin (num 35) (name Pin_35) (type passive))
        (pin (num 36) (name Pin_36) (type passive))
        (pin (num 37) (name Pin_37) (type passive))
        (pin (num 38) (name Pin_38) (type passive))
        (pin (num 39) (name Pin_39) (type passive))
        (pin (num 40) (name Pin_40) (type passive))))
    (libpart (lib Device) (part CP1)
      (description "Polarized capacitor, US symbol")
      (docs ~)
      (footprints
        (fp CP_*))
      (fields
        (field (name Reference) C)
        (field (name Value) CP1))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib Device) (part R_POT_TRIM_US)
      (description "Trim-potentiometer, US symbol")
      (docs ~)
      (footprints
        (fp Potentiometer*))
      (fields
        (field (name Reference) RV)
        (field (name Value) R_POT_TRIM_US))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))))
    (libpart (lib Device) (part R_US)
      (description "Resistor, US symbol")
      (docs ~)
      (footprints
        (fp R_*))
      (fields
        (field (name Reference) R)
        (field (name Value) R_US))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib IRF630) (part IRF630)
      (fields
        (field (name Reference) Q?)
        (field (name Value) IRF630))
      (pins
        (pin (num 1) (name G) (type input))
        (pin (num 2) (name D) (type passive))
        (pin (num 3) (name S) (type passive))))
    (libpart (lib LM358) (part LM358)
      (footprints
        (fp N08E)
        (fp N08Em)
        (fp N08El))
      (fields
        (field (name Reference) U)
        (field (name Value) LM358)
        (field (name Footprint) N08E))
      (pins
        (pin (num 1) (name ~) (type output))
        (pin (num 2) (name -) (type input))
        (pin (num 3) (name +) (type input))
        (pin (num 4) (name V-) (type input))
        (pin (num 5) (name +) (type input))
        (pin (num 6) (name -) (type input))
        (pin (num 7) (name ~) (type output))
        (pin (num 8) (name V+) (type input))))
    (libpart (lib Regulator_Linear) (part L7805)
      (aliases
        (alias L7806)
        (alias L7808)
        (alias L7885)
        (alias L7809)
        (alias L7812)
        (alias L7815)
        (alias L7818)
        (alias L7824))
      (description "Positive 1.5A 35V Linear Regulator, Fixed Output 5V, TO-220/TO-263/TO-252")
      (docs http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf)
      (footprints
        (fp TO?252*)
        (fp TO?263*)
        (fp TO?220*))
      (fields
        (field (name Reference) U)
        (field (name Value) L7805))
      (pins
        (pin (num 1) (name IN) (type power_in))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name OUT) (type power_out))))
    (libpart (lib Transistor_FET) (part 2N7000)
      (description "0.2A Id, 200V Vds, N-Channel MOSFET, 2.6V Logic Level, TO-92")
      (docs https://www.fairchildsemi.com/datasheets/2N/2N7000.pdf)
      (footprints
        (fp TO?92*))
      (fields
        (field (name Reference) Q)
        (field (name Value) 2N7000)
        (field (name Footprint) Package_TO_SOT_THT:TO-92_Inline))
      (pins
        (pin (num 1) (name S) (type passive))
        (pin (num 2) (name G) (type input))
        (pin (num 3) (name D) (type passive)))))
  (libraries
    (library (logical Connector)
      (uri /usr/share/kicad/library/Connector.lib))
    (library (logical Connector_Generic)
      (uri /usr/share/kicad/library/Connector_Generic.lib))
    (library (logical Device)
      (uri /usr/share/kicad/library/Device.lib))
    (library (logical IRF630)
      (uri /home/blaise/uw-madison/galvanosynth/PCB/IRF630.lib))
    (library (logical LM358)
      (uri /home/blaise/uw-madison/galvanosynth/PCB/lib_sch/LM358.lib))
    (library (logical Regulator_Linear)
      (uri /usr/share/kicad/library/Regulator_Linear.lib))
    (library (logical Transistor_FET)
      (uri /usr/share/kicad/library/Transistor_FET.lib)))
  (nets
    (net (code 1) (name /3/RETURN)
      (node (ref R-3) (pin 2))
      (node (ref J1) (pin 11))
      (node (ref U3) (pin 6))
      (node (ref RV3) (pin 2))
      (node (ref RV3) (pin 3)))
    (net (code 2) (name /8/SUPPLY)
      (node (ref QD8) (pin 3))
      (node (ref J1) (pin 40)))
    (net (code 3) (name /8/ERROR)
      (node (ref QE8) (pin 3))
      (node (ref J1) (pin 39)))
    (net (code 4) (name /1/ERROR)
      (node (ref QE1) (pin 3))
      (node (ref J1) (pin 4)))
    (net (code 5) (name "Net-(R0-Pad2)")
      (node (ref R0) (pin 2))
      (node (ref RV0) (pin 1)))
    (net (code 6) (name /4/RETURN)
      (node (ref RV4) (pin 2))
      (node (ref U4) (pin 6))
      (node (ref R-4) (pin 2))
      (node (ref RV4) (pin 3))
      (node (ref J1) (pin 16)))
    (net (code 7) (name /4/SUPPLY)
      (node (ref J1) (pin 20))
      (node (ref QD4) (pin 3)))
    (net (code 8) (name /7/RETURN)
      (node (ref J1) (pin 31))
      (node (ref RV7) (pin 3))
      (node (ref U7) (pin 6))
      (node (ref RV7) (pin 2))
      (node (ref R-7) (pin 2)))
    (net (code 9) (name /5/SUPPLY)
      (node (ref J1) (pin 25))
      (node (ref QD5) (pin 3)))
    (net (code 10) (name /5/ERROR)
      (node (ref J1) (pin 24))
      (node (ref QE5) (pin 3)))
    (net (code 11) (name /5/RETURN)
      (node (ref RV5) (pin 3))
      (node (ref RV5) (pin 2))
      (node (ref R-5) (pin 2))
      (node (ref J1) (pin 21))
      (node (ref U5) (pin 6)))
    (net (code 12) (name /6/RETURN)
      (node (ref U6) (pin 6))
      (node (ref J1) (pin 26))
      (node (ref RV6) (pin 3))
      (node (ref RV6) (pin 2))
      (node (ref R-6) (pin 2)))
    (net (code 13) (name /6/SUPPLY)
      (node (ref J1) (pin 30))
      (node (ref QD6) (pin 3)))
    (net (code 14) (name /8/RETURN)
      (node (ref RV8) (pin 2))
      (node (ref J1) (pin 36))
      (node (ref R-8) (pin 2))
      (node (ref RV8) (pin 3))
      (node (ref U8) (pin 6)))
    (net (code 15) (name /7/SUPPLY)
      (node (ref J1) (pin 35))
      (node (ref QD7) (pin 3)))
    (net (code 16) (name /6/ERROR)
      (node (ref QE6) (pin 3))
      (node (ref J1) (pin 29)))
    (net (code 17) (name /7/ERROR)
      (node (ref J1) (pin 34))
      (node (ref QE7) (pin 3)))
    (net (code 18) (name +15V)
      (node (ref QD4) (pin 2))
      (node (ref U4) (pin 8))
      (node (ref U6) (pin 8))
      (node (ref QD7) (pin 2))
      (node (ref J1) (pin 27))
      (node (ref U5) (pin 8))
      (node (ref QD2) (pin 2))
      (node (ref U1) (pin 8))
      (node (ref QD1) (pin 2))
      (node (ref QD5) (pin 2))
      (node (ref U3) (pin 8))
      (node (ref QD3) (pin 2))
      (node (ref QD6) (pin 2))
      (node (ref U2) (pin 8))
      (node (ref J1) (pin 7))
      (node (ref U8) (pin 8))
      (node (ref U0) (pin 3))
      (node (ref QD8) (pin 2))
      (node (ref TP2) (pin 1))
      (node (ref J1) (pin 37))
      (node (ref R0) (pin 1))
      (node (ref C3) (pin 1))
      (node (ref J1) (pin 22))
      (node (ref J1) (pin 32))
      (node (ref J1) (pin 2))
      (node (ref J1) (pin 17))
      (node (ref U7) (pin 8))
      (node (ref J1) (pin 12)))
    (net (code 19) (name GND)
      (node (ref QE2) (pin 1))
      (node (ref C3) (pin 2))
      (node (ref RG2) (pin 2))
      (node (ref RL8) (pin 1))
      (node (ref RL2) (pin 1))
      (node (ref U8) (pin 4))
      (node (ref U3) (pin 4))
      (node (ref J1) (pin 33))
      (node (ref RG5) (pin 2))
      (node (ref RL5) (pin 1))
      (node (ref J1) (pin 13))
      (node (ref C1) (pin 2))
      (node (ref J1) (pin 18))
      (node (ref J1) (pin 23))
      (node (ref U5) (pin 4))
      (node (ref RL3) (pin 1))
      (node (ref RG3) (pin 2))
      (node (ref QE5) (pin 1))
      (node (ref J1) (pin 3))
      (node (ref U2) (pin 4))
      (node (ref RG8) (pin 2))
      (node (ref QE3) (pin 1))
      (node (ref J1) (pin 8))
      (node (ref QE8) (pin 1))
      (node (ref RL7) (pin 1))
      (node (ref R1) (pin 2))
      (node (ref QE4) (pin 1))
      (node (ref U4) (pin 4))
      (node (ref RG7) (pin 2))
      (node (ref QE1) (pin 1))
      (node (ref RL4) (pin 1))
      (node (ref QE7) (pin 1))
      (node (ref RG4) (pin 2))
      (node (ref J1) (pin 28))
      (node (ref RG6) (pin 2))
      (node (ref RL6) (pin 1))
      (node (ref JP1) (pin 2))
      (node (ref JP0) (pin 3))
      (node (ref JP0) (pin 2))
      (node (ref U1) (pin 4))
      (node (ref C2) (pin 2))
      (node (ref U7) (pin 4))
      (node (ref U6) (pin 4))
      (node (ref QE6) (pin 1))
      (node (ref RG1) (pin 2))
      (node (ref RL1) (pin 1))
      (node (ref U0) (pin 2))
      (node (ref J1) (pin 38))
      (node (ref TP1) (pin 1))
      (node (ref JP1) (pin 3)))
    (net (code 20) (name "Net-(R1-Pad1)")
      (node (ref R1) (pin 1))
      (node (ref RV0) (pin 3)))
    (net (code 21) (name /3/ERROR)
      (node (ref J1) (pin 14))
      (node (ref QE3) (pin 3)))
    (net (code 22) (name /2/RETURN)
      (node (ref RV2) (pin 2))
      (node (ref J1) (pin 6))
      (node (ref U2) (pin 6))
      (node (ref R-2) (pin 2))
      (node (ref RV2) (pin 3)))
    (net (code 23) (name /2/SUPPLY)
      (node (ref QD2) (pin 3))
      (node (ref J1) (pin 10)))
    (net (code 24) (name /1/CONTROL)
      (node (ref R+6) (pin 1))
      (node (ref R+7) (pin 1))
      (node (ref R+4) (pin 1))
      (node (ref U5) (pin 5))
      (node (ref R+5) (pin 1))
      (node (ref R+8) (pin 1))
      (node (ref U8) (pin 5))
      (node (ref U6) (pin 5))
      (node (ref U7) (pin 5))
      (node (ref RV0) (pin 2))
      (node (ref R+3) (pin 1))
      (node (ref U2) (pin 5))
      (node (ref R+2) (pin 1))
      (node (ref U3) (pin 5))
      (node (ref U1) (pin 5))
      (node (ref R+1) (pin 1))
      (node (ref TP3) (pin 1))
      (node (ref U4) (pin 5)))
    (net (code 25) (name "Net-(C1-Pad1)")
      (node (ref JP1) (pin 1))
      (node (ref JP0) (pin 1))
      (node (ref C1) (pin 1))
      (node (ref C2) (pin 1))
      (node (ref U0) (pin 1)))
    (net (code 26) (name /1/RETURN)
      (node (ref U1) (pin 6))
      (node (ref J1) (pin 1))
      (node (ref RV1) (pin 3))
      (node (ref RV1) (pin 2))
      (node (ref R-1) (pin 2)))
    (net (code 27) (name /1/SUPPLY)
      (node (ref J1) (pin 5))
      (node (ref QD1) (pin 3)))
    (net (code 28) (name /2/ERROR)
      (node (ref J1) (pin 9))
      (node (ref QE2) (pin 3)))
    (net (code 29) (name /4/ERROR)
      (node (ref J1) (pin 19))
      (node (ref QE4) (pin 3)))
    (net (code 30) (name /3/SUPPLY)
      (node (ref J1) (pin 15))
      (node (ref QD3) (pin 3)))
    (net (code 31) (name "Net-(RL1-Pad2)")
      (node (ref RL1) (pin 2))
      (node (ref RV1) (pin 1)))
    (net (code 32) (name "Net-(R-1-Pad1)")
      (node (ref U1) (pin 2))
      (node (ref R-1) (pin 1))
      (node (ref RF1) (pin 1)))
    (net (code 33) (name "Net-(QE1-Pad2)")
      (node (ref QE1) (pin 2))
      (node (ref U1) (pin 1))
      (node (ref RF1) (pin 2)))
    (net (code 34) (name "Net-(QD1-Pad1)")
      (node (ref U1) (pin 7))
      (node (ref QD1) (pin 1)))
    (net (code 35) (name "Net-(R+1-Pad2)")
      (node (ref U1) (pin 3))
      (node (ref R+1) (pin 2))
      (node (ref RG1) (pin 1)))
    (net (code 36) (name "Net-(R-2-Pad1)")
      (node (ref R-2) (pin 1))
      (node (ref U2) (pin 2))
      (node (ref RF2) (pin 1)))
    (net (code 37) (name "Net-(QE2-Pad2)")
      (node (ref QE2) (pin 2))
      (node (ref RF2) (pin 2))
      (node (ref U2) (pin 1)))
    (net (code 38) (name "Net-(QD2-Pad1)")
      (node (ref U2) (pin 7))
      (node (ref QD2) (pin 1)))
    (net (code 39) (name "Net-(RL2-Pad2)")
      (node (ref RL2) (pin 2))
      (node (ref RV2) (pin 1)))
    (net (code 40) (name "Net-(R+2-Pad2)")
      (node (ref RG2) (pin 1))
      (node (ref R+2) (pin 2))
      (node (ref U2) (pin 3)))
    (net (code 41) (name "Net-(QE3-Pad2)")
      (node (ref U3) (pin 1))
      (node (ref RF3) (pin 2))
      (node (ref QE3) (pin 2)))
    (net (code 42) (name "Net-(QD3-Pad1)")
      (node (ref QD3) (pin 1))
      (node (ref U3) (pin 7)))
    (net (code 43) (name "Net-(RL3-Pad2)")
      (node (ref RL3) (pin 2))
      (node (ref RV3) (pin 1)))
    (net (code 44) (name "Net-(R+3-Pad2)")
      (node (ref R+3) (pin 2))
      (node (ref RG3) (pin 1))
      (node (ref U3) (pin 3)))
    (net (code 45) (name "Net-(R-3-Pad1)")
      (node (ref RF3) (pin 1))
      (node (ref U3) (pin 2))
      (node (ref R-3) (pin 1)))
    (net (code 46) (name "Net-(QE4-Pad2)")
      (node (ref RF4) (pin 2))
      (node (ref QE4) (pin 2))
      (node (ref U4) (pin 1)))
    (net (code 47) (name "Net-(QD4-Pad1)")
      (node (ref QD4) (pin 1))
      (node (ref U4) (pin 7)))
    (net (code 48) (name "Net-(RL4-Pad2)")
      (node (ref RL4) (pin 2))
      (node (ref RV4) (pin 1)))
    (net (code 49) (name "Net-(R+4-Pad2)")
      (node (ref RG4) (pin 1))
      (node (ref U4) (pin 3))
      (node (ref R+4) (pin 2)))
    (net (code 50) (name "Net-(R-4-Pad1)")
      (node (ref RF4) (pin 1))
      (node (ref U4) (pin 2))
      (node (ref R-4) (pin 1)))
    (net (code 51) (name "Net-(QE5-Pad2)")
      (node (ref RF5) (pin 2))
      (node (ref QE5) (pin 2))
      (node (ref U5) (pin 1)))
    (net (code 52) (name "Net-(QD5-Pad1)")
      (node (ref U5) (pin 7))
      (node (ref QD5) (pin 1)))
    (net (code 53) (name "Net-(RL5-Pad2)")
      (node (ref RV5) (pin 1))
      (node (ref RL5) (pin 2)))
    (net (code 54) (name "Net-(R+5-Pad2)")
      (node (ref R+5) (pin 2))
      (node (ref U5) (pin 3))
      (node (ref RG5) (pin 1)))
    (net (code 55) (name "Net-(R-5-Pad1)")
      (node (ref RF5) (pin 1))
      (node (ref R-5) (pin 1))
      (node (ref U5) (pin 2)))
    (net (code 56) (name "Net-(QE6-Pad2)")
      (node (ref RF6) (pin 2))
      (node (ref U6) (pin 1))
      (node (ref QE6) (pin 2)))
    (net (code 57) (name "Net-(QD6-Pad1)")
      (node (ref QD6) (pin 1))
      (node (ref U6) (pin 7)))
    (net (code 58) (name "Net-(RL6-Pad2)")
      (node (ref RL6) (pin 2))
      (node (ref RV6) (pin 1)))
    (net (code 59) (name "Net-(R+6-Pad2)")
      (node (ref U6) (pin 3))
      (node (ref RG6) (pin 1))
      (node (ref R+6) (pin 2)))
    (net (code 60) (name "Net-(R-6-Pad1)")
      (node (ref U6) (pin 2))
      (node (ref RF6) (pin 1))
      (node (ref R-6) (pin 1)))
    (net (code 61) (name "Net-(R-7-Pad1)")
      (node (ref U7) (pin 2))
      (node (ref R-7) (pin 1))
      (node (ref RF7) (pin 1)))
    (net (code 62) (name "Net-(RL7-Pad2)")
      (node (ref RV7) (pin 1))
      (node (ref RL7) (pin 2)))
    (net (code 63) (name "Net-(QE7-Pad2)")
      (node (ref QE7) (pin 2))
      (node (ref U7) (pin 1))
      (node (ref RF7) (pin 2)))
    (net (code 64) (name "Net-(R+7-Pad2)")
      (node (ref R+7) (pin 2))
      (node (ref RG7) (pin 1))
      (node (ref U7) (pin 3)))
    (net (code 65) (name "Net-(QD7-Pad1)")
      (node (ref QD7) (pin 1))
      (node (ref U7) (pin 7)))
    (net (code 66) (name "Net-(QE8-Pad2)")
      (node (ref QE8) (pin 2))
      (node (ref U8) (pin 1))
      (node (ref RF8) (pin 2)))
    (net (code 67) (name "Net-(QD8-Pad1)")
      (node (ref U8) (pin 7))
      (node (ref QD8) (pin 1)))
    (net (code 68) (name "Net-(RL8-Pad2)")
      (node (ref RV8) (pin 1))
      (node (ref RL8) (pin 2)))
    (net (code 69) (name "Net-(R+8-Pad2)")
      (node (ref U8) (pin 3))
      (node (ref R+8) (pin 2))
      (node (ref RG8) (pin 1)))
    (net (code 70) (name "Net-(R-8-Pad1)")
      (node (ref U8) (pin 2))
      (node (ref R-8) (pin 1))
      (node (ref RF8) (pin 1)))))