-
Notifications
You must be signed in to change notification settings - Fork 0
/
Statikplatte.kicad_sch
1129 lines (1090 loc) · 42.9 KB
/
Statikplatte.kicad_sch
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 483f60da-14d7-4f88-8d01-3f9f30784c70)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x01_Female" (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" "Conn_01x01_Female" (id 1) (at 0 -2.54 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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x01, 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" "Connector*:*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x01_Female_1_1"
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(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))))
)
)
)
(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:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D" (id 1) (at 0 -2.54 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" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (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))))
)
)
)
)
(junction (at 104.14 102.87) (diameter 0) (color 0 0 0 0)
(uuid 003c2200-0632-4808-a662-8ddd5d30c768)
)
(junction (at 139.7 87.63) (diameter 0) (color 0 0 0 0)
(uuid 0088d107-13d8-496c-8da6-7bbeb9d096b0)
)
(junction (at 179.07 95.25) (diameter 0) (color 0 0 0 0)
(uuid 0147f16a-c952-4891-8f53-a9fb8cddeb8d)
)
(junction (at 104.14 95.25) (diameter 0) (color 0 0 0 0)
(uuid 08a7c925-7fae-4530-b0c9-120e185cb318)
)
(junction (at 166.37 95.25) (diameter 0) (color 0 0 0 0)
(uuid 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f)
)
(junction (at 152.4 95.25) (diameter 0) (color 0 0 0 0)
(uuid 128e34ce-eee7-477d-b905-a493e98db783)
)
(junction (at 246.38 105.41) (diameter 0) (color 0 0 0 0)
(uuid 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)
)
(junction (at 219.71 87.63) (diameter 0) (color 0 0 0 0)
(uuid 1e1b062d-fad0-427c-a622-c5b8a80b5268)
)
(junction (at 246.38 95.25) (diameter 0) (color 0 0 0 0)
(uuid 2d210a96-f81f-42a9-8bf4-1b43c11086f3)
)
(junction (at 125.73 95.25) (diameter 0) (color 0 0 0 0)
(uuid 34871042-9d5c-4e29-abdd-a168368c3c22)
)
(junction (at 193.04 95.25) (diameter 0) (color 0 0 0 0)
(uuid 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455)
)
(junction (at 113.03 87.63) (diameter 0) (color 0 0 0 0)
(uuid 4e66a44f-7fa6-4e16-bf9b-62ec864301a5)
)
(junction (at 152.4 87.63) (diameter 0) (color 0 0 0 0)
(uuid 68e09be7-3bbc-4443-a838-209ce20b2bef)
)
(junction (at 139.7 95.25) (diameter 0) (color 0 0 0 0)
(uuid 712d6a7d-2b62-464f-b745-fd2a6b0187f6)
)
(junction (at 125.73 87.63) (diameter 0) (color 0 0 0 0)
(uuid 7447a6e7-8205-46ba-afca-d0fa8f90c95a)
)
(junction (at 246.38 100.33) (diameter 0) (color 0 0 0 0)
(uuid 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e)
)
(junction (at 232.41 95.25) (diameter 0) (color 0 0 0 0)
(uuid 87371631-aa02-498a-998a-09bdb74784c1)
)
(junction (at 193.04 87.63) (diameter 0) (color 0 0 0 0)
(uuid 983c426c-24e0-4c65-ab69-1f1824adc5c6)
)
(junction (at 179.07 87.63) (diameter 0) (color 0 0 0 0)
(uuid aa02e544-13f5-4cf8-a5f4-3e6cda006090)
)
(junction (at 219.71 95.25) (diameter 0) (color 0 0 0 0)
(uuid ac264c30-3e9a-4be2-b97a-9949b68bd497)
)
(junction (at 104.14 118.11) (diameter 0) (color 0 0 0 0)
(uuid b88717bd-086f-46cd-9d3f-0396009d0996)
)
(junction (at 104.14 110.49) (diameter 0) (color 0 0 0 0)
(uuid c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)
)
(junction (at 113.03 95.25) (diameter 0) (color 0 0 0 0)
(uuid c264c438-a475-4ad4-9915-0f1e6ecf3053)
)
(junction (at 166.37 87.63) (diameter 0) (color 0 0 0 0)
(uuid c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
)
(junction (at 205.74 95.25) (diameter 0) (color 0 0 0 0)
(uuid da469d11-a8a4-414b-9449-d151eeaf4853)
)
(junction (at 205.74 87.63) (diameter 0) (color 0 0 0 0)
(uuid e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
(wire (pts (xy 110.49 87.63) (xy 113.03 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d35483a-0b12-46cc-b9f2-896fd6831779)
)
(wire (pts (xy 243.84 95.25) (xy 246.38 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0eaa98f0-9565-4637-ace3-42a5231b07f7)
)
(wire (pts (xy 104.14 102.87) (xy 102.87 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 240e07e1-770b-4b27-894f-29fd601c924d)
)
(wire (pts (xy 113.03 95.25) (xy 104.14 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bf3f24b-fd30-41a7-a274-9b519491916b)
)
(wire (pts (xy 232.41 95.25) (xy 229.87 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(wire (pts (xy 236.22 95.25) (xy 232.41 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)
)
(wire (pts (xy 142.24 95.25) (xy 139.7 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3172f2e2-18d2-4a80-ae30-5707b3409798)
)
(wire (pts (xy 113.03 87.63) (xy 125.73 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4412226e-d975-40a2-921f-502ff4129a95)
)
(wire (pts (xy 104.14 95.25) (xy 102.87 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a4ec8d9-3d72-4952-83d4-808f65849a2b)
)
(wire (pts (xy 166.37 87.63) (xy 179.07 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a)
)
(wire (pts (xy 222.25 95.25) (xy 219.71 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(wire (pts (xy 125.73 87.63) (xy 129.54 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53c85970-3e21-4fae-a84f-721cfc0513b5)
)
(wire (pts (xy 205.74 95.25) (xy 219.71 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54365317-1355-4216-bb75-829375abc4ec)
)
(wire (pts (xy 163.83 87.63) (xy 166.37 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b2b5c7d-f943-4634-9f0a-e9561705c49d)
)
(wire (pts (xy 195.58 95.25) (xy 193.04 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cbb5968-dbb5-4b84-864a-ead1cacf75b9)
)
(wire (pts (xy 104.14 118.11) (xy 104.14 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61fe293f-6808-4b7f-9340-9aaac7054a97)
)
(wire (pts (xy 205.74 87.63) (xy 209.55 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62c076a3-d618-44a2-9042-9a08b3576787)
)
(wire (pts (xy 102.87 118.11) (xy 104.14 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)
)
(wire (pts (xy 246.38 105.41) (xy 246.38 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 666713b0-70f4-42df-8761-f65bc212d03b)
)
(wire (pts (xy 152.4 87.63) (xy 156.21 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67621f9e-0a6a-4778-ad69-04dcf300659c)
)
(wire (pts (xy 179.07 87.63) (xy 182.88 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a44418c-7bb4-4e99-8836-57f153c19721)
)
(wire (pts (xy 139.7 87.63) (xy 152.4 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a780180-586a-4241-a52d-dc7a5ffcc966)
)
(wire (pts (xy 250.19 105.41) (xy 246.38 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c2e273e-743c-4f1e-a647-4171f8122550)
)
(wire (pts (xy 190.5 87.63) (xy 193.04 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e105729-aba0-497c-a99e-c32d2b3ddb6d)
)
(wire (pts (xy 246.38 110.49) (xy 246.38 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7aed3a71-054b-4aaa-9c0a-030523c32827)
)
(wire (pts (xy 250.19 110.49) (xy 246.38 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280)
)
(wire (pts (xy 102.87 110.49) (xy 104.14 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b0a1687-7e1b-4a04-a30b-c27a072a2949)
)
(wire (pts (xy 246.38 100.33) (xy 246.38 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9bb20359-0f8b-45bc-9d38-6626ed3a939d)
)
(wire (pts (xy 104.14 110.49) (xy 104.14 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e1b837f-0d34-4a18-9644-9ee68f141f46)
)
(wire (pts (xy 115.57 95.25) (xy 113.03 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9ec539a-d80d-40cc-803c-12b6adefe42a)
)
(wire (pts (xy 250.19 100.33) (xy 246.38 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa14c3bd-4acc-4908-9d28-228585a22a9d)
)
(wire (pts (xy 205.74 95.25) (xy 203.2 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid afb8e687-4a13-41a1-b8c0-89a749e897fe)
)
(wire (pts (xy 152.4 95.25) (xy 166.37 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1169a2d-8998-4b50-a48d-c520bcc1b8e1)
)
(wire (pts (xy 125.73 95.25) (xy 139.7 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3d08afa-f296-4e3b-8825-73b6331d35bf)
)
(wire (pts (xy 179.07 95.25) (xy 193.04 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae)
)
(wire (pts (xy 193.04 87.63) (xy 205.74 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1d83899-e380-49f9-a87d-8e78bc089ebf)
)
(wire (pts (xy 137.16 87.63) (xy 139.7 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c201e1b2-fc01-4110-bdaa-a33290468c83)
)
(wire (pts (xy 152.4 95.25) (xy 149.86 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c801d42e-dd94-493e-bd2f-6c3ddad43f55)
)
(wire (pts (xy 102.87 127) (xy 104.14 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cbd8faed-e1f8-4406-87c8-58b2c504a5d4)
)
(wire (pts (xy 217.17 87.63) (xy 219.71 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cbdcaa78-3bbc-413f-91bf-2709119373ce)
)
(wire (pts (xy 179.07 95.25) (xy 176.53 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)
)
(wire (pts (xy 168.91 95.25) (xy 166.37 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d22e95aa-f3db-4fbc-a331-048a2523233e)
)
(wire (pts (xy 219.71 87.63) (xy 232.41 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8603679-3e7b-4337-8dbc-1827f5f54d8a)
)
(wire (pts (xy 246.38 95.25) (xy 250.19 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e857610b-4434-4144-b04e-43c1ebdc5ceb)
)
(wire (pts (xy 104.14 102.87) (xy 104.14 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee27d19c-8dca-4ac8-a760-6dfd54d28071)
)
(wire (pts (xy 125.73 95.25) (xy 123.19 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef1b4b98-541b-4673-a04f-2043250fc40a)
)
(wire (pts (xy 104.14 95.25) (xy 104.14 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f2c93195-af12-4d3e-acdf-bdd0ff675c24)
)
(label "N3" (at 140.97 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0217dfc4-fc13-4699-99ad-d9948522648e)
)
(label "N6" (at 180.34 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1d9cdadc-9036-4a95-b6db-fa7b3b74c869)
)
(label "N8" (at 207.01 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 24f7628d-681d-4f0e-8409-40a129e929d9)
)
(label "GND" (at 106.68 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2f215f15-3d52-4c91-93e6-3ea03a95622f)
)
(label "N7" (at 194.31 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3a7648d8-121a-4921-9b92-9b35b76ce39b)
)
(label "N9" (at 220.98 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 3e903008-0276-4a73-8edb-5d9dfde6297c)
)
(label "HV" (at 245.11 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6475547d-3216-45a4-a15c-48314f1dd0f9)
)
(label "N5" (at 167.64 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)
)
(label "N10" (at 233.68 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 75ffc65c-7132-4411-9f2a-ae0c73d79338)
)
(label "N1" (at 113.03 87.63 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8da933a9-35f8-42e6-8504-d1bab7264306)
)
(label "N2" (at 127 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid bd5408e4-362d-4e43-9d39-78fb99eb52c8)
)
(label "N4" (at 153.67 95.25 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c0eca5ed-bc5e-4618-9bcd-80945bea41ed)
)
(symbol (lib_id "Device:C") (at 106.68 87.63 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c488b6c)
(property "Reference" "C1" (id 0) (at 106.68 81.2292 90))
(property "Value" "1n" (id 1) (at 106.68 83.5406 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 102.87 88.5952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 106.68 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4669e73e-b1c6-4295-bc4c-92f45e5fd735))
(pin "2" (uuid 9b251d71-7ad4-4699-a1b9-0183ae1393f5))
)
(symbol (lib_id "Device:D") (at 113.03 91.44 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c488bac)
(property "Reference" "D1" (id 0) (at 115.0366 90.2716 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SS34" (id 1) (at 115.0366 92.583 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "otter:SMAF" (id 2) (at 113.03 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 113.03 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid dacd71ca-de38-4abf-88e1-3b7ebb743624))
(pin "2" (uuid b65173bd-922e-4cf5-91f7-f72444242b6a))
)
(symbol (lib_id "Device:R") (at 240.03 95.25 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c488bef)
(property "Reference" "R1" (id 0) (at 240.03 89.9922 90))
(property "Value" "33M" (id 1) (at 240.03 92.3036 90))
(property "Footprint" "Resistor_SMD:R_2512_6332Metric" (id 2) (at 240.03 93.472 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 240.03 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 99a7b939-b555-4f2d-9b9b-f59bcb0ddc4b))
(pin "2" (uuid 0d30cd09-d09b-45fc-b775-4788a946f1c9))
)
(symbol (lib_id "Device:C") (at 119.38 95.25 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c4890ba)
(property "Reference" "C2" (id 0) (at 119.38 88.8492 90))
(property "Value" "1n" (id 1) (at 119.38 91.1606 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 115.57 96.2152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 119.38 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0f93f61f-2ea8-4f85-8f5a-8765fd460c34))
(pin "2" (uuid 8cff2fce-6dd7-434c-b684-5706c94069b6))
)
(symbol (lib_id "Device:D") (at 125.73 91.44 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c4890fc)
(property "Reference" "D2" (id 0) (at 127.7366 90.2716 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "SS34" (id 1) (at 127.7366 92.583 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "otter:SMAF" (id 2) (at 125.73 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 125.73 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4d6af790-375c-4473-9137-a62c8e83cc12))
(pin "2" (uuid 2263af73-29b2-4ac1-9ee3-ae7f19beb67f))
)
(symbol (lib_id "Device:C") (at 133.35 87.63 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489447)
(property "Reference" "C3" (id 0) (at 133.35 81.2292 90))
(property "Value" "1n" (id 1) (at 133.35 83.5406 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 129.54 88.5952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 133.35 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 887ce0ba-13fe-4510-9754-6bc0fbe0d2d1))
(pin "2" (uuid 2009e7be-cc52-49a4-bdea-71c597113cb0))
)
(symbol (lib_id "Device:D") (at 139.7 91.44 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48944e)
(property "Reference" "D3" (id 0) (at 141.7066 90.2716 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SS34" (id 1) (at 141.7066 92.583 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "otter:SMAF" (id 2) (at 139.7 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 139.7 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3cf52907-eaa2-46b0-9bef-d3f28eacf395))
(pin "2" (uuid fc922473-286a-4f18-a3a5-d61a23149c84))
)
(symbol (lib_id "Device:C") (at 146.05 95.25 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489455)
(property "Reference" "C4" (id 0) (at 146.05 88.8492 90))
(property "Value" "1n" (id 1) (at 146.05 91.1606 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 142.24 96.2152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 146.05 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b82a3a77-ba78-4561-a945-cb0fc568a4e1))
(pin "2" (uuid b06a32cb-d0a1-4440-adfe-c47b3c62b7e6))
)
(symbol (lib_id "Device:D") (at 152.4 91.44 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48945c)
(property "Reference" "D4" (id 0) (at 154.4066 90.2716 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "SS34" (id 1) (at 154.4066 92.583 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "otter:SMAF" (id 2) (at 152.4 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 152.4 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8b0ae9f5-5786-48f0-a888-41943240969c))
(pin "2" (uuid ac4ce5f6-0b87-4f08-aed1-76ff7b681bd3))
)
(symbol (lib_id "Device:C") (at 160.02 87.63 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c4896b9)
(property "Reference" "C5" (id 0) (at 160.02 81.2292 90))
(property "Value" "1n" (id 1) (at 160.02 83.5406 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 156.21 88.5952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 160.02 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cd106792-d850-4ab2-a930-478cf30829dd))
(pin "2" (uuid 6280b66f-b4db-4436-95de-90edbfd45816))
)
(symbol (lib_id "Device:D") (at 166.37 91.44 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c4896c0)
(property "Reference" "D5" (id 0) (at 168.3766 90.2716 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SS34" (id 1) (at 168.3766 92.583 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "otter:SMAF" (id 2) (at 166.37 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 166.37 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8aa78830-aaa1-4f0f-baa4-4ea5f9a6f1f8))
(pin "2" (uuid d60342b5-c60d-4f98-a4c6-a76ed9edde1b))
)
(symbol (lib_id "Device:C") (at 172.72 95.25 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c4896c7)
(property "Reference" "C6" (id 0) (at 172.72 88.8492 90))
(property "Value" "1n" (id 1) (at 172.72 91.1606 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 168.91 96.2152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 172.72 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ff0c8b1b-2c36-45ef-b3c3-6bfbeb05653c))
(pin "2" (uuid 7836569d-7e61-4a8f-84bf-dd475749c61d))
)
(symbol (lib_id "Device:D") (at 179.07 91.44 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c4896ce)
(property "Reference" "D6" (id 0) (at 181.0766 90.2716 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "SS34" (id 1) (at 181.0766 92.583 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "otter:SMAF" (id 2) (at 179.07 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 179.07 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6fc22f51-c7ab-4b98-aac7-28599faf38cc))
(pin "2" (uuid 6c4f7d90-1f81-45fa-9b70-4f58049ffa55))
)
(symbol (lib_id "Device:C") (at 186.69 87.63 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489a47)
(property "Reference" "C7" (id 0) (at 186.69 81.2292 90))
(property "Value" "1n" (id 1) (at 186.69 83.5406 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 182.88 88.5952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 186.69 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4c99582c-4a16-405c-b845-0fb2eee11b7a))
(pin "2" (uuid 0e1b1450-928a-4c05-a5ef-8d56153529cb))
)
(symbol (lib_id "Device:D") (at 193.04 91.44 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489a4e)
(property "Reference" "D7" (id 0) (at 195.0466 90.2716 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SS34" (id 1) (at 195.0466 92.583 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "otter:SMAF" (id 2) (at 193.04 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 193.04 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 62cde0eb-3ea5-4f95-acee-4be5aa992b4c))
(pin "2" (uuid da910119-10d1-47ed-968a-e7e36cdf1162))
)
(symbol (lib_id "Device:C") (at 199.39 95.25 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489a55)
(property "Reference" "C8" (id 0) (at 199.39 88.8492 90))
(property "Value" "1n" (id 1) (at 199.39 91.1606 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 195.58 96.2152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 199.39 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e4389919-6981-464b-9e40-338f8e18ab39))
(pin "2" (uuid 81138b2d-6a69-4f81-94a4-8b22898091b6))
)
(symbol (lib_id "Device:D") (at 205.74 91.44 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489a5c)
(property "Reference" "D8" (id 0) (at 207.7466 90.2716 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "SS34" (id 1) (at 207.7466 92.583 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "otter:SMAF" (id 2) (at 205.74 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 205.74 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 308e142e-59fc-4a86-aa77-95d0d8d7022e))
(pin "2" (uuid 72f4afbf-0722-4df9-99bb-8ff15fa3e9b6))
)
(symbol (lib_id "Device:C") (at 213.36 87.63 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489f75)
(property "Reference" "C9" (id 0) (at 213.36 81.2292 90))
(property "Value" "1n" (id 1) (at 213.36 83.5406 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 209.55 88.5952 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 213.36 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4d772f03-25eb-4b77-85cd-573e6c475253))
(pin "2" (uuid 9f0541c8-623d-458f-beb0-5635ec56be04))
)
(symbol (lib_id "Device:D") (at 219.71 91.44 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489f7c)
(property "Reference" "D9" (id 0) (at 221.7166 90.2716 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SS34" (id 1) (at 221.7166 92.583 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "otter:SMAF" (id 2) (at 219.71 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 219.71 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 727fe13a-31cb-4cd6-9f2a-3ac7da09e08c))
(pin "2" (uuid 3517fb72-6179-4c12-ae78-93856ac20e7e))
)
(symbol (lib_id "Device:C") (at 226.06 95.25 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489f83)
(property "Reference" "C10" (id 0) (at 226.06 88.8492 90))
(property "Value" "1n" (id 1) (at 226.06 91.1606 90))
(property "Footprint" "Capacitor_SMD:C_1812_4532Metric" (id 2) (at 222.25 96.2152 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 226.06 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d5af2db4-b569-4dc9-acb8-2caf94cc6a0e))
(pin "2" (uuid 76b9410a-612b-4785-bec1-9cdfddae5fe4))
)
(symbol (lib_id "Device:D") (at 232.41 91.44 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c489f8a)
(property "Reference" "D10" (id 0) (at 234.4166 90.2716 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "SS34" (id 1) (at 234.4166 92.583 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "otter:SMAF" (id 2) (at 232.41 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 232.41 91.44 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5cb67f3c-5258-47fb-b9af-7d584f8ac023))
(pin "2" (uuid 84b9f3da-b7cb-4986-af8b-ba11e84c46ff))
)
(symbol (lib_id "Connector:Conn_01x01_Female") (at 97.79 95.25 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48bb48)
(property "Reference" "J2" (id 0) (at 100.4824 89.535 0))
(property "Value" "GND" (id 1) (at 100.4824 91.8464 0))
(property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" (id 2) (at 97.79 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 97.79 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 90566e3c-0ade-4272-b5eb-2c082bd2f852))
)
(symbol (lib_id "Connector:Conn_01x01_Female") (at 97.79 87.63 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48bf63)
(property "Reference" "J1" (id 0) (at 100.4824 81.915 0))
(property "Value" "VIN" (id 1) (at 100.4824 84.2264 0))
(property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" (id 2) (at 97.79 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 97.79 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f01a72b4-5b0c-4e53-9a71-99ed677bfb5a))
)
(symbol (lib_id "Connector:Conn_01x01_Female") (at 255.27 100.33 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48c014)
(property "Reference" "J8" (id 0) (at 255.9812 99.6696 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "HV" (id 1) (at 255.9812 101.981 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" (id 2) (at 255.27 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 255.27 100.33 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b6c38b2e-9888-46e6-9835-a98e5326dddf))
)
(symbol (lib_id "Connector:Conn_01x01_Female") (at 255.27 95.25 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48d2d4)
(property "Reference" "J7" (id 0) (at 255.9812 94.5896 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "HV" (id 1) (at 255.9812 96.901 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" (id 2) (at 255.27 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 255.27 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5389a11a-7b98-4ae6-8b06-663ad19cd0e8))
)
(symbol (lib_id "Connector:Conn_01x01_Female") (at 255.27 105.41 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48d8c9)
(property "Reference" "J9" (id 0) (at 255.9812 104.7496 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "HV" (id 1) (at 255.9812 107.061 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" (id 2) (at 255.27 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 255.27 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 31eaeaa0-b56c-4f82-951e-918733a10cb1))
)
(symbol (lib_id "Connector:Conn_01x01_Female") (at 255.27 110.49 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48deb8)
(property "Reference" "J10" (id 0) (at 255.9812 109.8296 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "HV" (id 1) (at 255.9812 112.141 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" (id 2) (at 255.27 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 255.27 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1d23714b-19a0-4700-810b-bd35279f6daf))
)
(symbol (lib_id "Connector:Conn_01x01_Female") (at 97.79 102.87 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c48fb05)
(property "Reference" "J3" (id 0) (at 100.4824 97.155 0))
(property "Value" "GND" (id 1) (at 100.4824 99.4664 0))
(property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" (id 2) (at 97.79 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 97.79 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 389ab245-da99-49ed-8639-e5829257346a))
)
(symbol (lib_id "Connector:Conn_01x01_Female") (at 97.79 110.49 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00005c490265)
(property "Reference" "J4" (id 0) (at 100.4824 104.775 0))
(property "Value" "GND" (id 1) (at 100.4824 107.0864 0))
(property "Footprint" "TestPoint:TestPoint_Pad_2.5x2.5mm" (id 2) (at 97.79 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 97.79 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0b4415f7-8af8-47b6-9d9b-90d02b8baeee))
)