1 | %!PS-Adobe-3.0 EPSF-3.0 |
---|
2 | %%Creator: Tk Canvas Widget |
---|
3 | %%Title: Window .17405352.17438520.17475344.17475504.17475464 |
---|
4 | %%CreationDate: Wed May 30 17:14:35 2007 |
---|
5 | %%BoundingBox: -210 102 823 690 |
---|
6 | %%Pages: 1 |
---|
7 | %%DocumentData: Clean7Bit |
---|
8 | %%Orientation: Portrait |
---|
9 | %%EndComments |
---|
10 | |
---|
11 | %%BeginProlog |
---|
12 | /CurrentEncoding [ |
---|
13 | /space/space/space/space/space/space/space/space |
---|
14 | /space/space/space/space/space/space/space/space |
---|
15 | /space/space/space/space/space/space/space/space |
---|
16 | /space/space/space/space/space/space/space/space |
---|
17 | /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle |
---|
18 | /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash |
---|
19 | /zero/one/two/three/four/five/six/seven |
---|
20 | /eight/nine/colon/semicolon/less/equal/greater/question |
---|
21 | /at/A/B/C/D/E/F/G |
---|
22 | /H/I/J/K/L/M/N/O |
---|
23 | /P/Q/R/S/T/U/V/W |
---|
24 | /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore |
---|
25 | /grave/a/b/c/d/e/f/g |
---|
26 | /h/i/j/k/l/m/n/o |
---|
27 | /p/q/r/s/t/u/v/w |
---|
28 | /x/y/z/braceleft/bar/braceright/asciitilde/space |
---|
29 | /Euro/space/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl |
---|
30 | /circumflex/perthousand/Scaron/guilsinglleft/OE/space/Zcaron/space |
---|
31 | /space/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash |
---|
32 | /tilde/trademark/scaron/guilsinglright/oe/space/zcaron/Ydieresis |
---|
33 | /space/exclamdown/cent/sterling/currency/yen/brokenbar/section |
---|
34 | /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron |
---|
35 | /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered |
---|
36 | /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown |
---|
37 | /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla |
---|
38 | /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis |
---|
39 | /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply |
---|
40 | /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls |
---|
41 | /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla |
---|
42 | /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis |
---|
43 | /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide |
---|
44 | /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis |
---|
45 | ] def |
---|
46 | |
---|
47 | 50 dict begin |
---|
48 | % This is a standard prolog for Postscript generated by Tk's canvas |
---|
49 | % widget. |
---|
50 | % RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $ |
---|
51 | |
---|
52 | % The definitions below just define all of the variables used in |
---|
53 | % any of the procedures here. This is needed for obscure reasons |
---|
54 | % explained on p. 716 of the Postscript manual (Section H.2.7, |
---|
55 | % "Initializing Variables," in the section on Encapsulated Postscript). |
---|
56 | |
---|
57 | /baseline 0 def |
---|
58 | /stipimage 0 def |
---|
59 | /height 0 def |
---|
60 | /justify 0 def |
---|
61 | /lineLength 0 def |
---|
62 | /spacing 0 def |
---|
63 | /stipple 0 def |
---|
64 | /strings 0 def |
---|
65 | /xoffset 0 def |
---|
66 | /yoffset 0 def |
---|
67 | /tmpstip null def |
---|
68 | |
---|
69 | |
---|
70 | /cstringshow { |
---|
71 | { |
---|
72 | dup type /stringtype eq |
---|
73 | { show } { glyphshow } |
---|
74 | ifelse |
---|
75 | } |
---|
76 | forall |
---|
77 | } bind def |
---|
78 | |
---|
79 | |
---|
80 | |
---|
81 | /cstringwidth { |
---|
82 | 0 exch 0 exch |
---|
83 | { |
---|
84 | dup type /stringtype eq |
---|
85 | { stringwidth } { |
---|
86 | currentfont /Encoding get exch 1 exch put (\001) stringwidth |
---|
87 | } |
---|
88 | ifelse |
---|
89 | exch 3 1 roll add 3 1 roll add exch |
---|
90 | } |
---|
91 | forall |
---|
92 | } bind def |
---|
93 | |
---|
94 | % font ISOEncode font |
---|
95 | % This procedure changes the encoding of a font from the default |
---|
96 | % Postscript encoding to current system encoding. It's typically invoked just |
---|
97 | % before invoking "setfont". The body of this procedure comes from |
---|
98 | % Section 5.6.1 of the Postscript book. |
---|
99 | |
---|
100 | /ISOEncode { |
---|
101 | dup length dict begin |
---|
102 | {1 index /FID ne {def} {pop pop} ifelse} forall |
---|
103 | /Encoding CurrentEncoding def |
---|
104 | currentdict |
---|
105 | end |
---|
106 | |
---|
107 | % I'm not sure why it's necessary to use "definefont" on this new |
---|
108 | % font, but it seems to be important; just use the name "Temporary" |
---|
109 | % for the font. |
---|
110 | |
---|
111 | /Temporary exch definefont |
---|
112 | } bind def |
---|
113 | |
---|
114 | % StrokeClip |
---|
115 | % |
---|
116 | % This procedure converts the current path into a clip area under |
---|
117 | % the assumption of stroking. It's a bit tricky because some Postscript |
---|
118 | % interpreters get errors during strokepath for dashed lines. If |
---|
119 | % this happens then turn off dashes and try again. |
---|
120 | |
---|
121 | /StrokeClip { |
---|
122 | {strokepath} stopped { |
---|
123 | (This Postscript printer gets limitcheck overflows when) = |
---|
124 | (stippling dashed lines; lines will be printed solid instead.) = |
---|
125 | [] 0 setdash strokepath} if |
---|
126 | clip |
---|
127 | } bind def |
---|
128 | |
---|
129 | % desiredSize EvenPixels closestSize |
---|
130 | % |
---|
131 | % The procedure below is used for stippling. Given the optimal size |
---|
132 | % of a dot in a stipple pattern in the current user coordinate system, |
---|
133 | % compute the closest size that is an exact multiple of the device's |
---|
134 | % pixel size. This allows stipple patterns to be displayed without |
---|
135 | % aliasing effects. |
---|
136 | |
---|
137 | /EvenPixels { |
---|
138 | % Compute exact number of device pixels per stipple dot. |
---|
139 | dup 0 matrix currentmatrix dtransform |
---|
140 | dup mul exch dup mul add sqrt |
---|
141 | |
---|
142 | % Round to an integer, make sure the number is at least 1, and compute |
---|
143 | % user coord distance corresponding to this. |
---|
144 | dup round dup 1 lt {pop 1} if |
---|
145 | exch div mul |
---|
146 | } bind def |
---|
147 | |
---|
148 | % width height string StippleFill -- |
---|
149 | % |
---|
150 | % Given a path already set up and a clipping region generated from |
---|
151 | % it, this procedure will fill the clipping region with a stipple |
---|
152 | % pattern. "String" contains a proper image description of the |
---|
153 | % stipple pattern and "width" and "height" give its dimensions. Each |
---|
154 | % stipple dot is assumed to be about one unit across in the current |
---|
155 | % user coordinate system. This procedure trashes the graphics state. |
---|
156 | |
---|
157 | /StippleFill { |
---|
158 | % The following code is needed to work around a NeWSprint bug. |
---|
159 | |
---|
160 | /tmpstip 1 index def |
---|
161 | |
---|
162 | % Change the scaling so that one user unit in user coordinates |
---|
163 | % corresponds to the size of one stipple dot. |
---|
164 | 1 EvenPixels dup scale |
---|
165 | |
---|
166 | % Compute the bounding box occupied by the path (which is now |
---|
167 | % the clipping region), and round the lower coordinates down |
---|
168 | % to the nearest starting point for the stipple pattern. Be |
---|
169 | % careful about negative numbers, since the rounding works |
---|
170 | % differently on them. |
---|
171 | |
---|
172 | pathbbox |
---|
173 | 4 2 roll |
---|
174 | 5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll |
---|
175 | 6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll |
---|
176 | |
---|
177 | % Stack now: width height string y1 y2 x1 x2 |
---|
178 | % Below is a doubly-nested for loop to iterate across this area |
---|
179 | % in units of the stipple pattern size, going up columns then |
---|
180 | % across rows, blasting out a stipple-pattern-sized rectangle at |
---|
181 | % each position |
---|
182 | |
---|
183 | 6 index exch { |
---|
184 | 2 index 5 index 3 index { |
---|
185 | % Stack now: width height string y1 y2 x y |
---|
186 | |
---|
187 | gsave |
---|
188 | 1 index exch translate |
---|
189 | 5 index 5 index true matrix tmpstip imagemask |
---|
190 | grestore |
---|
191 | } for |
---|
192 | pop |
---|
193 | } for |
---|
194 | pop pop pop pop pop |
---|
195 | } bind def |
---|
196 | |
---|
197 | % -- AdjustColor -- |
---|
198 | % Given a color value already set for output by the caller, adjusts |
---|
199 | % that value to a grayscale or mono value if requested by the CL |
---|
200 | % variable. |
---|
201 | |
---|
202 | /AdjustColor { |
---|
203 | CL 2 lt { |
---|
204 | currentgray |
---|
205 | CL 0 eq { |
---|
206 | .5 lt {0} {1} ifelse |
---|
207 | } if |
---|
208 | setgray |
---|
209 | } if |
---|
210 | } bind def |
---|
211 | |
---|
212 | % x y strings spacing xoffset yoffset justify stipple DrawText -- |
---|
213 | % This procedure does all of the real work of drawing text. The |
---|
214 | % color and font must already have been set by the caller, and the |
---|
215 | % following arguments must be on the stack: |
---|
216 | % |
---|
217 | % x, y - Coordinates at which to draw text. |
---|
218 | % strings - An array of strings, one for each line of the text item, |
---|
219 | % in order from top to bottom. |
---|
220 | % spacing - Spacing between lines. |
---|
221 | % xoffset - Horizontal offset for text bbox relative to x and y: 0 for |
---|
222 | % nw/w/sw anchor, -0.5 for n/center/s, and -1.0 for ne/e/se. |
---|
223 | % yoffset - Vertical offset for text bbox relative to x and y: 0 for |
---|
224 | % nw/n/ne anchor, +0.5 for w/center/e, and +1.0 for sw/s/se. |
---|
225 | % justify - 0 for left justification, 0.5 for center, 1 for right justify. |
---|
226 | % stipple - Boolean value indicating whether or not text is to be |
---|
227 | % drawn in stippled fashion. If text is stippled, |
---|
228 | % procedure StippleText must have been defined to call |
---|
229 | % StippleFill in the right way. |
---|
230 | % |
---|
231 | % Also, when this procedure is invoked, the color and font must already |
---|
232 | % have been set for the text. |
---|
233 | |
---|
234 | /DrawText { |
---|
235 | /stipple exch def |
---|
236 | /justify exch def |
---|
237 | /yoffset exch def |
---|
238 | /xoffset exch def |
---|
239 | /spacing exch def |
---|
240 | /strings exch def |
---|
241 | |
---|
242 | % First scan through all of the text to find the widest line. |
---|
243 | |
---|
244 | /lineLength 0 def |
---|
245 | strings { |
---|
246 | cstringwidth pop |
---|
247 | dup lineLength gt {/lineLength exch def} {pop} ifelse |
---|
248 | newpath |
---|
249 | } forall |
---|
250 | |
---|
251 | % Compute the baseline offset and the actual font height. |
---|
252 | |
---|
253 | 0 0 moveto (TXygqPZ) false charpath |
---|
254 | pathbbox dup /baseline exch def |
---|
255 | exch pop exch sub /height exch def pop |
---|
256 | newpath |
---|
257 | |
---|
258 | % Translate coordinates first so that the origin is at the upper-left |
---|
259 | % corner of the text's bounding box. Remember that x and y for |
---|
260 | % positioning are still on the stack. |
---|
261 | |
---|
262 | translate |
---|
263 | lineLength xoffset mul |
---|
264 | strings length 1 sub spacing mul height add yoffset mul translate |
---|
265 | |
---|
266 | % Now use the baseline and justification information to translate so |
---|
267 | % that the origin is at the baseline and positioning point for the |
---|
268 | % first line of text. |
---|
269 | |
---|
270 | justify lineLength mul baseline neg translate |
---|
271 | |
---|
272 | % Iterate over each of the lines to output it. For each line, |
---|
273 | % compute its width again so it can be properly justified, then |
---|
274 | % display it. |
---|
275 | |
---|
276 | strings { |
---|
277 | dup cstringwidth pop |
---|
278 | justify neg mul 0 moveto |
---|
279 | stipple { |
---|
280 | |
---|
281 | |
---|
282 | % The text is stippled, so turn it into a path and print |
---|
283 | % by calling StippledText, which in turn calls StippleFill. |
---|
284 | % Unfortunately, many Postscript interpreters will get |
---|
285 | % overflow errors if we try to do the whole string at |
---|
286 | % once, so do it a character at a time. |
---|
287 | |
---|
288 | gsave |
---|
289 | /char (X) def |
---|
290 | { |
---|
291 | dup type /stringtype eq { |
---|
292 | % This segment is a string. |
---|
293 | { |
---|
294 | char 0 3 -1 roll put |
---|
295 | currentpoint |
---|
296 | gsave |
---|
297 | char true charpath clip StippleText |
---|
298 | grestore |
---|
299 | char stringwidth translate |
---|
300 | moveto |
---|
301 | } forall |
---|
302 | } { |
---|
303 | % This segment is glyph name |
---|
304 | % Temporary override |
---|
305 | currentfont /Encoding get exch 1 exch put |
---|
306 | currentpoint |
---|
307 | gsave (\001) true charpath clip StippleText |
---|
308 | grestore |
---|
309 | (\001) stringwidth translate |
---|
310 | moveto |
---|
311 | } ifelse |
---|
312 | } forall |
---|
313 | grestore |
---|
314 | } {cstringshow} ifelse |
---|
315 | 0 spacing neg translate |
---|
316 | } forall |
---|
317 | } bind def |
---|
318 | |
---|
319 | %%EndProlog |
---|
320 | %%BeginSetup |
---|
321 | /CL 2 def |
---|
322 | %%EndSetup |
---|
323 | |
---|
324 | %%Page: 1 1 |
---|
325 | save |
---|
326 | 306.0 396.0 translate |
---|
327 | 0.75 0.75 scale |
---|
328 | -9911 -391 translate |
---|
329 | 9223 782 moveto 10600 782 lineto 10600 0 lineto 9223 0 lineto closepath clip newpath |
---|
330 | gsave |
---|
331 | 10537.072734375 807.894806249995 moveto |
---|
332 | 10622.3281898688 672.049108402131 lineto |
---|
333 | 10478.8870187358 666.8701371307 lineto |
---|
334 | 10537.072734375 807.894806249995 lineto |
---|
335 | 1 setlinejoin 1 setlinecap |
---|
336 | 1 setlinewidth |
---|
337 | [] 0 setdash |
---|
338 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
339 | stroke |
---|
340 | grestore |
---|
341 | gsave |
---|
342 | 10537.072734375 807.894806249995 moveto |
---|
343 | 10747.8141890625 948.389109374999 lineto |
---|
344 | 10732.0103361172 764.633097960235 lineto |
---|
345 | 10537.072734375 807.894806249995 lineto |
---|
346 | 1 setlinejoin 1 setlinecap |
---|
347 | 1 setlinewidth |
---|
348 | [] 0 setdash |
---|
349 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
350 | stroke |
---|
351 | grestore |
---|
352 | gsave |
---|
353 | 10697.5602549128 155.969628531795 moveto |
---|
354 | 10710.186302328 -36.9448552904105 lineto |
---|
355 | 10597.99106421 35.2990715777341 lineto |
---|
356 | 10697.5602549128 155.969628531795 lineto |
---|
357 | 1 setlinejoin 1 setlinecap |
---|
358 | 1 setlinewidth |
---|
359 | [] 0 setdash |
---|
360 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
361 | stroke |
---|
362 | grestore |
---|
363 | gsave |
---|
364 | 9982.57157495756 129.138728992501 moveto |
---|
365 | 10134.3826941993 107.72915335256 lineto |
---|
366 | 10021.2118987976 -3.02250580088003 lineto |
---|
367 | 9982.57157495756 129.138728992501 lineto |
---|
368 | 1 setlinejoin 1 setlinecap |
---|
369 | 1 setlinewidth |
---|
370 | [] 0 setdash |
---|
371 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
372 | stroke |
---|
373 | grestore |
---|
374 | gsave |
---|
375 | 10046.025826964 251.338917694313 moveto |
---|
376 | 10048.2948099594 399.546358060881 lineto |
---|
377 | 10191.271471814 382.026718461191 lineto |
---|
378 | 10046.025826964 251.338917694313 lineto |
---|
379 | 1 setlinejoin 1 setlinecap |
---|
380 | 1 setlinewidth |
---|
381 | [] 0 setdash |
---|
382 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
383 | stroke |
---|
384 | grestore |
---|
385 | gsave |
---|
386 | 9601.25159641026 -87.3278685473451 moveto |
---|
387 | 9483.3654609375 105.423290625 lineto |
---|
388 | 9648.30752896256 73.8752948582805 lineto |
---|
389 | 9601.25159641026 -87.3278685473451 lineto |
---|
390 | 1 setlinejoin 1 setlinecap |
---|
391 | 1 setlinewidth |
---|
392 | [] 0 setdash |
---|
393 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
394 | stroke |
---|
395 | grestore |
---|
396 | gsave |
---|
397 | 10330.7708996663 125.299722159609 moveto |
---|
398 | 10134.3826941993 107.72915335256 lineto |
---|
399 | 10239.7525434649 225.92701057162 lineto |
---|
400 | 10330.7708996663 125.299722159609 lineto |
---|
401 | 1 setlinejoin 1 setlinecap |
---|
402 | 1 setlinewidth |
---|
403 | [] 0 setdash |
---|
404 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
405 | stroke |
---|
406 | grestore |
---|
407 | gsave |
---|
408 | 9601.25159641026 -87.3278685473451 moveto |
---|
409 | 9648.30752896256 73.8752948582805 lineto |
---|
410 | 9786.88496297302 -20.9776777402549 lineto |
---|
411 | 9601.25159641026 -87.3278685473451 lineto |
---|
412 | 1 setlinejoin 1 setlinecap |
---|
413 | 1 setlinewidth |
---|
414 | [] 0 setdash |
---|
415 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
416 | stroke |
---|
417 | grestore |
---|
418 | gsave |
---|
419 | 9601.25159641026 -87.3278685473451 moveto |
---|
420 | 9425.038372917 -35.3906370396107 lineto |
---|
421 | 9483.3654609375 105.423290625 lineto |
---|
422 | 9601.25159641026 -87.3278685473451 lineto |
---|
423 | 1 setlinejoin 1 setlinecap |
---|
424 | 1 setlinewidth |
---|
425 | [] 0 setdash |
---|
426 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
427 | stroke |
---|
428 | grestore |
---|
429 | gsave |
---|
430 | 9272.62400625 -35.0710125000041 moveto |
---|
431 | 9483.3654609375 105.423290625 lineto |
---|
432 | 9425.038372917 -35.3906370396107 lineto |
---|
433 | 9272.62400625 -35.0710125000041 lineto |
---|
434 | 1 setlinejoin 1 setlinecap |
---|
435 | 1 setlinewidth |
---|
436 | [] 0 setdash |
---|
437 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
438 | stroke |
---|
439 | grestore |
---|
440 | gsave |
---|
441 | 10143.7773726426 -62.3708117534989 moveto |
---|
442 | 10259.0626073513 10.1137115413112 lineto |
---|
443 | 10273.7486524635 -227.644797637127 lineto |
---|
444 | 10143.7773726426 -62.3708117534989 lineto |
---|
445 | 1 setlinejoin 1 setlinecap |
---|
446 | 1 setlinewidth |
---|
447 | [] 0 setdash |
---|
448 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
449 | stroke |
---|
450 | grestore |
---|
451 | gsave |
---|
452 | 10410.2511612235 -173.97070528453 moveto |
---|
453 | 10273.7486524635 -227.644797637127 lineto |
---|
454 | 10259.0626073513 10.1137115413112 lineto |
---|
455 | 10410.2511612235 -173.97070528453 lineto |
---|
456 | 1 setlinejoin 1 setlinecap |
---|
457 | 1 setlinewidth |
---|
458 | [] 0 setdash |
---|
459 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
460 | stroke |
---|
461 | grestore |
---|
462 | gsave |
---|
463 | 10452.551361615 185.129221145387 moveto |
---|
464 | 10597.99106421 35.2990715777341 lineto |
---|
465 | 10428.9702709136 16.736261777347 lineto |
---|
466 | 10452.551361615 185.129221145387 lineto |
---|
467 | 1 setlinejoin 1 setlinecap |
---|
468 | 1 setlinewidth |
---|
469 | [] 0 setdash |
---|
470 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
471 | stroke |
---|
472 | grestore |
---|
473 | gsave |
---|
474 | 10452.551361615 185.129221145387 moveto |
---|
475 | 10627.5501875093 299.049026834295 lineto |
---|
476 | 10697.5602549128 155.969628531795 lineto |
---|
477 | 10452.551361615 185.129221145387 lineto |
---|
478 | 1 setlinejoin 1 setlinecap |
---|
479 | 1 setlinewidth |
---|
480 | [] 0 setdash |
---|
481 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
482 | stroke |
---|
483 | grestore |
---|
484 | gsave |
---|
485 | 9648.30752896256 73.8752948582805 moveto |
---|
486 | 9870.67137492104 209.375025507183 lineto |
---|
487 | 9786.88496297302 -20.9776777402549 lineto |
---|
488 | 9648.30752896256 73.8752948582805 lineto |
---|
489 | 1 setlinejoin 1 setlinecap |
---|
490 | 1 setlinewidth |
---|
491 | [] 0 setdash |
---|
492 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
493 | stroke |
---|
494 | grestore |
---|
495 | gsave |
---|
496 | 9483.3654609375 105.423290625 moveto |
---|
497 | 9694.106915625 245.917593750004 lineto |
---|
498 | 9648.30752896256 73.8752948582805 lineto |
---|
499 | 9483.3654609375 105.423290625 lineto |
---|
500 | 1 setlinejoin 1 setlinecap |
---|
501 | 1 setlinewidth |
---|
502 | [] 0 setdash |
---|
503 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
504 | stroke |
---|
505 | grestore |
---|
506 | gsave |
---|
507 | 10143.7773726426 -62.3708117534989 moveto |
---|
508 | 10134.3826941993 107.72915335256 lineto |
---|
509 | 10259.0626073513 10.1137115413112 lineto |
---|
510 | 10143.7773726426 -62.3708117534989 lineto |
---|
511 | 1 setlinejoin 1 setlinecap |
---|
512 | 1 setlinewidth |
---|
513 | [] 0 setdash |
---|
514 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
515 | stroke |
---|
516 | grestore |
---|
517 | gsave |
---|
518 | 10452.551361615 185.129221145387 moveto |
---|
519 | 10697.5602549128 155.969628531795 lineto |
---|
520 | 10597.99106421 35.2990715777341 lineto |
---|
521 | 10452.551361615 185.129221145387 lineto |
---|
522 | 1 setlinejoin 1 setlinecap |
---|
523 | 1 setlinewidth |
---|
524 | [] 0 setdash |
---|
525 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
526 | stroke |
---|
527 | grestore |
---|
528 | gsave |
---|
529 | 10452.551361615 185.129221145387 moveto |
---|
530 | 10239.7525434649 225.92701057162 lineto |
---|
531 | 10413.3271083388 355.617301786308 lineto |
---|
532 | 10452.551361615 185.129221145387 lineto |
---|
533 | 1 setlinejoin 1 setlinecap |
---|
534 | 1 setlinewidth |
---|
535 | [] 0 setdash |
---|
536 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
537 | stroke |
---|
538 | grestore |
---|
539 | gsave |
---|
540 | 10567.2825219045 438.69685178297 moveto |
---|
541 | 10718.776650886 425.163738034451 lineto |
---|
542 | 10627.5501875093 299.049026834295 lineto |
---|
543 | 10567.2825219045 438.69685178297 lineto |
---|
544 | 1 setlinejoin 1 setlinecap |
---|
545 | 1 setlinewidth |
---|
546 | [] 0 setdash |
---|
547 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
548 | stroke |
---|
549 | grestore |
---|
550 | gsave |
---|
551 | 10627.5501875093 299.049026834295 moveto |
---|
552 | 10413.3271083388 355.617301786308 lineto |
---|
553 | 10567.2825219045 438.69685178297 lineto |
---|
554 | 10627.5501875093 299.049026834295 lineto |
---|
555 | 1 setlinejoin 1 setlinecap |
---|
556 | 1 setlinewidth |
---|
557 | [] 0 setdash |
---|
558 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
559 | stroke |
---|
560 | grestore |
---|
561 | gsave |
---|
562 | 10330.7708996663 125.299722159609 moveto |
---|
563 | 10452.551361615 185.129221145387 lineto |
---|
564 | 10428.9702709136 16.736261777347 lineto |
---|
565 | 10330.7708996663 125.299722159609 lineto |
---|
566 | 1 setlinejoin 1 setlinecap |
---|
567 | 1 setlinewidth |
---|
568 | [] 0 setdash |
---|
569 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
570 | stroke |
---|
571 | grestore |
---|
572 | gsave |
---|
573 | 10420.9058979142 525.761171429531 moveto |
---|
574 | 10268.247422418 526.223046473529 lineto |
---|
575 | 10326.3312796875 667.400503125002 lineto |
---|
576 | 10420.9058979142 525.761171429531 lineto |
---|
577 | 1 setlinejoin 1 setlinecap |
---|
578 | 1 setlinewidth |
---|
579 | [] 0 setdash |
---|
580 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
581 | stroke |
---|
582 | grestore |
---|
583 | gsave |
---|
584 | 10452.551361615 185.129221145387 moveto |
---|
585 | 10413.3271083388 355.617301786308 lineto |
---|
586 | 10627.5501875093 299.049026834295 lineto |
---|
587 | 10452.551361615 185.129221145387 lineto |
---|
588 | 1 setlinejoin 1 setlinecap |
---|
589 | 1 setlinewidth |
---|
590 | [] 0 setdash |
---|
591 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
592 | stroke |
---|
593 | grestore |
---|
594 | gsave |
---|
595 | 10567.2825219045 438.69685178297 moveto |
---|
596 | 10732.6249987384 580.199201532891 lineto |
---|
597 | 10718.776650886 425.163738034451 lineto |
---|
598 | 10567.2825219045 438.69685178297 lineto |
---|
599 | 1 setlinejoin 1 setlinecap |
---|
600 | 1 setlinewidth |
---|
601 | [] 0 setdash |
---|
602 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
603 | stroke |
---|
604 | grestore |
---|
605 | gsave |
---|
606 | 10326.3312796875 667.400503125002 moveto |
---|
607 | 10537.072734375 807.894806249995 lineto |
---|
608 | 10478.8870187358 666.8701371307 lineto |
---|
609 | 10326.3312796875 667.400503125002 lineto |
---|
610 | 1 setlinejoin 1 setlinecap |
---|
611 | 1 setlinewidth |
---|
612 | [] 0 setdash |
---|
613 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
614 | stroke |
---|
615 | grestore |
---|
616 | gsave |
---|
617 | 10420.9058979142 525.761171429531 moveto |
---|
618 | 10567.2825219045 438.69685178297 lineto |
---|
619 | 10413.3271083388 355.617301786308 lineto |
---|
620 | 10420.9058979142 525.761171429531 lineto |
---|
621 | 1 setlinejoin 1 setlinecap |
---|
622 | 1 setlinewidth |
---|
623 | [] 0 setdash |
---|
624 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
625 | stroke |
---|
626 | grestore |
---|
627 | gsave |
---|
628 | 10191.271471814 382.026718461191 moveto |
---|
629 | 10239.7525434649 225.92701057162 lineto |
---|
630 | 10046.025826964 251.338917694313 lineto |
---|
631 | 10191.271471814 382.026718461191 lineto |
---|
632 | 1 setlinejoin 1 setlinecap |
---|
633 | 1 setlinewidth |
---|
634 | [] 0 setdash |
---|
635 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
636 | stroke |
---|
637 | grestore |
---|
638 | gsave |
---|
639 | 10191.271471814 382.026718461191 moveto |
---|
640 | 10268.247422418 526.223046473529 lineto |
---|
641 | 10413.3271083388 355.617301786308 lineto |
---|
642 | 10191.271471814 382.026718461191 lineto |
---|
643 | 1 setlinejoin 1 setlinecap |
---|
644 | 1 setlinewidth |
---|
645 | [] 0 setdash |
---|
646 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
647 | stroke |
---|
648 | grestore |
---|
649 | gsave |
---|
650 | 10134.3826941993 107.72915335256 moveto |
---|
651 | 10143.7773726426 -62.3708117534989 lineto |
---|
652 | 10021.2118987976 -3.02250580088003 lineto |
---|
653 | 10134.3826941993 107.72915335256 lineto |
---|
654 | 1 setlinejoin 1 setlinecap |
---|
655 | 1 setlinewidth |
---|
656 | [] 0 setdash |
---|
657 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
658 | stroke |
---|
659 | grestore |
---|
660 | gsave |
---|
661 | 10622.3281898688 672.049108402131 moveto |
---|
662 | 10732.6249987384 580.199201532891 lineto |
---|
663 | 10567.2825219045 438.69685178297 lineto |
---|
664 | 10622.3281898688 672.049108402131 lineto |
---|
665 | 1 setlinejoin 1 setlinecap |
---|
666 | 1 setlinewidth |
---|
667 | [] 0 setdash |
---|
668 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
669 | stroke |
---|
670 | grestore |
---|
671 | gsave |
---|
672 | 10326.3312796875 667.400503125002 moveto |
---|
673 | 10268.247422418 526.223046473529 lineto |
---|
674 | 10115.589825 526.906200000001 lineto |
---|
675 | 10326.3312796875 667.400503125002 lineto |
---|
676 | 1 setlinejoin 1 setlinecap |
---|
677 | 1 setlinewidth |
---|
678 | [] 0 setdash |
---|
679 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
680 | stroke |
---|
681 | grestore |
---|
682 | gsave |
---|
683 | 10420.9058979142 525.761171429531 moveto |
---|
684 | 10478.8870187358 666.8701371307 lineto |
---|
685 | 10567.2825219045 438.69685178297 lineto |
---|
686 | 10420.9058979142 525.761171429531 lineto |
---|
687 | 1 setlinejoin 1 setlinecap |
---|
688 | 1 setlinewidth |
---|
689 | [] 0 setdash |
---|
690 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
691 | stroke |
---|
692 | grestore |
---|
693 | gsave |
---|
694 | 10420.9058979142 525.761171429531 moveto |
---|
695 | 10326.3312796875 667.400503125002 lineto |
---|
696 | 10478.8870187358 666.8701371307 lineto |
---|
697 | 10420.9058979142 525.761171429531 lineto |
---|
698 | 1 setlinejoin 1 setlinecap |
---|
699 | 1 setlinewidth |
---|
700 | [] 0 setdash |
---|
701 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
702 | stroke |
---|
703 | grestore |
---|
704 | gsave |
---|
705 | 10268.247422418 526.223046473529 moveto |
---|
706 | 10191.271471814 382.026718461191 lineto |
---|
707 | 10115.589825 526.906200000001 lineto |
---|
708 | 10268.247422418 526.223046473529 lineto |
---|
709 | 1 setlinejoin 1 setlinecap |
---|
710 | 1 setlinewidth |
---|
711 | [] 0 setdash |
---|
712 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
713 | stroke |
---|
714 | grestore |
---|
715 | gsave |
---|
716 | 10420.9058979142 525.761171429531 moveto |
---|
717 | 10413.3271083388 355.617301786308 lineto |
---|
718 | 10268.247422418 526.223046473529 lineto |
---|
719 | 10420.9058979142 525.761171429531 lineto |
---|
720 | 1 setlinejoin 1 setlinecap |
---|
721 | 1 setlinewidth |
---|
722 | [] 0 setdash |
---|
723 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
724 | stroke |
---|
725 | grestore |
---|
726 | gsave |
---|
727 | 10046.025826964 251.338917694313 moveto |
---|
728 | 9870.67137492104 209.375025507183 lineto |
---|
729 | 9904.8483703125 386.411896874997 lineto |
---|
730 | 10046.025826964 251.338917694313 lineto |
---|
731 | 1 setlinejoin 1 setlinecap |
---|
732 | 1 setlinewidth |
---|
733 | [] 0 setdash |
---|
734 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
735 | stroke |
---|
736 | grestore |
---|
737 | gsave |
---|
738 | 10191.271471814 382.026718461191 moveto |
---|
739 | 10413.3271083388 355.617301786308 lineto |
---|
740 | 10239.7525434649 225.92701057162 lineto |
---|
741 | 10191.271471814 382.026718461191 lineto |
---|
742 | 1 setlinejoin 1 setlinecap |
---|
743 | 1 setlinewidth |
---|
744 | [] 0 setdash |
---|
745 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
746 | stroke |
---|
747 | grestore |
---|
748 | gsave |
---|
749 | 10622.3281898688 672.049108402131 moveto |
---|
750 | 10537.072734375 807.894806249995 lineto |
---|
751 | 10732.0103361172 764.633097960235 lineto |
---|
752 | 10622.3281898688 672.049108402131 lineto |
---|
753 | 1 setlinejoin 1 setlinecap |
---|
754 | 1 setlinewidth |
---|
755 | [] 0 setdash |
---|
756 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
757 | stroke |
---|
758 | grestore |
---|
759 | gsave |
---|
760 | 10622.3281898688 672.049108402131 moveto |
---|
761 | 10567.2825219045 438.69685178297 lineto |
---|
762 | 10478.8870187358 666.8701371307 lineto |
---|
763 | 10622.3281898688 672.049108402131 lineto |
---|
764 | 1 setlinejoin 1 setlinecap |
---|
765 | 1 setlinewidth |
---|
766 | [] 0 setdash |
---|
767 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
768 | stroke |
---|
769 | grestore |
---|
770 | gsave |
---|
771 | 9904.8483703125 386.411896874997 moveto |
---|
772 | 9870.67137492104 209.375025507183 lineto |
---|
773 | 9694.106915625 245.917593750004 lineto |
---|
774 | 9904.8483703125 386.411896874997 lineto |
---|
775 | 1 setlinejoin 1 setlinecap |
---|
776 | 1 setlinewidth |
---|
777 | [] 0 setdash |
---|
778 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
779 | stroke |
---|
780 | grestore |
---|
781 | gsave |
---|
782 | 10115.589825 526.906200000001 moveto |
---|
783 | 10191.271471814 382.026718461191 lineto |
---|
784 | 10048.2948099594 399.546358060881 lineto |
---|
785 | 10115.589825 526.906200000001 lineto |
---|
786 | 1 setlinejoin 1 setlinecap |
---|
787 | 1 setlinewidth |
---|
788 | [] 0 setdash |
---|
789 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
790 | stroke |
---|
791 | grestore |
---|
792 | gsave |
---|
793 | 9982.57157495756 129.138728992501 moveto |
---|
794 | 10046.025826964 251.338917694313 lineto |
---|
795 | 10134.3826941993 107.72915335256 lineto |
---|
796 | 9982.57157495756 129.138728992501 lineto |
---|
797 | 1 setlinejoin 1 setlinecap |
---|
798 | 1 setlinewidth |
---|
799 | [] 0 setdash |
---|
800 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
801 | stroke |
---|
802 | grestore |
---|
803 | gsave |
---|
804 | 9904.8483703125 386.411896874997 moveto |
---|
805 | 10115.589825 526.906200000001 lineto |
---|
806 | 10048.2948099594 399.546358060881 lineto |
---|
807 | 9904.8483703125 386.411896874997 lineto |
---|
808 | 1 setlinejoin 1 setlinecap |
---|
809 | 1 setlinewidth |
---|
810 | [] 0 setdash |
---|
811 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
812 | stroke |
---|
813 | grestore |
---|
814 | gsave |
---|
815 | 10048.2948099594 399.546358060881 moveto |
---|
816 | 10046.025826964 251.338917694313 lineto |
---|
817 | 9904.8483703125 386.411896874997 lineto |
---|
818 | 10048.2948099594 399.546358060881 lineto |
---|
819 | 1 setlinejoin 1 setlinecap |
---|
820 | 1 setlinewidth |
---|
821 | [] 0 setdash |
---|
822 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
823 | stroke |
---|
824 | grestore |
---|
825 | gsave |
---|
826 | 10710.186302328 -36.9448552904105 moveto |
---|
827 | 10582.3882937698 -112.174286055004 lineto |
---|
828 | 10597.99106421 35.2990715777341 lineto |
---|
829 | 10710.186302328 -36.9448552904105 lineto |
---|
830 | 1 setlinejoin 1 setlinecap |
---|
831 | 1 setlinewidth |
---|
832 | [] 0 setdash |
---|
833 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
834 | stroke |
---|
835 | grestore |
---|
836 | gsave |
---|
837 | 10582.3882937698 -112.174286055004 moveto |
---|
838 | 10428.9702709136 16.736261777347 lineto |
---|
839 | 10597.99106421 35.2990715777341 lineto |
---|
840 | 10582.3882937698 -112.174286055004 lineto |
---|
841 | 1 setlinejoin 1 setlinecap |
---|
842 | 1 setlinewidth |
---|
843 | [] 0 setdash |
---|
844 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
845 | stroke |
---|
846 | grestore |
---|
847 | gsave |
---|
848 | 10410.2511612235 -173.97070528453 moveto |
---|
849 | 10259.0626073513 10.1137115413112 lineto |
---|
850 | 10428.9702709136 16.736261777347 lineto |
---|
851 | 10410.2511612235 -173.97070528453 lineto |
---|
852 | 1 setlinejoin 1 setlinecap |
---|
853 | 1 setlinewidth |
---|
854 | [] 0 setdash |
---|
855 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
856 | stroke |
---|
857 | grestore |
---|
858 | gsave |
---|
859 | 10428.9702709136 16.736261777347 moveto |
---|
860 | 10582.3882937698 -112.174286055004 lineto |
---|
861 | 10410.2511612235 -173.97070528453 lineto |
---|
862 | 10428.9702709136 16.736261777347 lineto |
---|
863 | 1 setlinejoin 1 setlinecap |
---|
864 | 1 setlinewidth |
---|
865 | [] 0 setdash |
---|
866 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
867 | stroke |
---|
868 | grestore |
---|
869 | gsave |
---|
870 | 10330.7708996663 125.299722159609 moveto |
---|
871 | 10428.9702709136 16.736261777347 lineto |
---|
872 | 10259.0626073513 10.1137115413112 lineto |
---|
873 | 10330.7708996663 125.299722159609 lineto |
---|
874 | 1 setlinejoin 1 setlinecap |
---|
875 | 1 setlinewidth |
---|
876 | [] 0 setdash |
---|
877 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
878 | stroke |
---|
879 | grestore |
---|
880 | gsave |
---|
881 | 10239.7525434649 225.92701057162 moveto |
---|
882 | 10452.551361615 185.129221145387 lineto |
---|
883 | 10330.7708996663 125.299722159609 lineto |
---|
884 | 10239.7525434649 225.92701057162 lineto |
---|
885 | 1 setlinejoin 1 setlinecap |
---|
886 | 1 setlinewidth |
---|
887 | [] 0 setdash |
---|
888 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
889 | stroke |
---|
890 | grestore |
---|
891 | gsave |
---|
892 | 10134.3826941993 107.72915335256 moveto |
---|
893 | 10330.7708996663 125.299722159609 lineto |
---|
894 | 10259.0626073513 10.1137115413112 lineto |
---|
895 | 10134.3826941993 107.72915335256 lineto |
---|
896 | 1 setlinejoin 1 setlinecap |
---|
897 | 1 setlinewidth |
---|
898 | [] 0 setdash |
---|
899 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
900 | stroke |
---|
901 | grestore |
---|
902 | gsave |
---|
903 | 10134.3826941993 107.72915335256 moveto |
---|
904 | 10046.025826964 251.338917694313 lineto |
---|
905 | 10239.7525434649 225.92701057162 lineto |
---|
906 | 10134.3826941993 107.72915335256 lineto |
---|
907 | 1 setlinejoin 1 setlinecap |
---|
908 | 1 setlinewidth |
---|
909 | [] 0 setdash |
---|
910 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
911 | stroke |
---|
912 | grestore |
---|
913 | gsave |
---|
914 | 9870.67137492104 209.375025507183 moveto |
---|
915 | 9648.30752896256 73.8752948582805 lineto |
---|
916 | 9694.106915625 245.917593750004 lineto |
---|
917 | 9870.67137492104 209.375025507183 lineto |
---|
918 | 1 setlinejoin 1 setlinecap |
---|
919 | 1 setlinewidth |
---|
920 | [] 0 setdash |
---|
921 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
922 | stroke |
---|
923 | grestore |
---|
924 | gsave |
---|
925 | 9786.88496297302 -20.9776777402549 moveto |
---|
926 | 9982.57157495756 129.138728992501 lineto |
---|
927 | 10021.2118987976 -3.02250580088003 lineto |
---|
928 | 9786.88496297302 -20.9776777402549 lineto |
---|
929 | 1 setlinejoin 1 setlinecap |
---|
930 | 1 setlinewidth |
---|
931 | [] 0 setdash |
---|
932 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
933 | stroke |
---|
934 | grestore |
---|
935 | gsave |
---|
936 | 9870.67137492104 209.375025507183 moveto |
---|
937 | 10046.025826964 251.338917694313 lineto |
---|
938 | 9982.57157495756 129.138728992501 lineto |
---|
939 | 9870.67137492104 209.375025507183 lineto |
---|
940 | 1 setlinejoin 1 setlinecap |
---|
941 | 1 setlinewidth |
---|
942 | [] 0 setdash |
---|
943 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
944 | stroke |
---|
945 | grestore |
---|
946 | gsave |
---|
947 | 9982.57157495756 129.138728992501 moveto |
---|
948 | 9786.88496297302 -20.9776777402549 lineto |
---|
949 | 9870.67137492104 209.375025507183 lineto |
---|
950 | 9982.57157495756 129.138728992501 lineto |
---|
951 | 1 setlinejoin 1 setlinecap |
---|
952 | 1 setlinewidth |
---|
953 | [] 0 setdash |
---|
954 | 0.000 1.000 0.000 setrgbcolor AdjustColor |
---|
955 | stroke |
---|
956 | grestore |
---|
957 | gsave |
---|
958 | 9910.2780285 395.031668999996 moveto 6.00000000000182 0 rlineto 0 -5.99999999999636 rlineto -6.00000000000182 0 rlineto closepath |
---|
959 | 1.000 1.000 1.000 setrgbcolor AdjustColor |
---|
960 | fill |
---|
961 | 9910.2780285 395.031668999996 moveto 6.00000000000182 0 rlineto 0 -5.99999999999636 rlineto -6.00000000000182 0 rlineto closepath |
---|
962 | 0 setlinejoin 2 setlinecap |
---|
963 | 1 setlinewidth |
---|
964 | [] 0 setdash |
---|
965 | 0.000 0.000 0.000 setrgbcolor AdjustColor |
---|
966 | stroke |
---|
967 | grestore |
---|
968 | restore showpage |
---|
969 | |
---|
970 | %%Trailer |
---|
971 | end |
---|
972 | %%EOF |
---|