summaryrefslogtreecommitdiff
path: root/house/house.kicad_sch
blob: 4e6ae1f8897e1610c08a696054aef354f7403bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
(kicad_sch (version 20211123) (generator eeschema)

  (uuid fa3072d2-8631-4bc3-8dd3-cef90198c55e)

  (paper "USLetter")

  (title_block
    (title "2021 Ornament")
    (date "2021-10-24")
    (rev "A")
    (company "Blaise Thompson")
  )

  (lib_symbols
    (symbol "Connector_Generic:Conn_01x20" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 0 25.4 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_01x20" (id 1) (at 0 -27.94 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, 01x20, 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*:*_1x??_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_01x20_1_1"
        (rectangle (start -1.27 -25.273) (end 0 -25.527)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -22.733) (end 0 -22.987)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -20.193) (end 0 -20.447)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -17.653) (end 0 -17.907)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -15.113) (end 0 -15.367)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -12.573) (end 0 -12.827)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -10.033) (end 0 -10.287)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 7.747) (end 0 7.493)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 10.287) (end 0 10.033)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 12.827) (end 0 12.573)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 15.367) (end 0 15.113)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 17.907) (end 0 17.653)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 20.447) (end 0 20.193)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 22.987) (end 0 22.733)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 24.13) (end 1.27 -26.67)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (pin passive line (at -5.08 22.86 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 0 0) (length 3.81)
          (name "Pin_10" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_11" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 3.81)
          (name "Pin_12" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -7.62 0) (length 3.81)
          (name "Pin_13" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -10.16 0) (length 3.81)
          (name "Pin_14" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -12.7 0) (length 3.81)
          (name "Pin_15" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -15.24 0) (length 3.81)
          (name "Pin_16" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -17.78 0) (length 3.81)
          (name "Pin_17" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -20.32 0) (length 3.81)
          (name "Pin_18" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -22.86 0) (length 3.81)
          (name "Pin_19" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 20.32 0) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -25.4 0) (length 3.81)
          (name "Pin_20" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 17.78 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 15.24 0) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 12.7 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 10.16 0) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 7.62 0) (length 3.81)
          (name "Pin_7" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 5.08 0) (length 3.81)
          (name "Pin_8" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 2.54 0) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:LED" (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" "LED" (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" "LED diode" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LED_0_1"
        (polyline
          (pts
            (xy -1.27 -1.27)
            (xy -1.27 1.27)
          )
          (stroke (width 0.254) (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.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -3.048 -0.762)
            (xy -4.572 -2.286)
            (xy -3.81 -2.286)
            (xy -4.572 -2.286)
            (xy -4.572 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.778 -0.762)
            (xy -3.302 -2.286)
            (xy -2.54 -2.286)
            (xy -3.302 -2.286)
            (xy -3.302 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "LED_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 "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" "power-flag" (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))))
        )
      )
    )
  )


  (global_label "ANODE" (shape output) (at 76.2 124.46 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 033db618-958c-4686-867c-f086de27f74f)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 124.3806 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 109.22 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 1ea4ca03-dbba-4693-b194-8734602c4de1)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 109.1406 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 139.7 76.2 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 334f62b1-85d5-46ab-8061-c16f62f3fbe2)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.6206 67.7072 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 119.38 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 70ad5677-fb35-4028-9057-3179ad68693a)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 119.3006 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 93.98 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 70f2b3c1-0ef9-491c-abd6-809aeb07b0b6)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 93.9006 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 78.74 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 767bf45f-dd10-4a99-9459-3ce908c072c8)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 78.6606 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 83.82 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 76b959fa-d856-4420-9f70-636138023870)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 83.7406 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 114.3 101.6 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 7ae26de5-847d-45d1-960f-82d37629b8be)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.2206 93.1072 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 88.9 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 7b4f606a-892f-456a-b1c2-f7ed09b915cd)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 88.8206 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 114.3 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 8028b443-2ecb-48db-8dbb-6089a55b2811)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 114.2206 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 114.3 76.2 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid a901c418-b78f-4fff-bc07-57f1e18cf86c)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 114.2206 67.7072 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 152.4 76.2 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid b1605974-ae34-4a77-91b3-70ba5c1b3cb4)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 152.3206 67.7072 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 127 76.2 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c100b9b5-f8bc-481e-8e98-0d355aed8ef2)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.9206 67.7072 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 104.14 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c3bbaae5-f6a7-4ec6-a902-6a8b231a5a60)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 104.0606 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 139.7 101.6 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid e9ead13b-f95f-4091-b197-41ed78bd1cbb)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 139.6206 93.1072 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape input) (at 127 101.6 90) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid ec8a26bc-5835-4b10-96ea-46cda6ad2024)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.9206 93.1072 90)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )
  (global_label "ANODE" (shape output) (at 76.2 99.06 0) (fields_autoplaced)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid edc9ccbe-6b47-418f-9b62-2c20b8779dfa)
    (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.6928 98.9806 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
  )

  (symbol (lib_id "power:GND") (at 139.7 109.22 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 11bac932-6d8f-46d6-9aed-0f48c3ea4619)
    (property "Reference" "#PWR0117" (id 0) (at 139.7 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 139.7 114.3 0))
    (property "Footprint" "" (id 2) (at 139.7 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 139.7 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e684ed41-3409-45c2-9287-aea80ed722ba))
  )

  (symbol (lib_id "power:GND") (at 76.2 76.2 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1d9a7d5d-f8af-4bf3-8cb8-d69d7eda870d)
    (property "Reference" "#PWR0115" (id 0) (at 82.55 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 76.1999 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a851273e-c191-4493-ae46-7093116aff15))
  )

  (symbol (lib_id "power:GND") (at 114.3 83.82 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1db713a2-627b-46df-9f6c-56527a4eea88)
    (property "Reference" "#PWR0111" (id 0) (at 114.3 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 114.3 88.9 0))
    (property "Footprint" "" (id 2) (at 114.3 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 114.3 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ce3172a8-a2eb-49f8-8cbc-fc31b7f3168e))
  )

  (symbol (lib_id "power:GND") (at 76.2 96.52 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2752b1a3-ca20-4ce6-be0e-0f0da6b7c426)
    (property "Reference" "#PWR0105" (id 0) (at 82.55 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 96.5199 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 270fe421-cd8b-4f9f-a70f-ae48fc079977))
  )

  (symbol (lib_id "power:GND") (at 76.2 101.6 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2bdb9c22-5d24-45ea-900a-954f450c4353)
    (property "Reference" "#PWR0106" (id 0) (at 82.55 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 101.5999 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 624013ef-daee-4027-ac3f-7e277f6e93e6))
  )

  (symbol (lib_id "Device:LED") (at 127 105.41 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 3c32ca60-f428-4ba0-83fc-b20bbbb9b419)
    (property "Reference" "D6" (id 0) (at 130.81 105.7274 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 130.81 108.2674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 127 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 127 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0587adce-cc21-4217-aeca-4be9a87521a5))
    (pin "2" (uuid f8643e44-20be-47a2-9733-297a8fa8667a))
  )

  (symbol (lib_id "Connector_Generic:Conn_01x20") (at 71.12 99.06 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4013221e-02bf-4a95-af4b-d91c98a03fd6)
    (property "Reference" "J1" (id 0) (at 71.12 69.85 0))
    (property "Value" "Conn_01x20" (id 1) (at 71.12 72.39 0))
    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x20_P2.54mm_Horizontal" (id 2) (at 71.12 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 71.12 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a30adb4a-edf6-4e49-bbfe-201b1d4d1d16))
    (pin "10" (uuid f82f66c7-adb8-4bde-be92-e198f89e1f94))
    (pin "11" (uuid 08f843ee-7369-4d54-b9ec-cbd69af085b7))
    (pin "12" (uuid e58311e5-c8d1-4e3c-9ac3-5a3822432912))
    (pin "13" (uuid 56cb455f-52e5-4f67-8ce4-1b8d18113df5))
    (pin "14" (uuid bf6358b0-e75d-4d84-a2d3-568131b1a3ff))
    (pin "15" (uuid 958f27e4-159e-4c1d-adaf-24777bb6fbcb))
    (pin "16" (uuid aefd7f15-7d48-47d1-b612-480141049b9a))
    (pin "17" (uuid 94e13a5b-2f75-4139-bcda-ac588857c65b))
    (pin "18" (uuid fcd15f40-6447-4f01-9a16-9b9607b949fc))
    (pin "19" (uuid d29e3b81-21f3-4bf5-85ab-c730584062c5))
    (pin "2" (uuid f1b9aaaa-1c1b-4c13-81a5-86f17826248b))
    (pin "20" (uuid b074a987-3052-40e3-be80-66baeecb3509))
    (pin "3" (uuid 5e692161-da57-4cc0-b1e5-bd63445a7710))
    (pin "4" (uuid cee53408-2e30-43ed-b901-5d6d0d4f3bc0))
    (pin "5" (uuid c9f34a33-b0ec-4482-8743-03f076246632))
    (pin "6" (uuid 35018bd5-8aac-4521-82ad-367d8ea143dd))
    (pin "7" (uuid 30e74407-984e-4ecd-a95d-fcfe5fa5e2db))
    (pin "8" (uuid 37a093d9-3124-4444-a019-50420b188d03))
    (pin "9" (uuid b98c9537-fcfc-4658-bfa6-fea4baab6cb6))
  )

  (symbol (lib_id "Device:LED") (at 152.4 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4d193d5e-7b94-4d24-857a-9de7370dcdb5)
    (property "Reference" "D4" (id 0) (at 156.21 80.3274 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 156.21 82.8674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 152.4 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 152.4 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 50a87d15-5f03-4034-a576-57d73f3031e8))
    (pin "2" (uuid a01c9251-d437-420b-aba4-2d0723c17827))
  )

  (symbol (lib_id "Device:LED") (at 114.3 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 60af6bb6-6a59-455f-9f53-478765ffc3e5)
    (property "Reference" "D1" (id 0) (at 118.11 80.3274 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 118.11 82.8674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 114.3 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 114.3 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f2932eda-d870-4c68-9c49-779715ad50f7))
    (pin "2" (uuid 2bf16bc9-bf52-4dba-8bbd-dcd35af3c149))
  )

  (symbol (lib_id "power:GND") (at 127 109.22 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 644cdb0c-4cfd-46af-9e1a-b50d34e62ad7)
    (property "Reference" "#PWR0113" (id 0) (at 127 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 127 114.3 0))
    (property "Footprint" "" (id 2) (at 127 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 127 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b33a9ad8-16af-4cde-a78c-cf91d81d429f))
  )

  (symbol (lib_id "power:GND") (at 76.2 81.28 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 77f56761-3ea4-4b8b-83a1-48e58430702e)
    (property "Reference" "#PWR0116" (id 0) (at 82.55 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 81.2799 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a781c969-97b0-41da-9b2b-d1dc7be4f5f1))
  )

  (symbol (lib_id "power:GND") (at 114.3 109.22 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7cee6c95-9517-4e2c-b10a-5f8eb03d44d5)
    (property "Reference" "#PWR0112" (id 0) (at 114.3 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 114.3 114.3 0))
    (property "Footprint" "" (id 2) (at 114.3 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 114.3 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0a409b25-64c5-4ff4-a307-211c9e073c2a))
  )

  (symbol (lib_id "power:GND") (at 76.2 116.84 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 85afe68e-32c6-4fd6-9d73-bf5da6df8da3)
    (property "Reference" "#PWR0101" (id 0) (at 82.55 116.84 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 116.8399 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 116.84 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 116.84 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b4c93c0d-6207-4bab-a224-901f8fb4d9b8))
  )

  (symbol (lib_id "power:GND") (at 127 83.82 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8e726c85-c7f2-40fa-bb96-9985efb92d02)
    (property "Reference" "#PWR0110" (id 0) (at 127 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 127 88.9 0))
    (property "Footprint" "" (id 2) (at 127 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 127 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 92a5c35e-1a78-4788-9277-c82d10913ad2))
  )

  (symbol (lib_id "Device:LED") (at 114.3 105.41 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9a2da710-9351-4ca1-a746-42d821b03bd3)
    (property "Reference" "D5" (id 0) (at 118.11 105.7274 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 118.11 108.2674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 114.3 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 114.3 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid fe3418ef-82b1-4b88-879c-cf8395be8784))
    (pin "2" (uuid a347b63d-ea91-4637-ae6e-801e3600679c))
  )

  (symbol (lib_id "Device:LED") (at 127 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9be1199f-4257-49c4-bb21-7d35d1fe1514)
    (property "Reference" "D2" (id 0) (at 130.81 80.3274 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 130.81 82.8674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 127 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 127 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 15a6f461-0b21-466e-a136-c4c9c1a593c8))
    (pin "2" (uuid b27442f7-4858-4e65-90ce-dc6a769a95ae))
  )

  (symbol (lib_id "Device:LED") (at 139.7 105.41 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a53b1ed4-6479-436f-b3ea-ef20babc5d8d)
    (property "Reference" "D7" (id 0) (at 143.51 105.7274 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 143.51 108.2674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 139.7 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 139.7 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7f9eb0f8-bea3-493a-8804-32a0092675e5))
    (pin "2" (uuid 95000a0d-c9eb-4739-b778-510e2159fc44))
  )

  (symbol (lib_id "power:GND") (at 76.2 91.44 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a84fadac-c8f5-477d-b005-3308c03ad46a)
    (property "Reference" "#PWR0107" (id 0) (at 82.55 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 91.4399 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3ca1aaea-1173-4a68-8ded-dd8f868dcc4f))
  )

  (symbol (lib_id "power:GND") (at 76.2 121.92 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b717ae73-9e0a-4c14-a1f3-ed3a7854d9a7)
    (property "Reference" "#PWR0102" (id 0) (at 82.55 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 121.9199 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1b2cc87c-adc4-45d0-9cb1-77b474857a13))
  )

  (symbol (lib_id "power:GND") (at 76.2 106.68 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid bbd6f3f4-68f8-4de1-9a83-12decedeb89d)
    (property "Reference" "#PWR0104" (id 0) (at 82.55 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 106.6799 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9e2ce4bb-9f94-4997-856a-b1ec06b7c0ab))
  )

  (symbol (lib_id "power:GND") (at 152.4 83.82 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid e3b2f58f-2957-442e-8363-d8c57edc19fb)
    (property "Reference" "#PWR0109" (id 0) (at 152.4 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 152.4 88.9 0))
    (property "Footprint" "" (id 2) (at 152.4 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 152.4 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a5c0cc20-9c9d-459d-a6ef-7ff2cf74b0a0))
  )

  (symbol (lib_id "power:GND") (at 76.2 86.36 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid eef6a631-7f23-4a51-91ef-f2b016c8be55)
    (property "Reference" "#PWR0114" (id 0) (at 82.55 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 86.3599 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 440a7ae9-ffa3-4d47-abff-829c59ca3e8f))
  )

  (symbol (lib_id "power:GND") (at 139.7 83.82 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f6cd8d84-ad2f-4f81-ae61-6d0f62dcc9c7)
    (property "Reference" "#PWR0108" (id 0) (at 139.7 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 139.7 88.9 0))
    (property "Footprint" "" (id 2) (at 139.7 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 139.7 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b744a1a8-925a-4f76-947f-dda84d5adb25))
  )

  (symbol (lib_id "Device:LED") (at 139.7 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fe2e2c68-0025-46a4-ab96-24e567e30e19)
    (property "Reference" "D3" (id 0) (at 143.51 80.3274 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (id 1) (at 143.51 82.8674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "LED_THT:LED_D3.0mm" (id 2) (at 139.7 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 139.7 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1c76c58d-8d22-4901-b21a-3a0da20bd3cc))
    (pin "2" (uuid e4ee2c31-bfe5-4b74-a338-a265c7f164a3))
  )

  (symbol (lib_id "power:GND") (at 76.2 111.76 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fe4471b5-41a8-4c8e-999e-9105b098058f)
    (property "Reference" "#PWR0103" (id 0) (at 82.55 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 80.01 111.7599 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 76.2 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 76.2 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 512e6c8c-f28d-4394-9f34-ec35b7144bcb))
  )

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

  (symbol_instances
    (path "/85afe68e-32c6-4fd6-9d73-bf5da6df8da3"
      (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
    )
    (path "/b717ae73-9e0a-4c14-a1f3-ed3a7854d9a7"
      (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
    )
    (path "/fe4471b5-41a8-4c8e-999e-9105b098058f"
      (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
    )
    (path "/bbd6f3f4-68f8-4de1-9a83-12decedeb89d"
      (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
    )
    (path "/2752b1a3-ca20-4ce6-be0e-0f0da6b7c426"
      (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
    )
    (path "/2bdb9c22-5d24-45ea-900a-954f450c4353"
      (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
    )
    (path "/a84fadac-c8f5-477d-b005-3308c03ad46a"
      (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
    )
    (path "/f6cd8d84-ad2f-4f81-ae61-6d0f62dcc9c7"
      (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
    )
    (path "/e3b2f58f-2957-442e-8363-d8c57edc19fb"
      (reference "#PWR0109") (unit 1) (value "GND") (footprint "")
    )
    (path "/8e726c85-c7f2-40fa-bb96-9985efb92d02"
      (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
    )
    (path "/1db713a2-627b-46df-9f6c-56527a4eea88"
      (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
    )
    (path "/7cee6c95-9517-4e2c-b10a-5f8eb03d44d5"
      (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
    )
    (path "/644cdb0c-4cfd-46af-9e1a-b50d34e62ad7"
      (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
    )
    (path "/eef6a631-7f23-4a51-91ef-f2b016c8be55"
      (reference "#PWR0114") (unit 1) (value "GND") (footprint "")
    )
    (path "/1d9a7d5d-f8af-4bf3-8cb8-d69d7eda870d"
      (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
    )
    (path "/77f56761-3ea4-4b8b-83a1-48e58430702e"
      (reference "#PWR0116") (unit 1) (value "GND") (footprint "")
    )
    (path "/11bac932-6d8f-46d6-9aed-0f48c3ea4619"
      (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
    )
    (path "/60af6bb6-6a59-455f-9f53-478765ffc3e5"
      (reference "D1") (unit 1) (value "LED") (footprint "LED_THT:LED_D3.0mm")
    )
    (path "/9be1199f-4257-49c4-bb21-7d35d1fe1514"
      (reference "D2") (unit 1) (value "LED") (footprint "LED_THT:LED_D3.0mm")
    )
    (path "/fe2e2c68-0025-46a4-ab96-24e567e30e19"
      (reference "D3") (unit 1) (value "LED") (footprint "LED_THT:LED_D3.0mm")
    )
    (path "/4d193d5e-7b94-4d24-857a-9de7370dcdb5"
      (reference "D4") (unit 1) (value "LED") (footprint "LED_THT:LED_D3.0mm")
    )
    (path "/9a2da710-9351-4ca1-a746-42d821b03bd3"
      (reference "D5") (unit 1) (value "LED") (footprint "LED_THT:LED_D3.0mm")
    )
    (path "/3c32ca60-f428-4ba0-83fc-b20bbbb9b419"
      (reference "D6") (unit 1) (value "LED") (footprint "LED_THT:LED_D3.0mm")
    )
    (path "/a53b1ed4-6479-436f-b3ea-ef20babc5d8d"
      (reference "D7") (unit 1) (value "LED") (footprint "LED_THT:LED_D3.0mm")
    )
    (path "/4013221e-02bf-4a95-af4b-d91c98a03fd6"
      (reference "J1") (unit 1) (value "Conn_01x20") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x20_P2.54mm_Horizontal")
    )
  )
)