-
Notifications
You must be signed in to change notification settings - Fork 0
/
agh.eps
10146 lines (9995 loc) · 314 KB
/
agh.eps
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-3.0 EPSF-3.0%%Creator: Adobe Illustrator(R) 8.0%%AI8_CreatorVersion: 12.0.0%%For: (Wilk Studio) ()%%Title: (agh_znk_wbr_cmyk.eps)%%CreationDate: 10/31/07 10:46%%BoundingBox: 265 363 329 487%%HiResBoundingBox: 265.5835 363.8604 328.6582 486.3003%%DocumentProcessColors: Cyan Magenta Yellow Black%%DocumentSuppliedResources: procset Adobe_level2_AI5 1.2 0%%+ procset AGM_Gradient 1.0 0%%+ procset Adobe_ColorImage_AI6 1.3 0%%+ procset Adobe_Illustrator_AI5 1.3 0%%+ procset Adobe_cshow 2.0 8%%+ procset Adobe_shading_AI8 1.0 0%AI5_FileFormat 4.0%AI3_ColorUsage: Color%AI3_IncludePlacedImages%AI7_ImageSettings: 1%%CMYKCustomColor: 1 1 1 1 ([Registration])%%AI6_ColorSeparationSet: 1 1 (AI6 Default Color Separation Set) %%+ Options: 1 16 0 1 1 1 0 0 0 0 1 1 1 18 0 0 0 0 0 0 0 0 -1 -1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 2 3 4%%+ PPD: 1 21 0 0 60 45 2 2 1 0 0 1 0 0 0 0 0 0 0 0 -1 -1 () %AI3_TemplateBox: 298.5 420.3887 298.5 420.3887%AI3_TileBox: 0.137695 -0.056641 595.1377 841.9438%AI3_DocumentPreview: Macintosh_ColorPic%AI5_ArtSize: 595.2756 841.8898%AI5_RulerUnits: 2%AI5_ArtFlags: 0 0 0 1 0 0 1 0 0%AI5_TargetResolution: 800%AI5_NumLayers: 1%AI8_OpenToView: -163.5 684.3887 2 1906 1085 26 1 0 7 73 0 0%AI5_OpenViewLayers: 7%%PageOrigin:0 0.000977%AI7_GridSettings: 17.0079 4 17.0079 4 1 0 0.8 0.8 0.8 0.9 0.9 0.9%AI9_Flatten: 1%AI12_CMSettings: 00.MS%AI7_Thumbnail: 68 128 8%%BeginData: 13904 Hex Bytes%0000330000660000990000CC0033000033330033660033990033CC0033FF%0066000066330066660066990066CC0066FF009900009933009966009999%0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66%00FF9900FFCC3300003300333300663300993300CC3300FF333300333333%3333663333993333CC3333FF3366003366333366663366993366CC3366FF%3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99%33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033%6600666600996600CC6600FF6633006633336633666633996633CC6633FF%6666006666336666666666996666CC6666FF669900669933669966669999%6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33%66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF%9933009933339933669933999933CC9933FF996600996633996666996699%9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33%99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF%CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399%CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933%CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF%CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC%FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699%FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33%FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100%000011111111220000002200000022222222440000004400000044444444%550000005500000055555555770000007700000077777777880000008800%000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB%DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF%00FF0000FFFFFF0000FF00FFFFFF00FFFFFF%524C45FD15FF7D7DFFA852A8FFA852597DFD3AFF2752FFA8F828A8FF52F8%F853A8FD38FFF827FFFFF82752FFA827F82752FD37FF52F827FFA8F8F8F8%A8FF52F827F87DFD35FFA827F852FFA8F827F8A8FF52F827F87DFD35FF27%F8F87DFF52F827F8A8FF52F8F8F87DFD34FF7DF827F8FFA827F82727FFFF%27F827F8A8FD33FF7D27F8F852FF52F8F82752FF7D27F8F8F8FD34FFF827%F852FFA8F827F827A8FF2727F82752FD32FFA827F8F8F8A8FF27F827F87D%FF7DF8F8F827A8FD32FF2727F8277DFF5227F82727FFA827F827F87DFD32%FF52F827F852FF84F8F8F827A8FF2727F8F827FD32FF5227F82727FFA827%F827F87EFF7DF827F827FD32FF52F827F827FFFFF8F8F82752FF7D27F8F8%F8A8FD31FF7D27F82727FFFF52F827F853FFA8F827F8277DFD31FF7DF8F8%F827A8FF2727F8F827FFA827F827F87DFD31FF7D27F82721FFFF52F827F8%52FFFFF827F8277DFD31FF7DF8F8F827A8FF2727F8F827FFA827F827F87D%FD31FF5927F827F8FFFF52F827F852FFFF0027F8277DFD18FFAE582D582D%7DFFA82D342D3483FF59342D342DFD06FF7DF827F827A8FF27F8F82727FF%A827F8F8F87DFD06FF759A6F99A0FFA89A6F9A6FCAFFA16F9A6F9AFFFD04%0B2DFF830B040B0483FF58040B040BAEFD05FF7D27F827F8FFFF52F827F8%52FFFF2127F8277DFD06FF936869689AFFCA686F6869A1FF6F69686F68AE%0B040B0434FF84040B040B7DFF2E0B050B04FD06FF7DF827F827A8FF27F8%F82727FFA827F8F8F87DFD06FF686968696FFFA169686968A1FF9A686968%69FF0B0B050B2EFF830B0B0B0483FF58040B0B0BA8FD05FF7D27F82700FF%FF52F827F852FFFFF827F82759FD06FF6F6869689AFFCA68696869A1FF6F%69696968A80B040B0434FF83040B040B59FF2E0B040B04AEFD05FF7DF8F8%F827A8FF2727F8F827FFA827F827F87DFD06FF6869686975FFA169686944%C9FF9944696869FFFD040B2EFF830B0B0B0484FF58040B0B0BA8FD05FF7D%27F82721FFFF52F827F852FFFFF827F8277DFD06FF93686F689AFFCA6969%686FA1FF6F6F696968A80B040B0434FF83040B050B7DFF2E0B040B05AFFD%05FF7DF8F8F827A8FF2727F8F827FFA827F827F87DFD06FF6969686975FF%A169686968C9FF9944696869FFFD040B2DFF830B050B0583FF58050B040B%AEFD05FF5927F827F8FFFF52F827F852FFFF0027F8277DFD05FFCF936869%689AFFCA68696969A1FF9969686969A80B040B0434FF84040B040B7DFF2D%0B040B04FD06FF7DF827F827A8FF27F8F82727FFA827F8F8F87DFD06FF68%6968696FFFA169686968A1FF9A68696869FFFD040B2EFF83FD040B83FF58%0B0B050BAEFD05FF7D27F827F8FFFF52F827F852FFFF2127F8277DFD06FF%936969689AFFCA686F6969A1FF9969686F69AE0B040B0434FF84040B040B%7DFF2E0B050B04FD06FF7DF827F827A8FF27F8F82727FFA827F8F8F87DFD%06FF686968696FFFA169686968A1FF9A68696869FF0B0B050B2EFF830B0B%0B0483FF58040B0B0BA8FD05FF7D27F82700FFFF52F827F852FFFFF827F8%2759FD06FF6F6869689AFFCA68696869A1FF6F69696968A80B040B0434FF%83040B040B59FF2E0B040B04AEFD05FF7DF8F8F827A8FF2727F8F827FFA8%27F827F87DFD06FF6869686975FFA169686944C9FF9944696869FFFD040B%2EFF830B0B0B0484FF58040B0B0BA8FD05FF7D27F82721FFFF52F827F852%FFFFF827F8277DFD06FF93686F689AFFCA6969686FA1FF6F6F696968A80B%040B0434FF83040B050B7DFF2E0B040B05AFFD05FF7DF8F8F827A8FF2727%F8F827FFA827F827F87DFD06FF6969686975FFA169686968C9FF99446968%69FFFD040B2DFF830B050B0583FF58050B040BAEFD05FF5927F827F8FFFF%52F827F852FFFF0027F8277DFD05FFCF936869689AFFCA68696969A1FF99%69686969A80B040B0434FF84040B040B7DFF2D0B040B04FD06FF7DF827F8%27A8FF27F8F82727FFA827F8F8F87DFD06FF686968696FFFA169686968A1%FF9A68696869FFFD040B2EFF83FD040B83FF580B0B050BAEFD05FF7D27F8%27F8FFFF52F827F852FFFF2127F8277DFD06FF936969689AFFCA686F6969%A1FF9969686F69AE0B040B0434FF84040B040B7DFF2E0B050B04FD06FF7D%F827F827A8FF27F8F82727FFA827F8F8F87DFD06FF686968696FFFA16968%6968A1FF9A68696869FF0B0B050B2EFF830B0B0B0483FF58040B0B0BA8FD%05FF7D27F82700FFFF52F827F852FFFFF827F82759FD06FF6F6869689AFF%CA68696869A1FF6F69696968A80B040B0434FF83040B040B59FF2E0B040B%04AEFD05FF7DF8F8F827A8FF2727F8F827FFA827F827F87DFD06FF686968%6975FFA169686944C9FF9944696869FFFD040B2EFF830B0B0B0484FF5804%0B0B0BA8FD05FF7D27F82721FFFF52F827F852FFFFF827F8277DFD06FF93%686F689AFFCA6969686FA1FF6F6F696968A80B040B0434FF83040B050B7D%FF2E0B040B05AFFD05FF7DF8F8F827A8FF2727F8F827FFA827F827F87DFD%06FF6969686975FFA169686968C9FF9944696869FFFD040B2DFF830B050B%0583FF58050B040BAEFD05FF5927F827F8FFFF52F827F852FFFF0027F827%7DFD05FFCF936869689AFFCA68696969A1FF9969686969A80B040B0434FF%84040B040B7DFF2D0B040B04FD06FF7DF827F827A8FF27F8F82727FFA827%F8F8F87DFD06FF686968696FFFA169686968A1FF9A68696869FFFD040B2E%FF83FD040B83FF580B0B050BAEFD05FF7D27F827F8FFFF52F827F852FFFF%2127F8277DFD06FF936969689AFFCA686F6969A1FF9969686F69AE0B040B%0434FF84040B040B7DFF2E0B050B04FD06FF7DF827F827A8FF27F8F82727%FFA827F8F8F87DFD06FF686968696FFFA169686968A1FF9A68696869FF0B%0B050B2EFF830B0B0B0483FF58040B0B0BA8FD05FF7D27F82700FFFF52F8%27F852FFFFF827F82759FD06FF6F6869689AFFCA68696869A1FF6F696969%68A80B040B0434FF83040B040B59FF2E0B040B04AEFD05FF7DF8F8F827A8%FF2727F8F827FFA827F827F87DFD06FF6869686975FFA169686944C9FF99%44696869FFFD040B2EFF830B0B0B0484FF58040B0B0BA8FD05FF7D27F827%21FFFF52F827F852FFFFF827F8277DFD06FF93686F689AFFCA6969686FA1%FF6F6F696968A80B040B0434FF83040B050B7DFF2E0B040B05AFFD05FF7D%F8F8F827A8FF2727F8F827FFA827F827F87DFD06FF6969686975FFA16968%6968C9FF9944696869FFFD040B2DFF830B050B0583FF58050B040BAEFD05%FF5927F827F8FFFF52F827F852FFFF0027F8277DFD05FFCF936869689AFF%CA68696969A1FF9969686969A80B040B0434FF84040B040B7DFF2D0B040B%04FD06FF7DF827F827A8FF27F8F82727FFA827F8F8F87DFD06FF68696869%6FFFA169686968A1FF9A68696869FFFD040B2EFF83FD040B83FF580B0B05%0BAEFD05FF7D27F827F8FFFF52F827F852FFFF2127F8277DFD06FF936969%689AFFCA686F6969A1FF9969686F69AE0B040B0434FF84040B040B7DFF2E%0B050B04FD06FF7DF827F827A8FF27F8F82727FFA827F8F8F87DFD06FF68%6968696FFFA169686968A1FF9A68696869FF0B0B050B2EFF830B0B0B0483%FF58040B0B0BA8FD05FF7D27F82700FFFF52F827F852FFFFF827F82759FD%06FF6F6869689AFFCA68696869A1FF6F69696968A80B040B0434FF83040B%040B59FF2E0B040B04AEFD05FF7DF8F8F827A8FF2727F8F827FFA827F827%F87DFD06FF6869686975FFA169686944C9FF9944696869FFFD040B2EFF83%0B0B0B0484FF58040B0B0BA8FD05FF7D27F82721FFFF52F827F852FFFFF8%27F8277DFD06FF93686F689AFFCA6969686FA1FF6F6F696968A80B040B04%34FF83040B050B7DFF2E0B040B05AFFD05FF7DF8F8F827A8FF2727F8F827%FFA827F827F87DFD06FF6969686975FFA169686968C9FF9944696869FFFD%040B2DFF830B050B0583FF58050B040BAEFD05FF5927F827F8FFFF52F827%F852FFFF0027F8277DFD05FFCF936869689AFFCA68696969A1FF99696869%69A80B040B0434FF84040B040B7DFF2D0B040B04FD06FF7DF827F827A8FF%27F8F82727FFA827F8F8F87DFD06FF686968696FFFA169686968A1FF9A68%696869FFFD040B2EFF83FD040B83FF580B0B050BAEFD05FF7D27F827F8FF%FF52F827F852FFFF2127F8277DFD06FF936969689AFFCA686F6969A1FF99%69686F69AE0B040B0434FF84040B040B7DFF2E0B050B04FD06FF7DF827F8%27A8FF27F8F82727FFA827F8F8F87DFD06FF686968696FFFA169686968A1%FF9A68696869FF0B0B050B2EFF830B0B0B0483FF58040B0B0BA8FD05FF7D%27F82700FFFF52F827F852FFFFF827F82759FD06FF6F6869689AFFCA6869%6869A1FF6F69696968A80B040B0434FF83040B040B59FF2E0B040B04AEFD%05FF7DF8F8F827A8FF2727F8F827FFA827F827F87DFD06FF6869686975FF%A169686944C9FF9944696869FFFD040B2EFF830B0B0B0484FF58040B0B0B%A8FD05FF7D27F82721FFFF52F827F852FFFFF827F8277DFD06FF93686F68%9AFFCA6969686FA1FF6F6F696968A80B040B0434FF83040B050B7DFF2E0B%040B05AFFD05FF7DF8F8F827A8FF2727F8F827FFA827F827F87DFD06FF69%69686975FFA169686968C9FF9944696869FFFD040B2DFF830B050B0583FF%58050B040BAEFD05FF5927F827F8FFFF52F827F852FFFF0027F8277DFD05%FFCF936869689AFFCA68696969A1FF9969686969A80B040B0434FF84040B%040B7DFF2D0B040B04FD06FF7DF827F827A8FF27F8F82727FFA827F8F8F8%7DFD06FF686968696FFFA169686968A1FF9A68696869FFFD040B2EFF83FD%040B83FF580B0B050BAEFD05FF7D27F827F8FFFF52F827F852FFFF2127F8%277DFD06FF936969689AFFCA686F6969A1FF9969686F69AE0B040B0434FF%84040B040B7DFF2E0B050B04FD06FF7DF827F827A8FF27F8F82727FFA827%F8F8F87DFD06FF686968696FFFA169686968A1FF9A68696869FF0B0B050B%2EFF830B0B0B0483FF58040B0B0BA8FD05FF7D27F82700FFFF52F827F852%FFFFF827F82759FD06FF6F6869689AFFCA68696869A1FF6F69696968A80B%040B0434FF83040B040B59FF2E0B040B04AEFD05FF7DF8F8F827A8FF2727%F8F827FFA827F827F87DFD06FF6869686975FFA169686944C9FF99446968%69FFFD040B2EFF830B0B0B0484FF58040B0B0BA8FD05FF7D27F82721FFFF%52F827F852FFFFF827F8277DFD06FF93686F689AFFCA6969686FA1FF6F6F%696968A80B040B0434FF83040B050B7DFF2E0B040B05AFFD05FF7DF8F8F8%27A8FF2727F8F827FFA827F827F87DFD06FF6969686975FFA169686968C9%FF9944696869FFFD040B2DFF830B050B0583FF58050B040BAEFD05FF5927%F827F8FFFF52F827F852FFFF0027F8277DFD05FFCF936869689AFFCA6869%6969A1FF9969686969A80B040B0434FF84040B040B7DFF2D0B040B04FD06%FF7DF827F827A8FF27F8F82727FFA827F8F8F87DFD06FF686968696FFFA1%69686968A1FF9A68696869FFFD040B2EFF83FD040B83FF580B0B050BAEFD%05FF7D27F827F8FFFF52F827F852FFFF2127F8277DFD06FF936969689AFF%CA686F6969A1FF9969686F69AE0B040B0434FF84040B040B7DFF2E0B050B%04FD06FF7DF827F827A8FF27F8F82727FFA827F8F8F87DFD06FF68696869%6FFFA169686968A1FF9A68696869FF0B0B050B2EFF830B0B0B0483FF5804%0B0B0BA8FD05FF7D27F82700FFFF52F827F852FFFFF827F82759FD05FFCF%6F6869689AFFC968696869A1FF6F69696968A80B040B0434FF84040B040B%7DFF2E0B040B04AFFD05FF7DF8F8F827A8FF2727F8F827FFA827F827F87D%FD05FFCF686968696FFFA069686944C9FF9944696869FFFD040B2DFFA80B%0B0B0483FF59040B0B0BA8FD05FF7D27F82721FFFF52F827F852FFFFF827%F8277DFD05FFCA6F686F689AFFC36869686FCAFF6F6F69696FFF34040B04%2DFFAE050B050B58FF580B040B05A8FD05FF7DF8F8F827A8FF2727F8F827%FFA827F827F87DFD05FFCA686968699AFF9A69686968CFFF6F6869686FFF%58FD040BFFFF2D040B0B58FF840B0B050BA8FD05FF5327F827F8FFFF52F8%27F852FFFFF827F8277DFD05FFA769686968C3FF9A68696893FFFF696968%699AFF83040B040B7DFF2D0B040B0BFF840B040B0483FD05FF7DF827F8F8%A8FF27F8F82727FFA827F8F8F87DFD05FFA144696869A7FF6F6968696FFF%A169686944A1FFAE0B0B0B0458FF83040B0B0BA8FFFD040B59FD05FFA8A8%7DA87DFFFFA87DA87DA8FFFF7DA87DA8A8FD05FFA06F696969FFCF6F686F%68A1FFA068696893CAFFFF2D0B050B0BFFA80B040B0483FF34040B0458FD%1DFF9A44696893FFC368696869A8FF686968696FFFFFFFA8050B0B0B7DFF%2E0B050B2DFF590B0B0B2DFD1DFF99696869A0FF6F6969696FFFA1696869%68CAFD04FF58040B040BFFA8040B040BA8FF040B040BA8FD1BFFA86F6869%68FFA869446968CAFF6F6869449AFD05FFAF0B0B0B047DFF58040B0B58FF%580B0B0BFD1DFF6969689AFFA0686F689AFFA168696893FD07FF830B040B%04A8FF2D040B04AEAE0B040B58FD1BFFA0696869CAFF68694493FFCA6869%6869A1FD08FF83FD040BFFFF0B040B2DFF7D0B0434FD1BFF9A6869A1FF6F%69686FFFFF6969686FA7FD0AFF840B040B04AEFF2E040B2EFF2E0B04A8FD%19FFCA686875FF75694493FFCA6869686FA7FD0DFF590B0B0B83FF830B0B%58FF580B34FD19FF9A699AFF9A6968C3FFC3686F69A0FD10FFAE340B040B%A8FF2E0B2DFF580B7DFD17FFA1699AFF6F696FCAA893686F76CFFD14FFA8%342E58FFA85834FFA858A8FD15FFCA9AA1FF9A9AA8FF9A936FC9FD1AFFA8%A8FFFFAFA8FD19FFCAFFA8FFFFFFA8CAFDFCFFFDFCFFFDFCFFFD0CFFA8FF%A8FFA8FD15FFA8A8FD057DFD0BFFA8FFA8FFA8FD07FFA8FFFFFFA8FD06FF%52272727F82752FD12FFA85227F827F827F827F852A8FD08FF52F827F827%7DFD06FF7D2752275227FD05FFA8F827F8F8F82727FD0FFFA852F827F8F8%F827F8F8F827F8A8FD08FFA827F8F8F8277EFD05FF5227F8F8F827FD05FF%A827F827F827F827A8FD0DFF7D27F827F827F827F827F827F827A8FD09FF%F827F827F87DFD05FF7DF827F827F8FD05FF7DF8F8F827F8F8F852FD0CFF%A8F8F827F8F8F8527DA8A8A87D52F8A8FD08FFA827F827F8F852FD05FF52%F8F827F8F8FD05FF2727F827F827F82727FD0CFF27F827F827F8A8FD12FF%0027F827F87DFD05FF7DF827F827F8FD04FFA827F8F82727F8F8F8277DFD%0AFF7DF800F827F87DFD12FFA827F827F8F852FD05FF52F8F827F8F8FD04%FF7DF827F8A82727F827F852FD0AFF2727F827F852FD14FF2727F827F87D%FD05FF7DF827F827F8FD04FF27F8F827FF52F827F8F8F8FD09FFA8F8F827%F8F852FD05FFA8FFA8FD0BFFA827F8F8F82752FFA8FFA8FF5227F8F8F827%FFFFFFA827F82752FFA827F827F8277DFD08FFA8F827F827F8A8FD04FFA8%52F82727277DFD09FF2727F827F827212727272127F827F827F8FFFFFF7D%F8F8F8A8FFFF2727F8F8F852FD08FF7DF8F827F8F87DFD05FF7DF8F827F8%F8A8FD07FFA827F8F8F827F8F8F827F8F8F827F8F8F827FFFFFF2727F852%FFFFFF7DF827F827F8A8FD07FF7EF827F827F8A8FD05FFA8F827F827F8A8%FD08FFF827F827F827F827F827F827F827F827F8FFFF7DF8F82727A87DA8%52F8F827F8F852FD07FF7D27F8F8F8277DFD05FF7D27F8F8F82784FD07FF%A827F827F8F827A87D7D7DA827F8F827F8F8FFFF7DF827F827F827F827F8%27F827F852FD07FFA9F827F827F87DFD05FFA8F827F827F8A8FD08FF0027%F827F87DFD05FF7DF827F827F8FFFF27F8F827F8F8F827F8F8F827F8F8F8%A8FD07FF27F8F8F82727FD05FF7D27F8F8F827A8FD07FFA827F827F8F852%FD05FF52F8F827F8F8FF7D27F8272752525228522727F827F82752FD07FF%7D27F827F8277DFD04FFA8F827F827F8A8FD08FF2727F827F87DFD05FF7D%F827F827F8FF52F827F8A8FD06FF27F8F827F827A8FD07FF2727F8F8F827%7DFFFFFF7DF8F827F8F87DFD07FFA827F8F8F82752FD05FF5227F8F8F827%FF0027F852FD07FF7DF827F827F8A8FD08FFF827F827F82752A8A87DF827%F827F8A8FD08FF2727F827F87DFD05FF7DF827F827F87DF8F82759FD07FF%A821F827F8F827FD08FFA827F8F827F8F8F827F8F8F827F8F87DFD07FFA8%27F8F8F82752FD05FF5227F8F8F82752F827F8FD09FF2727F827F827A8FD%09FF5227F827F827F827F827F827F8A8FD08FFF827F827F87DFD05FF7DF8%27F827F85252527DA8FD08FFA8FD0552A8FD0AFFA87D2727F8F8F827F827%527DA8FD07FFA8FD05527DFD05FF7DFD045252%%EndData%%EndComments%%BeginProlog%%BeginResource: procset Adobe_level2_AI5 1.2 0
%%Title: (Adobe Illustrator (R) Version 5.0 Level 2 Emulation)
%%Version: 1.2 0
%%CreationDate: (04/10/93) ()
%%Copyright: ((C) 1987-1996 Adobe Systems Incorporated All Rights Reserved)
userdict /Adobe_level2_AI5 26 dict dup begin
put
/packedarray where not
{
userdict begin
/packedarray
{
array astore readonly
} bind def
/setpacking /pop load def
/currentpacking false def
end
0
} if
pop
userdict /defaultpacking currentpacking put true setpacking
/initialize
{
Adobe_level2_AI5 begin
} bind def
/terminate
{
currentdict Adobe_level2_AI5 eq
{
end
} if
} bind def
mark
/setcustomcolor where not
{
/findcmykcustomcolor
{
(AI8_CMYK_CustomColor)
6 packedarray
} bind def
/findrgbcustomcolor
{
(AI8_RGB_CustomColor)
5 packedarray
} bind def
/setcustomcolor
{
exch
aload pop dup
(AI8_CMYK_CustomColor) eq
{
pop pop
4
{
4 index mul
4 1 roll
} repeat
5 -1 roll pop
setcmykcolor
}
{
dup (AI8_RGB_CustomColor) eq
{
pop pop
3
{
1 exch sub
3 index mul
1 exch sub
3 1 roll
} repeat
4 -1 roll pop
setrgbcolor
}
{
pop
4
{
4 index mul 4 1 roll
} repeat
5 -1 roll pop
setcmykcolor
} ifelse
} ifelse
}
def
} if
/setAIseparationgray
{
false setoverprint
0 setgray
/setseparationgray where{
pop setseparationgray
}{
/setcolorspace where{
pop
[/Separation (All) /DeviceCMYK {dup dup dup}] setcolorspace
1 exch sub setcolor
}{
setgray
}ifelse
}ifelse
} def
/gt38? mark {version cvr cvx exec} stopped {cleartomark true} {38 gt exch pop} ifelse def
userdict /deviceDPI 72 0 matrix defaultmatrix dtransform dup mul exch dup mul add sqrt put
userdict /level2?
systemdict /languagelevel known dup
{
pop systemdict /languagelevel get 2 ge
} if
put
/level2ScreenFreq
{
begin
60
HalftoneType 1 eq
{
pop Frequency
} if
HalftoneType 2 eq
{
pop GrayFrequency
} if
HalftoneType 5 eq
{
pop Default level2ScreenFreq
} if
end
} bind def
userdict /currentScreenFreq
level2? {currenthalftone level2ScreenFreq} {currentscreen pop pop} ifelse put
level2? not
{
/setcmykcolor where not
{
/setcmykcolor
{
exch .11 mul add exch .59 mul add exch .3 mul add
1 exch sub setgray
} def
} if
/currentcmykcolor where not
{
/currentcmykcolor
{
0 0 0 1 currentgray sub
} def
} if
/setoverprint where not
{
/setoverprint /pop load def
} if
/selectfont where not
{
/selectfont
{
exch findfont exch
dup type /arraytype eq
{
makefont
}
{
scalefont
} ifelse
setfont
} bind def
} if
/cshow where not
{
/cshow
{
[
0 0 5 -1 roll aload pop
] cvx bind forall
} bind def
} if
} if
cleartomark
/anyColor?
{
add add add 0 ne
} bind def
/testColor
{
gsave
setcmykcolor currentcmykcolor
grestore
} bind def
/testCMYKColorThrough
{
testColor anyColor?
} bind def
userdict /composite?
1 0 0 0 testCMYKColorThrough
0 1 0 0 testCMYKColorThrough
0 0 1 0 testCMYKColorThrough
0 0 0 1 testCMYKColorThrough
and and and
put
composite? not
{
userdict begin
gsave
/cyan? 1 0 0 0 testCMYKColorThrough def
/magenta? 0 1 0 0 testCMYKColorThrough def
/yellow? 0 0 1 0 testCMYKColorThrough def
/black? 0 0 0 1 testCMYKColorThrough def
grestore
/isCMYKSep? cyan? magenta? yellow? black? or or or def
/customColor? isCMYKSep? not def
end
} if
end defaultpacking setpacking
%%EndResource
%%BeginResource: procset AGM_Gradient_Sep 1.0 0
%%Title: (AGM Gradient Procset)
%%Version: 1.0 0
%%CreationDate: (4/26/96) ()
%%Copyright: ((C) 1987-1996 Adobe Systems Incorporated All Rights Reserved)
userdict /defaultpacking currentpacking put true setpacking
userdict /AGM_Gradient_Sep 5 dict dup begin put
/AGM_Gradient_Sep_private 100 dict def
/initialize{
AGM_Gradient_Sep begin
AGM_Gradient_Sep_private begin
_compositeJob{
initializeSinglePassSeps
}{
initializeMultiPassSeps
}ifelse
initializeSeps
AGM_Gradient_private begin
/_fillSD newSpotDict def
/_rampSD newSpotDict def
/_nCustomColorSD nd
end
AGM_Gradient_Sep_private
{
dup xcheck 1 index type /arraytype eq and
{
bind
}if
pop pop
}forall
AGM_Gradient_Sep
{
dup xcheck 1 index type /arraytype eq and
{
bind
}if
pop pop
}forall
end
currentdict readonly pop
end
}def
/terminate{
currentdict AGM_Gradient_Sep eq{
end
}if
}def
AGM_Gradient_Sep_private begin
/initializeSeps{
/currentoverprint { _of } def
_noImage not _level2PS not and{
/linealFill{
currentoverprint{
0 0 1 1 rectfill
}{
mySave
8 setImageParms
_color{
_nCustomColorSD begin
cyan magenta yellow black
_spotColor{
spot1/tintImage spot1/tintValue get 1 exch sub makeByte8 put
spot2/tintImage spot2/tintValue get 1 exch sub makeByte8 put
}if
end
4{
makeByte8 4 1 roll
}repeat
true 4 _nCustomColorSD ncolorimage
}{
_nCustomColorSD/black get 1 exch sub makeByte8
_nCustomColorSD bwImage
}ifelse
myRestore
}ifelse
}def
}if
/_whiteBytes 1 makeByte8 pt
/knockOut{
_noImage _level2PS or currentoverprint or{
gsave
false setoverprint
1 setgray
0 0 1 1 rectfill
grestore
}{
8 setImageParms _whiteBytes /_image load 5 execImage
}ifelse
}def
/newSpotDict{
11 dict dup begin
/nSpots 2 def
/spot1 7 dict def
/spot2 7 dict def
end
}def
/initSpotData
{
begin
/name nd
/tintImage nd
/tintValue nd
/spot_C nd
/spot_M nd
/spot_Y nd
/spot_K nd
end
}def
/initSpotDict{
begin
/cyanInk nd
/magentaInk nd
/yellowInk nd
/blackInk nd
/cyan nd
/magenta nd
/yellow nd
/black nd
spot1 initSpotData
spot2 initSpotData
end
}def
/copySpotDict{
/_dst xp
begin
cyanInk magentaInk yellowInk blackInk
cyan magenta yellow black
spot1 spot2
end
_dst begin
/spot1 spot1 maxlength dict def
/spot2 spot2 maxlength dict def
spot2 copy pop
spot1 copy pop
/black xd
/yellow xd
/magenta xd
/cyan xd
/blackInk xd
/yellowInk xd
/magentaInk xd
/cyanInk xd
end
}def
/setCustomColor
{
1 index /Black eq{
6 1 roll 5 npop
1 exch sub
setgray
}{
6 1 roll _ccAry1 astore exch
dup null eq{
pop 0
}if
setcustomcolor
}ifelse
}def
/setCStop{
/_colorStyle exch pt
_colorStyle 0 eq{
0 0 0
4 -1 roll
1 exch sub
_spotColor{
/_colorStyle 3 pt
/Black
1 index
1 exch sub
}if
}if
_colorStyle 2 eq{
3 npop
}if
_rampSD _fillSD copySpotDict
_colorStyle 4 eq{
pop
9 2 roll 3 npop 6 -2 roll
} if
_colorStyle 3 eq _colorStyle 4 eq or{
_fillSD begin
/_spot1 spot1 pt
/_spot2 spot2 pt
end
exch dup _spot1/name get eq{
_spot1 _spot2
}{
_spot2 _spot1
}ifelse
begin
begin
/name xd
1 exch sub /tintValue xd
4{
tintValue mul 4 1 roll
}repeat
_spotColor not{
/tintValue null def
}if
end
/tintValue 0 def
end
}if
_fillSD nsetcustomcolor
}def
/renderCMYK{
spot1/name get null eq
spot2/name get null eq and
dup not{
pop
spot1 spotConverted
}if
dup not{
pop
spot2 spotConverted
}if
}def
/currentInk{
true
_inRipSep{
currentcolorspace 0 get
dup /DeviceGray eq
1 index /DeviceCMYK eq or{
pop
currentcmykcolor add add add 0 eq{
pop false
}if
}{
/Separation eq{
currentcolor 0 eq{
pop false
}if
}if
}ifelse
}{
currentgray 1 eq{
pop false
}if
}ifelse
}def
/currentInkN{
_nCustomColorSD begin
/_spot1 spot1 pt
/_spot2 spot2 pt
renderCMYK
end
{
currentInk
}{
gsave
_spot1 begin
name null ne{
spot_C spot_M spot_Y spot_K name tintValue setCustomColor
currentInk
}{
false
}ifelse
end
_spot2 begin
name null ne{
spot_C spot_M spot_Y spot_K name tintValue setCustomColor
currentInk
}{
false
}ifelse
end
grestore
or
} ifelse
}def
/fill_ /fill load def
/fillOvp{
currentoverprint{
_inRipSep{
currentcolorspace 0 get
dup /DeviceGray eq
1 index /DeviceCMYK eq or{
pop
currentcmykcolor add add add 0 eq{
newpath
}if
}{
/Separation eq{
currentcolor 0 eq{
newpath
}if
}if
}ifelse
}{
currentgray 1 eq{
newpath
}if
}ifelse
}if
fill_
}def
/fill{
_nCustomColorSD begin
/_spot1 spot1 pt
/_spot2 spot2 pt
renderCMYK
end
{
fillOvp
}{
_spot1 begin
gsave
name null ne{
spot_C spot_M spot_Y spot_K name tintValue setCustomColor
}{
1 setgray
}ifelse
fillOvp
grestore
end
_spot2 begin
name null ne{
gsave
true setoverprint
spot_C spot_M spot_Y spot_K name tintValue setCustomColor
fillOvp
grestore
}if
end
newpath
}ifelse
}def
/expandSpot{
_spotColor{
/_len xp
_rampSD begin
spot1 begin
tintImage null ne{
tintImage _len expandOne /tintImage xd
}if
end
spot2 begin
tintImage null ne{
tintImage _len expandOne /tintImage xd
}if
end
end
}{
pop
}ifelse
}def
/rampImage{
currentoverprint{
rectImage
}{
_enabledSmoothShade{
fillRamp
}{
_color{
_rampSD begin
/cyanInk _cyanData 0 ne def
/magentaInk _magentaData 0 ne def
/yellowInk _yellowData 0 ne def
/blackInk _blackData 0 ne def
end
_nSamples setImageParms
_nSamples expandSpot
_cyanData _magentaData _yellowData _blackData _nSamples 4 expandColor
true 4 _rampSD ncolorimage
}{
_rampSD begin
/cyanInk false def
/magentaInk false def
/yellowInk false def
/blackInk true def
end
_nSamples setImageParms
_blackData _rampSD bwImage
}ifelse
}ifelse
}ifelse
}def
/nsetcustomcolor where{
pop
}{
/nsetcustomcolor
{
/_nCustomColorSD xp
_nCustomColorSD begin
4 copy
/black xd
/yellow xd
/magenta xd
/cyan xd
4 copy
0 ne /blackInk xd
0 ne /yellowInk xd
0 ne /magentaInk xd
0 ne /cyanInk xd
end
setcmykcolor
}def
}ifelse
/nsetcustomcolorend where{
pop
}{
/nsetcustomcolorend
{
/_nCustomColorSD null pt
}def
}ifelse
}def
/initializeSinglePassSeps{
/_decodeNorm [0 1] pt
/_decodeInvert [1 0] pt
/spotConverted
{
begin
name null eq{
false
}{
tintValue null eq tintImage null eq and{
true
}{
_inDistiller{
false
}{
false
currentpagedevice/SeparationColorNames get{name eq or}forall
not
}ifelse
}ifelse
}ifelse
end
}def
/dictImage
{
20 dict dup begin
/Dict xd
/Decode xd
/DataSource xd
/ImageMatrix xd
/BitsPerComponent xd
/Height xd
/Width xd
/ImageType 1 def
Dict
end
/_image load 1 execImage
}def
/bwImage{
begin
gsave
currentoverprint{
blackInk{
[/Separation /Black /DeviceGray{}] setcolorspace
_decodeInvert dictImage
}{
5 npop
}ifelse
}{
/DeviceGray setcolorspace
_decodeNorm dictImage
}ifelse
grestore
end
}def
/ncolorimage where{
pop
}{
/ncolorimage{
begin
renderCMYK{
cyanInk
magentaInk and
yellowInk and
blackInk and
not
currentoverprint
and{
pop pop
gsave
cyanInk{
8 copy
[/Separation /Cyan /DeviceGray{}] setcolorspace
3 npop
_decodeNorm dictImage
}if
magentaInk{
8 copy
[/Separation /Magenta /DeviceGray{}] setcolorspace
4 -1 roll
3 npop
_decodeNorm dictImage
}if
yellowInk{
8 copy
[/Separation /Yellow /DeviceGray{}] setcolorspace
4 -2 roll
3 npop
_decodeNorm dictImage
}if
blackInk{
4 -3 roll
[/Separation /Black /DeviceGray{}] setcolorspace
3 npop
_decodeNorm dictImage
}{
8 npop
}ifelse
grestore
}{
/_colorimage load 10 execImage
}ifelse
}{
6 npop
gsave
spot1 begin
name null ne tintImage null ne and{
[/Separation name /DeviceGray{}] setcolorspace
4 copy
tintImage
name /Black eq{
_decodeNorm
}{
_decodeInvert
}ifelse
dictImage
}{
1 setgray fill
}ifelse
end
spot2 begin
true setoverprint
name null ne tintImage null ne and{
[/Separation name /DeviceGray{}] setcolorspace
tintImage
name /Black eq{
_decodeNorm
}{
_decodeInvert
}ifelse
dictImage
}{
4 npop
1 setgray fill
}ifelse
end
grestore
}ifelse
end
}def
}ifelse
/getRampColorSpace{
/_renderCMYK _rampSD begin renderCMYK end pt
_renderCMYK not{
_rampSD begin
[/DeviceN
[
spot1 begin
name null ne tintImage null ne and{
name
}if
end
spot2 begin
name null ne tintImage null ne and{
name
}if
end
]
_inDistiller {
/DeviceCMYK [
spot1 begin
name null ne tintImage null ne and{
spot_C spot_M spot_Y spot_K 1
}{
0 0 0 0 0
}ifelse
end
spot2 begin
name null ne tintImage null ne and{
spot_C spot_M spot_Y spot_K 2
}{
0 0 0 0 0
}ifelse
end
5 1 roll 6 -2 roll add
dup 1 eq {
pop
8 /index cvx 1 /exch cvx /sub cvx
9 1 /roll cvx
}{
2 eq {
8 /index cvx 1 /exch cvx /sub cvx
10 1 /roll cvx
}if
}ifelse
4 1 /roll cvx 5 -2 /roll cvx
8 /index cvx /mul cvx /exch cvx 9 /index cvx /mul cvx /add cvx 7 1 /roll cvx
3 1 /roll cvx 4 -2 /roll cvx
7 /index cvx /mul cvx /exch cvx 8 /index cvx /mul cvx /add cvx 6 1 /roll cvx
2 1 /roll cvx 3 -2 /roll cvx
6 /index cvx /mul cvx /exch cvx 7 /index cvx /mul cvx /add cvx 5 1 /roll cvx
5 /index cvx /mul cvx /exch cvx 6 /index cvx /mul cvx /add cvx 4 1 /roll cvx
6 -2 /roll cvx /pop cvx /pop cvx
] cvx bind
}{
/DeviceCMYK {}
}ifelse
] setcolorspace
end
/_nColorSpace currentcolorspace pt
}if
_nSamples 1 gt{
/_ndx 0 pt
[blendColor] cvx exec
}if
_renderCMYK{
/_C0 [currentcolor] pt
/_C0_Space currentcolorspace pt
}{
/_C0 [
_nCustomColorSD begin
spot1 begin
name null ne{
tintValue
}if
end
spot2 begin
name null ne{
tintValue
}if
end
end
] pt
/_C0_Space _nColorSpace pt
}ifelse
_nSamples 1 gt{
/_ndx _nSamples 1 sub pt
[blendColor] cvx exec
}if
_renderCMYK{
/_C1 [currentcolor] pt
/_C1_Space currentcolorspace pt
}{
/_C1 [
_nCustomColorSD begin
spot1 begin
name null ne{
tintValue
}if
end
spot2 begin
name null ne{
tintValue
}if
end
end
] pt
/_C1_Space _nColorSpace pt
}ifelse
/_rampColorSpace _C0_Space pt
_spotColor{
nsetcustomcolorend
}if
}def
}def
/initializeMultiPassSeps{
/invertXfer{
[
{
1 exch sub
}/exec load systemdict /currenttransfer get exec /exec load
] cvx systemdict /settransfer get exec
}def
/ccThrough{
gsave
1 setCustomColor
currentcmykcolor
grestore
add add add 0 ne
}def
/spotConverted
{
begin
_isCMYKSep not{
false
}{
name null eq{
false
}{
tintValue null eq tintImage null eq and{
true
}{
spot_C spot_M spot_Y spot_K name ccThrough
}ifelse
}ifelse
}ifelse
end
}def
/spotChannel
{
_isCMYKSep{
pop false
}{
/_spotDict xp
_spotDict/name get null eq{
false
}{
_spotDict/spot_C get
_spotDict/spot_M get
_spotDict/spot_Y get
_spotDict/spot_K get
_spotDict/name get
ccThrough
}ifelse
}ifelse
}def
/getChannelData
{
_isCMYKSep dup{
pop renderCMYK
}if
{
_blackPlate{
4 1 roll 3 npop blackInk
}{
_yellowPlate{
4 2 roll 3 npop yellowInk
}{
_magentaPlate{
4 3 roll 3 npop magentaInk
}{
3 npop cyanInk
}ifelse
}ifelse
}ifelse
{
true /nonZeroData
}{
true /zeroData
}ifelse
}{
4 npop
spot1/name get null ne
spot1 spotChannel and{
spot1/tintImage get dup null ne{
false /nonZeroData
}{
pop false /noData
}ifelse
}{
spot2/name get null ne
spot2 spotChannel and{
spot2/tintImage get dup null ne{
false /nonZeroData
}{
pop false /noData
}ifelse
}{
false /noData
}ifelse
}ifelse
}ifelse
}def
/renderChannelData
{
/_tmp xp
_tmp /nonZeroData ne currentoverprint and{
pop
_tmp /zeroData eq{pop}if
4 npop
}{