-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreference10.ps
More file actions
7697 lines (7595 loc) · 327 KB
/
Copy pathreference10.ps
File metadata and controls
7697 lines (7595 loc) · 327 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
%%Title: RockAuto Order Confirmation for Order 273009412
%%Creator: PScript5.dll Version 5.2.2
%%CreationDate: 5/7/2024 16:57:17
%%For: Nate
%%BoundingBox: (atend)
%%Pages: (atend)
%%Orientation: Portrait
%%PageOrder: Special
%%DocumentNeededResources: (atend)
%%DocumentSuppliedResources: (atend)
%%DocumentData: Clean7Bit
%%TargetDevice: CursiVision Printer Driver (2015.105) 9
%%LanguageLevel: 2
%%EndComments
%%BeginDefaults
%%PageBoundingBox: 0 0 612 792
%%ViewingOrientation: 1 0 0 1
%%EndDefaults
0 debuglevel
%%BeginProlog
%%BeginResource: file Pscript_WinNT_ErrorHandler 5.0 0
/currentpacking where{pop/oldpack currentpacking def/setpacking where{pop false
setpacking}if}if/$brkpage 64 dict def $brkpage begin/prnt{dup type/stringtype
ne{=string cvs}if dup length 6 mul/tx exch def/ty 10 def currentpoint/toy exch
def/tox exch def 1 setgray newpath tox toy 2 sub moveto 0 ty rlineto tx 0
rlineto 0 ty neg rlineto closepath fill tox toy moveto 0 setgray show}bind def
/nl{currentpoint exch pop lmargin exch moveto 0 -10 rmoveto}def/=={/cp 0 def
typeprint nl}def/typeprint{dup type exec}readonly def/lmargin 72 def/rmargin 72
def/tprint{dup length cp add rmargin gt{nl/cp 0 def}if dup length cp add/cp
exch def prnt}readonly def/cvsprint{=string cvs tprint( )tprint}readonly def
/integertype{cvsprint}readonly def/realtype{cvsprint}readonly def/booleantype
{cvsprint}readonly def/operatortype{(--)tprint =string cvs tprint(-- )tprint}
readonly def/marktype{pop(-mark- )tprint}readonly def/dicttype{pop
(-dictionary- )tprint}readonly def/nulltype{pop(-null- )tprint}readonly def
/filetype{pop(-filestream- )tprint}readonly def/savetype{pop(-savelevel- )
tprint}readonly def/fonttype{pop(-fontid- )tprint}readonly def/nametype{dup
xcheck not{(/)tprint}if cvsprint}readonly def/stringtype{dup rcheck{(\()tprint
tprint(\))tprint}{pop(-string- )tprint}ifelse}readonly def/arraytype{dup rcheck
{dup xcheck{({)tprint{typeprint}forall(})tprint}{([)tprint{typeprint}forall(])
tprint}ifelse}{pop(-array- )tprint}ifelse}readonly def/packedarraytype{dup
rcheck{dup xcheck{({)tprint{typeprint}forall(})tprint}{([)tprint{typeprint}
forall(])tprint}ifelse}{pop(-packedarray- )tprint}ifelse}readonly def/courier
/Courier findfont 10 scalefont def end errordict/handleerror{systemdict begin
$error begin $brkpage begin newerror{/newerror false store vmstatus pop pop 0
ne{grestoreall}if errorname(VMerror)ne{showpage}if initgraphics courier setfont
lmargin 720 moveto errorname(VMerror)eq{userdict/ehsave known{clear userdict
/ehsave get restore 2 vmreclaim}if vmstatus exch pop exch pop PrtVMMsg}{
(ERROR: )prnt errorname prnt nl(OFFENDING COMMAND: )prnt/command load prnt
$error/ostack known{nl nl(STACK:)prnt nl nl $error/ostack get aload length{==}
repeat}if}ifelse systemdict/showpage get exec(%%[ Error: )print errorname
=print(; OffendingCommand: )print/command load =print( ]%%)= flush}if end end
end}dup 0 systemdict put dup 4 $brkpage put bind readonly put/currentpacking
where{pop/setpacking where{pop oldpack setpacking}if}if
%%EndResource
userdict /Pscript_WinNT_Incr 230 dict dup begin put
%%BeginResource: file Pscript_FatalError 5.0 0
userdict begin/FatalErrorIf{{initgraphics findfont 1 index 0 eq{exch pop}{dup
length dict begin{1 index/FID ne{def}{pop pop}ifelse}forall/Encoding
{ISOLatin1Encoding}stopped{StandardEncoding}if def currentdict end
/ErrFont-Latin1 exch definefont}ifelse exch scalefont setfont counttomark 3 div
cvi{moveto show}repeat showpage quit}{cleartomark}ifelse}bind def end
%%EndResource
userdict begin/PrtVMMsg{vmstatus exch sub exch pop gt{[
(This job requires more memory than is available in this printer.)100 500
(Try one or more of the following, and then print again:)100 485
(For the output format, choose Optimize For Portability.)115 470
(In the Device Settings page, make sure the Available PostScript Memory is accurate.)
115 455(Reduce the number of fonts in the document.)115 440
(Print the document in parts.)115 425 12/Times-Roman showpage
(%%[ PrinterError: Low Printer VM ]%%)= true FatalErrorIf}if}bind def end
version cvi 2016 ge{/VM?{pop}bind def}{/VM? userdict/PrtVMMsg get def}ifelse
105000 VM?
%%BeginResource: file Pscript_Win_Basic 5.0 0
/d/def load def/,/load load d/~/exch , d/?/ifelse , d/!/pop , d/`/begin , d/^
/index , d/@/dup , d/+/translate , d/$/roll , d/U/userdict , d/M/moveto , d/-
/rlineto , d/&/currentdict , d/:/gsave , d/;/grestore , d/F/false , d/T/true ,
d/N/newpath , d/E/end , d/Ac/arc , d/An/arcn , d/A/ashow , d/D/awidthshow , d/C
/closepath , d/V/div , d/O/eofill , d/L/fill , d/I/lineto , d/-c/curveto , d/-M
/rmoveto , d/+S/scale , d/Ji/setfont , d/Lc/setlinecap , d/Lj/setlinejoin , d
/Lw/setlinewidth , d/Lm/setmiterlimit , d/sd/setdash , d/S/show , d/LH/showpage
, d/K/stroke , d/W/widthshow , d/R/rotate , d/L2? false/languagelevel where{pop
languagelevel 2 ge{pop true}if}if d L2?{/xS/xshow , d/yS/yshow , d/zS/xyshow ,
d}if/b{bind d}bind d/bd{bind d}bind d/xd{~ d}bd/ld{, d}bd/bn/bind ld/lw/Lw ld
/lc/Lc ld/lj/Lj ld/sg/setgray ld/ADO_mxRot null d/self & d/OrgMx matrix
currentmatrix d/reinitialize{: OrgMx setmatrix[/TextInit/GraphInit/UtilsInit
counttomark{@ where{self eq}{F}?{cvx exec}{!}?}repeat cleartomark ;}b
/initialize{`{/Pscript_Win_Data where{!}{U/Pscript_Win_Data & put}?/ADO_mxRot ~
d/TextInitialised? F d reinitialize E}{U/Pscript_Win_Data 230 dict @ ` put
/ADO_mxRot ~ d/TextInitialised? F d reinitialize}?}b/terminate{!{& self eq
{exit}{E}?}loop E}b/suspend/terminate , d/resume{` Pscript_Win_Data `}b U `
/lucas 21690 d/featurebegin{countdictstack lucas[}b/featurecleanup{stopped
{cleartomark @ lucas eq{! exit}if}loop countdictstack ~ sub @ 0 gt{{E}repeat}
{!}?}b E/snap{transform 0.25 sub round 0.25 add ~ 0.25 sub round 0.25 add ~
itransform}b/dsnap{dtransform round ~ round ~ idtransform}b/nonzero_round{@ 0.5
ge{round}{@ -0.5 lt{round}{0 ge{1}{-1}?}?}?}b/nonzero_dsnap{dtransform
nonzero_round ~ nonzero_round ~ idtransform}b U<04>cvn{}put/rr{1 ^ 0 - 0 ~ -
neg 0 - C}b/irp{4 -2 $ + +S fx 4 2 $ M 1 ^ 0 - 0 ~ - neg 0 -}b/rp{4 2 $ M 1 ^ 0
- 0 ~ - neg 0 -}b/solid{[]0 sd}b/g{@ not{U/DefIf_save save put}if U/DefIf_bool
2 ^ put}b/DefIf_El{if U/DefIf_bool get not @{U/DefIf_save get restore}if}b/e
{DefIf_El !}b/UDF{L2?{undefinefont}{!}?}b/UDR{L2?{undefineresource}{! !}?}b
/freeVM{/Courier findfont[40 0 0 -40 0 0]makefont Ji 2 vmreclaim}b/hfRedefFont
{findfont @ length dict `{1 ^/FID ne{d}{! !}?}forall & E @ ` ~{/CharStrings 1
dict `/.notdef 0 d & E d}if/Encoding 256 array 0 1 255{1 ^ ~/.notdef put}for d
E definefont !}bind d/hfMkCIDFont{/CIDFont findresource @ length 2 add dict `{1
^ @/FID eq ~ @/XUID eq ~/UIDBase eq or or{! !}{d}?}forall/CDevProc ~ d/Metrics2
16 dict d/CIDFontName 1 ^ d & E 1 ^ ~/CIDFont defineresource ![~]composefont !}
bind d
%%EndResource
%%BeginResource: file Pscript_Win_Utils_L2 5.0 0
/rf/rectfill , d/fx{1 1 dtransform @ 0 ge{1 sub 0.5}{1 add -0.5}? 3 -1 $ @ 0 ge
{1 sub 0.5}{1 add -0.5}? 3 1 $ 4 1 $ idtransform 4 -2 $ idtransform}b/BZ{4 -2 $
snap + +S fx rf}b/rs/rectstroke , d/rc/rectclip , d/UtilsInit{currentglobal{F
setglobal}if}b/scol{! setcolor}b/colspA/DeviceGray d/colspABC/DeviceRGB d
/colspRefresh{colspABC setcolorspace}b/SetColSpace{colspABC setcolorspace}b
/resourcestatus where{!/ColorRendering/ProcSet resourcestatus{! ! T}{F}?}{F}?
not{/ColorRendering<</GetHalftoneName{currenthalftone @/HalftoneName known{
/HalftoneName get}{!/none}?}bn/GetPageDeviceName{currentpagedevice @
/PageDeviceName known{/PageDeviceName get @ null eq{!/none}if}{!/none}?}bn
/GetSubstituteCRD{!/DefaultColorRendering/ColorRendering resourcestatus{! !
/DefaultColorRendering}{(DefaultColorRendering*){cvn exit}127 string
/ColorRendering resourceforall}?}bn>>/defineresource where{!/ProcSet
defineresource !}{! !}?}if/buildcrdname{/ColorRendering/ProcSet findresource `
mark GetHalftoneName @ type @/nametype ne ~/stringtype ne and{!/none}if(.)
GetPageDeviceName @ type @/nametype ne ~/stringtype ne and{!/none}if(.)5 ^ 0 5
-1 1{^ length add}for string 6 1 $ 5 ^ 5{~ 1 ^ cvs length 1 ^ length 1 ^ sub
getinterval}repeat ! cvn 3 1 $ ! ! E}b/definecolorrendering{~ buildcrdname ~
/ColorRendering defineresource !}b/findcolorrendering where{!}{
/findcolorrendering{buildcrdname @/ColorRendering resourcestatus{! ! T}{
/ColorRendering/ProcSet findresource ` GetSubstituteCRD E F}?}b}?
/selectcolorrendering{findcolorrendering !/ColorRendering findresource
setcolorrendering}b/G2UBegin{findresource/FontInfo get/GlyphNames2Unicode get
`}bind d/G2CCBegin{findresource/FontInfo get/GlyphNames2HostCode get `}bind d
/G2UEnd{E}bind d/AddFontInfoBegin{/FontInfo 8 dict @ `}bind d/AddFontInfo{
/GlyphNames2Unicode 16 dict d/GlyphNames2HostCode 16 dict d}bind d
/AddFontInfoEnd{E d}bind d/T0AddCFFMtx2{/CIDFont findresource/Metrics2 get ` d
E}bind d
%%EndResource
end
%%EndProlog
%%BeginSetup
statusdict begin (%%[ ProductName: ) print product print ( ]%%)= flush end
[ 1 0 0 1 0 0 ] false Pscript_WinNT_Incr dup /initialize get exec
featurebegin{
%%BeginNonPPDFeature: JobTimeout 0
0 /languagelevel where{pop languagelevel}{1}ifelse 2 ge{1 dict dup/JobTimeout 4 -1 roll put setuserparams}{statusdict/setjobtimeout get exec}ifelse
%%EndNonPPDFeature
}featurecleanup
featurebegin{
%%BeginNonPPDFeature: WaitTimeout 300
300 /languagelevel where{pop languagelevel}{1}ifelse 2 ge{1 dict dup/WaitTimeout 4 -1 roll put setuserparams}{statusdict/waittimeout 3 -1 roll put}ifelse
%%EndNonPPDFeature
}featurecleanup
featurebegin{
%%BeginFeature: *PageSize Letter
(<<) cvx exec /PageSize [612 792] /ImagingBBox null
(>>) cvx exec setpagedevice
%%EndFeature
}featurecleanup
featurebegin{
%%BeginFeature: *OutputMode Standard
(<<) cvx exec
/HWResolution [600 600]
/ProcessColorModel /DeviceCMYK
(>>) cvx exec setpagedevice
%%EndFeature
}featurecleanup
featurebegin{
%%BeginFeature: *OutputOrder Normal
(<<) cvx exec
/OutputFaceUp false
(>>) cvx exec setpagedevice
%%EndFeature
}featurecleanup
featurebegin{
%%BeginFeature: *Collate True
(<<) cvx exec
/Collate true
(>>) cvx exec setpagedevice
%%EndFeature
}featurecleanup
featurebegin{
%%BeginFeature: *Resolution 600x600dpi
%%EndFeature
}featurecleanup
featurebegin{
%%BeginFeature: *InstalledMemory 24Meg
%%EndFeature
}featurecleanup
1 setlinecap 1 setlinejoin
/mysetup [ 72 600 V 0 0 -72 600 V 0 792 ] def
%%EndSetup
userdict begin /ehsave save def end
%%Page: 1 1
%%PageBoundingBox: 0 0 612 792
%%EndPageComments
%%BeginPageSetup
/DeviceRGB dup setcolorspace /colspABC exch def
mysetup concat colspRefresh
%%EndPageSetup
30000 VM?
Pscript_WinNT_Incr begin
%%BeginResource: file Pscript_WinNT_Compat 5.0 0
userdict/Pscript_WinNT_Compat 19 dict dup begin/bd{bind def}bind def/ld{load
def}bd/$x matrix def/ANSIVec[16#0/grave 16#1/acute 16#2/circumflex 16#3/tilde
16#4/macron 16#5/breve 16#6/dotaccent 16#7/dieresis 16#8/ring 16#9/cedilla 16#A
/hungarumlaut 16#B/ogonek 16#C/caron 16#D/dotlessi 16#27/quotesingle 16#60
/grave 16#7C/bar 16#82/quotesinglbase 16#83/florin 16#84/quotedblbase 16#85
/ellipsis 16#86/dagger 16#87/daggerdbl 16#88/circumflex 16#89/perthousand 16#8A
/Scaron 16#8B/guilsinglleft 16#8C/OE 16#91/quoteleft 16#92/quoteright 16#93
/quotedblleft 16#94/quotedblright 16#95/bullet 16#96/endash 16#97/emdash 16#98
/tilde 16#99/trademark 16#9A/scaron 16#9B/guilsinglright 16#9C/oe 16#9F
/Ydieresis 16#A0/space 16#A1/exclamdown 16#A4/currency 16#A5/yen 16#A6
/brokenbar 16#A7/section 16#A8/dieresis 16#A9/copyright 16#AA/ordfeminine 16#AB
/guillemotleft 16#AC/logicalnot 16#AD/hyphen 16#AE/registered 16#AF/macron
16#B0/degree 16#B1/plusminus 16#B2/twosuperior 16#B3/threesuperior 16#B4/acute
16#B5/mu 16#B6/paragraph 16#B7/periodcentered 16#B8/cedilla 16#B9/onesuperior
16#BA/ordmasculine 16#BB/guillemotright 16#BC/onequarter 16#BD/onehalf 16#BE
/threequarters 16#BF/questiondown 16#C0/Agrave 16#C1/Aacute 16#C2/Acircumflex
16#C3/Atilde 16#C4/Adieresis 16#C5/Aring 16#C6/AE 16#C7/Ccedilla 16#C8/Egrave
16#C9/Eacute 16#CA/Ecircumflex 16#CB/Edieresis 16#CC/Igrave 16#CD/Iacute 16#CE
/Icircumflex 16#CF/Idieresis 16#D0/Eth 16#D1/Ntilde 16#D2/Ograve 16#D3/Oacute
16#D4/Ocircumflex 16#D5/Otilde 16#D6/Odieresis 16#D7/multiply 16#D8/Oslash
16#D9/Ugrave 16#DA/Uacute 16#DB/Ucircumflex 16#DC/Udieresis 16#DD/Yacute 16#DE
/Thorn 16#DF/germandbls 16#E0/agrave 16#E1/aacute 16#E2/acircumflex 16#E3
/atilde 16#E4/adieresis 16#E5/aring 16#E6/ae 16#E7/ccedilla 16#E8/egrave 16#E9
/eacute 16#EA/ecircumflex 16#EB/edieresis 16#EC/igrave 16#ED/iacute 16#EE
/icircumflex 16#EF/idieresis 16#F0/eth 16#F1/ntilde 16#F2/ograve 16#F3/oacute
16#F4/ocircumflex 16#F5/otilde 16#F6/odieresis 16#F7/divide 16#F8/oslash 16#F9
/ugrave 16#FA/uacute 16#FB/ucircumflex 16#FC/udieresis 16#FD/yacute 16#FE/thorn
16#FF
/ydieresis ]
def currentdict
{ dup type /operatortype eq { [exch] cvx def }
{ pop pop }
ifelse
} forall
/initialize {
currentdict exch begin begin
}
bind def
/terminate {
/@FL where not
{ pop end end }
{ pop }
ifelse
} bind def
/suspend
/terminate load def
/resume
/initialize load def
/RS {
/pagesave where
{ pop pagesave restore } { $x matrix invertmatrix concat }
ifelse
} def
/SS {
/pagesave save def
} def
/CB { pop pop pop pop } def
/B {pop pop pop pop }def
/:
/gsave load def
/;
/grestore load def
/N /newpath load def
end put
%%EndResource
end reinitialize
Pscript_WinNT_Compat begin /$x mysetup def end
Pscript_WinNT_Incr dup /suspend get exec
Pscript_WinNT_Compat dup /initialize get exec
%%BeginDocument: Pscript_Win_PassThrough
save
/im /initmatrix load def
/n /newpath load def
/m /moveto load def
/l /lineto load def
/c /curveto load def
/h /closepath load def
/f /fill load def
/F /eofill load def
/s /stroke load def
/W /clip load def
/W* /eoclip load def
/rg /setrgbcolor load def
/k /setcmykcolor load def
/J /setlinecap load def
/j /setlinejoin load def
/w /setlinewidth load def
/M /setmiterlimit load def
/d /setdash load def
/q /gsave load def
/Q /grestore load def
/iM /imagemask load def
/Tj /show load def
/Ff /findfont load def
/Fs /scalefont load def
/Sf /setfont load def
/cm /concat load def
/Cm/currentmatrix load def
/mx /matrix load def
/sm /setmatrix load def
% 0 debuglevel
n q
0 6600 m 0 0 l 5100 0 l 5100 6600 l 0 6600 l h W
n q
0 0 0 rg
8 dict begin
/FontType 3 def
/FontMatrix [1 0 0 1 0 0] def
/FontBBox [0 0 0 0] def
/Encoding 256 array def 0 1 255 { Encoding exch/.notdef put } for
/CharProcs 1 dict def
CharProcs begin
/.notdef {} def
end
/BuildGlyph {
1 0 -10 -10 10 10 setcachedevice exch
/CharProcs get exch 2 copy known not { pop /.notdef } if get exec
} bind def
/BuildChar {
1 index
/Encoding get exch get 1 index
/BuildGlyph get exec
} bind def
currentdict end
/X0 exch definefont pop
/X0 Ff
/CharProcs get begin
/0
{
n
0.0415039 0.1875 m
0.133789 0.195312 l
0.140625 0.150391 0.156494 0.116699 0.181396 0.0939941 c
0.206299 0.0715332 0.236328 0.0600586 0.271484 0.0600586 c
0.313721 0.0600586 0.349609 0.0759277 0.378906 0.10791 c
0.408203 0.139648 0.422852 0.182129 0.422852 0.234863 c
0.422852 0.284912 0.408936 0.324463 0.380615 0.353516 c
0.352539 0.382324 0.315674 0.396973 0.27002 0.396973 c
0.241699 0.396973 0.216309 0.390625 0.193359 0.377686 c
0.170654 0.36499 0.152832 0.348145 0.139648 0.327637 c
0.0571289 0.338379 l
0.126465 0.706055 l
0.482422 0.706055 l
0.482422 0.62207 l
0.196777 0.62207 l
0.158203 0.429688 l
0.201172 0.459473 0.246094 0.474609 0.293457 0.474609 c
0.355957 0.474609 0.408691 0.453125 0.45166 0.409668 c
0.494629 0.366455 0.516113 0.310791 0.516113 0.242676 c
0.516113 0.177979 0.497314 0.12207 0.459473 0.074707 c
0.413574 0.0168457 0.351074 -0.012207 0.271484 -0.012207 c
0.206543 -0.012207 0.15332 0.00585938 0.112061 0.0424805 c
0.0710449 0.0788574 0.0473633 0.127197 0.0415039 0.1875 c
f
}
bind def
end
/X0 Ff /Encoding get 0 /0 put
q [6.25 0 0 -6.25 212.598 181.25] cm
/X0 Ff 10.66 Fs Sf 0 0 m <00> Tj
Q
/X0 Ff /CharProcs get begin
/1
{
n
0 -0.012207 m
0.20752 0.728027 l
0.277832 0.728027 l
0.0708008 -0.012207 l
0 -0.012207 l
f
}
bind def
end
/X0 Ff /Encoding get 1 /1 put
q [6.25 0 0 -6.25 249.651 181.25] cm
/X0 Ff 10.66 Fs Sf 0 0 m<01>Tj
Q
/X0 Ff /CharProcs get begin
/2
{
n 0.0473633 0.62207 m
0.0473633 0.706543 l
0.510742 0.706543 l
0.510742 0.638184 l
0.465332 0.589844 0.420166 0.525391 0.375244 0.444824 c
0.330566 0.364502 0.295898 0.281738 0.271484 0.196777 c
0.253906 0.136963 0.242676 0.0712891 0.237793 0 c
0.147461 0 l
0.148438 0.0561523 0.159424 0.124268 0.180664 0.204102 c
0.20166 0.283691 0.232178 0.360596 0.271729 0.434814 c
0.311279 0.508789 0.353271 0.571289 0.397949 0.62207 c
0.0473633 0.62207 l
f
} bind def end
/X0 Ff/Encoding get 2/2 put
q
[6.25 0 0 -6.25 268.162 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<02>Tj
Q
q[6.25 0 0 -6.25 305.215 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<01>Tj
Q
/X0 Ff /CharProcs get begin
/3
{
n
0.503418 0.0844727 m
0.503418 0 l
0.0302734 0 l
0.0297852 0.0209961 0.032959 0.0415039 0.0405273 0.0610352 c
0.0524902 0.0932617 0.0717773 0.125 0.0983887 0.15625 c
0.124756 0.1875 0.163086 0.223633 0.213379 0.264648 c
0.291016 0.328369 0.34375 0.378906 0.371094 0.41626 c
0.398438 0.453369 0.412109 0.48877 0.412109 0.521973 c
0.412109 0.556641 0.399658 0.586182 0.374756 0.610107 c
0.349854 0.634033 0.317383 0.645996 0.277344 0.645996 c
0.235107 0.645996 0.201172 0.633301 0.175781 0.60791 c
0.150391 0.58252 0.137695 0.547363 0.137207 0.502441 c
0.046875 0.511719 l
0.0529785 0.579102 0.0761719 0.630371 0.116699 0.665771 c
0.156982 0.700928 0.211182 0.71875 0.279297 0.71875 c
0.3479 0.71875 0.402344 0.699707 0.442383 0.661621 c
0.482422 0.623535 0.502441 0.576416 0.502441 0.52002 c
0.502441 0.491455 0.496582 0.463379 0.484863 0.435547 c
0.473145 0.407959 0.453857 0.378906 0.426514 0.348145 c
0.399414 0.317627 0.354248 0.275635 0.291016 0.222168 c
0.238281 0.177979 0.20459 0.147949 0.189453 0.13208 c
0.174561 0.116455 0.162109 0.100586 0.152344 0.0844727 c
0.503418 0.0844727 l
f
}
bind def
end
/X0 Ff
/Encoding get
3 /3 put
q[6.25 0 0 -6.25 323.726 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<03>Tj
Q
/X0 Ff
/CharProcs get begin
/4 {
n 0.323242 0 m
0.323242 0.171387 l
0.0126953 0.171387 l
0.0126953 0.251953 l
0.339355 0.71582 l
0.411133 0.71582 l
0.411133 0.251953 l
0.507812 0.251953 l
0.507812 0.171387 l
0.411133 0.171387 l
0.411133 0 l
0.323242 0 l
0.323242 0.251953 m
0.323242 0.574707 l
0.0991211 0.251953 l
0.323242 0.251953 l
f
}
bind def end
/X0 Ff/Encoding get 4/4 put
q[6.25 0 0 -6.25 360.779 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<04>Tj
Q
/X0 Ff/CharProcs get begin/5{n 0.0888672 0 m
0.0888672 0.100098 l
0.188965 0.100098 l
0.188965 0 l
0.188965 -0.0366211 0.182617 -0.0664062 0.169434 -0.0891113 c
0.156494 -0.111572 0.135742 -0.12915 0.107422 -0.141602 c
0.0830078 -0.104004 l
0.101562 -0.0959473 0.115234 -0.0839844 0.124023 -0.0681152 c
0.132812 -0.0524902 0.137695 -0.0297852 0.138672 0 c
0.0888672 0 l
f}bind def end
/X0 Ff/Encoding get 5/5 put
q[6.25 0 0 -6.25 397.833 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<05>Tj
Q
q[6.25 0 0 -6.25 416.344 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<06>Tj
Q
q[6.25 0 0 -6.25 434.854 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<04>Tj
Q
/X0 Ff/CharProcs get begin/7{n 0.090332 0.418457 m
0.090332 0.518555 l
0.19043 0.518555 l
0.19043 0.418457 l
0.090332 0.418457 l
0.090332 0 m
0.090332 0.100098 l
0.19043 0.100098 l
0.19043 0 l
0.090332 0 l
f}bind def end
/X0 Ff/Encoding get 7/7 put
q[6.25 0 0 -6.25 471.908 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<07>Tj
Q
q[6.25 0 0 -6.25 490.418 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<00>Tj
Q
q[6.25 0 0 -6.25 527.472 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<02>Tj
Q
q[6.25 0 0 -6.25 564.525 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<06>Tj
Q
/X0 Ff/CharProcs get begin/8{n 0.0771484 0 m
0.0771484 0.71582 l
0.347168 0.71582 l
0.394531 0.71582 0.430908 0.713623 0.456055 0.708984 c
0.491211 0.703125 0.520508 0.692139 0.544434 0.675537 c
0.568115 0.65918 0.587158 0.63623 0.601807 0.606445 c
0.616211 0.576904 0.623535 0.544434 0.623535 0.508789 c
0.623535 0.447998 0.604248 0.396484 0.56543 0.354248 c
0.526855 0.312256 0.456787 0.291016 0.355469 0.291016 c
0.171875 0.291016 l
0.171875 0 l
0.0771484 0 l
0.171875 0.375488 m
0.356934 0.375488 l
0.417969 0.375488 0.461426 0.386719 0.487305 0.409668 c
0.512939 0.432373 0.525879 0.464355 0.525879 0.505859 c
0.525879 0.535645 0.518311 0.561279 0.503174 0.582764 c
0.488037 0.604004 0.468262 0.618164 0.443359 0.625 c
0.42749 0.62915 0.397949 0.631348 0.35498 0.631348 c
0.171875 0.631348 l
0.171875 0.375488 l
f}bind def end
/X0 Ff/Encoding get 8/8 put
q[6.25 0 0 -6.25 583.036 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<08>Tj
Q
/X0 Ff/CharProcs get begin/9{n 0.0742188 0 m
0.0742188 0.71582 l
0.216797 0.71582 l
0.38623 0.208984 l
0.401855 0.161865 0.413086 0.126465 0.42041 0.103027 c
0.428467 0.128906 0.441162 0.167236 0.458496 0.217773 c
0.629883 0.71582 l
0.757324 0.71582 l
0.757324 0 l
0.666016 0 l
0.666016 0.599121 l
0.458008 0 l
0.372559 0 l
0.165527 0.609375 l
0.165527 0 l
0.0742188 0 l
f}bind def end
/X0 Ff/Encoding get 9/9 put
q[6.25 0 0 -6.25 627.474 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<09>Tj
Q
/X0 Ff/CharProcs get begin/10{n 0.0786133 0 m
0.0786133 0.71582 l
0.395996 0.71582 l
0.459717 0.71582 0.508301 0.709473 0.541504 0.696533 c
0.574707 0.683838 0.601074 0.661133 0.621094 0.628418 c
0.640869 0.595947 0.650879 0.560059 0.650879 0.520508 c
0.650879 0.469727 0.634521 0.427002 0.601562 0.39209 c
0.568848 0.357422 0.518066 0.335205 0.449219 0.325684 c
0.474121 0.313721 0.493164 0.301758 0.506348 0.290039 c
0.533936 0.264648 0.560059 0.23291 0.584961 0.194824 c
0.709473 0 l
0.590332 0 l
0.495605 0.148926 l
0.468018 0.191895 0.445312 0.224609 0.427246 0.247559 c
0.409424 0.270264 0.393311 0.286133 0.37915 0.29541 c
0.36499 0.304443 0.350586 0.310791 0.335938 0.314453 c
0.325195 0.31665 0.307617 0.317871 0.283203 0.317871 c
0.17334 0.317871 l
0.17334 0 l
0.0786133 0 l
0.17334 0.399902 m
0.376953 0.399902 l
0.420166 0.399902 0.454102 0.404297 0.478516 0.41333 c
0.50293 0.422119 0.521484 0.436523 0.53418 0.456299 c
0.546875 0.47583 0.553223 0.497314 0.553223 0.520508 c
0.553223 0.554199 0.541016 0.582031 0.516357 0.604004 c
0.491943 0.625732 0.453125 0.636719 0.399902 0.636719 c
0.17334 0.636719 l
0.17334 0.399902 l
f}bind def end
/X0 Ff/Encoding get 10/10 put
q[6.25 0 0 -6.25 2159.57 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<0A>Tj
Q
/X0 Ff/CharProcs get begin/11{n 0.0332031 0.259277 m
0.0332031 0.355225 0.0598145 0.42627 0.113281 0.472656 c
0.157715 0.510986 0.212158 0.530273 0.276367 0.530273 c
0.347656 0.530273 0.405762 0.50708 0.451172 0.460205 c
0.496338 0.413574 0.519043 0.349121 0.519043 0.266602 c
0.519043 0.199951 0.509033 0.147461 0.489014 0.109131 c
0.468994 0.0710449 0.439941 0.0412598 0.401611 0.0200195 c
0.363525 -0.000976562 0.321777 -0.0117188 0.276367 -0.0117188 c
0.203857 -0.0117188 0.145264 0.0114746 0.100342 0.0581055 c
0.0556641 0.104492 0.0332031 0.171631 0.0332031 0.259277 c
0.123535 0.259277 m
0.123535 0.192871 0.137939 0.143311 0.166992 0.110107 c
0.195801 0.0771484 0.232422 0.0605469 0.276367 0.0605469 c
0.319824 0.0605469 0.356201 0.0771484 0.385254 0.110352 c
0.414062 0.143555 0.428711 0.194092 0.428711 0.262207 c
0.428711 0.326172 0.414307 0.374756 0.38501 0.407959 c
0.355957 0.440918 0.319824 0.45752 0.276367 0.45752 c
0.232422 0.45752 0.196045 0.441162 0.166992 0.408203 c
0.138184 0.375488 0.123535 0.325684 0.123535 0.259277 c
f}bind def end
/X0 Ff/Encoding get 11/11 put
q[6.25 0 0 -6.25 2207.68 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<0B>Tj
Q
/X0 Ff/CharProcs get begin/12{n 0.404297 0.189941 m
0.490723 0.178711 l
0.481445 0.119141 0.457275 0.0725098 0.418213 0.0388184 c
0.379395 0.00512695 0.331543 -0.0117188 0.274902 -0.0117188 c
0.204102 -0.0117188 0.146973 0.0114746 0.10376 0.0578613 c
0.060791 0.104248 0.0390625 0.170654 0.0390625 0.257324 c
0.0390625 0.313232 0.0483398 0.362305 0.0668945 0.404297 c
0.0854492 0.446289 0.113525 0.477783 0.151611 0.498779 c
0.189453 0.519775 0.230713 0.530273 0.275391 0.530273 c
0.331543 0.530273 0.377686 0.516113 0.413574 0.487549 c
0.449219 0.459229 0.472168 0.418701 0.482422 0.366211 c
0.396973 0.353027 l
0.388916 0.387695 0.374512 0.414062 0.35376 0.431641 c
0.333252 0.449219 0.308105 0.458008 0.278809 0.458008 c
0.234619 0.458008 0.19873 0.442139 0.170898 0.4104 c
0.143311 0.378662 0.129395 0.328613 0.129395 0.259766 c
0.129395 0.190186 0.142578 0.139648 0.169434 0.10791 c
0.196045 0.076416 0.230957 0.0605469 0.273926 0.0605469 c
0.30835 0.0605469 0.337158 0.0710449 0.360352 0.0922852 c
0.383301 0.113281 0.397949 0.145996 0.404297 0.189941 c
f}bind def end
/X0 Ff/Encoding get 12/12 put
q[6.25 0 0 -6.25 2244.74 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<0C>Tj
Q
/X0 Ff/CharProcs get begin/13{n 0.0664062 0 m
0.0664062 0.71582 l
0.154297 0.71582 l
0.154297 0.307617 l
0.362305 0.518555 l
0.476074 0.518555 l
0.277832 0.326172 l
0.496094 0 l
0.387695 0 l
0.216309 0.265137 l
0.154297 0.205566 l
0.154297 0 l
0.0664062 0 l
f}bind def end
/X0 Ff/Encoding get 13/13 put
q[6.25 0 0 -6.25 2278.05 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<0D>Tj
Q
/X0 Ff/CharProcs get begin/14{n -0.00146484 0 m
0.273438 0.71582 l
0.375488 0.71582 l
0.668457 0 l
0.560547 0 l
0.477051 0.216797 l
0.177734 0.216797 l
0.0991211 0 l
-0.00146484 0 l
0.205078 0.293945 m
0.447754 0.293945 l
0.373047 0.492188 l
0.350342 0.552246 0.333496 0.601807 0.322266 0.640625 c
0.313232 0.594727 0.300293 0.549316 0.283691 0.503906 c
0.205078 0.293945 l
f}bind def end
/X0 Ff/Encoding get 14/14 put
q[6.25 0 0 -6.25 2311.36 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<0E>Tj
Q
/X0 Ff/CharProcs get begin/15{n 0.405762 0 m
0.405762 0.0761719 l
0.365479 0.0175781 0.310547 -0.0117188 0.241211 -0.0117188 c
0.210693 -0.0117188 0.182129 -0.00585938 0.155518 0.00585938 c
0.12915 0.0175781 0.109375 0.0322266 0.0964355 0.0500488 c
0.0837402 0.067627 0.074707 0.0893555 0.0693359 0.115234 c
0.065918 0.132324 0.0639648 0.159668 0.0639648 0.197266 c
0.0639648 0.518555 l
0.151855 0.518555 l
0.151855 0.230957 l
0.151855 0.185059 0.153564 0.154297 0.157227 0.138184 c
0.162598 0.115234 0.174316 0.0969238 0.192383 0.0837402 c
0.210205 0.0705566 0.232422 0.0639648 0.258789 0.0639648 c
0.285156 0.0639648 0.309814 0.0705566 0.333008 0.0842285 c
0.355957 0.0976562 0.372314 0.115967 0.38208 0.139404 c
0.391602 0.162598 0.396484 0.196289 0.396484 0.240723 c
0.396484 0.518555 l
0.484375 0.518555 l
0.484375 0 l
0.405762 0 l
f}bind def end
/X0 Ff/Encoding get 15/15 put
q[6.25 0 0 -6.25 2355.8 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<0F>Tj
Q
/X0 Ff/CharProcs get begin/16{n 0.257812 0.0786133 m
0.270508 0.000976562 l
0.24585 -0.00415039 0.223633 -0.00683594 0.204102 -0.00683594 c
0.172363 -0.00683594 0.147461 -0.00195312 0.129883 0.00830078 c
0.112305 0.0183105 0.100098 0.0314941 0.0927734 0.0480957 c
0.0856934 0.0644531 0.0820312 0.0991211 0.0820312 0.151855 c
0.0820312 0.450195 l
0.0175781 0.450195 l
0.0175781 0.518555 l
0.0820312 0.518555 l
0.0820312 0.646973 l
0.169434 0.699707 l
0.169434 0.518555 l
0.257812 0.518555 l
0.257812 0.450195 l
0.169434 0.450195 l
0.169434 0.146973 l
0.169434 0.12207 0.170898 0.105957 0.174072 0.0986328 c
0.177002 0.0915527 0.182129 0.0859375 0.189209 0.081543 c
0.196045 0.0773926 0.206055 0.0751953 0.219238 0.0751953 c
0.229004 0.0751953 0.241699 0.0761719 0.257812 0.0786133 c
f}bind def end
/X0 Ff/Encoding get 16/16 put
q[6.25 0 0 -6.25 2392.85 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<10>Tj
Q
q[6.25 0 0 -6.25 2411.37 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<0B>Tj
Q
q[6.25 0 0 -6.25 2448.42 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<06>Tj
Q
/X0 Ff/CharProcs get begin/17{n 0.0483398 0.348633 m
0.0483398 0.467285 0.0800781 0.560303 0.144043 0.627686 c
0.207764 0.694824 0.290039 0.728516 0.391113 0.728516 c
0.457031 0.728516 0.516602 0.712891 0.569824 0.681152 c
0.622803 0.649658 0.66333 0.605713 0.691162 0.549072 c
0.718994 0.492676 0.73291 0.428711 0.73291 0.356934 c
0.73291 0.284424 0.718262 0.219482 0.688965 0.162109 c
0.659668 0.10498 0.618164 0.0615234 0.564453 0.0319824 c
0.510742 0.00268555 0.452881 -0.012207 0.390625 -0.012207 c
0.323242 -0.012207 0.263184 0.00390625 0.209961 0.0366211 c
0.156982 0.0690918 0.116699 0.113525 0.0893555 0.169922 c
0.0620117 0.226074 0.0483398 0.285645 0.0483398 0.348633 c
0.145996 0.347168 m
0.145996 0.260986 0.169189 0.193115 0.215576 0.143311 c
0.261963 0.09375 0.320068 0.0688477 0.390137 0.0688477 c
0.461426 0.0688477 0.52002 0.09375 0.566162 0.144043 c
0.612061 0.194092 0.635254 0.265137 0.635254 0.357422 c
0.635254 0.415527 0.625488 0.466553 0.605713 0.51001 c
0.586182 0.553467 0.557373 0.587158 0.519287 0.611084 c
0.481445 0.63501 0.438965 0.646973 0.391602 0.646973 c
0.324707 0.646973 0.266846 0.624023 0.218506 0.577881 c
0.170166 0.531982 0.145996 0.455078 0.145996 0.347168 c
f}bind def end
/X0 Ff/Encoding get 17/17 put
q[6.25 0 0 -6.25 2466.93 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<11>Tj
Q
/X0 Ff/CharProcs get begin/18{n 0.0649414 0 m
0.0649414 0.518555 l
0.144043 0.518555 l
0.144043 0.439941 l
0.164062 0.476562 0.182861 0.500977 0.199951 0.512695 c
0.217041 0.524414 0.23584 0.530273 0.256348 0.530273 c
0.285889 0.530273 0.315918 0.520996 0.34668 0.501953 c
0.316406 0.42041 l
0.294922 0.433105 0.273438 0.439453 0.251953 0.439453 c
0.23291 0.439453 0.215576 0.433838 0.200195 0.422119 c
0.185059 0.410645 0.174072 0.394531 0.16748 0.374023 c
0.157715 0.342773 0.152832 0.308594 0.152832 0.271484 c
0.152832 0 l
0.0649414 0 l
f}bind def end
/X0 Ff/Encoding get 18/18 put
q[6.25 0 0 -6.25 2518.75 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<12>Tj
Q
/X0 Ff/CharProcs get begin/19{n 0.402344 0 m
0.402344 0.0654297 l
0.369629 0.0141602 0.321289 -0.0117188 0.257324 -0.0117188 c
0.216064 -0.0117188 0.177979 -0.000488281 0.143311 0.0224609 c
0.108643 0.045166 0.0817871 0.0769043 0.0627441 0.11792 c
0.0437012 0.158691 0.0341797 0.205566 0.0341797 0.258789 c
0.0341797 0.310547 0.0427246 0.357422 0.0600586 0.399658 c
0.0771484 0.44165 0.103027 0.474121 0.137695 0.496582 c
0.172119 0.519043 0.210693 0.530273 0.253418 0.530273 c
0.284668 0.530273 0.3125 0.523682 0.336914 0.510498 c
0.361328 0.497314 0.381104 0.480225 0.396484 0.458984 c
0.396484 0.71582 l
0.483887 0.71582 l
0.483887 0 l
0.402344 0 l
0.124512 0.258789 m
0.124512 0.192383 0.138428 0.142822 0.166504 0.109863 c
0.194336 0.0771484 0.227539 0.0605469 0.265625 0.0605469 c
0.303955 0.0605469 0.33667 0.0761719 0.363525 0.107666 c
0.390381 0.138916 0.403809 0.187012 0.403809 0.251465 c
0.403809 0.322266 0.390137 0.374512 0.362793 0.407715 c
0.335449 0.440918 0.301758 0.45752 0.261719 0.45752 c
0.222656 0.45752 0.190186 0.44165 0.163818 0.409668 c
0.137695 0.37793 0.124512 0.327637 0.124512 0.258789 c
f}bind def end
/X0 Ff/Encoding get 19/19 put
q[6.25 0 0 -6.25 2540.94 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<13>Tj
Q
/X0 Ff/CharProcs get begin/20{n 0.420898 0.166992 m
0.511719 0.155762 l
0.497559 0.102783 0.470947 0.0615234 0.432129 0.0322266 c
0.393555 0.00292969 0.343994 -0.0117188 0.283691 -0.0117188 c
0.208008 -0.0117188 0.147705 0.0114746 0.103271 0.0583496 c
0.0588379 0.10498 0.0366211 0.17041 0.0366211 0.254883 c
0.0366211 0.342041 0.059082 0.409668 0.104004 0.458008 c
0.148926 0.506104 0.207031 0.530273 0.278809 0.530273 c
0.348145 0.530273 0.404785 0.506836 0.44873 0.459473 c
0.492676 0.412354 0.514648 0.345947 0.514648 0.260254 c
0.514648 0.255127 0.514648 0.247314 0.51416 0.236816 c
0.127441 0.236816 l
0.130615 0.179932 0.146729 0.13623 0.175781 0.105957 c
0.20459 0.0756836 0.240723 0.0605469 0.28418 0.0605469 c
0.316406 0.0605469 0.34375 0.0688477 0.366699 0.0859375 c
0.389404 0.102783 0.407471 0.129883 0.420898 0.166992 c
0.132324 0.309082 m
0.421875 0.309082 l
0.417969 0.352539 0.406982 0.385254 0.388672 0.407227 c
0.36084 0.440918 0.324463 0.458008 0.279785 0.458008 c
0.239502 0.458008 0.205566 0.44458 0.177979 0.41748 c
0.150635 0.390625 0.135254 0.354492 0.132324 0.309082 c
f}bind def end
/X0 Ff/Encoding get 20/20 put
q[6.25 0 0 -6.25 2577.99 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<14>Tj
Q
q[6.25 0 0 -6.25 2615.05 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<12>Tj
Q
q[6.25 0 0 -6.25 2637.23 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<06>Tj
Q
/X0 Ff/CharProcs get begin/21{n 0.587891 0.250977 m
0.682617 0.227051 l
0.662842 0.149414 0.627197 0.0900879 0.575439 0.0490723 c
0.523926 0.00830078 0.460938 -0.012207 0.38623 -0.012207 c
0.309082 -0.012207 0.246338 0.00341797 0.197998 0.0349121 c
0.149658 0.0661621 0.113037 0.111816 0.0876465 0.171387 c
0.0625 0.230957 0.0498047 0.294922 0.0498047 0.363281 c
0.0498047 0.437744 0.0639648 0.502686 0.0925293 0.55835 c
0.12085 0.61377 0.161377 0.656006 0.214111 0.684814 c
0.266602 0.713623 0.324463 0.728027 0.387695 0.728027 c
0.459229 0.728027 0.519531 0.709961 0.568359 0.67334 c
0.617188 0.636963 0.651123 0.585693 0.67041 0.519531 c
0.577148 0.497559 l
0.560547 0.549561 0.536621 0.587402 0.504883 0.611328 c
0.473389 0.63501 0.433594 0.646973 0.385742 0.646973 c
0.330811 0.646973 0.284912 0.633789 0.247803 0.607422 c
0.210938 0.581055 0.185059 0.545654 0.169922 0.501221 c
0.155029 0.456787 0.147461 0.411133 0.147461 0.36377 c
0.147461 0.302979 0.15625 0.249756 0.174072 0.204346 c
0.19165 0.158936 0.219238 0.125 0.256836 0.102539 c
0.294189 0.0800781 0.334717 0.0688477 0.378418 0.0688477 c
0.431396 0.0688477 0.476318 0.0839844 0.513184 0.114746 c
0.549805 0.145264 0.574707 0.190674 0.587891 0.250977 c
f}bind def end
/X0 Ff/Encoding get 21/21 put
q[6.25 0 0 -6.25 2655.74 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<15>Tj
Q
q[6.25 0 0 -6.25 2703.86 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<0B>Tj
Q
/X0 Ff/CharProcs get begin/22{n 0.065918 0 m
0.065918 0.518555 l
0.14502 0.518555 l
0.14502 0.444824 l
0.183105 0.501709 0.238037 0.530273 0.310059 0.530273 c
0.341309 0.530273 0.369873 0.524658 0.39624 0.513428 c
0.422363 0.502197 0.441895 0.487549 0.455078 0.469238 c
0.468018 0.451172 0.477051 0.429443 0.482422 0.404297 c
0.485596 0.388184 0.487305 0.359619 0.487305 0.318848 c
0.487305 0 l
0.399414 0 l
0.399414 0.31543 l
0.399414 0.351074 0.395996 0.37793 0.38916 0.395752 c
0.382324 0.41333 0.370361 0.42749 0.352783 0.438232 c
0.335449 0.44873 0.314941 0.454102 0.291504 0.454102 c
0.25415 0.454102 0.221924 0.442383 0.19458 0.418457 c
0.16748 0.394775 0.153809 0.349609 0.153809 0.283203 c
0.153809 0 l
0.065918 0 l
f}bind def end
/X0 Ff/Encoding get 22/22 put
q[6.25 0 0 -6.25 2740.91 181.25]cm
/X0 Ff 10.66 Fs Sf 0 0 m<16>Tj
Q
/X0 Ff/CharProcs get begin/23{n 0.0869141 0 m
0.0869141 0.450195 l
0.00927734 0.450195 l
0.00927734 0.518555 l
0.0869141 0.518555 l
0.0869141 0.57373 l
0.0869141 0.608398 0.0898438 0.634277 0.0961914 0.651367 c
0.104492 0.674072 0.119385 0.692627 0.140869 0.706787 c
0.162109 0.720947 0.191895 0.728027 0.230469 0.728027 c
0.255127 0.728027 0.282471 0.725098 0.3125 0.719238 c
0.299316 0.642578 l
0.28125 0.645752 0.263916 0.647461 0.247559 0.647461 c
0.220947 0.647461 0.202148 0.641846 0.190918 0.630371 c
0.179932 0.619141 0.174316 0.597656 0.174316 0.566406 c
0.174316 0.518555 l
0.275391 0.518555 l
0.275391 0.450195 l
0.174316 0.450195 l
0.174316 0 l
0.0869141 0 l
f}bind def end
/X0 Ff/Encoding get 23/23 put
q[6.25 0 0 -6.25 2777.97 181.25]cm