-
Notifications
You must be signed in to change notification settings - Fork 1
/
microcontroller.kicad_sch
2646 lines (2596 loc) · 102 KB
/
microcontroller.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 262bac16-4717-4fac-b293-4185913a73de)
(paper "A4")
(title_block
(title "Pico Card")
(date "2022-05-28")
(rev "v1.0")
(company "DIVA ENG")
)
(lib_symbols
(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:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "Y" (id 0) (at 3.175 5.08 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Crystal_GND24" (id 1) (at 3.175 3.175 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Four pin crystal, GND on pins 2 and 4" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Crystal_GND24_0_1"
(rectangle (start -1.143 2.54) (end 1.143 -2.54)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 -1.27)
(xy -2.032 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -3.81)
(xy 0 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 3.556)
(xy 0 3.81)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.032 -1.27)
(xy 2.032 1.27)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.032 0)
(xy 2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -2.286)
(xy -2.54 -3.556)
(xy 2.54 -3.556)
(xy 2.54 -2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.286)
(xy -2.54 3.556)
(xy 2.54 3.556)
(xy 2.54 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "Crystal_GND24_1_1"
(pin passive line (at -3.81 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 5.08 270) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 1.27)
(name "4" (effects (font (size 1.27 1.27))))
(number "4" (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 "Diva-Card:RP2040" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -29.21 49.53 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "RP2040" (id 1) (at 24.13 -49.53 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "RP2040_minimal:RP2040-QFN-56" (id 2) (at -19.05 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at -19.05 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "RP2040_0_0"
(text "Raspberry Pi" (at 0 5.08 0)
(effects (font (size 2.54 2.54)))
)
(text "RP2040" (at 0 0 0)
(effects (font (size 2.54 2.54)))
)
)
(symbol "RP2040_0_1"
(rectangle (start 29.21 48.26) (end -29.21 -48.26)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "RP2040_1_1"
(pin power_in line (at 8.89 50.8 270) (length 2.54)
(name "IOVDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 6.35 50.8 270) (length 2.54)
(name "IOVDD" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 12.7 180) (length 2.54)
(name "GPIO8" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 10.16 180) (length 2.54)
(name "GPIO9" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 7.62 180) (length 2.54)
(name "GPIO10" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 5.08 180) (length 2.54)
(name "GPIO11" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 2.54 180) (length 2.54)
(name "GPIO12" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 0 180) (length 2.54)
(name "GPIO13" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -2.54 180) (length 2.54)
(name "GPIO14" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -5.08 180) (length 2.54)
(name "GPIO15" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -50.8 90) (length 2.54)
(name "TESTEN" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 33.02 180) (length 2.54)
(name "GPIO0" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -31.75 -2.54 0) (length 2.54)
(name "XIN" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -31.75 -7.62 0) (length 2.54)
(name "XOUT" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 3.81 50.8 270) (length 2.54)
(name "IOVDD" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -17.78 50.8 270) (length 2.54)
(name "DVDD" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin output line (at -31.75 -31.75 0) (length 2.54)
(name "SWCLK" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -31.75 -34.29 0) (length 2.54)
(name "SWD" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -31.75 -20.32 0) (length 2.54)
(name "RUN" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -7.62 180) (length 2.54)
(name "GPIO16" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -10.16 180) (length 2.54)
(name "GPIO17" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -12.7 180) (length 2.54)
(name "GPIO18" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 30.48 180) (length 2.54)
(name "GPIO1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -15.24 180) (length 2.54)
(name "GPIO19" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -17.78 180) (length 2.54)
(name "GPIO20" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -20.32 180) (length 2.54)
(name "GPIO21" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 1.27 50.8 270) (length 2.54)
(name "IOVDD" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -22.86 180) (length 2.54)
(name "GPIO22" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -25.4 180) (length 2.54)
(name "GPIO23" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -27.94 180) (length 2.54)
(name "GPIO24" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -30.48 180) (length 2.54)
(name "GPIO25" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -35.56 180) (length 2.54)
(name "GPIO26_ADC0" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -38.1 180) (length 2.54)
(name "GPIO27_ADC1" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 27.94 180) (length 2.54)
(name "GPIO2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -40.64 180) (length 2.54)
(name "GPIO28_ADC2" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 -43.18 180) (length 2.54)
(name "GPIO29_ADC3" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -1.27 50.8 270) (length 2.54)
(name "IOVDD" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 16.51 50.8 270) (length 2.54)
(name "ADC_AVDD" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -8.89 50.8 270) (length 2.54)
(name "VREG_IN" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at -12.7 50.8 270) (length 2.54)
(name "VREG_VOUT" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 40.64 180) (length 2.54)
(name "USB_DM" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 43.18 180) (length 2.54)
(name "USB_DP" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 12.7 50.8 270) (length 2.54)
(name "USB_VDD" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -3.81 50.8 270) (length 2.54)
(name "IOVDD" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 25.4 180) (length 2.54)
(name "GPIO3" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -20.32 50.8 270) (length 2.54)
(name "DVDD" (effects (font (size 1.27 1.27))))
(number "50" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -31.75 20.32 0) (length 2.54)
(name "QSPI_SD3" (effects (font (size 1.27 1.27))))
(number "51" (effects (font (size 1.27 1.27))))
)
(pin output line (at -31.75 16.51 0) (length 2.54)
(name "QSPI_SCLK" (effects (font (size 1.27 1.27))))
(number "52" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -31.75 27.94 0) (length 2.54)
(name "QSPI_SD0" (effects (font (size 1.27 1.27))))
(number "53" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -31.75 22.86 0) (length 2.54)
(name "QSPI_SD2" (effects (font (size 1.27 1.27))))
(number "54" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -31.75 25.4 0) (length 2.54)
(name "QSPI_SD1" (effects (font (size 1.27 1.27))))
(number "55" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -31.75 31.75 0) (length 2.54)
(name "QSPI_SS" (effects (font (size 1.27 1.27))))
(number "56" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -50.8 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "57" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 22.86 180) (length 2.54)
(name "GPIO4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 20.32 180) (length 2.54)
(name "GPIO5" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 17.78 180) (length 2.54)
(name "GPIO6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 31.75 15.24 180) (length 2.54)
(name "GPIO7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+1V1" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+1V1" (id 1) (at 0 3.556 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 \"+1V1\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+1V1_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+1V1_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+1V1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (id 1) (at 0 3.556 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 \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (effects (font (size 1.27 1.27))))
(number "1" (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))))
)
)
)
)
(junction (at 227.33 31.75) (diameter 0) (color 0 0 0 0)
(uuid 01be957d-8207-4d58-98fa-4191d7a398c8)
)
(junction (at 41.275 173.99) (diameter 0) (color 0 0 0 0)
(uuid 04aff1c7-9766-4ff9-aea0-efc540fbd374)
)
(junction (at 204.47 41.91) (diameter 0) (color 0 0 0 0)
(uuid 094e70dd-e24f-44a1-82fb-8b73f1cb0bf3)
)
(junction (at 139.7 52.07) (diameter 0) (color 0 0 0 0)
(uuid 15ccec16-c8fd-4d98-8d90-4f99e6ad831f)
)
(junction (at 250.19 41.91) (diameter 0) (color 0 0 0 0)
(uuid 1ebff95c-407f-4688-9e74-df38c7582c01)
)
(junction (at 123.19 41.91) (diameter 0) (color 0 0 0 0)
(uuid 260c7f91-ebbc-4a67-bcac-c372090526f7)
)
(junction (at 149.86 52.07) (diameter 0) (color 0 0 0 0)
(uuid 33a35f81-25e1-421e-98b7-d7872dab096c)
)
(junction (at 100.33 38.1) (diameter 0) (color 0 0 0 0)
(uuid 3a3ae0e8-f6e0-45fb-98c6-c6965021d4d0)
)
(junction (at 48.895 167.64) (diameter 0) (color 0 0 0 0)
(uuid 3fc4caa3-83af-4755-a8e6-518ecdfc6573)
)
(junction (at 123.19 52.07) (diameter 0) (color 0 0 0 0)
(uuid 465d2284-1d2b-4e39-a96a-db4fdfcd5c80)
)
(junction (at 26.035 173.99) (diameter 0) (color 0 0 0 0)
(uuid 49413502-e2b1-4907-8f97-ab12fc7fc793)
)
(junction (at 147.32 52.07) (diameter 0) (color 0 0 0 0)
(uuid 4d16a9da-ce47-47c0-85b1-dcfda5c07101)
)
(junction (at 125.73 52.07) (diameter 0) (color 0 0 0 0)
(uuid 5e850649-6621-4fb3-a93c-029d91cc92a7)
)
(junction (at 215.9 31.75) (diameter 0) (color 0 0 0 0)
(uuid 65de7448-94ad-4494-976e-74575ca4e377)
)
(junction (at 152.4 41.91) (diameter 0) (color 0 0 0 0)
(uuid 6728c096-f860-4620-833e-3c7d5f6d6954)
)
(junction (at 238.76 31.75) (diameter 0) (color 0 0 0 0)
(uuid 6d8ad3bb-9589-4762-862c-156bca3f4638)
)
(junction (at 181.61 31.75) (diameter 0) (color 0 0 0 0)
(uuid 7b884c7b-eef1-4526-b876-b1fad377ff3a)
)
(junction (at 227.33 41.91) (diameter 0) (color 0 0 0 0)
(uuid 7c8ed1df-c595-4302-91bb-0f304603fad6)
)
(junction (at 238.76 41.91) (diameter 0) (color 0 0 0 0)
(uuid 85395eab-4d67-48a3-96a5-3b16120957d3)
)
(junction (at 152.4 52.07) (diameter 0) (color 0 0 0 0)
(uuid 8a8bdf38-54ad-4e8b-8473-430c9d5d034d)
)
(junction (at 215.9 41.91) (diameter 0) (color 0 0 0 0)
(uuid 8e380316-5916-4139-b30e-a4a0a380f60f)
)
(junction (at 142.24 52.07) (diameter 0) (color 0 0 0 0)
(uuid 90d55faa-1999-4f7a-a92a-6c8a8062fb25)
)
(junction (at 26.035 180.34) (diameter 0) (color 0 0 0 0)
(uuid 996f3d59-7b04-46a5-9713-84794871b174)
)
(junction (at 144.78 52.07) (diameter 0) (color 0 0 0 0)
(uuid 9be2c5c6-28c6-41ec-9407-4289f4c3a217)
)
(junction (at 204.47 31.75) (diameter 0) (color 0 0 0 0)
(uuid a00c6a8c-9f01-4903-99ed-75ce67a4fedb)
)
(junction (at 152.4 31.75) (diameter 0) (color 0 0 0 0)
(uuid a6e9688e-7b14-4ff1-b4f7-db7c5f6459d6)
)
(junction (at 170.18 31.75) (diameter 0) (color 0 0 0 0)
(uuid b03e1fb7-204d-4c78-993d-745b53e4330d)
)
(junction (at 48.895 180.34) (diameter 0) (color 0 0 0 0)
(uuid b117c5ce-42c8-4596-96c3-9d12bed98c66)
)
(junction (at 111.76 27.94) (diameter 0) (color 0 0 0 0)
(uuid b6a8991d-8f95-4253-8602-7e38af9b4aa3)
)
(junction (at 156.21 52.07) (diameter 0) (color 0 0 0 0)
(uuid d3e615d1-3bf9-46d4-a660-91ca971d35f1)
)
(junction (at 130.81 161.29) (diameter 0) (color 0 0 0 0)
(uuid d4c0b466-a2d8-4562-b2b8-07b5a271313a)
)
(junction (at 181.61 41.91) (diameter 0) (color 0 0 0 0)
(uuid d899e893-05e4-436d-bc86-bda5f7fc25f0)
)
(junction (at 123.19 27.94) (diameter 0) (color 0 0 0 0)
(uuid e65f7f8a-7dcc-4407-89b0-a65624dbb248)
)
(junction (at 193.04 41.91) (diameter 0) (color 0 0 0 0)
(uuid f93823c7-2039-4c2f-b71b-48c687a6db2a)
)
(junction (at 193.04 31.75) (diameter 0) (color 0 0 0 0)
(uuid fe8b4b5f-c02e-4a62-96df-22ba1ab74aec)
)
(wire (pts (xy 46.355 109.22) (xy 62.865 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0160e20e-c335-4fad-9ef4-8193a122ba32)
)
(wire (pts (xy 111.76 83.82) (xy 100.965 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02590a31-8d41-4e2b-91e5-766e4b09a279)
)
(wire (pts (xy 100.33 27.94) (xy 111.76 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 038263ca-7885-4336-938b-103b5a3a60dd)
)
(wire (pts (xy 27.305 43.18) (xy 16.51 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0410050c-799c-44f5-ab8a-df9a3c402ede)
)
(wire (pts (xy 250.19 41.91) (xy 238.76 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 048b0ec6-182a-4f18-87d7-08b87264982d)
)
(wire (pts (xy 183.515 83.82) (xy 175.26 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06a1df62-42df-4fec-8bc8-df6e9d2aa2e4)
)
(wire (pts (xy 238.76 31.75) (xy 238.76 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06b24446-3f84-45a1-ae68-05661dfc13c4)
)
(wire (pts (xy 227.33 40.64) (xy 227.33 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a17d0af-82e7-418b-a5e7-10f1ede23a30)
)
(wire (pts (xy 57.15 56.515) (xy 46.355 56.515))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ae9a0ba-b623-4812-8164-38b41d6c65ae)
)
(wire (pts (xy 250.19 33.02) (xy 250.19 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0aef88ae-0552-4789-8464-4f687c408d5f)
)
(wire (pts (xy 16.51 30.48) (xy 27.305 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c3c4d89-f0d8-48d0-ab7e-0eabed1c27c6)
)
(wire (pts (xy 123.19 41.91) (xy 123.19 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e58625a-02ca-4230-a2a2-595180833a07)
)
(wire (pts (xy 113.03 41.91) (xy 123.19 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e7d7ea7-a06b-4a12-8217-350bde98a520)
)
(wire (pts (xy 27.305 40.64) (xy 16.51 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 111a4e63-cbb0-4dea-9e10-3b8c9183c54d)
)
(wire (pts (xy 123.19 27.94) (xy 123.19 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12cc9005-e68a-489e-8f00-d58e92618f20)
)
(wire (pts (xy 191.135 147.32) (xy 175.26 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13ee4121-9afa-413a-b16e-1e24d0f17906)
)
(wire (pts (xy 152.4 31.75) (xy 170.18 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13faf49a-0944-442d-8171-5eb88fa25437)
)
(wire (pts (xy 183.515 76.2) (xy 175.26 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14b8599e-5fe7-460d-ae93-46d0f090b24c)
)
(wire (pts (xy 183.515 109.22) (xy 175.26 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16f0b216-c2f4-4b65-9c1d-6cd0bea68820)
)
(wire (pts (xy 96.52 129.54) (xy 111.76 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19595a49-d381-4d89-9605-34b213a016a5)
)
(wire (pts (xy 36.195 167.64) (xy 48.895 167.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b885294-4042-48fe-96b1-9023696aa0a1)
)
(polyline (pts (xy 22.225 161.29) (xy 76.835 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cc068eb-c325-49d0-a5a6-3ed9aa65ba69)
)
(wire (pts (xy 181.61 31.75) (xy 181.61 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1df38f5f-605f-468d-b239-aa9b415fe23c)
)
(wire (pts (xy 215.9 40.64) (xy 215.9 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ee11de4-dc9b-46ee-a90f-da880b25a928)
)
(wire (pts (xy 46.355 104.14) (xy 62.865 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20f72892-805b-421a-aa8d-b75d15777e17)
)
(wire (pts (xy 183.515 91.44) (xy 175.26 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2201ef02-c440-43c5-8c50-a40d8ee9ea1a)
)
(wire (pts (xy 111.76 140.97) (xy 103.505 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22900250-6b3a-4b85-a566-3bee2c6a56e1)
)
(wire (pts (xy 183.515 124.46) (xy 175.26 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b1da19c-b05e-420a-9fbc-840919c5a36d)
)
(wire (pts (xy 57.15 89.535) (xy 46.355 89.535))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e7ffc6c-99f1-4ec0-9e3d-a04bd2058685)
)
(wire (pts (xy 103.505 111.76) (xy 111.76 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f60f1b5-4eb3-4416-8817-0115156f2bc2)
)
(wire (pts (xy 36.195 180.34) (xy 48.895 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31bbd66b-a5c8-433e-9d32-838a215e8b3a)
)
(wire (pts (xy 46.355 106.68) (xy 62.865 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32b98456-f2a8-4915-85e3-5a689451dea1)
)
(wire (pts (xy 238.76 31.75) (xy 250.19 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 351ac9c5-4683-42d7-a9b7-2f445a3c35be)
)
(wire (pts (xy 170.18 31.75) (xy 181.61 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 357a4a7e-5b65-4832-860f-0351d1f754ad)
)
(wire (pts (xy 215.9 31.75) (xy 227.33 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 364ea0a1-74a4-41e8-86cf-242b770b5eeb)
)
(wire (pts (xy 139.7 52.07) (xy 142.24 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36f8cd55-c7e7-4c32-af0f-0467438de59f)
)
(wire (pts (xy 26.035 180.34) (xy 28.575 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37e6d575-7a17-45ff-963c-3c06bbf672ab)
)
(wire (pts (xy 57.15 64.135) (xy 46.355 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37f28fc5-280d-4752-b8fc-5f8b7687dde6)
)
(wire (pts (xy 57.15 27.94) (xy 46.355 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39ee868e-aded-435a-9ac5-21a5363c8a1b)
)
(wire (pts (xy 183.515 96.52) (xy 175.26 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bed0ec7-c047-4f03-a45d-e9bb7808cab5)
)
(wire (pts (xy 191.135 152.4) (xy 175.26 152.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d0bff3d-ffe5-43eb-9548-2bd9eb9f36c1)
)
(wire (pts (xy 215.9 31.75) (xy 215.9 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f5d6384-785f-4359-9b76-2aca0571a81f)
)
(wire (pts (xy 238.76 40.64) (xy 238.76 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 405887c1-71a7-4312-9d73-935d085c3d1b)
)
(wire (pts (xy 204.47 31.75) (xy 215.9 31.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41487c51-197a-46d3-ae5e-2043949e5cc3)
)
(wire (pts (xy 96.52 128.905) (xy 96.52 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41ee9644-226f-491f-8a64-61b8e676b6eb)
)
(wire (pts (xy 183.515 86.36) (xy 175.26 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45ce8213-f367-4cf3-9754-9ca73e573491)
)
(wire (pts (xy 142.24 52.07) (xy 142.24 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 488eff5a-7888-4d99-9569-9fcd3771602c)
)
(wire (pts (xy 96.52 120.015) (xy 96.52 121.285))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48ef237c-44a9-49ff-b02a-116286410a1e)
)
(wire (pts (xy 183.515 88.9) (xy 175.26 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4932a91e-47b4-453c-bb49-9db6210026da)
)
(wire (pts (xy 125.73 52.07) (xy 130.81 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49d45e87-23df-430b-a380-c9e0c38361ee)
)
(wire (pts (xy 111.76 81.28) (xy 100.965 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a1c1eaf-a232-470a-b73e-536d6a8b6031)
)
(wire (pts (xy 111.76 27.94) (xy 111.76 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f3fd123-3a59-4d3a-a509-ac190e8dd2e5)
)
(wire (pts (xy 57.15 79.375) (xy 46.355 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5028aad4-dc08-46e4-9045-0e76689cb165)
)
(wire (pts (xy 57.15 46.355) (xy 46.355 46.355))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 509cb85f-c816-4d31-b460-b4e6f3a393af)
)
(wire (pts (xy 183.515 81.28) (xy 175.26 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5142a82a-1aaa-4d54-beb2-79340702f58b)
)
(wire (pts (xy 204.47 40.64) (xy 204.47 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51e6ee61-f2b2-49f1-a489-3cc803370b8e)
)
(wire (pts (xy 183.515 137.16) (xy 175.26 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53b18d83-9395-47fa-bd90-36be12c1aafb)
)
(wire (pts (xy 181.61 41.91) (xy 170.18 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54735ab1-abbc-4d8c-9a27-685cdf350430)
)
(wire (pts (xy 111.76 36.83) (xy 111.76 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5627f1e1-d455-49e0-a5cc-d2829ef51f3c)
)
(wire (pts (xy 183.515 111.76) (xy 175.26 111.76))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5745eb3a-32c5-4269-ac55-2dcb228ecbe6)
)
(wire (pts (xy 41.275 173.99) (xy 41.275 179.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58056308-873b-4912-8ce9-282a5e5d9f9b)
)
(wire (pts (xy 160.02 58.42) (xy 160.02 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58e5ffc5-f257-43aa-8474-b94bb174fe11)
)
(wire (pts (xy 113.03 50.8) (xy 113.03 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b685047-4d1b-4b2e-82e2-ee2be7b030d2)
)
(wire (pts (xy 57.15 30.48) (xy 46.355 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c22552e-a9b6-4402-b3b6-c4455c732934)
)
(wire (pts (xy 111.76 27.94) (xy 123.19 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e404cf8-575d-455d-8535-8728ee36d77a)
)
(wire (pts (xy 57.15 51.435) (xy 46.355 51.435))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e9cbdec-51ed-4827-97d9-1a26ef5c6ca4)
)
(wire (pts (xy 139.7 58.42) (xy 139.7 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6094cdbb-4234-4a85-8dd1-216fa3be2bf8)
)
(wire (pts (xy 183.515 93.98) (xy 175.26 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))