-
Notifications
You must be signed in to change notification settings - Fork 2
/
optical-keyboard-mx.kicad_sch
8711 lines (8602 loc) · 366 KB
/
optical-keyboard-mx.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 37767006-df0b-4e74-b3d0-e4a4444fde73)
(paper "A4")
(title_block
(title "Optical Keyboard Gateron MX")
(date "2022-09-17")
(rev "1")
(company "girish")
)
(lib_symbols
(symbol "MySymbols:BlackPill_STLINK" (in_bom yes) (on_board yes)
(property "Reference" "U6" (id 0) (at 4.5594 -27.5495 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BlackPill_STLINK" (id 1) (at 4.5594 -30.3246 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 43.18 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 43.18 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "stm32 stm32f4 stm32f401 stm32f411 blackpill" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "STM32F4-based \"Black Pill\" micro-controller development board" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "BlackPill_STLINK_0_1"
(rectangle (start -10.16 27.94) (end 10.16 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "BlackPill_STLINK_1_1"
(pin bidirectional line (at 12.7 -7.62 180) (length 2.54)
(name "PB12" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -12.7 0) (length 2.54)
(name "PA15" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 12.7 180) (length 2.54)
(name "PB3" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 10.16 180) (length 2.54)
(name "PB4" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 7.62 180) (length 2.54)
(name "PB5" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 5.08 180) (length 2.54)
(name "PB6" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 2.54 180) (length 2.54)
(name "PB7" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 0 180) (length 2.54)
(name "PB8" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -2.54 180) (length 2.54)
(name "PB9" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 30.48 270) (length 2.54)
(name "5V" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -10.16 180) (length 2.54)
(name "PB13" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 5.08 30.48 270) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -5.08 30.48 270) (length 2.54)
(name "VBAT" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -17.78 0) (length 2.54)
(name "PC13" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -20.32 0) (length 2.54)
(name "PC14" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -22.86 0) (length 2.54)
(name "PC15" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 25.4 0) (length 2.54)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 20.32 0) (length 2.54)
(name "PA0" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 17.78 0) (length 2.54)
(name "PA1" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 15.24 0) (length 2.54)
(name "PA2" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 12.7 0) (length 2.54)
(name "PA3" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -12.7 180) (length 2.54)
(name "PB14" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 10.16 0) (length 2.54)
(name "PA4" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 7.62 0) (length 2.54)
(name "PA5" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 5.08 0) (length 2.54)
(name "PA6" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 2.54 0) (length 2.54)
(name "PA7" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 20.32 180) (length 2.54)
(name "PB0" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 17.78 180) (length 2.54)
(name "PB1" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 15.24 180) (length 2.54)
(name "PB2" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -5.08 180) (length 2.54)
(name "PB10" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 2.54 30.48 270) (length 2.54)
(name "3V3" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -15.24 180) (length 2.54)
(name "PB15" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -2.54 30.48 270) (length 2.54)
(name "5V" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 12.7 -19.05 180) (length 2.54)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -21.59 180) (length 2.54)
(name "SWDIO" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 -24.13 180) (length 2.54)
(name "SWSCK" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 -27.94 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 0 0) (length 2.54)
(name "PA8" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -2.54 0) (length 2.54)
(name "PA9" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -5.08 0) (length 2.54)
(name "PA10" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -7.62 0) (length 2.54)
(name "PA11" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.7 -10.16 0) (length 2.54)
(name "PA12" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "MySymbols:R_PT" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "RP" (id 0) (at 1.27 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_PT" (id 1) (at 1.27 0 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 1.27 -6.35 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (id 3) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC" "0805-2012" (id 4) (at -2.54 -3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "LCSC" "C17633" (id 5) (at 3.81 3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "ki_keywords" "resistor variable light sensitive opto LDR" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Photoresistor" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*LDR* R?LDR*" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_PT_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_PT_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 "R_PT_1" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "RP" (id 0) (at 1.27 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_PT_1" (id 1) (at 1.27 0 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 1.27 -6.35 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (id 3) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC" "0805-2012" (id 4) (at -2.54 -3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "LCSC" "C17633" (id 5) (at 3.81 3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "ki_keywords" "resistor variable light sensitive opto LDR" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Photoresistor" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*LDR* R?LDR*" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_PT_1_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_PT_1_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 "R_PT_2" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "RP" (id 0) (at 1.27 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_PT_2" (id 1) (at 1.27 0 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 1.27 -6.35 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (id 3) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC" "0805-2012" (id 4) (at -2.54 -3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "LCSC" "C17633" (id 5) (at 3.81 3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "ki_keywords" "resistor variable light sensitive opto LDR" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Photoresistor" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*LDR* R?LDR*" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_PT_2_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_PT_2_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 "R_PT_3" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "RP" (id 0) (at 1.27 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_PT_3" (id 1) (at 1.27 0 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 1.27 -6.35 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (id 3) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC" "0805-2012" (id 4) (at -2.54 -3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "LCSC" "C17633" (id 5) (at 3.81 3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "ki_keywords" "resistor variable light sensitive opto LDR" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Photoresistor" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*LDR* R?LDR*" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_PT_3_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_PT_3_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 "R_PT_4" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "RP" (id 0) (at 1.27 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_PT_4" (id 1) (at 1.27 0 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "Resistor_SMD:R_0805_2012Metric" (id 2) (at 1.27 -6.35 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (id 3) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "JLC" "0805-2012" (id 4) (at -2.54 -3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "LCSC" "C17633" (id 5) (at 3.81 3.81 0)
(effects (font (size 0.5 0.5)) hide)
)
(property "ki_keywords" "resistor variable light sensitive opto LDR" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Photoresistor" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*LDR* R?LDR*" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_PT_4_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_PT_4_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 "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 "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (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" "+5V" (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 \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:VCC" (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" "VCC" (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 \"VCC\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_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 "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 205.74 68.58) (diameter 0) (color 0 0 0 0)
(uuid 003cb321-9fc4-4c72-9d8e-157979982af8)
)
(junction (at 114.3 97.79) (diameter 0) (color 0 0 0 0)
(uuid 010446cb-6358-4bdf-88b1-fc08acbdf179)
)
(junction (at 205.74 44.45) (diameter 0) (color 0 0 0 0)
(uuid 01281aff-92b6-49ac-8c51-3e27bea70cf6)
)
(junction (at 71.12 68.58) (diameter 0) (color 0 0 0 0)
(uuid 01d93b9f-ad0d-4794-8898-0c5b9e37cc03)
)
(junction (at 184.15 57.15) (diameter 0) (color 0 0 0 0)
(uuid 02a0643c-861e-4e6b-b7c3-a0ca25cb8025)
)
(junction (at 223.52 100.33) (diameter 0) (color 0 0 0 0)
(uuid 03553dcd-08ce-4898-9845-83f5d9f71368)
)
(junction (at 232.41 73.66) (diameter 0) (color 0 0 0 0)
(uuid 04701525-1627-470f-ad85-2c0f1a4e6abf)
)
(junction (at 115.57 105.41) (diameter 0) (color 0 0 0 0)
(uuid 04c50def-aacd-4619-ab66-f42b2902cdb0)
)
(junction (at 54.61 116.84) (diameter 0) (color 0 0 0 0)
(uuid 04f2d848-82b8-4505-8cfa-39a04934940a)
)
(junction (at 256.54 100.33) (diameter 0) (color 0 0 0 0)
(uuid 053bd2bd-4ae7-42ae-a80b-f36483482b69)
)
(junction (at 167.64 33.02) (diameter 0) (color 0 0 0 0)
(uuid 065da36e-51f3-408a-aea1-88b17bacf9ea)
)
(junction (at 182.88 73.66) (diameter 0) (color 0 0 0 0)
(uuid 06819116-c192-44dc-b222-186261714b39)
)
(junction (at 250.19 129.54) (diameter 0) (color 0 0 0 0)
(uuid 09a2b321-d7f3-42ab-bb60-33c0be8f5c9f)
)
(junction (at 184.15 105.41) (diameter 0) (color 0 0 0 0)
(uuid 09cbc8e1-c7cb-4a7c-8a55-0cf317675d73)
)
(junction (at 87.63 116.84) (diameter 0) (color 0 0 0 0)
(uuid 0a0f00e2-8db5-4fb9-ae86-d376e60791d3)
)
(junction (at 55.88 124.46) (diameter 0) (color 0 0 0 0)
(uuid 0a6de6a5-3f3d-4065-a8d4-8212da837036)
)
(junction (at 222.25 116.84) (diameter 0) (color 0 0 0 0)
(uuid 0bb8a3d0-cf00-4adb-8538-05763c3a868a)
)
(junction (at 115.57 129.54) (diameter 0) (color 0 0 0 0)
(uuid 0bc3e112-09d3-4651-a1d1-a2b7fea71a88)
)
(junction (at 114.3 146.05) (diameter 0) (color 0 0 0 0)
(uuid 0c2b0dc8-e941-4527-a1f4-fab3ff11f471)
)
(junction (at 99.06 129.54) (diameter 0) (color 0 0 0 0)
(uuid 0c5789a3-4867-4ad1-8dd4-1dd3a434df30)
)
(junction (at 250.19 81.28) (diameter 0) (color 0 0 0 0)
(uuid 0f3c901e-f511-4fa1-93ac-44b01c91a90f)
)
(junction (at 266.7 33.02) (diameter 0) (color 0 0 0 0)
(uuid 101a4761-5d3d-421a-ac47-5c16774702be)
)
(junction (at 99.06 33.02) (diameter 0) (color 0 0 0 0)
(uuid 1027a34c-5ed8-4402-bad2-91234b7f8450)
)
(junction (at 207.01 100.33) (diameter 0) (color 0 0 0 0)
(uuid 10b49c25-6718-4a33-9678-ef2413fd8e31)
)
(junction (at 273.05 124.46) (diameter 0) (color 0 0 0 0)
(uuid 10fc8195-da0f-41f2-b41a-2bb9fbc6e523)
)
(junction (at 99.06 57.15) (diameter 0) (color 0 0 0 0)
(uuid 140e68bb-af4e-4b10-a683-b1c676fcfe34)
)
(junction (at 39.37 100.33) (diameter 0) (color 0 0 0 0)
(uuid 149d104e-d310-4bb4-a406-03ad1615cb9a)
)
(junction (at 82.55 33.02) (diameter 0) (color 0 0 0 0)
(uuid 15760198-a47d-402f-824b-5bc195caa060)
)
(junction (at 137.16 68.58) (diameter 0) (color 0 0 0 0)
(uuid 158b33d7-ccb3-491d-91a1-4beee86bb230)
)
(junction (at 217.17 81.28) (diameter 0) (color 0 0 0 0)
(uuid 1672fa97-3527-487d-9aba-d5230d166f9c)
)
(junction (at 189.23 116.84) (diameter 0) (color 0 0 0 0)
(uuid 1929572a-c5d3-458b-a044-4898b7430fdc)
)
(junction (at 248.92 121.92) (diameter 0) (color 0 0 0 0)
(uuid 197b882e-3f4c-4cb7-8fc7-583165c3f6e5)
)
(junction (at 199.39 121.92) (diameter 0) (color 0 0 0 0)
(uuid 1b966bb7-9f59-471c-ad01-cd6079522388)
)
(junction (at 132.08 105.41) (diameter 0) (color 0 0 0 0)
(uuid 1c8d8b44-8f2d-447a-bde9-666a6e3298fd)
)
(junction (at 238.76 44.45) (diameter 0) (color 0 0 0 0)
(uuid 1cb7f05a-e63e-41fc-8c86-c53666fac61b)
)
(junction (at 248.92 73.66) (diameter 0) (color 0 0 0 0)
(uuid 1d8302ee-87e6-4e5d-a5eb-87c201445d8b)
)
(junction (at 217.17 33.02) (diameter 0) (color 0 0 0 0)
(uuid 1e40d7d9-da0b-4d0d-a8e4-ac0ae0592320)
)
(junction (at 66.04 81.28) (diameter 0) (color 0 0 0 0)
(uuid 1ec82cd8-7335-474a-9b4d-c9f0770f1eee)
)
(junction (at 276.86 41.91) (diameter 0) (color 0 0 0 0)
(uuid 20a67b39-5cd9-4b4f-b43c-ef0f9bd707df)
)
(junction (at 88.9 124.46) (diameter 0) (color 0 0 0 0)
(uuid 20f027ad-58e4-4f0f-811f-070301bde5e2)
)
(junction (at 232.41 121.92) (diameter 0) (color 0 0 0 0)
(uuid 21660435-1c7b-454c-a2c2-0dff9df284d6)
)
(junction (at 105.41 148.59) (diameter 0) (color 0 0 0 0)
(uuid 21a6a012-26d7-46ef-8d40-9d6637122a64)
)
(junction (at 190.5 124.46) (diameter 0) (color 0 0 0 0)
(uuid 233bbd1d-ba46-410b-9466-4acf25500748)
)
(junction (at 115.57 33.02) (diameter 0) (color 0 0 0 0)
(uuid 256c8abf-f58f-4798-89a6-214a50d2eb8d)
)
(junction (at 276.86 90.17) (diameter 0) (color 0 0 0 0)
(uuid 258c3a39-b4a2-43d5-b7c0-d3e5f6ecddce)
)
(junction (at 132.08 33.02) (diameter 0) (color 0 0 0 0)
(uuid 25bb36a4-b457-4a44-99ae-64be9c85f6fc)
)
(junction (at 200.66 105.41) (diameter 0) (color 0 0 0 0)
(uuid 265486e7-7dcf-49a3-8ca9-719c505e002e)
)
(junction (at 147.32 49.53) (diameter 0) (color 0 0 0 0)
(uuid 26d043cf-3c5b-4761-b97e-79f2d31c6d42)
)
(junction (at 173.99 124.46) (diameter 0) (color 0 0 0 0)
(uuid 271fc945-0584-410d-8de7-3a954f9b57cb)
)
(junction (at 120.65 44.45) (diameter 0) (color 0 0 0 0)
(uuid 275fdc7b-fa16-4972-9942-e47c9f064ae1)
)
(junction (at 256.54 76.2) (diameter 0) (color 0 0 0 0)
(uuid 28d713bb-3bde-404d-b52d-65289ab5db65)
)
(junction (at 88.9 100.33) (diameter 0) (color 0 0 0 0)
(uuid 2a8613f8-7520-46c1-ac10-67ac3174aca1)
)
(junction (at 199.39 73.66) (diameter 0) (color 0 0 0 0)
(uuid 2a937041-82f6-4eb8-9a39-8896e430d67b)
)
(junction (at 64.77 49.53) (diameter 0) (color 0 0 0 0)
(uuid 2b173911-7827-4de9-8cbc-6b56eae683c8)
)
(junction (at 39.37 124.46) (diameter 0) (color 0 0 0 0)
(uuid 2ce78fe3-5a54-43b5-955c-3ce58e539e58)
)
(junction (at 33.02 57.15) (diameter 0) (color 0 0 0 0)
(uuid 2cede5a1-1ba1-4d06-add3-4b4d207722cb)
)
(junction (at 120.65 116.84) (diameter 0) (color 0 0 0 0)
(uuid 2df7a49a-faa8-49a3-9933-c549ea76a052)
)
(junction (at 64.77 97.79) (diameter 0) (color 0 0 0 0)
(uuid 3028e854-633b-4227-a288-32c1be28627e)
)
(junction (at 81.28 146.05) (diameter 0) (color 0 0 0 0)
(uuid 3055199a-f2b6-4e03-9deb-428d9d9315cc)
)
(junction (at 82.55 81.28) (diameter 0) (color 0 0 0 0)
(uuid 3196d39d-7b9d-4e84-81a2-c95e2eea9694)
)
(junction (at 215.9 121.92) (diameter 0) (color 0 0 0 0)
(uuid 3264a2d1-91af-4953-b8cd-48a3f9f7b9f1)
)
(junction (at 104.14 92.71) (diameter 0) (color 0 0 0 0)
(uuid 3343c15d-8a83-4939-bae5-d5701f8cf8e4)
)
(junction (at 72.39 100.33) (diameter 0) (color 0 0 0 0)
(uuid 3357d280-e63a-4980-9ade-3ee1e9a7b67e)
)
(junction (at 276.86 49.53) (diameter 0) (color 0 0 0 0)
(uuid 34ac5ade-b843-4697-b7d2-f69041e34ad7)
)
(junction (at 49.53 57.15) (diameter 0) (color 0 0 0 0)
(uuid 34fdb170-5ae0-4992-ad87-bd485a4b4363)
)
(junction (at 266.7 105.41) (diameter 0) (color 0 0 0 0)
(uuid 350524af-2bdf-425d-aea6-7e5cfff69199)
)
(junction (at 248.92 49.53) (diameter 0) (color 0 0 0 0)
(uuid 3537f18c-80a3-4599-b1b4-7d46bc4b65c2)
)
(junction (at 215.9 146.05) (diameter 0) (color 0 0 0 0)
(uuid 3540e012-186f-47b2-8b2a-e54e37411e74)
)
(junction (at 97.79 73.66) (diameter 0) (color 0 0 0 0)
(uuid 356ead8e-5488-432a-b0e4-90df3367726d)
)
(junction (at 240.03 124.46) (diameter 0) (color 0 0 0 0)
(uuid 35f67503-f354-45a5-930c-0e9435c00a11)
)
(junction (at 271.78 116.84) (diameter 0) (color 0 0 0 0)
(uuid 3c71d2ee-24ca-407d-8a53-6d4aed86daea)
)
(junction (at 66.04 33.02) (diameter 0) (color 0 0 0 0)
(uuid 3c78900e-dee8-4971-8431-fae568c94d5b)
)
(junction (at 248.92 146.05) (diameter 0) (color 0 0 0 0)
(uuid 3d606d19-5425-4fdc-80f9-dc651d0ae650)
)
(junction (at 154.94 100.33) (diameter 0) (color 0 0 0 0)
(uuid 3de68e69-db28-4dd2-b15a-dfc2a12bb71d)
)
(junction (at 190.5 81.28) (diameter 0) (color 0 0 0 0)
(uuid 3e259a57-74fd-4abe-9c0b-8eb5ba32bff8)
)
(junction (at 114.3 73.66) (diameter 0) (color 0 0 0 0)
(uuid 3ee95cf4-8909-4e94-bd91-381e2c67cb1e)
)
(junction (at 153.67 116.84) (diameter 0) (color 0 0 0 0)
(uuid 3f21dd66-b0b7-4f91-a690-4983b1e688b6)
)
(junction (at 38.1 68.58) (diameter 0) (color 0 0 0 0)
(uuid 3f60711f-54e6-4904-8a0b-230953a987d8)
)
(junction (at 276.86 97.79) (diameter 0) (color 0 0 0 0)
(uuid 4038643c-7e84-4431-a0ed-176d57db94c2)
)
(junction (at 232.41 97.79) (diameter 0) (color 0 0 0 0)
(uuid 4089681c-bde6-4e5b-958c-01c57574ed4e)
)
(junction (at 166.37 146.05) (diameter 0) (color 0 0 0 0)
(uuid 40994688-c3d8-4bc1-a236-f1adc422ac5d)
)
(junction (at 87.63 44.45) (diameter 0) (color 0 0 0 0)
(uuid 40fbe8d6-722d-4785-a5a3-fac190337b85)
)
(junction (at 137.16 44.45) (diameter 0) (color 0 0 0 0)
(uuid 4120fc31-d339-4ace-855c-58b793a33329)
)
(junction (at 189.23 92.71) (diameter 0) (color 0 0 0 0)
(uuid 430e4467-d2c4-42f9-bf5a-47fbf08d492b)
)
(junction (at 276.86 66.04) (diameter 0) (color 0 0 0 0)
(uuid 433dffa7-8fa4-4362-9201-e41dd6006323)
)
(junction (at 71.12 116.84) (diameter 0) (color 0 0 0 0)
(uuid 449f9259-d5fe-4869-9702-a66982236b4d)
)
(junction (at 217.17 57.15) (diameter 0) (color 0 0 0 0)
(uuid 44f2b69c-a13b-4336-bb00-67e5bb3f4cd0)
)
(junction (at 48.26 73.66) (diameter 0) (color 0 0 0 0)
(uuid 455c692f-f076-4944-80cc-c06555ad6a38)
)
(junction (at 199.39 49.53) (diameter 0) (color 0 0 0 0)
(uuid 467aacb4-61c7-4c70-b8a8-a3327994d16b)
)
(junction (at 92.71 179.07) (diameter 0) (color 0 0 0 0)
(uuid 47104447-3974-4c94-8c80-df0520979430)
)
(junction (at 200.66 57.15) (diameter 0) (color 0 0 0 0)
(uuid 483ca5ce-b37d-4295-a293-bcf2404c95df)
)
(junction (at 276.86 114.3) (diameter 0) (color 0 0 0 0)
(uuid 49401f94-7f6c-46b3-8e91-a5dce0c30968)
)
(junction (at 199.39 97.79) (diameter 0) (color 0 0 0 0)
(uuid 49dce174-10d7-4e59-86af-2c70db7da1e4)
)
(junction (at 21.59 76.2) (diameter 0) (color 0 0 0 0)
(uuid 49ea8c8e-17e9-43be-999c-323822a8a821)
)
(junction (at 200.66 129.54) (diameter 0) (color 0 0 0 0)
(uuid 4a1de87a-adba-46ac-ac4d-3c8ba540623b)
)
(junction (at 33.02 129.54) (diameter 0) (color 0 0 0 0)
(uuid 4b65adb0-eae9-47ec-9a0d-f56d301c5d8a)
)
(junction (at 115.57 57.15) (diameter 0) (color 0 0 0 0)
(uuid 4bda85b3-4776-4f57-8240-2da147c65f2b)
)
(junction (at 97.79 121.92) (diameter 0) (color 0 0 0 0)
(uuid 4d669aac-2767-4fdf-b764-c724dfe53b57)
)
(junction (at 54.61 68.58) (diameter 0) (color 0 0 0 0)
(uuid 4e637e0a-9471-4a07-a6d3-727b96ed4ce2)
)
(junction (at 166.37 121.92) (diameter 0) (color 0 0 0 0)
(uuid 4ec1f79d-d1fa-4c25-9841-aae2c9b788bb)
)
(junction (at 130.81 49.53) (diameter 0) (color 0 0 0 0)
(uuid 518fce63-8cf0-4500-853a-26dea2fa6f1f)
)
(junction (at 48.26 97.79) (diameter 0) (color 0 0 0 0)
(uuid 523dca61-5a40-4169-be69-25aedd3073b8)
)
(junction (at 256.54 124.46) (diameter 0) (color 0 0 0 0)
(uuid 53071836-2894-406f-be76-e6b51063ceeb)
)
(junction (at 21.59 124.46) (diameter 0) (color 0 0 0 0)
(uuid 54428378-fbe6-489b-bb9b-0da68b03cc62)
)
(junction (at 256.54 148.59) (diameter 0) (color 0 0 0 0)
(uuid 575bbccc-bcb3-4408-8b1a-f5b62c014570)
)
(junction (at 172.72 44.45) (diameter 0) (color 0 0 0 0)
(uuid 5761229a-0b13-4831-b5b1-0b461060aaf2)
)
(junction (at 105.41 76.2) (diameter 0) (color 0 0 0 0)