-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdram.kicad_sch
More file actions
2413 lines (2366 loc) · 93.3 KB
/
Copy pathdram.kicad_sch
File metadata and controls
2413 lines (2366 loc) · 93.3 KB
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 20230121) (generator eeschema)
(uuid 2215c3cc-9572-458d-8c50-c154d8a21edd)
(paper "A")
(title_block
(rev "A")
)
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(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 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Memory_RAM:4164" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 8.89 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4164" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_DIP:DIP-16_W7.62mm" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "4164_0_1"
(rectangle (start -10.16 16.51) (end 10.16 -16.51)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "4164_1_1"
(pin free line (at 12.7 -10.16 180) (length 2.54) hide
(name "N/C" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -8.89 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -6.35 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -3.81 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -11.43 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 8.89 180) (length 2.54)
(name "DO" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 11.43 0) (length 2.54)
(name "~{CAS}" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -19.05 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 13.97 180) (length 2.54)
(name "DI" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 8.89 0) (length 2.54)
(name "~{WE}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 13.97 0) (length 2.54)
(name "~{RAS}" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 3.81 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -1.27 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 1.27 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 19.05 270) (length 2.54)
(name "Vcc" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -13.97 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (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))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(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" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (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" (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))
(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 40.005 116.205) (diameter 0) (color 0 0 0 0)
(uuid 0640b9a5-1fd3-4e95-bc82-d86461cf723a)
)
(junction (at 201.93 90.805) (diameter 0) (color 0 0 0 0)
(uuid 065f07f7-d2f6-49d7-9bdd-5724fb7acd9f)
)
(junction (at 161.925 90.805) (diameter 0) (color 0 0 0 0)
(uuid 06f0a6a1-0765-49b8-814d-93ef0aa9c807)
)
(junction (at 121.285 90.805) (diameter 0) (color 0 0 0 0)
(uuid 070ceab1-b1a8-4dcb-bfcb-ff0a0b42ed10)
)
(junction (at 80.645 36.195) (diameter 0) (color 0 0 0 0)
(uuid 094bd5ef-bcf2-4e80-844e-6b0ae2f5fc1d)
)
(junction (at 80.645 170.815) (diameter 0) (color 0 0 0 0)
(uuid 0b6b4ac2-8068-4032-9e5f-9d1c768037b5)
)
(junction (at 40.005 170.815) (diameter 0) (color 0 0 0 0)
(uuid 131cf385-c0a0-432f-bbd2-9775c90698e7)
)
(junction (at 80.645 90.805) (diameter 0) (color 0 0 0 0)
(uuid 1dd27b52-1b2b-4981-b770-ae21ec02d2af)
)
(junction (at 242.57 90.805) (diameter 0) (color 0 0 0 0)
(uuid 4c5587c3-b3e7-413a-bd44-a189b5ad106e)
)
(junction (at 80.645 116.205) (diameter 0) (color 0 0 0 0)
(uuid 6aa115a6-d581-44b8-9ceb-c33540adc8fa)
)
(junction (at 121.285 36.195) (diameter 0) (color 0 0 0 0)
(uuid 9814ee6e-2118-4035-89bf-0dcbd1b18805)
)
(junction (at 40.005 36.195) (diameter 0) (color 0 0 0 0)
(uuid d5d1f1b1-df4f-44c6-bf14-bf6c2793ca22)
)
(junction (at 201.93 36.195) (diameter 0) (color 0 0 0 0)
(uuid de20d295-21a3-424d-9d16-4897d6c6edd7)
)
(junction (at 242.57 36.195) (diameter 0) (color 0 0 0 0)
(uuid de842b46-aff5-4ac1-9742-65e3fa35463e)
)
(junction (at 40.005 90.805) (diameter 0) (color 0 0 0 0)
(uuid e38463bd-0c94-4258-8e6f-0241d6e78971)
)
(junction (at 161.925 36.195) (diameter 0) (color 0 0 0 0)
(uuid f0810b99-8bb4-48c6-8684-87e09cf79a47)
)
(wire (pts (xy 70.485 116.205) (xy 80.645 116.205))
(stroke (width 0) (type default))
(uuid 0521db9e-39b5-4c3a-bbdb-a6cb9e103bdf)
)
(wire (pts (xy 232.41 45.72) (xy 232.41 43.18))
(stroke (width 0) (type default))
(uuid 05c91ce0-e118-4506-bd8f-5156a9c3acea)
)
(wire (pts (xy 80.645 31.115) (xy 80.645 36.195))
(stroke (width 0) (type default))
(uuid 082cc06a-13d2-440d-8f12-3f1dadabb1cf)
)
(wire (pts (xy 24.765 90.805) (xy 40.005 90.805))
(stroke (width 0) (type default))
(uuid 0ae34de3-a0c3-4262-9c20-7eb684bdb3c2)
)
(wire (pts (xy 111.125 38.1) (xy 111.125 36.195))
(stroke (width 0) (type default))
(uuid 0d3cda90-62c7-4f47-ad5d-b2b4aac96e39)
)
(wire (pts (xy 121.285 36.195) (xy 121.285 50.165))
(stroke (width 0) (type default))
(uuid 0d574d7b-e4be-4932-ae14-44a4b08e91ad)
)
(wire (pts (xy 121.285 31.115) (xy 121.285 36.195))
(stroke (width 0) (type default))
(uuid 0f80d1ff-7011-4259-a8f8-7141448424e8)
)
(wire (pts (xy 186.69 90.805) (xy 201.93 90.805))
(stroke (width 0) (type default))
(uuid 0fa567e3-76d3-4e34-a004-e3b8d0c2bf94)
)
(wire (pts (xy 227.33 83.185) (xy 227.33 90.805))
(stroke (width 0) (type default))
(uuid 121f5f30-7258-4e73-a0a5-b7a9eba5b1b9)
)
(wire (pts (xy 65.405 83.185) (xy 65.405 90.805))
(stroke (width 0) (type default))
(uuid 135bb2e5-29bd-4561-902d-7d933bd91c8f)
)
(wire (pts (xy 40.005 93.345) (xy 40.005 90.805))
(stroke (width 0) (type default))
(uuid 17a5aea0-cb55-4891-9204-790ed6d22677)
)
(wire (pts (xy 191.77 38.1) (xy 191.77 36.195))
(stroke (width 0) (type default))
(uuid 19d68cd5-dc17-40c8-9a91-e755d72c8698)
)
(wire (pts (xy 40.005 170.815) (xy 40.005 168.275))
(stroke (width 0) (type default))
(uuid 218968a1-5727-4efd-a510-254b98cca03f)
)
(wire (pts (xy 65.405 163.195) (xy 67.945 163.195))
(stroke (width 0) (type default))
(uuid 263a58ad-36f9-4ee1-ae5f-2e47d47610db)
)
(wire (pts (xy 161.925 31.115) (xy 161.925 36.195))
(stroke (width 0) (type default))
(uuid 33b26354-3f84-4ca1-8218-5e67ff8f77d3)
)
(wire (pts (xy 111.125 36.195) (xy 121.285 36.195))
(stroke (width 0) (type default))
(uuid 38f829a7-cea4-483f-a465-d6a52edee4fa)
)
(wire (pts (xy 70.485 38.1) (xy 70.485 36.195))
(stroke (width 0) (type default))
(uuid 3918e7b1-a85c-41e8-a1ea-fc5765a637cc)
)
(wire (pts (xy 80.645 116.205) (xy 80.645 130.175))
(stroke (width 0) (type default))
(uuid 3b7449bd-e543-4d22-9f0a-cab2e0b03ed2)
)
(wire (pts (xy 121.285 90.805) (xy 121.285 88.265))
(stroke (width 0) (type default))
(uuid 3c94d54d-da93-4bbe-a8f2-37ec5415e1a2)
)
(wire (pts (xy 80.645 90.805) (xy 80.645 88.265))
(stroke (width 0) (type default))
(uuid 3caf2d8c-0b2e-4995-83e6-5cbf51990caf)
)
(wire (pts (xy 29.845 116.205) (xy 40.005 116.205))
(stroke (width 0) (type default))
(uuid 3cd215af-bef2-4cad-b5bb-921df983f8a1)
)
(wire (pts (xy 161.925 93.345) (xy 161.925 90.805))
(stroke (width 0) (type default))
(uuid 43a650f7-8b3e-476d-a3a4-cf46b41b6130)
)
(wire (pts (xy 111.125 45.72) (xy 111.125 43.18))
(stroke (width 0) (type default))
(uuid 5508e49c-05a6-42d1-9d24-58c8106bc236)
)
(wire (pts (xy 24.765 163.195) (xy 27.305 163.195))
(stroke (width 0) (type default))
(uuid 555b1f0d-a044-46b7-97f1-0515e7124b1b)
)
(wire (pts (xy 106.045 83.185) (xy 106.045 90.805))
(stroke (width 0) (type default))
(uuid 56cd6135-f194-4a53-a5d7-f96fe9ade45e)
)
(wire (pts (xy 80.645 173.355) (xy 80.645 170.815))
(stroke (width 0) (type default))
(uuid 57340e0d-6ddf-40e5-94b1-879e9e911f91)
)
(wire (pts (xy 70.485 45.72) (xy 70.485 43.18))
(stroke (width 0) (type default))
(uuid 5c9e37a6-847a-4fc0-b478-2d0d261e7e74)
)
(wire (pts (xy 186.69 83.185) (xy 186.69 90.805))
(stroke (width 0) (type default))
(uuid 5cad4ea4-67e9-45df-ba12-36ff525d7b68)
)
(wire (pts (xy 40.005 36.195) (xy 40.005 50.165))
(stroke (width 0) (type default))
(uuid 64ce19bb-fea7-4df8-ab6b-f2b4aa6f3e93)
)
(wire (pts (xy 24.765 83.185) (xy 27.305 83.185))
(stroke (width 0) (type default))
(uuid 68a9cfb7-b1f7-4eec-b0cd-2984d3a7f61c)
)
(wire (pts (xy 65.405 163.195) (xy 65.405 170.815))
(stroke (width 0) (type default))
(uuid 6a7300ee-6e79-40d6-b10b-d01417e45e41)
)
(wire (pts (xy 40.005 111.125) (xy 40.005 116.205))
(stroke (width 0) (type default))
(uuid 6d78f4d8-e220-4eb6-a357-1a297e457081)
)
(wire (pts (xy 40.005 90.805) (xy 40.005 88.265))
(stroke (width 0) (type default))
(uuid 6d7fa531-15e8-44b9-ba78-26868affcc70)
)
(wire (pts (xy 242.57 93.345) (xy 242.57 90.805))
(stroke (width 0) (type default))
(uuid 70c51de5-97ae-488a-ba89-6b7ac734f13c)
)
(wire (pts (xy 186.69 83.185) (xy 189.23 83.185))
(stroke (width 0) (type default))
(uuid 736a48e9-b576-487b-a848-f2cbd92c2080)
)
(wire (pts (xy 151.765 36.195) (xy 161.925 36.195))
(stroke (width 0) (type default))
(uuid 74d89bb5-141b-424d-9a42-8e9b273812b6)
)
(wire (pts (xy 146.685 83.185) (xy 146.685 90.805))
(stroke (width 0) (type default))
(uuid 83b3f2ee-f81b-49d8-a62b-c14c1c6685ea)
)
(wire (pts (xy 29.845 38.1) (xy 29.845 36.195))
(stroke (width 0) (type default))
(uuid 843c9e4f-1c51-44ae-94e0-fcdc5b30b0f5)
)
(wire (pts (xy 232.41 36.195) (xy 242.57 36.195))
(stroke (width 0) (type default))
(uuid 856c898c-7122-4d9b-aa4c-1c9f8f2fe05d)
)
(wire (pts (xy 121.285 93.345) (xy 121.285 90.805))
(stroke (width 0) (type default))
(uuid 85e0cc82-ec2c-4552-9d59-953ef74f06f3)
)
(wire (pts (xy 24.765 163.195) (xy 24.765 170.815))
(stroke (width 0) (type default))
(uuid 89ca2e05-fc96-4567-aee6-41f19690646b)
)
(wire (pts (xy 80.645 36.195) (xy 80.645 50.165))
(stroke (width 0) (type default))
(uuid 8da0e147-19b6-4ccf-b33b-ea74576b91f9)
)
(wire (pts (xy 40.005 31.115) (xy 40.005 36.195))
(stroke (width 0) (type default))
(uuid 920620a1-d364-4b0a-8902-1fdd0602554b)
)
(wire (pts (xy 80.645 93.345) (xy 80.645 90.805))
(stroke (width 0) (type default))
(uuid 92877d37-bfac-4f40-b8aa-5b2f10985e6f)
)
(wire (pts (xy 70.485 118.11) (xy 70.485 116.205))
(stroke (width 0) (type default))
(uuid 9d4ebe48-9d55-4f7a-b923-09a57de4d8be)
)
(wire (pts (xy 161.925 36.195) (xy 161.925 50.165))
(stroke (width 0) (type default))
(uuid 9d947391-d7bc-4e82-960a-b28286122ef4)
)
(wire (pts (xy 161.925 90.805) (xy 161.925 88.265))
(stroke (width 0) (type default))
(uuid 9da98c53-4e04-43dc-9d0f-9cc97cb63999)
)
(wire (pts (xy 151.765 38.1) (xy 151.765 36.195))
(stroke (width 0) (type default))
(uuid a0f4878c-a850-41fa-af67-cc49374bc4a7)
)
(wire (pts (xy 232.41 38.1) (xy 232.41 36.195))
(stroke (width 0) (type default))
(uuid a57de01d-930a-4463-9411-c6e7a2020687)
)
(wire (pts (xy 146.685 83.185) (xy 149.225 83.185))
(stroke (width 0) (type default))
(uuid a8509dad-48e8-4e2d-a56b-75a527f04777)
)
(wire (pts (xy 106.045 83.185) (xy 108.585 83.185))
(stroke (width 0) (type default))
(uuid a8f06209-6e48-4ea0-bf95-1feac715cdce)
)
(wire (pts (xy 70.485 125.73) (xy 70.485 123.19))
(stroke (width 0) (type default))
(uuid b9320051-e6c5-4b17-a1ef-fa82139d17a2)
)
(wire (pts (xy 201.93 93.345) (xy 201.93 90.805))
(stroke (width 0) (type default))
(uuid b950f5c1-c0e0-4e63-9ddf-3549995970f9)
)
(wire (pts (xy 29.845 125.73) (xy 29.845 123.19))
(stroke (width 0) (type default))
(uuid bb7a0d5a-1bc7-4818-81a8-09a84ff94f10)
)
(wire (pts (xy 40.005 173.355) (xy 40.005 170.815))
(stroke (width 0) (type default))
(uuid bbb64767-5965-4334-bc67-87bd8fa0cf41)
)
(wire (pts (xy 65.405 83.185) (xy 67.945 83.185))
(stroke (width 0) (type default))
(uuid c2a0081a-7ab3-4502-8304-7c70a3eebceb)
)
(wire (pts (xy 227.33 90.805) (xy 242.57 90.805))
(stroke (width 0) (type default))
(uuid c3b4db0b-613a-436a-9379-b1d67f7e1763)
)
(wire (pts (xy 65.405 90.805) (xy 80.645 90.805))
(stroke (width 0) (type default))
(uuid c7e5db40-0bdf-4b88-b901-81a9c2336c1b)
)
(wire (pts (xy 106.045 90.805) (xy 121.285 90.805))
(stroke (width 0) (type default))
(uuid c97a63a5-126e-47b6-b225-61d008287637)
)
(wire (pts (xy 70.485 36.195) (xy 80.645 36.195))
(stroke (width 0) (type default))
(uuid cd744b6e-8479-4fba-8650-3fd4cf98b977)
)
(wire (pts (xy 146.685 90.805) (xy 161.925 90.805))
(stroke (width 0) (type default))
(uuid d24ceb81-be6f-4f55-899a-5e34a1803ee5)
)
(wire (pts (xy 65.405 170.815) (xy 80.645 170.815))
(stroke (width 0) (type default))
(uuid d5595780-7ff2-4ac4-bb10-380b74ea508a)
)
(wire (pts (xy 201.93 36.195) (xy 201.93 50.165))
(stroke (width 0) (type default))
(uuid d590abb4-f77d-40b8-aa63-0bdd3777e7a0)
)
(wire (pts (xy 29.845 118.11) (xy 29.845 116.205))
(stroke (width 0) (type default))
(uuid d6726b36-56ec-4a8c-8012-6f807f3a7229)
)
(wire (pts (xy 29.845 45.72) (xy 29.845 43.18))
(stroke (width 0) (type default))
(uuid d7663d1e-9574-4ee6-837b-8d02abc7dfa3)
)
(wire (pts (xy 242.57 36.195) (xy 242.57 50.165))
(stroke (width 0) (type default))
(uuid da74d7ae-2d79-43ec-b160-433676561575)
)
(wire (pts (xy 191.77 45.72) (xy 191.77 43.18))
(stroke (width 0) (type default))
(uuid daacc035-f92a-475b-b79c-992cfdc423da)
)
(wire (pts (xy 151.765 45.72) (xy 151.765 43.18))
(stroke (width 0) (type default))
(uuid dc66df18-be2f-4515-815e-17ad92ac4f96)
)
(wire (pts (xy 242.57 31.115) (xy 242.57 36.195))
(stroke (width 0) (type default))
(uuid ddb2d7f2-0174-41db-9720-08909717ec08)
)
(wire (pts (xy 227.33 83.185) (xy 229.87 83.185))
(stroke (width 0) (type default))
(uuid df12aa23-6350-45b2-b27f-6f5e1d4a9c12)
)
(wire (pts (xy 24.765 83.185) (xy 24.765 90.805))
(stroke (width 0) (type default))
(uuid e12ee2a9-23bb-422d-9b6d-7f6ea8bb3fdf)
)
(wire (pts (xy 80.645 111.125) (xy 80.645 116.205))
(stroke (width 0) (type default))
(uuid e202915b-da58-4947-9a78-49e159071d84)
)
(wire (pts (xy 191.77 36.195) (xy 201.93 36.195))
(stroke (width 0) (type default))
(uuid e3d68396-e497-41c1-b5a4-77394bbaa344)
)
(wire (pts (xy 242.57 90.805) (xy 242.57 88.265))
(stroke (width 0) (type default))
(uuid e52615da-5357-4876-ab67-a27dd3980f6a)
)
(wire (pts (xy 40.005 116.205) (xy 40.005 130.175))
(stroke (width 0) (type default))
(uuid e5c8fd7b-1ef5-4d3d-80cb-23c8691b67ce)
)
(wire (pts (xy 201.93 90.805) (xy 201.93 88.265))
(stroke (width 0) (type default))
(uuid e9ab6eb5-d0af-4b94-8224-9cf31ed297fa)
)
(wire (pts (xy 29.845 36.195) (xy 40.005 36.195))
(stroke (width 0) (type default))
(uuid ea44d3e3-deee-4839-ad4a-6a911bb9b31f)
)
(wire (pts (xy 80.645 170.815) (xy 80.645 168.275))
(stroke (width 0) (type default))
(uuid fb075b02-4d2f-4ff4-9ca6-117772ec0ab7)
)
(wire (pts (xy 201.93 31.115) (xy 201.93 36.195))
(stroke (width 0) (type default))
(uuid fc78e3d3-173b-48b2-bf93-b19d227f63a2)
)
(wire (pts (xy 24.765 170.815) (xy 40.005 170.815))
(stroke (width 0) (type default))
(uuid ff8703da-82a7-4dd0-9fc6-5c5f6723c662)
)
(global_label "R{slash}~{W}" (shape input) (at 189.23 60.325 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 01c30497-512b-4a92-8844-5384540c71cb)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 182.8539 60.2456 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD1" (shape input) (at 189.23 80.645 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 04f94801-db9a-4bbd-a2f2-57ba2d0baf3b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3377 80.5656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD4" (shape input) (at 149.225 73.025 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0521b177-6884-489b-8080-d6edaab1a677)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.3327 72.9456 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD7" (shape input) (at 149.225 65.405 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0d6f332f-9ae9-4070-a5bd-5120182cfd89)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.3327 65.3256 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD1" (shape input) (at 149.225 80.645 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 135f0434-3e46-4e6e-927e-9a4e8b5f9094)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.3327 80.5656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD2" (shape input) (at 149.225 78.105 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13765d92-af7e-4144-a3bd-f4236ee71061)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.3327 78.0256 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD2" (shape input) (at 67.945 158.115 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 14dca560-9f38-4b86-a6eb-0ea26a73c7f1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.0527 158.0356 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD7" (shape input) (at 27.305 65.405 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1563bde0-c8fd-4d73-a96e-a5fdc267f623)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 65.3256 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "R{slash}~{W}" (shape input) (at 229.87 60.325 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 15d9dfaa-f50c-4223-8883-87a2b8c7dc74)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.4939 60.2456 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD7" (shape input) (at 27.305 145.415 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 19413e9f-fc22-4bb1-a03f-28584a51ab71)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 145.3356 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD5" (shape input) (at 189.23 70.485 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1a61b787-682f-44c9-81b6-13b24c66d71c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3377 70.4056 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD2" (shape input) (at 27.305 78.105 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1f14fe5d-fbb3-4753-a27d-03054fcb5da4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 78.0256 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD7" (shape input) (at 189.23 65.405 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1fe55e86-e0fd-4ad0-b9a7-60b7e784f784)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3377 65.3256 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD4" (shape input) (at 189.23 73.025 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 22fa9cb3-5145-4ab4-910e-6ba419ddeb07)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3377 72.9456 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD4" (shape output) (at 214.63 55.245 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 255c7675-8b2e-4725-8e8d-ae56307404e1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.5223 55.1656 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "~{RAS}" (shape input) (at 229.87 55.245 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2601d357-e9ed-4f4f-82ac-b7c73a7c6203)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.9777 55.1656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD7" (shape input) (at 108.585 65.405 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 287fb3b6-b123-49dd-9cd1-3fe5dba3ec17)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.6927 65.3256 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD6" (shape input) (at 27.305 67.945 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2bff9116-a3c7-4e0b-a973-d05935e57491)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 67.8656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "~{RAS}" (shape input) (at 27.305 55.245 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2c70f838-3ede-4e54-95af-d043bc1dd9ff)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 55.1656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD4" (shape input) (at 27.305 153.035 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2e8a33b4-b970-419a-8ba1-3263fd543106)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 152.9556 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD6" (shape input) (at 108.585 67.945 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 31677fce-9096-4190-a922-6219d294eac1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.6927 67.8656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RD1" (shape output) (at 93.345 60.325 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 34b34f26-152e-4000-909f-f686bafca1d0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 99.4187 60.2456 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "R{slash}~{W}" (shape input) (at 27.305 140.335 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 35130e1b-0a4f-4ea7-9eaa-0d29c6794f5e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 20.9289 140.2556 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "~{RAS}" (shape input) (at 149.225 55.245 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3941e6e9-54e1-404b-8834-750430f5ba5a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.3327 55.1656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD0" (shape output) (at 52.705 55.245 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 39b7bc24-f8a2-47ba-b1a7-d65639428e18)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 58.5973 55.1656 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "~{CAS}" (shape input) (at 27.305 137.795 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3b1bda9c-a27f-4834-93ab-5a000524987d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 137.7156 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD7" (shape input) (at 67.945 145.415 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3d2b28d2-f6c6-4b4c-b8d7-9132602be5f1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.0527 145.3356 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RD3" (shape output) (at 174.625 60.325 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 41dbe217-e68c-48b1-b698-dbb9cad26282)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 180.6987 60.2456 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "AD3" (shape input) (at 27.305 75.565 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 452e332c-e2df-44f6-abc8-6bb44dd61521)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 75.4856 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD5" (shape input) (at 67.945 150.495 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4b7b9ad3-131e-4f49-9b71-5a5ccf795ef4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.0527 150.4156 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD4" (shape input) (at 108.585 73.025 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4f5a66ca-a6be-41a4-8e84-f07732ec2ae4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.6927 72.9456 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD1" (shape input) (at 108.585 80.645 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 513ca90d-8d28-43af-891c-ed4fb77deb97)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.6927 80.5656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD4" (shape input) (at 67.945 73.025 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 526b2292-5837-45d3-baed-6ae1ddbf252c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.0527 72.9456 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "~{RAS}" (shape input) (at 67.945 55.245 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 569d282c-dce0-49ff-900e-236f3444beb8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.0527 55.1656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD4" (shape input) (at 27.305 73.025 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5d56f48a-14f2-4255-9e69-737c868ea966)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 72.9456 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD5" (shape output) (at 255.27 55.245 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5dd691d9-1cb1-4502-aa57-701299531544)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 261.1623 55.1656 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "~{RAS}" (shape input) (at 189.23 55.245 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 60b393ef-b4cd-4d0d-b218-8e186321dab6)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3377 55.1656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "~{CAS}" (shape input) (at 108.585 57.785 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6117399c-16dc-46e8-bf1a-9bba26e70efc)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.6927 57.7056 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD6" (shape input) (at 229.87 67.945 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 61da46d3-83ad-4eb0-82f8-847bdbbfa778)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.9777 67.8656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD2" (shape input) (at 189.23 78.105 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 634a5a65-634b-4e3b-bdb8-053992f740bf)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 183.3377 78.0256 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD2" (shape output) (at 133.985 55.245 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 66f1849a-b99b-4423-829d-c335044f848c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 139.8773 55.1656 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "AD6" (shape input) (at 27.305 147.955 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6b3f6b51-af49-45a5-a3b1-5a728c9895f7)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 147.8756 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RD5" (shape output) (at 255.27 60.325 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6b4226b5-07aa-4dec-9862-a6631b171ea1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 261.3437 60.2456 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "~{CAS}" (shape input) (at 229.87 57.785 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6ce1f182-5510-4d08-b29e-cec2fbbc90eb)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.9777 57.7056 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD4" (shape input) (at 67.945 153.035 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6dfa1d7b-985b-4910-9879-b635d174255c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.0527 152.9556 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RD6" (shape output) (at 52.705 140.335 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 71fcff1f-ff86-457e-93b3-494f298edbf0)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 58.7787 140.2556 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "~{RAS}" (shape input) (at 27.305 135.255 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 766da19d-2311-49df-9705-8a00fc067dab)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 135.1756 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RD4" (shape output) (at 214.63 60.325 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7802425a-35ae-4389-804f-9ee30f850d09)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 220.7037 60.2456 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "AD2" (shape input) (at 229.87 78.105 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7e2dd1b7-aced-4bf5-bef7-dcc9931ca389)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.9777 78.0256 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD1" (shape input) (at 229.87 80.645 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 7ea5a76a-77c8-44fc-9574-1a8d8a1b2f67)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 223.9777 80.5656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RD2" (shape output) (at 133.985 60.325 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 845fc32d-cd68-417a-bdb5-58e85270cfe3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 140.0587 60.2456 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "AD3" (shape input) (at 149.225 75.565 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 86d6a230-a8d3-4dd7-a217-fd7ef3af3d0d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 143.3327 75.4856 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD1" (shape input) (at 27.305 80.645 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8b4b895a-779a-4d8d-9672-1b87dabe394f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 21.4127 80.5656 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD6" (shape input) (at 67.945 147.955 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8dbd9fc8-21f8-4d14-ba8f-ee8964caa929)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 62.0527 147.8756 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "R{slash}~{W}" (shape input) (at 67.945 60.325 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 8df808fc-a7be-4466-aade-a2d612e931a8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 61.5689 60.2456 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "AD1" (shape input) (at 67.945 80.645 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 91b75a54-d1ec-4866-b522-889216308131)