summaryrefslogtreecommitdiff
path: root/hardware/RedunDC.kicad_sch
blob: 9945a16902d307996d7c9a168cab392ebad455e3 (plain) (blame)
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
(kicad_sch (version 20211123) (generator eeschema)

  (uuid 583ea3e9-7814-447d-b01c-595a8f82f1a9)

  (paper "A4")

  (lib_symbols
    (symbol "Connector:Screw_Terminal_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Screw_Terminal_01x02" (id 1) (at 0 -5.08 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "screw terminal" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "TerminalBlock*:*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Screw_Terminal_01x02_1_1"
        (rectangle (start -1.27 1.27) (end 1.27 -3.81)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (circle (center 0 -2.54) (radius 0.635)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.5334 -2.2098)
            (xy 0.3302 -3.048)
          )
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.5334 0.3302)
            (xy 0.3302 -0.508)
          )
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.3556 -2.032)
            (xy 0.508 -2.8702)
          )
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.3556 0.508)
            (xy 0.508 -0.3302)
          )
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 0 0) (radius 0.635)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at -5.08 0 0) (length 3.81)
          (name "Pin_1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "H" (id 0) (at 0 6.35 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "MountingHole_Pad_0_1"
        (circle (center 0 1.27) (radius 1.27)
          (stroke (width 1.27) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "MountingHole_Pad_1_1"
        (pin input line (at 0 -2.54 90) (length 2.54)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Power_Management:LTC4370xMS" (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -8.89 19.05 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "LTC4370xMS" (id 1) (at 7.62 19.05 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "Package_SO:MSOP-16_3x4mm_P0.5mm" (id 2) (at 0 -22.86 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/4370f.pdf" (id 3) (at 2.54 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "ideal-diode or-ing current sharing load balancing" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "OR Controller Current Sharing Controller N-Channel 2:1, MSOP-16" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "MSOP*3x4mm*P0.5mm*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LTC4370xMS_1_1"
        (rectangle (start -10.16 17.78) (end 10.16 -17.78)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (pin input line (at 12.7 7.62 180) (length 2.54)
          (name "~{EN2}" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 -15.24 0) (length 2.54)
          (name "OUT1" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -12.7 0 0) (length 2.54)
          (name "CPO1" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at -12.7 -10.16 0) (length 2.54)
          (name "GATE1" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -12.7 -5.08 0) (length 2.54)
          (name "VIN1" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 20.32 270) (length 2.54)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -20.32 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -12.7 7.62 0) (length 2.54)
          (name "~{EN1}" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -12.7 15.24 0) (length 2.54)
          (name "RANGE" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 12.7 15.24 180) (length 2.54)
          (name "COMP" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 12.7 -5.08 180) (length 2.54)
          (name "VIN2" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 12.7 -10.16 180) (length 2.54)
          (name "GATE2" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 12.7 0 180) (length 2.54)
          (name "CPO2" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 12.7 -15.24 180) (length 2.54)
          (name "OUT2" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin open_collector line (at 12.7 5.08 180) (length 2.54)
          (name "FETON2" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin open_collector line (at -12.7 5.08 0) (length 2.54)
          (name "FETON1" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Transistor_FET:Si4162DY" (pin_names hide) (in_bom yes) (on_board yes)
      (property "Reference" "Q" (id 0) (at 5.08 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "Si4162DY" (id 1) (at 5.08 0 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 5.08 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "Datasheet" "http://www.vishay.com/docs/68967/si4162dy.pdf" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) (justify left) hide)
      )
      (property "ki_keywords" "N-Channel MOSFET" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "19.3A Id, 30V Vds, TrenchFET N-Channel Power MOSFET, SO-8" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Si4162DY_0_1"
        (polyline
          (pts
            (xy 0.254 0)
            (xy -2.54 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.254 1.905)
            (xy 0.254 -1.905)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 -1.27)
            (xy 0.762 -2.286)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 0.508)
            (xy 0.762 -0.508)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 2.286)
            (xy 0.762 1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 2.54)
            (xy 2.54 1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 -2.54)
            (xy 2.54 0)
            (xy 0.762 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 -1.778)
            (xy 3.302 -1.778)
            (xy 3.302 1.778)
            (xy 0.762 1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.016 0)
            (xy 2.032 0.381)
            (xy 2.032 -0.381)
            (xy 1.016 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy 2.794 0.508)
            (xy 2.921 0.381)
            (xy 3.683 0.381)
            (xy 3.81 0.254)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 3.302 0.381)
            (xy 2.921 -0.254)
            (xy 3.683 -0.254)
            (xy 3.302 0.381)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 1.651 0) (radius 2.794)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 2.54 -1.778) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center 2.54 1.778) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "Si4162DY_1_1"
        (pin passive line (at 2.54 -5.08 90) (length 2.54)
          (name "S" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 -5.08 90) (length 2.54) hide
          (name "S" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 -5.08 90) (length 2.54) hide
          (name "S" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -5.08 0 0) (length 2.54)
          (name "G" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54) hide
          (name "D" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54) hide
          (name "D" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54) hide
          (name "D" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54)
          (name "D" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (id 1) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 118.745 69.85) (diameter 0) (color 0 0 0 0)
    (uuid e5cc9880-54a3-42c1-9900-8d30604786e4)
  )

  (no_connect (at 146.05 93.345) (uuid 09bd7912-1f38-420a-b7e3-f6500e4b5b87))
  (no_connect (at 120.65 88.265) (uuid 59472a74-51d5-4a8d-be0e-c6e11e86e57a))
  (no_connect (at 146.05 78.105) (uuid 5c490635-84da-4fdb-81d8-dc2e2b26bb55))
  (no_connect (at 146.05 88.265) (uuid c5265b15-1683-437d-8b77-a9a5cac64363))
  (no_connect (at 120.65 93.345) (uuid dcff8a8b-47d3-4903-ad42-661c01c2f17f))

  (wire (pts (xy 133.35 113.665) (xy 133.35 115.57))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 02ba7c7d-93b2-4400-b4aa-3618f8c9f794)
  )
  (wire (pts (xy 105.41 69.85) (xy 105.41 72.39))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 147426cc-09f5-4572-8b34-ee261af3c67a)
  )
  (wire (pts (xy 146.05 98.425) (xy 162.56 98.425))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 22e18349-d86f-4085-ac93-46696561a3b1)
  )
  (wire (pts (xy 133.35 73.025) (xy 133.35 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 272724e8-a3bc-4d06-9043-153bea846b4a)
  )
  (wire (pts (xy 73.66 100.33) (xy 75.565 100.33))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 36216fd8-6ff0-4268-ac06-e3aed667107f)
  )
  (wire (pts (xy 73.66 83.82) (xy 75.565 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3781664f-caba-481d-8f81-6c245df3456f)
  )
  (wire (pts (xy 105.41 80.01) (xy 105.41 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3ec3f807-a364-4f6a-91b0-e8ad73fbcf73)
  )
  (wire (pts (xy 111.76 103.505) (xy 120.65 103.505))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4d263da5-1c01-4c9a-b646-d4e07b447510)
  )
  (wire (pts (xy 181.61 90.805) (xy 182.88 90.805))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 661e4d0e-655a-4cee-b722-d145c1360921)
  )
  (wire (pts (xy 146.05 85.725) (xy 147.955 85.725))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 673538d1-be2a-43ba-b0f3-f946b41fda8a)
  )
  (wire (pts (xy 181.61 92.075) (xy 181.61 90.805))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6b966a3d-2c18-4615-bc8a-a0b59af11f67)
  )
  (wire (pts (xy 73.66 102.87) (xy 75.565 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7af27756-80a5-47f4-bf86-9bfe6bd13957)
  )
  (wire (pts (xy 180.34 88.265) (xy 182.88 88.265))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 804f633b-efc2-42a0-8b79-03815111bdf6)
  )
  (wire (pts (xy 118.745 69.85) (xy 105.41 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9f9f8837-cce7-4c63-9484-8c1f33f27f65)
  )
  (wire (pts (xy 104.14 98.425) (xy 120.65 98.425))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid abc65f11-d373-48a1-a0ed-5fe9dab702a6)
  )
  (wire (pts (xy 75.565 102.87) (xy 75.565 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b115dfc6-5241-40cb-a57f-8ef9faf605a9)
  )
  (wire (pts (xy 133.35 69.85) (xy 118.745 69.85))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b70f8566-2f46-447d-8c67-9ab55dad50fe)
  )
  (wire (pts (xy 118.745 69.85) (xy 118.745 78.105))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bae6e912-131b-4321-97a4-b4a1b1dabc55)
  )
  (wire (pts (xy 146.05 103.505) (xy 154.94 103.505))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bf243248-3fe9-4659-9ad4-8f5f56d4341a)
  )
  (wire (pts (xy 75.565 83.82) (xy 75.565 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c3a623c7-f6e0-4931-afd8-95d1ca23a2c6)
  )
  (wire (pts (xy 118.745 85.725) (xy 120.65 85.725))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c5921054-ee0c-4d0b-8198-1c731a0658df)
  )
  (wire (pts (xy 104.14 108.585) (xy 120.65 108.585))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ce681d24-1ca3-46b6-821f-141729031e80)
  )
  (wire (pts (xy 118.745 78.105) (xy 120.65 78.105))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e87a6150-af21-4023-bed2-1256a9da66c5)
  )
  (wire (pts (xy 73.66 81.28) (xy 75.565 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e9817c45-b242-4ceb-a11d-89841c22a689)
  )
  (wire (pts (xy 146.05 108.585) (xy 162.56 108.585))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f313a4dc-71a4-4058-94b2-04e71f148f59)
  )

  (label "IN2" (at 75.565 100.33 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 00da741d-eb9b-46ac-99de-467648c91cf2)
  )
  (label "OUT" (at 113.03 108.585 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 2689cd98-8b2d-4ddc-915c-9d34db51c8ae)
  )
  (label "OUT" (at 149.225 108.585 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 833e0ed5-ee51-449c-a185-eb984cf01280)
  )
  (label "IN1" (at 75.565 81.28 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 8ca6f543-8232-42ad-80b3-69fb6a2c9b1f)
  )
  (label "OUT" (at 180.34 88.265 180)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid affd98d6-6710-4952-a8f9-ce5b6af1d001)
  )
  (label "IN1" (at 113.03 98.425 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid b0e64479-b0df-4e76-bc24-bbfa1bb19b54)
  )
  (label "IN2" (at 149.225 98.425 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid bc368708-c421-4573-b040-90d91d9ae842)
  )

  (symbol (lib_id "Transistor_FET:Si4162DY") (at 160.02 103.505 0) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0643c7a1-4524-419e-a4fd-8024b4651516)
    (property "Reference" "Q2" (id 0) (at 165.227 102.6703 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Si4162DY" (id 1) (at 165.227 105.2072 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 165.1 100.965 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "http://www.vishay.com/docs/68967/si4162dy.pdf" (id 3) (at 160.02 103.505 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid 62c47100-335b-4d31-b564-4bfdbe744c4a))
    (pin "2" (uuid 678c1ed7-423b-4dac-b44a-f396ddf28ae0))
    (pin "3" (uuid 75743ea9-29c6-4410-bab0-11dfe8817312))
    (pin "4" (uuid 64d5f547-e8f3-49be-9418-0821abe90d7d))
    (pin "5" (uuid d6c9e873-91f2-4328-b646-903c17cedbea))
    (pin "6" (uuid 8757df6b-ed40-4275-ad17-d0111f038c9b))
    (pin "7" (uuid 4827181a-715c-4ca1-8f1c-19750c0f6911))
    (pin "8" (uuid fe4630e2-2ce9-4f01-90cb-de2428323605))
  )

  (symbol (lib_id "Transistor_FET:Si4162DY") (at 106.68 103.505 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 12115b14-9445-421b-9c0a-3f44e35b080e)
    (property "Reference" "Q1" (id 0) (at 101.473 102.6703 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Si4162DY" (id 1) (at 101.473 105.2072 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 101.6 100.965 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Datasheet" "http://www.vishay.com/docs/68967/si4162dy.pdf" (id 3) (at 106.68 103.505 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (pin "1" (uuid 474547b2-6dae-4287-8fc7-31384a029c91))
    (pin "2" (uuid b8ec1fc2-ed13-48c5-ba02-c97eb2fd865f))
    (pin "3" (uuid 53c6acd6-1c0b-4f45-ae51-605757d39b56))
    (pin "4" (uuid ad46088a-f739-4341-9f6e-8ab14c15669c))
    (pin "5" (uuid da984cc7-01dc-440b-b203-51a004f966cf))
    (pin "6" (uuid eb8c944c-5f4a-4f21-97ed-48937e8a8b27))
    (pin "7" (uuid 963df955-31c3-4c72-a02e-5931d8f12417))
    (pin "8" (uuid da65ac11-b819-4d33-a5ad-ce439a075d2d))
  )

  (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 187.96 90.805 0) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1219a807-6851-4823-9023-90058522fdd8)
    (property "Reference" "J2" (id 0) (at 187.96 83.2952 0))
    (property "Value" "OUT" (id 1) (at 187.96 85.8321 0))
    (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (id 2) (at 187.96 90.805 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 187.96 90.805 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b7cd4615-6548-4023-892a-1506a61f6d8a))
    (pin "2" (uuid 79bed797-753c-409d-9f26-7fcca292f4d7))
  )

  (symbol (lib_id "Device:C") (at 105.41 76.2 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 19116436-7932-4767-97b3-0c924c9e65a6)
    (property "Reference" "C1" (id 0) (at 108.331 75.3653 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "C" (id 1) (at 108.331 77.9022 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (id 2) (at 106.3752 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 105.41 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 04e7c700-7de1-4556-bf47-01226e5fa11d))
    (pin "2" (uuid 6daacaee-8ee0-4e94-9713-43a7b9dbbf89))
  )

  (symbol (lib_id "Mechanical:MountingHole_Pad") (at 255.905 54.61 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1e5495ca-fb28-40f0-9ca5-53f9c476e0fd)
    (property "Reference" "H4" (id 0) (at 258.445 52.5053 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "MountingHole_Pad" (id 1) (at 258.445 55.0422 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (id 2) (at 255.905 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 255.905 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1eea2bff-648d-40bc-8b91-9369664aceef))
  )

  (symbol (lib_id "Mechanical:MountingHole_Pad") (at 255.905 43.815 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 222b4cff-f457-40c5-b50f-d2fc8cc384ec)
    (property "Reference" "H3" (id 0) (at 258.445 41.7103 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "MountingHole_Pad" (id 1) (at 258.445 44.2472 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (id 2) (at 255.905 43.815 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 255.905 43.815 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0efdd04e-af97-4cf1-8813-c6daaf4440c4))
  )

  (symbol (lib_id "power:GND") (at 255.905 57.15 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 33790081-d671-4028-ac42-b4267ba02a30)
    (property "Reference" "#PWR0111" (id 0) (at 255.905 63.5 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 257.81 58.8538 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 255.905 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 255.905 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b093bf87-c6e6-40b5-bd31-792f2c1d8718))
  )

  (symbol (lib_id "power:GND") (at 75.565 85.09 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 39f3d5ae-47fe-43dd-9ec4-56050a6d6425)
    (property "Reference" "#PWR0107" (id 0) (at 75.565 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 77.47 86.7938 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 75.565 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 75.565 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 39ac54bd-a0ab-4eb0-ad75-2274639d02a2))
  )

  (symbol (lib_id "power:GND") (at 105.41 81.28 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 3cd91396-281a-4bdd-8b08-0bca6342e839)
    (property "Reference" "#PWR0104" (id 0) (at 105.41 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 107.315 82.9838 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 105.41 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 105.41 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 70bba2a7-0faf-46b5-9ed7-c1e94ae61939))
  )

  (symbol (lib_id "power:GND") (at 75.565 104.14 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 457377d1-39f1-49ad-953d-97a20a959013)
    (property "Reference" "#PWR0106" (id 0) (at 75.565 110.49 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 77.47 105.8438 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 75.565 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 75.565 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4bd17209-5263-47b8-9998-c915a0d71b9d))
  )

  (symbol (lib_id "power:GND") (at 255.905 23.495 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4bcb9462-6f00-4f61-b53a-9515821a77dd)
    (property "Reference" "#PWR0109" (id 0) (at 255.905 29.845 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 257.81 25.1988 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 255.905 23.495 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 255.905 23.495 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid fc2b6635-226f-49ae-8fd4-6cb500ce8079))
  )

  (symbol (lib_id "power:GND") (at 255.905 35.56 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4d4b3c8a-d3cf-4470-8165-fb82caa426d6)
    (property "Reference" "#PWR0108" (id 0) (at 255.905 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 257.81 37.2638 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 255.905 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 255.905 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b42fe3c5-e908-4f24-b9bf-d086aec48072))
  )

  (symbol (lib_id "Power_Management:LTC4370xMS") (at 133.35 93.345 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 5e7ff21b-e5ad-4274-b2d7-0c8493e2fe6d)
    (property "Reference" "U1" (id 0) (at 135.3694 71.8652 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LTC4370xMS" (id 1) (at 135.3694 74.4021 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_SO:MSOP-16_3x4mm_P0.5mm" (id 2) (at 133.35 116.205 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/4370f.pdf" (id 3) (at 135.89 93.345 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9afc6777-d4b6-4362-b870-ca922e507aef))
    (pin "10" (uuid 45aaffba-bebe-432c-b4b1-70fb3e30860d))
    (pin "11" (uuid 1874252b-9547-472e-bc9a-2e497909e3ec))
    (pin "12" (uuid 8e18a01e-73c8-47f0-8008-29c862632908))
    (pin "13" (uuid 3cf08a6f-d951-4c0b-8df8-6cb3ab5687a2))
    (pin "14" (uuid e589c450-e649-4a85-a7f7-1e0a15baa9aa))
    (pin "15" (uuid 8285336b-6fb5-4e3b-92f9-bef248889aa2))
    (pin "16" (uuid 092a410f-1fac-4e69-ae58-019712d6d851))
    (pin "2" (uuid e52a253b-7f06-4b70-b369-3b3345e70158))
    (pin "3" (uuid 3f927748-ec97-4c7f-be3b-2b722ea1b3d4))
    (pin "4" (uuid 4b7ff82a-e30a-4c65-b526-a2de80235893))
    (pin "5" (uuid 8f8c270c-eaa7-444b-895a-3c6b8330a77d))
    (pin "6" (uuid 183cd521-8fe7-4ecc-b1b8-9125beda4794))
    (pin "7" (uuid e7f68ce4-2374-4d95-8673-64240df8b4c5))
    (pin "8" (uuid 556cd3c9-29b2-4bca-804e-ab215cd6e25b))
    (pin "9" (uuid 7c40ceae-bccc-4e41-a8f5-24cdaa3fc845))
  )

  (symbol (lib_id "power:GND") (at 181.61 92.075 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 63458b2e-2e3a-4fc0-b996-3639510f55e3)
    (property "Reference" "#PWR0105" (id 0) (at 181.61 98.425 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 176.53 95.25 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 181.61 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 181.61 92.075 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 151a669a-5bf4-4e1b-9f37-3fa3bd7cfe7e))
  )

  (symbol (lib_id "Mechanical:MountingHole_Pad") (at 255.905 33.02 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 6371b0e7-8499-42f1-942e-c59f05626154)
    (property "Reference" "H2" (id 0) (at 258.445 30.9153 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "MountingHole_Pad" (id 1) (at 258.445 33.4522 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (id 2) (at 255.905 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 255.905 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 044aa1a9-5511-488b-b859-8197de3333c4))
  )

  (symbol (lib_id "power:GND") (at 118.745 85.725 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 6586085d-734b-4665-aeca-5dc0ed56ba6f)
    (property "Reference" "#PWR0103" (id 0) (at 112.395 85.725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 112.395 86.995 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 118.745 85.725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 118.745 85.725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e2dd2928-0f89-4097-82f6-72c72e77cd6d))
  )

  (symbol (lib_id "power:GND") (at 255.905 46.355 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 65aaa0cd-fabf-4069-8187-307b5943aec1)
    (property "Reference" "#PWR0110" (id 0) (at 255.905 52.705 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 257.81 48.0588 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 255.905 46.355 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 255.905 46.355 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f2d65006-0488-438b-a8c3-c98d6687c372))
  )

  (symbol (lib_id "power:GND") (at 133.35 115.57 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9237bcd0-816c-496d-99a6-b10505caedad)
    (property "Reference" "#PWR0101" (id 0) (at 133.35 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 135.255 117.2738 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 133.35 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 133.35 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ae1260da-f5a6-40da-9103-60bc51144162))
  )

  (symbol (lib_id "Mechanical:MountingHole_Pad") (at 255.905 20.955 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9c1fc96d-0ca3-4db3-9d37-32ef9b1a8e2b)
    (property "Reference" "H1" (id 0) (at 258.445 18.8503 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "MountingHole_Pad" (id 1) (at 258.445 21.3872 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "MountingHole:MountingHole_3.2mm_M3_Pad_Via" (id 2) (at 255.905 20.955 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 255.905 20.955 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6f11d82d-6f00-4342-b5a0-c76c2bad3240))
  )

  (symbol (lib_id "power:GND") (at 147.955 85.725 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a0836233-f1e7-444e-a36b-1c6e706be331)
    (property "Reference" "#PWR0102" (id 0) (at 154.305 85.725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 151.13 86.1588 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 147.955 85.725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 147.955 85.725 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 099850d4-d45e-4418-be5e-f7a2df242d1f))
  )

  (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 68.58 102.87 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a32371ec-da9b-484a-afd5-0960cbfc021e)
    (property "Reference" "J3" (id 0) (at 68.58 95.3602 0))
    (property "Value" "IN2" (id 1) (at 68.58 97.8971 0))
    (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (id 2) (at 68.58 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 68.58 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 725ff8ab-7b5e-486d-8723-3bc22acf6ea9))
    (pin "2" (uuid 9c32eb95-d7b9-41d6-8428-c9a3bc0a0578))
  )

  (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 68.58 83.82 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b81316cc-4e7a-4a1a-be55-85a18f4ee2f7)
    (property "Reference" "J1" (id 0) (at 68.58 76.3102 0))
    (property "Value" "IN1" (id 1) (at 68.58 78.8471 0))
    (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal" (id 2) (at 68.58 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 68.58 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 164ab928-f9f7-42e4-999c-91ff9aeac78a))
    (pin "2" (uuid ebb7d526-5959-4b35-881f-847c2ab4bb3a))
  )

  (sheet_instances
    (path "/" (page "1"))
  )

  (symbol_instances
    (path "/9237bcd0-816c-496d-99a6-b10505caedad"
      (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
    )
    (path "/a0836233-f1e7-444e-a36b-1c6e706be331"
      (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
    )
    (path "/6586085d-734b-4665-aeca-5dc0ed56ba6f"
      (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
    )
    (path "/3cd91396-281a-4bdd-8b08-0bca6342e839"
      (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
    )
    (path "/63458b2e-2e3a-4fc0-b996-3639510f55e3"
      (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
    )
    (path "/457377d1-39f1-49ad-953d-97a20a959013"
      (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
    )
    (path "/39f3d5ae-47fe-43dd-9ec4-56050a6d6425"
      (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
    )
    (path "/4d4b3c8a-d3cf-4470-8165-fb82caa426d6"
      (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
    )
    (path "/4bcb9462-6f00-4f61-b53a-9515821a77dd"
      (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
    )
    (path "/65aaa0cd-fabf-4069-8187-307b5943aec1"
      (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
    )
    (path "/33790081-d671-4028-ac42-b4267ba02a30"
      (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
    )
    (path "/19116436-7932-4767-97b3-0c924c9e65a6"
      (reference "C1") (unit 1) (value "C") (footprint "Capacitor_SMD:C_0402_1005Metric")
    )
    (path "/9c1fc96d-0ca3-4db3-9d37-32ef9b1a8e2b"
      (reference "H1") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via")
    )
    (path "/6371b0e7-8499-42f1-942e-c59f05626154"
      (reference "H2") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via")
    )
    (path "/222b4cff-f457-40c5-b50f-d2fc8cc384ec"
      (reference "H3") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via")
    )
    (path "/1e5495ca-fb28-40f0-9ca5-53f9c476e0fd"
      (reference "H4") (unit 1) (value "MountingHole_Pad") (footprint "MountingHole:MountingHole_3.2mm_M3_Pad_Via")
    )
    (path "/b81316cc-4e7a-4a1a-be55-85a18f4ee2f7"
      (reference "J1") (unit 1) (value "IN1") (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal")
    )
    (path "/1219a807-6851-4823-9023-90058522fdd8"
      (reference "J2") (unit 1) (value "OUT") (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal")
    )
    (path "/a32371ec-da9b-484a-afd5-0960cbfc021e"
      (reference "J3") (unit 1) (value "IN2") (footprint "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal")
    )
    (path "/12115b14-9445-421b-9c0a-3f44e35b080e"
      (reference "Q1") (unit 1) (value "Si4162DY") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
    )
    (path "/0643c7a1-4524-419e-a4fd-8024b4651516"
      (reference "Q2") (unit 1) (value "Si4162DY") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
    )
    (path "/5e7ff21b-e5ad-4274-b2d7-0c8493e2fe6d"
      (reference "U1") (unit 1) (value "LTC4370xMS") (footprint "Package_SO:MSOP-16_3x4mm_P0.5mm")
    )
  )
)