forked from berndporr/digital_signal_processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquant_err.eps
More file actions
1201 lines (1164 loc) · 53.8 KB
/
quant_err.eps
File metadata and controls
1201 lines (1164 loc) · 53.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0 EPSF-3.0
%%BoundingBox: 69 186 610 489
%%LanguageLevel: 1
%%Creator: CorelDRAW
%%Title: quant_err.eps
%%CreationDate: Fri Jun 19 12:29:37 2009
%%DocumentProcessColors: Black
%%DocumentSuppliedResources: (atend)
%%EndComments
%%BeginProlog
/AutoFlatness false def
/AutoSteps 0 def
/CMYKMarks true def
/UseLevel 1 def
%Build: CorelDRAW Version 13.0.0.739
%Color profile: Generic offset separations profile
/CorelIsEPS true def
%%BeginResource: procset wCorel3Dict 3.0 0
/wCorel3Dict 300 dict def wCorel3Dict begin
% Copyright (c)1992-2005 Corel Corporation
% All rights reserved. v13 r0.0
/bd{bind def}bind def/ld{load def}bd/xd{exch def}bd/_ null def/rp{{pop}repeat}
bd/@cp/closepath ld/@gs/gsave ld/@gr/grestore ld/@np/newpath ld/Tl/translate ld
/$sv 0 def/@sv{/$sv save def}bd/@rs{$sv restore}bd/spg/showpage ld/showpage{}
bd currentscreen/@dsp xd/$dsp/@dsp def/$dsa xd/$dsf xd/$sdf false def/$SDF
false def/$Scra 0 def/SetScr/setscreen ld/@ss{2 index 0 eq{$dsf 3 1 roll 4 -1
roll pop}if exch $Scra add exch load SetScr}bd/SepMode_5 where{pop}{/SepMode_5
0 def}ifelse/CorelIsSeps where{pop}{/CorelIsSeps false def}ifelse
/CorelIsInRIPSeps where{pop}{/CorelIsInRIPSeps false def}ifelse/CorelIsEPS
where{pop}{/CorelIsEPS false def}ifelse/CurrentInkName_5 where{pop}
{/CurrentInkName_5(Composite)def}ifelse/$ink_5 where{pop}{/$ink_5 -1 def}
ifelse/fill_color 6 array def/num_fill_inks 1 def/$o 0 def/$fil 0 def
/outl_color 6 array def/num_outl_inks 1 def/$O 0 def/$PF false def/$bkg false
def/$op false def matrix currentmatrix/$ctm xd/$ptm matrix def/$ttm matrix def
/$stm matrix def/$ffpnt true def/CorelDrawReencodeVect[16#0/grave 16#5/breve
16#6/dotaccent 16#8/ring 16#A/hungarumlaut 16#B/ogonek 16#C/caron 16#D/dotlessi
16#27/quotesingle 16#60/grave 16#7C/bar 16#80/Euro
16#82/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl
16#88/circumflex/perthousand/Scaron/guilsinglleft/OE
16#91/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash
16#98/tilde/trademark/scaron/guilsinglright/oe 16#9F/Ydieresis
16#A1/exclamdown/cent/sterling/currency/yen/brokenbar/section
16#a8/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/minus/registered/macron
16#b0/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
16#b8/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
16#c0/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
16#c8/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
16#d0/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
16#d8/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
16#e0/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
16#e8/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
16#f0/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
16#f8/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
/get_ps_level/languagelevel where{pop systemdict/languagelevel get exec}{1
}ifelse def/level2 get_ps_level 2 ge def/level3 get_ps_level 3 ge def
/is_distilling{/product where{pop systemdict/setdistillerparams known product
(Adobe PostScript Parser)ne and}{false}ifelse}bd/is_rip_separation{
is_distilling{false}{level2{currentpagedevice/Separations 2 copy known{get}{
pop pop false}ifelse}{false}ifelse}ifelse}bd/is_current_sep_color{
is_separation{gsave false setoverprint 1 1 1 1 5 -1 roll findcmykcustomcolor 1
setcustomcolor currentgray 0 eq grestore}{pop false}ifelse}bd
/get_sep_color_index{dup length 1 sub 0 1 3 -1 roll{dup 3 -1 roll dup 3 -1 roll
get is_current_sep_color{exit}{exch pop}ifelse}for pop -1}bd/is_separation{
/LumSepsDict where{pop false}{/AldusSepsDict where{pop false}{
is_rip_separation{true}{1 0 0 0 gsave setcmykcolor currentcmykcolor grestore
add add add 0 ne 0 1 0 0 gsave setcmykcolor currentcmykcolor grestore add add
add 0 ne 0 0 1 0 gsave setcmykcolor currentcmykcolor grestore add add add 0 ne
0 0 0 1 gsave setcmykcolor currentcmykcolor grestore add add add 0 ne and and
and not}ifelse}ifelse}ifelse}bind def/is_composite{is_separation not
is_distilling or}bd/is_sim_devicen{level2 level3 not and{is_distilling
is_rip_separation or}{false}ifelse}bd/@PL{/LV where{pop LV 2 ge level2 not and
{@np/Courier findfont 12 scalefont setfont 72 144 m
(The PostScript level set in the Corel application is higher than)show 72 132 m
(the PostScript level of this device. Change the PS Level in the Corel)show 72
120 m(application to Level 1 by selecting the PostScript tab in the print)show
72 108 m(dialog, and selecting Level 1 from the Compatibility drop down list.)
show flush spg quit}if}if}bd/@BeginSysCorelDict{systemdict/Corel30Dict known
{systemdict/Corel30Dict get exec}if systemdict/CorelLexDict known{1 systemdict
/CorelLexDict get exec}if}bd/@EndSysCorelDict{systemdict/Corel30Dict known
{end}if/EndCorelLexDict where{pop EndCorelLexDict}if}bd AutoFlatness{/@ifl{dup
currentflat exch sub 10 gt{
([Error: PathTooComplex; OffendingCommand: AnyPaintingOperator]\n)print flush
@np exit}{currentflat 2 add setflat}ifelse}bd/@fill/fill ld/fill{currentflat{
{@fill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@eofill/eofill ld/eofill
{currentflat{{@eofill}stopped{@ifl}{exit}ifelse}bind loop setflat}bd/@clip
/clip ld/clip{currentflat{{@clip}stopped{@ifl}{exit}ifelse}bind loop setflat}
bd/@eoclip/eoclip ld/eoclip{currentflat{{@eoclip}stopped{@ifl}{exit}ifelse}
bind loop setflat}bd/@stroke/stroke ld/stroke{currentflat{{@stroke}stopped
{@ifl}{exit}ifelse}bind loop setflat}bd}if level2{/@ssa{true setstrokeadjust}
bd}{/@ssa{}bd}ifelse/d/setdash ld/j/setlinejoin ld/J/setlinecap ld/M
/setmiterlimit ld/w/setlinewidth ld/O{/$o xd}bd/R{/$O xd}bd/W/eoclip ld/c
/curveto ld/C/c ld/l/lineto ld/L/l ld/rl/rlineto ld/m/moveto ld/n/newpath ld/N
/newpath ld/P{11 rp}bd/u{}bd/U{}bd/A{pop}bd/q/@gs ld/Q/@gr ld/&{}bd/@j{@sv @np}
bd/@J{@rs}bd/g{1 exch sub 0 0 0 1 null 1 set_fill_color/$fil 0 def}bd/G{1 sub
neg 0 0 0 1 null 1 set_outline_color}bd/set_fill_color{/fill_color exch def
/num_fill_inks fill_color length 6 idiv def/bFillDeviceN num_fill_inks 1 gt def
/$fil 0 def}bd/set_outline_color{/outl_color exch def/num_outl_inks outl_color
length 6 idiv def/bOutlDeviceN num_outl_inks 1 gt def}bd
/get_devicen_color_names{dup length 6 idiv dup 5 mul exch getinterval}bd
/create_colorarray_from_devicen_params{/ink_names_temp exch def
/tint_params_temp exch def/ink_values_temp exch def[ink_values_temp aload pop
tint_params_temp aload pop ink_names_temp aload pop]}bd
/get_devicen_color_specs{dup length 6 idiv dup 4 mul getinterval}bd
/get_devicen_color{dup length 6 idiv 0 exch getinterval}bd/mult_devicen_color{
/colorarray exch def/mult_vals exch def 0 1 mult_vals length 1 sub{colorarray
exch dup mult_vals exch get exch dup colorarray exch get 3 -1 roll mul put}for
colorarray}bd/combine_devicen_colors{/colorarray2 exch def/colorarray1 exch def
/num_inks1 colorarray1 length 6 idiv def/num_inks2 colorarray2 length 6 idiv
def/num3 0 def/colorarray3[num_inks1 num_inks2 add 6 mul{0}repeat]def 0 1
num_inks1 1 sub{colorarray1 exch get colorarray3 num3 3 -1 roll put/num3 num3 1
add def}for 0 1 num_inks2 1 sub{colorarray2 exch get colorarray3 num3 3 -1 roll
put/num3 num3 1 add def}for colorarray1 num_inks1 dup 4 mul getinterval
colorarray3 num3 3 -1 roll putinterval/num3 num3 num_inks1 4 mul add def
colorarray2 num_inks2 dup 4 mul getinterval colorarray3 num3 3 -1 roll
putinterval/num3 num3 num_inks2 4 mul add def colorarray1 num_inks1 dup 5 mul
exch getinterval colorarray3 num3 3 -1 roll putinterval/num3 num3 num_inks1 add
def colorarray2 num_inks2 dup 5 mul exch getinterval colorarray3 num3 3 -1 roll
putinterval/num3 num3 num_inks2 add def colorarray3}bd/get_devicen_color_spec{
/colorant_index exch def/colorarray exch def/ncolorants colorarray length 6
idiv def[colorarray colorant_index get colorarray ncolorants colorant_index 4
mul add 4 getinterval aload pop colorarray ncolorants 5 mul colorant_index add
get]}bd/set_devicen_color{level3{/colorarray exch def/numcolorants colorarray
length 6 idiv def colorarray get_devicen_color_specs/tint_params exch def[
/DeviceN colorarray get_devicen_color_names/DeviceCMYK{tint_params
CorelTintTransformFunction}]setcolorspace colorarray get_devicen_color aload
pop setcolor}{/DeviceCMYK setcolorspace devicen_to_cmyk aload pop pop @tc_5
setprocesscolor_5}ifelse}bd/sf{/bmp_fill_fg_color xd}bd/i{dup 0 ne{setflat}
{pop}ifelse}bd/v{4 -2 roll 2 copy 6 -2 roll c}bd/V/v ld/y{2 copy c}bd/Y/y ld
/@w{matrix rotate/$ptm xd matrix scale $ptm dup concatmatrix/$ptm xd 1 eq{$ptm
exch dup concatmatrix/$ptm xd}if 1 w}bd/@g{1 eq dup/$sdf xd{/$scp xd/$sca xd
/$scf xd}if}bd/@G{1 eq dup/$SDF xd{/$SCP xd/$SCA xd/$SCF xd}if}bd/@D{2 index 0
eq{$dsf 3 1 roll 4 -1 roll pop}if 3 copy exch $Scra add exch load SetScr/$dsp
xd/$dsa xd/$dsf xd}bd/$ngx{$SDF{$SCF SepMode_5 0 eq{$SCA}{$dsa}ifelse $SCP @ss
}if}bd/@MN{2 copy le{pop}{exch pop}ifelse}bd/@MX{2 copy ge{pop}{exch pop}
ifelse}bd/InRange{3 -1 roll @MN @MX}bd/@sqr{dup 0 rl dup 0 exch rl neg 0 rl @cp
}bd/currentscale{1 0 dtransform matrix defaultmatrix idtransform dup mul exch
dup mul add sqrt 0 1 dtransform matrix defaultmatrix idtransform dup mul exch
dup mul add sqrt}bd/@unscale{}bd/wDstChck{2 1 roll dup 3 -1 roll eq{1 add}if}
bd/@dot{dup mul exch dup mul add 1 exch sub}bd/@lin{exch pop abs 1 exch sub}bd
/cmyk2rgb{3{dup 5 -1 roll add 1 exch sub dup 0 lt{pop 0}if exch}repeat pop}bd
/rgb2cmyk{3{1 exch sub 3 1 roll}repeat 3 copy @MN @MN 3{dup 5 -1 roll sub neg
exch}repeat}bd/rgb2g{2 index .299 mul 2 index .587 mul add 1 index .114 mul add
4 1 roll pop pop pop}bd/devicen_to_cmyk{/convertcolor exch def convertcolor
get_devicen_color aload pop convertcolor get_devicen_color_specs
CorelTintTransformFunction}bd/WaldoColor_5 where{pop}{/SetRgb/setrgbcolor ld
/GetRgb/currentrgbcolor ld/SetGry/setgray ld/GetGry/currentgray ld/SetRgb2
systemdict/setrgbcolor get def/GetRgb2 systemdict/currentrgbcolor get def
/SetHsb systemdict/sethsbcolor get def/GetHsb systemdict/currenthsbcolor get
def/rgb2hsb{SetRgb2 GetHsb}bd/hsb2rgb{3 -1 roll dup floor sub 3 1 roll SetHsb
GetRgb2}bd/setcmykcolor where{pop/LumSepsDict where{pop/SetCmyk_5{LumSepsDict
/setcmykcolor get exec}def}{/AldusSepsDict where{pop/SetCmyk_5{AldusSepsDict
/setcmykcolor get exec}def}{/SetCmyk_5/setcmykcolor ld}ifelse}ifelse}{
/SetCmyk_5{cmyk2rgb SetRgb}bd}ifelse/currentcmykcolor where{pop/GetCmyk
/currentcmykcolor ld}{/GetCmyk{GetRgb rgb2cmyk}bd}ifelse/setoverprint where
{pop}{/setoverprint{/$op xd}bd}ifelse/currentoverprint where{pop}{
/currentoverprint{$op}bd}ifelse/@tc_5{5 -1 roll dup 1 ge{pop}{4{dup 6 -1 roll
mul exch}repeat pop}ifelse}bd/@trp{exch pop 5 1 roll @tc_5}bd
/setprocesscolor_5{SepMode_5 0 eq{SetCmyk_5}{SepsColor not{4 1 roll pop pop pop
1 exch sub SetGry}{SetCmyk_5}ifelse}ifelse}bd/findcmykcustomcolor where{pop}{
/findcmykcustomcolor{5 array astore}bd}ifelse/Corelsetcustomcolor_exists false
def/setcustomcolor where{pop/Corelsetcustomcolor_exists true def}if CorelIsSeps
true eq CorelIsInRIPSeps false eq and{/Corelsetcustomcolor_exists false def}if
Corelsetcustomcolor_exists false eq{/setcustomcolor{exch aload pop SepMode_5 0
eq{pop @tc_5 setprocesscolor_5}{CurrentInkName_5 eq{4 index}{0}ifelse 6 1 roll
5 rp 1 sub neg SetGry}ifelse}bd}if/@scc_5{dup type/booleantype eq{dup
currentoverprint ne{setoverprint}{pop}ifelse}{1 eq setoverprint}ifelse dup _ eq
{pop setprocesscolor_5 pop}{dup(CorelRegistrationColor)eq{5 rp 1 exch sub
setregcolor}{findcmykcustomcolor exch setcustomcolor}ifelse}ifelse SepMode_5 0
eq{true}{GetGry 1 eq currentoverprint and not}ifelse}bd/colorimage where{pop
/ColorImage{colorimage}def}{/ColorImage{/ncolors xd/$multi xd $multi true eq{
ncolors 3 eq{/daqB xd/daqG xd/daqR xd pop pop exch pop abs{daqR pop daqG pop
daqB pop}repeat}{/daqK xd/daqY xd/daqM xd/daqC xd pop pop exch pop abs{daqC pop
daqM pop daqY pop daqK pop}repeat}ifelse}{/dataaq xd{dataaq ncolors dup 3 eq{
/$dat xd 0 1 $dat length 3 div 1 sub{dup 3 mul $dat 1 index get 255 div $dat 2
index 1 add get 255 div $dat 3 index 2 add get 255 div rgb2g 255 mul cvi exch
pop $dat 3 1 roll put}for $dat 0 $dat length 3 idiv getinterval pop}{4 eq{
/$dat xd 0 1 $dat length 4 div 1 sub{dup 4 mul $dat 1 index get 255 div $dat 2
index 1 add get 255 div $dat 3 index 2 add get 255 div $dat 4 index 3 add get
255 div cmyk2rgb rgb2g 255 mul cvi exch pop $dat 3 1 roll put}for $dat 0 $dat
length ncolors idiv getinterval}if}ifelse}image}ifelse}bd}ifelse/setcmykcolor{
1 5 1 roll null 6 array astore currentoverprint set_current_color/$ffpnt xd}bd
/currentcmykcolor{GetCmyk}bd/sethsbcolor{hsb2rgb setrgbcolor}bd
/currenthsbcolor{currentrgbcolor rgb2hsb}bd/setgray{dup dup setrgbcolor}bd
/currentgray{currentrgbcolor rgb2g}bd/InsideDCS false def/IMAGE/image ld/image
{InsideDCS{IMAGE}{/EPSDict where{pop SepMode_5 0 eq{IMAGE}{dup type/dicttype eq
{dup/ImageType get 1 ne{IMAGE}{dup dup/BitsPerComponent get 8 eq exch
/BitsPerComponent get 1 eq or currentcolorspace 0 get/DeviceGray eq and{
CurrentInkName_5(Black)eq{IMAGE}{dup/DataSource get/TCC xd/Height get abs{TCC
pop}repeat}ifelse}{IMAGE}ifelse}ifelse}{2 index 1 ne{CurrentInkName_5(Black)eq
{IMAGE}{/TCC xd pop pop exch pop abs{TCC pop}repeat}ifelse}{IMAGE}ifelse}
ifelse}ifelse}{IMAGE}ifelse}ifelse}bd}ifelse/WaldoColor_5 true def
/WaldoColor_13 where{pop}{/separate_color{SepMode_5 0 ne{[exch/colorarray_sep
exch def/ink_num -1 def colorarray_sep length 6 idiv 1 gt{colorarray_sep
get_devicen_color_names dup length 1 sub 0 1 3 -1 roll{exch dup 3 -1 roll dup 3
1 roll get CurrentInkName_5 eq{/ink_num exch def}{pop}ifelse}for pop ink_num -1
ne{colorarray_sep ink_num get_devicen_color_spec aload pop pop SepsColor not{
pop pop pop pop 1 0 0 0 5 -1 roll}if null}{0 0 0 0 0 null}ifelse}{
colorarray_sep 5 get $ink_5 4 eq{CurrentInkName_5 eq{colorarray_sep aload pop
pop SepsColor not{pop pop pop pop 0 0 0 1}if null}{0 0 0 0 0 null}ifelse}{
colorarray_sep 0 get colorarray_sep $ink_5 1 add get 3 -1 roll null eq{0 0 0 4
-1 roll SepsColor{4 $ink_5 1 add roll}if null}{pop pop 0 0 0 0 0 null}ifelse
}ifelse}ifelse]}if}bd/separate_cmyk_color{$ink_5 -1 ne{[exch aload pop 3 $ink5
sub index/colorarray_sep exch def/ink_num -1 def colorarray_sep
get_devicen_color_names dup length 1 sub 0 1 3 -1 roll{exch dup 3 -1 roll dup 3
1 roll get CurrentInkName_5 eq{/ink_num exch def}{pop}ifelse}for pop ink_num -1
ne{[colorarray_sep ink_num get_devicen_color_spec aload pop]}{[0 0 0 0 0 null]
}ifelse}if}bd/set_current_color{dup type/booleantype eq{dup currentoverprint ne
{setoverprint}{pop}ifelse}{1 eq setoverprint}ifelse/cur_color exch def
/nNumColors cur_color length 6 idiv def nNumColors 1 eq{cur_color 5 get
(CorelRegistrationColor)eq{cur_color aload pop 5 rp 1 exch sub setregcolor}{
SepMode_5 0 eq{cur_color aload pop dup null eq{pop @tc_5 setprocesscolor_5}{
findcmykcustomcolor exch setcustomcolor}ifelse}{cur_color separate_color aload
pop pop @tc_5 setprocesscolor_5}ifelse}ifelse}{SepMode_5 0 eq{is_distilling
is_rip_separation or{cur_color set_devicen_color}{cur_color devicen_to_cmyk
setprocesscolor_5}ifelse}{cur_color separate_color aload pop pop @tc_5
setprocesscolor_5}ifelse}ifelse SepMode_5 0 eq{true}{GetGry 1 eq
currentoverprint and not}ifelse}bd}ifelse/WaldoColor_13 true def/$fm 0 def
/wfill{1 $fm eq{fill}{eofill}ifelse}bd/@Pf{@sv SepMode_5 0 eq $Psc 0 ne or
$ink_5 3 eq or{0 J 0 j[]0 d fill_color $o set_current_color pop $ctm setmatrix
72 1000 div dup matrix scale dup concat dup Bburx exch Bbury exch itransform
ceiling cvi/Bbury xd ceiling cvi/Bburx xd Bbllx exch Bblly exch itransform
floor cvi/Bblly xd floor cvi/Bbllx xd $Prm aload pop $Psn load exec}{1 SetGry
wfill}ifelse @rs @np}bd/F{matrix currentmatrix $sdf{$scf $sca $scp @ss}if $fil
1 eq{CorelPtrnDoFill}{$fil 2 eq{@ff}{$fil 3 eq{@Pf}{level3{fill_color $o
set_current_color{wfill}{@np}ifelse}{/overprint_flag $o def is_distilling
is_rip_separation or{0 1 num_fill_inks 1 sub{dup 0 gt{/overprint_flag true def
}if fill_color exch get_devicen_color_spec overprint_flag set_current_color{
@gs wfill @gr}{@np exit}ifelse}for}{fill_color overprint_flag set_current_color
{@gs wfill @gr}{@np}ifelse}ifelse}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa
$dsp @ss}if setmatrix}bd/f{@cp F}bd/S{matrix currentmatrix $ctm setmatrix $SDF
{$SCF $SCA $SCP @ss}if level3{outl_color $O set_current_color{matrix
currentmatrix $ptm concat stroke setmatrix}{@np}ifelse}{/overprint_flag $O def
is_distilling is_rip_separation or{0 1 num_outl_inks 1 sub{dup 0 gt{
/overprint_flag true def}if outl_color exch get_devicen_color_spec
overprint_flag set_current_color{matrix currentmatrix $ptm concat @gs stroke
@gr setmatrix}{@np exit}ifelse}for}{outl_color overprint_flag set_current_color
{matrix currentmatrix $ptm concat @gs stroke @gr setmatrix}{@np}ifelse}ifelse
}ifelse $SDF{$dsf $dsa $dsp @ss}if setmatrix}bd/s{@cp S}bd/B{@gs F @gr S}bd/b{
@cp B}bd/_E{5 array astore exch cvlit xd}bd/@cc{currentfile $dat readhexstring
pop}bd/@sm{/$ctm $ctm currentmatrix def}bd/@E{/Bbury xd/Bburx xd/Bblly xd
/Bbllx xd}bd/@c{@cp}bd/@P{/$fil 3 def/$Psn xd/$Psc xd array astore/$Prm xd}bd
/tcc{@cc}def/@B{@gs S @gr F}bd/@b{@cp @B}bd/@sep{CurrentInkName_5(Composite)eq
{/$ink_5 -1 def}{CurrentInkName_5(Cyan)eq{/$ink_5 0 def}{CurrentInkName_5
(Magenta)eq{/$ink_5 1 def}{CurrentInkName_5(Yellow)eq{/$ink_5 2 def}{
CurrentInkName_5(Black)eq{/$ink_5 3 def}{/$ink_5 4 def}ifelse}ifelse}ifelse}
ifelse}ifelse}bd/@whi{@gs -72000 dup m -72000 72000 l 72000 dup l 72000 -72000
l @cp 1 SetGry fill @gr}bd/@neg{[{1 exch sub}/exec cvx currenttransfer/exec
cvx]cvx settransfer @whi}bd/deflevel 0 def/@sax{/deflevel deflevel 1 add def}
bd/@eax{/deflevel deflevel dup 0 gt{1 sub}if def deflevel 0 gt{/eax load}{eax}
ifelse}bd/eax{{exec}forall}bd/@rax{deflevel 0 eq{@rs @sv}if}bd systemdict
/pdfmark known not{/pdfmark/cleartomark ld}if/wclip{1 $fm eq{clip}{eoclip}
ifelse}bd level2{/setregcolor{/neg_flag exch def[/Separation/All/DeviceCMYK{
dup dup dup}]setcolorspace 1.0 neg_flag sub setcolor}bd}{/setregcolor{1 exch
sub dup dup dup setcmykcolor}bd}ifelse/CorelTintTransformFunction{
/colorantSpecArray exch def/nColorants colorantSpecArray length 4 idiv def
/inColor nColorants 1 add 1 roll nColorants array astore def/outColor 4 array
def 0 1 3{/nOutInk exch def 1 0 1 nColorants 1 sub{dup inColor exch get exch 4
mul nOutInk add colorantSpecArray exch get mul 1 exch sub mul}for 1 exch sub
outColor nOutInk 3 -1 roll put}for outColor aload pop}bind def
% Copyright (c)1992-2005 Corel Corporation
% All rights reserved. v13 r0.0
/z{exch findfont exch scalefont setfont}bd/ZB{9 dict dup begin 4 1 roll
/FontType 3 def/FontMatrix xd/FontBBox xd/Encoding 256 array def 0 1 255{
Encoding exch/.notdef put}for/CharStrings 256 dict def CharStrings/.notdef{}
put/Metrics 256 dict def Metrics/.notdef 3 -1 roll put/BuildChar{exch dup
/$char exch/Encoding get 3 index get def dup/Metrics get $char get aload pop
setcachedevice begin Encoding exch get CharStrings exch get end exec}def end
definefont pop}bd/ZBAddChar{findfont begin dup 4 1 roll dup 6 1 roll Encoding 3
1 roll put CharStrings 3 1 roll put Metrics 3 1 roll put end}bd/Z{findfont dup
maxlength 2 add dict exch dup{1 index/FID ne{3 index 3 1 roll put}{pop pop}
ifelse}forall pop dup dup/Encoding get 256 array copy dup/$fe xd/Encoding exch
put dup/Fontname 3 index put 3 -1 roll dup length 0 ne{0 exch{dup type 0 type
eq{exch pop}{$fe exch 2 index exch put 1 add}ifelse}forall pop}if dup 256 dict
dup/$met xd/Metrics exch put dup/FontMatrix get 0 get 1000 mul 1 exch div 3
index length 256 eq{0 1 255{dup $fe exch get dup/.notdef eq{pop pop}{5 index 3
-1 roll get 2 index mul $met 3 1 roll put}ifelse}for}if pop definefont pop pop
}bd/CorelIsValidCharpath{pathbbox 3 -1 roll sub abs 0.5 ge 3 1 roll sub abs 0.5
ge and}bd/@ftx{{currentpoint 3 -1 roll(0)dup 3 -1 roll 0 exch put dup @gs true
charpath $ctm setmatrix CorelIsValidCharpath{@@txt}if @gr @np stringwidth pop 3
-1 roll add exch m}forall}bd/@ft{matrix currentmatrix exch $sdf{$scf $sca $scp
@ss}if $fil 1 eq{/@@txt/@pf ld @ftx}{$fil 2 eq{/@@txt/@ff ld @ftx}{$fil 3 eq
{/@@txt/@Pf ld @ftx}{$fil 4 eq{/@@txt/CorelShfillDoFill ld @ftx}{fill_color $o
set_current_color{show}{pop}ifelse}ifelse}ifelse}ifelse}ifelse $sdf{$dsf $dsa
$dsp @ss}if setmatrix}bd/@st{matrix currentmatrix exch $SDF{$SCF $SCA $SCP @ss}
if outl_color $O set_current_color{{currentpoint 3 -1 roll(0)dup 3 -1 roll 0
exch put dup @gs true charpath $ctm setmatrix $ptm concat stroke @gr @np
stringwidth pop 3 -1 roll add exch m}forall}{pop}ifelse $SDF{$dsf $dsa $dsp
@ss}if setmatrix}bd/@te{@ft}bd/@tr{@st}bd/@ta{dup @gs @ft @gr @st}bd/@t@a{dup
@gs @st @gr @ft}bd/@tm{@sm concat}bd/e{/t{@te}def}bd/r{/t{@tr}def}bd/o{/t{pop}
def}bd/a{/t{@ta}def}bd/@a{/t{@t@a}def}bd/t{@te}def/T{@np $ctm setmatrix/$ttm
matrix def}bd/ddt{t}def/@t{/$stm $stm currentmatrix def 3 1 roll m $ttm concat
ddt $stm setmatrix}bd/@n{/$ttm exch matrix rotate def}bd/@s{}bd/@l{}bd
/_lineorientation 0 def/_bitfont null def/_bitlobyte 0 def/_bitkey null def
/_bithibyte 0 def
% Copyright (c)1992-2005 Corel Corporation
% All rights reserved. v13 r0.0
/@ii{concat 3 index 3 index m 3 index 1 index l 2 copy l 1 index 3 index l 3
index 3 index l clip pop pop pop pop}bd/@i{@sm @gs @ii 6 index 1 ne{/$frg true
def pop pop}{1 eq{bmp_fill_fg_color $O set_current_color/$frg xd}{/$frg false
def}ifelse 1 eq{@gs $ctm setmatrix F @gr}if}ifelse @np/$ury xd/$urx xd/$lly xd
/$llx xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul 8 div ceiling cvi string
def $bkg $frg or{$SDF{$SCF $SCA $SCP @ss}if $llx $lly Tl $urx $llx sub $ury
$lly sub scale $bkg{fill_color set_current_color pop}if $wid $hei abs $bts 1 eq
{$bkg}{$bts}ifelse[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]/tcc load $bts
1 eq{imagemask}{image}ifelse $SDF{$dsf $dsa $dsp @ss}if}{$hei abs{tcc pop}
repeat}ifelse @gr $ctm setmatrix}bd/@I{@sm @gs @ii @np/$ury xd/$urx xd/$lly xd
/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd $ngx $llx $lly Tl $urx $llx sub $ury
$lly sub scale $wid $hei abs $bts[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse
]/$dat $wid $bts mul $ncl mul 8 div ceiling cvi string def $msimage false eq
$ncl 1 eq or{/@cc load false $ncl ColorImage}{$wid $bts mul 8 div ceiling cvi
$ncl 3 eq{dup dup/$dat1 exch string def/$dat2 exch string def/$dat3 exch string
def/@cc1 load/@cc2 load/@cc3 load}{dup dup dup/$dat1 exch string def/$dat2 exch
string def/$dat3 exch string def/$dat4 exch string def/@cc1 load/@cc2 load
/@cc3 load/@cc4 load}ifelse true $ncl ColorImage}ifelse $SDF{$dsf $dsa $dsp
@ss}if @gr $ctm setmatrix}bd/@cc1{currentfile $dat1 readhexstring pop}bd/@cc2{
currentfile $dat2 readhexstring pop}bd/@cc3{currentfile $dat3 readhexstring pop
}bd/@cc4{currentfile $dat4 readhexstring pop}bd/$msimage false def/COMP 0 def
/MaskedImage false def/bImgDeviceN false def/nNumInksDeviceN 0 def
/sNamesDeviceN[]def/tint_params[]def level2{/@I_2{@sm @gs @ii @np/$ury xd/$urx
xd/$lly xd/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul
8 div ceiling cvi string def $ngx $ncl 1 eq{/DeviceGray}{$ncl 3 eq{/DeviceRGB}
{/DeviceCMYK}ifelse}ifelse setcolorspace $llx $lly Tl $urx $llx sub $ury $lly
sub scale 8 dict begin/ImageType 1 def/Width $wid def/Height $hei abs def
/BitsPerComponent $bts def/Decode $ncl 1 eq{[0 1]}{$ncl 3 eq{[0 1 0 1 0 1]}{[0
1 0 1 0 1 0 1]}ifelse}ifelse def/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt
{$hei}{0}ifelse]def/DataSource currentfile/ASCII85Decode filter COMP 1 eq
{/DCTDecode filter}{COMP 2 eq{/RunLengthDecode filter}{COMP 3 eq{/LZWDecode
filter}if}ifelse}ifelse def currentdict end image $SDF{$dsf $dsa $dsp @ss}if
@gr $ctm setmatrix}bd}{/@I_2{}bd}ifelse level2{/@I_2D{@sm @gs @ii @np/$ury xd
/$urx xd/$lly xd/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd $ngx/scanline $wid
$bts mul $ncl mul 8 div ceiling cvi string def/readscanline{currentfile
scanline readhexstring pop}bind def level3{[/DeviceN sNamesDeviceN/DeviceCMYK{
tint_params CorelTintTransformFunction}]setcolorspace $llx $lly Tl $urx $llx
sub $ury $lly sub scale 8 dict begin/ImageType 1 def/Width $wid def/Height $hei
abs def/BitsPerComponent $bts def/Decode[nNumInksDeviceN{0 1}repeat]def
/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}ifelse]def/DataSource{
readscanline}def currentdict end image}{/scanline_height $lly $ury sub 1 sub
$hei div def/plate_scanline $wid string def/cmyk_scanline $wid 4 mul string def
is_distilling is_rip_separation or{/bSimDeviceN true def}{/bSimDeviceN false
def}ifelse/scanline_img_dict 8 dict begin/ImageType 1 def/Width $wid def
/Height 1 def/BitsPerComponent $bts def/Decode bSimDeviceN{[0 1]}{[0 1 0 1 0 1
0 1]}ifelse def/ImageMatrix[$wid 0 0 1 neg 0 1]def/DataSource bSimDeviceN{
plate_scanline}{cmyk_scanline}ifelse def currentdict end def 0 1 $hei 1 sub{
@gs/nScanIndex exch def readscanline pop/$t_lly $ury $lly scanline_height
nScanIndex mul sub sub ceiling cvi def/$t_ury $t_lly scanline_height sub
ceiling cvi def bSimDeviceN{0 1 $ncl 1 sub{@gs/nInkIndex exch def 0 1
plate_scanline length 1 sub{dup $ncl mul nInkIndex add scanline exch get
plate_scanline 3 1 roll put}for[0 1 $ncl 1 sub{nInkIndex eq{1.0}{0.0}ifelse
}for]/sepTintTransformParams exch def[/Separation sNamesDeviceN nInkIndex get
/DeviceCMYK{sepTintTransformParams aload pop tint_params
CorelTintTransformFunction @tc_5}]setcolorspace $llx $t_lly Tl $urx $llx sub
$t_ury $t_lly sub scale nInkIndex 0 eq currentoverprint not and{false
setoverprint}{true setoverprint}ifelse scanline_img_dict image @gr}for}{0 1
$wid 1 sub{dup $ncl mul scanline exch $ncl getinterval 0 1 $ncl 1 sub{2 copy
get 255 div 3 1 roll pop}for pop tint_params CorelTintTransformFunction 5 -1
roll cmyk_scanline exch 0 1 3{3 1 roll 2 copy 5 -1 roll dup 8 exch sub index
255 mul cvi 3 1 roll exch 4 mul add exch put}for 6 rp}for/DeviceCMYK
setcolorspace $llx $t_lly Tl $urx $llx sub $t_ury $t_lly sub scale
scanline_img_dict image}ifelse @gr}for}ifelse $SDF{$dsf $dsa $dsp @ss}if @gr
$ctm setmatrix}bd}{/@I_2D{}bd}ifelse/@I_3{@sm @gs @ii @np/$ury xd/$urx xd/$lly
xd/$llx xd/$ncl xd/$bts xd/$hei xd/$wid xd/$dat $wid $bts mul $ncl mul 8 div
ceiling cvi string def $ngx bImgDeviceN{[/DeviceN sNamesDeviceN/DeviceCMYK{
tint_params CorelTintTransformFunction}]}{$ncl 1 eq{/DeviceGray}{$ncl 3 eq
{/DeviceRGB}{/DeviceCMYK}ifelse}ifelse}ifelse setcolorspace $llx $lly Tl $urx
$llx sub $ury $lly sub scale/ImageDataDict 8 dict def ImageDataDict begin
/ImageType 1 def/Width $wid def/Height $hei abs def/BitsPerComponent $bts def
/Decode[$ncl{0 1}repeat]def/ImageMatrix[$wid 0 0 $hei neg 0 $hei 0 gt{$hei}{0}
ifelse]def/DataSource currentfile/ASCII85Decode filter COMP 1 eq{/DCTDecode
filter}{COMP 2 eq{/RunLengthDecode filter}{COMP 3 eq{/LZWDecode filter}if}
ifelse}ifelse def end/MaskedImageDict 7 dict def MaskedImageDict begin
/ImageType 3 def/InterleaveType 3 def/MaskDict ImageMaskDict def/DataDict
ImageDataDict def end MaskedImageDict image $SDF{$dsf $dsa $dsp @ss}if @gr $ctm
setmatrix}bd/@SetMask{/$mbts xd/$mhei xd/$mwid xd/ImageMaskDict 8 dict def
ImageMaskDict begin/ImageType 1 def/Width $mwid def/Height $mhei abs def
/BitsPerComponent $mbts def/DataSource maskstream def/ImageMatrix[$mwid 0 0
$mhei neg 0 $mhei 0 gt{$mhei}{0}ifelse]def/Decode[1 0]def end}bd/@daq{dup type
/arraytype eq{{}forall}if}bd/@BMP{/@cc xd UseLevel 3 eq MaskedImage true eq and
{7 -2 roll pop pop @I_3}{12 index 1 gt UseLevel 2 eq UseLevel 3 eq or and{7 -2
roll pop pop bImgDeviceN{@I_2D}{@I_2}ifelse}{11 index 1 eq{12 -1 roll pop @i}{
7 -2 roll pop pop @I}ifelse}ifelse}ifelse}bd/disable_raster_output{/@BMP load
/old_raster_func exch bind def/@BMP{8 rp/$ury xd/$urx xd/$lly xd/$llx xd/$ncl
xd/$bts xd/$hei xd/$wid xd/scanline $wid $bts mul $ncl mul 8 div ceiling cvi
string def 0 1 $hei 1 sub{currentfile scanline readhexstring pop pop pop}for
}def}bd/enable_raster_output{/old_raster_func where{pop/old_raster_func load
/@BMP exch bd}if}bd
end
%%EndResource
%%EndProlog
%%BeginSetup
wCorel3Dict begin
@BeginSysCorelDict
1.00 setflat
/$fst 128 def
%%EndSetup
%%Page: 1 1
%%ViewingOrientation: 0 1 1 0
%LogicalPage: 1
%%BeginPageSetup
@sv
@sm
@sv
%%EndPageSetup
@rax %Note: Object
129.04554 215.72220 609.64753 488.67761 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
129.04554 480.03165 m
129.04554 215.72220 L
600.96699 215.72220 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 1.99219 1.99219 0 @w
134.25307 479.21074 m
129.04554 488.67761 L
123.83802 479.21074 L
134.25307 479.21074 L
f
@J
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 2.00013 2.00013 0 @w
600.14296 220.95043 m
609.64753 215.72220 L
600.14296 210.49398 L
600.14296 220.95043 L
f
@J
@rax %Note: Object
111.24680 399.68334 511.14104 399.68447 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[1.00000 1.00000 ] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
111.24680 399.68391 m
511.14104 399.68391 L
S
@rax %Note: Object
113.01789 352.22003 512.31175 352.22117 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[1.00000 1.00000 ] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
113.01789 352.22060 m
512.31175 352.22060 L
S
@rax %Note: Object
113.58822 304.75672 513.48246 304.75786 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[1.00000 1.00000 ] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
113.58822 304.75729 m
513.48246 304.75729 L
S
@rax %Note: Object
69.55710 368.64283 101.91317 385.63483 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
83.92507 368.97080 m
69.86098 368.97080 L
77.22113 385.22296 L
83.92507 368.97080 L
@c
81.15704 369.93090 m
76.48101 381.26296 L
71.32507 369.93090 L
81.15704 369.93090 L
@c
F
@rax %Note: Object
69.55710 368.64283 101.91317 385.63483 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
90.92126 385.63483 m
85.16523 368.64283 L
84.22923 368.64283 L
89.98526 385.63483 L
90.92126 385.63483 L
@c
F
@rax %Note: Object
69.55710 368.64283 101.91317 385.63483 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
101.91317 372.03080 m
100.80113 368.97080 L
91.42498 368.97080 L
91.42498 369.46290 L
94.65307 372.37890 96.80910 374.74696 97.89307 376.57474 c
98.58898 377.74687 98.93707 378.87080 98.93707 379.93890 c
98.93707 380.94690 98.62923 381.77490 98.00901 382.42290 c
97.39304 383.07090 96.65717 383.39490 95.79713 383.39490 c
95.01307 383.39490 94.31320 383.16699 93.69298 382.71090 c
93.07304 382.25480 92.61298 381.58299 92.31704 380.70283 C
91.88107 380.70283 L
92.07694 382.14680 92.58094 383.25487 93.39307 384.03099 c
94.20520 384.80287 95.21320 385.19093 96.41707 385.19093 c
97.70513 385.19093 98.78117 384.77480 99.64517 383.94680 c
100.50917 383.11880 100.94117 382.13490 100.94117 380.99480 c
100.94117 380.19883 100.74501 379.38671 100.35298 378.55474 c
99.77698 377.30693 98.82907 375.96671 97.51720 374.53890 c
95.60523 372.44268 94.40504 371.17871 93.92117 370.73877 C
98.06910 370.73877 l
99.20920 370.73877 99.99298 370.83487 100.41704 371.02280 c
100.84507 371.21074 101.19713 371.54693 101.48117 372.03080 C
101.91317 372.03080 L
@c
F
@rax %Note: Object
552.06879 340.14841 573.41452 364.29307 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
573.41452 340.14841 m
552.52035 340.14841 L
563.45471 364.29307 L
573.41452 340.14841 L
@c
569.30230 341.57452 m
562.35543 358.40976 L
554.69537 341.57452 L
569.30230 341.57452 L
@c
F
@rax %Note: Object
69.16507 321.97408 101.52113 338.96608 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
83.53304 322.30205 m
69.46894 322.30205 L
76.82910 338.55420 L
83.53304 322.30205 L
@c
80.76501 323.26214 m
76.08898 334.59420 L
70.93304 323.26214 L
80.76501 323.26214 L
@c
F
@rax %Note: Object
69.16507 321.97408 101.52113 338.96608 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
90.52923 338.96608 m
84.77320 321.97408 L
83.83720 321.97408 L
89.59323 338.96608 L
90.52923 338.96608 L
@c
F
@rax %Note: Object
69.16507 321.97408 101.52113 338.96608 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
101.52113 325.36205 m
100.40910 322.30205 L
91.03294 322.30205 L
91.03294 322.79414 L
94.26104 325.71014 96.41707 328.07820 97.50104 329.90598 c
98.19694 331.07811 98.54504 332.20205 98.54504 333.27014 c
98.54504 334.27814 98.23720 335.10614 97.61698 335.75414 c
97.00101 336.40214 96.26513 336.72614 95.40510 336.72614 c
94.62104 336.72614 93.92117 336.49824 93.30094 336.04214 c
92.68101 335.58605 92.22094 334.91424 91.92501 334.03408 C
91.48904 334.03408 L
91.68491 335.47805 92.18891 336.58611 93.00104 337.36224 c
93.81317 338.13411 94.82117 338.52217 96.02504 338.52217 c
97.31310 338.52217 98.38913 338.10605 99.25313 337.27805 c
100.11713 336.45005 100.54913 335.46614 100.54913 334.32605 c
100.54913 333.53008 100.35298 332.71795 99.96094 331.88598 c
99.38494 330.63817 98.43704 329.29795 97.12517 327.87014 c
95.21320 325.77392 94.01301 324.50995 93.52913 324.07002 C
97.67707 324.07002 l
98.81717 324.07002 99.60094 324.16611 100.02501 324.35405 c
100.45304 324.54198 100.80510 324.87817 101.08913 325.36205 C
101.52113 325.36205 L
@c
F
@rax %Note: Object
109.89383 365.28350 117.34583 387.80759 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
110.56195 377.50734 m
111.16176 377.52350 111.65386 377.68337 112.03370 377.99546 c
112.40986 378.30331 112.66186 378.72737 112.78970 379.26340 c
112.91386 379.80340 112.97792 380.72750 112.98586 382.03143 c
112.99380 383.33537 113.01789 384.19540 113.05786 384.60756 c
113.12986 385.26350 113.25770 385.79159 113.44989 386.19156 c
113.64180 386.58756 113.87792 386.90759 114.15798 387.14740 c
114.44173 387.38353 114.80173 387.56750 115.23798 387.69137 c
115.53392 387.76734 116.01780 387.80759 116.68989 387.80759 c
117.34583 387.80759 L
117.34583 385.96734 L
116.98186 385.96734 l
116.16973 385.96734 115.63398 385.82334 115.36583 385.52740 c
115.10192 385.23543 114.96983 384.58346 114.96983 383.56753 c
114.96983 381.51950 114.92589 380.22746 114.83773 379.68746 c
114.69798 378.85153 114.45789 378.20750 114.11773 377.75537 c
113.77786 377.29956 113.24580 376.89931 112.51786 376.54753 C
113.37789 376.18753 114.00180 375.63931 114.38986 374.89946 c
114.77395 374.16331 114.96983 372.95150 114.96983 371.27140 c
114.96983 369.75146 114.98173 368.84353 115.01376 368.55553 c
115.07783 368.02346 115.23373 367.65128 115.48998 367.43953 c
115.74198 367.23146 116.24173 367.12346 116.98186 367.12346 c
117.34583 367.12346 L
117.34583 365.28350 L
116.68989 365.28350 l
115.92595 365.28350 115.36980 365.34728 115.02595 365.47143 c
114.52592 365.65143 114.11376 365.94340 113.78580 366.34337 c
113.45783 366.74731 113.24183 367.25528 113.14573 367.87550 c
113.04992 368.49146 112.99380 369.50343 112.98586 370.91140 c
112.97792 372.31540 112.91386 373.28740 112.78970 373.82740 c
112.66186 374.36740 112.40986 374.79146 112.03370 375.10356 c
111.65386 375.41934 111.16176 375.58346 110.56195 375.59537 C
110.56195 377.50734 L
@c
F
@rax %Note: Object
109.50180 318.61474 116.95380 341.13883 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
110.16992 330.83858 m
110.76973 330.85474 111.26183 331.01461 111.64167 331.32671 c
112.01783 331.63455 112.26983 332.05861 112.39767 332.59465 c
112.52183 333.13465 112.58589 334.05874 112.59383 335.36268 c
112.60176 336.66661 112.62586 337.52665 112.66583 337.93880 c
112.73783 338.59474 112.86567 339.12283 113.05786 339.52280 c
113.24976 339.91880 113.48589 340.23883 113.76595 340.47865 c
114.04970 340.71477 114.40970 340.89874 114.84595 341.02261 c
115.14189 341.09858 115.62576 341.13883 116.29786 341.13883 c
116.95380 341.13883 L
116.95380 339.29858 L
116.58983 339.29858 l
115.77770 339.29858 115.24195 339.15458 114.97380 338.85865 c
114.70989 338.56668 114.57780 337.91471 114.57780 336.89877 c
114.57780 334.85074 114.53386 333.55871 114.44570 333.01871 c
114.30595 332.18277 114.06586 331.53874 113.72570 331.08661 c
113.38583 330.63080 112.85376 330.23055 112.12583 329.87877 C
112.98586 329.51877 113.60976 328.97055 113.99783 328.23071 c
114.38192 327.49455 114.57780 326.28274 114.57780 324.60265 c
114.57780 323.08271 114.58970 322.17477 114.62173 321.88677 c
114.68580 321.35471 114.84170 320.98252 115.09795 320.77077 c
115.34995 320.56271 115.84970 320.45471 116.58983 320.45471 c
116.95380 320.45471 L
116.95380 318.61474 L
116.29786 318.61474 l
115.53392 318.61474 114.97776 318.67852 114.63392 318.80268 c
114.13389 318.98268 113.72173 319.27465 113.39376 319.67461 c
113.06580 320.07855 112.84980 320.58652 112.75370 321.20674 c
112.65789 321.82271 112.60176 322.83468 112.59383 324.24265 c
112.58589 325.64665 112.52183 326.61865 112.39767 327.15865 c
112.26983 327.69865 112.01783 328.12271 111.64167 328.43480 c
111.26183 328.75058 110.76973 328.91471 110.16992 328.92661 C
110.16992 330.83858 L
@c
F
@rax %Note: Object
336.04554 454.87049 387.18567 477.39458 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
336.14957 459.92239 m
342.79767 468.87449 L
336.93761 477.10233 L
339.64157 477.10233 L
342.76167 472.69446 l
343.40967 471.78255 343.86945 471.07843 344.14157 470.58633 C
344.52567 471.21052 344.97751 471.86249 345.50164 472.54252 c
348.96161 477.10233 L
351.43370 477.10233 L
345.39761 469.00630 L
351.90170 459.92239 L
349.08973 459.92239 L
344.76548 466.05033 l
344.52170 466.40239 344.27367 466.78649 344.01345 467.19836 C
343.62964 466.57446 343.35751 466.14643 343.19367 465.91030 c
338.88161 459.92239 L
336.14957 459.92239 L
@c
F
@rax %Note: Object
336.04554 454.87049 387.18567 477.39458 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
364.33361 454.87049 m
363.16970 456.33827 362.18551 458.05833 361.38161 460.02643 c
360.57770 461.99849 360.17348 464.03433 360.17348 466.14643 c
360.17348 468.00652 360.47367 469.78639 361.07745 471.49030 c
361.78157 473.46633 362.86554 475.43443 364.33361 477.39458 C
365.84561 477.39458 L
364.90167 475.77033 364.27748 474.61039 363.97361 473.91449 c
363.49370 472.83846 363.12151 471.71055 362.84570 470.53843 c
362.50951 469.07830 362.34170 467.61052 362.34170 466.13452 c
362.34170 462.37436 363.50957 458.62243 365.84561 454.87049 C
364.33361 454.87049 L
@c
F
@rax %Note: Object
336.04554 454.87049 387.18567 477.39458 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
368.29757 459.92239 m
368.29757 472.36649 L
370.19367 472.36649 L
370.19367 470.59852 L
371.10954 471.96652 372.42964 472.65052 374.15367 472.65052 c
374.90570 472.65052 375.59367 472.51446 376.22154 472.24658 c
376.85367 471.97446 377.32167 471.62239 377.63348 471.18246 c
377.94954 470.74649 378.16554 470.22633 378.29367 469.62652 c
378.36964 469.23449 378.40961 468.55049 378.40961 467.57452 c
378.40961 459.92239 L
376.29751 459.92239 L
376.29751 467.49430 l
376.29751 468.35036 376.21757 468.99439 376.05373 469.42243 c
375.88961 469.84649 375.59764 470.18636 375.18151 470.43836 c
374.76170 470.69433 374.27357 470.82246 373.70948 470.82246 c
372.80948 470.82246 372.03761 470.53446 371.38167 469.96639 c
370.72970 469.39436 370.40570 468.31436 370.40570 466.71846 c
370.40570 459.92239 L
368.29757 459.92239 L
@c
F
@rax %Note: Object
336.04554 454.87049 387.18567 477.39458 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
383.02554 454.87049 m
381.51354 454.87049 L
383.84957 458.62243 385.01773 462.37436 385.01773 466.13452 c
385.01773 467.60230 384.84964 469.05846 384.51373 470.50639 c
384.24954 471.67455 383.87764 472.80246 383.40170 473.87849 c
383.09754 474.58233 382.46967 475.75446 381.51354 477.39458 C
383.02554 477.39458 L
384.49361 475.43443 385.58154 473.46633 386.28567 471.49030 c
386.88576 469.78639 387.18567 468.00652 387.18567 466.14643 c
387.18567 464.03433 386.78173 461.99849 385.97357 460.02643 c
385.16570 458.05833 384.18180 456.33827 383.02554 454.87049 C
@c
F
@rax %Note: Object
351.43370 451.43717 359.18306 463.10117 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
357.77764 451.43717 m
357.77764 455.49865 L
357.55909 455.19194 357.25238 454.93597 356.86035 454.73329 c
356.46576 454.53061 356.04709 454.42913 355.60431 454.42913 c
354.62041 454.42913 353.77228 454.82117 353.06306 455.60806 c
352.35099 456.39468 351.99638 457.47184 351.99638 458.84268 c
351.99638 459.67465 352.14038 460.42384 352.43093 461.08517 c
352.71893 461.74649 353.13761 462.24794 353.68696 462.58923 c
354.23631 462.93052 354.83896 463.10117 355.49490 463.10117 c
356.52161 463.10117 357.32976 462.66917 357.91909 461.80261 C
357.91909 462.91181 L
359.18306 462.91181 L
359.18306 451.43717 L
357.77764 451.43717 L
@c
353.44176 458.78655 m
353.44176 457.71987 353.66570 456.91994 354.11357 456.38646 c
354.56173 455.85071 355.09776 455.58397 355.72167 455.58397 c
356.32176 455.58397 356.83625 455.83739 357.26825 456.34649 c
357.70309 456.85332 357.91909 457.62661 357.91909 458.66381 c
357.91909 459.76791 357.68976 460.59732 357.23367 461.15461 c
356.77757 461.71191 356.24438 461.99197 355.62841 461.99197 c
355.02038 461.99197 354.50306 461.73061 354.07899 461.21329 c
353.65493 460.69597 353.44176 459.88781 353.44176 458.78655 c
@c
F
@rax %Note: Object
393.21043 450.67096 405.07625 460.75691 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
393.21043 460.75691 m
398.47720 456.28016 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 1.99559 1.99559 0 @w
401.22907 460.78724 m
405.07625 450.67096 L
394.47241 452.83805 L
401.22907 460.78724 L
f
@J
@rax %Note: Object
457.72894 456.92759 502.20113 479.45169 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
457.83298 461.97950 m
464.48107 470.93159 L
458.62101 479.15943 L
461.32498 479.15943 L
464.44507 474.75156 l
465.09307 473.83965 465.55285 473.13553 465.82498 472.64343 C
466.20907 473.26762 466.66091 473.91959 467.18504 474.59962 c
470.64501 479.15943 L
473.11710 479.15943 L
467.08101 471.06340 L
473.58510 461.97950 L
470.77313 461.97950 L
466.44888 468.10743 l
466.20510 468.45950 465.95707 468.84359 465.69685 469.25546 C
465.31304 468.63156 465.04091 468.20353 464.87707 467.96740 c
460.56501 461.97950 L
457.83298 461.97950 L
@c
F
@rax %Note: Object
457.72894 456.92759 502.20113 479.45169 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
479.34907 456.92759 m
478.18517 458.39537 477.20098 460.11543 476.39707 462.08353 c
475.59317 464.05559 475.18894 466.09143 475.18894 468.20353 c
475.18894 470.06362 475.48913 471.84350 476.09291 473.54740 c
476.79704 475.52343 477.88101 477.49153 479.34907 479.45169 C
480.86107 479.45169 L
479.91713 477.82743 479.29294 476.66750 478.98907 475.97159 c
478.50917 474.89556 478.13698 473.76765 477.86117 472.59553 c
477.52498 471.13540 477.35717 469.66762 477.35717 468.19162 c
477.35717 464.43146 478.52504 460.67953 480.86107 456.92759 C
479.34907 456.92759 L
@c
F
@rax %Note: Object
457.72894 456.92759 502.20113 479.45169 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
483.31304 461.97950 m
483.31304 474.42359 L
485.20913 474.42359 L
485.20913 472.65562 L
486.12501 474.02362 487.44510 474.70762 489.16913 474.70762 c
489.92117 474.70762 490.60913 474.57156 491.23701 474.30369 c
491.86913 474.03156 492.33713 473.67950 492.64894 473.23956 c
492.96501 472.80359 493.18101 472.28343 493.30913 471.68362 c
493.38510 471.29159 493.42507 470.60759 493.42507 469.63162 c
493.42507 461.97950 L
491.31298 461.97950 L
491.31298 469.55140 l
491.31298 470.40746 491.23304 471.05150 491.06920 471.47953 c
490.90507 471.90359 490.61310 472.24346 490.19698 472.49546 c
489.77717 472.75143 489.28904 472.87956 488.72494 472.87956 c
487.82494 472.87956 487.05307 472.59156 486.39713 472.02350 c
485.74517 471.45146 485.42117 470.37146 485.42117 468.77556 c
485.42117 461.97950 L
483.31304 461.97950 L
@c
F
@rax %Note: Object
457.72894 456.92759 502.20113 479.45169 @E
/$fm 1 def
0 O 0 @g
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
498.04101 456.92759 m
496.52901 456.92759 L
498.86504 460.67953 500.03320 464.43146 500.03320 468.19162 c
500.03320 469.65940 499.86510 471.11556 499.52920 472.56350 c
499.26501 473.73165 498.89310 474.85956 498.41717 475.93559 c
498.11301 476.63943 497.48513 477.81156 496.52901 479.45169 C
498.04101 479.45169 L
499.50907 477.49153 500.59701 475.52343 501.30113 473.54740 c
501.90123 471.84350 502.20113 470.06362 502.20113 468.20353 c
502.20113 466.09143 501.79720 464.05559 500.98904 462.08353 c
500.18117 460.11543 499.19726 458.39537 498.04101 456.92759 C
@c
F
@rax %Note: Object
469.00148 434.68809 473.74781 453.67342 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
473.74781 453.67342 m
471.10309 443.09509 L
S
@j
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
[ 1.00 0.00 0.00 0.00 1.00 null ] set_fill_color
0 @g
0 @G
[] 0 d 0 J 0 j
0 R 0 O
0 1.99672 1.99672 0 @w
476.36646 442.62737 m
469.00148 434.68809 L
466.23912 445.15899 L
476.36646 442.62737 L
f
@J
@rax %Note: Object
252.44957 199.73906 252.45071 439.44038 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[1.00000 1.00000 ] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
252.45014 439.44038 m
252.45014 199.73906 L
S
@rax %Note: Object
333.73049 199.73906 333.73162 439.44038 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[1.00000 1.00000 ] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
333.73106 439.44038 m
333.73106 199.73906 L
S
@rax %Note: Object
415.01140 199.73906 415.01254 439.44038 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[1.00000 1.00000 ] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
415.01197 439.44038 m
415.01197 199.73906 L
S
@rax %Note: Object
158.11682 265.00677 515.27820 437.65455 @E
/$fm 0 def
0 J 0 j 22.925585626053735 setmiterlimit
[5.00000 1.00000 ] 0 d 0 R 0 @G
[ 1.00 0.00 0.00 0.00 1.00 null ] set_outline_color
0 1.99984 1.99984 0.00000 @w
515.27820 437.65455 m
494.46539 437.65455 473.57717 430.94750 453.57591 422.82227 C
216.25937 283.99209 L