-
Notifications
You must be signed in to change notification settings - Fork 1
/
datapath cp1
1574 lines (1322 loc) · 44.6 KB
/
datapath cp1
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
%!PS-Adobe-2.0 EPSF-2.0
%%BoundingBox: 0 0 612 792
%%Creator: IlogViews Dump module
%%Date: Fri Feb 15 16:50:28 2013
%%Pages: (atend)
%%BeginProlog
80 dict begin
/ilvlw true def
/bd{bind def}bind def/ld{load def}bd/x/exch ld
/t/translate ld/G/gsave ld/g/grestore ld/M/moveto ld
/L/lineto ld/rM/rmoveto ld/rL/rlineto ld
/r/roll ld/n/newpath ld/sc/gsave ld/c/closepath ld
/slw/setlinewidth ld
/s{ilvlw{stroke}{matrix currentmatrix imtrx
setmatrix stroke setmatrix}ifelse}bd
/rc{currentrgbcolor currentlinewidth currentdash
currentfont grestore setfont setdash slw setrgbcolor}bd
/fillpat{flattenpath pathbbox G 5 -1 r
{eoclip}{clip}ifelse 3 -1 r dup 0 x t sub
3 1 r x dup 0 t sub 4 -1 r dup 3 1 r div ceiling
cvi 1 add 4 2 r 1 index div ceiling cvi 1 add
{3 copy pop G{4 index exec dup 0 t}repeat
g pop dup 0 x t}repeat g 4{pop}repeat}bd
/rect{M dup 0 x rL x 0 rL neg 0 x rL c}bd
/ilvshow{
{pop pop currentpoint round x round x M}x kshow}bd
/readpattern{
mul string currentfile /ASCII85Decode filter x readstring pop /p x def } bd
/imtrx matrix currentmatrix def
/Latin1Encoding [
[8#202/quotesinglbase][8#203/florin]
[8#204/quotedblbase][8#205/ellipsis]
[8#206/dagger][8#207/daggerdbl]
[8#210/circumflex][8#211/perthousand]
[8#212/Scaron][8#213/guilsinglleft]
[8#214/OE][8#221/quoteleft]
[8#222/quoteright][8#223/quotedblleft]
[8#224/quotedblright][8#225/bullet]
[8#226/endash][8#227/emdash]
[8#230/tilde][8#232/scaron]
[8#233/guilsinglright][8#234/oe]
[8#237/Ydieresis][8#240/space]
[8#241/exclamdown][8#242/cent]
[8#243/sterling][8#244/currency]
[8#245/yen][8#246/bar]
[8#247/section][8#250/dieresis]
[8#252/ordfeminine][8#253/guillemotleft]
[8#255/hyphen][8#257/macron]
[8#260/ring][8#264/acute]
[8#266/paragraph][8#267/periodcentered]
[8#270/cedilla][8#272/ordmasculine]
[8#273/guillemotright][8#277/questiondown]
[8#300/Agrave][8#301/Aacute]
[8#302/Acircumflex][8#303/Atilde]
[8#304/Adieresis][8#305/Aring]
[8#306/AE][8#307/Ccedilla]
[8#310/Egrave][8#311/Eacute]
[8#312/Ecircumflex][8#313/Edieresis]
[8#314/Igrave][8#315/Iacute]
[8#316/Icircumflex][8#317/Idieresis]
[8#321/Ntilde][8#322/Ograve]
[8#323/Oacute][8#324/Ocircumflex]
[8#325/Otilde][8#326/Odieresis]
[8#330/Oslash][8#331/Ugrave]
[8#332/Uacute][8#333/Ucircumflex]
[8#334/Udieresis][8#335/Yacute]
[8#337/germandbls][8#340/agrave]
[8#341/aacute][8#342/acircumflex]
[8#343/atilde][8#344/adieresis]
[8#345/aring][8#346/ae]
[8#347/ccedilla][8#350/egrave]
[8#351/eacute][8#352/ecircumflex]
[8#353/edieresis][8#354/igrave]
[8#355/iacute][8#356/icircumflex]
[8#357/idieresis][8#361/ntilde]
[8#362/ograve][8#363/oacute]
[8#364/ocircumflex][8#365/otilde]
[8#366/odieresis][8#367/divide]
[8#370/oslash][8#371/ugrave]
[8#372/uacute][8#373/ucircumflex]
[8#374/udieresis][8#375/yacute]
[8#377/ydieresis]
] def
/ilvreencode{exch dup systemdict/findfont get exec dup
length dict
begin{1 index/FID ne{def}{pop pop}ifelse} forall
exch /Encoding exch Encoding dup length array copy
exch{aload pop 2 index 3 1 roll put}forall def
currentdict end definefont}bd
/ilvsf{Latin1Encoding ilvreencode
exch scalefont setfont}bd
/ilvjsf {findfont exch scalefont setfont}bd
/strip{ newpath gsave translate
dup -1 scale dup 1 exch 8 exch[exch 0 0 -1 0 1]
currentfile /ASCII85Decode filter } bd
/rectclip where
{ pop }
{ /rectclip
{ 4 -2 roll M dup 0 x rL x 0 rL neg 0 x rL c } bd } ifelse
/rectfill where
{ pop }
{ /rectfill
{ 4 -2 roll M dup 0 x rL x 0 rL neg 0 x rL c fill } bd } ifelse
/rectstroke where
{ pop }
{ /rectstroke
{ 4 -2 roll M dup 0 x rL x 0 rL neg 0 x rL c stroke } bd } ifelse
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
[{
%%BeginFeature: *PageRegion
2 dict
dup /PageSize [612 792] put
dup /ImagingBBox null put
setpagedevice
%%EndFeature
} stopped cleartomark
/realmatrix { [1 0 0 -1 0 792] imtrx matrix concatmatrix } bd
realmatrix setmatrix
/Courier findfont setfont
%%EndPageSetup
initclip 612 792 0 0 rect clip
sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
12/Helvetica ilvsf
[] 0 setdash
0.498039 setgray
0 slw
n 269 197 M 269 223 L 191 249 L 191 171 L 269 197 L
eofill
0.25098 setgray
2 slw
n 269 197 M 269 223 L 191 249 L 191 171 L 269 197 L s
0.8 setgray
0 slw
n 79 99 301 121 rect eofill
0.0784314 setgray
2 slw
301 121 79 99 rectstroke
0.498039 setgray
0 slw
n 79 79 501 241 rect eofill
0.25098 setgray
2 slw
501 241 79 79 rectstroke
0.0784314 setgray
0 slw
n 150 226 M 160 226 L 165 230 L 160 234 L 150 234 L 150 226 L
eofill
0 setgray
n 150 226 M 160 226 L 165 230 L 160 234 L 150 234 L 150 226 L s
0.0784314 setgray
n 150 226 M 160 226 L 165 230 L 160 234 L 150 234 L 150 226 L
eofill
0 setgray
n 150 226 M 160 226 L 165 230 L 160 234 L 150 234 L 150 226 L s
n 165 230 M 170 230 L s
0.0784314 setgray
n 200 146 M 210 146 L 215 150 L 210 154 L 200 154 L 200 146 L
eofill
0 setgray
n 200 146 M 210 146 L 215 150 L 210 154 L 200 154 L 200 146 L s
0.0784314 setgray
n 200 146 M 210 146 L 215 150 L 210 154 L 200 154 L 200 146 L
eofill
0 setgray
n 200 146 M 210 146 L 215 150 L 210 154 L 200 154 L 200 146 L s
n 215 150 M 220 150 L s
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
0 setgray
n G 192 247 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
n G 302 217 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
!.]TMJ:N0#J:N.MzJH,ZLs8W-!s1j-b!!!"Ls8W-!s8W-!_#Job!!%QLs8W-!s8W*!z!.b+Ls&W9'=9
&=#^]4?7JH,XN=9&;%=9&<9!!!"Ls8Q/%s8Q/%s8Tk7!!%QLs8W-!=',G%s1eU7!.b+Ls8Q/%s8W-!^]
4?7JH,ZLs&W;%s8W,7!!!"Ls8W-!s8W-!s8Tk7!!%QLs8W+#=9&=#s1eU7!.b+Ls8Q/%s8W-!^]4?7JH
,ZLs8W-!s8W,7!!!"L^qdb$^qdb$^qd_c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
0.0784314 setgray
n 200 126 M 210 126 L 215 130 L 210 134 L 200 134 L 200 126 L
eofill
0 setgray
n 200 126 M 210 126 L 215 130 L 210 134 L 200 134 L 200 126 L s
0.0784314 setgray
n 200 126 M 210 126 L 215 130 L 210 134 L 200 134 L 200 126 L
eofill
0 setgray
n 200 126 M 210 126 L 215 130 L 210 134 L 200 134 L 200 126 L s
n 215 130 M 220 130 L s
0.0784314 setgray
n 200 136 M 210 136 L 215 140 L 210 144 L 200 144 L 200 136 L
eofill
0 setgray
n 200 136 M 210 136 L 215 140 L 210 144 L 200 144 L 200 136 L s
0.0784314 setgray
n 200 136 M 210 136 L 215 140 L 210 144 L 200 144 L 200 136 L
eofill
0 setgray
n 200 136 M 210 136 L 215 140 L 210 144 L 200 144 L 200 136 L s
n 215 140 M 220 140 L s
0.0784314 setgray
n 60 106 M 70 106 L 75 110 L 70 114 L 60 114 L 60 106 L
eofill
0 setgray
n 60 106 M 70 106 L 75 110 L 70 114 L 60 114 L 60 106 L s
0.0784314 setgray
n 60 106 M 70 106 L 75 110 L 70 114 L 60 114 L 60 106 L
eofill
0 setgray
n 60 106 M 70 106 L 75 110 L 70 114 L 60 114 L 60 106 L s
n 75 110 M 80 110 L s
0.0784314 setgray
n 50 46 M 60 46 L 65 50 L 60 54 L 50 54 L 50 46 L
eofill
0 setgray
n 50 46 M 60 46 L 65 50 L 60 54 L 50 54 L 50 46 L s
0.0784314 setgray
n 50 46 M 60 46 L 65 50 L 60 54 L 50 54 L 50 46 L
eofill
0 setgray
n 50 46 M 60 46 L 65 50 L 60 54 L 50 54 L 50 46 L s
n 65 50 M 70 50 L s
0.0784314 setgray
n 50 26 M 60 26 L 65 30 L 60 34 L 50 34 L 50 26 L
eofill
0 setgray
n 50 26 M 60 26 L 65 30 L 60 34 L 50 34 L 50 26 L s
0.0784314 setgray
n 50 26 M 60 26 L 65 30 L 60 34 L 50 34 L 50 26 L
eofill
0 setgray
n 50 26 M 60 26 L 65 30 L 60 34 L 50 34 L 50 26 L s
n 65 30 M 70 30 L s
0.498039 setgray
n 79 79 501 131 rect eofill
0.25098 setgray
2 slw
501 131 79 79 rectstroke
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
0 setgray
0 slw
n G 502 207 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
0.8 setgray
n 79 99 501 11 rect eofill
0.0784314 setgray
2 slw
501 11 79 99 rectstroke
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
0 setgray
0 slw
n G 502 107 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
!.]TMJ:N0#J:N.MzJH,ZLs8W-!s1j-b!!!"Ls8W-!s8W-!_#Job!!%QLs8W-!s8W*!z!.b+Ls&W9'=9
&=#^]4?7JH,XN=9&;%=9&<9!!!"Ls8Q/%s8Q/%s8Tk7!!%QLs8W-!=',G%s1eU7!.b+Ls8Q/%s8W-!^]
4?7JH,ZLs&W;%s8W,7!!!"Ls8W-!s8W-!s8Tk7!!%QLs8W+#=9&=#s1eU7!.b+Ls8Q/%s8W-!^]4?7JH
,ZLs8W-!s8W,7!!!"L^qdb$^qdb$^qd_c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
0.0784314 setgray
n 605 16 M 615 16 L 620 20 L 615 24 L 605 24 L 605 16 L
eofill
0 setgray
n 605 16 M 615 16 L 620 20 L 615 24 L 605 24 L 605 16 L s
0.0784314 setgray
n 605 16 M 615 16 L 620 20 L 615 24 L 605 24 L 605 16 L
eofill
0 setgray
n 605 16 M 615 16 L 620 20 L 615 24 L 605 24 L 605 16 L s
n 600 20 M 605 20 L s
0.0784314 setgray
n 605 26 M 615 26 L 620 30 L 615 34 L 605 34 L 605 26 L
eofill
0 setgray
n 605 26 M 615 26 L 620 30 L 615 34 L 605 34 L 605 26 L s
0.0784314 setgray
n 605 26 M 615 26 L 620 30 L 615 34 L 605 34 L 605 26 L
eofill
0 setgray
n 605 26 M 615 26 L 620 30 L 615 34 L 605 34 L 605 26 L s
n 600 30 M 605 30 L s
0.0784314 setgray
n 605 36 M 615 36 L 620 40 L 615 44 L 605 44 L 605 36 L
eofill
0 setgray
n 605 36 M 615 36 L 620 40 L 615 44 L 605 44 L 605 36 L s
0.0784314 setgray
n 605 36 M 615 36 L 620 40 L 615 44 L 605 44 L 605 36 L
eofill
0 setgray
n 605 36 M 615 36 L 620 40 L 615 44 L 605 44 L 605 36 L s
n 600 40 M 605 40 L s
0.0784314 setgray
n 470 146 M 480 146 L 485 150 L 480 154 L 470 154 L 470 146 L
eofill
0 setgray
n 470 146 M 480 146 L 485 150 L 480 154 L 470 154 L 470 146 L s
0.0784314 setgray
n 470 146 M 480 146 L 485 150 L 480 154 L 470 154 L 470 146 L
eofill
0 setgray
n 470 146 M 480 146 L 485 150 L 480 154 L 470 154 L 470 146 L s
n 485 150 M 490 150 L s
0.0784314 setgray
n 180 296 M 190 296 L 195 300 L 190 304 L 180 304 L 180 296 L
eofill
0 setgray
n 180 296 M 190 296 L 195 300 L 190 304 L 180 304 L 180 296 L s
0.0784314 setgray
n 180 296 M 190 296 L 195 300 L 190 304 L 180 304 L 180 296 L
eofill
0 setgray
n 180 296 M 190 296 L 195 300 L 190 304 L 180 304 L 180 296 L s
n 195 300 M 200 300 L s
0.0784314 setgray
n 245 416 M 255 416 L 260 420 L 255 424 L 245 424 L 245 416 L
eofill
0 setgray
n 245 416 M 255 416 L 260 420 L 255 424 L 245 424 L 245 416 L s
0.0784314 setgray
n 245 416 M 255 416 L 260 420 L 255 424 L 245 424 L 245 416 L
eofill
0 setgray
n 245 416 M 255 416 L 260 420 L 255 424 L 245 424 L 245 416 L s
n 240 420 M 245 420 L s
0.8 setgray
n 79 99 231 281 rect eofill
0.0784314 setgray
2 slw
231 281 79 99 rectstroke
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
0 setgray
0 slw
n G 232 377 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
n G 502 317 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
0.498039 setgray
n 79 89 501 361 rect eofill
0.25098 setgray
2 slw
501 361 79 89 rectstroke
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
0 setgray
0 slw
n G 502 447 t 15 -15 scale
15 15 8[15 0 0 -15 0 15] currentfile /ASCII85Decode filter image
zzzz!.]TMJ:N0#J:IV"zJH,ZLs8W-!^jlCb!!!"Ls8W-!s8W,7s*t(L!!%QLs8W-!s8N'!z!.b(Lz!!
*&7zJH#Ts-RU8h-i^s^!!!"Ls8W-!s8W-!s1eU7!!%QL!%0-A-RU;A^]4?7!.b(L-RU8h-R\r0zJH,ZL
s8W-!s8Tk7!!!"Lrr=Do-RU8hs1eU7!!%QL!%0-A-RU;A^]4?7!.b+Ls8W-!s8W,7zJAAt9^qdb$^qd_
c!!~>
g
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
0.0784314 setgray
n 450 256 M 460 256 L 465 260 L 460 264 L 450 264 L 450 256 L
eofill
0 setgray
n 450 256 M 460 256 L 465 260 L 460 264 L 450 264 L 450 256 L s
0.0784314 setgray
n 450 256 M 460 256 L 465 260 L 460 264 L 450 264 L 450 256 L
eofill
0 setgray
n 450 256 M 460 256 L 465 260 L 460 264 L 450 264 L 450 256 L s
n 465 260 M 470 260 L s
0.0784314 setgray
n 450 376 M 460 376 L 465 380 L 460 384 L 450 384 L 450 376 L
eofill
0 setgray
n 450 376 M 460 376 L 465 380 L 460 384 L 450 384 L 450 376 L s
0.0784314 setgray
n 450 376 M 460 376 L 465 380 L 460 384 L 450 384 L 450 376 L
eofill
0 setgray
n 450 376 M 460 376 L 465 380 L 460 384 L 450 384 L 450 376 L s
n 465 380 M 470 380 L s
n 830 410 M 830 500 L 70 500 L 70 190 L 182 190 L s
n 330 360 M 340 360 L 340 470 L 890 470 L 890 460 L s
n 587 310 M 710 310 L 710 380 L 722 380 L s
n 587 440 M 722 440 L s
n 310 290 M 400 290 L 400 0 L 840 0 L 840 80 L 852 80 L s
n 587 200 M 700 200 L 700 180 L 720 180 L s
n 165 230 M 170 230 L s
n 170 230 M 182 230 L s
n 310 360 M 330 360 L 330 220 L s
n 380 210 M 440 210 L 440 370 L 492 370 L s
n 310 320 M 420 320 L 420 160 L 492 160 L s
n 215 150 M 220 150 L s
n 215 130 M 220 130 L s
n 215 140 M 220 140 L s
n 277 210 M 300 210 L s
n 220 130 M 300 130 L s
n 220 150 M 300 150 L s
n 200 160 M 230 160 L 230 176 L s
n 220 140 M 300 140 L s
n 75 110 M 80 110 L s
n 80 110 M 180 110 L s
n 65 50 M 70 50 L s
n 70 50 M 170 50 L s
n 65 30 M 70 30 L s
n 70 30 M 170 30 L s
n 450 20 M 500 20 L s
n 400 30 M 500 30 L s
n 500 100 M 470 100 L 470 140 L 492 140 L s
n 600 20 M 605 20 L s
n 580 20 M 600 20 L s
n 600 30 M 605 30 L s
n 580 30 M 600 30 L s
n 600 40 M 605 40 L s
n 580 40 M 600 40 L s
n 485 150 M 490 150 L s
n 490 150 M 492 150 L s
n 620 200 M 620 80 L 580 80 L s
n 195 300 M 200 300 L s
n 240 420 M 245 420 L s
n 200 300 M 200 420 L s
n 200 300 M 230 300 L s
n 200 420 M 240 420 L s
n 440 250 M 492 250 L s
n 420 270 M 492 270 L s
n 420 320 M 420 390 L 492 390 L s
n 465 260 M 470 260 L s
n 465 380 M 470 380 L s
n 470 260 M 492 260 L s
n 470 380 M 492 380 L s
0.498039 setgray
n 500 390 M 492 394 L 492 386 L 500 390 L
eofill
0 setgray
n 500 390 M 492 394 L 492 386 L 500 390 L s
0.498039 setgray
n 190 190 M 182 194 L 182 186 L 190 190 L
eofill
0 setgray
n 190 190 M 182 194 L 182 186 L 190 190 L s
n 317 360 M 310 364 L 310 356 L 317 360 L
eofill
n 317 360 M 310 364 L 310 356 L 317 360 L s
n 317 290 M 310 294 L 310 286 L 317 290 L
eofill
n 317 290 M 310 294 L 310 286 L 317 290 L s
n 317 320 M 310 324 L 310 316 L 317 320 L
eofill
n 317 320 M 310 324 L 310 316 L 317 320 L s
0.498039 setgray
n 230 183 M 226 176 L 234 176 L 230 183 L
eofill
0 setgray
n 230 183 M 226 176 L 234 176 L 230 183 L s
n 300 130 M 292 134 L 292 126 L 300 130 L
eofill
n 300 130 M 292 134 L 292 126 L 300 130 L s
n 300 150 M 292 154 L 292 146 L 300 150 L
eofill
n 300 150 M 292 154 L 292 146 L 300 150 L s
1 setgray
n matrix currentmatrix 200 160 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 200 160 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0 setgray
n 300 140 M 292 144 L 292 136 L 300 140 L
eofill
n 300 140 M 292 144 L 292 136 L 300 140 L s
1 setgray
n matrix currentmatrix 180 110 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 180 110 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
1 setgray
n matrix currentmatrix 170 50 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 170 50 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
1 setgray
n matrix currentmatrix 170 30 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 170 30 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0.498039 setgray
n 500 140 M 492 144 L 492 136 L 500 140 L
eofill
0 setgray
n 500 140 M 492 144 L 492 136 L 500 140 L s
0.498039 setgray
n 500 150 M 492 154 L 492 146 L 500 150 L
eofill
0 setgray
n 500 150 M 492 154 L 492 146 L 500 150 L s
0.498039 setgray
n 500 160 M 492 164 L 492 156 L 500 160 L
eofill
0 setgray
n 500 160 M 492 164 L 492 156 L 500 160 L s
0.498039 setgray
n 500 170 M 492 174 L 492 166 L 500 170 L
eofill
0 setgray
n 500 170 M 492 174 L 492 166 L 500 170 L s
1 setgray
n matrix currentmatrix 450 20 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 450 20 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0 setgray
n 500 20 M 492 24 L 492 16 L 500 20 L
eofill
n 500 20 M 492 24 L 492 16 L 500 20 L s
n 500 30 M 492 34 L 492 26 L 500 30 L
eofill
n 500 30 M 492 34 L 492 26 L 500 30 L s
n matrix currentmatrix 400 30 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 400 30 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
n 492 100 M 500 96 L 500 104 L 492 100 L
eofill
n 492 100 M 500 96 L 500 104 L 492 100 L s
n 587 20 M 580 24 L 580 16 L 587 20 L
eofill
n 587 20 M 580 24 L 580 16 L 587 20 L s
n 587 30 M 580 34 L 580 26 L 587 30 L
eofill
n 587 30 M 580 34 L 580 26 L 587 30 L s
n 587 40 M 580 44 L 580 36 L 587 40 L
eofill
n 587 40 M 580 44 L 580 36 L 587 40 L s
n 580 80 M 587 76 L 587 84 L 580 80 L
eofill
n 580 80 M 587 76 L 587 84 L 580 80 L s
0.498039 setgray
n 190 230 M 182 234 L 182 226 L 190 230 L
eofill
0 setgray
n 190 230 M 182 234 L 182 226 L 190 230 L s
0.498039 setgray
n 277 210 M 270 214 L 270 206 L 277 210 L
eofill
0 setgray
n 277 210 M 270 214 L 270 206 L 277 210 L s
n 300 210 M 292 214 L 292 206 L 300 210 L
eofill
n 300 210 M 292 214 L 292 206 L 300 210 L s
n 230 300 M 222 304 L 222 296 L 230 300 L
eofill
n 230 300 M 222 304 L 222 296 L 230 300 L s
n matrix currentmatrix 200 300 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 200 300 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
n 330 220 M 334 227 L 326 227 L 330 220 L
eofill
n 330 220 M 334 227 L 326 227 L 330 220 L s
n matrix currentmatrix 330 360 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 330 360 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0.498039 setgray
n 500 250 M 492 254 L 492 246 L 500 250 L
eofill
0 setgray
n 500 250 M 492 254 L 492 246 L 500 250 L s
0.498039 setgray
n 587 310 M 580 314 L 580 306 L 587 310 L
eofill
0 setgray
n 587 310 M 580 314 L 580 306 L 587 310 L s
0.498039 setgray
n 500 270 M 492 274 L 492 266 L 500 270 L
eofill
0 setgray
n 500 270 M 492 274 L 492 266 L 500 270 L s
0.498039 setgray
n 500 280 M 492 284 L 492 276 L 500 280 L
eofill
0 setgray
n 500 280 M 492 284 L 492 276 L 500 280 L s
0.498039 setgray
n 500 370 M 492 374 L 492 366 L 500 370 L
eofill
0 setgray
n 500 370 M 492 374 L 492 366 L 500 370 L s
0.498039 setgray
n 500 380 M 492 384 L 492 376 L 500 380 L
eofill
0 setgray
n 500 380 M 492 384 L 492 376 L 500 380 L s
n 387 210 M 380 214 L 380 206 L 387 210 L
eofill
n 387 210 M 380 214 L 380 206 L 387 210 L s
n matrix currentmatrix 440 250 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 440 250 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
n matrix currentmatrix 420 270 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 420 270 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
n matrix currentmatrix 420 320 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 420 320 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0.498039 setgray
n 500 260 M 492 264 L 492 256 L 500 260 L
eofill
0 setgray
n 500 260 M 492 264 L 492 256 L 500 260 L s
n matrix currentmatrix 620 200 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 620 200 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0.498039 setgray
n 587 200 M 580 204 L 580 196 L 587 200 L
eofill
0 setgray
n 587 200 M 580 204 L 580 196 L 587 200 L s
1 setgray
n matrix currentmatrix 200 420 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
0.341176 setgray
n matrix currentmatrix 200 420 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0 setgray
n matrix currentmatrix 200 420 t 4 4 scale 0 0 M 1 -1 scale 0 0 1 0 360 arc setmatrix
eofill
n matrix currentmatrix 200 420 t 4 4 scale 1 -1 scale 0 0 1 0 360 arc setmatrix s
0.498039 setgray
n 587 440 M 580 444 L 580 436 L 587 440 L
eofill
0 setgray
n 587 440 M 580 444 L 580 436 L 587 440 L s
0.498039 setgray
n 500 400 M 492 404 L 492 396 L 500 400 L
eofill
0 setgray
n 500 400 M 492 404 L 492 396 L 500 400 L s
8/Courier ilvsf
G 687 378 M 1 -1 scale(DataOut1)ilvshow g
G 680 178 M 1 -1 scale(tagAndFlags)ilvshow g
8/Courier-Bold ilvsf
G 322 163 M 1 -1 scale(ece411)ilvshow g
G 322 172 M 1 -1 scale(DataOutOffSet)ilvshow g
8/Courier ilvsf
G 510 252 M 1 -1 scale(DataIn)ilvshow g
G 430 248 M 1 -1 scale(FixedDataOut)ilvshow g
G 330 288 M 1 -1 scale(wantedTag)ilvshow g
G 330 318 M 1 -1 scale(Index)ilvshow g
G 190 152 M 1 -1 scale(MWRITEL_L)dup stringwidth pop -1 mul 0 rM ilvshow g
G 190 132 M 1 -1 scale(DataOut)dup stringwidth pop -1 mul 0 rM ilvshow g
G 190 142 M 1 -1 scale(MWRITEH_L)dup stringwidth pop -1 mul 0 rM ilvshow g
G 152 188 M 1 -1 scale(line)ilvshow g
G 50 112 M 1 -1 scale(MREAD_L)dup stringwidth pop -1 mul 0 rM ilvshow g
G 40 52 M 1 -1 scale(clk)dup stringwidth pop -1 mul 0 rM ilvshow g
G 40 32 M 1 -1 scale(Reset_L)dup stringwidth pop -1 mul 0 rM ilvshow g
8/Courier-Bold ilvsf
G 190 14 M 1 -1 scale(Package List)ilvshow g
8/Courier ilvsf
G 190 23 M 1 -1 scale(LIBRARY ieee;)ilvshow g
G 190 32 M 1 -1 scale(USE ieee.std_logic_1164.all;)ilvshow g
G 190 41 M 1 -1 scale(USE ieee.NUMERIC_STD.all;)ilvshow g
G 190 50 M 1 -1 scale()ilvshow g
G 190 59 M 1 -1 scale(LIBRARY ece411;)ilvshow g
G 190 68 M 1 -1 scale(USE ece411.LC3b_types.all;)ilvshow g
G 140 232 M 1 -1 scale(PMDATAIN)dup stringwidth pop -1 mul 0 rM ilvshow g
8/Courier-Bold ilvsf
G 207 208 M 1 -1 scale(ece411)ilvshow g
G 207 217 M 1 -1 scale(OWordMux2)ilvshow g
G 207 226 M 1 -1 scale(U_6)ilvshow g
8/Courier ilvsf
G 200 192 M 1 -1 scale(A)ilvshow g
G 200 232 M 1 -1 scale(B)ilvshow g
G 260 212 M 1 -1 scale(F)dup stringwidth pop -1 mul 0 rM ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
G
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
225 208 M[-1.19034e-12 -1 1 -1.19034e-12 0 0]concat
0 7 rM 1 -1 scale(Sel)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
8/Courier-Bold ilvsf
G 322 181 M 1 -1 scale(U_3)ilvshow g
8/Courier ilvsf
G 280 208 M 1 -1 scale(data)ilvshow g
G 210 168 M 1 -1 scale(Miss)ilvshow g
G 400 208 M 1 -1 scale(FixedDataOut)ilvshow g
8/Courier-Bold ilvsf
G 502 53 M 1 -1 scale(ece411)ilvshow g
G 502 62 M 1 -1 scale(LRUTagFlagFixer)ilvshow g
G 502 71 M 1 -1 scale(U_4)ilvshow g
G 497 178 M 1 -1 scale(ece411)ilvshow g
G 497 187 M 1 -1 scale(DataArray)ilvshow g
G 497 196 M 1 -1 scale(tagsFlags)ilvshow g
8/Courier ilvsf
G 510 142 M 1 -1 scale(DataIn)ilvshow g
G 510 152 M 1 -1 scale(DataWrite)ilvshow g
G 510 162 M 1 -1 scale(Index)ilvshow g
G 510 172 M 1 -1 scale(Reset_L)ilvshow g
G 600 78 M 1 -1 scale(tagAndFlags)ilvshow g
G 470 18 M 1 -1 scale(Miss)ilvshow g
G 440 28 M 1 -1 scale(wantedTag)ilvshow g
G 450 98 M 1 -1 scale(newTagFlag)ilvshow g
G 630 22 M 1 -1 scale(Replace0)ilvshow g
G 630 32 M 1 -1 scale(Replace1)ilvshow g
G 630 42 M 1 -1 scale(writeBack)ilvshow g
G 470 152 M 1 -1 scale(UpdateTagFlag)dup stringwidth pop -1 mul 0 rM ilvshow g
G 570 202 M 1 -1 scale(DataOut)dup stringwidth pop -1 mul 0 rM ilvshow g
G 170 302 M 1 -1 scale(ADDRESS)dup stringwidth pop -1 mul 0 rM ilvshow g
G 270 422 M 1 -1 scale(PMADDRESS)ilvshow g
8/Courier-Bold ilvsf
G 232 323 M 1 -1 scale(ece411)ilvshow g
G 232 332 M 1 -1 scale(breakUpAddress)ilvshow g
G 232 341 M 1 -1 scale(addrSplit)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
8/Courier ilvsf
G
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
191 405 M[-1.19034e-12 -1 1 -1.19034e-12 0 0]concat
0 7 rM 1 -1 scale(ADDRESS)ilvshow g
rc sc
realmatrix setmatrix
[0 -1 1 0 50 743] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 743] concat
n 685 510 5 0 rect clip
G 280 368 M 1 -1 scale(offset)ilvshow g
8/Courier-Bold ilvsf
G 507 288 M 1 -1 scale(ece411)ilvshow g
G 507 297 M 1 -1 scale(DataArray)ilvshow g
G 507 306 M 1 -1 scale(Way0)ilvshow g
8/Courier ilvsf
G 510 272 M 1 -1 scale(Index)ilvshow g
G 510 282 M 1 -1 scale(Reset_L)ilvshow g
G 510 372 M 1 -1 scale(DataIn)ilvshow g
G 510 382 M 1 -1 scale(DataWrite)ilvshow g
G 510 392 M 1 -1 scale(Index)ilvshow g
G 510 402 M 1 -1 scale(Reset_L)ilvshow g
G 510 262 M 1 -1 scale(DataWrite)ilvshow g
G 450 382 M 1 -1 scale(WriteWay1)dup stringwidth pop -1 mul 0 rM ilvshow g
G 460 268 M 1 -1 scale(Index)ilvshow g
G 450 262 M 1 -1 scale(WriteWay0)dup stringwidth pop -1 mul 0 rM ilvshow g
G 580 312 M 1 -1 scale(DataOut)dup stringwidth pop -1 mul 0 rM ilvshow g
G 452 388 M 1 -1 scale(Index)ilvshow g
8/Courier-Bold ilvsf
G 517 428 M 1 -1 scale(ece411)ilvshow g
G 517 437 M 1 -1 scale(DataArray)ilvshow g
G 517 446 M 1 -1 scale(Way1)ilvshow g
8/Courier ilvsf
G 580 432 M 1 -1 scale(DataOut)dup stringwidth pop -1 mul 0 rM ilvshow g
realmatrix setmatrix
[0 -1 1 0 0 792] concat
rc sc
realmatrix setmatrix
[0 -1 1 0 0 792] concat
10/Courier-Bold ilvsf
0 setgray
G 312 45 M 1 -1 scale(ece411/Cache_Datapath/struct)ilvshow g
G 676 575 M 1 -1 scale(Page 1 of 2)ilvshow g
G 50 575 M 1 -1 scale(Printed by page10 on 02/15/13 at 16:50:28)ilvshow g
showpage
%%Page: 2 2
%%BeginPageSetup
realmatrix setmatrix
%%EndPageSetup
realmatrix setmatrix
[0 -1 1 0 50 1433] concat
rc sc realmatrix setmatrix
[0 -1 1 0 50 1433] concat
n 690 510 690 0 rect clip
12/Helvetica ilvsf
[] 0 setdash
0.952941 setgray
0 slw
n 170 10 1010 500 rect eofill
0 setgray
1010 500 170 10 rectstroke
0.952941 setgray
n 170 10 1010 480 rect eofill
0 setgray
1010 480 170 10 rectstroke
0.952941 setgray
n 210 20 970 460 rect eofill
0 setgray
970 460 210 20 rectstroke
0.952941 setgray
n 170 10 1010 490 rect eofill
0 setgray
1010 490 170 10 rectstroke
0.498039 setgray
n 79 99 861 181 rect eofill
0.25098 setgray
2 slw