-
Notifications
You must be signed in to change notification settings - Fork 0
/
rgb_addr_led.kicad_sch
5182 lines (5102 loc) · 212 KB
/
rgb_addr_led.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 da2db6da-b8f8-48ed-adaf-df2e7fedcdbe)
(paper "A3")
(title_block
(title "Smart Chessboard - Addressable RGB LEDs")
(date "2022-11-12")
(rev "B")
(company "Butler Electronics")
(comment 1 "Design by Joshua Butler, MD, MHI")
)
(lib_symbols
(symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small" (id 1) (at 0.762 -1.016 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" "R resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small symbol" (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_Small_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (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" "solder jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (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 "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "LED:WS2813" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 5.08 5.715 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
)
(property "Value" "WS2813" (id 1) (at 1.27 -5.715 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "LED_SMD:LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm" (id 2) (at 1.27 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "http://www.normandled.com/upload/201605/WS2813%20LED%20Datasheet.pdf" (id 3) (at 2.54 -9.525 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "ki_keywords" "RGB LED addressable" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "RGB LED with integrated controller" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED*WS2812*PLCC*5.0x5.0mm*P1.6mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "WS2813_0_0"
(text "RGB" (at 2.286 -4.191 0)
(effects (font (size 0.762 0.762)))
)
)
(symbol "WS2813_0_1"
(polyline
(pts
(xy 1.27 -3.556)
(xy 1.778 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 1.778 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -3.556)
(xy 2.667 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -2.54)
(xy 1.27 -3.556)
(xy 1.27 -3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.524)
(xy 1.27 -2.54)
(xy 1.27 -2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.683 -1.016)
(xy 3.683 -3.556)
(xy 3.683 -4.064)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -1.524)
(xy 2.667 -1.524)
(xy 3.683 -3.556)
(xy 4.699 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 5.08) (end -5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "WS2813_1_1"
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 7.62 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "DOUT" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "DIN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "BIN" (effects (font (size 1.27 1.27))))
(number "6" (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 163.83 214.63) (diameter 0) (color 0 0 0 0)
(uuid 00098681-6de9-475b-843d-ae6cb22a4206)
)
(junction (at 313.69 64.77) (diameter 0) (color 0 0 0 0)
(uuid 019c51d2-7ded-46f9-913f-8e0af8a15b38)
)
(junction (at 402.59 140.97) (diameter 0) (color 0 0 0 0)
(uuid 065e85c3-1890-44fd-b81d-131340670892)
)
(junction (at 316.23 229.87) (diameter 0) (color 0 0 0 0)
(uuid 0816f879-235e-4688-b50b-85dbc51d0945)
)
(junction (at 229.87 140.97) (diameter 0) (color 0 0 0 0)
(uuid 0b0c97c1-0ea5-4d3c-aa68-31d4bcec5886)
)
(junction (at 256.54 109.22) (diameter 0) (color 0 0 0 0)
(uuid 0bb210c6-9a48-4250-8c54-61d8dd5a891a)
)
(junction (at 191.77 170.18) (diameter 0) (color 0 0 0 0)
(uuid 0c2cac2e-ac97-496f-9c21-5e9d940eed28)
)
(junction (at 143.51 64.77) (diameter 0) (color 0 0 0 0)
(uuid 0cf372ef-d41c-4bd0-9312-ecb3f5f836e9)
)
(junction (at 219.71 125.73) (diameter 0) (color 0 0 0 0)
(uuid 0fbd367f-b13b-4669-9c7b-832ce8a57f1b)
)
(junction (at 199.39 64.77) (diameter 0) (color 0 0 0 0)
(uuid 105df394-2e2f-4077-95a8-9d02149149a9)
)
(junction (at 49.53 81.28) (diameter 0) (color 0 0 0 0)
(uuid 1080f0b7-78ca-4c76-a026-c0228b0651b5)
)
(junction (at 134.62 125.73) (diameter 0) (color 0 0 0 0)
(uuid 14edc507-0233-4a7c-a6ec-e51eacda76bb)
)
(junction (at 316.23 96.52) (diameter 0) (color 0 0 0 0)
(uuid 150ffecd-db43-4d1a-a17b-a2b050240cb5)
)
(junction (at 114.3 198.12) (diameter 0) (color 0 0 0 0)
(uuid 154e20a1-798e-4fbc-aa12-af80db7c8765)
)
(junction (at 191.77 36.83) (diameter 0) (color 0 0 0 0)
(uuid 158424df-3888-44f2-a3ff-55844bdd3ee4)
)
(junction (at 78.74 259.08) (diameter 0) (color 0 0 0 0)
(uuid 183f290b-cb8f-42db-b99a-af9f42d2c7f1)
)
(junction (at 370.84 20.32) (diameter 0) (color 0 0 0 0)
(uuid 19057dc3-0eff-471d-825f-7cbea067bba4)
)
(junction (at 171.45 64.77) (diameter 0) (color 0 0 0 0)
(uuid 19adc194-bc15-46e5-96f3-fcd49571fa04)
)
(junction (at 106.68 125.73) (diameter 0) (color 0 0 0 0)
(uuid 1c3fbec5-1462-4737-b6e4-fcdc71d63959)
)
(junction (at 278.13 81.28) (diameter 0) (color 0 0 0 0)
(uuid 1de5441b-7212-4030-9ed5-387f6a46d9e8)
)
(junction (at 88.9 229.87) (diameter 0) (color 0 0 0 0)
(uuid 1e5ac5a5-6f06-4e29-8aa6-70f44019da91)
)
(junction (at 219.71 214.63) (diameter 0) (color 0 0 0 0)
(uuid 1f6eae2b-f3ab-489e-9f78-66d0c72735f5)
)
(junction (at 199.39 109.22) (diameter 0) (color 0 0 0 0)
(uuid 2078bdab-f4dc-44c1-a3d9-ff2782796dda)
)
(junction (at 106.68 214.63) (diameter 0) (color 0 0 0 0)
(uuid 22c868d7-57d0-4b7b-b5c3-3b4f5b22c8aa)
)
(junction (at 163.83 81.28) (diameter 0) (color 0 0 0 0)
(uuid 27468539-fd21-4c44-a5e2-0f83d0858dd0)
)
(junction (at 398.78 153.67) (diameter 0) (color 0 0 0 0)
(uuid 2be00987-24ad-4891-b46e-b270a58d47c7)
)
(junction (at 86.36 198.12) (diameter 0) (color 0 0 0 0)
(uuid 2c62a281-05cc-454b-8992-97802dce4ed3)
)
(junction (at 341.63 109.22) (diameter 0) (color 0 0 0 0)
(uuid 2dff0a1d-dd6e-46a8-bad7-e3629ad1ee17)
)
(junction (at 201.93 96.52) (diameter 0) (color 0 0 0 0)
(uuid 2ec13c96-fd81-4319-9276-1b17b649914b)
)
(junction (at 86.36 20.32) (diameter 0) (color 0 0 0 0)
(uuid 2f7206a0-b7ad-4de2-ad26-89e687f9013a)
)
(junction (at 134.62 214.63) (diameter 0) (color 0 0 0 0)
(uuid 2fc7642e-e62d-47fa-a356-d55ac2eefcf5)
)
(junction (at 344.17 96.52) (diameter 0) (color 0 0 0 0)
(uuid 2fe90b36-0aac-49aa-b218-14d273fc3e93)
)
(junction (at 259.08 140.97) (diameter 0) (color 0 0 0 0)
(uuid 307b2e3f-8acf-4ce8-8fad-c16afeb225d5)
)
(junction (at 199.39 153.67) (diameter 0) (color 0 0 0 0)
(uuid 317f3f31-8242-4549-bfee-a614f33eecaa)
)
(junction (at 171.45 109.22) (diameter 0) (color 0 0 0 0)
(uuid 3211dfdf-27dd-4ffa-ad5f-031f1fbd1168)
)
(junction (at 370.84 153.67) (diameter 0) (color 0 0 0 0)
(uuid 3596b86c-0949-41cf-aaea-8537fd5ee68a)
)
(junction (at 146.05 96.52) (diameter 0) (color 0 0 0 0)
(uuid 362a97fd-f47e-440b-94d6-5326ac4e9981)
)
(junction (at 344.17 52.07) (diameter 0) (color 0 0 0 0)
(uuid 362ec2ac-83e1-4ca5-8c4c-dc73e41a03ac)
)
(junction (at 344.17 185.42) (diameter 0) (color 0 0 0 0)
(uuid 3669d7b9-2010-40ca-b554-65c4caf5e647)
)
(junction (at 247.65 214.63) (diameter 0) (color 0 0 0 0)
(uuid 37536ec8-7d6d-4a29-9641-7f075370ee89)
)
(junction (at 114.3 109.22) (diameter 0) (color 0 0 0 0)
(uuid 376c96e0-b843-45b9-ba07-5c4d222f956b)
)
(junction (at 402.59 185.42) (diameter 0) (color 0 0 0 0)
(uuid 38127d0e-f0ae-4e39-a959-dedcef3251f0)
)
(junction (at 285.75 198.12) (diameter 0) (color 0 0 0 0)
(uuid 38bd0af3-8db1-4eda-9f90-e39d1007b8ef)
)
(junction (at 219.71 170.18) (diameter 0) (color 0 0 0 0)
(uuid 38c1841e-a076-4854-9af5-19a4c5e4a2ee)
)
(junction (at 313.69 198.12) (diameter 0) (color 0 0 0 0)
(uuid 39c2c854-b785-4b86-b8b0-5ff945f057ce)
)
(junction (at 341.63 153.67) (diameter 0) (color 0 0 0 0)
(uuid 3ae2ea9a-cd21-4e13-8bd0-e6238fe9b84c)
)
(junction (at 173.99 140.97) (diameter 0) (color 0 0 0 0)
(uuid 3bfc6599-6ef3-4b35-beeb-8856f50327c6)
)
(junction (at 259.08 52.07) (diameter 0) (color 0 0 0 0)
(uuid 3c2a0e7d-a57b-4fa4-9fae-63c1f3e8b35a)
)
(junction (at 306.07 170.18) (diameter 0) (color 0 0 0 0)
(uuid 3f0ab666-34aa-4e9f-87aa-d912ae855351)
)
(junction (at 247.65 125.73) (diameter 0) (color 0 0 0 0)
(uuid 40c662fb-79a7-4fdd-8aae-f0de40a3999a)
)
(junction (at 285.75 64.77) (diameter 0) (color 0 0 0 0)
(uuid 420b7d2f-19d5-4916-aa79-da93edf8a16e)
)
(junction (at 86.36 109.22) (diameter 0) (color 0 0 0 0)
(uuid 4223bacc-bf47-486c-8ad6-9e76c85acdc8)
)
(junction (at 191.77 125.73) (diameter 0) (color 0 0 0 0)
(uuid 42b68358-81bb-4186-8903-b81931fcd35f)
)
(junction (at 78.74 81.28) (diameter 0) (color 0 0 0 0)
(uuid 42fa8dc9-8f03-4dee-b5d5-93bbcfb7040f)
)
(junction (at 344.17 140.97) (diameter 0) (color 0 0 0 0)
(uuid 469d01c8-5bd9-410f-9fbc-f366139d15a8)
)
(junction (at 259.08 185.42) (diameter 0) (color 0 0 0 0)
(uuid 473b43a0-966d-47d7-893d-85705ae9812a)
)
(junction (at 341.63 64.77) (diameter 0) (color 0 0 0 0)
(uuid 49119a03-4f0d-4975-8efc-2c22ccb7ac37)
)
(junction (at 229.87 52.07) (diameter 0) (color 0 0 0 0)
(uuid 4b311190-abad-46fc-bd96-8d42908db86a)
)
(junction (at 78.74 170.18) (diameter 0) (color 0 0 0 0)
(uuid 4ec76706-41e1-4bb6-b26b-6cb01b494a88)
)
(junction (at 201.93 229.87) (diameter 0) (color 0 0 0 0)
(uuid 52d96709-749d-405a-ab6c-043d3a719049)
)
(junction (at 191.77 214.63) (diameter 0) (color 0 0 0 0)
(uuid 534cbda1-434c-4d7b-9c3f-1221cca5dacc)
)
(junction (at 316.23 185.42) (diameter 0) (color 0 0 0 0)
(uuid 540fd605-cee7-433b-a525-847c9785514d)
)
(junction (at 116.84 96.52) (diameter 0) (color 0 0 0 0)
(uuid 55f097c4-2c49-4b3a-83aa-c21461025148)
)
(junction (at 363.22 125.73) (diameter 0) (color 0 0 0 0)
(uuid 579b62ec-17e4-4aaa-9c91-ceb4057b2555)
)
(junction (at 146.05 52.07) (diameter 0) (color 0 0 0 0)
(uuid 58d13e5e-5635-4414-91bd-5f762f3a6ccc)
)
(junction (at 199.39 198.12) (diameter 0) (color 0 0 0 0)
(uuid 59f7ecb1-9da7-45ac-9716-cb5465123955)
)
(junction (at 116.84 185.42) (diameter 0) (color 0 0 0 0)
(uuid 5a2d4047-9dfb-4014-a1ad-605c4bc4978a)
)
(junction (at 278.13 214.63) (diameter 0) (color 0 0 0 0)
(uuid 5b39bef7-760d-448d-b47a-3ec12973c5a7)
)
(junction (at 49.53 125.73) (diameter 0) (color 0 0 0 0)
(uuid 5bf18760-ceaa-4b0d-bb07-e3d3ec9a4ffb)
)
(junction (at 106.68 170.18) (diameter 0) (color 0 0 0 0)
(uuid 5c49ec9c-91d8-46aa-8917-c9585f7079fc)
)
(junction (at 278.13 170.18) (diameter 0) (color 0 0 0 0)
(uuid 5da18844-0f4e-4ae4-a249-8afde4e0ad34)
)
(junction (at 146.05 229.87) (diameter 0) (color 0 0 0 0)
(uuid 5f482e88-bfec-461d-b4ad-c54a994f5275)
)
(junction (at 201.93 140.97) (diameter 0) (color 0 0 0 0)
(uuid 5f82e54b-7322-4de4-9255-65a8bd402b91)
)
(junction (at 106.68 81.28) (diameter 0) (color 0 0 0 0)
(uuid 5f8ab6b9-6aff-40bb-a085-3d96b3f1c843)
)
(junction (at 146.05 274.32) (diameter 0) (color 0 0 0 0)
(uuid 6096f1c8-f257-45f9-9e69-ebb2717bbdd5)
)
(junction (at 285.75 20.32) (diameter 0) (color 0 0 0 0)
(uuid 612177c1-4140-4bfe-893f-394ea51d289a)
)
(junction (at 143.51 198.12) (diameter 0) (color 0 0 0 0)
(uuid 640c65c3-e01d-46e0-831e-741b66d664b6)
)
(junction (at 227.33 153.67) (diameter 0) (color 0 0 0 0)
(uuid 6486c8f5-7aa7-456f-87ba-dd510d377599)
)
(junction (at 227.33 20.32) (diameter 0) (color 0 0 0 0)
(uuid 66869e7e-1c7b-4fea-a062-cd55520a7b7e)
)
(junction (at 171.45 198.12) (diameter 0) (color 0 0 0 0)
(uuid 67ee8ee5-f44d-45b5-8322-89fae2200a29)
)
(junction (at 285.75 109.22) (diameter 0) (color 0 0 0 0)
(uuid 6c88c83c-cda2-4a30-aa0e-c196b77d3ccf)
)
(junction (at 114.3 20.32) (diameter 0) (color 0 0 0 0)
(uuid 702c34b9-360b-4b11-96e8-a71bb856a46b)
)
(junction (at 285.75 153.67) (diameter 0) (color 0 0 0 0)
(uuid 721522fa-2c63-4bef-97cf-b500f60f2467)
)
(junction (at 229.87 185.42) (diameter 0) (color 0 0 0 0)
(uuid 72420a00-daca-4f2b-9ee5-0bc5192cd6f2)
)
(junction (at 256.54 20.32) (diameter 0) (color 0 0 0 0)
(uuid 72462b0c-9910-42cc-9548-c92816cdf17a)
)
(junction (at 306.07 125.73) (diameter 0) (color 0 0 0 0)
(uuid 7a3eb3d6-852d-419f-b412-e40cbe5f9f47)
)
(junction (at 370.84 64.77) (diameter 0) (color 0 0 0 0)
(uuid 7c41db59-b83a-4faa-a81e-33ce458ed429)
)
(junction (at 363.22 81.28) (diameter 0) (color 0 0 0 0)
(uuid 7e380278-8c67-4e2e-b992-175205a39d6e)
)
(junction (at 146.05 185.42) (diameter 0) (color 0 0 0 0)
(uuid 7ef5a22c-0f45-4a77-bec5-10091e616280)
)
(junction (at 313.69 109.22) (diameter 0) (color 0 0 0 0)
(uuid 8022cf55-302a-45ce-b9b6-96d73c8ca052)
)
(junction (at 191.77 81.28) (diameter 0) (color 0 0 0 0)
(uuid 80c1482b-4f94-4736-8771-0b1831f440f1)
)
(junction (at 227.33 198.12) (diameter 0) (color 0 0 0 0)
(uuid 81118159-8861-4022-9d79-06c4340b16ac)
)
(junction (at 227.33 64.77) (diameter 0) (color 0 0 0 0)
(uuid 8175c84d-6778-460e-8305-70185a1950ad)
)
(junction (at 116.84 140.97) (diameter 0) (color 0 0 0 0)
(uuid 818467be-4eb2-4016-8e77-8b43a4271e8e)
)
(junction (at 114.3 153.67) (diameter 0) (color 0 0 0 0)
(uuid 81e96c8d-3d0c-4ab7-8037-30df0d359e14)
)
(junction (at 370.84 109.22) (diameter 0) (color 0 0 0 0)
(uuid 83acd39e-68a7-40d2-83a4-e2609f1d7c53)
)
(junction (at 45.72 36.83) (diameter 0) (color 0 0 0 0)
(uuid 85f5862d-3316-4fb2-b15e-31c8dcc84eb8)
)
(junction (at 163.83 170.18) (diameter 0) (color 0 0 0 0)
(uuid 88c190a6-16e3-48db-83d0-7b6611027f1e)
)
(junction (at 373.38 140.97) (diameter 0) (color 0 0 0 0)
(uuid 8938c593-1b5e-4add-b293-2b71ba1843a8)
)
(junction (at 171.45 20.32) (diameter 0) (color 0 0 0 0)
(uuid 8afda007-f7ff-4146-8847-400e579a8f45)
)
(junction (at 316.23 140.97) (diameter 0) (color 0 0 0 0)
(uuid 8b6b76fe-c40c-40ff-8a1f-3562fcec99db)
)
(junction (at 247.65 81.28) (diameter 0) (color 0 0 0 0)
(uuid 8b90f354-19b8-4c9a-86c3-160dc7edb62a)
)
(junction (at 86.36 64.77) (diameter 0) (color 0 0 0 0)
(uuid 8c5f20db-cb3b-4fda-9f18-27a85a252c9a)
)
(junction (at 402.59 96.52) (diameter 0) (color 0 0 0 0)
(uuid 9053bb4a-630c-472d-8237-8f192d6dbdf0)
)
(junction (at 88.9 52.07) (diameter 0) (color 0 0 0 0)
(uuid 92de3cc1-391e-4a66-a2a8-111448aff1ba)
)
(junction (at 373.38 185.42) (diameter 0) (color 0 0 0 0)
(uuid 930c5202-b4f8-4065-ab54-82a3a055f261)
)
(junction (at 334.01 81.28) (diameter 0) (color 0 0 0 0)
(uuid 971d97be-06ce-462d-9dbc-f6ff082bf5b5)
)
(junction (at 341.63 20.32) (diameter 0) (color 0 0 0 0)
(uuid 9829b685-cf65-4e89-9953-fac8868622f1)
)
(junction (at 306.07 81.28) (diameter 0) (color 0 0 0 0)
(uuid 9c5ebc49-93d6-4c81-8fbc-1b63cba126ec)
)
(junction (at 86.36 242.57) (diameter 0) (color 0 0 0 0)
(uuid 9cca0278-9233-4c5b-b07a-a22e676c15c8)
)
(junction (at 229.87 229.87) (diameter 0) (color 0 0 0 0)
(uuid 9d41e156-b322-4e20-884f-f2460fd77e4d)
)
(junction (at 341.63 198.12) (diameter 0) (color 0 0 0 0)
(uuid a0e5bb2e-e536-4ebe-ae98-40818e25d327)
)
(junction (at 114.3 64.77) (diameter 0) (color 0 0 0 0)
(uuid a6b17d3f-2bf2-40ca-a586-37916828fb05)
)
(junction (at 201.93 52.07) (diameter 0) (color 0 0 0 0)
(uuid a83f25b1-6c28-4221-9edc-de3afd58da3e)
)
(junction (at 146.05 140.97) (diameter 0) (color 0 0 0 0)
(uuid a8d4dc5e-9eb5-442c-b2fd-d246bfb01c2c)
)
(junction (at 173.99 96.52) (diameter 0) (color 0 0 0 0)
(uuid a9448875-fcff-41fc-95c5-1a2e03cdf66f)
)
(junction (at 49.53 259.08) (diameter 0) (color 0 0 0 0)
(uuid aa0d4bd4-be44-4fc8-9b8f-27f6939d826e)
)
(junction (at 201.93 185.42) (diameter 0) (color 0 0 0 0)
(uuid abf7dd21-1f6a-4e00-b77c-96ce6a40fc0e)
)
(junction (at 78.74 214.63) (diameter 0) (color 0 0 0 0)
(uuid adb3f96d-d656-46b6-8ba7-17cee45bc784)
)
(junction (at 344.17 229.87) (diameter 0) (color 0 0 0 0)
(uuid adda4aa0-534e-4a8e-a832-ecc958f007bf)
)
(junction (at 334.01 170.18) (diameter 0) (color 0 0 0 0)
(uuid adede515-fefe-49fe-9fff-f24bb3bab2e5)
)
(junction (at 313.69 153.67) (diameter 0) (color 0 0 0 0)
(uuid b1168397-2479-43dc-a213-657e56a776b6)
)
(junction (at 116.84 274.32) (diameter 0) (color 0 0 0 0)
(uuid b2ac1256-1ac2-45ea-97c9-cba63d3ed8ef)
)
(junction (at 134.62 170.18) (diameter 0) (color 0 0 0 0)
(uuid b52c9e63-4425-4d89-93b6-5edf9a6a9902)
)
(junction (at 288.29 140.97) (diameter 0) (color 0 0 0 0)
(uuid b5ecccc2-ad23-4025-ab6a-3b74c80cc3b2)
)
(junction (at 106.68 259.08) (diameter 0) (color 0 0 0 0)
(uuid b71151bf-16d4-4269-b91d-6f327083da88)
)
(junction (at 306.07 36.83) (diameter 0) (color 0 0 0 0)
(uuid ba5d6c54-fa0f-4bd9-a96d-5e7819e4d985)
)
(junction (at 78.74 125.73) (diameter 0) (color 0 0 0 0)
(uuid bab5c9b3-27b2-4e70-a326-008f34eb3aab)
)
(junction (at 78.74 36.83) (diameter 0) (color 0 0 0 0)
(uuid bbb90ff6-24af-42da-8d62-843a2fbbffd2)
)
(junction (at 363.22 36.83) (diameter 0) (color 0 0 0 0)
(uuid bc520ae7-83ed-4c95-b78c-a277d3d74df9)
)
(junction (at 363.22 214.63) (diameter 0) (color 0 0 0 0)
(uuid be4af7e9-35ec-41ba-9047-ec6e92c9c59e)
)
(junction (at 288.29 185.42) (diameter 0) (color 0 0 0 0)
(uuid c030cb43-5f90-400c-a0a3-3076c9caa7dc)
)
(junction (at 173.99 185.42) (diameter 0) (color 0 0 0 0)
(uuid c113165b-82b1-4072-a955-216e457357f0)
)
(junction (at 247.65 170.18) (diameter 0) (color 0 0 0 0)
(uuid c1374dff-6cc2-4efb-a956-e69107652e84)
)
(junction (at 334.01 214.63) (diameter 0) (color 0 0 0 0)
(uuid c3884e55-2579-4729-8aac-c3570a3e5991)
)
(junction (at 256.54 64.77) (diameter 0) (color 0 0 0 0)
(uuid c6404f03-1844-4728-9755-3f81a7dba691)
)
(junction (at 259.08 229.87) (diameter 0) (color 0 0 0 0)
(uuid c710f706-31f6-422d-b04d-8aff5a50768f)
)
(junction (at 398.78 109.22) (diameter 0) (color 0 0 0 0)
(uuid c761f6ea-1334-49f2-aafe-637dc2b3c18b)
)
(junction (at 259.08 96.52) (diameter 0) (color 0 0 0 0)
(uuid c87595b9-c026-4494-a9bd-48b50bf58251)
)
(junction (at 278.13 125.73) (diameter 0) (color 0 0 0 0)
(uuid c8e9a3d0-9efa-40ed-a532-c39196539e2c)
)
(junction (at 373.38 52.07) (diameter 0) (color 0 0 0 0)
(uuid c8f98d62-be7c-41e7-8ea8-e5556851ccea)
)
(junction (at 49.53 214.63) (diameter 0) (color 0 0 0 0)
(uuid ca8ad0e6-8a46-4d48-a4f1-de18cc211575)
)
(junction (at 106.68 36.83) (diameter 0) (color 0 0 0 0)
(uuid caa78ff1-78dc-4bb7-ae01-7c198eb79f97)
)
(junction (at 88.9 274.32) (diameter 0) (color 0 0 0 0)
(uuid cae6b344-fedd-4bd4-9c87-af48e70fd575)
)
(junction (at 163.83 36.83) (diameter 0) (color 0 0 0 0)
(uuid cb80ec58-121e-47b8-89be-12b12c14272b)
)
(junction (at 316.23 52.07) (diameter 0) (color 0 0 0 0)
(uuid cd1c5741-1f9a-40d3-ac81-1946574c2ba5)
)
(junction (at 256.54 153.67) (diameter 0) (color 0 0 0 0)
(uuid cde65425-b5a9-4b21-9a72-44dac1a6c50d)
)
(junction (at 402.59 229.87) (diameter 0) (color 0 0 0 0)
(uuid cf4341bc-f6ad-482d-891b-1eecb2916d16)
)
(junction (at 88.9 96.52) (diameter 0) (color 0 0 0 0)
(uuid d23e7ea0-b234-4b70-a632-80d0bd484412)
)
(junction (at 88.9 140.97) (diameter 0) (color 0 0 0 0)
(uuid d45e87a3-e02b-44ba-9be8-3117cbeec905)
)
(junction (at 49.53 170.18) (diameter 0) (color 0 0 0 0)
(uuid d653f3e8-05de-40b7-9a01-3ae48ac0090b)
)
(junction (at 219.71 81.28) (diameter 0) (color 0 0 0 0)
(uuid d68e83c4-bdba-48d2-9e0a-6c61a0aab245)
)
(junction (at 256.54 198.12) (diameter 0) (color 0 0 0 0)
(uuid d740a0e4-2d46-46a6-a675-8ca5e74080ba)
)
(junction (at 229.87 96.52) (diameter 0) (color 0 0 0 0)
(uuid d7a40af0-776d-4ca2-99ed-22654274b1a5)
)
(junction (at 306.07 214.63) (diameter 0) (color 0 0 0 0)
(uuid d9521d48-0c3d-4ad5-bddc-70598a69e3db)
)
(junction (at 50.8 36.83) (diameter 0) (color 0 0 0 0)
(uuid d9746189-d42f-424d-94b2-5be4be3b33da)
)
(junction (at 373.38 96.52) (diameter 0) (color 0 0 0 0)
(uuid d98c6cd0-69b5-45b4-9e48-e6b051b9599f)
)
(junction (at 313.69 20.32) (diameter 0) (color 0 0 0 0)
(uuid dab70323-66e7-4575-af6a-9b7f9b0250e8)
)
(junction (at 278.13 36.83) (diameter 0) (color 0 0 0 0)
(uuid dab84742-eba3-4422-8002-71d1ac7531e7)
)
(junction (at 370.84 198.12) (diameter 0) (color 0 0 0 0)
(uuid dcba05d1-8f1f-4a51-9f70-606c282b8f70)
)
(junction (at 334.01 36.83) (diameter 0) (color 0 0 0 0)
(uuid dd129f6e-2c0a-4b98-82dd-b047c73fcee2)
)
(junction (at 288.29 229.87) (diameter 0) (color 0 0 0 0)
(uuid dd194743-0b87-4859-9f9b-e0f92663c1da)
)
(junction (at 334.01 125.73) (diameter 0) (color 0 0 0 0)
(uuid dd9b544e-a5f9-477b-8c94-316ee8471979)
)
(junction (at 163.83 125.73) (diameter 0) (color 0 0 0 0)
(uuid dea9ef8a-ddf7-43ba-850d-f9bf19ac42ff)
)
(junction (at 143.51 20.32) (diameter 0) (color 0 0 0 0)
(uuid df368673-f9f2-4bf8-9ff4-1bad994c1ee0)
)
(junction (at 60.96 45.72) (diameter 0) (color 0 0 0 0)
(uuid dfcbb1e8-16bf-4aa3-954e-2804d2eb63ea)
)
(junction (at 134.62 81.28) (diameter 0) (color 0 0 0 0)
(uuid e2331916-a6ef-4b87-98f7-ff6844b31152)
)
(junction (at 247.65 36.83) (diameter 0) (color 0 0 0 0)
(uuid e233b0f6-bba7-403b-8122-9fca0ef0b377)
)
(junction (at 116.84 52.07) (diameter 0) (color 0 0 0 0)
(uuid e2af6d83-41ae-49f8-9bea-4bbae64c5b52)
)
(junction (at 134.62 36.83) (diameter 0) (color 0 0 0 0)
(uuid e80b08a3-067d-4219-82bb-ea1e779b38c0)
)
(junction (at 173.99 52.07) (diameter 0) (color 0 0 0 0)
(uuid e9184b59-10a9-466c-9299-7a86925a3ac3)
)
(junction (at 58.42 20.32) (diameter 0) (color 0 0 0 0)
(uuid e99f1162-b66e-4133-84ab-13c061e2bc97)
)
(junction (at 227.33 109.22) (diameter 0) (color 0 0 0 0)
(uuid eb9cebe7-1390-4a4a-8951-1042740561ce)
)
(junction (at 199.39 20.32) (diameter 0) (color 0 0 0 0)
(uuid ebe984d3-c3ff-43cd-8b93-f07ea00de924)
)
(junction (at 398.78 198.12) (diameter 0) (color 0 0 0 0)
(uuid ec4b2368-1472-4f79-a166-9e28395fa92a)
)
(junction (at 288.29 52.07) (diameter 0) (color 0 0 0 0)
(uuid ec67bc78-bccc-4af2-9735-2b613fb74cd1)
)
(junction (at 116.84 229.87) (diameter 0) (color 0 0 0 0)
(uuid ed038e63-c328-4dd8-b3a4-fb0e259e80fd)
)
(junction (at 143.51 153.67) (diameter 0) (color 0 0 0 0)
(uuid edd408bb-0bc6-402a-9363-5d332ddc630f)
)
(junction (at 173.99 229.87) (diameter 0) (color 0 0 0 0)
(uuid f0692ecf-82f6-4a77-abdb-057452cfde98)
)
(junction (at 398.78 64.77) (diameter 0) (color 0 0 0 0)
(uuid f0d37aa5-63e5-4cce-a538-5e216589f387)
)
(junction (at 288.29 96.52) (diameter 0) (color 0 0 0 0)
(uuid f119e40b-a96e-4080-9754-8d770e9ef9d8)
)
(junction (at 171.45 153.67) (diameter 0) (color 0 0 0 0)
(uuid f25e4161-225c-4842-84d7-e5b6fb2a6ef7)
)
(junction (at 114.3 242.57) (diameter 0) (color 0 0 0 0)
(uuid f4df5919-0263-4816-93d7-d8208a612975)
)
(junction (at 86.36 153.67) (diameter 0) (color 0 0 0 0)
(uuid f5582fbf-c639-4c2f-8149-f496c54d3474)
)
(junction (at 143.51 109.22) (diameter 0) (color 0 0 0 0)
(uuid f5ee9a24-4bf0-4e22-9a77-9164bdd47305)
)
(junction (at 363.22 170.18) (diameter 0) (color 0 0 0 0)
(uuid f7283dd5-3419-44f6-9e49-a123d12195f5)
)
(junction (at 88.9 185.42) (diameter 0) (color 0 0 0 0)
(uuid fb142993-f3e9-42f0-8d14-2d9807e1e6d2)
)
(junction (at 143.51 242.57) (diameter 0) (color 0 0 0 0)
(uuid fb6b3450-78bd-413a-9571-263a573164fe)
)
(junction (at 219.71 36.83) (diameter 0) (color 0 0 0 0)
(uuid fc138969-815a-4e0b-8742-d41f0c3c3678)
)
(junction (at 373.38 229.87) (diameter 0) (color 0 0 0 0)
(uuid ff1a657c-cc43-41bc-8afb-a6004fda1c35)
)
(junction (at 165.1 274.32) (diameter 0) (color 0 0 0 0)
(uuid ff54acd7-1414-483b-b6d6-3dec29a19164)
)
(no_connect (at 88.9 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac3f))
(no_connect (at 116.84 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac40))
(no_connect (at 146.05 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac41))
(no_connect (at 173.99 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac42))
(no_connect (at 60.96 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac43))
(no_connect (at 259.08 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac44))
(no_connect (at 229.87 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac45))
(no_connect (at 201.93 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac46))
(no_connect (at 288.29 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac47))
(no_connect (at 316.23 27.94) (uuid 6e9ef392-c75e-46ad-9e5f-574d05b9ac48))
(no_connect (at 229.87 161.29) (uuid 9fab155a-08ab-4cca-b794-a68c219c0fe9))
(no_connect (at 259.08 161.29) (uuid 9fab155a-08ab-4cca-b794-a68c219c0fea))
(no_connect (at 60.96 161.29) (uuid 9fab155a-08ab-4cca-b794-a68c219c0feb))
(no_connect (at 116.84 161.29) (uuid 9fab155a-08ab-4cca-b794-a68c219c0fec))
(no_connect (at 88.9 161.29) (uuid 9fab155a-08ab-4cca-b794-a68c219c0fed))
(no_connect (at 201.93 161.29) (uuid 9fab155a-08ab-4cca-b794-a68c219c0fee))
(no_connect (at 173.99 161.29) (uuid 9fab155a-08ab-4cca-b794-a68c219c0fef))
(no_connect (at 146.05 161.29) (uuid 9fab155a-08ab-4cca-b794-a68c219c0ff0))
(no_connect (at 60.96 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c691f))
(no_connect (at 116.84 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6920))
(no_connect (at 88.9 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6921))
(no_connect (at 146.05 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6922))
(no_connect (at 373.38 161.29) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6923))
(no_connect (at 257.81 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6924))
(no_connect (at 229.87 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6925))
(no_connect (at 173.99 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6926))
(no_connect (at 201.93 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6927))
(no_connect (at 344.17 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6928))
(no_connect (at 373.38 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c6929))
(no_connect (at 288.29 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c692a))
(no_connect (at 316.23 116.84) (uuid b59f4051-28a3-4b61-82bd-4266fb7c692b))
(no_connect (at 316.23 161.29) (uuid cfdbbb30-76b9-40eb-9c5f-aa8baa03ff88))
(no_connect (at 344.17 161.29) (uuid cfdbbb30-76b9-40eb-9c5f-aa8baa03ff89))
(no_connect (at 288.29 161.29) (uuid cfdbbb30-76b9-40eb-9c5f-aa8baa03ff8a))
(no_connect (at 116.84 72.39) (uuid e530549d-435d-443b-a6a7-729b392694d3))
(no_connect (at 88.9 72.39) (uuid e530549d-435d-443b-a6a7-729b392694d4))
(no_connect (at 60.96 72.39) (uuid e530549d-435d-443b-a6a7-729b392694d5))
(no_connect (at 146.05 72.39) (uuid e530549d-435d-443b-a6a7-729b392694d6))
(no_connect (at 173.99 72.39) (uuid e530549d-435d-443b-a6a7-729b392694d7))
(no_connect (at 229.87 72.39) (uuid e530549d-435d-443b-a6a7-729b392694d8))
(no_connect (at 201.93 72.39) (uuid e530549d-435d-443b-a6a7-729b392694d9))
(no_connect (at 259.08 72.39) (uuid e530549d-435d-443b-a6a7-729b392694da))
(no_connect (at 316.23 72.39) (uuid e530549d-435d-443b-a6a7-729b392694db))
(no_connect (at 288.29 72.39) (uuid e530549d-435d-443b-a6a7-729b392694dc))
(no_connect (at 344.17 72.39) (uuid e530549d-435d-443b-a6a7-729b392694dd))
(no_connect (at 373.38 72.39) (uuid e530549d-435d-443b-a6a7-729b392694de))
(no_connect (at 229.87 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da42))
(no_connect (at 344.17 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da43))
(no_connect (at 316.23 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da44))
(no_connect (at 373.38 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da45))
(no_connect (at 259.08 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da46))
(no_connect (at 288.29 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da47))
(no_connect (at 88.9 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da48))
(no_connect (at 116.84 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da49))
(no_connect (at 60.96 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da4a))
(no_connect (at 201.93 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da4b))
(no_connect (at 173.99 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da4c))
(no_connect (at 146.05 205.74) (uuid f68ac132-8308-4a66-913a-ae427ce8da4d))
(no_connect (at 344.17 27.94) (uuid fa6421bb-5360-497e-babc-40c872c99872))
(no_connect (at 373.38 27.94) (uuid fa6421bb-5360-497e-babc-40c872c99873))
(no_connect (at 153.67 259.08) (uuid fd8a2fcc-25d4-43ca-af3f-5115827579bb))
(wire (pts (xy 146.05 96.52) (xy 173.99 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0039274e-3d82-4750-a755-47e3f543ee2b)
)
(wire (pts (xy 365.76 83.82) (xy 365.76 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 006a90dc-a4c2-4e35-bbdd-d0c541cbf00a)
)
(wire (pts (xy 259.08 27.94) (xy 259.08 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 009ba704-25ab-4cce-b524-3f86d5f0b7ed)
)
(wire (pts (xy 60.96 266.7) (xy 60.96 274.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00a40de2-b02d-4c3d-a570-c8a038100333)
)
(wire (pts (xy 114.3 198.12) (xy 143.51 198.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00d8c82a-7a70-4548-bdc5-69511fca3138)
)
(wire (pts (xy 86.36 198.12) (xy 86.36 207.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01032c85-5867-4122-927e-2ac58485fa64)
)
(wire (pts (xy 88.9 229.87) (xy 88.9 222.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01763893-de72-4b0b-8558-3dd9d3b06f6e)
)
(wire (pts (xy 229.87 185.42) (xy 259.08 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01d16de3-3c9c-4b0b-89cc-c18aca934f12)
)
(wire (pts (xy 402.59 185.42) (xy 402.59 229.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 025ef40a-4c07-4add-ab27-8e2c58284176)
)
(wire (pts (xy 370.84 20.32) (xy 398.78 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02640584-02fe-410b-8cea-7d866488d95d)
)
(wire (pts (xy 306.07 224.79) (xy 306.07 214.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 029bea30-b9b5-4efe-b0a2-6962fca244e6)
)
(wire (pts (xy 259.08 96.52) (xy 288.29 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02a45232-2e2c-402e-9a8d-3db5c8b05ff2)
)
(wire (pts (xy 166.37 172.72) (xy 166.37 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 031a97c9-a47a-46a6-b487-b5262a644976)
)
(wire (pts (xy 124.46 36.83) (xy 134.62 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03c5fb91-8072-43b5-9dff-574e69cc851f)
)
(wire (pts (xy 68.58 214.63) (xy 78.74 214.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03cd7f03-e18c-4d59-9b5e-d963486d4778)
)
(wire (pts (xy 60.96 250.19) (xy 60.96 251.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03d9d3b2-0432-43c5-92de-5bcf87c39221)
)
(wire (pts (xy 41.91 170.18) (xy 49.53 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 041f63c4-2439-4ad1-9f17-399598df4279)
)
(wire (pts (xy 259.08 161.29) (xy 259.08 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0476072f-ce49-45c6-b890-01c2aeca3c84)
)
(wire (pts (xy 199.39 109.22) (xy 227.33 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04e246c5-e2a2-40d4-b860-3edba44e6f3b)
)
(wire (pts (xy 370.84 109.22) (xy 398.78 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05c57860-b526-4e89-853e-ae3db2d957fe)
)