Projects



PTCNets: SyncProducerConsumer.eps

File SyncProducerConsumer.eps, 78.5 KB (added by 8voss, 2 years ago)
Line 
1%!PS-Adobe-3.0 EPSF-3.0
2%%BoundingBox: 0 0 442 179
3%%Creator: FreeHEP Graphics2D Driver
4%%Producer: org.freehep.graphicsio.ps.EPSGraphics2D Revision: 12753
5%%For:
6%%Title:
7%%CreationDate: Monday, March 21, 2022 at 3:59:02 PM Central European Standard Time
8%%LanguageLevel: 3
9%%EndComments
10%%BeginProlog
11100 dict dup begin
12
13%
14% File: org/freehep/graphicsio.ps/PSProlog.txt
15% Author: Charles Loomis
16%
17
18% Redefinitions which save some space in the output file.  These are also
19% the same as the PDF operators.
20/q {gsave} def
21/Q {grestore} def
22
23/n {newpath} def
24/m {moveto} def
25/l {lineto} def
26/c {curveto} def
27/h {closepath} def
28
29/re {4 -2 roll moveto
30     dup 0 exch rlineto exch 0 rlineto
31     neg 0 exch rlineto closepath} def
32
33/f {fill} def
34/f* {eofill} def
35/F {gsave vg&FC fill grestore} def
36/F* {gsave vg&FC eofill grestore} def
37
38/s {closepath stroke} def
39/S {stroke} def
40
41/b {closepath gsave vg&FC fill grestore
42    gsave stroke grestore newpath} def
43/B {gsave vg&FC fill grestore gsave stroke grestore newpath} def
44/b* {closepath gsave vg&FC eofill grestore
45    gsave stroke grestore newpath} def
46/B* {gsave vg&FC eofill grestore gsave stroke grestore newpath} def
47
48/g {1 array astore /vg&fcolor exch def} def
49/G {setgray} def
50/k {4 array astore /vg&fcolor exch def} def
51/K {setcmykcolor} def
52/rg {3 array astore /vg&fcolor exch def} def
53/RG {setrgbcolor} def
54
55% Initialize the fill color.
560 0 0 rg
57
58/vg&FC {mark vg&fcolor aload pop
59        counttomark 1 eq {G} if
60        counttomark 3 eq {RG} if
61        counttomark 4 eq {K} if
62        cleartomark } def
63
64/vg&DFC {/vg&fcolor exch def} def
65
66/vg&C {mark exch aload pop
67       counttomark 1 eq {G} if
68       counttomark 3 eq {RG} if
69       counttomark 4 eq {K} if
70       cleartomark } def
71
72/w {setlinewidth} def
73/j {setlinejoin} def
74/J {setlinecap} def
75/M {setmiterlimit} def
76/d {setdash} def
77/i {setflat} def
78
79/W {clip} def
80/W* {eoclip} def
81
82% Setup the default graphics state.
83% (black; 1 pt. linewidth; miter join; butt-ends; solid)
84/defaultGraphicsState {0 g 1 w 0 j 0 J [] 0 d} def
85
86% Emulation of the rectangle operators for PostScript implementations
87% which do not implement all Level 2 features.  This is an INCOMPLETE
88% emulation; only the "x y width height rect..." form is emulated.
89/*rf {gsave newpath re fill grestore} def
90/*rs {gsave newpath re stroke grestore} def
91/*rc {newpath re clip} def
92/rf  /rectfill where {pop /rectfill}{/*rf} ifelse load def
93/rs  /rectstroke where {pop /rectstroke}{/*rs} ifelse load def
94/rc  /rectclip where {pop /rectclip}{/*rc} ifelse load def
95
96% Emulation of the selectfont operator.  This includes a 20% increase in
97% the fontsize which is necessary to get sizes similar to the Java fonts.
98/*sf {exch findfont exch
99      dup type /arraytype eq {makefont}{scalefont} ifelse setfont} bind def
100/sf /selectfont where {pop {1.2 mul selectfont}}{{1.2 mul *sf}} ifelse def
101
102% Special version of stroke which allows the dash pattern to continue
103% across path segments.  (This may be needed for PostScript although
104% modern printers seem to do this correctly.)
105/vg&stroke {
106  currentdash pop length 0 eq
107  {stroke}
108  {
109    currentdash /vg&doffset exch def pop
110    flattenpath
111    {m vg&resetdash}
112    {2 copy
113     currentpoint
114     3 -1 roll sub dup mul
115     3 1 roll sub dup mul
116     add sqrt
117     3 1 roll l
118     currentdash 3 -1 roll add setdash}
119     {}
120     {h vg&resetdash}
121     pathforall
122     stroke
123     vg&resetdash
124  } ifelse
125} def
126/vg&resetdash {currentdash pop vg&doffset setdash} def
127
128% Initialize variables for safety.
129/delta 0 def
130/xv 0 def  /yv 0 def  /width 0 def  /height 0 def
131
132% Initialize to portrait INTERNATIONAL (Letter-height, A4-width) page.
133/pw 595 def  /ph 791  def  /po true def /ftp false def
134
135% Initialize margins to 20 points.
136/ml 20 def  /mr 20 def  /mt 20 def  /mb 20 def
137
138% Temporary matrices.
139/smatrix 0 def  /nmatrix 0 def
140
141% set page size (usage: <page width><page height> setpagesize)
142/setpagesize {/ph exch def /pw exch def} def
143
144% set page orientation (usage: portrait or landscape)
145/portrait {/po true def} def
146/landscape {/po false def} def
147
148% force natural size for image (usage: naturalsize)
149/naturalsize {/ftp false def} def
150
151% resize image to fill page (usage: fittopage)
152/fittopage {/ftp true def} def
153
154% set margins of the page (usage: <left><bottom><top><right> setmargins)
155/setmargins {/mr exch def /mt exch def /mb exch def /ml exch def} def
156
157% set the graphic's size (usage: <width><height> setsize)
158/setsize {/gh exch def /gw exch def} def
159
160% set the graphic's origin (usage: <x0><y0> setorigin)
161/setorigin {/gy exch def /gx exch def} def
162
163% calculate image center
164/imagecenter {pw ml sub mr sub 2 div ml add
165              ph mt sub mb sub 2 div mb add} def
166
167% calculate the necessary scaling
168/imagescale {po {gw}{gh} ifelse pw ml sub mr sub div
169             po {gh}{gw} ifelse ph mt sub mb sub div
170             2 copy lt {exch} if pop
171             ftp not {1 2 copy lt {exch} if pop} if
172             1 exch div /sfactor exch def
173             /gw gw sfactor mul def /gh gh sfactor mul def} def
174
175% calculate image origin
176/imageorigin {pw ml sub mr sub 2 div ml add
177              po {gw}{gh} ifelse 2 div sub
178              ph mt sub mb sub 2 div mb add
179              po {gh}{gw} ifelse 2 div po {add}{sub} ifelse} def
180
181% calculate the clipping origin
182/cliporigin  {pw ml sub mr sub 2 div ml add
183              po {gw}{gh} ifelse 2 div sub floor
184              ph mt sub mb sub 2 div mb add
185              po {gh}{gw} ifelse 2 div sub floor} def
186
187% Set the clipping region to the bounding box.
188/cliptobounds {cliporigin po {gw}{gh} ifelse 1 add
189                          po {gh}{gw} ifelse 1 add rc} def
190
191% set the base transformation matrix (usage: setbasematrix)
192/setbasematrix {imageorigin translate
193                po {0}{90} ifelse rotate
194                sfactor sfactor neg scale
195                /defaultmatrix matrix currentmatrix def} def
196
197% The lower-right bias in drawing 1 pt. wide lines.
198/bias  {q 0.5 0.5 translate} def
199/unbias {Q} def
200
201% Define the composite fonts used to print Unicode strings.
202% Undefine particular values in an encoding array.
203/vg&undef { {exch dup 3 -1 roll /.notdef put} forall } def
204/vg&redef { {3 -1 roll dup 4 2 roll put} forall } def
205
206% usage: key encoding basefontname vg&newbasefont font
207/vg&newbasefont {
208findfont dup length dict copy
209  begin
210    currentdict /FID undef
211    /Encoding exch def
212    dup /FontName exch def
213    currentdict
214  end
215definefont
216} def
217
218% usage: key encoding basefontname vg&newskewedbasefont font
219/vg&newskewedbasefont {
220findfont dup length dict copy
221  begin
222    currentdict /FID undef
223    /Encoding exch def
224    dup /FontName exch def
225    exch FontMatrix exch matrix concatmatrix /FontMatrix exch def
226    currentdict
227  end
228definefont
229} def
230
231% usage: basekey suffix vg&nconcat name
232/vg&nconcat {
233  2 {dup length string cvs exch} repeat
234  dup length 3 -1 roll dup length 3 -1 roll add string
235  dup 0 4 -1 roll dup length 5 1 roll putinterval
236  dup 4 -2 roll exch putinterval cvn
237} def
238
239%usage: fontname vg&skewmatrix matrix
240/vg&skewmatrix {
241findfont dup /FontInfo known
242  {
243    /FontInfo get dup /ItalicAngle known
244    {
245      [ 1 0 4 -1 roll /ItalicAngle get neg dup sin exch cos div 1 0 0 ]
246    }
247    {pop matrix} ifelse
248  }
249  {pop matrix} ifelse
250} def
251
252% usage: newfontname basefontname vg&newcompositefont --
253/vg&newcompositefont {
254/vg&fstyle exch def
255/vg&bfont exch def
256/vg&fname exch def
257<<
258/FontStyleBits vg&fstyle
259/FontType 0
260/FontMatrix matrix
261/FontName vg&fname
262/FMapType 2
263/Encoding [ 0 1 255 {pop 6} for ]
264          dup 16#00 0 put % Latin
265          dup 16#03 1 put % Greek
266          dup 16#20 2 put % Punctuation
267          dup 16#21 3 put % Arrows
268          dup 16#22 4 put % MathOps
269          dup 16#27 5 put % Dingbats
270
271/FDepVector [
272vg&bfont /-UC-Latin vg&nconcat UCLatinEncoding
273vg&bfont vg&newbasefont
274
275vg&bfont vg&skewmatrix
276vg&bfont /-UC-Greek vg&nconcat UCGreekEncoding
277/Symbol vg&newskewedbasefont
278
279vg&bfont /-UC-Punctuation vg&nconcat UCPunctuationEncoding
280vg&bfont vg&newbasefont
281
282/Arrows-UC findfont
283/MathOps-UC findfont
284/Dingbats-UC findfont
285/Undefined-UC findfont ]
286>>
287vg&fname exch definefont pop
288} def
289
290% Null encoding vector (all elements set to .notdef)
291/NullEncoding [ 256 {/.notdef} repeat ] def
292
293% Unicode Latin encoding (unicode codes \u0000-\u00ff)
294/UCLatinEncoding
295  ISOLatin1Encoding dup length array copy
296  dup 16#60 /grave put
297  [ 16#90 16#91 16#92 16#93 16#94 16#95 16#96
298    16#97 16#98 16#9a 16#9b 16#9d 16#9e 16#9f
299  ] vg&undef
300  def
301
302% Unicode Greek encoding (unicode codes \u0370-\u03ff)
303/UCGreekEncoding
304  NullEncoding dup length array copy
305  << 16#91 /Alpha    16#92 /Beta      16#93 /Gamma    16#94 /Delta
306     16#95 /Epsilon  16#96 /Zeta      16#97 /Eta      16#98 /Theta
307     16#99 /Iota     16#9a /Kappa     16#9b /Lambda   16#9c /Mu
308     16#9d /Nu       16#9e /Xi        16#9f /Omicron  16#a0 /Pi
309     16#a1 /Rho      16#a3 /Sigma     16#a4 /Tau      16#a5 /Upsilon
310     16#a6 /Phi      16#a7 /Chi       16#a8 /Psi      16#a9 /Omega
311     16#b1 /alpha    16#b2 /beta      16#b3 /gamma    16#b4 /delta
312     16#b5 /epsilon  16#b6 /zeta      16#b7 /eta      16#b8 /theta
313     16#b9 /iota     16#ba /kappa     16#bb /lambda   16#bc /mu
314     16#bd /nu       16#be /xi        16#bf /omicron  16#c0 /pi
315     16#c1 /rho      16#c2 /sigma1    16#c3 /sigma    16#c4 /tau
316     16#c5 /upsilon  16#c6 /phi1      16#c7 /chi      16#c8 /psi
317     16#c9 /omega    16#7e /semicolon 16#87 /dotmath  16#d1 /theta1
318     16#d2 /Upsilon1 16#d5 /phi       16#d6 /omega1
319  >> vg&redef
320  def
321
322% Unicode punctuation encoding (unicode codes \u2000-\u206f)
323/UCPunctuationEncoding
324  NullEncoding dup length array copy
325  << 16#10 /hyphen          16#11 /hyphen              16#12 /endash
326     16#13 /emdash          16#18 /quoteleft           16#19 /quoteright
327     16#1a /quotesinglbase  16#1b /quotesingle         16#1c /quotedblleft
328     16#1d /quotedblright   16#1e /quotedblbase        16#1f /quotedbl
329     16#20 /dagger          16#21 /daggerdbl           16#22 /bullet
330     16#24 /period          16#26 /ellipsis            16#27 /periodcentered
331     16#30 /perthousand     16#44 /fraction
332     16#70 /zerosuperior    16#74 /foursuperior        16#75 /fivesuperior
333     16#76 /sixsuperior     16#77 /sevensuperior       16#78 /eightsuperior
334     16#79 /ninesuperior    16#7b /hyphensuperior      16#7d /parenleftsuperior
335     16#7e /parenrightsuperior
336     16#80 /zeroinferior    16#84 /fourinferior        16#85 /fiveinferior
337     16#81 /oneinferior     16#82 /twoinferior         16#83 /threeinferior
338     16#86 /sixinferior     16#87 /seveninferior       16#88 /eightinferior
339     16#89 /nineinferior    16#8b /hypheninferior      16#8d /parenleftinferior
340     16#8e /parenrightinferior
341  >> vg&redef
342  def
343
344% Unicode mathematical operators encoding (unicode codes \u2200-\u22ff)
345/UCMathOpsEncoding
346  NullEncoding dup length array copy
347  << 16#00 /universal       16#02 /partialdiff         16#03 /existential
348     16#05 /emptyset        16#06 /Delta               16#07 /gradient
349     16#08 /element         16#09 /notelement          16#0b /suchthat
350     16#0f /product         16#11 /summation           16#12 /minus
351     16#15 /fraction        16#17 /asteriskmath        16#19 /bullet
352     16#1a /radical         16#1d /proportional        16#1e /infinity
353     16#20 /angle           16#23 /bar                 16#27 /logicaland
354     16#28 /logicalor       16#29 /intersection        16#2a /union
355     16#2b /integral        16#34 /therefore           16#36 /colon
356     16#3c /similar         16#45 /congruent           16#48 /approxequal
357     16#60 /notequal        16#61 /equivalence         16#64 /lessequal
358     16#65 /greaterequal    16#82 /propersubset        16#83 /propersuperset
359     16#86 /reflexsubset    16#87 /reflexsuperset      16#95 /circleplus
360     16#97 /circlemultiply  16#a5 /perpendicular       16#03 /existential
361     16#c0 /logicaland      16#c1 /logicalor           16#c2 /intersection
362     16#c3 /union           16#c4 /diamond             16#c5 /dotmath
363  >> vg&redef
364  def
365
366% Unicode arrows encoding (unicode codes \u2190-\u21ff)
367% Also includes those "Letterlike" unicode characters
368% which are available in the symbol font. (unicode codes \u2100-\u214f)
369/UCArrowsEncoding
370  NullEncoding dup length array copy
371  << 16#11 /Ifraktur        16#1c /Rfraktur            16#22 /trademarkserif
372     16#35 /aleph
373     16#90 /arrowleft       16#91 /arrowup             16#92 /arrowright
374     16#93 /arrowdown       16#94 /arrowboth           16#d0 /arrowdblleft
375     16#d1 /arrowdblup      16#d2 /arrowdblright       16#d3 /arrowdbldown
376     16#d4 /arrowdblboth
377  >> vg&redef
378  def
379
380/ZapfDingbats findfont /Encoding get
381dup length array copy /UCDingbatsEncoding exch def
38216#20 1 16#7f {
383  dup 16#20 sub exch
384  UCDingbatsEncoding exch get
385  UCDingbatsEncoding 3 1 roll put
386} for
38716#a0 1 16#ff {
388  dup 16#40 sub exch
389  UCDingbatsEncoding exch get
390  UCDingbatsEncoding 3 1 roll put
391} for
392UCDingbatsEncoding [ 16#c0 1 16#ff {} for ] vg&undef
393[ 16#00  16#05 16#0a 16#0b  16#28 16#4c 16#4e  16#53 16#54 16#55  16#57 16#5f
394  16#60  16#68 16#69 16#6a  16#6b 16#6c 16#6d  16#6e 16#6f 16#70  16#71 16#72
395  16#73  16#74 16#75 16#95  16#96 16#97 16#b0  16#bf
396] vg&undef pop
397
398% Define the base fonts which don't change.
399/Undefined-UC NullEncoding       /Helvetica    vg&newbasefont pop
400/MathOps-UC   UCMathOpsEncoding  /Symbol       vg&newbasefont pop
401/Arrows-UC    UCArrowsEncoding   /Symbol       vg&newbasefont pop
402/Dingbats-UC  UCDingbatsEncoding /ZapfDingbats vg&newbasefont pop
403
404% Make the SansSerif composite fonts.
405/SansSerif /Helvetica 16#00 vg&newcompositefont
406/SansSerif-Bold /Helvetica-Bold 16#01 vg&newcompositefont
407/SansSerif-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
408/SansSerif-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
409
410% Make the Serif composite fonts.
411/Serif /Times-Roman 16#00 vg&newcompositefont
412/Serif-Bold /Times-Bold 16#01 vg&newcompositefont
413/Serif-Italic /Times-Italic 16#02 vg&newcompositefont
414/Serif-BoldItalic /Times-BoldItalic 16#03 vg&newcompositefont
415
416% Make the Monospaced composite fonts.
417/Monospaced /Courier 16#00 vg&newcompositefont
418/Monospaced-Bold /Courier-Bold 16#01 vg&newcompositefont
419/Monospaced-Italic /Courier-Oblique 16#02 vg&newcompositefont
420/Monospaced-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
421
422% Make the Dialog composite fonts.
423/Dialog /Helvetica 16#00 vg&newcompositefont
424/Dialog-Bold /Helvetica-Bold 16#01 vg&newcompositefont
425/Dialog-Italic /Helvetica-Oblique 16#02 vg&newcompositefont
426/Dialog-BoldItalic /Helvetica-BoldOblique 16#03 vg&newcompositefont
427
428% Make the DialogInput composite fonts.
429/DialogInput /Courier 16#00 vg&newcompositefont
430/DialogInput-Bold /Courier-Bold 16#01 vg&newcompositefont
431/DialogInput-Italic /Courier-Oblique 16#02 vg&newcompositefont
432/DialogInput-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
433
434% Make the Typewriter composite fonts (JDK 1.1 only).
435/Typewriter /Courier 16#00 vg&newcompositefont
436/Typewriter-Bold /Courier-Bold 16#01 vg&newcompositefont
437/Typewriter-Italic /Courier-Oblique 16#02 vg&newcompositefont
438/Typewriter-BoldItalic /Courier-BoldOblique 16#03 vg&newcompositefont
439
440
441/cfontH {
442 dup /fontsize exch def /SansSerif exch sf
443 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
444} def
445/cfontHB {
446  dup /fontsize exch def /SansSerif-Bold exch sf
447 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
448} def
449/cfontHI {
450 dup /fontsize exch def /SansSerif-Italic exch sf
451 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
452} def
453/cfontHBI {
454 dup /fontsize exch def /SansSerif-BoldItalic exch sf
455 /vg&fontstyles [{cfontH} {cfontHB} {cfontHI} {cfontHBI}] def
456} def
457
458/cfontT {
459 dup /fontsize exch def /Serif exch sf
460 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
461} def
462/cfontTB {
463 dup /fontsize exch def /Serif-Bold exch sf
464 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
465} def
466/cfontTI {
467 dup /fontsize exch def /Serif-Italic exch sf
468 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
469} def
470/cfontTBI {
471 dup /fontsize exch def /Serif-BoldItalic exch sf
472 /vg&fontstyles [{cfontT} {cfontTB} {cfontTI} {cfontTBI}] def
473} def
474
475/cfontC {
476 dup /fontsize exch def /Typewriter exch sf
477 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
478} def
479/cfontCB {
480 dup /fontsize exch def /Typewriter-Bold exch sf
481 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
482} def
483/cfontCI {
484 dup /fontsize exch def /Typewriter-Italic exch sf
485 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
486} def
487/cfontCBI {
488 dup /fontsize exch def /Typewriter-BoldItalic exch sf
489 /vg&fontstyles [{cfontC} {cfontCB} {cfontCI} {cfontCBI}] def
490} def
491
492% Darken or lighten the current color.
493/darken {0.7 exch exp 3 copy
494         q 4 -1 roll vg&C
495         currentrgbcolor 3 {4 -2 roll mul} repeat
496         3 array astore Q} def
497
498/displayColorMap
499<< /Cr   [1.00 0.00 0.00]       /Cg     [0.00 1.00 0.00]
500   /Cb   [0.00 0.00 1.00]       /Cc     [1.00 0.00 0.00 0.00]
501   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
502   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
503   /Cw   [1   ]                 /Cgrl   [0.75]
504   /Cgr  [0.50]                 /Cgrd   [0.25]
505   /Ck   [0   ]
506   /CGr  [1.00 0.00 0.00]       /CGg    [0.00 1.00 0.00]
507   /CGb  [0.00 0.00 1.00]       /CGc    [1.00 0.00 0.00 0.00]
508   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
509   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
510   /CGw  [1   ]                 /CGgrl  [0.75]
511   /CGgr [0.50]                 /CGgrd  [0.25]
512   /CGk  [0   ]
513   /CIr  [1.00 0.00 0.00]       /CIg    [0.00 1.00 0.00]
514   /CIb  [0.00 0.00 1.00]       /CIc    [1.00 0.00 0.00 0.00]
515   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
516   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
517   /CIw  [1   ]                 /CIgrl  [0.75]
518   /CIgr [0.50]                 /CIgrd  [0.25]
519   /CIk  [0   ]
520>> def
521
522/printColorMap
523<< /Cr   [1.00 0.33 0.33]       /Cg     [0.33 1.00 0.33]
524   /Cb   [0.33 0.33 1.00]       /Cc     [1.00 0.00 0.00 0.00]
525   /Cm   [0.00 1.00 0.00 0.00]  /Cy     [0.00 0.00 1.00 0.00]
526   /Co   [1.00 0.78 0.00]       /Cp     [1.00 0.67 0.67]
527   /Cw   [1   ]                 /Cgrl   [0.75]
528   /Cgr  [0.50]                 /Cgrd   [0.25]
529   /Ck   [0   ]
530   /CGr  [1.00 0.33 0.33]       /CGg    [0.33 1.00 0.33]
531   /CGb  [0.33 0.33 1.00]       /CGc    [1.00 0.00 0.00 0.00]
532   /CGm  [0.00 1.00 0.00 0.00]  /CGy    [0.00 0.00 1.00 0.00]
533   /CGo  [1.00 0.78 0.00]       /CGp    [1.00 0.67 0.67]
534   /CGw  [1   ]                 /CGgrl  [0.75]
535   /CGgr [0.50]                 /CGgrd  [0.25]
536   /CGk  [0   ]
537   /CIr  [1.00 0.33 0.33]       /CIg    [0.33 1.00 0.33]
538   /CIb  [0.33 0.33 1.00]       /CIc    [1.00 0.00 0.00 0.00]
539   /CIm  [0.00 1.00 0.00 0.00]  /CIy    [0.00 0.00 1.00 0.00]
540   /CIo  [1.00 0.78 0.00]       /CIp    [1.00 0.67 0.67]
541   /CIw  [1   ]                 /CIgrl  [0.75]
542   /CIgr [0.50]                 /CIgrd  [0.25]
543   /CIk  [0   ]
544>> def
545
546/grayColorMap
547<< /Cr   [0   ]                 /Cg     [0   ]
548   /Cb   [0   ]                 /Cc     [0   ]
549   /Cm   [0   ]                 /Cy     [0   ]
550   /Co   [0   ]                 /Cp     [0   ]
551   /Cw   [0   ]                 /Cgrl   [0   ]
552   /Cgr  [0   ]                 /Cgrd   [0   ]
553   /Ck   [0   ]
554   /CGr  [0.75]                 /CGg    [1   ]
555   /CGb  [0.50]                 /CGc    [0.75]
556   /CGm  [0.50]                 /CGy    [1   ]
557   /CGo  [0.75]                 /CGp    [1   ]
558   /CGw  [0   ]                 /CGgrl  [0.25]
559   /CGgr [0.50]                 /CGgrd  [0.75]
560   /CGk  [1   ]
561   /CIr  [1   ]                 /CIg    [1   ]
562   /CIb  [1   ]                 /CIc    [1   ]
563   /CIm  [1   ]                 /CIy    [1   ]
564   /CIo  [1   ]                 /CIp    [1   ]
565   /CIw  [1   ]                 /CIgrl  [1   ]
566   /CIgr [1   ]                 /CIgrd  [1   ]
567   /CIk  [1   ]
568>> def
569
570/bwColorMap
571<< /Cr   [0   ]                 /Cg     [0   ]
572   /Cb   [0   ]                 /Cc     [0   ]
573   /Cm   [0   ]                 /Cy     [0   ]
574   /Co   [0   ]                 /Cp     [0   ]
575   /Cw   [0   ]                 /Cgrl   [0   ]
576   /Cgr  [0   ]                 /Cgrd   [0   ]
577   /Ck   [0   ]
578   /CGr  [1   ]                 /CGg    [1   ]
579   /CGb  [1   ]                 /CGc    [1   ]
580   /CGm  [1   ]                 /CGy    [1   ]
581   /CGo  [1   ]                 /CGp    [1   ]
582   /CGw  [0   ]                 /CGgrl  [1   ]
583   /CGgr [1   ]                 /CGgrd  [1   ]
584   /CGk  [1   ]
585   /CIr  [1   ]                 /CIg    [1   ]
586   /CIb  [1   ]                 /CIc    [1   ]
587   /CIm  [1   ]                 /CIy    [1   ]
588   /CIo  [1   ]                 /CIp    [1   ]
589   /CIw  [1   ]                 /CIgrl  [1   ]
590   /CIgr [1   ]                 /CIgrd  [1   ]
591   /CIk  [1   ]
592>> def
593
594%
595% The following routines handle the alignment of and printing of
596% tagged strings.
597%
598
599% Predefine the bounding box values.
600/bbllx 0 def /bblly 0 def /bburx 0 def /bbury 0 def
601
602% This routine pops the first unicode character off of a string and returns
603% the remainder of the string, the character code of first character,
604% and a "true" if the string was non-zero length.
605% <string>      popfirst <remaining string> <true>
606% <null string> popfirst <false>
607/popfirst {
608  dup length 1 gt
609    {dup 0 get /vg&fbyte exch def
610     dup 1 get /vg&cbyte exch def
611     dup length 2 sub 2 exch getinterval true}
612    {pop false} ifelse
613} def
614
615% This routine shows a single unicode character given the font and
616% character codes.
617% <font code> <char code> unicharshow --
618/unicharshow {
619  2 string
620  dup 0 5 -1 roll put
621  dup 1 4 -1 roll put
622  internalshow
623} def
624
625% This is an internal routine to alternate between determining the
626% bounding box for stringsize and showing the string for recshow.
627% <string> internalshow --
628/internalshow {show} def
629
630% This is an internal routine to alternate between determining the
631% bounding box for stringsize and stroking various ornaments.
632% <string> internalstroke --
633/internalstroke {S} def
634
635% Sets up internalshow to use the null device to determine string size.
636% -- nullinternalshow --
637/nullinternalshow {/internalshow {false charpath flattenpath
638                                  pathbbox updatebbox} def} def
639
640% Sets up internalstroke to use the null device to determine string size.
641% -- nullinternalstroke --
642/nullinternalstroke {
643 /internalstroke {flattenpath pathbbox updatebbox} def} def
644
645% This routine tests to see if the character code matches the first
646% character of a string.
647% <char code> <string> testchar <char code> <true or false>
648/testchar {exch dup 3 -1 roll 0 get eq} def
649
650% Raise the text baseline for superscripts.
651% -- raise --
652/raise {
653  0 fontsize 2 div rmoveto
654  /fontsize fontsize 2 mul 3 div def
655  currentfont /FontName get fontsize sf
656} def
657
658% Un-raise the text baseline for superscripts.
659% -- unraise --
660/unraise {
661  /fontsize fontsize 1.5 mul def
662  0 fontsize 2 div neg rmoveto
663} def
664
665% Lower the text baseline for subscripts.
666% -- lower --
667/lower {
668  0 fontsize 3 div neg rmoveto
669  /fontsize fontsize 2 mul 3 div def
670  currentfont /FontName get fontsize sf
671} def
672
673% Un-lower the text baseline for subscripts.
674% -- unlower --
675/unlower {
676  /fontsize fontsize 1.5 mul def
677  0 fontsize 3 div rmoveto
678} def
679
680% Compare the top two elements on the stack and leave only the
681% larger one.
682/maxval {2 copy gt {pop} {exch pop} ifelse} def
683
684% Tokenize a string.  Do not use the usual PostScript token because
685% parentheses will not be interpreted correctly because of rescanning
686% of the string.
687/vg&token {/vg&string exch def /vg&index -1 def /vg&level 0 def
6880 2 vg&string length 2 sub {
689  dup dup 1 add exch vg&string exch get 8 bitshift vg&string 3 -1 roll get or
690  dup 16#f0fe eq {pop 1}{16#f0ff eq {-1}{0} ifelse} ifelse
691  /vg&level exch vg&level add def
692  vg&level 0 eq {/vg&index exch def exit} if pop
693} for
694vg&index 0 ge {
695  vg&string vg&index 2 add dup vg&string length exch sub getinterval
696  vg&index 2 gt {vg&string 2 vg&index 2 sub getinterval}{()} ifelse
697  true}
698{false} ifelse
699} bind def
700
701% Recursively show an unicode string.
702% <string> recshow --
703/recshow {
704  popfirst
705  {
706    % Test to see if this is a string attribute.
707    vg&fbyte 16#f0 and 16#e0 eq
708    {
709      q
710
711      % Font style.
712      currentfont dup /FontStyleBits known {/FontStyleBits get}{pop 0} ifelse
713      vg&cbyte or vg&fontstyles exch get fontsize exch exec
714
715      vg&token pop recshow currentpoint Q m recshow
716    }
717    {
718      vg&fbyte 16#F8 and 16#F0 eq {
719
720        % Superscript and/or subscript.
721        vg&cbyte 16#00 eq {
722          vg&token pop exch vg&token pop 3 -1 roll
723          q raise recshow unraise currentpoint pop Q exch
724          q lower recshow unlower currentpoint pop Q
725          maxval currentpoint exch pop m recshow } if
726
727        % Strikeout.
728        vg&cbyte 16#01 eq {
729          vg&token pop currentpoint 3 -1 roll recshow
730          q 0 J vg&underline vg&uthick w
731          currentpoint 4 -2 roll fontsize 3 div add moveto
732          fontsize 3 div add lineto internalstroke Q
733          recshow} if
734
735        % Underline.
736        vg&cbyte 16#02 eq {
737          vg&token pop currentpoint 3 -1 roll recshow
738          q 0 J vg&underline vg&uthick w
739          currentpoint 4 -2 roll vg&uoffset add moveto
740          vg&uoffset add lineto internalstroke Q
741          recshow} if
742
743        % Dashed underline.
744        vg&cbyte 16#03 eq {
745          vg&token pop currentpoint 3 -1 roll recshow
746          q 0 J [ vg&uthick 5 mul vg&uthick 2 mul] 0 d
747          vg&underline vg&uthick w
748          currentpoint 4 -2 roll vg&uoffset add moveto
749          vg&uoffset add lineto internalstroke Q
750          recshow} if
751
752        % Dotted underline.
753        vg&cbyte 16#04 eq {
754          vg&token pop currentpoint 3 -1 roll recshow
755          q 1 J [ 0 vg&uthick 3 mul] 0 d
756          vg&underline vg&uthick w
757          currentpoint 4 -2 roll vg&uoffset add moveto
758          vg&uoffset add lineto internalstroke Q
759          recshow} if
760
761        % Thick underline.
762        vg&cbyte 16#05 eq {
763          vg&token pop currentpoint 3 -1 roll recshow
764          q 0 J vg&underline vg&uthick 2 mul w
765          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
766          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
767          recshow} if
768
769        % Gray thick underline.
770        vg&cbyte 16#06 eq {
771          vg&token pop currentpoint 3 -1 roll recshow
772          q 0 J vg&underline vg&uthick 2 mul w 0.5 setgray
773          currentpoint 4 -2 roll vg&uoffset vg&uthick 2 div sub add moveto
774          vg&uoffset vg&uthick 2 div sub add lineto internalstroke Q
775          recshow} if
776
777        % Overbar.
778        vg&cbyte 16#07 eq {
779          vg&token pop dup stringsize relative 4 1 roll pop pop exch
780          3 -1 roll recshow
781          q 0 J vg&underline vg&uthick w
782          vg&uoffset neg add dup currentpoint pop exch m l internalstroke Q
783          recshow} if
784      }
785      {
786        vg&fbyte vg&cbyte unicharshow recshow
787      } ifelse
788    } ifelse
789  } if
790} def
791
792% Get the underline position and thickness from the current font.
793/vg&underline {
794
795currentfont dup /FontType get 0 eq {/FDepVector get 0 get} if
796dup dup /FontInfo known {
797  /FontInfo get dup
798  dup /UnderlinePosition known {
799    /UnderlinePosition get /vg&uoffset exch def
800  }
801  {
802    pop /vg&uoffset 0 def
803  } ifelse
804  dup /UnderlineThickness known {
805    /UnderlineThickness get /vg&uthick exch def
806  }
807  {
808    pop /vg&uthick 0 def
809  } ifelse
810}
811{
812  pop /vg&uoffset 0 def /vg&uthick 0 def
813} ifelse
814/FontMatrix get
815currentfont dup /FontType get 0 eq
816{/FontMatrix get matrix concatmatrix}{pop} ifelse
817dup 0 vg&uoffset 3 -1 roll transform /vg&uoffset exch def pop
8180 vg&uthick 3 -1 roll transform /vg&uthick exch def pop
819} def
820
821% Make a frame with the coordinates on the stack.
822% <llx> <lly> <urx> <ury> frame --
823/frame {4 copy m 3 1 roll exch l 4 -2 roll l l h} def
824
825% Resets the accumulated bounding box to a degenerate box at the
826% current point.
827% -- resetbbox --
828/resetbbox {
829  currentpoint 2 copy
830  /bbury exch def
831  /bburx exch def
832  /bblly exch def
833  /bbllx exch def
834} def
835
836% Update the accumulated bounding box.
837% <llx'> <lly'> <urx'> <ury'> updatebbox --
838/updatebbox {
839  dup bbury gt {/bbury exch def} {pop} ifelse
840  dup bburx gt {/bburx exch def} {pop} ifelse
841  dup bblly lt {/bblly exch def} {pop} ifelse
842  dup bbllx lt {/bbllx exch def} {pop} ifelse
843} def
844
845% Set the bounding box to the values on the stack.
846% <llx'> <lly'> <urx'> <ury'> updatebbox --
847/restorebbox {
848  /bbury exch def /bburx exch def /bblly exch def /bbllx exch def
849} def
850
851% Push the accumulated bounding box onto the stack.
852% -- pushbbox <llx> <lly> <urx> <ury>
853/pushbbox {bbllx bblly bburx bbury} def
854
855% Make the relative bounding box relative to the currentpoint.
856% <llx'> <lly'> <urx'> <ury'> inflate <llx> <lly> <urx> <ury>
857/inflate {
858  2 {fontsize 0.2 mul add 4 1 roll} repeat
859  2 {fontsize 0.2 mul sub 4 1 roll} repeat
860} def
861
862% Make the relative bounding box relative to the currentpoint.
863% <llx'> <lly'> <urx'> <ury'> relative <llx> <lly> <urx> <ury>
864/relative {
865  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
866  currentpoint 3 -1 roll add 3 1 roll add exch 4 2 roll
867} def
868
869% Returns the size of a string appropriate for recshow.
870% <string> stringsize <llx> <lly> <urx> <ury>
871/stringsize {
872  pushbbox /internalshow load /internalstroke load 7 -1 roll
873  q
874  nulldevice 0 0 m
875  nullinternalshow nullinternalstroke
876  resetbbox
877  recshow
878  /internalstroke exch def /internalshow exch def
879  pushbbox 8 -4 roll restorebbox
880  Q
881} def
882
883% Calculate values for string positioning.
884/calcval {4 copy
885  3 -1 roll sub /widy exch def sub neg /widx exch def
886  pop pop /dy exch def /dx exch def} def
887
888% Utilities to position a string.
889% First letter (U=upper, C=center, B=baseline, L=lower)
890% Second letter (L=left, C=center, R=right)
891/align [
892{calcval dx neg widy dy add neg rmoveto} % UL
893{calcval dx neg widy 2 div dy add neg rmoveto} % CL
894{calcval dx neg 0 rmoveto} % BL
895{calcval dx neg dy neg rmoveto} % LL
896{calcval widx dx add neg widy dy add neg rmoveto} % UR
897{calcval widx dx add neg widy 2 div dy add neg rmoveto} % CR
898{calcval widx dx add neg 0 rmoveto} % BR
899{calcval widx dx add neg dy neg rmoveto} % LR
900{calcval widx 2 div dx add neg widy dy add neg rmoveto} % UC
901{calcval widx 2 div dx add neg widy 2 div dy add neg rmoveto} % CC
902{calcval widx 2 div dx add neg 0 rmoveto} % BC
903{calcval widx 2 div dx add neg dy neg rmoveto} % LC
904] def
905
906/vg&str {m q 1 -1 scale dup stringsize 4 copy align 11 -1 roll get exec
907         q inflate relative frame exch exec Q recshow Q} def
908
909end /procDict exch def
910%%EndProlog
911
912%%BeginSetup
913save
914procDict begin
915printColorMap begin
916442 179 setpagesize
9170 0 0 0 setmargins
9180 0 setorigin
919442 179 setsize
920fittopage
921portrait
922imagescale
923cliptobounds
924setbasematrix
925/Helvetica 10 sf
926defaultGraphicsState
927%%EndSetup
928
9290.00000 0.00000 0.00000 RG
930[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
931cliprestore
9321.00000 1.00000 1.00000 RG
933newpath
9340.00000 0.00000 m
935442.000 0.00000 l
936442.000 179.000 l
9370.00000 179.000 l
9380.00000 0.00000 l
939h
940f
9410.00000 0.00000 0.00000 RG
9420.00000 0.00000 0.00000 RG
943[ 1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 ] defaultmatrix matrix concatmatrix setmatrix
944cliprestore
9451.00000 1.00000 1.00000 RG
946newpath
9470.00000 0.00000 m
948442.000 0.00000 l
949442.000 179.000 l
9500.00000 179.000 l
9510.00000 0.00000 l
952h
953f
9540.00000 0.00000 0.00000 RG
955[ 1.00000 0.00000 0.00000 1.00000 -7.00000 -10.0000 ] concat
9567 10 442 179 rc
9571.00000 1.00000 1.00000 RG
958newpath
95922.0000 39.0000 m
96070.0000 39.0000 l
96170.0000 71.0000 l
96222.0000 71.0000 l
96322.0000 39.0000 l
964h
965f
9660.00000 0.00000 0.00000 RG
9672.00000 w
968newpath
96922.0000 39.0000 m
97070.0000 39.0000 l
97170.0000 71.0000 l
97222.0000 71.0000 l
97322.0000 39.0000 l
974h
975S
9761.00000 w
9771.00000 1.00000 1.00000 RG
9780.00000 0.00000 0.00000 RG
9792.00000 w
980newpath
98170.0000 55.0000 m
98270.0000 55.0000 l
983138.000 55.0000 l
984S
9851.00000 w
986newpath
987138.000 55.0000 m
988131.000 52.0000 l
989130.000 55.0000 l
990131.000 58.0000 l
991h
992f
993newpath
994138.000 55.0000 m
995131.000 52.0000 l
996130.000 55.0000 l
997131.000 58.0000 l
998h
999S
10002.00000 w
10011.00000 w
10021.00000 1.00000 1.00000 RG
1003newpath
1004177.000 55.0000 m
1005177.000 66.0457 168.046 75.0000 157.000 75.0000  c
1006145.954 75.0000 137.000 66.0457 137.000 55.0000  c
1007137.000 43.9543 145.954 35.0000 157.000 35.0000  c
1008168.046 35.0000 177.000 43.9543 177.000 55.0000  c
1009h
1010f
10110.00000 0.00000 0.00000 RG
10122.00000 w
1013newpath
1014177.000 55.0000 m
1015177.000 66.0457 168.046 75.0000 157.000 75.0000  c
1016145.954 75.0000 137.000 66.0457 137.000 55.0000  c
1017137.000 43.9543 145.954 35.0000 157.000 35.0000  c
1018168.046 35.0000 177.000 43.9543 177.000 55.0000  c
1019h
1020S
10211.00000 w
10221.00000 1.00000 1.00000 RG
10230.00000 0.00000 0.00000 RG
10242.00000 w
1025newpath
1026157.000 75.0000 m
1027157.000 75.0000 l
1028157.000 127.000 l
1029S
10301.00000 w
1031newpath
1032157.000 127.000 m
1033160.000 120.000 l
1034157.000 119.000 l
1035154.000 120.000 l
1036h
1037f
1038newpath
1039157.000 127.000 m
1040160.000 120.000 l
1041157.000 119.000 l
1042154.000 120.000 l
1043h
1044S
10452.00000 w
10461.00000 w
10471.00000 1.00000 1.00000 RG
1048newpath
1049133.000 127.000 m
1050181.000 127.000 l
1051181.000 159.000 l
1052133.000 159.000 l
1053133.000 127.000 l
1054h
1055f
10560.00000 0.00000 0.00000 RG
10572.00000 w
1058newpath
1059133.000 127.000 m
1060181.000 127.000 l
1061181.000 159.000 l
1062133.000 159.000 l
1063133.000 127.000 l
1064h
1065S
10661.00000 w
10671.00000 1.00000 1.00000 RG
10680.00000 0.00000 0.00000 RG
10692.00000 w
1070newpath
1071133.000 143.000 m
1072133.000 143.000 l
107365.0000 143.000 l
1074S
10751.00000 w
1076newpath
107765.0000 143.000 m
107872.0000 146.000 l
107973.0000 143.000 l
108072.0000 140.000 l
1081h
1082f
1083newpath
108465.0000 143.000 m
108572.0000 146.000 l
108673.0000 143.000 l
108772.0000 140.000 l
1088h
1089S
10902.00000 w
10911.00000 w
10921.00000 1.00000 1.00000 RG
1093newpath
109465.0000 143.000 m
109565.0000 154.046 56.0457 163.000 45.0000 163.000  c
109633.9543 163.000 25.0000 154.046 25.0000 143.000  c
109725.0000 131.954 33.9543 123.000 45.0000 123.000  c
109856.0457 123.000 65.0000 131.954 65.0000 143.000  c
1099h
1100f
11010.00000 0.00000 0.00000 RG
11022.00000 w
1103newpath
110465.0000 143.000 m
110565.0000 154.046 56.0457 163.000 45.0000 163.000  c
110633.9543 163.000 25.0000 154.046 25.0000 143.000  c
110725.0000 131.954 33.9543 123.000 45.0000 123.000  c
110856.0457 123.000 65.0000 131.954 65.0000 143.000  c
1109h
1110S
11111.00000 w
11121.00000 1.00000 1.00000 RG
11130.00000 0.00000 0.00000 RG
11142.00000 w
1115newpath
111645.0000 124.000 m
111745.0000 124.000 l
111845.0000 71.0000 l
1119S
11201.00000 w
1121newpath
112245.0000 71.0000 m
112342.0000 78.0000 l
112445.0000 79.0000 l
112548.0000 78.0000 l
1126h
1127f
1128newpath
112945.0000 71.0000 m
113042.0000 78.0000 l
113145.0000 79.0000 l
113248.0000 78.0000 l
1133h
1134S
11352.00000 w
11361.00000 w
1137[ 1.00000 0.00000 0.00000 1.00000 17.0000 20.0000 ] concat
1138newpath
11393.10938 11.0469 m
11403.10938 14.5000 l
11411.01562 14.5000 l
11421.01562 5.43750 l
11433.10938 5.43750 l
11443.10938 6.39062 l
11453.40104 6.01562 3.71875 5.73958 4.06250 5.56250  c
11464.41667 5.37500 4.82292 5.28125 5.28125 5.28125  c
11476.09375 5.28125 6.75521 5.60417 7.26562 6.25000  c
11487.78646 6.88542 8.04688 7.70833 8.04688 8.71875  c
11498.04688 9.72917 7.78646 10.5573 7.26562 11.2031  c
11506.75521 11.8490 6.09375 12.1719 5.28125 12.1719  c
11514.82292 12.1719 4.41667 12.0833 4.06250 11.9062  c
11523.71875 11.7188 3.40104 11.4323 3.10938 11.0469  c
1153h
11544.50000 6.79688 m
11554.05208 6.79688 3.70833 6.96354 3.46875 7.29688  c
11563.22917 7.63021 3.10938 8.10417 3.10938 8.71875  c
11573.10938 9.34375 3.22917 9.82292 3.46875 10.1562  c
11583.70833 10.4792 4.05208 10.6406 4.50000 10.6406  c
11594.94792 10.6406 5.29167 10.4792 5.53125 10.1562  c
11605.77083 9.82292 5.89062 9.34375 5.89062 8.71875  c
11615.89062 8.09375 5.77083 7.61979 5.53125 7.29688  c
11625.29167 6.96354 4.94792 6.79688 4.50000 6.79688  c
1163h
116414.4805 7.21875 m
116514.2930 7.13542 14.1055 7.07292 13.9180 7.03125  c
116613.7409 6.98958 13.5586 6.96875 13.3711 6.96875  c
116712.8398 6.96875 12.4284 7.14583 12.1367 7.50000  c
116811.8451 7.84375 11.6992 8.33333 11.6992 8.96875  c
116911.6992 12.0000 l
11709.60547 12.0000 l
11719.60547 5.43750 l
117211.6992 5.43750 l
117311.6992 6.51562 l
117411.9701 6.08854 12.2773 5.77604 12.6211 5.57812  c
117512.9753 5.38021 13.3971 5.28125 13.8867 5.28125  c
117613.9492 5.28125 14.0221 5.28646 14.1055 5.29688  c
117714.1888 5.29688 14.3086 5.30729 14.4648 5.32812  c
117814.4805 7.21875 l
1179h
118018.6328 6.78125 m
118118.1745 6.78125 17.8203 6.94792 17.5703 7.28125  c
118217.3307 7.61458 17.2109 8.09375 17.2109 8.71875  c
118317.2109 9.35417 17.3307 9.83854 17.5703 10.1719  c
118417.8203 10.5052 18.1745 10.6719 18.6328 10.6719  c
118519.0911 10.6719 19.4401 10.5052 19.6797 10.1719  c
118619.9297 9.83854 20.0547 9.35417 20.0547 8.71875  c
118720.0547 8.09375 19.9297 7.61458 19.6797 7.28125  c
118819.4401 6.94792 19.0911 6.78125 18.6328 6.78125  c
1189h
119018.6328 5.28125 m
119119.7682 5.28125 20.6536 5.58854 21.2891 6.20312  c
119221.9245 6.80729 22.2422 7.64583 22.2422 8.71875  c
119322.2422 9.80208 21.9245 10.6510 21.2891 11.2656  c
119420.6536 11.8698 19.7682 12.1719 18.6328 12.1719  c
119517.5078 12.1719 16.6224 11.8698 15.9766 11.2656  c
119615.3411 10.6510 15.0234 9.80208 15.0234 8.71875  c
119715.0234 7.64583 15.3411 6.80729 15.9766 6.20312  c
119816.6224 5.58854 17.5078 5.28125 18.6328 5.28125  c
1199h
120028.2207 6.39062 m
120128.2207 2.87500 l
120230.3301 2.87500 l
120330.3301 12.0000 l
120428.2207 12.0000 l
120528.2207 11.0469 l
120627.9395 11.4323 27.6217 11.7188 27.2676 11.9062  c
120726.9238 12.0833 26.5228 12.1719 26.0645 12.1719  c
120825.2520 12.1719 24.5853 11.8490 24.0645 11.2031  c
120923.5540 10.5573 23.2988 9.72917 23.2988 8.71875  c
121023.2988 7.70833 23.5540 6.88542 24.0645 6.25000  c
121124.5853 5.60417 25.2520 5.28125 26.0645 5.28125  c
121226.5124 5.28125 26.9134 5.37500 27.2676 5.56250  c
121327.6217 5.73958 27.9395 6.01562 28.2207 6.39062  c
1214h
121526.8457 10.6406 m
121627.2936 10.6406 27.6322 10.4792 27.8613 10.1562  c
121728.1009 9.82292 28.2207 9.34375 28.2207 8.71875  c
121828.2207 8.09375 28.1009 7.61979 27.8613 7.29688  c
121927.6322 6.96354 27.2936 6.79688 26.8457 6.79688  c
122026.3978 6.79688 26.0540 6.96354 25.8145 7.29688  c
122125.5853 7.61979 25.4707 8.09375 25.4707 8.71875  c
122225.4707 9.34375 25.5853 9.82292 25.8145 10.1562  c
122326.0540 10.4792 26.3978 10.6406 26.8457 10.6406  c
1224h
122532.2793 9.43750 m
122632.2793 5.43750 l
122734.3887 5.43750 l
122834.3887 6.09375 l
122934.3887 6.44792 34.3835 6.89583 34.3730 7.43750  c
123034.3730 7.96875 34.3730 8.32292 34.3730 8.50000  c
123134.3730 9.03125 34.3887 9.41667 34.4199 9.65625  c
123234.4512 9.88542 34.4980 10.0521 34.5605 10.1562  c
123334.6439 10.2917 34.7533 10.3958 34.8887 10.4688  c
123435.0345 10.5417 35.1960 10.5781 35.3730 10.5781  c
123535.8105 10.5781 36.1543 10.4115 36.4043 10.0781  c
123636.6543 9.74479 36.7793 9.27604 36.7793 8.67188  c
123736.7793 5.43750 l
123838.8730 5.43750 l
123938.8730 12.0000 l
124036.7793 12.0000 l
124136.7793 11.0469 l
124236.4668 11.4323 36.1335 11.7188 35.7793 11.9062  c
124335.4251 12.0833 35.0345 12.1719 34.6074 12.1719  c
124433.8470 12.1719 33.2689 11.9427 32.8730 11.4844  c
124532.4772 11.0156 32.2793 10.3333 32.2793 9.43750  c
1246h
124746.1973 5.64062 m
124846.1973 7.35938 l
124945.9160 7.16146 45.6296 7.01562 45.3379 6.92188  c
125045.0462 6.82812 44.7493 6.78125 44.4473 6.78125  c
125143.8639 6.78125 43.4056 6.95312 43.0723 7.29688  c
125242.7493 7.63021 42.5879 8.10417 42.5879 8.71875  c
125342.5879 9.33333 42.7493 9.81250 43.0723 10.1562  c
125443.4056 10.5000 43.8639 10.6719 44.4473 10.6719  c
125544.7702 10.6719 45.0775 10.6250 45.3691 10.5312  c
125645.6712 10.4271 45.9473 10.2812 46.1973 10.0938  c
125746.1973 11.8125 l
125845.8639 11.9271 45.5306 12.0156 45.1973 12.0781  c
125944.8639 12.1406 44.5254 12.1719 44.1816 12.1719  c
126042.9941 12.1719 42.0671 11.8698 41.4004 11.2656  c
126140.7337 10.6510 40.4004 9.80208 40.4004 8.71875  c
126240.4004 7.63542 40.7337 6.79167 41.4004 6.18750  c
126342.0671 5.58333 42.9941 5.28125 44.1816 5.28125  c
126444.5254 5.28125 44.8639 5.31250 45.1973 5.37500  c
126545.5306 5.42708 45.8639 5.51562 46.1973 5.64062  c
1266h
126754.5605 8.70312 m
126854.5605 9.29688 l
126949.6543 9.29688 l
127049.7064 9.78646 49.8835 10.1562 50.1855 10.4062  c
127150.4876 10.6562 50.9147 10.7812 51.4668 10.7812  c
127251.9043 10.7812 52.3522 10.7135 52.8105 10.5781  c
127353.2793 10.4427 53.7585 10.2448 54.2480 9.98438  c
127454.2480 11.5938 l
127553.7480 11.7812 53.2480 11.9219 52.7480 12.0156  c
127652.2585 12.1198 51.7637 12.1719 51.2637 12.1719  c
127750.0762 12.1719 49.1543 11.8698 48.4980 11.2656  c
127847.8418 10.6615 47.5137 9.81250 47.5137 8.71875  c
127947.5137 7.65625 47.8366 6.81771 48.4824 6.20312  c
128049.1283 5.58854 50.0189 5.28125 51.1543 5.28125  c
128152.1855 5.28125 53.0085 5.59375 53.6230 6.21875  c
128254.2480 6.83333 54.5605 7.66146 54.5605 8.70312  c
1283h
128452.4043 8.00000 m
128552.4043 7.60417 52.2845 7.28646 52.0449 7.04688  c
128651.8158 6.79688 51.5137 6.67188 51.1387 6.67188  c
128750.7324 6.67188 50.3991 6.78646 50.1387 7.01562  c
128849.8887 7.24479 49.7324 7.57292 49.6699 8.00000  c
128952.4043 8.00000 l
1290h
1291f
1292[ 1.00000 0.00000 0.00000 1.00000 -17.0000 -20.0000 ] concat
1293[ 1.00000 0.00000 0.00000 1.00000 130.000 20.0000 ] concat
1294newpath
12951.10938 3.25000 m
12964.84375 3.25000 l
12975.95833 3.25000 6.81250 3.50000 7.40625 4.00000  c
12988.00000 4.48958 8.29688 5.19271 8.29688 6.10938  c
12998.29688 7.02604 8.00000 7.73438 7.40625 8.23438  c
13006.81250 8.72396 5.95833 8.96875 4.84375 8.96875  c
13013.35938 8.96875 l
13023.35938 12.0000 l
13031.10938 12.0000 l
13041.10938 3.25000 l
1305h
13063.35938 4.89062 m
13073.35938 7.32812 l
13084.60938 7.32812 l
13095.04688 7.32812 5.38542 7.22396 5.62500 7.01562  c
13105.86458 6.79688 5.98438 6.49479 5.98438 6.10938  c
13115.98438 5.71354 5.86458 5.41146 5.62500 5.20312  c
13125.38542 4.99479 5.04688 4.89062 4.60938 4.89062  c
13133.35938 4.89062 l
1314h
131514.6855 7.21875 m
131614.4980 7.13542 14.3105 7.07292 14.1230 7.03125  c
131713.9460 6.98958 13.7637 6.96875 13.5762 6.96875  c
131813.0449 6.96875 12.6335 7.14583 12.3418 7.50000  c
131912.0501 7.84375 11.9043 8.33333 11.9043 8.96875  c
132011.9043 12.0000 l
13219.81055 12.0000 l
13229.81055 5.43750 l
132311.9043 5.43750 l
132411.9043 6.51562 l
132512.1751 6.08854 12.4824 5.77604 12.8262 5.57812  c
132613.1803 5.38021 13.6022 5.28125 14.0918 5.28125  c
132714.1543 5.28125 14.2272 5.28646 14.3105 5.29688  c
132814.3939 5.29688 14.5137 5.30729 14.6699 5.32812  c
132914.6855 7.21875 l
1330h
133118.8379 6.78125 m
133218.3796 6.78125 18.0254 6.94792 17.7754 7.28125  c
133317.5358 7.61458 17.4160 8.09375 17.4160 8.71875  c
133417.4160 9.35417 17.5358 9.83854 17.7754 10.1719  c
133518.0254 10.5052 18.3796 10.6719 18.8379 10.6719  c
133619.2962 10.6719 19.6452 10.5052 19.8848 10.1719  c
133720.1348 9.83854 20.2598 9.35417 20.2598 8.71875  c
133820.2598 8.09375 20.1348 7.61458 19.8848 7.28125  c
133919.6452 6.94792 19.2962 6.78125 18.8379 6.78125  c
1340h
134118.8379 5.28125 m
134219.9733 5.28125 20.8587 5.58854 21.4941 6.20312  c
134322.1296 6.80729 22.4473 7.64583 22.4473 8.71875  c
134422.4473 9.80208 22.1296 10.6510 21.4941 11.2656  c
134520.8587 11.8698 19.9733 12.1719 18.8379 12.1719  c
134617.7129 12.1719 16.8275 11.8698 16.1816 11.2656  c
134715.5462 10.6510 15.2285 9.80208 15.2285 8.71875  c
134815.2285 7.64583 15.5462 6.80729 16.1816 6.20312  c
134916.8275 5.58854 17.7129 5.28125 18.8379 5.28125  c
1350h
135128.4258 6.39062 m
135228.4258 2.87500 l
135330.5352 2.87500 l
135430.5352 12.0000 l
135528.4258 12.0000 l
135628.4258 11.0469 l
135728.1445 11.4323 27.8268 11.7188 27.4727 11.9062  c
135827.1289 12.0833 26.7279 12.1719 26.2695 12.1719  c
135925.4570 12.1719 24.7904 11.8490 24.2695 11.2031  c
136023.7591 10.5573 23.5039 9.72917 23.5039 8.71875  c
136123.5039 7.70833 23.7591 6.88542 24.2695 6.25000  c
136224.7904 5.60417 25.4570 5.28125 26.2695 5.28125  c
136326.7174 5.28125 27.1185 5.37500 27.4727 5.56250  c
136427.8268 5.73958 28.1445 6.01562 28.4258 6.39062  c
1365h
136627.0508 10.6406 m
136727.4987 10.6406 27.8372 10.4792 28.0664 10.1562  c
136828.3060 9.82292 28.4258 9.34375 28.4258 8.71875  c
136928.4258 8.09375 28.3060 7.61979 28.0664 7.29688  c
137027.8372 6.96354 27.4987 6.79688 27.0508 6.79688  c
137126.6029 6.79688 26.2591 6.96354 26.0195 7.29688  c
137225.7904 7.61979 25.6758 8.09375 25.6758 8.71875  c
137325.6758 9.34375 25.7904 9.82292 26.0195 10.1562  c
137426.2591 10.4792 26.6029 10.6406 27.0508 10.6406  c
1375h
137632.4844 9.43750 m
137732.4844 5.43750 l
137834.5938 5.43750 l
137934.5938 6.09375 l
138034.5938 6.44792 34.5885 6.89583 34.5781 7.43750  c
138134.5781 7.96875 34.5781 8.32292 34.5781 8.50000  c
138234.5781 9.03125 34.5938 9.41667 34.6250 9.65625  c
138334.6562 9.88542 34.7031 10.0521 34.7656 10.1562  c
138434.8490 10.2917 34.9583 10.3958 35.0938 10.4688  c
138535.2396 10.5417 35.4010 10.5781 35.5781 10.5781  c
138636.0156 10.5781 36.3594 10.4115 36.6094 10.0781  c
138736.8594 9.74479 36.9844 9.27604 36.9844 8.67188  c
138836.9844 5.43750 l
138939.0781 5.43750 l
139039.0781 12.0000 l
139136.9844 12.0000 l
139236.9844 11.0469 l
139336.6719 11.4323 36.3385 11.7188 35.9844 11.9062  c
139435.6302 12.0833 35.2396 12.1719 34.8125 12.1719  c
139534.0521 12.1719 33.4740 11.9427 33.0781 11.4844  c
139632.6823 11.0156 32.4844 10.3333 32.4844 9.43750  c
1397h
139846.4023 5.64062 m
139946.4023 7.35938 l
140046.1211 7.16146 45.8346 7.01562 45.5430 6.92188  c
140145.2513 6.82812 44.9544 6.78125 44.6523 6.78125  c
140244.0690 6.78125 43.6107 6.95312 43.2773 7.29688  c
140342.9544 7.63021 42.7930 8.10417 42.7930 8.71875  c
140442.7930 9.33333 42.9544 9.81250 43.2773 10.1562  c
140543.6107 10.5000 44.0690 10.6719 44.6523 10.6719  c
140644.9753 10.6719 45.2826 10.6250 45.5742 10.5312  c
140745.8763 10.4271 46.1523 10.2812 46.4023 10.0938  c
140846.4023 11.8125 l
140946.0690 11.9271 45.7357 12.0156 45.4023 12.0781  c
141045.0690 12.1406 44.7305 12.1719 44.3867 12.1719  c
141143.1992 12.1719 42.2721 11.8698 41.6055 11.2656  c
141240.9388 10.6510 40.6055 9.80208 40.6055 8.71875  c
141340.6055 7.63542 40.9388 6.79167 41.6055 6.18750  c
141442.2721 5.58333 43.1992 5.28125 44.3867 5.28125  c
141544.7305 5.28125 45.0690 5.31250 45.4023 5.37500  c
141645.7357 5.42708 46.0690 5.51562 46.4023 5.64062  c
1417h
141850.5000 3.57812 m
141950.5000 5.43750 l
142052.6719 5.43750 l
142152.6719 6.93750 l
142250.5000 6.93750 l
142350.5000 9.71875 l
142450.5000 10.0208 50.5573 10.2292 50.6719 10.3438  c
142550.7969 10.4479 51.0417 10.5000 51.4062 10.5000  c
142652.4844 10.5000 l
142752.4844 12.0000 l
142850.6875 12.0000 l
142949.8542 12.0000 49.2656 11.8281 48.9219 11.4844  c
143048.5781 11.1406 48.4062 10.5521 48.4062 9.71875  c
143148.4062 6.93750 l
143247.3594 6.93750 l
143347.3594 5.43750 l
143448.4062 5.43750 l
143548.4062 3.57812 l
143650.5000 3.57812 l
1437h
1438f
1439[ 1.00000 0.00000 0.00000 1.00000 -130.000 -20.0000 ] concat
1440[ 1.00000 0.00000 0.00000 1.00000 25.0000 163.000 ] concat
1441newpath
14425.89062 7.21875 m
14435.70312 7.13542 5.51562 7.07292 5.32812 7.03125  c
14445.15104 6.98958 4.96875 6.96875 4.78125 6.96875  c
14454.25000 6.96875 3.83854 7.14583 3.54688 7.50000  c
14463.25521 7.84375 3.10938 8.33333 3.10938 8.96875  c
14473.10938 12.0000 l
14481.01562 12.0000 l
14491.01562 5.43750 l
14503.10938 5.43750 l
14513.10938 6.51562 l
14523.38021 6.08854 3.68750 5.77604 4.03125 5.57812  c
14534.38542 5.38021 4.80729 5.28125 5.29688 5.28125  c
14545.35938 5.28125 5.43229 5.28646 5.51562 5.29688  c
14555.59896 5.29688 5.71875 5.30729 5.87500 5.32812  c
14565.89062 7.21875 l
1457h
145813.4805 8.70312 m
145913.4805 9.29688 l
14608.57422 9.29688 l
14618.62630 9.78646 8.80339 10.1562 9.10547 10.4062  c
14629.40755 10.6562 9.83464 10.7812 10.3867 10.7812  c
146310.8242 10.7812 11.2721 10.7135 11.7305 10.5781  c
146412.1992 10.4427 12.6784 10.2448 13.1680 9.98438  c
146513.1680 11.5938 l
146612.6680 11.7812 12.1680 11.9219 11.6680 12.0156  c
146711.1784 12.1198 10.6836 12.1719 10.1836 12.1719  c
14688.99609 12.1719 8.07422 11.8698 7.41797 11.2656  c
14696.76172 10.6615 6.43359 9.81250 6.43359 8.71875  c
14706.43359 7.65625 6.75651 6.81771 7.40234 6.20312  c
14718.04818 5.58854 8.93880 5.28125 10.0742 5.28125  c
147211.1055 5.28125 11.9284 5.59375 12.5430 6.21875  c
147313.1680 6.83333 13.4805 7.66146 13.4805 8.70312  c
1474h
147511.3242 8.00000 m
147611.3242 7.60417 11.2044 7.28646 10.9648 7.04688  c
147710.7357 6.79688 10.4336 6.67188 10.0586 6.67188  c
14789.65234 6.67188 9.31901 6.78646 9.05859 7.01562  c
14798.80859 7.24479 8.65234 7.57292 8.58984 8.00000  c
148011.3242 8.00000 l
1481h
148218.0098 9.04688 m
148317.5723 9.04688 17.2389 9.11979 17.0098 9.26562  c
148416.7910 9.41146 16.6816 9.63021 16.6816 9.92188  c
148516.6816 10.1927 16.7702 10.4062 16.9473 10.5625  c
148617.1348 10.7083 17.3848 10.7812 17.6973 10.7812  c
148718.0931 10.7812 18.4264 10.6406 18.6973 10.3594  c
148818.9681 10.0677 19.1035 9.70833 19.1035 9.28125  c
148919.1035 9.04688 l
149018.0098 9.04688 l
1491h
149221.2129 8.25000 m
149321.2129 12.0000 l
149419.1035 12.0000 l
149519.1035 11.0312 l
149618.8223 11.4271 18.5046 11.7188 18.1504 11.9062  c
149717.7962 12.0833 17.3691 12.1719 16.8691 12.1719  c
149816.1816 12.1719 15.6243 11.9740 15.1973 11.5781  c
149914.7806 11.1823 14.5723 10.6667 14.5723 10.0312  c
150014.5723 9.26042 14.8379 8.69792 15.3691 8.34375  c
150115.9004 7.97917 16.7285 7.79688 17.8535 7.79688  c
150219.1035 7.79688 l
150319.1035 7.64062 l
150419.1035 7.30729 18.9681 7.06250 18.6973 6.90625  c
150518.4368 6.75000 18.0306 6.67188 17.4785 6.67188  c
150617.0306 6.67188 16.6139 6.71875 16.2285 6.81250  c
150715.8431 6.89583 15.4837 7.03125 15.1504 7.21875  c
150815.1504 5.60938 l
150915.5983 5.50521 16.0462 5.42708 16.4941 5.37500  c
151016.9525 5.31250 17.4056 5.28125 17.8535 5.28125  c
151119.0410 5.28125 19.8952 5.51562 20.4160 5.98438  c
151220.9473 6.44271 21.2129 7.19792 21.2129 8.25000  c
1513h
151427.6230 6.39062 m
151527.6230 2.87500 l
151629.7324 2.87500 l
151729.7324 12.0000 l
151827.6230 12.0000 l
151927.6230 11.0469 l
152027.3418 11.4323 27.0241 11.7188 26.6699 11.9062  c
152126.3262 12.0833 25.9251 12.1719 25.4668 12.1719  c
152224.6543 12.1719 23.9876 11.8490 23.4668 11.2031  c
152322.9564 10.5573 22.7012 9.72917 22.7012 8.71875  c
152422.7012 7.70833 22.9564 6.88542 23.4668 6.25000  c
152523.9876 5.60417 24.6543 5.28125 25.4668 5.28125  c
152625.9147 5.28125 26.3158 5.37500 26.6699 5.56250  c
152727.0241 5.73958 27.3418 6.01562 27.6230 6.39062  c
1528h
152926.2480 10.6406 m
153026.6960 10.6406 27.0345 10.4792 27.2637 10.1562  c
153127.5033 9.82292 27.6230 9.34375 27.6230 8.71875  c
153227.6230 8.09375 27.5033 7.61979 27.2637 7.29688  c
153327.0345 6.96354 26.6960 6.79688 26.2480 6.79688  c
153425.8001 6.79688 25.4564 6.96354 25.2168 7.29688  c
153524.9876 7.61979 24.8730 8.09375 24.8730 8.71875  c
153624.8730 9.34375 24.9876 9.82292 25.2168 10.1562  c
153725.4564 10.4792 25.8001 10.6406 26.2480 10.6406  c
1538h
153930.8848 5.43750 m
154032.9941 5.43750 l
154134.7598 9.89062 l
154236.2598 5.43750 l
154338.3535 5.43750 l
154435.5879 12.6250 l
154535.3171 13.3542 34.9941 13.8646 34.6191 14.1562  c
154634.2546 14.4479 33.7702 14.5938 33.1660 14.5938  c
154731.9473 14.5938 l
154831.9473 13.2188 l
154932.6035 13.2188 l
155032.9577 13.2188 33.2129 13.1615 33.3691 13.0469  c
155133.5358 12.9323 33.6660 12.7292 33.7598 12.4375  c
155233.8223 12.2500 l
155330.8848 5.43750 l
1554h
1555f
1556[ 1.00000 0.00000 0.00000 1.00000 -25.0000 -163.000 ] concat
1557[ 1.00000 0.00000 0.00000 1.00000 125.000 161.000 ] concat
1558newpath
15592.20312 3.57812 m
15602.20312 5.43750 l
15614.42188 5.43750 l
15624.42188 6.28125 l
15632.20312 6.28125 l
15642.20312 9.84375 l
15652.20312 10.3750 2.27604 10.7188 2.42188 10.8750  c
15662.56771 11.0208 2.86458 11.0938 3.31250 11.0938  c
15674.42188 11.0938 l
15684.42188 12.0000 l
15693.31250 12.0000 l
15702.47917 12.0000 1.90104 11.8438 1.57812 11.5312  c
15711.26562 11.2188 1.10938 10.6562 1.10938 9.84375  c
15721.10938 6.28125 l
1573.328125 6.28125 l
1574.328125 5.43750 l
15751.10938 5.43750 l
15761.10938 3.57812 l
15772.20312 3.57812 l
1578h
157911.2988 8.03125 m
158011.2988 12.0000 l
158110.2207 12.0000 l
158210.2207 8.07812 l
158310.2207 7.45312 10.0957 6.98958 9.84570 6.68750  c
15849.60612 6.37500 9.24674 6.21875 8.76758 6.21875  c
15858.18424 6.21875 7.72070 6.40625 7.37695 6.78125  c
15867.04362 7.14583 6.87695 7.65104 6.87695 8.29688  c
15876.87695 12.0000 l
15885.79883 12.0000 l
15895.79883 2.87500 l
15906.87695 2.87500 l
15916.87695 6.45312 l
15927.13737 6.05729 7.43945 5.76562 7.78320 5.57812  c
15938.13737 5.38021 8.54362 5.28125 9.00195 5.28125  c
15949.75195 5.28125 10.3197 5.51562 10.7051 5.98438  c
159511.1009 6.44271 11.2988 7.12500 11.2988 8.03125  c
1596h
159713.4355 5.43750 m
159814.5137 5.43750 l
159914.5137 12.0000 l
160013.4355 12.0000 l
160113.4355 5.43750 l
1602h
160313.4355 2.87500 m
160414.5137 2.87500 l
160514.5137 4.25000 l
160613.4355 4.25000 l
160713.4355 2.87500 l
1608h
160920.9570 5.62500 m
161020.9570 6.65625 l
161120.6549 6.50000 20.3372 6.38542 20.0039 6.31250  c
161219.6810 6.22917 19.3424 6.18750 18.9883 6.18750  c
161318.4570 6.18750 18.0560 6.27083 17.7852 6.43750  c
161417.5143 6.59375 17.3789 6.83854 17.3789 7.17188  c
161517.3789 7.42188 17.4727 7.61979 17.6602 7.76562  c
161617.8581 7.90104 18.2487 8.03125 18.8320 8.15625  c
161719.1914 8.25000 l
161819.9622 8.40625 20.5091 8.63542 20.8320 8.93750  c
161921.1549 9.23958 21.3164 9.65625 21.3164 10.1875  c
162021.3164 10.8021 21.0716 11.2865 20.5820 11.6406  c
162120.1029 11.9948 19.4414 12.1719 18.5977 12.1719  c
162218.2435 12.1719 17.8737 12.1354 17.4883 12.0625  c
162317.1133 12.0000 16.7174 11.9010 16.3008 11.7656  c
162416.3008 10.6406 l
162516.6966 10.8490 17.0872 11.0052 17.4727 11.1094  c
162617.8581 11.2135 18.2435 11.2656 18.6289 11.2656  c
162719.1289 11.2656 19.5143 11.1823 19.7852 11.0156  c
162820.0664 10.8385 20.2070 10.5885 20.2070 10.2656  c
162920.2070 9.97396 20.1081 9.75000 19.9102 9.59375  c
163019.7122 9.43750 19.2799 9.28646 18.6133 9.14062  c
163118.2383 9.06250 l
163217.5716 8.91667 17.0872 8.69792 16.7852 8.40625  c
163316.4935 8.11458 16.3477 7.71875 16.3477 7.21875  c
163416.3477 6.59375 16.5664 6.11458 17.0039 5.78125  c
163517.4414 5.44792 18.0612 5.28125 18.8633 5.28125  c
163619.2591 5.28125 19.6341 5.31250 19.9883 5.37500  c
163720.3424 5.42708 20.6654 5.51042 20.9570 5.62500  c
1638h
163923.3027 10.5156 m
164024.5371 10.5156 l
164124.5371 12.0000 l
164223.3027 12.0000 l
164323.3027 10.5156 l
1644h
164523.3027 5.79688 m
164624.5371 5.79688 l
164724.5371 7.28125 l
164823.3027 7.28125 l
164923.3027 5.79688 l
1650h
165131.2520 5.62500 m
165231.2520 6.65625 l
165330.9499 6.50000 30.6322 6.38542 30.2988 6.31250  c
165429.9759 6.22917 29.6374 6.18750 29.2832 6.18750  c
165528.7520 6.18750 28.3509 6.27083 28.0801 6.43750  c
165627.8092 6.59375 27.6738 6.83854 27.6738 7.17188  c
165727.6738 7.42188 27.7676 7.61979 27.9551 7.76562  c
165828.1530 7.90104 28.5436 8.03125 29.1270 8.15625  c
165929.4863 8.25000 l
166030.2572 8.40625 30.8040 8.63542 31.1270 8.93750  c
166131.4499 9.23958 31.6113 9.65625 31.6113 10.1875  c
166231.6113 10.8021 31.3665 11.2865 30.8770 11.6406  c
166330.3978 11.9948 29.7363 12.1719 28.8926 12.1719  c
166428.5384 12.1719 28.1686 12.1354 27.7832 12.0625  c
166527.4082 12.0000 27.0124 11.9010 26.5957 11.7656  c
166626.5957 10.6406 l
166726.9915 10.8490 27.3822 11.0052 27.7676 11.1094  c
166828.1530 11.2135 28.5384 11.2656 28.9238 11.2656  c
166929.4238 11.2656 29.8092 11.1823 30.0801 11.0156  c
167030.3613 10.8385 30.5020 10.5885 30.5020 10.2656  c
167130.5020 9.97396 30.4030 9.75000 30.2051 9.59375  c
167230.0072 9.43750 29.5749 9.28646 28.9082 9.14062  c
167328.5332 9.06250 l
167427.8665 8.91667 27.3822 8.69792 27.0801 8.40625  c
167526.7884 8.11458 26.6426 7.71875 26.6426 7.21875  c
167626.6426 6.59375 26.8613 6.11458 27.2988 5.78125  c
167727.7363 5.44792 28.3561 5.28125 29.1582 5.28125  c
167829.5540 5.28125 29.9290 5.31250 30.2832 5.37500  c
167930.6374 5.42708 30.9603 5.51042 31.2520 5.62500  c
1680h
168136.0508 12.6094 m
168235.7487 13.3906 35.4518 13.9010 35.1602 14.1406  c
168334.8685 14.3802 34.4831 14.5000 34.0039 14.5000  c
168433.1445 14.5000 l
168533.1445 13.5938 l
168633.7695 13.5938 l
168734.0716 13.5938 34.3008 13.5208 34.4570 13.3750  c
168834.6237 13.2396 34.8060 12.9115 35.0039 12.3906  c
168935.2070 11.8906 l
169032.5508 5.43750 l
169133.6914 5.43750 l
169235.7383 10.5625 l
169337.8008 5.43750 l
169438.9414 5.43750 l
169536.0508 12.6094 l
1696h
169745.8867 8.03125 m
169845.8867 12.0000 l
169944.8086 12.0000 l
170044.8086 8.07812 l
170144.8086 7.45312 44.6836 6.98958 44.4336 6.68750  c
170244.1940 6.37500 43.8346 6.21875 43.3555 6.21875  c
170342.7721 6.21875 42.3086 6.40625 41.9648 6.78125  c
170441.6315 7.14583 41.4648 7.65104 41.4648 8.29688  c
170541.4648 12.0000 l
170640.3867 12.0000 l
170740.3867 5.43750 l
170841.4648 5.43750 l
170941.4648 6.45312 l
171041.7253 6.05729 42.0273 5.76562 42.3711 5.57812  c
171142.7253 5.38021 43.1315 5.28125 43.5898 5.28125  c
171244.3398 5.28125 44.9076 5.51562 45.2930 5.98438  c
171345.6888 6.44271 45.8867 7.12500 45.8867 8.03125  c
1714h
171552.7578 5.68750 m
171652.7578 6.70312 l
171752.4453 6.52604 52.1380 6.39583 51.8359 6.31250  c
171851.5339 6.22917 51.2266 6.18750 50.9141 6.18750  c
171950.2057 6.18750 49.6589 6.41146 49.2734 6.85938  c
172048.8880 7.29688 48.6953 7.91667 48.6953 8.71875  c
172148.6953 9.52083 48.8880 10.1458 49.2734 10.5938  c
172249.6589 11.0312 50.2057 11.2500 50.9141 11.2500  c
172351.2266 11.2500 51.5339 11.2083 51.8359 11.1250  c
172452.1380 11.0417 52.4453 10.9167 52.7578 10.7500  c
172552.7578 11.7500 l
172652.4557 11.8854 52.1432 11.9896 51.8203 12.0625  c
172751.4974 12.1354 51.1536 12.1719 50.7891 12.1719  c
172849.7995 12.1719 49.0130 11.8646 48.4297 11.2500  c
172947.8464 10.6250 47.5547 9.78125 47.5547 8.71875  c
173047.5547 7.65625 47.8464 6.81771 48.4297 6.20312  c
173149.0234 5.58854 49.8359 5.28125 50.8672 5.28125  c
173251.1901 5.28125 51.5078 5.31771 51.8203 5.39062  c
173352.1432 5.45312 52.4557 5.55208 52.7578 5.68750  c
1734h
173557.2148 2.89062 m
173656.6940 3.78646 56.3034 4.67708 56.0430 5.56250  c
173755.7930 6.43750 55.6680 7.32812 55.6680 8.23438  c
173855.6680 9.13021 55.7930 10.0208 56.0430 10.9062  c
173956.3034 11.7917 56.6940 12.6823 57.2148 13.5781  c
174056.2773 13.5781 l
174155.6940 12.6615 55.2565 11.7604 54.9648 10.8750  c
174254.6732 9.98958 54.5273 9.10938 54.5273 8.23438  c
174354.5273 7.35938 54.6732 6.48438 54.9648 5.60938  c
174455.2565 4.72396 55.6940 3.81771 56.2773 2.89062  c
174557.2148 2.89062 l
1746h
174759.1465 2.89062 m
174860.0840 2.89062 l
174960.6673 3.81771 61.1048 4.72396 61.3965 5.60938  c
175061.6882 6.48438 61.8340 7.35938 61.8340 8.23438  c
175161.8340 9.10938 61.6882 9.98958 61.3965 10.8750  c
175261.1048 11.7604 60.6673 12.6615 60.0840 13.5781  c
175359.1465 13.5781 l
175459.6569 12.6823 60.0423 11.7917 60.3027 10.9062  c
175560.5632 10.0208 60.6934 9.13021 60.6934 8.23438  c
175660.6934 7.32812 60.5632 6.43750 60.3027 5.56250  c
175760.0423 4.67708 59.6569 3.78646 59.1465 2.89062  c
1758h
1759f
1760[ 1.00000 0.00000 0.00000 1.00000 -125.000 -161.000 ] concat
1761[ 1.00000 0.00000 0.00000 1.00000 41.0000 136.000 ] concat
1762newpath
17631.48438 11.0000 m
17643.42188 11.0000 l
17653.42188 4.32812 l
17661.31250 4.75000 l
17671.31250 3.67188 l
17683.40625 3.25000 l
17694.59375 3.25000 l
17704.59375 11.0000 l
17716.53125 11.0000 l
17726.53125 12.0000 l
17731.48438 12.0000 l
17741.48438 11.0000 l
1775h
1776f
1777[ 1.00000 0.00000 0.00000 1.00000 -41.0000 -136.000 ] concat
17781.00000 1.00000 1.00000 RG
1779newpath
1780316.000 56.0000 m
1781316.000 67.0457 307.046 76.0000 296.000 76.0000  c
1782284.954 76.0000 276.000 67.0457 276.000 56.0000  c
1783276.000 44.9543 284.954 36.0000 296.000 36.0000  c
1784307.046 36.0000 316.000 44.9543 316.000 56.0000  c
1785h
1786f
17870.00000 0.00000 0.00000 RG
17882.00000 w
1789newpath
1790316.000 56.0000 m
1791316.000 67.0457 307.046 76.0000 296.000 76.0000  c
1792284.954 76.0000 276.000 67.0457 276.000 56.0000  c
1793276.000 44.9543 284.954 36.0000 296.000 36.0000  c
1794307.046 36.0000 316.000 44.9543 316.000 56.0000  c
1795h
1796S
17971.00000 w
17981.00000 1.00000 1.00000 RG
1799newpath
1800272.000 128.000 m
1801320.000 128.000 l
1802320.000 160.000 l
1803272.000 160.000 l
1804272.000 128.000 l
1805h
1806f
18070.00000 0.00000 0.00000 RG
18082.00000 w
1809newpath
1810272.000 128.000 m
1811320.000 128.000 l
1812320.000 160.000 l
1813272.000 160.000 l
1814272.000 128.000 l
1815h
1816S
18171.00000 w
1818[ 1.00000 0.00000 0.00000 1.00000 269.000 21.0000 ] concat
1819newpath
18201.10938 3.25000 m
18214.84375 3.25000 l
18225.95833 3.25000 6.81250 3.50000 7.40625 4.00000  c
18238.00000 4.48958 8.29688 5.19271 8.29688 6.10938  c
18248.29688 7.02604 8.00000 7.73438 7.40625 8.23438  c
18256.81250 8.72396 5.95833 8.96875 4.84375 8.96875  c
18263.35938 8.96875 l
18273.35938 12.0000 l
18281.10938 12.0000 l
18291.10938 3.25000 l
1830h
18313.35938 4.89062 m
18323.35938 7.32812 l
18334.60938 7.32812 l
18345.04688 7.32812 5.38542 7.22396 5.62500 7.01562  c
18355.86458 6.79688 5.98438 6.49479 5.98438 6.10938  c
18365.98438 5.71354 5.86458 5.41146 5.62500 5.20312  c
18375.38542 4.99479 5.04688 4.89062 4.60938 4.89062  c
18383.35938 4.89062 l
1839h
184014.6855 7.21875 m
184114.4980 7.13542 14.3105 7.07292 14.1230 7.03125  c
184213.9460 6.98958 13.7637 6.96875 13.5762 6.96875  c
184313.0449 6.96875 12.6335 7.14583 12.3418 7.50000  c
184412.0501 7.84375 11.9043 8.33333 11.9043 8.96875  c
184511.9043 12.0000 l
18469.81055 12.0000 l
18479.81055 5.43750 l
184811.9043 5.43750 l
184911.9043 6.51562 l
185012.1751 6.08854 12.4824 5.77604 12.8262 5.57812  c
185113.1803 5.38021 13.6022 5.28125 14.0918 5.28125  c
185214.1543 5.28125 14.2272 5.28646 14.3105 5.29688  c
185314.3939 5.29688 14.5137 5.30729 14.6699 5.32812  c
185414.6855 7.21875 l
1855h
185618.8379 6.78125 m
185718.3796 6.78125 18.0254 6.94792 17.7754 7.28125  c
185817.5358 7.61458 17.4160 8.09375 17.4160 8.71875  c
185917.4160 9.35417 17.5358 9.83854 17.7754 10.1719  c
186018.0254 10.5052 18.3796 10.6719 18.8379 10.6719  c
186119.2962 10.6719 19.6452 10.5052 19.8848 10.1719  c
186220.1348 9.83854 20.2598 9.35417 20.2598 8.71875  c
186320.2598 8.09375 20.1348 7.61458 19.8848 7.28125  c
186419.6452 6.94792 19.2962 6.78125 18.8379 6.78125  c
1865h
186618.8379 5.28125 m
186719.9733 5.28125 20.8587 5.58854 21.4941 6.20312  c
186822.1296 6.80729 22.4473 7.64583 22.4473 8.71875  c
186922.4473 9.80208 22.1296 10.6510 21.4941 11.2656  c
187020.8587 11.8698 19.9733 12.1719 18.8379 12.1719  c
187117.7129 12.1719 16.8275 11.8698 16.1816 11.2656  c
187215.5462 10.6510 15.2285 9.80208 15.2285 8.71875  c
187315.2285 7.64583 15.5462 6.80729 16.1816 6.20312  c
187416.8275 5.58854 17.7129 5.28125 18.8379 5.28125  c
1875h
187628.4258 6.39062 m
187728.4258 2.87500 l
187830.5352 2.87500 l
187930.5352 12.0000 l
188028.4258 12.0000 l
188128.4258 11.0469 l
188228.1445 11.4323 27.8268 11.7188 27.4727 11.9062  c
188327.1289 12.0833 26.7279 12.1719 26.2695 12.1719  c
188425.4570 12.1719 24.7904 11.8490 24.2695 11.2031  c
188523.7591 10.5573 23.5039 9.72917 23.5039 8.71875  c
188623.5039 7.70833 23.7591 6.88542 24.2695 6.25000  c
188724.7904 5.60417 25.4570 5.28125 26.2695 5.28125  c
188826.7174 5.28125 27.1185 5.37500 27.4727 5.56250  c
188927.8268 5.73958 28.1445 6.01562 28.4258 6.39062  c
1890h
189127.0508 10.6406 m
189227.4987 10.6406 27.8372 10.4792 28.0664 10.1562  c
189328.3060 9.82292 28.4258 9.34375 28.4258 8.71875  c
189428.4258 8.09375 28.3060 7.61979 28.0664 7.29688  c
189527.8372 6.96354 27.4987 6.79688 27.0508 6.79688  c
189626.6029 6.79688 26.2591 6.96354 26.0195 7.29688  c
189725.7904 7.61979 25.6758 8.09375 25.6758 8.71875  c
189825.6758 9.34375 25.7904 9.82292 26.0195 10.1562  c
189926.2591 10.4792 26.6029 10.6406 27.0508 10.6406  c
1900h
190132.4844 9.43750 m
190232.4844 5.43750 l
190334.5938 5.43750 l
190434.5938 6.09375 l
190534.5938 6.44792 34.5885 6.89583 34.5781 7.43750  c
190634.5781 7.96875 34.5781 8.32292 34.5781 8.50000  c
190734.5781 9.03125 34.5938 9.41667 34.6250 9.65625  c
190834.6562 9.88542 34.7031 10.0521 34.7656 10.1562  c
190934.8490 10.2917 34.9583 10.3958 35.0938 10.4688  c
191035.2396 10.5417 35.4010 10.5781 35.5781 10.5781  c
191136.0156 10.5781 36.3594 10.4115 36.6094 10.0781  c
191236.8594 9.74479 36.9844 9.27604 36.9844 8.67188  c
191336.9844 5.43750 l
191439.0781 5.43750 l
191539.0781 12.0000 l
191636.9844 12.0000 l
191736.9844 11.0469 l
191836.6719 11.4323 36.3385 11.7188 35.9844 11.9062  c
191935.6302 12.0833 35.2396 12.1719 34.8125 12.1719  c
192034.0521 12.1719 33.4740 11.9427 33.0781 11.4844  c
192132.6823 11.0156 32.4844 10.3333 32.4844 9.43750  c
1922h
192346.4023 5.64062 m
192446.4023 7.35938 l
192546.1211 7.16146 45.8346 7.01562 45.5430 6.92188  c
192645.2513 6.82812 44.9544 6.78125 44.6523 6.78125  c
192744.0690 6.78125 43.6107 6.95312 43.2773 7.29688  c
192842.9544 7.63021 42.7930 8.10417 42.7930 8.71875  c
192942.7930 9.33333 42.9544 9.81250 43.2773 10.1562  c
193043.6107 10.5000 44.0690 10.6719 44.6523 10.6719  c
193144.9753 10.6719 45.2826 10.6250 45.5742 10.5312  c
193245.8763 10.4271 46.1523 10.2812 46.4023 10.0938  c
193346.4023 11.8125 l
193446.0690 11.9271 45.7357 12.0156 45.4023 12.0781  c
193545.0690 12.1406 44.7305 12.1719 44.3867 12.1719  c
193643.1992 12.1719 42.2721 11.8698 41.6055 11.2656  c
193740.9388 10.6510 40.6055 9.80208 40.6055 8.71875  c
193840.6055 7.63542 40.9388 6.79167 41.6055 6.18750  c
193942.2721 5.58333 43.1992 5.28125 44.3867 5.28125  c
194044.7305 5.28125 45.0690 5.31250 45.4023 5.37500  c
194145.7357 5.42708 46.0690 5.51562 46.4023 5.64062  c
1942h
194350.5000 3.57812 m
194450.5000 5.43750 l
194552.6719 5.43750 l
194652.6719 6.93750 l
194750.5000 6.93750 l
194850.5000 9.71875 l
194950.5000 10.0208 50.5573 10.2292 50.6719 10.3438  c
195050.7969 10.4479 51.0417 10.5000 51.4062 10.5000  c
195152.4844 10.5000 l
195252.4844 12.0000 l
195350.6875 12.0000 l
195449.8542 12.0000 49.2656 11.8281 48.9219 11.4844  c
195548.5781 11.1406 48.4062 10.5521 48.4062 9.71875  c
195648.4062 6.93750 l
195747.3594 6.93750 l
195847.3594 5.43750 l
195948.4062 5.43750 l
196048.4062 3.57812 l
196150.5000 3.57812 l
1962h
1963f
1964[ 1.00000 0.00000 0.00000 1.00000 -269.000 -21.0000 ] concat
1965[ 1.00000 0.00000 0.00000 1.00000 275.000 162.000 ] concat
1966newpath
19671.40625 10.5156 m
19682.64062 10.5156 l
19692.64062 12.0000 l
19701.40625 12.0000 l
19711.40625 10.5156 l
1972h
19731.40625 5.79688 m
19742.64062 5.79688 l
19752.64062 7.28125 l
19761.40625 7.28125 l
19771.40625 5.79688 l
1978h
19799.35547 5.62500 m
19809.35547 6.65625 l
19819.05339 6.50000 8.73568 6.38542 8.40234 6.31250  c
19828.07943 6.22917 7.74089 6.18750 7.38672 6.18750  c
19836.85547 6.18750 6.45443 6.27083 6.18359 6.43750  c
19845.91276 6.59375 5.77734 6.83854 5.77734 7.17188  c
19855.77734 7.42188 5.87109 7.61979 6.05859 7.76562  c
19866.25651 7.90104 6.64714 8.03125 7.23047 8.15625  c
19877.58984 8.25000 l
19888.36068 8.40625 8.90755 8.63542 9.23047 8.93750  c
19899.55339 9.23958 9.71484 9.65625 9.71484 10.1875  c
19909.71484 10.8021 9.47005 11.2865 8.98047 11.6406  c
19918.50130 11.9948 7.83984 12.1719 6.99609 12.1719  c
19926.64193 12.1719 6.27214 12.1354 5.88672 12.0625  c
19935.51172 12.0000 5.11589 11.9010 4.69922 11.7656  c
19944.69922 10.6406 l
19955.09505 10.8490 5.48568 11.0052 5.87109 11.1094  c
19966.25651 11.2135 6.64193 11.2656 7.02734 11.2656  c
19977.52734 11.2656 7.91276 11.1823 8.18359 11.0156  c
19988.46484 10.8385 8.60547 10.5885 8.60547 10.2656  c
19998.60547 9.97396 8.50651 9.75000 8.30859 9.59375  c
20008.11068 9.43750 7.67839 9.28646 7.01172 9.14062  c
20016.63672 9.06250 l
20025.97005 8.91667 5.48568 8.69792 5.18359 8.40625  c
20034.89193 8.11458 4.74609 7.71875 4.74609 7.21875  c
20044.74609 6.59375 4.96484 6.11458 5.40234 5.78125  c
20055.83984 5.44792 6.45964 5.28125 7.26172 5.28125  c
20067.65755 5.28125 8.03255 5.31250 8.38672 5.37500  c
20078.74089 5.42708 9.06380 5.51042 9.35547 5.62500  c
2008h
200914.1543 12.6094 m
201013.8522 13.3906 13.5553 13.9010 13.2637 14.1406  c
201112.9720 14.3802 12.5866 14.5000 12.1074 14.5000  c
201211.2480 14.5000 l
201311.2480 13.5938 l
201411.8730 13.5938 l
201512.1751 13.5938 12.4043 13.5208 12.5605 13.3750  c
201612.7272 13.2396 12.9095 12.9115 13.1074 12.3906  c
201713.3105 11.8906 l
201810.6543 5.43750 l
201911.7949 5.43750 l
202013.8418 10.5625 l
202115.9043 5.43750 l
202217.0449 5.43750 l
202314.1543 12.6094 l
2024h
202523.9902 8.03125 m
202623.9902 12.0000 l
202722.9121 12.0000 l
202822.9121 8.07812 l
202922.9121 7.45312 22.7871 6.98958 22.5371 6.68750  c
203022.2975 6.37500 21.9382 6.21875 21.4590 6.21875  c
203120.8757 6.21875 20.4121 6.40625 20.0684 6.78125  c
203219.7350 7.14583 19.5684 7.65104 19.5684 8.29688  c
203319.5684 12.0000 l
203418.4902 12.0000 l
203518.4902 5.43750 l
203619.5684 5.43750 l
203719.5684 6.45312 l
203819.8288 6.05729 20.1309 5.76562 20.4746 5.57812  c
203920.8288 5.38021 21.2350 5.28125 21.6934 5.28125  c
204022.4434 5.28125 23.0111 5.51562 23.3965 5.98438  c
204123.7923 6.44271 23.9902 7.12500 23.9902 8.03125  c
2042h
204330.8613 5.68750 m
204430.8613 6.70312 l
204530.5488 6.52604 30.2415 6.39583 29.9395 6.31250  c
204629.6374 6.22917 29.3301 6.18750 29.0176 6.18750  c
204728.3092 6.18750 27.7624 6.41146 27.3770 6.85938  c
204826.9915 7.29688 26.7988 7.91667 26.7988 8.71875  c
204926.7988 9.52083 26.9915 10.1458 27.3770 10.5938  c
205027.7624 11.0312 28.3092 11.2500 29.0176 11.2500  c
205129.3301 11.2500 29.6374 11.2083 29.9395 11.1250  c
205230.2415 11.0417 30.5488 10.9167 30.8613 10.7500  c
205330.8613 11.7500 l
205430.5592 11.8854 30.2467 11.9896 29.9238 12.0625  c
205529.6009 12.1354 29.2572 12.1719 28.8926 12.1719  c
205627.9030 12.1719 27.1165 11.8646 26.5332 11.2500  c
205725.9499 10.6250 25.6582 9.78125 25.6582 8.71875  c
205825.6582 7.65625 25.9499 6.81771 26.5332 6.20312  c
205927.1270 5.58854 27.9395 5.28125 28.9707 5.28125  c
206029.2936 5.28125 29.6113 5.31771 29.9238 5.39062  c
206130.2467 5.45312 30.5592 5.55208 30.8613 5.68750  c
2062h
206335.3184 2.89062 m
206434.7975 3.78646 34.4069 4.67708 34.1465 5.56250  c
206533.8965 6.43750 33.7715 7.32812 33.7715 8.23438  c
206633.7715 9.13021 33.8965 10.0208 34.1465 10.9062  c
206734.4069 11.7917 34.7975 12.6823 35.3184 13.5781  c
206834.3809 13.5781 l
206933.7975 12.6615 33.3600 11.7604 33.0684 10.8750  c
207032.7767 9.98958 32.6309 9.10938 32.6309 8.23438  c
207132.6309 7.35938 32.7767 6.48438 33.0684 5.60938  c
207233.3600 4.72396 33.7975 3.81771 34.3809 2.89062  c
207335.3184 2.89062 l
2074h
207537.2500 2.89062 m
207638.1875 2.89062 l
207738.7708 3.81771 39.2083 4.72396 39.5000 5.60938  c
207839.7917 6.48438 39.9375 7.35938 39.9375 8.23438  c
207939.9375 9.10938 39.7917 9.98958 39.5000 10.8750  c
208039.2083 11.7604 38.7708 12.6615 38.1875 13.5781  c
208137.2500 13.5781 l
208237.7604 12.6823 38.1458 11.7917 38.4062 10.9062  c
208338.6667 10.0208 38.7969 9.13021 38.7969 8.23438  c
208438.7969 7.32812 38.6667 6.43750 38.4062 5.56250  c
208538.1458 4.67708 37.7604 3.78646 37.2500 2.89062  c
2086h
2087f
2088[ 1.00000 0.00000 0.00000 1.00000 -275.000 -162.000 ] concat
20891.00000 1.00000 1.00000 RG
20900.00000 0.00000 0.00000 RG
2091[ 7.00000 3.00000 1.00000 3.00000 ] 0.00000 d
2092newpath
2093181.000 143.000 m
2094181.000 143.000 l
2095272.000 143.000 l
2096S
2097[ ] 0.00000 d
2098[ 7.00000 3.00000 1.00000 3.00000 ] 0.00000 d
2099[ ] 0.00000 d
21001.00000 1.00000 1.00000 RG
21010.00000 0.00000 0.00000 RG
21022.00000 w
2103newpath
2104296.000 128.000 m
2105296.000 128.000 l
2106296.000 76.0000 l
2107S
21081.00000 w
2109newpath
2110296.000 76.0000 m
2111293.000 83.0000 l
2112296.000 84.0000 l
2113299.000 83.0000 l
2114h
2115f
2116newpath
2117296.000 76.0000 m
2118293.000 83.0000 l
2119296.000 84.0000 l
2120299.000 83.0000 l
2121h
2122S
21232.00000 w
21241.00000 w
21251.00000 1.00000 1.00000 RG
2126newpath
2127386.000 41.0000 m
2128434.000 41.0000 l
2129434.000 73.0000 l
2130386.000 73.0000 l
2131386.000 41.0000 l
2132h
2133f
21340.00000 0.00000 0.00000 RG
21352.00000 w
2136newpath
2137386.000 41.0000 m
2138434.000 41.0000 l
2139434.000 73.0000 l
2140386.000 73.0000 l
2141386.000 41.0000 l
2142h
2143S
21441.00000 w
21451.00000 1.00000 1.00000 RG
2146newpath
2147429.000 144.000 m
2148429.000 155.046 420.046 164.000 409.000 164.000  c
2149397.954 164.000 389.000 155.046 389.000 144.000  c
2150389.000 132.954 397.954 124.000 409.000 124.000  c
2151420.046 124.000 429.000 132.954 429.000 144.000  c
2152h
2153f
21540.00000 0.00000 0.00000 RG
21552.00000 w
2156newpath
2157429.000 144.000 m
2158429.000 155.046 420.046 164.000 409.000 164.000  c
2159397.954 164.000 389.000 155.046 389.000 144.000  c
2160389.000 132.954 397.954 124.000 409.000 124.000  c
2161420.046 124.000 429.000 132.954 429.000 144.000  c
2162h
2163S
21641.00000 w
2165[ 1.00000 0.00000 0.00000 1.00000 381.000 22.0000 ] concat
2166newpath
21673.10938 11.0469 m
21683.10938 14.5000 l
21691.01562 14.5000 l
21701.01562 5.43750 l
21713.10938 5.43750 l
21723.10938 6.39062 l
21733.40104 6.01562 3.71875 5.73958 4.06250 5.56250  c
21744.41667 5.37500 4.82292 5.28125 5.28125 5.28125  c
21756.09375 5.28125 6.75521 5.60417 7.26562 6.25000  c
21767.78646 6.88542 8.04688 7.70833 8.04688 8.71875  c
21778.04688 9.72917 7.78646 10.5573 7.26562 11.2031  c
21786.75521 11.8490 6.09375 12.1719 5.28125 12.1719  c
21794.82292 12.1719 4.41667 12.0833 4.06250 11.9062  c
21803.71875 11.7188 3.40104 11.4323 3.10938 11.0469  c
2181h
21824.50000 6.79688 m
21834.05208 6.79688 3.70833 6.96354 3.46875 7.29688  c
21843.22917 7.63021 3.10938 8.10417 3.10938 8.71875  c
21853.10938 9.34375 3.22917 9.82292 3.46875 10.1562  c
21863.70833 10.4792 4.05208 10.6406 4.50000 10.6406  c
21874.94792 10.6406 5.29167 10.4792 5.53125 10.1562  c
21885.77083 9.82292 5.89062 9.34375 5.89062 8.71875  c
21895.89062 8.09375 5.77083 7.61979 5.53125 7.29688  c
21905.29167 6.96354 4.94792 6.79688 4.50000 6.79688  c
2191h
219214.4805 7.21875 m
219314.2930 7.13542 14.1055 7.07292 13.9180 7.03125  c
219413.7409 6.98958 13.5586 6.96875 13.3711 6.96875  c
219512.8398 6.96875 12.4284 7.14583 12.1367 7.50000  c
219611.8451 7.84375 11.6992 8.33333 11.6992 8.96875  c
219711.6992 12.0000 l
21989.60547 12.0000 l
21999.60547 5.43750 l
220011.6992 5.43750 l
220111.6992 6.51562 l
220211.9701 6.08854 12.2773 5.77604 12.6211 5.57812  c
220312.9753 5.38021 13.3971 5.28125 13.8867 5.28125  c
220413.9492 5.28125 14.0221 5.28646 14.1055 5.29688  c
220514.1888 5.29688 14.3086 5.30729 14.4648 5.32812  c
220614.4805 7.21875 l
2207h
220818.6328 6.78125 m
220918.1745 6.78125 17.8203 6.94792 17.5703 7.28125  c
221017.3307 7.61458 17.2109 8.09375 17.2109 8.71875  c
221117.2109 9.35417 17.3307 9.83854 17.5703 10.1719  c
221217.8203 10.5052 18.1745 10.6719 18.6328 10.6719  c
221319.0911 10.6719 19.4401 10.5052 19.6797 10.1719  c
221419.9297 9.83854 20.0547 9.35417 20.0547 8.71875  c
221520.0547 8.09375 19.9297 7.61458 19.6797 7.28125  c
221619.4401 6.94792 19.0911 6.78125 18.6328 6.78125  c
2217h
221818.6328 5.28125 m
221919.7682 5.28125 20.6536 5.58854 21.2891 6.20312  c
222021.9245 6.80729 22.2422 7.64583 22.2422 8.71875  c
222122.2422 9.80208 21.9245 10.6510 21.2891 11.2656  c
222220.6536 11.8698 19.7682 12.1719 18.6328 12.1719  c
222317.5078 12.1719 16.6224 11.8698 15.9766 11.2656  c
222415.3411 10.6510 15.0234 9.80208 15.0234 8.71875  c
222515.0234 7.64583 15.3411 6.80729 15.9766 6.20312  c
222616.6224 5.58854 17.5078 5.28125 18.6328 5.28125  c
2227h
222828.2207 6.39062 m
222928.2207 2.87500 l
223030.3301 2.87500 l
223130.3301 12.0000 l
223228.2207 12.0000 l
223328.2207 11.0469 l
223427.9395 11.4323 27.6217 11.7188 27.2676 11.9062  c
223526.9238 12.0833 26.5228 12.1719 26.0645 12.1719  c
223625.2520 12.1719 24.5853 11.8490 24.0645 11.2031  c
223723.5540 10.5573 23.2988 9.72917 23.2988 8.71875  c
223823.2988 7.70833 23.5540 6.88542 24.0645 6.25000  c
223924.5853 5.60417 25.2520 5.28125 26.0645 5.28125  c
224026.5124 5.28125 26.9134 5.37500 27.2676 5.56250  c
224127.6217 5.73958 27.9395 6.01562 28.2207 6.39062  c
2242h
224326.8457 10.6406 m
224427.2936 10.6406 27.6322 10.4792 27.8613 10.1562  c
224528.1009 9.82292 28.2207 9.34375 28.2207 8.71875  c
224628.2207 8.09375 28.1009 7.61979 27.8613 7.29688  c
224727.6322 6.96354 27.2936 6.79688 26.8457 6.79688  c
224826.3978 6.79688 26.0540 6.96354 25.8145 7.29688  c
224925.5853 7.61979 25.4707 8.09375 25.4707 8.71875  c
225025.4707 9.34375 25.5853 9.82292 25.8145 10.1562  c
225126.0540 10.4792 26.3978 10.6406 26.8457 10.6406  c
2252h
225332.2793 9.43750 m
225432.2793 5.43750 l
225534.3887 5.43750 l
225634.3887 6.09375 l
225734.3887 6.44792 34.3835 6.89583 34.3730 7.43750  c
225834.3730 7.96875 34.3730 8.32292 34.3730 8.50000  c
225934.3730 9.03125 34.3887 9.41667 34.4199 9.65625  c
226034.4512 9.88542 34.4980 10.0521 34.5605 10.1562  c
226134.6439 10.2917 34.7533 10.3958 34.8887 10.4688  c
226235.0345 10.5417 35.1960 10.5781 35.3730 10.5781  c
226335.8105 10.5781 36.1543 10.4115 36.4043 10.0781  c
226436.6543 9.74479 36.7793 9.27604 36.7793 8.67188  c
226536.7793 5.43750 l
226638.8730 5.43750 l
226738.8730 12.0000 l
226836.7793 12.0000 l
226936.7793 11.0469 l
227036.4668 11.4323 36.1335 11.7188 35.7793 11.9062  c
227135.4251 12.0833 35.0345 12.1719 34.6074 12.1719  c
227233.8470 12.1719 33.2689 11.9427 32.8730 11.4844  c
227332.4772 11.0156 32.2793 10.3333 32.2793 9.43750  c
2274h
227546.1973 5.64062 m
227646.1973 7.35938 l
227745.9160 7.16146 45.6296 7.01562 45.3379 6.92188  c
227845.0462 6.82812 44.7493 6.78125 44.4473 6.78125  c
227943.8639 6.78125 43.4056 6.95312 43.0723 7.29688  c
228042.7493 7.63021 42.5879 8.10417 42.5879 8.71875  c
228142.5879 9.33333 42.7493 9.81250 43.0723 10.1562  c
228243.4056 10.5000 43.8639 10.6719 44.4473 10.6719  c
228344.7702 10.6719 45.0775 10.6250 45.3691 10.5312  c
228445.6712 10.4271 45.9473 10.2812 46.1973 10.0938  c
228546.1973 11.8125 l
228645.8639 11.9271 45.5306 12.0156 45.1973 12.0781  c
228744.8639 12.1406 44.5254 12.1719 44.1816 12.1719  c
228842.9941 12.1719 42.0671 11.8698 41.4004 11.2656  c
228940.7337 10.6510 40.4004 9.80208 40.4004 8.71875  c
229040.4004 7.63542 40.7337 6.79167 41.4004 6.18750  c
229142.0671 5.58333 42.9941 5.28125 44.1816 5.28125  c
229244.5254 5.28125 44.8639 5.31250 45.1973 5.37500  c
229345.5306 5.42708 45.8639 5.51562 46.1973 5.64062  c
2294h
229554.5605 8.70312 m
229654.5605 9.29688 l
229749.6543 9.29688 l
229849.7064 9.78646 49.8835 10.1562 50.1855 10.4062  c
229950.4876 10.6562 50.9147 10.7812 51.4668 10.7812  c
230051.9043 10.7812 52.3522 10.7135 52.8105 10.5781  c
230153.2793 10.4427 53.7585 10.2448 54.2480 9.98438  c
230254.2480 11.5938 l
230353.7480 11.7812 53.2480 11.9219 52.7480 12.0156  c
230452.2585 12.1198 51.7637 12.1719 51.2637 12.1719  c
230550.0762 12.1719 49.1543 11.8698 48.4980 11.2656  c
230647.8418 10.6615 47.5137 9.81250 47.5137 8.71875  c
230747.5137 7.65625 47.8366 6.81771 48.4824 6.20312  c
230849.1283 5.58854 50.0189 5.28125 51.1543 5.28125  c
230952.1855 5.28125 53.0085 5.59375 53.6230 6.21875  c
231054.2480 6.83333 54.5605 7.66146 54.5605 8.70312  c
2311h
231252.4043 8.00000 m
231352.4043 7.60417 52.2845 7.28646 52.0449 7.04688  c
231451.8158 6.79688 51.5137 6.67188 51.1387 6.67188  c
231550.7324 6.67188 50.3991 6.78646 50.1387 7.01562  c
231649.8887 7.24479 49.7324 7.57292 49.6699 8.00000  c
231752.4043 8.00000 l
2318h
2319f
2320[ 1.00000 0.00000 0.00000 1.00000 -381.000 -22.0000 ] concat
2321[ 1.00000 0.00000 0.00000 1.00000 389.000 164.000 ] concat
2322newpath
23235.89062 7.21875 m
23245.70312 7.13542 5.51562 7.07292 5.32812 7.03125  c
23255.15104 6.98958 4.96875 6.96875 4.78125 6.96875  c
23264.25000 6.96875 3.83854 7.14583 3.54688 7.50000  c
23273.25521 7.84375 3.10938 8.33333 3.10938 8.96875  c
23283.10938 12.0000 l
23291.01562 12.0000 l
23301.01562 5.43750 l
23313.10938 5.43750 l
23323.10938 6.51562 l
23333.38021 6.08854 3.68750 5.77604 4.03125 5.57812  c
23344.38542 5.38021 4.80729 5.28125 5.29688 5.28125  c
23355.35938 5.28125 5.43229 5.28646 5.51562 5.29688  c
23365.59896 5.29688 5.71875 5.30729 5.87500 5.32812  c
23375.89062 7.21875 l
2338h
233913.4805 8.70312 m
234013.4805 9.29688 l
23418.57422 9.29688 l
23428.62630 9.78646 8.80339 10.1562 9.10547 10.4062  c
23439.40755 10.6562 9.83464 10.7812 10.3867 10.7812  c
234410.8242 10.7812 11.2721 10.7135 11.7305 10.5781  c
234512.1992 10.4427 12.6784 10.2448 13.1680 9.98438  c
234613.1680 11.5938 l
234712.6680 11.7812 12.1680 11.9219 11.6680 12.0156  c
234811.1784 12.1198 10.6836 12.1719 10.1836 12.1719  c
23498.99609 12.1719 8.07422 11.8698 7.41797 11.2656  c
23506.76172 10.6615 6.43359 9.81250 6.43359 8.71875  c
23516.43359 7.65625 6.75651 6.81771 7.40234 6.20312  c
23528.04818 5.58854 8.93880 5.28125 10.0742 5.28125  c
235311.1055 5.28125 11.9284 5.59375 12.5430 6.21875  c
235413.1680 6.83333 13.4805 7.66146 13.4805 8.70312  c
2355h
235611.3242 8.00000 m
235711.3242 7.60417 11.2044 7.28646 10.9648 7.04688  c
235810.7357 6.79688 10.4336 6.67188 10.0586 6.67188  c
23599.65234 6.67188 9.31901 6.78646 9.05859 7.01562  c
23608.80859 7.24479 8.65234 7.57292 8.58984 8.00000  c
236111.3242 8.00000 l
2362h
236318.0098 9.04688 m
236417.5723 9.04688 17.2389 9.11979 17.0098 9.26562  c
236516.7910 9.41146 16.6816 9.63021 16.6816 9.92188  c
236616.6816 10.1927 16.7702 10.4062 16.9473 10.5625  c
236717.1348 10.7083 17.3848 10.7812 17.6973 10.7812  c
236818.0931 10.7812 18.4264 10.6406 18.6973 10.3594  c
236918.9681 10.0677 19.1035 9.70833 19.1035 9.28125  c
237019.1035 9.04688 l
237118.0098 9.04688 l
2372h
237321.2129 8.25000 m
237421.2129 12.0000 l
237519.1035 12.0000 l
237619.1035 11.0312 l
237718.8223 11.4271 18.5046 11.7188 18.1504 11.9062  c
237817.7962 12.0833 17.3691 12.1719 16.8691 12.1719  c
237916.1816 12.1719 15.6243 11.9740 15.1973 11.5781  c
238014.7806 11.1823 14.5723 10.6667 14.5723 10.0312  c
238114.5723 9.26042 14.8379 8.69792 15.3691 8.34375  c
238215.9004 7.97917 16.7285 7.79688 17.8535 7.79688  c
238319.1035 7.79688 l
238419.1035 7.64062 l
238519.1035 7.30729 18.9681 7.06250 18.6973 6.90625  c
238618.4368 6.75000 18.0306 6.67188 17.4785 6.67188  c
238717.0306 6.67188 16.6139 6.71875 16.2285 6.81250  c
238815.8431 6.89583 15.4837 7.03125 15.1504 7.21875  c
238915.1504 5.60938 l
239015.5983 5.50521 16.0462 5.42708 16.4941 5.37500  c
239116.9525 5.31250 17.4056 5.28125 17.8535 5.28125  c
239219.0410 5.28125 19.8952 5.51562 20.4160 5.98438  c
239320.9473 6.44271 21.2129 7.19792 21.2129 8.25000  c
2394h
239527.6230 6.39062 m
239627.6230 2.87500 l
239729.7324 2.87500 l
239829.7324 12.0000 l
239927.6230 12.0000 l
240027.6230 11.0469 l
240127.3418 11.4323 27.0241 11.7188 26.6699 11.9062  c
240226.3262 12.0833 25.9251 12.1719 25.4668 12.1719  c
240324.6543 12.1719 23.9876 11.8490 23.4668 11.2031  c
240422.9564 10.5573 22.7012 9.72917 22.7012 8.71875  c
240522.7012 7.70833 22.9564 6.88542 23.4668 6.25000  c
240623.9876 5.60417 24.6543 5.28125 25.4668 5.28125  c
240725.9147 5.28125 26.3158 5.37500 26.6699 5.56250  c
240827.0241 5.73958 27.3418 6.01562 27.6230 6.39062  c
2409h
241026.2480 10.6406 m
241126.6960 10.6406 27.0345 10.4792 27.2637 10.1562  c
241227.5033 9.82292 27.6230 9.34375 27.6230 8.71875  c
241327.6230 8.09375 27.5033 7.61979 27.2637 7.29688  c
241427.0345 6.96354 26.6960 6.79688 26.2480 6.79688  c
241525.8001 6.79688 25.4564 6.96354 25.2168 7.29688  c
241624.9876 7.61979 24.8730 8.09375 24.8730 8.71875  c
241724.8730 9.34375 24.9876 9.82292 25.2168 10.1562  c
241825.4564 10.4792 25.8001 10.6406 26.2480 10.6406  c
2419h
242030.8848 5.43750 m
242132.9941 5.43750 l
242234.7598 9.89062 l
242336.2598 5.43750 l
242438.3535 5.43750 l
242535.5879 12.6250 l
242635.3171 13.3542 34.9941 13.8646 34.6191 14.1562  c
242734.2546 14.4479 33.7702 14.5938 33.1660 14.5938  c
242831.9473 14.5938 l
242931.9473 13.2188 l
243032.6035 13.2188 l
243132.9577 13.2188 33.2129 13.1615 33.3691 13.0469  c
243233.5358 12.9323 33.6660 12.7292 33.7598 12.4375  c
243333.8223 12.2500 l
243430.8848 5.43750 l
2435h
2436f
2437[ 1.00000 0.00000 0.00000 1.00000 -389.000 -164.000 ] concat
2438[ 1.00000 0.00000 0.00000 1.00000 405.000 137.000 ] concat
2439newpath
24401.48438 11.0000 m
24413.42188 11.0000 l
24423.42188 4.32812 l
24431.31250 4.75000 l
24441.31250 3.67188 l
24453.40625 3.25000 l
24464.59375 3.25000 l
24474.59375 11.0000 l
24486.53125 11.0000 l
24496.53125 12.0000 l
24501.48438 12.0000 l
24511.48438 11.0000 l
2452h
2453f
2454[ 1.00000 0.00000 0.00000 1.00000 -405.000 -137.000 ] concat
24551.00000 1.00000 1.00000 RG
24560.00000 0.00000 0.00000 RG
24572.00000 w
2458newpath
2459316.000 56.0000 m
2460316.000 56.0000 l
2461386.000 56.0000 l
2462S
24631.00000 w
2464newpath
2465386.000 56.0000 m
2466379.000 53.0000 l
2467378.000 56.0000 l
2468379.000 59.0000 l
2469h
2470f
2471newpath
2472386.000 56.0000 m
2473379.000 53.0000 l
2474378.000 56.0000 l
2475379.000 59.0000 l
2476h
2477S
24782.00000 w
24791.00000 w
24801.00000 1.00000 1.00000 RG
24810.00000 0.00000 0.00000 RG
24822.00000 w
2483newpath
2484390.000 144.000 m
2485390.000 144.000 l
2486320.000 144.000 l
2487S
24881.00000 w
2489newpath
2490320.000 144.000 m
2491327.000 147.000 l
2492328.000 144.000 l
2493327.000 141.000 l
2494h
2495f
2496newpath
2497320.000 144.000 m
2498327.000 147.000 l
2499328.000 144.000 l
2500327.000 141.000 l
2501h
2502S
25032.00000 w
25041.00000 w
25051.00000 1.00000 1.00000 RG
25060.00000 0.00000 0.00000 RG
25072.00000 w
2508newpath
2509409.000 73.0000 m
2510409.000 73.0000 l
2511409.000 125.000 l
2512S
25131.00000 w
2514newpath
2515409.000 125.000 m
2516412.000 118.000 l
2517409.000 117.000 l
2518406.000 118.000 l
2519h
2520f
2521newpath
2522409.000 125.000 m
2523412.000 118.000 l
2524409.000 117.000 l
2525406.000 118.000 l
2526h
2527S
25282.00000 w
25291.00000 w
2530
2531%%Trailer
2532%%EOF