1 %!PS-Adobe-3.0 EPSF-3.0
2 %%Creator: Tk Canvas Widget
5 %%CreationDate: Mon Mar 29 10:52:40 2010
6 %%BoundingBox: 149 114 463 679
8 %%DocumentData: Clean7Bit
9 %%Orientation: Portrait
10 %%DocumentNeededResources: font Courier-Bold
15 /space/space/space/space/space/space/space/space
16 /space/space/space/space/space/space/space/space
17 /space/space/space/space/space/space/space/space
18 /space/space/space/space/space/space/space/space
19 /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
20 /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
21 /zero/one/two/three/four/five/six/seven
22 /eight/nine/colon/semicolon/less/equal/greater/question
26 /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore
30 /x/y/z/braceleft/bar/braceright/asciitilde/space
31 /space/space/space/space/space/space/space/space
32 /space/space/space/space/space/space/space/space
33 /space/space/space/space/space/space/space/space
34 /space/space/space/space/space/space/space/space
35 /space/exclamdown/cent/sterling/currency/yen/brokenbar/section
36 /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron
37 /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
38 /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
39 /space/space/space/space/space/space/space/space
40 /space/space/space/space/space/space/space/space
41 /space/space/space/space/space/space/space/space
42 /space/space/space/space/space/space/space/space
43 /space/space/space/space/space/space/space/space
44 /space/space/space/space/space/space/space/space
45 /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
46 /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
50 % This is a standard prolog for Postscript generated by Tk's canvas
52 % RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $
54 % The definitions below just define all of the variables used in
55 % any of the procedures here. This is needed for obscure reasons
56 % explained on p. 716 of the Postscript manual (Section H.2.7,
57 % "Initializing Variables," in the section on Encapsulated Postscript).
74 dup type /stringtype eq
75 { show } { glyphshow }
86 dup type /stringtype eq
88 currentfont /Encoding get exch 1 exch put (\001) stringwidth
91 exch 3 1 roll add 3 1 roll add exch
97 % This procedure changes the encoding of a font from the default
98 % Postscript encoding to current system encoding. It's typically invoked just
99 % before invoking "setfont". The body of this procedure comes from
100 % Section 5.6.1 of the Postscript book.
103 dup length dict begin
104 {1 index /FID ne {def} {pop pop} ifelse} forall
105 /Encoding CurrentEncoding def
109 % I'm not sure why it's necessary to use "definefont" on this new
110 % font, but it seems to be important; just use the name "Temporary"
113 /Temporary exch definefont
118 % This procedure converts the current path into a clip area under
119 % the assumption of stroking. It's a bit tricky because some Postscript
120 % interpreters get errors during strokepath for dashed lines. If
121 % this happens then turn off dashes and try again.
124 {strokepath} stopped {
125 (This Postscript printer gets limitcheck overflows when) =
126 (stippling dashed lines; lines will be printed solid instead.) =
127 [] 0 setdash strokepath} if
131 % desiredSize EvenPixels closestSize
133 % The procedure below is used for stippling. Given the optimal size
134 % of a dot in a stipple pattern in the current user coordinate system,
135 % compute the closest size that is an exact multiple of the device's
136 % pixel size. This allows stipple patterns to be displayed without
140 % Compute exact number of device pixels per stipple dot.
141 dup 0 matrix currentmatrix dtransform
142 dup mul exch dup mul add sqrt
144 % Round to an integer, make sure the number is at least 1, and compute
145 % user coord distance corresponding to this.
146 dup round dup 1 lt {pop 1} if
150 % width height string StippleFill --
152 % Given a path already set up and a clipping region generated from
153 % it, this procedure will fill the clipping region with a stipple
154 % pattern. "String" contains a proper image description of the
155 % stipple pattern and "width" and "height" give its dimensions. Each
156 % stipple dot is assumed to be about one unit across in the current
157 % user coordinate system. This procedure trashes the graphics state.
160 % The following code is needed to work around a NeWSprint bug.
164 % Change the scaling so that one user unit in user coordinates
165 % corresponds to the size of one stipple dot.
166 1 EvenPixels dup scale
168 % Compute the bounding box occupied by the path (which is now
169 % the clipping region), and round the lower coordinates down
170 % to the nearest starting point for the stipple pattern. Be
171 % careful about negative numbers, since the rounding works
172 % differently on them.
176 5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
177 6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
179 % Stack now: width height string y1 y2 x1 x2
180 % Below is a doubly-nested for loop to iterate across this area
181 % in units of the stipple pattern size, going up columns then
182 % across rows, blasting out a stipple-pattern-sized rectangle at
186 2 index 5 index 3 index {
187 % Stack now: width height string y1 y2 x y
190 1 index exch translate
191 5 index 5 index true matrix tmpstip imagemask
200 % Given a color value already set for output by the caller, adjusts
201 % that value to a grayscale or mono value if requested by the CL
214 % x y strings spacing xoffset yoffset justify stipple DrawText --
215 % This procedure does all of the real work of drawing text. The
216 % color and font must already have been set by the caller, and the
217 % following arguments must be on the stack:
219 % x, y - Coordinates at which to draw text.
220 % strings - An array of strings, one for each line of the text item,
221 % in order from top to bottom.
222 % spacing - Spacing between lines.
223 % xoffset - Horizontal offset for text bbox relative to x and y: 0 for
224 % nw/w/sw anchor, -0.5 for n/center/s, and -1.0 for ne/e/se.
225 % yoffset - Vertical offset for text bbox relative to x and y: 0 for
226 % nw/n/ne anchor, +0.5 for w/center/e, and +1.0 for sw/s/se.
227 % justify - 0 for left justification, 0.5 for center, 1 for right justify.
228 % stipple - Boolean value indicating whether or not text is to be
229 % drawn in stippled fashion. If text is stippled,
230 % procedure StippleText must have been defined to call
231 % StippleFill in the right way.
233 % Also, when this procedure is invoked, the color and font must already
234 % have been set for the text.
244 % First scan through all of the text to find the widest line.
249 dup lineLength gt {/lineLength exch def} {pop} ifelse
253 % Compute the baseline offset and the actual font height.
255 0 0 moveto (TXygqPZ) false charpath
256 pathbbox dup /baseline exch def
257 exch pop exch sub /height exch def pop
260 % Translate coordinates first so that the origin is at the upper-left
261 % corner of the text's bounding box. Remember that x and y for
262 % positioning are still on the stack.
265 lineLength xoffset mul
266 strings length 1 sub spacing mul height add yoffset mul translate
268 % Now use the baseline and justification information to translate so
269 % that the origin is at the baseline and positioning point for the
270 % first line of text.
272 justify lineLength mul baseline neg translate
274 % Iterate over each of the lines to output it. For each line,
275 % compute its width again so it can be properly justified, then
280 justify neg mul 0 moveto
284 % The text is stippled, so turn it into a path and print
285 % by calling StippledText, which in turn calls StippleFill.
286 % Unfortunately, many Postscript interpreters will get
287 % overflow errors if we try to do the whole string at
288 % once, so do it a character at a time.
293 dup type /stringtype eq {
294 % This segment is a string.
299 char true charpath clip StippleText
301 char stringwidth translate
305 % This segment is glyph name
307 currentfont /Encoding get exch 1 exch put
309 gsave (\001) true charpath clip StippleText
311 (\001) stringwidth translate
316 } {cstringshow} ifelse
317 0 spacing neg translate
324 %%IncludeResource: font Courier-Bold
329 306.0 396.0 translate
332 0 781 moveto 434 781 lineto 434 0 lineto 0 0 lineto closepath clip newpath
340 0.000 0.000 1.000 setrgbcolor AdjustColor
350 0.000 0.000 1.000 setrgbcolor AdjustColor
354 64 769 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
355 1.000 1.000 0.000 setrgbcolor AdjustColor
357 64 769 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
358 0 setlinejoin 2 setlinecap
361 1.000 0.000 0.000 setrgbcolor AdjustColor
365 /Courier-Bold findfont 8 scalefont ISOEncode setfont
366 0.000 0.000 0.000 setrgbcolor AdjustColor
369 ] 10 -0.5 0.5 0 false DrawText
378 0.000 0.000 1.000 setrgbcolor AdjustColor
388 0.000 0.000 1.000 setrgbcolor AdjustColor
392 64 757 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
393 1.000 1.000 1.000 setrgbcolor AdjustColor
395 64 757 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
396 0 setlinejoin 2 setlinecap
399 0.000 0.000 1.000 setrgbcolor AdjustColor
403 /Courier-Bold findfont 8 scalefont ISOEncode setfont
404 0.000 0.000 0.000 setrgbcolor AdjustColor
407 ] 10 -0.5 0.5 0 false DrawText
416 0.000 0.000 1.000 setrgbcolor AdjustColor
426 0.000 0.000 1.000 setrgbcolor AdjustColor
436 0.000 0.000 1.000 setrgbcolor AdjustColor
446 0.000 0.000 1.000 setrgbcolor AdjustColor
456 0.000 0.000 1.000 setrgbcolor AdjustColor
460 232 733 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
461 1.000 1.000 0.000 setrgbcolor AdjustColor
463 232 733 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
464 0 setlinejoin 2 setlinecap
467 1.000 0.000 0.000 setrgbcolor AdjustColor
471 /Courier-Bold findfont 8 scalefont ISOEncode setfont
472 0.000 0.000 0.000 setrgbcolor AdjustColor
475 ] 10 -0.5 0.5 0 false DrawText
484 0.000 0.000 1.000 setrgbcolor AdjustColor
494 0.000 0.000 1.000 setrgbcolor AdjustColor
504 0.000 0.000 1.000 setrgbcolor AdjustColor
508 232 721 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
509 1.000 1.000 1.000 setrgbcolor AdjustColor
511 232 721 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
512 0 setlinejoin 2 setlinecap
515 0.000 0.000 1.000 setrgbcolor AdjustColor
519 /Courier-Bold findfont 8 scalefont ISOEncode setfont
520 0.000 0.000 0.000 setrgbcolor AdjustColor
523 ] 10 -0.5 0.5 0 false DrawText
527 229.191773397824 715.789813731862 lineto
532 1.000 0.000 0.000 setrgbcolor AdjustColor
535 228.810526855377 722.130866922032 lineto
536 227.456528225209 717.316649570322 lineto
537 226.915037071372 715.391347690014 lineto
538 225.561038441204 710.577130338305 lineto
543 /Courier-Bold findfont 8 scalefont ISOEncode setfont
544 0.000 0.000 0.000 setrgbcolor AdjustColor
547 ] 10 -0.5 0.5 0 false DrawText
556 0.000 0.000 1.000 setrgbcolor AdjustColor
566 0.000 0.000 1.000 setrgbcolor AdjustColor
576 0.000 0.000 1.000 setrgbcolor AdjustColor
586 0.000 0.000 1.000 setrgbcolor AdjustColor
596 0.000 0.000 1.000 setrgbcolor AdjustColor
606 0.000 0.000 1.000 setrgbcolor AdjustColor
610 232 697 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
611 1.000 1.000 1.000 setrgbcolor AdjustColor
613 232 697 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
614 0 setlinejoin 2 setlinecap
617 0.000 0.000 1.000 setrgbcolor AdjustColor
621 /Courier-Bold findfont 8 scalefont ISOEncode setfont
622 0.000 0.000 0.000 setrgbcolor AdjustColor
625 ] 10 -0.5 0.5 0 false DrawText
634 0.000 0.000 1.000 setrgbcolor AdjustColor
644 0.000 0.000 1.000 setrgbcolor AdjustColor
654 0.000 0.000 1.000 setrgbcolor AdjustColor
664 0.000 0.000 1.000 setrgbcolor AdjustColor
674 0.000 0.000 1.000 setrgbcolor AdjustColor
684 0.000 0.000 1.000 setrgbcolor AdjustColor
688 148 673 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
689 1.000 1.000 0.000 setrgbcolor AdjustColor
691 148 673 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
692 0 setlinejoin 2 setlinecap
695 1.000 0.000 0.000 setrgbcolor AdjustColor
699 /Courier-Bold findfont 8 scalefont ISOEncode setfont
700 0.000 0.000 0.000 setrgbcolor AdjustColor
702 [(elements_update:1)]
703 ] 10 -0.5 0.5 0 false DrawText
712 0.000 0.000 1.000 setrgbcolor AdjustColor
722 0.000 0.000 1.000 setrgbcolor AdjustColor
732 0.000 0.000 1.000 setrgbcolor AdjustColor
736 148 661 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
737 1.000 1.000 1.000 setrgbcolor AdjustColor
739 148 661 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
740 0 setlinejoin 2 setlinecap
743 0.000 0.000 1.000 setrgbcolor AdjustColor
747 /Courier-Bold findfont 8 scalefont ISOEncode setfont
748 0.000 0.000 0.000 setrgbcolor AdjustColor
751 ] 10 -0.5 0.5 0 false DrawText
755 190.257773182275 656.847268967316 lineto
760 1.000 0.000 0.000 setrgbcolor AdjustColor
763 195.67062043265 653.522304436557 lineto
764 192.503798243573 657.392864889873 lineto
765 191.237322663059 658.94077948828 lineto
766 188.070500473982 662.811339941596 lineto
771 /Courier-Bold findfont 8 scalefont ISOEncode setfont
772 0.000 0.000 0.000 setrgbcolor AdjustColor
775 ] 10 -0.5 0.5 0 false DrawText
784 0.000 0.000 1.000 setrgbcolor AdjustColor
794 0.000 0.000 1.000 setrgbcolor AdjustColor
804 0.000 0.000 1.000 setrgbcolor AdjustColor
814 0.000 0.000 1.000 setrgbcolor AdjustColor
824 0.000 0.000 1.000 setrgbcolor AdjustColor
834 0.000 0.000 1.000 setrgbcolor AdjustColor
838 148 637 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
839 1.000 1.000 1.000 setrgbcolor AdjustColor
841 148 637 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
842 0 setlinejoin 2 setlinecap
845 0.000 0.000 1.000 setrgbcolor AdjustColor
849 /Courier-Bold findfont 8 scalefont ISOEncode setfont
850 0.000 0.000 0.000 setrgbcolor AdjustColor
853 ] 10 -0.5 0.5 0 false DrawText
862 0.000 0.000 1.000 setrgbcolor AdjustColor
872 0.000 0.000 1.000 setrgbcolor AdjustColor
882 0.000 0.000 1.000 setrgbcolor AdjustColor
886 /Courier-Bold findfont 8 scalefont ISOEncode setfont
887 1.000 0.000 0.000 setrgbcolor AdjustColor
890 ] 10 -0.5 0.5 0 false DrawText
893 296.727776858753 607 moveto
899 1.000 0.000 0.000 setrgbcolor AdjustColor
902 299.001 601.499 lineto
905 299.001 612.501 lineto
916 0.000 0.000 1.000 setrgbcolor AdjustColor
926 0.000 0.000 1.000 setrgbcolor AdjustColor
936 0.000 0.000 1.000 setrgbcolor AdjustColor
940 232 613 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
941 1.000 1.000 1.000 setrgbcolor AdjustColor
943 232 613 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
944 0 setlinejoin 2 setlinecap
947 0.000 0.000 1.000 setrgbcolor AdjustColor
951 /Courier-Bold findfont 8 scalefont ISOEncode setfont
952 0.000 0.000 0.000 setrgbcolor AdjustColor
955 ] 10 -0.5 0.5 0 false DrawText
959 229.439020106918 608.396898123499 lineto
964 1.000 0.000 0.000 setrgbcolor AdjustColor
967 230.483235876069 614.662990838593 lineto
968 228.088496370536 610.272635078448 lineto
969 227.130792109175 608.516843932619 lineto
970 224.736052603641 604.126488172474 lineto
975 /Courier-Bold findfont 8 scalefont ISOEncode setfont
976 0.000 0.000 0.000 setrgbcolor AdjustColor
979 ] 10 -0.5 0.5 0 false DrawText
988 0.000 0.000 1.000 setrgbcolor AdjustColor
998 0.000 0.000 1.000 setrgbcolor AdjustColor
1008 0.000 0.000 1.000 setrgbcolor AdjustColor
1018 0.000 0.000 1.000 setrgbcolor AdjustColor
1028 0.000 0.000 1.000 setrgbcolor AdjustColor
1038 0.000 0.000 1.000 setrgbcolor AdjustColor
1042 232 589 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1043 1.000 1.000 1.000 setrgbcolor AdjustColor
1045 232 589 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1046 0 setlinejoin 2 setlinecap
1049 0.000 0.000 1.000 setrgbcolor AdjustColor
1053 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1054 0.000 0.000 0.000 setrgbcolor AdjustColor
1057 ] 10 -0.5 0.5 0 false DrawText
1066 0.000 0.000 1.000 setrgbcolor AdjustColor
1076 0.000 0.000 1.000 setrgbcolor AdjustColor
1086 0.000 0.000 1.000 setrgbcolor AdjustColor
1096 0.000 0.000 1.000 setrgbcolor AdjustColor
1106 0.000 0.000 1.000 setrgbcolor AdjustColor
1116 0.000 0.000 1.000 setrgbcolor AdjustColor
1120 148 565 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1121 1.000 1.000 1.000 setrgbcolor AdjustColor
1123 148 565 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1124 0 setlinejoin 2 setlinecap
1127 0.000 0.000 1.000 setrgbcolor AdjustColor
1131 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1132 0.000 0.000 0.000 setrgbcolor AdjustColor
1135 ] 10 -0.5 0.5 0 false DrawText
1139 190.560979893082 560.396898123499 lineto
1144 1.000 0.000 0.000 setrgbcolor AdjustColor
1147 195.263947396359 556.126488172474 lineto
1148 192.869207890825 560.516843932619 lineto
1149 191.911503629464 562.272635078448 lineto
1150 189.516764123931 566.662990838593 lineto
1155 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1156 0.000 0.000 0.000 setrgbcolor AdjustColor
1159 ] 10 -0.5 0.5 0 false DrawText
1168 0.000 0.000 1.000 setrgbcolor AdjustColor
1178 0.000 0.000 1.000 setrgbcolor AdjustColor
1188 0.000 0.000 1.000 setrgbcolor AdjustColor
1198 0.000 0.000 1.000 setrgbcolor AdjustColor
1208 0.000 0.000 1.000 setrgbcolor AdjustColor
1218 0.000 0.000 1.000 setrgbcolor AdjustColor
1222 148 541 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1223 1.000 1.000 1.000 setrgbcolor AdjustColor
1225 148 541 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1226 0 setlinejoin 2 setlinecap
1229 0.000 0.000 1.000 setrgbcolor AdjustColor
1233 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1234 0.000 0.000 0.000 setrgbcolor AdjustColor
1237 ] 10 -0.5 0.5 0 false DrawText
1246 0.000 0.000 1.000 setrgbcolor AdjustColor
1256 0.000 0.000 1.000 setrgbcolor AdjustColor
1266 0.000 0.000 1.000 setrgbcolor AdjustColor
1276 0.000 0.000 1.000 setrgbcolor AdjustColor
1286 0.000 0.000 1.000 setrgbcolor AdjustColor
1296 0.000 0.000 1.000 setrgbcolor AdjustColor
1300 232 517 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1301 1.000 1.000 1.000 setrgbcolor AdjustColor
1303 232 517 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1304 0 setlinejoin 2 setlinecap
1307 0.000 0.000 1.000 setrgbcolor AdjustColor
1311 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1312 0.000 0.000 0.000 setrgbcolor AdjustColor
1315 ] 10 -0.5 0.5 0 false DrawText
1319 229.439020106918 512.396898123499 lineto
1324 1.000 0.000 0.000 setrgbcolor AdjustColor
1327 230.483235876069 518.662990838593 lineto
1328 228.088496370536 514.272635078448 lineto
1329 227.130792109175 512.516843932619 lineto
1330 224.736052603641 508.126488172474 lineto
1335 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1336 0.000 0.000 0.000 setrgbcolor AdjustColor
1339 ] 10 -0.5 0.5 0 false DrawText
1348 0.000 0.000 1.000 setrgbcolor AdjustColor
1358 0.000 0.000 1.000 setrgbcolor AdjustColor
1368 0.000 0.000 1.000 setrgbcolor AdjustColor
1378 0.000 0.000 1.000 setrgbcolor AdjustColor
1388 0.000 0.000 1.000 setrgbcolor AdjustColor
1398 0.000 0.000 1.000 setrgbcolor AdjustColor
1402 232 493 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
1403 1.000 1.000 1.000 setrgbcolor AdjustColor
1405 232 493 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
1406 0 setlinejoin 2 setlinecap
1409 0.000 0.000 1.000 setrgbcolor AdjustColor
1413 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1414 0.000 0.000 0.000 setrgbcolor AdjustColor
1417 ] 10 -0.5 0.5 0 false DrawText
1426 0.000 0.000 1.000 setrgbcolor AdjustColor
1436 0.000 0.000 1.000 setrgbcolor AdjustColor
1446 0.000 0.000 1.000 setrgbcolor AdjustColor
1456 0.000 0.000 1.000 setrgbcolor AdjustColor
1466 0.000 0.000 1.000 setrgbcolor AdjustColor
1476 0.000 0.000 1.000 setrgbcolor AdjustColor
1480 148 469 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1481 1.000 1.000 1.000 setrgbcolor AdjustColor
1483 148 469 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1484 0 setlinejoin 2 setlinecap
1487 0.000 0.000 1.000 setrgbcolor AdjustColor
1491 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1492 0.000 0.000 0.000 setrgbcolor AdjustColor
1495 ] 10 -0.5 0.5 0 false DrawText
1499 190.560979893082 464.396898123499 lineto
1504 1.000 0.000 0.000 setrgbcolor AdjustColor
1507 195.263947396359 460.126488172474 lineto
1508 192.869207890825 464.516843932619 lineto
1509 191.911503629464 466.272635078448 lineto
1510 189.516764123931 470.662990838593 lineto
1515 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1516 0.000 0.000 0.000 setrgbcolor AdjustColor
1519 ] 10 -0.5 0.5 0 false DrawText
1528 0.000 0.000 1.000 setrgbcolor AdjustColor
1538 0.000 0.000 1.000 setrgbcolor AdjustColor
1548 0.000 0.000 1.000 setrgbcolor AdjustColor
1558 0.000 0.000 1.000 setrgbcolor AdjustColor
1568 0.000 0.000 1.000 setrgbcolor AdjustColor
1578 0.000 0.000 1.000 setrgbcolor AdjustColor
1582 148 445 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
1583 1.000 1.000 1.000 setrgbcolor AdjustColor
1585 148 445 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
1586 0 setlinejoin 2 setlinecap
1589 0.000 0.000 1.000 setrgbcolor AdjustColor
1593 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1594 0.000 0.000 0.000 setrgbcolor AdjustColor
1597 ] 10 -0.5 0.5 0 false DrawText
1606 0.000 0.000 1.000 setrgbcolor AdjustColor
1616 0.000 0.000 1.000 setrgbcolor AdjustColor
1626 0.000 0.000 1.000 setrgbcolor AdjustColor
1636 0.000 0.000 1.000 setrgbcolor AdjustColor
1646 0.000 0.000 1.000 setrgbcolor AdjustColor
1656 0.000 0.000 1.000 setrgbcolor AdjustColor
1660 232 421 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
1661 1.000 1.000 1.000 setrgbcolor AdjustColor
1663 232 421 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
1664 0 setlinejoin 2 setlinecap
1667 0.000 0.000 1.000 setrgbcolor AdjustColor
1671 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1672 0.000 0.000 0.000 setrgbcolor AdjustColor
1675 ] 10 -0.5 0.5 0 false DrawText
1679 229.439020106918 416.396898123499 lineto
1684 1.000 0.000 0.000 setrgbcolor AdjustColor
1687 230.483235876069 422.662990838593 lineto
1688 228.088496370536 418.272635078448 lineto
1689 227.130792109175 416.516843932619 lineto
1690 224.736052603641 412.126488172474 lineto
1695 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1696 0.000 0.000 0.000 setrgbcolor AdjustColor
1699 ] 10 -0.5 0.5 0 false DrawText
1708 0.000 0.000 1.000 setrgbcolor AdjustColor
1718 0.000 0.000 1.000 setrgbcolor AdjustColor
1728 0.000 0.000 1.000 setrgbcolor AdjustColor
1738 0.000 0.000 1.000 setrgbcolor AdjustColor
1748 0.000 0.000 1.000 setrgbcolor AdjustColor
1758 0.000 0.000 1.000 setrgbcolor AdjustColor
1762 232 397 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1763 1.000 1.000 1.000 setrgbcolor AdjustColor
1765 232 397 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1766 0 setlinejoin 2 setlinecap
1769 0.000 0.000 1.000 setrgbcolor AdjustColor
1773 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1774 0.000 0.000 0.000 setrgbcolor AdjustColor
1777 ] 10 -0.5 0.5 0 false DrawText
1786 0.000 0.000 1.000 setrgbcolor AdjustColor
1796 0.000 0.000 1.000 setrgbcolor AdjustColor
1806 0.000 0.000 1.000 setrgbcolor AdjustColor
1816 0.000 0.000 1.000 setrgbcolor AdjustColor
1826 0.000 0.000 1.000 setrgbcolor AdjustColor
1836 0.000 0.000 1.000 setrgbcolor AdjustColor
1840 148 373 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
1841 1.000 1.000 1.000 setrgbcolor AdjustColor
1843 148 373 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
1844 0 setlinejoin 2 setlinecap
1847 0.000 0.000 1.000 setrgbcolor AdjustColor
1851 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1852 0.000 0.000 0.000 setrgbcolor AdjustColor
1855 ] 10 -0.5 0.5 0 false DrawText
1859 190.560979893082 368.396898123499 lineto
1864 1.000 0.000 0.000 setrgbcolor AdjustColor
1867 195.263947396359 364.126488172474 lineto
1868 192.869207890825 368.516843932619 lineto
1869 191.911503629464 370.272635078448 lineto
1870 189.516764123931 374.662990838593 lineto
1875 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1876 0.000 0.000 0.000 setrgbcolor AdjustColor
1879 ] 10 -0.5 0.5 0 false DrawText
1888 0.000 0.000 1.000 setrgbcolor AdjustColor
1898 0.000 0.000 1.000 setrgbcolor AdjustColor
1908 0.000 0.000 1.000 setrgbcolor AdjustColor
1918 0.000 0.000 1.000 setrgbcolor AdjustColor
1928 0.000 0.000 1.000 setrgbcolor AdjustColor
1938 0.000 0.000 1.000 setrgbcolor AdjustColor
1942 148 349 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1943 1.000 1.000 1.000 setrgbcolor AdjustColor
1945 148 349 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1946 0 setlinejoin 2 setlinecap
1949 0.000 0.000 1.000 setrgbcolor AdjustColor
1953 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1954 0.000 0.000 0.000 setrgbcolor AdjustColor
1957 ] 10 -0.5 0.5 0 false DrawText
1966 0.000 0.000 1.000 setrgbcolor AdjustColor
1976 0.000 0.000 1.000 setrgbcolor AdjustColor
1986 0.000 0.000 1.000 setrgbcolor AdjustColor
1996 0.000 0.000 1.000 setrgbcolor AdjustColor
2006 0.000 0.000 1.000 setrgbcolor AdjustColor
2016 0.000 0.000 1.000 setrgbcolor AdjustColor
2020 232 325 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2021 1.000 1.000 1.000 setrgbcolor AdjustColor
2023 232 325 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2024 0 setlinejoin 2 setlinecap
2027 0.000 0.000 1.000 setrgbcolor AdjustColor
2031 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2032 0.000 0.000 0.000 setrgbcolor AdjustColor
2035 ] 10 -0.5 0.5 0 false DrawText
2039 229.439020106918 320.396898123499 lineto
2044 1.000 0.000 0.000 setrgbcolor AdjustColor
2047 230.483235876069 326.662990838593 lineto
2048 228.088496370536 322.272635078448 lineto
2049 227.130792109175 320.516843932619 lineto
2050 224.736052603641 316.126488172474 lineto
2055 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2056 0.000 0.000 0.000 setrgbcolor AdjustColor
2059 ] 10 -0.5 0.5 0 false DrawText
2068 0.000 0.000 1.000 setrgbcolor AdjustColor
2078 0.000 0.000 1.000 setrgbcolor AdjustColor
2088 0.000 0.000 1.000 setrgbcolor AdjustColor
2098 0.000 0.000 1.000 setrgbcolor AdjustColor
2108 0.000 0.000 1.000 setrgbcolor AdjustColor
2118 0.000 0.000 1.000 setrgbcolor AdjustColor
2122 232 301 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2123 1.000 1.000 1.000 setrgbcolor AdjustColor
2125 232 301 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2126 0 setlinejoin 2 setlinecap
2129 0.000 0.000 1.000 setrgbcolor AdjustColor
2133 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2134 0.000 0.000 0.000 setrgbcolor AdjustColor
2137 ] 10 -0.5 0.5 0 false DrawText
2146 0.000 0.000 1.000 setrgbcolor AdjustColor
2156 0.000 0.000 1.000 setrgbcolor AdjustColor
2166 0.000 0.000 1.000 setrgbcolor AdjustColor
2176 0.000 0.000 1.000 setrgbcolor AdjustColor
2186 0.000 0.000 1.000 setrgbcolor AdjustColor
2196 0.000 0.000 1.000 setrgbcolor AdjustColor
2200 148 277 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2201 1.000 1.000 1.000 setrgbcolor AdjustColor
2203 148 277 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2204 0 setlinejoin 2 setlinecap
2207 0.000 0.000 1.000 setrgbcolor AdjustColor
2211 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2212 0.000 0.000 0.000 setrgbcolor AdjustColor
2215 ] 10 -0.5 0.5 0 false DrawText
2219 190.560979893082 272.396898123499 lineto
2224 1.000 0.000 0.000 setrgbcolor AdjustColor
2227 195.263947396359 268.126488172474 lineto
2228 192.869207890825 272.516843932619 lineto
2229 191.911503629464 274.272635078448 lineto
2230 189.516764123931 278.662990838593 lineto
2235 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2236 0.000 0.000 0.000 setrgbcolor AdjustColor
2239 ] 10 -0.5 0.5 0 false DrawText
2248 0.000 0.000 1.000 setrgbcolor AdjustColor
2258 0.000 0.000 1.000 setrgbcolor AdjustColor
2268 0.000 0.000 1.000 setrgbcolor AdjustColor
2278 0.000 0.000 1.000 setrgbcolor AdjustColor
2288 0.000 0.000 1.000 setrgbcolor AdjustColor
2298 0.000 0.000 1.000 setrgbcolor AdjustColor
2302 148 253 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2303 1.000 1.000 0.000 setrgbcolor AdjustColor
2305 148 253 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2306 0 setlinejoin 2 setlinecap
2309 1.000 0.000 0.000 setrgbcolor AdjustColor
2313 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2314 0.000 0.000 0.000 setrgbcolor AdjustColor
2317 ] 10 -0.5 0.5 0 false DrawText
2320 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2321 0.000 0.000 0.000 setrgbcolor AdjustColor
2324 ] 10 -0.5 0.5 0 false DrawText
2333 0.000 0.000 1.000 setrgbcolor AdjustColor
2343 0.000 0.000 1.000 setrgbcolor AdjustColor
2353 0.000 0.000 1.000 setrgbcolor AdjustColor
2363 0.000 0.000 1.000 setrgbcolor AdjustColor
2373 0.000 0.000 1.000 setrgbcolor AdjustColor
2383 0.000 0.000 1.000 setrgbcolor AdjustColor
2387 232 229 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
2388 1.000 1.000 0.000 setrgbcolor AdjustColor
2390 232 229 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
2391 0 setlinejoin 2 setlinecap
2394 1.000 0.000 0.000 setrgbcolor AdjustColor
2398 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2399 0.000 0.000 0.000 setrgbcolor AdjustColor
2402 ] 10 -0.5 0.5 0 false DrawText
2411 1.000 0.000 0.000 setrgbcolor AdjustColor
2421 1.000 0.000 0.000 setrgbcolor AdjustColor
2431 1.000 0.000 0.000 setrgbcolor AdjustColor
2441 0.000 0.000 1.000 setrgbcolor AdjustColor
2451 0.000 0.000 1.000 setrgbcolor AdjustColor
2461 0.000 0.000 1.000 setrgbcolor AdjustColor
2471 1.000 0.000 0.000 setrgbcolor AdjustColor
2481 1.000 0.000 0.000 setrgbcolor AdjustColor
2491 1.000 0.000 0.000 setrgbcolor AdjustColor
2501 0.000 0.000 1.000 setrgbcolor AdjustColor
2511 0.000 0.000 1.000 setrgbcolor AdjustColor
2521 0.000 0.000 1.000 setrgbcolor AdjustColor
2525 64 205 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
2526 1.000 1.000 0.000 setrgbcolor AdjustColor
2528 64 205 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
2529 0 setlinejoin 2 setlinecap
2532 1.000 0.000 0.000 setrgbcolor AdjustColor
2536 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2537 0.000 0.000 0.000 setrgbcolor AdjustColor
2540 ] 10 -0.5 0.5 0 false DrawText
2549 1.000 0.000 0.000 setrgbcolor AdjustColor
2559 1.000 0.000 0.000 setrgbcolor AdjustColor
2569 1.000 0.000 0.000 setrgbcolor AdjustColor
2579 1.000 0.000 0.000 setrgbcolor AdjustColor
2589 1.000 0.000 0.000 setrgbcolor AdjustColor
2599 1.000 0.000 0.000 setrgbcolor AdjustColor
2609 1.000 0.000 0.000 setrgbcolor AdjustColor
2619 1.000 0.000 0.000 setrgbcolor AdjustColor
2629 1.000 0.000 0.000 setrgbcolor AdjustColor