]> AND Private Git Repository - hdrcouchot.git/blob - images/RC07ce.eps
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
ajout de quelques tex
[hdrcouchot.git] / images / RC07ce.eps
1 %!PS-Adobe-3.0 EPSF-3.0
2 %%Creator: Tk Canvas Widget
3 %%For: couchot,,,
4 %%Title: Window .f2.c
5 %%CreationDate: Mon Mar 29 10:52:40 2010
6 %%BoundingBox: 149 114 463 679
7 %%Pages: 1
8 %%DocumentData: Clean7Bit
9 %%Orientation: Portrait
10 %%DocumentNeededResources: font Courier-Bold
11 %%EndComments
12
13 %%BeginProlog
14 /CurrentEncoding [
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
23 /at/A/B/C/D/E/F/G
24 /H/I/J/K/L/M/N/O
25 /P/Q/R/S/T/U/V/W
26 /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore
27 /grave/a/b/c/d/e/f/g
28 /h/i/j/k/l/m/n/o
29 /p/q/r/s/t/u/v/w
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
47 ] def
48
49 50 dict begin
50 % This is a standard prolog for Postscript generated by Tk's canvas
51 % widget.
52 % RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $
53
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).
58
59 /baseline 0 def
60 /stipimage 0 def
61 /height 0 def
62 /justify 0 def
63 /lineLength 0 def
64 /spacing 0 def
65 /stipple 0 def
66 /strings 0 def
67 /xoffset 0 def
68 /yoffset 0 def
69 /tmpstip null def
70
71
72 /cstringshow {
73     {
74         dup type /stringtype eq
75         { show } { glyphshow }
76         ifelse
77     }
78     forall
79 } bind def
80
81
82
83 /cstringwidth {
84     0 exch 0 exch
85     {
86         dup type /stringtype eq
87         { stringwidth } { 
88             currentfont /Encoding get exch 1 exch put (\001) stringwidth 
89         }
90         ifelse 
91         exch 3 1 roll add 3 1 roll add exch
92     }
93     forall
94 } bind def
95
96 % font ISOEncode font
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.
101
102 /ISOEncode {
103     dup length dict begin
104         {1 index /FID ne {def} {pop pop} ifelse} forall
105         /Encoding CurrentEncoding def
106         currentdict
107     end
108
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"
111     % for the font.
112
113     /Temporary exch definefont
114 } bind def
115
116 % StrokeClip
117 %
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.
122
123 /StrokeClip {
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
128     clip
129 } bind def
130
131 % desiredSize EvenPixels closestSize
132 %
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
137 % aliasing effects.
138
139 /EvenPixels {
140     % Compute exact number of device pixels per stipple dot.
141     dup 0 matrix currentmatrix dtransform
142     dup mul exch dup mul add sqrt
143
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
147     exch div mul
148 } bind def
149
150 % width height string StippleFill --
151 %
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.
158
159 /StippleFill {
160     % The following code is needed to work around a NeWSprint bug.
161
162     /tmpstip 1 index def
163
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
167
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.
173
174     pathbbox
175     4 2 roll
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
178
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
183     % each position
184
185     6 index exch {
186         2 index 5 index 3 index {
187             % Stack now: width height string y1 y2 x y
188
189             gsave
190             1 index exch translate
191             5 index 5 index true matrix tmpstip imagemask
192             grestore
193         } for
194         pop
195     } for
196     pop pop pop pop pop
197 } bind def
198
199 % -- AdjustColor --
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
202 % variable.
203
204 /AdjustColor {
205     CL 2 lt {
206         currentgray
207         CL 0 eq {
208             .5 lt {0} {1} ifelse
209         } if
210         setgray
211     } if
212 } bind def
213
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:
218 %
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.
232 %
233 % Also, when this procedure is invoked, the color and font must already
234 % have been set for the text.
235
236 /DrawText {
237     /stipple exch def
238     /justify exch def
239     /yoffset exch def
240     /xoffset exch def
241     /spacing exch def
242     /strings exch def
243
244     % First scan through all of the text to find the widest line.
245
246     /lineLength 0 def
247     strings {
248         cstringwidth pop
249         dup lineLength gt {/lineLength exch def} {pop} ifelse
250         newpath
251     } forall
252
253     % Compute the baseline offset and the actual font height.
254
255     0 0 moveto (TXygqPZ) false charpath
256     pathbbox dup /baseline exch def
257     exch pop exch sub /height exch def pop
258     newpath
259
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.
263
264     translate
265     lineLength xoffset mul
266     strings length 1 sub spacing mul height add yoffset mul translate
267
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.
271
272     justify lineLength mul baseline neg translate
273
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
276     % display it.
277
278     strings {
279         dup cstringwidth pop
280         justify neg mul 0 moveto
281         stipple {
282            
283  
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.
289
290             gsave
291             /char (X) def
292             {
293                 dup type /stringtype eq {
294                     % This segment is a string.
295                     {
296                         char 0 3 -1 roll put
297                         currentpoint
298                         gsave
299                         char true charpath clip StippleText
300                         grestore
301                         char stringwidth translate
302                         moveto
303                     } forall
304                 } {
305                     % This segment is glyph name
306                     % Temporary override
307                     currentfont /Encoding get exch 1 exch put
308                     currentpoint
309                     gsave (\001) true charpath clip StippleText
310                     grestore
311                     (\001) stringwidth translate
312                     moveto
313                 } ifelse
314             } forall
315             grestore 
316         } {cstringshow} ifelse
317         0 spacing neg translate
318     } forall
319 } bind def
320
321 %%EndProlog
322 %%BeginSetup
323 /CL 2 def
324 %%IncludeResource: font Courier-Bold
325 %%EndSetup
326
327 %%Page: 1 1
328 save
329 306.0 396.0 translate
330 0.7224 0.7224 scale
331 -217 -390 translate
332 0 781 moveto 434 781 lineto 434 0 lineto 0 0 lineto closepath clip newpath
333 gsave
334 84 769 moveto
335 84 757 lineto
336 0 setlinecap
337 1 setlinejoin
338 1 setlinewidth
339 [] 0 setdash
340 0.000 0.000 1.000 setrgbcolor AdjustColor
341 stroke
342 grestore
343 gsave
344 168 769 moveto
345 168 757 lineto
346 0 setlinecap
347 1 setlinejoin
348 1 setlinewidth
349 [] 0 setdash
350 0.000 0.000 1.000 setrgbcolor AdjustColor
351 stroke
352 grestore
353 gsave
354 64 769 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
355 1.000 1.000 0.000 setrgbcolor AdjustColor
356 fill
357 64 769 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
358 0 setlinejoin 2 setlinecap
359 1 setlinewidth
360 [] 0 setdash
361 1.000 0.000 0.000 setrgbcolor AdjustColor
362 stroke
363 grestore
364 gsave
365 /Courier-Bold findfont 8 scalefont ISOEncode setfont
366 0.000 0.000 0.000 setrgbcolor AdjustColor
367 84 763 [
368 [(:init::0)]
369 ] 10 -0.5 0.5 0 false DrawText
370 grestore
371 gsave
372 84 757 moveto
373 84 745 lineto
374 0 setlinecap
375 1 setlinejoin
376 1 setlinewidth
377 [] 0 setdash
378 0.000 0.000 1.000 setrgbcolor AdjustColor
379 stroke
380 grestore
381 gsave
382 168 757 moveto
383 168 745 lineto
384 0 setlinecap
385 1 setlinejoin
386 1 setlinewidth
387 [] 0 setdash
388 0.000 0.000 1.000 setrgbcolor AdjustColor
389 stroke
390 grestore
391 gsave
392 64 757 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
393 1.000 1.000 1.000 setrgbcolor AdjustColor
394 fill
395 64 757 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
396 0 setlinejoin 2 setlinecap
397 1 setlinewidth
398 [] 0 setdash
399 0.000 0.000 1.000 setrgbcolor AdjustColor
400 stroke
401 grestore
402 gsave
403 /Courier-Bold findfont 8 scalefont ISOEncode setfont
404 0.000 0.000 0.000 setrgbcolor AdjustColor
405 84 751 [
406 [(27)]
407 ] 10 -0.5 0.5 0 false DrawText
408 grestore
409 gsave
410 84 745 moveto
411 84 733 lineto
412 0 setlinecap
413 1 setlinejoin
414 1 setlinewidth
415 [] 0 setdash
416 0.000 0.000 1.000 setrgbcolor AdjustColor
417 stroke
418 grestore
419 gsave
420 168 745 moveto
421 168 733 lineto
422 0 setlinecap
423 1 setlinejoin
424 1 setlinewidth
425 [] 0 setdash
426 0.000 0.000 1.000 setrgbcolor AdjustColor
427 stroke
428 grestore
429 gsave
430 84 733 moveto
431 84 721 lineto
432 0 setlinecap
433 1 setlinejoin
434 1 setlinewidth
435 [] 0 setdash
436 0.000 0.000 1.000 setrgbcolor AdjustColor
437 stroke
438 grestore
439 gsave
440 168 733 moveto
441 168 721 lineto
442 0 setlinecap
443 1 setlinejoin
444 1 setlinewidth
445 [] 0 setdash
446 0.000 0.000 1.000 setrgbcolor AdjustColor
447 stroke
448 grestore
449 gsave
450 252 733 moveto
451 252 721 lineto
452 0 setlinecap
453 1 setlinejoin
454 1 setlinewidth
455 [] 0 setdash
456 0.000 0.000 1.000 setrgbcolor AdjustColor
457 stroke
458 grestore
459 gsave
460 232 733 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
461 1.000 1.000 0.000 setrgbcolor AdjustColor
462 fill
463 232 733 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
464 0 setlinejoin 2 setlinecap
465 1 setlinewidth
466 [] 0 setdash
467 1.000 0.000 0.000 setrgbcolor AdjustColor
468 stroke
469 grestore
470 gsave
471 /Courier-Bold findfont 8 scalefont ISOEncode setfont
472 0.000 0.000 0.000 setrgbcolor AdjustColor
473 252 727 [
474 [(scheduler:2)]
475 ] 10 -0.5 0.5 0 false DrawText
476 grestore
477 gsave
478 84 721 moveto
479 84 709 lineto
480 0 setlinecap
481 1 setlinejoin
482 1 setlinewidth
483 [] 0 setdash
484 0.000 0.000 1.000 setrgbcolor AdjustColor
485 stroke
486 grestore
487 gsave
488 168 721 moveto
489 168 709 lineto
490 0 setlinecap
491 1 setlinejoin
492 1 setlinewidth
493 [] 0 setdash
494 0.000 0.000 1.000 setrgbcolor AdjustColor
495 stroke
496 grestore
497 gsave
498 252 721 moveto
499 252 709 lineto
500 0 setlinecap
501 1 setlinejoin
502 1 setlinewidth
503 [] 0 setdash
504 0.000 0.000 1.000 setrgbcolor AdjustColor
505 stroke
506 grestore
507 gsave
508 232 721 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
509 1.000 1.000 1.000 setrgbcolor AdjustColor
510 fill
511 232 721 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
512 0 setlinejoin 2 setlinecap
513 1 setlinewidth
514 [] 0 setdash
515 0.000 0.000 1.000 setrgbcolor AdjustColor
516 stroke
517 grestore
518 gsave
519 /Courier-Bold findfont 8 scalefont ISOEncode setfont
520 0.000 0.000 0.000 setrgbcolor AdjustColor
521 252 715 [
522 [(31)]
523 ] 10 -0.5 0.5 0 false DrawText
524 grestore
525 gsave
526 104 751 moveto
527 229.191773397824 715.789813731862 lineto
528 0 setlinecap
529 1 setlinejoin
530 2 setlinewidth
531 [] 0 setdash
532 1.000 0.000 0.000 setrgbcolor AdjustColor
533 stroke
534 232 715 moveto
535 228.810526855377 722.130866922032 lineto
536 227.456528225209 717.316649570322 lineto
537 226.915037071372 715.391347690014 lineto
538 225.561038441204 710.577130338305 lineto
539 232 715 lineto
540 fill
541 grestore
542 gsave
543 /Courier-Bold findfont 8 scalefont ISOEncode setfont
544 0.000 0.000 0.000 setrgbcolor AdjustColor
545 168 733 [
546 [(1!1)]
547 ] 10 -0.5 0.5 0 false DrawText
548 grestore
549 gsave
550 84 709 moveto
551 84 697 lineto
552 0 setlinecap
553 1 setlinejoin
554 1 setlinewidth
555 [] 0 setdash
556 0.000 0.000 1.000 setrgbcolor AdjustColor
557 stroke
558 grestore
559 gsave
560 168 709 moveto
561 168 697 lineto
562 0 setlinecap
563 1 setlinejoin
564 1 setlinewidth
565 [] 0 setdash
566 0.000 0.000 1.000 setrgbcolor AdjustColor
567 stroke
568 grestore
569 gsave
570 252 709 moveto
571 252 697 lineto
572 0 setlinecap
573 1 setlinejoin
574 1 setlinewidth
575 [] 0 setdash
576 0.000 0.000 1.000 setrgbcolor AdjustColor
577 stroke
578 grestore
579 gsave
580 84 697 moveto
581 84 685 lineto
582 0 setlinecap
583 1 setlinejoin
584 1 setlinewidth
585 [] 0 setdash
586 0.000 0.000 1.000 setrgbcolor AdjustColor
587 stroke
588 grestore
589 gsave
590 168 697 moveto
591 168 685 lineto
592 0 setlinecap
593 1 setlinejoin
594 1 setlinewidth
595 [] 0 setdash
596 0.000 0.000 1.000 setrgbcolor AdjustColor
597 stroke
598 grestore
599 gsave
600 252 697 moveto
601 252 685 lineto
602 0 setlinecap
603 1 setlinejoin
604 1 setlinewidth
605 [] 0 setdash
606 0.000 0.000 1.000 setrgbcolor AdjustColor
607 stroke
608 grestore
609 gsave
610 232 697 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
611 1.000 1.000 1.000 setrgbcolor AdjustColor
612 fill
613 232 697 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
614 0 setlinejoin 2 setlinecap
615 1 setlinewidth
616 [] 0 setdash
617 0.000 0.000 1.000 setrgbcolor AdjustColor
618 stroke
619 grestore
620 gsave
621 /Courier-Bold findfont 8 scalefont ISOEncode setfont
622 0.000 0.000 0.000 setrgbcolor AdjustColor
623 252 691 [
624 [(35)]
625 ] 10 -0.5 0.5 0 false DrawText
626 grestore
627 gsave
628 84 685 moveto
629 84 673 lineto
630 0 setlinecap
631 1 setlinejoin
632 1 setlinewidth
633 [] 0 setdash
634 0.000 0.000 1.000 setrgbcolor AdjustColor
635 stroke
636 grestore
637 gsave
638 168 685 moveto
639 168 673 lineto
640 0 setlinecap
641 1 setlinejoin
642 1 setlinewidth
643 [] 0 setdash
644 0.000 0.000 1.000 setrgbcolor AdjustColor
645 stroke
646 grestore
647 gsave
648 252 685 moveto
649 252 673 lineto
650 0 setlinecap
651 1 setlinejoin
652 1 setlinewidth
653 [] 0 setdash
654 0.000 0.000 1.000 setrgbcolor AdjustColor
655 stroke
656 grestore
657 gsave
658 84 673 moveto
659 84 661 lineto
660 0 setlinecap
661 1 setlinejoin
662 1 setlinewidth
663 [] 0 setdash
664 0.000 0.000 1.000 setrgbcolor AdjustColor
665 stroke
666 grestore
667 gsave
668 168 673 moveto
669 168 661 lineto
670 0 setlinecap
671 1 setlinejoin
672 1 setlinewidth
673 [] 0 setdash
674 0.000 0.000 1.000 setrgbcolor AdjustColor
675 stroke
676 grestore
677 gsave
678 252 673 moveto
679 252 661 lineto
680 0 setlinecap
681 1 setlinejoin
682 1 setlinewidth
683 [] 0 setdash
684 0.000 0.000 1.000 setrgbcolor AdjustColor
685 stroke
686 grestore
687 gsave
688 148 673 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
689 1.000 1.000 0.000 setrgbcolor AdjustColor
690 fill
691 148 673 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
692 0 setlinejoin 2 setlinecap
693 1 setlinewidth
694 [] 0 setdash
695 1.000 0.000 0.000 setrgbcolor AdjustColor
696 stroke
697 grestore
698 gsave
699 /Courier-Bold findfont 8 scalefont ISOEncode setfont
700 0.000 0.000 0.000 setrgbcolor AdjustColor
701 168 667 [
702 [(elements_update:1)]
703 ] 10 -0.5 0.5 0 false DrawText
704 grestore
705 gsave
706 84 661 moveto
707 84 649 lineto
708 0 setlinecap
709 1 setlinejoin
710 1 setlinewidth
711 [] 0 setdash
712 0.000 0.000 1.000 setrgbcolor AdjustColor
713 stroke
714 grestore
715 gsave
716 168 661 moveto
717 168 649 lineto
718 0 setlinecap
719 1 setlinejoin
720 1 setlinewidth
721 [] 0 setdash
722 0.000 0.000 1.000 setrgbcolor AdjustColor
723 stroke
724 grestore
725 gsave
726 252 661 moveto
727 252 649 lineto
728 0 setlinecap
729 1 setlinejoin
730 1 setlinewidth
731 [] 0 setdash
732 0.000 0.000 1.000 setrgbcolor AdjustColor
733 stroke
734 grestore
735 gsave
736 148 661 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
737 1.000 1.000 1.000 setrgbcolor AdjustColor
738 fill
739 148 661 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
740 0 setlinejoin 2 setlinecap
741 1 setlinewidth
742 [] 0 setdash
743 0.000 0.000 1.000 setrgbcolor AdjustColor
744 stroke
745 grestore
746 gsave
747 /Courier-Bold findfont 8 scalefont ISOEncode setfont
748 0.000 0.000 0.000 setrgbcolor AdjustColor
749 168 655 [
750 [(37)]
751 ] 10 -0.5 0.5 0 false DrawText
752 grestore
753 gsave
754 232 691 moveto
755 190.257773182275 656.847268967316 lineto
756 0 setlinecap
757 1 setlinejoin
758 2 setlinewidth
759 [] 0 setdash
760 1.000 0.000 0.000 setrgbcolor AdjustColor
761 stroke
762 188 655 moveto
763 195.67062043265 653.522304436557 lineto
764 192.503798243573 657.392864889873 lineto
765 191.237322663059 658.94077948828 lineto
766 188.070500473982 662.811339941596 lineto
767 188 655 lineto
768 fill
769 grestore
770 gsave
771 /Courier-Bold findfont 8 scalefont ISOEncode setfont
772 0.000 0.000 0.000 setrgbcolor AdjustColor
773 210 673 [
774 [(2!1)]
775 ] 10 -0.5 0.5 0 false DrawText
776 grestore
777 gsave
778 84 649 moveto
779 84 637 lineto
780 0 setlinecap
781 1 setlinejoin
782 1 setlinewidth
783 [] 0 setdash
784 0.000 0.000 1.000 setrgbcolor AdjustColor
785 stroke
786 grestore
787 gsave
788 168 649 moveto
789 168 637 lineto
790 0 setlinecap
791 1 setlinejoin
792 1 setlinewidth
793 [] 0 setdash
794 0.000 0.000 1.000 setrgbcolor AdjustColor
795 stroke
796 grestore
797 gsave
798 252 649 moveto
799 252 637 lineto
800 0 setlinecap
801 1 setlinejoin
802 1 setlinewidth
803 [] 0 setdash
804 0.000 0.000 1.000 setrgbcolor AdjustColor
805 stroke
806 grestore
807 gsave
808 84 637 moveto
809 84 625 lineto
810 0 setlinecap
811 1 setlinejoin
812 1 setlinewidth
813 [] 0 setdash
814 0.000 0.000 1.000 setrgbcolor AdjustColor
815 stroke
816 grestore
817 gsave
818 168 637 moveto
819 168 625 lineto
820 0 setlinecap
821 1 setlinejoin
822 1 setlinewidth
823 [] 0 setdash
824 0.000 0.000 1.000 setrgbcolor AdjustColor
825 stroke
826 grestore
827 gsave
828 252 637 moveto
829 252 625 lineto
830 0 setlinecap
831 1 setlinejoin
832 1 setlinewidth
833 [] 0 setdash
834 0.000 0.000 1.000 setrgbcolor AdjustColor
835 stroke
836 grestore
837 gsave
838 148 637 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
839 1.000 1.000 1.000 setrgbcolor AdjustColor
840 fill
841 148 637 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
842 0 setlinejoin 2 setlinecap
843 1 setlinewidth
844 [] 0 setdash
845 0.000 0.000 1.000 setrgbcolor AdjustColor
846 stroke
847 grestore
848 gsave
849 /Courier-Bold findfont 8 scalefont ISOEncode setfont
850 0.000 0.000 0.000 setrgbcolor AdjustColor
851 168 631 [
852 [(81)]
853 ] 10 -0.5 0.5 0 false DrawText
854 grestore
855 gsave
856 84 625 moveto
857 84 613 lineto
858 0 setlinecap
859 1 setlinejoin
860 1 setlinewidth
861 [] 0 setdash
862 0.000 0.000 1.000 setrgbcolor AdjustColor
863 stroke
864 grestore
865 gsave
866 168 625 moveto
867 168 613 lineto
868 0 setlinecap
869 1 setlinejoin
870 1 setlinewidth
871 [] 0 setdash
872 0.000 0.000 1.000 setrgbcolor AdjustColor
873 stroke
874 grestore
875 gsave
876 252 625 moveto
877 252 613 lineto
878 0 setlinecap
879 1 setlinejoin
880 1 setlinewidth
881 [] 0 setdash
882 0.000 0.000 1.000 setrgbcolor AdjustColor
883 stroke
884 grestore
885 gsave
886 /Courier-Bold findfont 8 scalefont ISOEncode setfont
887 1.000 0.000 0.000 setrgbcolor AdjustColor
888 378 607 [
889 [(Cycle/Waiting)]
890 ] 10 -0.5 0.5 0 false DrawText
891 grestore
892 gsave
893 296.727776858753 607 moveto
894 336 607 lineto
895 0 setlinecap
896 1 setlinejoin
897 1 setlinewidth
898 [] 0 setdash
899 1.000 0.000 0.000 setrgbcolor AdjustColor
900 stroke
901 294 607 moveto
902 299.001 601.499 lineto
903 299.001 606.5 lineto
904 299.001 607.5 lineto
905 299.001 612.501 lineto
906 294 607 lineto
907 fill
908 grestore
909 gsave
910 84 613 moveto
911 84 601 lineto
912 0 setlinecap
913 1 setlinejoin
914 1 setlinewidth
915 [] 0 setdash
916 0.000 0.000 1.000 setrgbcolor AdjustColor
917 stroke
918 grestore
919 gsave
920 168 613 moveto
921 168 601 lineto
922 0 setlinecap
923 1 setlinejoin
924 1 setlinewidth
925 [] 0 setdash
926 0.000 0.000 1.000 setrgbcolor AdjustColor
927 stroke
928 grestore
929 gsave
930 252 613 moveto
931 252 601 lineto
932 0 setlinecap
933 1 setlinejoin
934 1 setlinewidth
935 [] 0 setdash
936 0.000 0.000 1.000 setrgbcolor AdjustColor
937 stroke
938 grestore
939 gsave
940 232 613 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
941 1.000 1.000 1.000 setrgbcolor AdjustColor
942 fill
943 232 613 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
944 0 setlinejoin 2 setlinecap
945 1 setlinewidth
946 [] 0 setdash
947 0.000 0.000 1.000 setrgbcolor AdjustColor
948 stroke
949 grestore
950 gsave
951 /Courier-Bold findfont 8 scalefont ISOEncode setfont
952 0.000 0.000 0.000 setrgbcolor AdjustColor
953 252 607 [
954 [(83)]
955 ] 10 -0.5 0.5 0 false DrawText
956 grestore
957 gsave
958 188 631 moveto
959 229.439020106918 608.396898123499 lineto
960 0 setlinecap
961 1 setlinejoin
962 2 setlinewidth
963 [] 0 setdash
964 1.000 0.000 0.000 setrgbcolor AdjustColor
965 stroke
966 232 607 moveto
967 230.483235876069 614.662990838593 lineto
968 228.088496370536 610.272635078448 lineto
969 227.130792109175 608.516843932619 lineto
970 224.736052603641 604.126488172474 lineto
971 232 607 lineto
972 fill
973 grestore
974 gsave
975 /Courier-Bold findfont 8 scalefont ISOEncode setfont
976 0.000 0.000 0.000 setrgbcolor AdjustColor
977 210 619 [
978 [(1!1)]
979 ] 10 -0.5 0.5 0 false DrawText
980 grestore
981 gsave
982 84 601 moveto
983 84 589 lineto
984 0 setlinecap
985 1 setlinejoin
986 1 setlinewidth
987 [] 0 setdash
988 0.000 0.000 1.000 setrgbcolor AdjustColor
989 stroke
990 grestore
991 gsave
992 168 601 moveto
993 168 589 lineto
994 0 setlinecap
995 1 setlinejoin
996 1 setlinewidth
997 [] 0 setdash
998 0.000 0.000 1.000 setrgbcolor AdjustColor
999 stroke
1000 grestore
1001 gsave
1002 252 601 moveto
1003 252 589 lineto
1004 0 setlinecap
1005 1 setlinejoin
1006 1 setlinewidth
1007 [] 0 setdash
1008 0.000 0.000 1.000 setrgbcolor AdjustColor
1009 stroke
1010 grestore
1011 gsave
1012 84 589 moveto
1013 84 577 lineto
1014 0 setlinecap
1015 1 setlinejoin
1016 1 setlinewidth
1017 [] 0 setdash
1018 0.000 0.000 1.000 setrgbcolor AdjustColor
1019 stroke
1020 grestore
1021 gsave
1022 168 589 moveto
1023 168 577 lineto
1024 0 setlinecap
1025 1 setlinejoin
1026 1 setlinewidth
1027 [] 0 setdash
1028 0.000 0.000 1.000 setrgbcolor AdjustColor
1029 stroke
1030 grestore
1031 gsave
1032 252 589 moveto
1033 252 577 lineto
1034 0 setlinecap
1035 1 setlinejoin
1036 1 setlinewidth
1037 [] 0 setdash
1038 0.000 0.000 1.000 setrgbcolor AdjustColor
1039 stroke
1040 grestore
1041 gsave
1042 232 589 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1043 1.000 1.000 1.000 setrgbcolor AdjustColor
1044 fill
1045 232 589 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1046 0 setlinejoin 2 setlinecap
1047 1 setlinewidth
1048 [] 0 setdash
1049 0.000 0.000 1.000 setrgbcolor AdjustColor
1050 stroke
1051 grestore
1052 gsave
1053 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1054 0.000 0.000 0.000 setrgbcolor AdjustColor
1055 252 583 [
1056 [(87)]
1057 ] 10 -0.5 0.5 0 false DrawText
1058 grestore
1059 gsave
1060 84 577 moveto
1061 84 565 lineto
1062 0 setlinecap
1063 1 setlinejoin
1064 1 setlinewidth
1065 [] 0 setdash
1066 0.000 0.000 1.000 setrgbcolor AdjustColor
1067 stroke
1068 grestore
1069 gsave
1070 168 577 moveto
1071 168 565 lineto
1072 0 setlinecap
1073 1 setlinejoin
1074 1 setlinewidth
1075 [] 0 setdash
1076 0.000 0.000 1.000 setrgbcolor AdjustColor
1077 stroke
1078 grestore
1079 gsave
1080 252 577 moveto
1081 252 565 lineto
1082 0 setlinecap
1083 1 setlinejoin
1084 1 setlinewidth
1085 [] 0 setdash
1086 0.000 0.000 1.000 setrgbcolor AdjustColor
1087 stroke
1088 grestore
1089 gsave
1090 84 565 moveto
1091 84 553 lineto
1092 0 setlinecap
1093 1 setlinejoin
1094 1 setlinewidth
1095 [] 0 setdash
1096 0.000 0.000 1.000 setrgbcolor AdjustColor
1097 stroke
1098 grestore
1099 gsave
1100 168 565 moveto
1101 168 553 lineto
1102 0 setlinecap
1103 1 setlinejoin
1104 1 setlinewidth
1105 [] 0 setdash
1106 0.000 0.000 1.000 setrgbcolor AdjustColor
1107 stroke
1108 grestore
1109 gsave
1110 252 565 moveto
1111 252 553 lineto
1112 0 setlinecap
1113 1 setlinejoin
1114 1 setlinewidth
1115 [] 0 setdash
1116 0.000 0.000 1.000 setrgbcolor AdjustColor
1117 stroke
1118 grestore
1119 gsave
1120 148 565 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1121 1.000 1.000 1.000 setrgbcolor AdjustColor
1122 fill
1123 148 565 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1124 0 setlinejoin 2 setlinecap
1125 1 setlinewidth
1126 [] 0 setdash
1127 0.000 0.000 1.000 setrgbcolor AdjustColor
1128 stroke
1129 grestore
1130 gsave
1131 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1132 0.000 0.000 0.000 setrgbcolor AdjustColor
1133 168 559 [
1134 [(89)]
1135 ] 10 -0.5 0.5 0 false DrawText
1136 grestore
1137 gsave
1138 232 583 moveto
1139 190.560979893082 560.396898123499 lineto
1140 0 setlinecap
1141 1 setlinejoin
1142 2 setlinewidth
1143 [] 0 setdash
1144 1.000 0.000 0.000 setrgbcolor AdjustColor
1145 stroke
1146 188 559 moveto
1147 195.263947396359 556.126488172474 lineto
1148 192.869207890825 560.516843932619 lineto
1149 191.911503629464 562.272635078448 lineto
1150 189.516764123931 566.662990838593 lineto
1151 188 559 lineto
1152 fill
1153 grestore
1154 gsave
1155 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1156 0.000 0.000 0.000 setrgbcolor AdjustColor
1157 210 571 [
1158 [(2!1)]
1159 ] 10 -0.5 0.5 0 false DrawText
1160 grestore
1161 gsave
1162 84 553 moveto
1163 84 541 lineto
1164 0 setlinecap
1165 1 setlinejoin
1166 1 setlinewidth
1167 [] 0 setdash
1168 0.000 0.000 1.000 setrgbcolor AdjustColor
1169 stroke
1170 grestore
1171 gsave
1172 168 553 moveto
1173 168 541 lineto
1174 0 setlinecap
1175 1 setlinejoin
1176 1 setlinewidth
1177 [] 0 setdash
1178 0.000 0.000 1.000 setrgbcolor AdjustColor
1179 stroke
1180 grestore
1181 gsave
1182 252 553 moveto
1183 252 541 lineto
1184 0 setlinecap
1185 1 setlinejoin
1186 1 setlinewidth
1187 [] 0 setdash
1188 0.000 0.000 1.000 setrgbcolor AdjustColor
1189 stroke
1190 grestore
1191 gsave
1192 84 541 moveto
1193 84 529 lineto
1194 0 setlinecap
1195 1 setlinejoin
1196 1 setlinewidth
1197 [] 0 setdash
1198 0.000 0.000 1.000 setrgbcolor AdjustColor
1199 stroke
1200 grestore
1201 gsave
1202 168 541 moveto
1203 168 529 lineto
1204 0 setlinecap
1205 1 setlinejoin
1206 1 setlinewidth
1207 [] 0 setdash
1208 0.000 0.000 1.000 setrgbcolor AdjustColor
1209 stroke
1210 grestore
1211 gsave
1212 252 541 moveto
1213 252 529 lineto
1214 0 setlinecap
1215 1 setlinejoin
1216 1 setlinewidth
1217 [] 0 setdash
1218 0.000 0.000 1.000 setrgbcolor AdjustColor
1219 stroke
1220 grestore
1221 gsave
1222 148 541 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1223 1.000 1.000 1.000 setrgbcolor AdjustColor
1224 fill
1225 148 541 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1226 0 setlinejoin 2 setlinecap
1227 1 setlinewidth
1228 [] 0 setdash
1229 0.000 0.000 1.000 setrgbcolor AdjustColor
1230 stroke
1231 grestore
1232 gsave
1233 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1234 0.000 0.000 0.000 setrgbcolor AdjustColor
1235 168 535 [
1236 [(133)]
1237 ] 10 -0.5 0.5 0 false DrawText
1238 grestore
1239 gsave
1240 84 529 moveto
1241 84 517 lineto
1242 0 setlinecap
1243 1 setlinejoin
1244 1 setlinewidth
1245 [] 0 setdash
1246 0.000 0.000 1.000 setrgbcolor AdjustColor
1247 stroke
1248 grestore
1249 gsave
1250 168 529 moveto
1251 168 517 lineto
1252 0 setlinecap
1253 1 setlinejoin
1254 1 setlinewidth
1255 [] 0 setdash
1256 0.000 0.000 1.000 setrgbcolor AdjustColor
1257 stroke
1258 grestore
1259 gsave
1260 252 529 moveto
1261 252 517 lineto
1262 0 setlinecap
1263 1 setlinejoin
1264 1 setlinewidth
1265 [] 0 setdash
1266 0.000 0.000 1.000 setrgbcolor AdjustColor
1267 stroke
1268 grestore
1269 gsave
1270 84 517 moveto
1271 84 505 lineto
1272 0 setlinecap
1273 1 setlinejoin
1274 1 setlinewidth
1275 [] 0 setdash
1276 0.000 0.000 1.000 setrgbcolor AdjustColor
1277 stroke
1278 grestore
1279 gsave
1280 168 517 moveto
1281 168 505 lineto
1282 0 setlinecap
1283 1 setlinejoin
1284 1 setlinewidth
1285 [] 0 setdash
1286 0.000 0.000 1.000 setrgbcolor AdjustColor
1287 stroke
1288 grestore
1289 gsave
1290 252 517 moveto
1291 252 505 lineto
1292 0 setlinecap
1293 1 setlinejoin
1294 1 setlinewidth
1295 [] 0 setdash
1296 0.000 0.000 1.000 setrgbcolor AdjustColor
1297 stroke
1298 grestore
1299 gsave
1300 232 517 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1301 1.000 1.000 1.000 setrgbcolor AdjustColor
1302 fill
1303 232 517 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1304 0 setlinejoin 2 setlinecap
1305 1 setlinewidth
1306 [] 0 setdash
1307 0.000 0.000 1.000 setrgbcolor AdjustColor
1308 stroke
1309 grestore
1310 gsave
1311 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1312 0.000 0.000 0.000 setrgbcolor AdjustColor
1313 252 511 [
1314 [(135)]
1315 ] 10 -0.5 0.5 0 false DrawText
1316 grestore
1317 gsave
1318 188 535 moveto
1319 229.439020106918 512.396898123499 lineto
1320 0 setlinecap
1321 1 setlinejoin
1322 2 setlinewidth
1323 [] 0 setdash
1324 1.000 0.000 0.000 setrgbcolor AdjustColor
1325 stroke
1326 232 511 moveto
1327 230.483235876069 518.662990838593 lineto
1328 228.088496370536 514.272635078448 lineto
1329 227.130792109175 512.516843932619 lineto
1330 224.736052603641 508.126488172474 lineto
1331 232 511 lineto
1332 fill
1333 grestore
1334 gsave
1335 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1336 0.000 0.000 0.000 setrgbcolor AdjustColor
1337 210 523 [
1338 [(1!1)]
1339 ] 10 -0.5 0.5 0 false DrawText
1340 grestore
1341 gsave
1342 84 505 moveto
1343 84 493 lineto
1344 0 setlinecap
1345 1 setlinejoin
1346 1 setlinewidth
1347 [] 0 setdash
1348 0.000 0.000 1.000 setrgbcolor AdjustColor
1349 stroke
1350 grestore
1351 gsave
1352 168 505 moveto
1353 168 493 lineto
1354 0 setlinecap
1355 1 setlinejoin
1356 1 setlinewidth
1357 [] 0 setdash
1358 0.000 0.000 1.000 setrgbcolor AdjustColor
1359 stroke
1360 grestore
1361 gsave
1362 252 505 moveto
1363 252 493 lineto
1364 0 setlinecap
1365 1 setlinejoin
1366 1 setlinewidth
1367 [] 0 setdash
1368 0.000 0.000 1.000 setrgbcolor AdjustColor
1369 stroke
1370 grestore
1371 gsave
1372 84 493 moveto
1373 84 481 lineto
1374 0 setlinecap
1375 1 setlinejoin
1376 1 setlinewidth
1377 [] 0 setdash
1378 0.000 0.000 1.000 setrgbcolor AdjustColor
1379 stroke
1380 grestore
1381 gsave
1382 168 493 moveto
1383 168 481 lineto
1384 0 setlinecap
1385 1 setlinejoin
1386 1 setlinewidth
1387 [] 0 setdash
1388 0.000 0.000 1.000 setrgbcolor AdjustColor
1389 stroke
1390 grestore
1391 gsave
1392 252 493 moveto
1393 252 481 lineto
1394 0 setlinecap
1395 1 setlinejoin
1396 1 setlinewidth
1397 [] 0 setdash
1398 0.000 0.000 1.000 setrgbcolor AdjustColor
1399 stroke
1400 grestore
1401 gsave
1402 232 493 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
1403 1.000 1.000 1.000 setrgbcolor AdjustColor
1404 fill
1405 232 493 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
1406 0 setlinejoin 2 setlinecap
1407 1 setlinewidth
1408 [] 0 setdash
1409 0.000 0.000 1.000 setrgbcolor AdjustColor
1410 stroke
1411 grestore
1412 gsave
1413 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1414 0.000 0.000 0.000 setrgbcolor AdjustColor
1415 252 487 [
1416 [(139)]
1417 ] 10 -0.5 0.5 0 false DrawText
1418 grestore
1419 gsave
1420 84 481 moveto
1421 84 469 lineto
1422 0 setlinecap
1423 1 setlinejoin
1424 1 setlinewidth
1425 [] 0 setdash
1426 0.000 0.000 1.000 setrgbcolor AdjustColor
1427 stroke
1428 grestore
1429 gsave
1430 168 481 moveto
1431 168 469 lineto
1432 0 setlinecap
1433 1 setlinejoin
1434 1 setlinewidth
1435 [] 0 setdash
1436 0.000 0.000 1.000 setrgbcolor AdjustColor
1437 stroke
1438 grestore
1439 gsave
1440 252 481 moveto
1441 252 469 lineto
1442 0 setlinecap
1443 1 setlinejoin
1444 1 setlinewidth
1445 [] 0 setdash
1446 0.000 0.000 1.000 setrgbcolor AdjustColor
1447 stroke
1448 grestore
1449 gsave
1450 84 469 moveto
1451 84 457 lineto
1452 0 setlinecap
1453 1 setlinejoin
1454 1 setlinewidth
1455 [] 0 setdash
1456 0.000 0.000 1.000 setrgbcolor AdjustColor
1457 stroke
1458 grestore
1459 gsave
1460 168 469 moveto
1461 168 457 lineto
1462 0 setlinecap
1463 1 setlinejoin
1464 1 setlinewidth
1465 [] 0 setdash
1466 0.000 0.000 1.000 setrgbcolor AdjustColor
1467 stroke
1468 grestore
1469 gsave
1470 252 469 moveto
1471 252 457 lineto
1472 0 setlinecap
1473 1 setlinejoin
1474 1 setlinewidth
1475 [] 0 setdash
1476 0.000 0.000 1.000 setrgbcolor AdjustColor
1477 stroke
1478 grestore
1479 gsave
1480 148 469 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1481 1.000 1.000 1.000 setrgbcolor AdjustColor
1482 fill
1483 148 469 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1484 0 setlinejoin 2 setlinecap
1485 1 setlinewidth
1486 [] 0 setdash
1487 0.000 0.000 1.000 setrgbcolor AdjustColor
1488 stroke
1489 grestore
1490 gsave
1491 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1492 0.000 0.000 0.000 setrgbcolor AdjustColor
1493 168 463 [
1494 [(141)]
1495 ] 10 -0.5 0.5 0 false DrawText
1496 grestore
1497 gsave
1498 232 487 moveto
1499 190.560979893082 464.396898123499 lineto
1500 0 setlinecap
1501 1 setlinejoin
1502 2 setlinewidth
1503 [] 0 setdash
1504 1.000 0.000 0.000 setrgbcolor AdjustColor
1505 stroke
1506 188 463 moveto
1507 195.263947396359 460.126488172474 lineto
1508 192.869207890825 464.516843932619 lineto
1509 191.911503629464 466.272635078448 lineto
1510 189.516764123931 470.662990838593 lineto
1511 188 463 lineto
1512 fill
1513 grestore
1514 gsave
1515 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1516 0.000 0.000 0.000 setrgbcolor AdjustColor
1517 210 475 [
1518 [(2!1)]
1519 ] 10 -0.5 0.5 0 false DrawText
1520 grestore
1521 gsave
1522 84 457 moveto
1523 84 445 lineto
1524 0 setlinecap
1525 1 setlinejoin
1526 1 setlinewidth
1527 [] 0 setdash
1528 0.000 0.000 1.000 setrgbcolor AdjustColor
1529 stroke
1530 grestore
1531 gsave
1532 168 457 moveto
1533 168 445 lineto
1534 0 setlinecap
1535 1 setlinejoin
1536 1 setlinewidth
1537 [] 0 setdash
1538 0.000 0.000 1.000 setrgbcolor AdjustColor
1539 stroke
1540 grestore
1541 gsave
1542 252 457 moveto
1543 252 445 lineto
1544 0 setlinecap
1545 1 setlinejoin
1546 1 setlinewidth
1547 [] 0 setdash
1548 0.000 0.000 1.000 setrgbcolor AdjustColor
1549 stroke
1550 grestore
1551 gsave
1552 84 445 moveto
1553 84 433 lineto
1554 0 setlinecap
1555 1 setlinejoin
1556 1 setlinewidth
1557 [] 0 setdash
1558 0.000 0.000 1.000 setrgbcolor AdjustColor
1559 stroke
1560 grestore
1561 gsave
1562 168 445 moveto
1563 168 433 lineto
1564 0 setlinecap
1565 1 setlinejoin
1566 1 setlinewidth
1567 [] 0 setdash
1568 0.000 0.000 1.000 setrgbcolor AdjustColor
1569 stroke
1570 grestore
1571 gsave
1572 252 445 moveto
1573 252 433 lineto
1574 0 setlinecap
1575 1 setlinejoin
1576 1 setlinewidth
1577 [] 0 setdash
1578 0.000 0.000 1.000 setrgbcolor AdjustColor
1579 stroke
1580 grestore
1581 gsave
1582 148 445 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
1583 1.000 1.000 1.000 setrgbcolor AdjustColor
1584 fill
1585 148 445 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
1586 0 setlinejoin 2 setlinecap
1587 1 setlinewidth
1588 [] 0 setdash
1589 0.000 0.000 1.000 setrgbcolor AdjustColor
1590 stroke
1591 grestore
1592 gsave
1593 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1594 0.000 0.000 0.000 setrgbcolor AdjustColor
1595 168 439 [
1596 [(169)]
1597 ] 10 -0.5 0.5 0 false DrawText
1598 grestore
1599 gsave
1600 84 433 moveto
1601 84 421 lineto
1602 0 setlinecap
1603 1 setlinejoin
1604 1 setlinewidth
1605 [] 0 setdash
1606 0.000 0.000 1.000 setrgbcolor AdjustColor
1607 stroke
1608 grestore
1609 gsave
1610 168 433 moveto
1611 168 421 lineto
1612 0 setlinecap
1613 1 setlinejoin
1614 1 setlinewidth
1615 [] 0 setdash
1616 0.000 0.000 1.000 setrgbcolor AdjustColor
1617 stroke
1618 grestore
1619 gsave
1620 252 433 moveto
1621 252 421 lineto
1622 0 setlinecap
1623 1 setlinejoin
1624 1 setlinewidth
1625 [] 0 setdash
1626 0.000 0.000 1.000 setrgbcolor AdjustColor
1627 stroke
1628 grestore
1629 gsave
1630 84 421 moveto
1631 84 409 lineto
1632 0 setlinecap
1633 1 setlinejoin
1634 1 setlinewidth
1635 [] 0 setdash
1636 0.000 0.000 1.000 setrgbcolor AdjustColor
1637 stroke
1638 grestore
1639 gsave
1640 168 421 moveto
1641 168 409 lineto
1642 0 setlinecap
1643 1 setlinejoin
1644 1 setlinewidth
1645 [] 0 setdash
1646 0.000 0.000 1.000 setrgbcolor AdjustColor
1647 stroke
1648 grestore
1649 gsave
1650 252 421 moveto
1651 252 409 lineto
1652 0 setlinecap
1653 1 setlinejoin
1654 1 setlinewidth
1655 [] 0 setdash
1656 0.000 0.000 1.000 setrgbcolor AdjustColor
1657 stroke
1658 grestore
1659 gsave
1660 232 421 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
1661 1.000 1.000 1.000 setrgbcolor AdjustColor
1662 fill
1663 232 421 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
1664 0 setlinejoin 2 setlinecap
1665 1 setlinewidth
1666 [] 0 setdash
1667 0.000 0.000 1.000 setrgbcolor AdjustColor
1668 stroke
1669 grestore
1670 gsave
1671 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1672 0.000 0.000 0.000 setrgbcolor AdjustColor
1673 252 415 [
1674 [(171)]
1675 ] 10 -0.5 0.5 0 false DrawText
1676 grestore
1677 gsave
1678 188 439 moveto
1679 229.439020106918 416.396898123499 lineto
1680 0 setlinecap
1681 1 setlinejoin
1682 2 setlinewidth
1683 [] 0 setdash
1684 1.000 0.000 0.000 setrgbcolor AdjustColor
1685 stroke
1686 232 415 moveto
1687 230.483235876069 422.662990838593 lineto
1688 228.088496370536 418.272635078448 lineto
1689 227.130792109175 416.516843932619 lineto
1690 224.736052603641 412.126488172474 lineto
1691 232 415 lineto
1692 fill
1693 grestore
1694 gsave
1695 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1696 0.000 0.000 0.000 setrgbcolor AdjustColor
1697 210 427 [
1698 [(1!1)]
1699 ] 10 -0.5 0.5 0 false DrawText
1700 grestore
1701 gsave
1702 84 409 moveto
1703 84 397 lineto
1704 0 setlinecap
1705 1 setlinejoin
1706 1 setlinewidth
1707 [] 0 setdash
1708 0.000 0.000 1.000 setrgbcolor AdjustColor
1709 stroke
1710 grestore
1711 gsave
1712 168 409 moveto
1713 168 397 lineto
1714 0 setlinecap
1715 1 setlinejoin
1716 1 setlinewidth
1717 [] 0 setdash
1718 0.000 0.000 1.000 setrgbcolor AdjustColor
1719 stroke
1720 grestore
1721 gsave
1722 252 409 moveto
1723 252 397 lineto
1724 0 setlinecap
1725 1 setlinejoin
1726 1 setlinewidth
1727 [] 0 setdash
1728 0.000 0.000 1.000 setrgbcolor AdjustColor
1729 stroke
1730 grestore
1731 gsave
1732 84 397 moveto
1733 84 385 lineto
1734 0 setlinecap
1735 1 setlinejoin
1736 1 setlinewidth
1737 [] 0 setdash
1738 0.000 0.000 1.000 setrgbcolor AdjustColor
1739 stroke
1740 grestore
1741 gsave
1742 168 397 moveto
1743 168 385 lineto
1744 0 setlinecap
1745 1 setlinejoin
1746 1 setlinewidth
1747 [] 0 setdash
1748 0.000 0.000 1.000 setrgbcolor AdjustColor
1749 stroke
1750 grestore
1751 gsave
1752 252 397 moveto
1753 252 385 lineto
1754 0 setlinecap
1755 1 setlinejoin
1756 1 setlinewidth
1757 [] 0 setdash
1758 0.000 0.000 1.000 setrgbcolor AdjustColor
1759 stroke
1760 grestore
1761 gsave
1762 232 397 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1763 1.000 1.000 1.000 setrgbcolor AdjustColor
1764 fill
1765 232 397 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1766 0 setlinejoin 2 setlinecap
1767 1 setlinewidth
1768 [] 0 setdash
1769 0.000 0.000 1.000 setrgbcolor AdjustColor
1770 stroke
1771 grestore
1772 gsave
1773 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1774 0.000 0.000 0.000 setrgbcolor AdjustColor
1775 252 391 [
1776 [(175)]
1777 ] 10 -0.5 0.5 0 false DrawText
1778 grestore
1779 gsave
1780 84 385 moveto
1781 84 373 lineto
1782 0 setlinecap
1783 1 setlinejoin
1784 1 setlinewidth
1785 [] 0 setdash
1786 0.000 0.000 1.000 setrgbcolor AdjustColor
1787 stroke
1788 grestore
1789 gsave
1790 168 385 moveto
1791 168 373 lineto
1792 0 setlinecap
1793 1 setlinejoin
1794 1 setlinewidth
1795 [] 0 setdash
1796 0.000 0.000 1.000 setrgbcolor AdjustColor
1797 stroke
1798 grestore
1799 gsave
1800 252 385 moveto
1801 252 373 lineto
1802 0 setlinecap
1803 1 setlinejoin
1804 1 setlinewidth
1805 [] 0 setdash
1806 0.000 0.000 1.000 setrgbcolor AdjustColor
1807 stroke
1808 grestore
1809 gsave
1810 84 373 moveto
1811 84 361 lineto
1812 0 setlinecap
1813 1 setlinejoin
1814 1 setlinewidth
1815 [] 0 setdash
1816 0.000 0.000 1.000 setrgbcolor AdjustColor
1817 stroke
1818 grestore
1819 gsave
1820 168 373 moveto
1821 168 361 lineto
1822 0 setlinecap
1823 1 setlinejoin
1824 1 setlinewidth
1825 [] 0 setdash
1826 0.000 0.000 1.000 setrgbcolor AdjustColor
1827 stroke
1828 grestore
1829 gsave
1830 252 373 moveto
1831 252 361 lineto
1832 0 setlinecap
1833 1 setlinejoin
1834 1 setlinewidth
1835 [] 0 setdash
1836 0.000 0.000 1.000 setrgbcolor AdjustColor
1837 stroke
1838 grestore
1839 gsave
1840 148 373 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
1841 1.000 1.000 1.000 setrgbcolor AdjustColor
1842 fill
1843 148 373 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
1844 0 setlinejoin 2 setlinecap
1845 1 setlinewidth
1846 [] 0 setdash
1847 0.000 0.000 1.000 setrgbcolor AdjustColor
1848 stroke
1849 grestore
1850 gsave
1851 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1852 0.000 0.000 0.000 setrgbcolor AdjustColor
1853 168 367 [
1854 [(177)]
1855 ] 10 -0.5 0.5 0 false DrawText
1856 grestore
1857 gsave
1858 232 391 moveto
1859 190.560979893082 368.396898123499 lineto
1860 0 setlinecap
1861 1 setlinejoin
1862 2 setlinewidth
1863 [] 0 setdash
1864 1.000 0.000 0.000 setrgbcolor AdjustColor
1865 stroke
1866 188 367 moveto
1867 195.263947396359 364.126488172474 lineto
1868 192.869207890825 368.516843932619 lineto
1869 191.911503629464 370.272635078448 lineto
1870 189.516764123931 374.662990838593 lineto
1871 188 367 lineto
1872 fill
1873 grestore
1874 gsave
1875 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1876 0.000 0.000 0.000 setrgbcolor AdjustColor
1877 210 379 [
1878 [(2!1)]
1879 ] 10 -0.5 0.5 0 false DrawText
1880 grestore
1881 gsave
1882 84 361 moveto
1883 84 349 lineto
1884 0 setlinecap
1885 1 setlinejoin
1886 1 setlinewidth
1887 [] 0 setdash
1888 0.000 0.000 1.000 setrgbcolor AdjustColor
1889 stroke
1890 grestore
1891 gsave
1892 168 361 moveto
1893 168 349 lineto
1894 0 setlinecap
1895 1 setlinejoin
1896 1 setlinewidth
1897 [] 0 setdash
1898 0.000 0.000 1.000 setrgbcolor AdjustColor
1899 stroke
1900 grestore
1901 gsave
1902 252 361 moveto
1903 252 349 lineto
1904 0 setlinecap
1905 1 setlinejoin
1906 1 setlinewidth
1907 [] 0 setdash
1908 0.000 0.000 1.000 setrgbcolor AdjustColor
1909 stroke
1910 grestore
1911 gsave
1912 84 349 moveto
1913 84 337 lineto
1914 0 setlinecap
1915 1 setlinejoin
1916 1 setlinewidth
1917 [] 0 setdash
1918 0.000 0.000 1.000 setrgbcolor AdjustColor
1919 stroke
1920 grestore
1921 gsave
1922 168 349 moveto
1923 168 337 lineto
1924 0 setlinecap
1925 1 setlinejoin
1926 1 setlinewidth
1927 [] 0 setdash
1928 0.000 0.000 1.000 setrgbcolor AdjustColor
1929 stroke
1930 grestore
1931 gsave
1932 252 349 moveto
1933 252 337 lineto
1934 0 setlinecap
1935 1 setlinejoin
1936 1 setlinewidth
1937 [] 0 setdash
1938 0.000 0.000 1.000 setrgbcolor AdjustColor
1939 stroke
1940 grestore
1941 gsave
1942 148 349 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1943 1.000 1.000 1.000 setrgbcolor AdjustColor
1944 fill
1945 148 349 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
1946 0 setlinejoin 2 setlinecap
1947 1 setlinewidth
1948 [] 0 setdash
1949 0.000 0.000 1.000 setrgbcolor AdjustColor
1950 stroke
1951 grestore
1952 gsave
1953 /Courier-Bold findfont 8 scalefont ISOEncode setfont
1954 0.000 0.000 0.000 setrgbcolor AdjustColor
1955 168 343 [
1956 [(221)]
1957 ] 10 -0.5 0.5 0 false DrawText
1958 grestore
1959 gsave
1960 84 337 moveto
1961 84 325 lineto
1962 0 setlinecap
1963 1 setlinejoin
1964 1 setlinewidth
1965 [] 0 setdash
1966 0.000 0.000 1.000 setrgbcolor AdjustColor
1967 stroke
1968 grestore
1969 gsave
1970 168 337 moveto
1971 168 325 lineto
1972 0 setlinecap
1973 1 setlinejoin
1974 1 setlinewidth
1975 [] 0 setdash
1976 0.000 0.000 1.000 setrgbcolor AdjustColor
1977 stroke
1978 grestore
1979 gsave
1980 252 337 moveto
1981 252 325 lineto
1982 0 setlinecap
1983 1 setlinejoin
1984 1 setlinewidth
1985 [] 0 setdash
1986 0.000 0.000 1.000 setrgbcolor AdjustColor
1987 stroke
1988 grestore
1989 gsave
1990 84 325 moveto
1991 84 313 lineto
1992 0 setlinecap
1993 1 setlinejoin
1994 1 setlinewidth
1995 [] 0 setdash
1996 0.000 0.000 1.000 setrgbcolor AdjustColor
1997 stroke
1998 grestore
1999 gsave
2000 168 325 moveto
2001 168 313 lineto
2002 0 setlinecap
2003 1 setlinejoin
2004 1 setlinewidth
2005 [] 0 setdash
2006 0.000 0.000 1.000 setrgbcolor AdjustColor
2007 stroke
2008 grestore
2009 gsave
2010 252 325 moveto
2011 252 313 lineto
2012 0 setlinecap
2013 1 setlinejoin
2014 1 setlinewidth
2015 [] 0 setdash
2016 0.000 0.000 1.000 setrgbcolor AdjustColor
2017 stroke
2018 grestore
2019 gsave
2020 232 325 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2021 1.000 1.000 1.000 setrgbcolor AdjustColor
2022 fill
2023 232 325 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2024 0 setlinejoin 2 setlinecap
2025 1 setlinewidth
2026 [] 0 setdash
2027 0.000 0.000 1.000 setrgbcolor AdjustColor
2028 stroke
2029 grestore
2030 gsave
2031 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2032 0.000 0.000 0.000 setrgbcolor AdjustColor
2033 252 319 [
2034 [(223)]
2035 ] 10 -0.5 0.5 0 false DrawText
2036 grestore
2037 gsave
2038 188 343 moveto
2039 229.439020106918 320.396898123499 lineto
2040 0 setlinecap
2041 1 setlinejoin
2042 2 setlinewidth
2043 [] 0 setdash
2044 1.000 0.000 0.000 setrgbcolor AdjustColor
2045 stroke
2046 232 319 moveto
2047 230.483235876069 326.662990838593 lineto
2048 228.088496370536 322.272635078448 lineto
2049 227.130792109175 320.516843932619 lineto
2050 224.736052603641 316.126488172474 lineto
2051 232 319 lineto
2052 fill
2053 grestore
2054 gsave
2055 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2056 0.000 0.000 0.000 setrgbcolor AdjustColor
2057 210 331 [
2058 [(1!1)]
2059 ] 10 -0.5 0.5 0 false DrawText
2060 grestore
2061 gsave
2062 84 313 moveto
2063 84 301 lineto
2064 0 setlinecap
2065 1 setlinejoin
2066 1 setlinewidth
2067 [] 0 setdash
2068 0.000 0.000 1.000 setrgbcolor AdjustColor
2069 stroke
2070 grestore
2071 gsave
2072 168 313 moveto
2073 168 301 lineto
2074 0 setlinecap
2075 1 setlinejoin
2076 1 setlinewidth
2077 [] 0 setdash
2078 0.000 0.000 1.000 setrgbcolor AdjustColor
2079 stroke
2080 grestore
2081 gsave
2082 252 313 moveto
2083 252 301 lineto
2084 0 setlinecap
2085 1 setlinejoin
2086 1 setlinewidth
2087 [] 0 setdash
2088 0.000 0.000 1.000 setrgbcolor AdjustColor
2089 stroke
2090 grestore
2091 gsave
2092 84 301 moveto
2093 84 289 lineto
2094 0 setlinecap
2095 1 setlinejoin
2096 1 setlinewidth
2097 [] 0 setdash
2098 0.000 0.000 1.000 setrgbcolor AdjustColor
2099 stroke
2100 grestore
2101 gsave
2102 168 301 moveto
2103 168 289 lineto
2104 0 setlinecap
2105 1 setlinejoin
2106 1 setlinewidth
2107 [] 0 setdash
2108 0.000 0.000 1.000 setrgbcolor AdjustColor
2109 stroke
2110 grestore
2111 gsave
2112 252 301 moveto
2113 252 289 lineto
2114 0 setlinecap
2115 1 setlinejoin
2116 1 setlinewidth
2117 [] 0 setdash
2118 0.000 0.000 1.000 setrgbcolor AdjustColor
2119 stroke
2120 grestore
2121 gsave
2122 232 301 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2123 1.000 1.000 1.000 setrgbcolor AdjustColor
2124 fill
2125 232 301 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2126 0 setlinejoin 2 setlinecap
2127 1 setlinewidth
2128 [] 0 setdash
2129 0.000 0.000 1.000 setrgbcolor AdjustColor
2130 stroke
2131 grestore
2132 gsave
2133 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2134 0.000 0.000 0.000 setrgbcolor AdjustColor
2135 252 295 [
2136 [(227)]
2137 ] 10 -0.5 0.5 0 false DrawText
2138 grestore
2139 gsave
2140 84 289 moveto
2141 84 277 lineto
2142 0 setlinecap
2143 1 setlinejoin
2144 1 setlinewidth
2145 [] 0 setdash
2146 0.000 0.000 1.000 setrgbcolor AdjustColor
2147 stroke
2148 grestore
2149 gsave
2150 168 289 moveto
2151 168 277 lineto
2152 0 setlinecap
2153 1 setlinejoin
2154 1 setlinewidth
2155 [] 0 setdash
2156 0.000 0.000 1.000 setrgbcolor AdjustColor
2157 stroke
2158 grestore
2159 gsave
2160 252 289 moveto
2161 252 277 lineto
2162 0 setlinecap
2163 1 setlinejoin
2164 1 setlinewidth
2165 [] 0 setdash
2166 0.000 0.000 1.000 setrgbcolor AdjustColor
2167 stroke
2168 grestore
2169 gsave
2170 84 277 moveto
2171 84 265 lineto
2172 0 setlinecap
2173 1 setlinejoin
2174 1 setlinewidth
2175 [] 0 setdash
2176 0.000 0.000 1.000 setrgbcolor AdjustColor
2177 stroke
2178 grestore
2179 gsave
2180 168 277 moveto
2181 168 265 lineto
2182 0 setlinecap
2183 1 setlinejoin
2184 1 setlinewidth
2185 [] 0 setdash
2186 0.000 0.000 1.000 setrgbcolor AdjustColor
2187 stroke
2188 grestore
2189 gsave
2190 252 277 moveto
2191 252 265 lineto
2192 0 setlinecap
2193 1 setlinejoin
2194 1 setlinewidth
2195 [] 0 setdash
2196 0.000 0.000 1.000 setrgbcolor AdjustColor
2197 stroke
2198 grestore
2199 gsave
2200 148 277 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2201 1.000 1.000 1.000 setrgbcolor AdjustColor
2202 fill
2203 148 277 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2204 0 setlinejoin 2 setlinecap
2205 1 setlinewidth
2206 [] 0 setdash
2207 0.000 0.000 1.000 setrgbcolor AdjustColor
2208 stroke
2209 grestore
2210 gsave
2211 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2212 0.000 0.000 0.000 setrgbcolor AdjustColor
2213 168 271 [
2214 [(229)]
2215 ] 10 -0.5 0.5 0 false DrawText
2216 grestore
2217 gsave
2218 232 295 moveto
2219 190.560979893082 272.396898123499 lineto
2220 0 setlinecap
2221 1 setlinejoin
2222 2 setlinewidth
2223 [] 0 setdash
2224 1.000 0.000 0.000 setrgbcolor AdjustColor
2225 stroke
2226 188 271 moveto
2227 195.263947396359 268.126488172474 lineto
2228 192.869207890825 272.516843932619 lineto
2229 191.911503629464 274.272635078448 lineto
2230 189.516764123931 278.662990838593 lineto
2231 188 271 lineto
2232 fill
2233 grestore
2234 gsave
2235 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2236 0.000 0.000 0.000 setrgbcolor AdjustColor
2237 210 283 [
2238 [(2!1)]
2239 ] 10 -0.5 0.5 0 false DrawText
2240 grestore
2241 gsave
2242 84 265 moveto
2243 84 253 lineto
2244 0 setlinecap
2245 1 setlinejoin
2246 1 setlinewidth
2247 [] 0 setdash
2248 0.000 0.000 1.000 setrgbcolor AdjustColor
2249 stroke
2250 grestore
2251 gsave
2252 168 265 moveto
2253 168 253 lineto
2254 0 setlinecap
2255 1 setlinejoin
2256 1 setlinewidth
2257 [] 0 setdash
2258 0.000 0.000 1.000 setrgbcolor AdjustColor
2259 stroke
2260 grestore
2261 gsave
2262 252 265 moveto
2263 252 253 lineto
2264 0 setlinecap
2265 1 setlinejoin
2266 1 setlinewidth
2267 [] 0 setdash
2268 0.000 0.000 1.000 setrgbcolor AdjustColor
2269 stroke
2270 grestore
2271 gsave
2272 84 253 moveto
2273 84 241 lineto
2274 0 setlinecap
2275 1 setlinejoin
2276 1 setlinewidth
2277 [] 0 setdash
2278 0.000 0.000 1.000 setrgbcolor AdjustColor
2279 stroke
2280 grestore
2281 gsave
2282 168 253 moveto
2283 168 241 lineto
2284 0 setlinecap
2285 1 setlinejoin
2286 1 setlinewidth
2287 [] 0 setdash
2288 0.000 0.000 1.000 setrgbcolor AdjustColor
2289 stroke
2290 grestore
2291 gsave
2292 252 253 moveto
2293 252 241 lineto
2294 0 setlinecap
2295 1 setlinejoin
2296 1 setlinewidth
2297 [] 0 setdash
2298 0.000 0.000 1.000 setrgbcolor AdjustColor
2299 stroke
2300 grestore
2301 gsave
2302 148 253 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2303 1.000 1.000 0.000 setrgbcolor AdjustColor
2304 fill
2305 148 253 moveto 40 0 rlineto 0 -12 rlineto -40 0 rlineto closepath
2306 0 setlinejoin 2 setlinecap
2307 1 setlinewidth
2308 [] 0 setdash
2309 1.000 0.000 0.000 setrgbcolor AdjustColor
2310 stroke
2311 grestore
2312 gsave
2313 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2314 0.000 0.000 0.000 setrgbcolor AdjustColor
2315 168 247 [
2316 [(273)]
2317 ] 10 -0.5 0.5 0 false DrawText
2318 grestore
2319 gsave
2320 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2321 0.000 0.000 0.000 setrgbcolor AdjustColor
2322 128 247 [
2323 [(1!1)]
2324 ] 10 -0.5 0.5 0 false DrawText
2325 grestore
2326 gsave
2327 84 241 moveto
2328 84 229 lineto
2329 0 setlinecap
2330 1 setlinejoin
2331 1 setlinewidth
2332 [] 0 setdash
2333 0.000 0.000 1.000 setrgbcolor AdjustColor
2334 stroke
2335 grestore
2336 gsave
2337 168 241 moveto
2338 168 229 lineto
2339 0 setlinecap
2340 1 setlinejoin
2341 1 setlinewidth
2342 [] 0 setdash
2343 0.000 0.000 1.000 setrgbcolor AdjustColor
2344 stroke
2345 grestore
2346 gsave
2347 252 241 moveto
2348 252 229 lineto
2349 0 setlinecap
2350 1 setlinejoin
2351 1 setlinewidth
2352 [] 0 setdash
2353 0.000 0.000 1.000 setrgbcolor AdjustColor
2354 stroke
2355 grestore
2356 gsave
2357 84 229 moveto
2358 84 217 lineto
2359 0 setlinecap
2360 1 setlinejoin
2361 1 setlinewidth
2362 [] 0 setdash
2363 0.000 0.000 1.000 setrgbcolor AdjustColor
2364 stroke
2365 grestore
2366 gsave
2367 168 229 moveto
2368 168 217 lineto
2369 0 setlinecap
2370 1 setlinejoin
2371 1 setlinewidth
2372 [] 0 setdash
2373 0.000 0.000 1.000 setrgbcolor AdjustColor
2374 stroke
2375 grestore
2376 gsave
2377 252 229 moveto
2378 252 217 lineto
2379 0 setlinecap
2380 1 setlinejoin
2381 1 setlinewidth
2382 [] 0 setdash
2383 0.000 0.000 1.000 setrgbcolor AdjustColor
2384 stroke
2385 grestore
2386 gsave
2387 232 229 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
2388 1.000 1.000 0.000 setrgbcolor AdjustColor
2389 fill
2390 232 229 moveto 40 0 rlineto 0 -12.0000000000001 rlineto -40 0 rlineto closepath
2391 0 setlinejoin 2 setlinecap
2392 1 setlinewidth
2393 [] 0 setdash
2394 1.000 0.000 0.000 setrgbcolor AdjustColor
2395 stroke
2396 grestore
2397 gsave
2398 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2399 0.000 0.000 0.000 setrgbcolor AdjustColor
2400 252 223 [
2401 [(273)]
2402 ] 10 -0.5 0.5 0 false DrawText
2403 grestore
2404 gsave
2405 252 217 moveto
2406 252 211 lineto
2407 0 setlinecap
2408 1 setlinejoin
2409 1 setlinewidth
2410 [] 0 setdash
2411 1.000 0.000 0.000 setrgbcolor AdjustColor
2412 stroke
2413 grestore
2414 gsave
2415 252 211 moveto
2416 336 211 lineto
2417 0 setlinecap
2418 1 setlinejoin
2419 1 setlinewidth
2420 [] 0 setdash
2421 1.000 0.000 0.000 setrgbcolor AdjustColor
2422 stroke
2423 grestore
2424 gsave
2425 336 211 moveto
2426 336 607 lineto
2427 0 setlinecap
2428 1 setlinejoin
2429 1 setlinewidth
2430 [] 0 setdash
2431 1.000 0.000 0.000 setrgbcolor AdjustColor
2432 stroke
2433 grestore
2434 gsave
2435 84 217 moveto
2436 84 205 lineto
2437 0 setlinecap
2438 1 setlinejoin
2439 1 setlinewidth
2440 [] 0 setdash
2441 0.000 0.000 1.000 setrgbcolor AdjustColor
2442 stroke
2443 grestore
2444 gsave
2445 168 217 moveto
2446 168 205 lineto
2447 0 setlinecap
2448 1 setlinejoin
2449 1 setlinewidth
2450 [] 0 setdash
2451 0.000 0.000 1.000 setrgbcolor AdjustColor
2452 stroke
2453 grestore
2454 gsave
2455 252 217 moveto
2456 252 205 lineto
2457 0 setlinecap
2458 1 setlinejoin
2459 1 setlinewidth
2460 [] 0 setdash
2461 0.000 0.000 1.000 setrgbcolor AdjustColor
2462 stroke
2463 grestore
2464 gsave
2465 168 205 moveto
2466 168 199 lineto
2467 0 setlinecap
2468 1 setlinejoin
2469 1 setlinewidth
2470 [] 0 setdash
2471 1.000 0.000 0.000 setrgbcolor AdjustColor
2472 stroke
2473 grestore
2474 gsave
2475 168 199 moveto
2476 336 199 lineto
2477 0 setlinecap
2478 1 setlinejoin
2479 1 setlinewidth
2480 [] 0 setdash
2481 1.000 0.000 0.000 setrgbcolor AdjustColor
2482 stroke
2483 grestore
2484 gsave
2485 336 199 moveto
2486 336 607 lineto
2487 0 setlinecap
2488 1 setlinejoin
2489 1 setlinewidth
2490 [] 0 setdash
2491 1.000 0.000 0.000 setrgbcolor AdjustColor
2492 stroke
2493 grestore
2494 gsave
2495 84 205 moveto
2496 84 193 lineto
2497 0 setlinecap
2498 1 setlinejoin
2499 1 setlinewidth
2500 [] 0 setdash
2501 0.000 0.000 1.000 setrgbcolor AdjustColor
2502 stroke
2503 grestore
2504 gsave
2505 168 205 moveto
2506 168 193 lineto
2507 0 setlinecap
2508 1 setlinejoin
2509 1 setlinewidth
2510 [] 0 setdash
2511 0.000 0.000 1.000 setrgbcolor AdjustColor
2512 stroke
2513 grestore
2514 gsave
2515 252 205 moveto
2516 252 193 lineto
2517 0 setlinecap
2518 1 setlinejoin
2519 1 setlinewidth
2520 [] 0 setdash
2521 0.000 0.000 1.000 setrgbcolor AdjustColor
2522 stroke
2523 grestore
2524 gsave
2525 64 205 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
2526 1.000 1.000 0.000 setrgbcolor AdjustColor
2527 fill
2528 64 205 moveto 40 0 rlineto 0 -11.9999999999999 rlineto -40 0 rlineto closepath
2529 0 setlinejoin 2 setlinecap
2530 1 setlinewidth
2531 [] 0 setdash
2532 1.000 0.000 0.000 setrgbcolor AdjustColor
2533 stroke
2534 grestore
2535 gsave
2536 /Courier-Bold findfont 8 scalefont ISOEncode setfont
2537 0.000 0.000 0.000 setrgbcolor AdjustColor
2538 84 199 [
2539 [(273)]
2540 ] 10 -0.5 0.5 0 false DrawText
2541 grestore
2542 gsave
2543 84 193 moveto
2544 84 187 lineto
2545 0 setlinecap
2546 1 setlinejoin
2547 1 setlinewidth
2548 [] 0 setdash
2549 1.000 0.000 0.000 setrgbcolor AdjustColor
2550 stroke
2551 grestore
2552 gsave
2553 84 187 moveto
2554 336 187 lineto
2555 0 setlinecap
2556 1 setlinejoin
2557 1 setlinewidth
2558 [] 0 setdash
2559 1.000 0.000 0.000 setrgbcolor AdjustColor
2560 stroke
2561 grestore
2562 gsave
2563 336 187 moveto
2564 336 607 lineto
2565 0 setlinecap
2566 1 setlinejoin
2567 1 setlinewidth
2568 [] 0 setdash
2569 1.000 0.000 0.000 setrgbcolor AdjustColor
2570 stroke
2571 grestore
2572 gsave
2573 84 193 moveto
2574 84 187 lineto
2575 0 setlinecap
2576 1 setlinejoin
2577 1 setlinewidth
2578 [] 0 setdash
2579 1.000 0.000 0.000 setrgbcolor AdjustColor
2580 stroke
2581 grestore
2582 gsave
2583 84 187 moveto
2584 336 187 lineto
2585 0 setlinecap
2586 1 setlinejoin
2587 1 setlinewidth
2588 [] 0 setdash
2589 1.000 0.000 0.000 setrgbcolor AdjustColor
2590 stroke
2591 grestore
2592 gsave
2593 336 187 moveto
2594 336 607 lineto
2595 0 setlinecap
2596 1 setlinejoin
2597 1 setlinewidth
2598 [] 0 setdash
2599 1.000 0.000 0.000 setrgbcolor AdjustColor
2600 stroke
2601 grestore
2602 gsave
2603 84 193 moveto
2604 84 187 lineto
2605 0 setlinecap
2606 1 setlinejoin
2607 1 setlinewidth
2608 [] 0 setdash
2609 1.000 0.000 0.000 setrgbcolor AdjustColor
2610 stroke
2611 grestore
2612 gsave
2613 84 187 moveto
2614 336 187 lineto
2615 0 setlinecap
2616 1 setlinejoin
2617 1 setlinewidth
2618 [] 0 setdash
2619 1.000 0.000 0.000 setrgbcolor AdjustColor
2620 stroke
2621 grestore
2622 gsave
2623 336 187 moveto
2624 336 607 lineto
2625 0 setlinecap
2626 1 setlinejoin
2627 1 setlinewidth
2628 [] 0 setdash
2629 1.000 0.000 0.000 setrgbcolor AdjustColor
2630 stroke
2631 grestore
2632 restore showpage
2633
2634 %%Trailer
2635 end
2636 %%EOF