-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMemory.kicad_sch
3652 lines (3575 loc) · 164 KB
/
Memory.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 a7db04cd-7262-4f64-a152-10921454b5e7)
(paper "B")
(title_block
(title "Schematic, Main Logic Board, 128k")
(date "2023-01-28")
(rev "Redraw 001")
(company "Apple Computer")
(comment 1 "050-0073-C")
(comment 2 "Release")
)
(lib_symbols
(symbol "Memory_EPROM:27512" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 26.67 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "27512" (id 1) (at 2.54 -26.67 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_DIP:DIP-28_W15.24mm" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://pdf.datasheetcatalog.com/datasheets/120/227190_DS.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Erasable EPROM 512KiBit" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "UV Erasable EPROM 512 KiBit, [Obsolete 2007-01]" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "27512_1_1"
(rectangle (start -7.62 25.4) (end 7.62 -25.4)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -10.16 -15.24 0) (length 2.54)
(name "A15" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 22.86 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 22.86 180) (length 2.54)
(name "D0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 20.32 180) (length 2.54)
(name "D1" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 17.78 180) (length 2.54)
(name "D2" (effects (font (size 1.27 1.27))))
(number "13" (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 "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 15.24 180) (length 2.54)
(name "D3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 12.7 180) (length 2.54)
(name "D4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 10.16 180) (length 2.54)
(name "D5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 7.62 180) (length 2.54)
(name "D6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 10.16 5.08 180) (length 2.54)
(name "D7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -7.62 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -20.32 0) (length 2.54)
(name "~{CE}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -22.86 0) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -5.08 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -10.16 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -12.7 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 5.08 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 7.62 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 10.16 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 12.7 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 15.24 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 17.78 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 20.32 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "RAC_Custom2:HM50256P" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -5.08 21.59 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "HM50256P" (id 1) (at 11.43 21.59 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 0 17.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://minuszerodegrees.net/memory/41256/datasheet_HM50256.pdf" (id 3) (at 0 17.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "DRAM,RAM,41256" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "262144-Bit Dynamic Random-Access Memory (DRAM)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Package_DIP:DIP-16_W7.62mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "HM50256P_0_1"
(rectangle (start -5.08 20.32) (end 5.08 -20.32)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "HM50256P_1_1"
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 5.08 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 -7.62 7.62 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 -7.62 10.16 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 -7.62 2.54 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 7.62 -17.78 180) (length 2.54)
(name "Q" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -10.16 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 -22.86 90) (length 2.54)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -17.78 0) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -12.7 0) (length 2.54)
(name "~{W}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -7.62 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 -7.62 17.78 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 -7.62 12.7 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 -7.62 15.24 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 22.86 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 -7.62 0 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" (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" "global power" (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" "global power" (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))))
)
)
)
)
(text "ARRAY 5 - 12F\nBIT 00 - 07" (at 185.928 33.274 0)
(effects (font (size 2.0066 2.0066)) (justify left bottom))
(uuid 70365b97-df6e-4408-9911-0ee112f8897b)
)
(text "ROM-LOW" (at 88.392 180.086 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 78d9aea8-edf9-45ed-8490-01ff334bd003)
)
(text "DRAM Memory" (at 189.992 21.336 0)
(effects (font (size 2.0066 2.0066) (thickness 0.4013) bold) (justify left bottom))
(uuid 7cb71a5e-2f47-4e10-b3c3-97535b5e43f6)
)
(text "System ROMs" (at 54.102 174.752 0)
(effects (font (size 2.0066 2.0066) (thickness 0.4013) bold) (justify left bottom))
(uuid a098ca3e-f534-4cef-853f-cbf359849180)
)
(text "ARRAY 5 - 12G\nBIT 08 - 15" (at 185.166 106.172 0)
(effects (font (size 2.0066 2.0066)) (justify left bottom))
(uuid a80c332c-55ed-48f1-98c7-bf237278ee01)
)
(text "ROM-HI" (at 46.482 179.832 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f8b02a29-695d-4dfa-9a30-8461f6b7eead)
)
(text "256k memory footprint used rather than 4164\nin order to have +5v on pin 1 which is NC on\nthe 4164. Mac128k used Micron 4264-200 DRAM chips."
(at 183.134 176.784 0)
(effects (font (size 2.0066 2.0066)) (justify left bottom))
(uuid f937d1bc-fd98-4990-bafa-cbd880a440f6)
)
(global_label "RA2F" (shape input) (at 250.444 52.578 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 003fd21d-c6ee-40b3-8af4-7f3771988ed8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 243.3742 52.4986 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA2F" (shape input) (at 56.134 52.07 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 00c338de-19a0-475f-aae0-b34619eeb1d0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0642 51.9906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA3F" (shape input) (at 327.406 126.492 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0256633c-d781-4361-9ef3-4a644f480db3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 320.3362 126.4126 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA2F" (shape input) (at 133.604 122.428 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0279838c-35fe-4e7f-907a-b3028bb72b13)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.5342 122.3486 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA4F" (shape input) (at 93.218 127.254 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0398d073-5643-4500-9efc-710925cfc3ee)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.1482 127.1746 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA7F" (shape input) (at 212.852 135.382 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 04110487-e50d-424c-92dd-fc341fa8bb44)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.7822 135.3026 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA3F" (shape input) (at 93.218 124.714 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 067abb79-66d8-45af-9fd0-0414450fcfa8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.1482 124.6346 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "{slash}CAS1F" (shape input) (at 56.134 144.526 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 06d8198c-5e43-4d39-b457-669561902d46)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 46.5242 144.4466 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RQ0" (shape bidirectional) (at 71.374 82.55 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0a5b3aeb-3d43-4a41-8caa-ed4f28e49797)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.5971 82.4706 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "{slash}CAS1F" (shape input) (at 327.406 146.812 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0a99eed7-679e-405d-a695-476cf2796e0a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 317.7962 146.7326 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RAM_RWF" (shape input) (at 56.134 147.066 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0c31840c-b997-4988-91dc-49aa2d8b228e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 45.1333 146.9866 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "{slash}CAS1F" (shape input) (at 212.852 145.542 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0c930c9f-697b-43fe-9804-693ddbd43104)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.2422 145.4626 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA6F" (shape input) (at 327.406 134.112 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0d406f8b-ee64-4a34-815b-29a8025eddca)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 320.3362 134.0326 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA1F" (shape input) (at 56.134 119.126 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0f710a91-2386-41ec-a53a-3a77b78aa427)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0642 119.0466 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D1" (shape bidirectional) (at 102.87 193.548 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 10b763fb-4694-457c-873a-8d02a69f8939)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 107.7626 193.4686 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA1F" (shape input) (at 171.45 50.038 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 11ea6459-ec25-4a58-9379-fed1656ff1af)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 164.3802 49.9586 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "A16" (shape input) (at 40.64 229.362 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 121bef9c-618e-4017-8955-07612ad91cb1)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 34.7193 229.2826 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D10" (shape bidirectional) (at 60.96 196.342 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 12ab878c-f945-4b27-9f39-131b33d1c186)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 67.0621 196.2626 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RQ2" (shape bidirectional) (at 149.098 82.804 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 134c6c34-d08b-4e5e-bce2-bc9d515ee7ec)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 155.3211 82.7246 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA6F" (shape input) (at 170.688 133.096 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 154f9a23-8dd7-4463-941b-6726f1122885)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 163.6182 133.0166 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA2F" (shape input) (at 327.406 123.952 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 160b9262-bc57-4295-a9fa-a6177f86cbe1)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 320.3362 123.8726 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA0F" (shape input) (at 212.852 47.244 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1640458a-86b5-4744-bc34-b676662fbb2c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.7822 47.1646 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "A6" (shape input) (at 40.64 203.962 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 18aab1d0-e36a-4a3f-b737-1f8d0d4d4412)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 35.9288 203.8826 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RAM_RWF" (shape input) (at 93.726 77.724 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 18c871fe-968d-48bc-898a-d5e12fcf84e9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 82.7253 77.6446 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA1F" (shape input) (at 93.218 119.634 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1a4933f8-8219-4794-af3e-cd25fad6fbe8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.1482 119.5546 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "A9" (shape input) (at 40.64 211.582 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1a7a402b-617b-46bd-97a6-0f686f353347)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 35.9288 211.5026 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA7F" (shape input) (at 328.168 65.532 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1adb5418-8aa8-47d2-b08d-7b625bbc7045)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 321.0982 65.4526 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D1" (shape bidirectional) (at 93.726 82.804 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 1cd98194-d490-41be-b01f-a037f8678bc8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 88.8334 82.7246 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RQ6" (shape bidirectional) (at 305.816 83.058 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2150d546-53f8-45d4-a659-285e360bb528)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 312.0391 82.9786 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "{slash}CAS1F" (shape input) (at 170.688 145.796 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 22dcb646-af66-4597-b713-251b65e9da1c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 161.0782 145.7166 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RQ5" (shape bidirectional) (at 265.684 83.058 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 253eafd8-2736-4eb0-8903-fdf0d3a5bfcf)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 271.9071 82.9786 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "A12" (shape input) (at 82.55 218.948 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 28bdd38d-1770-4ea8-b75d-6e38034eb490)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.6293 218.8686 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA7F" (shape input) (at 56.134 64.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2966b14d-9819-4103-b831-ec30923c9180)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0642 64.6906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA0F" (shape input) (at 93.726 47.244 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2cd2431f-e103-45ad-9dd9-16269147a5bb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.6562 47.1646 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA4F" (shape input) (at 56.134 57.15 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 2ce4bc4e-6d57-46bc-8a1a-88fb1fec43c8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0642 57.0706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D0" (shape bidirectional) (at 102.87 191.008 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2ed7ba21-b5f7-492d-85f7-d96928a5d505)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 107.7626 190.9286 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA0F" (shape input) (at 328.168 47.752 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 30cdac5d-ada5-49ea-85df-6a2570528c81)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 321.0982 47.6726 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RAM_RWF" (shape input) (at 328.168 78.232 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 31081994-9439-43b5-a934-e4861d6ae3a2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 317.1673 78.1526 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA3F" (shape input) (at 133.858 54.864 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 326a159b-aad8-4486-a186-a412b33a190a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.7882 54.7846 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "A13" (shape input) (at 82.55 221.488 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 33745d97-8c2c-48fc-bb77-96b7868dea93)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.6293 221.4086 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA2F" (shape input) (at 93.726 52.324 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 339205f7-edda-4b3b-878e-09afaf162ac6)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.6562 52.2446 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA5F" (shape input) (at 133.858 59.944 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 34263e45-d2da-4a8b-ac80-12c8b14e07aa)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.7882 59.8646 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA0F" (shape input) (at 290.322 118.364 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 350e137e-5a47-40e3-840d-d8a2cc7746b8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.2522 118.2846 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA6F" (shape input) (at 290.322 133.604 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 367ddbfc-98ea-4610-bb45-326a00043eef)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.2522 133.5246 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA3F" (shape input) (at 212.852 54.864 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 37895e66-f501-4695-8358-dde4fb36bbcc)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.7822 54.7846 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RAM_RWF" (shape input) (at 290.322 148.844 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3a6b6536-a8f1-4798-a9be-46d6263aef6d)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 279.3213 148.7646 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA0F" (shape input) (at 93.218 117.094 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3ca605cd-41b3-4ba8-90eb-d7687ad99e55)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.1482 117.0146 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "{slash}CAS0F" (shape input) (at 250.444 75.438 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3cc523f4-778d-403e-9db0-d5bfe75f50fb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 240.8342 75.3586 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA2F" (shape input) (at 212.852 52.324 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3da34ca4-ab6d-41a9-a710-3dff201a6a0c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.7822 52.2446 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA5F" (shape input) (at 56.134 59.69 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3f5e9094-801b-441a-8f07-81b5a78915fb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0642 59.6106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA7F" (shape input) (at 133.858 65.024 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 44c265e4-548c-46e8-a112-2c484325a9be)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.7882 64.9446 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA0F" (shape input) (at 212.852 117.602 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 452c4944-f374-44c3-8f8c-6083e67f8ba0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.7822 117.5226 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "A6" (shape input) (at 82.55 203.708 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 456a8044-30e2-447a-9407-3442fa4f7fb9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.8388 203.6286 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA6F" (shape input) (at 93.726 62.484 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 483c8951-b653-4591-bf3b-ea4abdc45965)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.6562 62.4046 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D14" (shape bidirectional) (at 60.96 206.502 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4a1e59fd-c3f4-4974-8e01-f9785cf2e1f2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 67.0621 206.4226 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA0F" (shape input) (at 56.134 46.99 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c28b83d-0aa7-4c3d-aafd-6950842acc45)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0642 46.9106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA3F" (shape input) (at 93.726 54.864 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c391911-6c6d-4721-834d-ebbe3f97e534)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 86.6562 54.7846 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA7F" (shape input) (at 250.444 65.278 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4d3b4917-a3bd-4b08-8311-2a5ae13775c5)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 243.3742 65.1986 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "{slash}CAS0F" (shape input) (at 171.45 75.438 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4f88a5cd-fdbd-4c48-b449-c31fe4e6d04b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 161.8402 75.3586 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA4F" (shape input) (at 171.45 57.658 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 531e2f8e-f0e3-409f-a89e-3e291452cc40)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 164.3802 57.5786 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RQ12" (shape bidirectional) (at 228.092 153.162 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 53e9f540-2831-4e6b-91c9-f5231ba06213)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 235.5246 153.0826 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA4F" (shape input) (at 133.604 127.508 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 544b8339-e6aa-49a4-9f5b-21b62b96a791)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.5342 127.4286 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D3" (shape bidirectional) (at 171.45 83.058 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 56e98c23-1654-4e0d-89d1-5abf3daa51fb)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 166.5574 82.9786 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA4F" (shape input) (at 328.168 57.912 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5723c63f-0bd1-4845-be12-218eee6a559e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 321.0982 57.8326 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA4F" (shape input) (at 133.858 57.404 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 57ca5030-8a6c-45e1-93d9-b7584d0316a0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.7882 57.3246 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA5F" (shape input) (at 290.322 131.064 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 57da8327-fd74-444d-b16a-ec67f7b5c8d8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.2522 130.9846 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "{slash}RASF" (shape input) (at 212.852 72.644 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 593a5d6e-cee0-49a3-81ae-1d4155bafaac)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 204.4518 72.5646 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "A3" (shape input) (at 82.55 196.088 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 593af3de-8cec-4c05-ae5d-601f66f3d67f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.8388 196.0086 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA5F" (shape input) (at 290.576 60.198 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5a00a17b-b5cd-4dd6-9c29-53ec065f20bf)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.5062 60.1186 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA2F" (shape input) (at 133.858 52.324 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5ab35563-303d-426f-9e70-fce02161f747)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 126.7882 52.2446 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D12" (shape bidirectional) (at 60.96 201.422 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5b7e4d91-04db-4b62-9f1c-a43e3073161f)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 67.0621 201.3426 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "{slash}CAS0F" (shape input) (at 212.852 75.184 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5c56315d-46a9-4b17-a831-1b680b07aa33)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 203.2422 75.1046 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA1F" (shape input) (at 290.576 50.038 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5c6d3baf-0fd4-477a-afff-5251d661034c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.5062 49.9586 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA3F" (shape input) (at 56.134 124.206 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5e27ddb8-d6cb-423c-b90c-e81f4eac2a05)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 49.0642 124.1266 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA5F" (shape input) (at 212.852 130.302 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5e98d3c9-3db2-4906-a772-b5a3cad6c40b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.7822 130.2226 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA6F" (shape input) (at 212.852 132.842 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5ea86fb6-4792-40c7-8bc7-1d9cff4fa089)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 205.7822 132.7626 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA7F" (shape input) (at 249.936 135.89 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5f113d7f-c351-438f-9ad2-396919dd0781)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 242.8662 135.8106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "A4" (shape input) (at 82.55 198.628 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5f19b27d-d10c-49f7-9c5c-75225a848cb2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.8388 198.5486 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "{slash}RASF" (shape input) (at 56.134 72.39 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5fd339b8-5cb8-4ed2-a203-5fbf5ff3db1a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 47.7338 72.3106 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RAM_RWF" (shape input) (at 93.218 147.574 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6180a9df-3b4f-4604-8c4f-0014ecc673c0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 82.2173 147.4946 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D2" (shape bidirectional) (at 133.858 82.804 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 63545ee1-6df2-49b4-ae3d-5fc33f1d3304)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 128.9654 82.7246 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA3F" (shape input) (at 170.688 125.476 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 63a65e10-bd56-400b-b538-50a312f8c9ef)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 163.6182 125.3966 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "A2" (shape input) (at 82.55 193.548 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 64d592a0-af4f-44a8-85da-5d36c9324489)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 77.8388 193.4686 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RA0F" (shape input) (at 170.688 117.856 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 670d743f-2a22-4065-a450-99ce5a56f183)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 163.6182 117.7766 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "{slash}RASF" (shape input) (at 290.576 72.898 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 67f31d38-3f61-4842-bc66-53ca5a041d4e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 282.1758 72.8186 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "{slash}RASF" (shape input) (at 250.444 72.898 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6a458401-220a-4f71-b359-9d9ca155cf02)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 242.0438 72.8186 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "D8" (shape bidirectional) (at 60.96 191.262 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6b2999f2-7fb7-4e01-884e-565f942859db)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 65.8526 191.1826 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "D4" (shape bidirectional) (at 102.87 201.168 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6c3159a7-3b4a-4584-8b40-908567dee6c9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 107.7626 201.0886 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "RA7F" (shape input) (at 290.322 136.144 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 6e1f8568-19a4-4db4-9098-fcd9324e9c63)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 283.2522 136.0646 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)