-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHBridge.kicad_sch
More file actions
1516 lines (1476 loc) · 59.2 KB
/
HBridge.kicad_sch
File metadata and controls
1516 lines (1476 loc) · 59.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid b1aba1ab-65f7-41d5-8cea-05848ff6e0e7)
(paper "A4")
(lib_symbols
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (id 0) (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (id 1) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (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 "Device:Q_NMOS_GSD" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_NMOS_GSD" (id 1) (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 5.08 2.54 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" "transistor NMOS N-MOS N-MOSFET" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "N-MOSFET transistor, gate/source/drain" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_NMOS_GSD_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 "Q_NMOS_GSD_1_1"
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (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)
(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 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(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" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(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 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "ic:HYG170C03LR1S" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at 0 9.525 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "HYG170C03LR1S" (id 1) (at 0 14.097 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SO-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 7.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 -1.143 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "uuid" "std:678dce160bdb40de8e16f324878bb6a9" (id 4) (at -0.635 -8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "HYG170C03LR1S_1_1"
(rectangle (start -5.08 6.35) (end 5.08 -6.35)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -3.81 5.08) (radius 0.381)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin input line (at -7.62 3.81 0) (length 2.54)
(name "S1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 1.27 0) (length 2.54)
(name "G1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -1.27 0) (length 2.54)
(name "S2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -3.81 0) (length 2.54)
(name "G2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 7.62 -3.81 180) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 7.62 -1.27 180) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 7.62 1.27 180) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 7.62 3.81 180) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 222.25 27.94) (diameter 0) (color 0 0 0 0)
(uuid 0200e832-611d-4eb8-a52b-76b59e415d67)
)
(junction (at 69.215 49.53) (diameter 0) (color 0 0 0 0)
(uuid 07d88025-8472-4be1-94be-1b5379add255)
)
(junction (at 76.835 38.735) (diameter 0) (color 0 0 0 0)
(uuid 0aaafa54-4494-481f-91d6-372648c498b5)
)
(junction (at 38.1 135.255) (diameter 0) (color 0 0 0 0)
(uuid 0ff278b3-1354-4bca-9b5e-04722797396a)
)
(junction (at 69.215 80.01) (diameter 0) (color 0 0 0 0)
(uuid 13ee0000-aaec-48a5-86e6-bb43f6649715)
)
(junction (at 203.2 27.94) (diameter 0) (color 0 0 0 0)
(uuid 22e0efee-c5ea-4b87-a23b-173f05111653)
)
(junction (at 203.2 35.56) (diameter 0) (color 0 0 0 0)
(uuid 29386549-9967-4c36-98d8-9ee5743f3f3c)
)
(junction (at 152.4 114.3) (diameter 0) (color 0 0 0 0)
(uuid 3a839bf0-7da3-4ba8-9f6e-44c533b28a67)
)
(junction (at 37.465 80.01) (diameter 0) (color 0 0 0 0)
(uuid 3b4628f9-b2ef-46d1-b6e0-7c297a1ee529)
)
(junction (at 69.85 127.635) (diameter 0) (color 0 0 0 0)
(uuid 3b82c2e3-7ec4-4796-b1a2-c7ae1ad0d498)
)
(junction (at 38.1 127.635) (diameter 0) (color 0 0 0 0)
(uuid 459974bc-a25a-45fe-863e-7e66c84618cb)
)
(junction (at 69.215 95.885) (diameter 0) (color 0 0 0 0)
(uuid 4c4f6467-c89a-45cd-9116-660865180adc)
)
(junction (at 152.4 87.63) (diameter 0) (color 0 0 0 0)
(uuid 5f144c27-7ca1-47ef-aaef-975dc6370a43)
)
(junction (at 227.33 35.56) (diameter 0) (color 0 0 0 0)
(uuid 63d6b9e2-5da4-4772-a612-fbecfad51f54)
)
(junction (at 152.4 73.66) (diameter 0) (color 0 0 0 0)
(uuid 65384b4e-6e00-4f28-b673-dc0311610ddb)
)
(junction (at 76.835 85.09) (diameter 0) (color 0 0 0 0)
(uuid 67a8c246-2cef-45c9-974e-3519a4ddf906)
)
(junction (at 37.465 41.275) (diameter 0) (color 0 0 0 0)
(uuid 6b72166f-04d2-487a-928a-b8d7a5e38708)
)
(junction (at 167.64 87.63) (diameter 0) (color 0 0 0 0)
(uuid 71c6da83-251f-49c1-9ce6-e24e7a0183fd)
)
(junction (at 156.21 93.98) (diameter 0) (color 0 0 0 0)
(uuid 74cda305-be27-42b4-a227-381db2788b6f)
)
(junction (at 69.85 143.51) (diameter 0) (color 0 0 0 0)
(uuid 78943220-5d38-48fb-8033-2eb104d1fc6a)
)
(junction (at 222.25 35.56) (diameter 0) (color 0 0 0 0)
(uuid 985a4737-28e5-4eeb-bbad-bbc722e70d91)
)
(junction (at 215.9 27.94) (diameter 0) (color 0 0 0 0)
(uuid a398f7e6-2c9f-441f-a912-c7d91d17048a)
)
(junction (at 215.9 35.56) (diameter 0) (color 0 0 0 0)
(uuid a78a0475-e5f5-4a80-878e-67d76ccd99a5)
)
(junction (at 37.465 87.63) (diameter 0) (color 0 0 0 0)
(uuid a954a48c-3c75-4eee-9525-9b0418f070f3)
)
(junction (at 37.465 33.655) (diameter 0) (color 0 0 0 0)
(uuid ab0c4ede-9f0b-4e6f-9c4e-7a8bb3720f8e)
)
(junction (at 227.33 27.94) (diameter 0) (color 0 0 0 0)
(uuid b543106c-cb74-4790-8a74-d328d2a0d5fc)
)
(junction (at 69.215 33.655) (diameter 0) (color 0 0 0 0)
(uuid ba8406c0-78a9-49bb-bc62-782db8007c35)
)
(junction (at 156.21 114.3) (diameter 0) (color 0 0 0 0)
(uuid c507a4b9-3e95-43ea-9efb-b0cd706f61c0)
)
(junction (at 149.86 81.28) (diameter 0) (color 0 0 0 0)
(uuid c6db9bab-1b82-47b0-8a9b-a48e9a69bf51)
)
(junction (at 209.55 27.94) (diameter 0) (color 0 0 0 0)
(uuid c832ca4e-3616-4fd9-aaed-1c4d0de7e439)
)
(junction (at 77.47 132.715) (diameter 0) (color 0 0 0 0)
(uuid ef775bda-fdf4-4e36-9df1-4bef70e1a83b)
)
(junction (at 209.55 35.56) (diameter 0) (color 0 0 0 0)
(uuid f4de690b-f70e-4f01-8c6f-49813689a152)
)
(wire (pts (xy 53.34 143.51) (xy 69.85 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00d3f6bc-74fe-474f-8fb3-ec3f76dea5b1)
)
(wire (pts (xy 29.21 41.275) (xy 37.465 41.275))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07311d6a-1918-422c-8826-63656ed7ee71)
)
(wire (pts (xy 52.705 82.55) (xy 55.88 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 095b8570-2111-4d45-918f-d9a43eae6757)
)
(wire (pts (xy 160.02 81.28) (xy 149.86 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cf1d601-6d82-4463-a2fd-ffaded33fa8d)
)
(wire (pts (xy 203.2 27.94) (xy 209.55 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1055e5c0-501b-4b60-9bc2-41b5afc5b965)
)
(wire (pts (xy 90.805 62.23) (xy 95.25 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1282a8f1-5752-4f29-a90a-094ae4a8cc34)
)
(wire (pts (xy 52.705 49.53) (xy 69.215 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14760d1b-6979-4f24-a2ed-f00b069aeba4)
)
(wire (pts (xy 55.88 46.99) (xy 37.465 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17e54af7-fd4b-4452-b349-99ae815410b1)
)
(wire (pts (xy 52.705 36.195) (xy 55.88 36.195))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cbb680f-fbc3-46ec-bb1c-4bbe3fd7ba6b)
)
(wire (pts (xy 135.89 81.28) (xy 139.7 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21818df3-bcbc-4a3d-a9b0-c1fc4b421a1f)
)
(wire (pts (xy 37.465 38.735) (xy 37.465 41.275))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22e98431-8f5b-4136-a07f-f1608fa23a77)
)
(wire (pts (xy 56.515 130.175) (xy 56.515 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2426dddf-3e64-4862-bbd5-e9420b2e1810)
)
(wire (pts (xy 152.4 87.63) (xy 152.4 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a2e2c5f-8c38-4579-a378-f792311d5ed0)
)
(wire (pts (xy 59.055 85.09) (xy 52.705 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b14e300-122a-45ef-888b-f9fc68a426d1)
)
(wire (pts (xy 29.845 87.63) (xy 37.465 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2c424c1b-6e0a-4390-a89d-8b659de72bb0)
)
(wire (pts (xy 196.85 27.94) (xy 203.2 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3068d698-431e-4798-b682-727fa3b8806c)
)
(wire (pts (xy 69.85 143.51) (xy 69.85 137.795))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3249f037-abc5-414d-8e8e-97d1a54c15e9)
)
(wire (pts (xy 156.21 93.98) (xy 156.21 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 338ed91e-745d-4b19-a6de-8c7565470fa3)
)
(wire (pts (xy 196.85 35.56) (xy 203.2 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37186841-e0de-4e90-bc46-a339b7ddc439)
)
(wire (pts (xy 53.34 130.175) (xy 56.515 130.175))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38c9902f-d0f3-45d5-ad2a-4a5ae91d1ad1)
)
(wire (pts (xy 76.835 95.885) (xy 69.215 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fce8b69-2e00-479d-af87-6841f301be16)
)
(wire (pts (xy 90.805 45.085) (xy 95.25 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40b11189-5635-443e-ae5b-1958e331a21f)
)
(wire (pts (xy 76.835 49.53) (xy 69.215 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4346ab8a-8ad1-43f0-8f22-dcb9c4b199ad)
)
(wire (pts (xy 69.85 127.635) (xy 53.34 127.635))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4518f3c6-1119-4c75-8975-321642194dcd)
)
(wire (pts (xy 52.705 49.53) (xy 52.705 41.275))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45c2b346-b368-4c18-a2cd-25907d543f79)
)
(wire (pts (xy 149.86 109.22) (xy 149.86 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47be3095-70d2-4357-80bc-3f49d8d35d25)
)
(wire (pts (xy 135.89 93.98) (xy 139.7 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48a3ac11-cfb5-4603-ba14-ef272b8dcc0a)
)
(wire (pts (xy 59.055 38.735) (xy 52.705 38.735))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48fb58e3-13db-4311-99c7-fbd5fa21d3b0)
)
(wire (pts (xy 156.21 116.84) (xy 156.21 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49632682-330d-4163-b0eb-cde567c19396)
)
(wire (pts (xy 152.4 73.66) (xy 149.86 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4abeb13e-afb7-4444-98e8-ee8a77237cf4)
)
(wire (pts (xy 215.9 27.94) (xy 222.25 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c5c1576-be74-4025-ab0c-988e883064fa)
)
(wire (pts (xy 69.215 68.58) (xy 69.215 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fed81e4-3083-4b94-9fa0-5453584a72cc)
)
(wire (pts (xy 31.115 127.635) (xy 38.1 127.635))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5331bc8f-ec8e-4ba7-aaa6-308e7025c639)
)
(wire (pts (xy 227.33 24.13) (xy 227.33 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 555f704f-57d1-44ef-ba51-08941e15bc6d)
)
(wire (pts (xy 149.86 114.3) (xy 152.4 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58b1fd42-dc8f-477b-a7e1-cd015801e5e5)
)
(wire (pts (xy 30.48 33.655) (xy 37.465 33.655))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cb67f9a-c1ba-40a7-ab74-3ca0c468741d)
)
(wire (pts (xy 167.64 81.28) (xy 167.64 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5daf76ba-273c-422f-a938-a4dc34846a8a)
)
(wire (pts (xy 80.645 38.735) (xy 76.835 38.735))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e5941be-54e6-4983-84e1-60adfb6014e8)
)
(wire (pts (xy 69.215 22.225) (xy 69.215 26.035))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 60f84bba-152c-4919-ace0-769adc854b7c)
)
(wire (pts (xy 55.88 82.55) (xy 55.88 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 617daa79-cd82-4fe0-bbb0-9d862ee08fe5)
)
(wire (pts (xy 38.1 140.97) (xy 38.1 135.255))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6571b249-e7e0-4404-9e80-e2d35ead90ea)
)
(wire (pts (xy 77.47 143.51) (xy 69.85 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67a5924d-7122-4fb8-9cde-ba92cb0f0965)
)
(wire (pts (xy 156.21 109.22) (xy 156.21 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e74b44f-e888-4552-a1fd-66486e2520e8)
)
(wire (pts (xy 149.86 81.28) (xy 147.32 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 714838a8-aa56-41c1-9010-e135f7a93542)
)
(wire (pts (xy 69.215 95.885) (xy 69.215 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 717f4d4e-8bcb-41af-a00e-2b3dc7234a78)
)
(wire (pts (xy 209.55 27.94) (xy 215.9 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 765e5681-58fa-48c1-aefd-d01fe31c078f)
)
(wire (pts (xy 59.69 132.715) (xy 53.34 132.715))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a79e204-7ccc-4864-813c-578658e65719)
)
(wire (pts (xy 152.4 109.22) (xy 152.4 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7caee5f7-c2d3-4aea-93cf-b31897ed8f11)
)
(wire (pts (xy 37.465 85.09) (xy 37.465 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8186df00-603c-4af5-9e74-5af408d7e4fc)
)
(wire (pts (xy 30.48 80.01) (xy 37.465 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84509c1d-fffa-4db6-88fd-bd4d3eeb2f6a)
)
(wire (pts (xy 76.835 92.71) (xy 76.835 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 846048fe-8690-4124-b28a-b64701ef3fc8)
)
(wire (pts (xy 69.215 33.655) (xy 52.705 33.655))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a08c953-2e12-4933-a9b5-a533b7a9275b)
)
(wire (pts (xy 37.465 93.345) (xy 37.465 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ad8bb0f-4dc1-4b30-a8bd-74577b1ea78b)
)
(wire (pts (xy 135.89 87.63) (xy 139.7 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b8e78ab-2801-408a-8abd-fdeccf369dd3)
)
(wire (pts (xy 69.215 80.01) (xy 52.705 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8bb23a0d-5a8c-4d12-9c8e-6465eb52acb6)
)
(wire (pts (xy 38.1 132.715) (xy 38.1 135.255))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92416c6d-d65b-43ed-a22a-e02244b851aa)
)
(wire (pts (xy 156.21 73.66) (xy 152.4 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 940aeb9c-1919-4e80-a75a-1198a8fc0ffb)
)
(wire (pts (xy 152.4 72.39) (xy 152.4 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9a4851ff-3be0-4285-b257-27d985da2e41)
)
(wire (pts (xy 149.86 81.28) (xy 149.86 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9aaa0917-8deb-4776-926b-5d37e7642232)
)
(wire (pts (xy 53.34 143.51) (xy 53.34 135.255))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e0db22a-6937-4583-a137-4b997699698f)
)
(wire (pts (xy 90.805 53.975) (xy 95.25 53.975))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1b911cf-79fb-4dc8-8a11-6173f90369f2)
)
(wire (pts (xy 52.705 95.885) (xy 69.215 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2e22b4d-b2ed-42da-9f8c-f6940b406400)
)
(wire (pts (xy 227.33 39.37) (xy 227.33 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a36d02fd-64cc-4abb-aa82-5ddb31c65b35)
)
(wire (pts (xy 69.85 116.205) (xy 69.85 120.015))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7bc0245-8dd7-4773-8d5b-6e016718c68d)
)
(wire (pts (xy 156.21 93.98) (xy 160.02 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a91fa64a-3d90-4580-8d6e-bcc85e3c7fcb)
)
(wire (pts (xy 147.32 87.63) (xy 152.4 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a93ccf1b-0546-43fd-a373-c1be28ae96f9)
)
(wire (pts (xy 77.47 140.335) (xy 77.47 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9494959-a63c-40f7-aa8a-baf1797e91ec)
)
(wire (pts (xy 55.88 36.195) (xy 55.88 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac8118da-25a7-495d-a6bc-54975deadeba)
)
(wire (pts (xy 175.26 87.63) (xy 167.64 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2e37b71-bfa2-461b-b338-69bab26dc14d)
)
(wire (pts (xy 222.25 35.56) (xy 227.33 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b303edaf-7f98-4d0c-8e2f-a63c2ab795b1)
)
(wire (pts (xy 152.4 73.66) (xy 152.4 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b31eec3a-f54c-4123-b79c-b785055f0c05)
)
(wire (pts (xy 81.28 132.715) (xy 77.47 132.715))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba359b0b-be3c-494e-85e5-fb783b2ad15b)
)
(wire (pts (xy 38.1 127.635) (xy 38.1 130.175))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd788d76-64c9-4a0b-a552-f050dd16c963)
)
(wire (pts (xy 222.25 27.94) (xy 227.33 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be0f44cb-18ea-4de1-b084-026f0d8fe4de)
)
(wire (pts (xy 215.9 35.56) (xy 222.25 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c0e81318-53fd-4677-a36f-453a9abf6832)
)
(wire (pts (xy 203.2 35.56) (xy 209.55 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c737b5ca-faf3-454c-83ed-296f96351f74)
)
(wire (pts (xy 56.515 140.97) (xy 38.1 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d728022b-3a45-4ce6-bd5c-a8e5fb18f05d)
)
(wire (pts (xy 37.465 80.01) (xy 37.465 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7a90acf-73a8-4b0d-b160-b430ce762d2c)
)
(wire (pts (xy 152.4 87.63) (xy 160.02 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7c81fdb-a8b9-4306-ae69-8f59c0eb54aa)
)
(wire (pts (xy 29.845 135.255) (xy 38.1 135.255))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8f68107-d227-402c-afcb-2858c9151a1c)
)
(wire (pts (xy 55.88 93.345) (xy 37.465 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da70a7c8-ab72-48a1-a9a5-7ba53f09b76f)
)
(wire (pts (xy 152.4 114.3) (xy 156.21 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd9f15c8-0268-41f7-b853-01d026755e84)
)
(wire (pts (xy 80.645 85.09) (xy 76.835 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e25665db-30c1-469a-afc0-551ddee7c7b3)
)
(wire (pts (xy 147.32 93.98) (xy 156.21 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb0f3a94-be32-4c40-8871-044f773e87c4)
)
(wire (pts (xy 76.835 46.355) (xy 76.835 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ed54ee49-3dad-4c7d-8c0a-7b5522ab0326)
)
(wire (pts (xy 52.705 95.885) (xy 52.705 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eebe39d8-821a-4aa1-99bc-e388d7667b69)
)
(wire (pts (xy 69.215 49.53) (xy 69.215 43.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f61b30b0-31ed-42ea-8cc5-348fbfd23ec8)
)
(wire (pts (xy 167.64 87.63) (xy 167.64 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8210617-b55c-4e48-9f37-7fc06a447e27)
)
(wire (pts (xy 37.465 46.99) (xy 37.465 41.275))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8981284-6483-4533-8cb2-f652df2ea259)
)
(wire (pts (xy 156.21 86.36) (xy 156.21 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fb103222-dbcb-4ff1-ac20-e4d52cab5500)
)
(wire (pts (xy 37.465 33.655) (xy 37.465 36.195))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fbe064f7-c88e-44cf-81c0-ef6933f3e258)
)
(wire (pts (xy 209.55 35.56) (xy 215.9 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe30a884-7a08-4293-8f07-df2037b759b8)
)
(label "C" (at 135.89 93.98 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 17e58b1a-e6b4-42f2-8106-247bbc52e8c9)
)
(label "A" (at 29.21 41.275 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 26c9f3da-acad-4263-8f5b-c38fbc267344)
)
(label "B" (at 29.845 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4bb2c249-54eb-41bb-af49-85d16b333d72)
)
(label "C" (at 29.845 135.255 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 50546dc3-89dc-49fa-a795-7dff46beb6a9)
)
(label "A" (at 90.805 45.085 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7c682909-43a6-4470-88b6-8fa99629d5ed)
)
(label "B" (at 135.89 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7d631814-c2bf-4575-9972-de597450d40c)
)
(label "A" (at 135.89 81.28 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8899c501-befd-4c82-9df6-2dfba3c8df3e)
)
(label "C" (at 90.805 62.23 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9db0993b-cd08-45c3-a82e-8cfcda4e2037)
)
(label "B" (at 90.805 53.975 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d29cca46-e680-4a3a-b79f-da610b4bcfc5)
)
(hierarchical_label "PGND" (shape input) (at 69.215 95.885 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0e7a8f96-89c9-4bc5-bb7a-5c6198ae3696)
)
(hierarchical_label "VC" (shape input) (at 156.21 99.06 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1908a14e-095b-4a57-bdbb-312214b67406)
)
(hierarchical_label "VBAT" (shape input) (at 30.48 80.01 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 196e2e9d-bcb2-49d9-8928-a2f5a980fd2c)
)
(hierarchical_label "VA" (shape input) (at 149.86 99.06 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1faafb8a-c054-42a1-8fbb-55de96fc871d)
)
(hierarchical_label "VB" (shape input) (at 152.4 99.06 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2e36f45a-4357-4f86-a587-cb82ab3a32ea)
)
(hierarchical_label "PGND" (shape input) (at 69.85 143.51 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2eb852e1-485a-47b7-bcb1-a425b338c351)
)
(hierarchical_label "VBAT" (shape input) (at 69.215 68.58 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 32195713-1788-448b-9778-24299bcd8a2e)
)
(hierarchical_label "PGND" (shape input) (at 69.215 49.53 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 34efd7fc-b313-4151-8725-79b72c06ab79)
)
(hierarchical_label "AL" (shape input) (at 59.055 38.735 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4754f60e-2d7a-4517-b6ed-c7bf93d8c29b)
)
(hierarchical_label "VBAT" (shape input) (at 69.85 116.205 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4e418a45-e4d1-4958-ae7d-9abb9d5b0a2d)
)
(hierarchical_label "VBAT" (shape input) (at 31.115 127.635 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6874a043-80f5-40ec-ad16-70acea2877cf)
)
(hierarchical_label "AH" (shape input) (at 80.645 38.735 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6d221a14-4e62-4d93-94df-380aa56b9a5e)
)
(hierarchical_label "BL" (shape input) (at 59.055 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7338fa46-54ab-495f-8efc-ed70a9ddba44)
)
(hierarchical_label "CH" (shape input) (at 81.28 132.715 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 93ef833d-2ff0-47bd-a2b3-44d6a6f84ff1)
)
(hierarchical_label "VBAT" (shape input) (at 30.48 33.655 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 9c77b899-7b4c-43d2-b5cf-c8a5e35babdd)
)
(hierarchical_label "BH" (shape input) (at 80.645 85.09 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 9d277808-3f43-4996-9972-e146d5ff1a5a)
)
(hierarchical_label "PGND" (shape input) (at 156.21 116.84 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b57cd80c-3055-42fb-bd8a-748a19d74163)
)
(hierarchical_label "PGND" (shape input) (at 227.33 39.37 270)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b68134af-2280-4de1-b806-d69628e292a2)
)
(hierarchical_label "CC" (shape input) (at 175.26 87.63 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d184885f-5f51-4d61-86f3-e515bdaa16c4)
)
(hierarchical_label "VBAT" (shape input) (at 227.33 24.13 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d4b1c426-b599-4e60-b50c-8921d145c93a)
)
(hierarchical_label "VBAT" (shape input) (at 69.215 22.225 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d5fbe896-2880-4078-966d-9453c3dca25c)
)
(hierarchical_label "CL" (shape input) (at 59.69 132.715 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid edfc3ab7-e107-4177-b6f2-fe08699dc9b1)
)
(hierarchical_label "PGND" (shape input) (at 152.4 72.39 90)
(effects (font (size 1.27 1.27)) (justify left))
(uuid f75149e5-75cb-46c6-ba83-5454d978b3f2)
)
(symbol (lib_id "Device:C") (at 215.9 31.75 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0169e41d-a7e8-459e-a103-34b73850a917)
(property "Reference" "C6" (id 0) (at 219.71 30.4799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47uF" (id 1) (at 219.71 33.0199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 216.8652 35.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 215.9 31.75 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7d16bf04-dc0c-4f86-8bff-09b8719fb5b5))
(pin "2" (uuid 0c5ee171-939f-4fd9-b89e-55cc04494f11))
)
(symbol (lib_id "Device:R") (at 76.835 42.545 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 04872890-dd9a-4a3b-abd5-a9bf18f626ab)
(property "Reference" "R5" (id 0) (at 74.041 41.91 90))
(property "Value" "10K" (id 1) (at 74.041 44.704 90))
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 78.613 42.545 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 76.835 42.545 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7431cc0f-6f63-484f-9508-b73bee7c25a0))
(pin "2" (uuid c90e0ff8-007d-4a94-b163-c74e37e40a00))
)
(symbol (lib_id "Device:R") (at 143.51 87.63 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0e165cfb-f5f3-40ef-bd79-30b7626bb306)
(property "Reference" "R8" (id 0) (at 142.875 90.424 90))
(property "Value" "10K" (id 1) (at 145.669 90.424 90))
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 143.51 85.852 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 143.51 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b33eb88b-e404-49f2-8f40-b0501285f55f))
(pin "2" (uuid 1b0477b1-0ad7-4afd-9ccd-ab3db4df643e))
)
(symbol (lib_id "Device:R") (at 69.215 29.845 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1cdb4712-9bc3-48ee-8f71-db42b3144407)
(property "Reference" "R2" (id 0) (at 72.009 30.48 90))
(property "Value" "10K" (id 1) (at 72.009 27.686 90))
(property "Footprint" "Resistor_SMD:R_0402_1005Metric" (id 2) (at 67.437 29.845 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 69.215 29.845 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5a2e1834-a727-45e1-85d9-d52e3a9f997a))
(pin "2" (uuid e37324e4-3ca4-40fc-a7a6-6e59e31f5d32))
)
(symbol (lib_id "Device:Q_NMOS_GSD") (at 72.39 132.715 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)