Subversion Repositories f9daq

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
56 f9daq 1
%!PS-Adobe-3.0 EPSF-3.0
2
%%Creator: Tk Canvas Widget
3
%%For: Samo Korpar,,,
4
%%Title: Window .eps
5
%%CreationDate: Thu Feb  7 06:20:06 2013
6
%%BoundingBox: 79 234 533 558
7
%%Pages: 1
8
%%DocumentData: Clean7Bit
9
%%Orientation: Portrait
10
%%EndComments
11
 
12
%%BeginProlog
13
/CurrentEncoding [
14
/space/space/space/space/space/space/space/space
15
/space/space/space/space/space/space/space/space
16
/space/space/space/space/space/space/space/space
17
/space/space/space/space/space/space/space/space
18
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
19
/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
20
/zero/one/two/three/four/five/six/seven
21
/eight/nine/colon/semicolon/less/equal/greater/question
22
/at/A/B/C/D/E/F/G
23
/H/I/J/K/L/M/N/O
24
/P/Q/R/S/T/U/V/W
25
/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore
26
/grave/a/b/c/d/e/f/g
27
/h/i/j/k/l/m/n/o
28
/p/q/r/s/t/u/v/w
29
/x/y/z/braceleft/bar/braceright/asciitilde/space
30
/space/space/space/space/space/space/space/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/exclamdown/cent/sterling/currency/yen/brokenbar/section
35
/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron
36
/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
37
/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
38
/space/space/space/space/space/space/space/space
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
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
45
/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
46
] def
47
 
48
50 dict begin
49
% This is a standard prolog for Postscript generated by Tk's canvas
50
% widget.
51
% RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $
52
 
53
% The definitions below just define all of the variables used in
54
% any of the procedures here.  This is needed for obscure reasons
55
% explained on p. 716 of the Postscript manual (Section H.2.7,
56
% "Initializing Variables," in the section on Encapsulated Postscript).
57
 
58
/baseline 0 def
59
/stipimage 0 def
60
/height 0 def
61
/justify 0 def
62
/lineLength 0 def
63
/spacing 0 def
64
/stipple 0 def
65
/strings 0 def
66
/xoffset 0 def
67
/yoffset 0 def
68
/tmpstip null def
69
 
70
 
71
/cstringshow {
72
    {
73
	dup type /stringtype eq
74
	{ show } { glyphshow }
75
	ifelse
76
    }
77
    forall
78
} bind def
79
 
80
 
81
 
82
/cstringwidth {
83
 
84
    {
85
	dup type /stringtype eq
86
	{ stringwidth } {
87
	    currentfont /Encoding get exch 1 exch put (\001) stringwidth
88
        }
89
	ifelse
90
	exch 3 1 roll add 3 1 roll add exch
91
    }
92
    forall
93
} bind def
94
 
95
% font ISOEncode font
96
% This procedure changes the encoding of a font from the default
97
% Postscript encoding to current system encoding.  It's typically invoked just
98
% before invoking "setfont".  The body of this procedure comes from
99
% Section 5.6.1 of the Postscript book.
100
 
101
/ISOEncode {
102
    dup length dict begin
103
	{1 index /FID ne {def} {pop pop} ifelse} forall
104
	/Encoding CurrentEncoding def
105
	currentdict
106
    end
107
 
108
    % I'm not sure why it's necessary to use "definefont" on this new
109
    % font, but it seems to be important; just use the name "Temporary"
110
    % for the font.
111
 
112
    /Temporary exch definefont
113
} bind def
114
 
115
% StrokeClip
116
%
117
% This procedure converts the current path into a clip area under
118
% the assumption of stroking.  It's a bit tricky because some Postscript
119
% interpreters get errors during strokepath for dashed lines.  If
120
% this happens then turn off dashes and try again.
121
 
122
/StrokeClip {
123
    {strokepath} stopped {
124
	(This Postscript printer gets limitcheck overflows when) =
125
	(stippling dashed lines;  lines will be printed solid instead.) =
126
	[] 0 setdash strokepath} if
127
    clip
128
} bind def
129
 
130
% desiredSize EvenPixels closestSize
131
%
132
% The procedure below is used for stippling.  Given the optimal size
133
% of a dot in a stipple pattern in the current user coordinate system,
134
% compute the closest size that is an exact multiple of the device's
135
% pixel size.  This allows stipple patterns to be displayed without
136
% aliasing effects.
137
 
138
/EvenPixels {
139
    % Compute exact number of device pixels per stipple dot.
140
    dup 0 matrix currentmatrix dtransform
141
    dup mul exch dup mul add sqrt
142
 
143
    % Round to an integer, make sure the number is at least 1, and compute
144
    % user coord distance corresponding to this.
145
    dup round dup 1 lt {pop 1} if
146
    exch div mul
147
} bind def
148
 
149
% width height string StippleFill --
150
%
151
% Given a path already set up and a clipping region generated from
152
% it, this procedure will fill the clipping region with a stipple
153
% pattern.  "String" contains a proper image description of the
154
% stipple pattern and "width" and "height" give its dimensions.  Each
155
% stipple dot is assumed to be about one unit across in the current
156
% user coordinate system.  This procedure trashes the graphics state.
157
 
158
/StippleFill {
159
    % The following code is needed to work around a NeWSprint bug.
160
 
161
    /tmpstip 1 index def
162
 
163
    % Change the scaling so that one user unit in user coordinates
164
    % corresponds to the size of one stipple dot.
165
    1 EvenPixels dup scale
166
 
167
    % Compute the bounding box occupied by the path (which is now
168
    % the clipping region), and round the lower coordinates down
169
    % to the nearest starting point for the stipple pattern.  Be
170
    % careful about negative numbers, since the rounding works
171
    % differently on them.
172
 
173
    pathbbox
174
    4 2 roll
175
    5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
176
    6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
177
 
178
    % Stack now: width height string y1 y2 x1 x2
179
    % Below is a doubly-nested for loop to iterate across this area
180
    % in units of the stipple pattern size, going up columns then
181
    % across rows, blasting out a stipple-pattern-sized rectangle at
182
    % each position
183
 
184
    6 index exch {
185
	2 index 5 index 3 index {
186
	    % Stack now: width height string y1 y2 x y
187
 
188
	    gsave
189
	    1 index exch translate
190
	    5 index 5 index true matrix tmpstip imagemask
191
	    grestore
192
	} for
193
	pop
194
    } for
195
    pop pop pop pop pop
196
} bind def
197
 
198
% -- AdjustColor --
199
% Given a color value already set for output by the caller, adjusts
200
% that value to a grayscale or mono value if requested by the CL
201
% variable.
202
 
203
/AdjustColor {
204
    CL 2 lt {
205
	currentgray
206
	CL 0 eq {
207
	    .5 lt {0} {1} ifelse
208
	} if
209
	setgray
210
    } if
211
} bind def
212
 
213
% x y strings spacing xoffset yoffset justify stipple DrawText --
214
% This procedure does all of the real work of drawing text.  The
215
% color and font must already have been set by the caller, and the
216
% following arguments must be on the stack:
217
%
218
% x, y -	Coordinates at which to draw text.
219
% strings -	An array of strings, one for each line of the text item,
220
%		in order from top to bottom.
221
% spacing -	Spacing between lines.
222
% xoffset -	Horizontal offset for text bbox relative to x and y: 0 for
223
%		nw/w/sw anchor, -0.5 for n/center/s, and -1.0 for ne/e/se.
224
% yoffset -	Vertical offset for text bbox relative to x and y: 0 for
225
%		nw/n/ne anchor, +0.5 for w/center/e, and +1.0 for sw/s/se.
226
% justify -	0 for left justification, 0.5 for center, 1 for right justify.
227
% stipple -	Boolean value indicating whether or not text is to be
228
%		drawn in stippled fashion.  If text is stippled,
229
%		procedure StippleText must have been defined to call
230
%		StippleFill in the right way.
231
%
232
% Also, when this procedure is invoked, the color and font must already
233
% have been set for the text.
234
 
235
/DrawText {
236
    /stipple exch def
237
    /justify exch def
238
    /yoffset exch def
239
    /xoffset exch def
240
    /spacing exch def
241
    /strings exch def
242
 
243
    % First scan through all of the text to find the widest line.
244
 
245
    /lineLength 0 def
246
    strings {
247
	cstringwidth pop
248
	dup lineLength gt {/lineLength exch def} {pop} ifelse
249
	newpath
250
    } forall
251
 
252
    % Compute the baseline offset and the actual font height.
253
 
254
 
255
    pathbbox dup /baseline exch def
256
    exch pop exch sub /height exch def pop
257
    newpath
258
 
259
    % Translate coordinates first so that the origin is at the upper-left
260
    % corner of the text's bounding box. Remember that x and y for
261
    % positioning are still on the stack.
262
 
263
    translate
264
    lineLength xoffset mul
265
    strings length 1 sub spacing mul height add yoffset mul translate
266
 
267
    % Now use the baseline and justification information to translate so
268
    % that the origin is at the baseline and positioning point for the
269
    % first line of text.
270
 
271
    justify lineLength mul baseline neg translate
272
 
273
    % Iterate over each of the lines to output it.  For each line,
274
    % compute its width again so it can be properly justified, then
275
    % display it.
276
 
277
    strings {
278
	dup cstringwidth pop
279
	justify neg mul 0 moveto
280
	stipple {
281
 
282
 
283
	    % The text is stippled, so turn it into a path and print
284
	    % by calling StippledText, which in turn calls StippleFill.
285
	    % Unfortunately, many Postscript interpreters will get
286
	    % overflow errors if we try to do the whole string at
287
	    % once, so do it a character at a time.
288
 
289
	    gsave
290
	    /char (X) def
291
	    {
292
		dup type /stringtype eq {
293
		    % This segment is a string.
294
		    {
295
		        char 0 3 -1 roll put
296
		        currentpoint
297
		        gsave
298
		        char true charpath clip StippleText
299
		        grestore
300
		        char stringwidth translate
301
		        moveto
302
		    } forall
303
		} {
304
		    % This segment is glyph name
305
		    % Temporary override
306
		    currentfont /Encoding get exch 1 exch put
307
		    currentpoint
308
		    gsave (\001) true charpath clip StippleText
309
		    grestore
310
	            (\001) stringwidth translate
311
		    moveto
312
		} ifelse
313
	    } forall
314
	    grestore
315
	} {cstringshow} ifelse
316
 
317
    } forall
318
} bind def
319
 
320
%%EndProlog
321
%%BeginSetup
322
/CL 2 def
323
%%EndSetup
324
 
325
%%Page: 1 1
326
save
327
306.0 396.0 translate
328
0.4049 0.4049 scale
329
-560 -400 translate
330
 
331
gsave
332
 
333
% including file "/usr//lib/blt2.4/bltCanvEps.pro"
334
 
335
%
336
% PostScript encapulator prolog file of the BLT "eps" canvas item.
337
%
338
% Copyright 1991-1997 Bell Labs Innovations for Lucent Technologies.
339
%
340
% Permission to use, copy, modify, and distribute this software and its
341
% documentation for any purpose and without fee is hereby granted, provided
342
% that the above copyright notice appear in all copies and that both that the
343
% copyright notice and warranty disclaimer appear in supporting documentation,
344
% and that the names of Lucent Technologies any of their entities not be used
345
% in advertising or publicity pertaining to distribution of the software
346
% without specific, written prior permission.
347
%
348
% Lucent Technologies disclaims all warranties with regard to this software,
349
% including all implied warranties of merchantability and fitness.  In no event
350
% shall Lucent Technologies be liable for any special, indirect or
351
% consequential damages or any damages whatsoever resulting from loss of use,
352
% data or profits, whether in an action of contract, negligence or other
353
% tortuous action, arising out of or in connection with the use or performance
354
% of this software.
355
%
356
 
357
%
358
% The definitions of the next two macros are from Appendix H of
359
% Adobe's "PostScript Language Reference Manual" pp. 709-736.
360
%
361
 
362
% Prepare for EPS file
363
 
364
/BeginEPSF {
365
  /beforeInclusionState save def
366
  /dictCount countdictstack def		% Save the # objects in the dictionary
367
  /opCount count 1 sub def		% Count object on operator stack
368
  userdict begin			% Make "userdict" the current
369
					% dictionary
370
    /showpage {} def			% Redefine showpage to be null
371
 
372
 
373
    1 setlinewidth
374
 
375
    10 setmiterlimit
376
    [] 0 setdash
377
    newpath
378
    /languagellevel where {
379
      pop languagelevel
380
      1 ne {
381
	false setstrokeadjust false setoverprint
382
      } if
383
    } if
384
    % note: no "end"
385
} bind def
386
 
387
/EndEPSF { %def
388
  count opCount sub {
389
    pop
390
  } repeat
391
  countdictstack dictCount sub {
392
  end					% Clean up dictionary stack
393
  } repeat
394
  beforeInclusionState restore
395
} bind def
396
 
397
 
398
%
399
% Set up a clip region based upon a bounding box (x1, y1, x2, y2).
400
%
401
/SetClipRegion {
402
  % Stack: x1 y1 x2 y2
403
  newpath
404
  4 2 roll moveto
405
  1 index 0 rlineto
406
 
407
  neg 0 rlineto
408
  closepath
409
  clip
410
  newpath
411
} def
412
 
413
BeginEPSF
414
4 496 translate
415
1 1 scale
416
-96 -246 translate
417
96 246 516 546 SetClipRegion
418
%% including "g1.eps"
419
 
420
 
421
 
422
%%BeginProlog
423
 
424
%
425
 
426
% PostScript prolog file of the BLT graph widget.
427
 
428
%
429
 
430
% Copyright 1989-1992 Regents of the University of California.
431
 
432
% Permission to use, copy, modify, and distribute this
433
 
434
% software and its documentation for any purpose and without
435
 
436
% fee is hereby granted, provided that the above copyright
437
 
438
% notice appear in all copies.  The University of California
439
 
440
% makes no representations about the suitability of this
441
 
442
% software for any purpose.  It is provided "as is" without
443
 
444
% express or implied warranty.
445
 
446
%
447
 
448
% Copyright 1991-1997 Bell Labs Innovations for Lucent Technologies.
449
 
450
%
451
 
452
% Permission to use, copy, modify, and distribute this software and its
453
 
454
% documentation for any purpose and without fee is hereby granted, provided
455
 
456
% that the above copyright notice appear in all copies and that both that the
457
 
458
% copyright notice and warranty disclaimer appear in supporting documentation,
459
 
460
% and that the names of Lucent Technologies any of their entities not be used
461
 
462
% in advertising or publicity pertaining to distribution of the software
463
 
464
% without specific, written prior permission.
465
 
466
%
467
 
468
% Lucent Technologies disclaims all warranties with regard to this software,
469
 
470
% including all implied warranties of merchantability and fitness.  In no event
471
 
472
% shall Lucent Technologies be liable for any special, indirect or
473
 
474
% consequential damages or any damages whatsoever resulting from loss of use,
475
 
476
% data or profits, whether in an action of contract, negligence or other
477
 
478
% tortuous action, arising out of or in connection with the use or performance
479
 
480
% of this software.
481
 
482
%
483
 
484
 
485
 
486
200 dict begin
487
 
488
 
489
 
490
/BaseRatio 1.3467736870885982 def	% Ratio triangle base / symbol size
491
 
492
/BgColorProc 0 def			% Background color routine (symbols)
493
 
494
/DrawSymbolProc 0 def			% Routine to draw symbol outline/fill
495
 
496
/StippleProc 0 def			% Stipple routine (bar segments)
497
 
498
/DashesProc 0 def			% Dashes routine (line segments)
499
 
500
 
501
 
502
% Define the array ISOLatin1Encoding (which specifies how characters are
503
 
504
% encoded for ISO-8859-1 fonts), if it isn't already present (Postscript
505
 
506
% level 2 is supposed to define it, but level 1 doesn't).
507
 
508
 
509
 
510
systemdict /ISOLatin1Encoding known not {
511
 
512
  /ISOLatin1Encoding [
513
 
514
    /space /space /space /space /space /space /space /space
515
 
516
    /space /space /space /space /space /space /space /space
517
 
518
    /space /space /space /space /space /space /space /space
519
 
520
    /space /space /space /space /space /space /space /space
521
 
522
    /space /exclam /quotedbl /numbersign /dollar /percent /ampersand
523
 
524
    /quoteright
525
 
526
    /parenleft /parenright /asterisk /plus /comma /minus /period /slash
527
 
528
    /zero /one /two /three /four /five /six /seven
529
 
530
    /eight /nine /colon /semicolon /less /equal /greater /question
531
 
532
    /at /A /B /C /D /E /F /G
533
 
534
    /H /I /J /K /L /M /N /O
535
 
536
    /P /Q /R /S /T /U /V /W
537
 
538
    /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
539
 
540
    /quoteleft /a /b /c /d /e /f /g
541
 
542
    /h /i /j /k /l /m /n /o
543
 
544
    /p /q /r /s /t /u /v /w
545
 
546
    /x /y /z /braceleft /bar /braceright /asciitilde /space
547
 
548
    /space /space /space /space /space /space /space /space
549
 
550
    /space /space /space /space /space /space /space /space
551
 
552
    /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
553
 
554
    /dieresis /space /ring /cedilla /space /hungarumlaut /ogonek /caron
555
 
556
    /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
557
 
558
    /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen
559
 
560
    /registered /macron
561
 
562
    /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph
563
 
564
    /periodcentered
565
 
566
    /cedillar /onesuperior /ordmasculine /guillemotright /onequarter
567
 
568
    /onehalf /threequarters /questiondown
569
 
570
    /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
571
 
572
    /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex
573
 
574
    /Idieresis
575
 
576
    /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
577
 
578
    /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn
579
 
580
    /germandbls
581
 
582
    /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
583
 
584
    /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex
585
 
586
    /idieresis
587
 
588
    /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
589
 
590
    /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn
591
 
592
    /ydieresis
593
 
594
  ] def
595
 
596
} if
597
 
598
 
599
 
600
% font ISOEncode font
601
 
602
% This procedure changes the encoding of a font from the default
603
 
604
% Postscript encoding to ISOLatin1.  It is typically invoked just
605
 
606
% before invoking "setfont".  The body of this procedure comes from
607
 
608
% Section 5.6.1 of the Postscript book.
609
 
610
 
611
 
612
/ISOEncode {
613
 
614
  dup length dict
615
 
616
  begin
617
 
618
    {1 index /FID ne {def} {pop pop} ifelse} forall
619
 
620
    /Encoding ISOLatin1Encoding def
621
 
622
    currentdict
623
 
624
  end
625
 
626
 
627
 
628
  % I'm not sure why it's necessary to use "definefont" on this new
629
 
630
  % font, but it seems to be important; just use the name "Temporary"
631
 
632
  % for the font.
633
 
634
 
635
 
636
  /Temporary exch definefont
637
 
638
} bind def
639
 
640
 
641
 
642
/Stroke {
643
 
644
  gsave
645
 
646
    stroke
647
 
648
  grestore
649
 
650
} def
651
 
652
 
653
 
654
/Fill {
655
 
656
  gsave
657
 
658
    fill
659
 
660
  grestore
661
 
662
} def
663
 
664
 
665
 
666
/SetFont {
667
 
668
  % Stack: pointSize fontName
669
 
670
  findfont exch scalefont ISOEncode setfont
671
 
672
} def
673
 
674
 
675
 
676
/Box {
677
 
678
  % Stack: x y width height
679
 
680
  newpath
681
 
682
  exch 4 2 roll moveto
683
 
684
  dup 0 rlineto
685
 
686
  exch 0 exch rlineto
687
 
688
  neg 0 rlineto
689
 
690
  closepath
691
 
692
} def
693
 
694
 
695
 
696
/SetFgColor {
697
 
698
  % Stack: red green blue
699
 
700
  CL 0 eq {
701
 
702
    pop pop pop 0 0 0
703
 
704
  } if
705
 
706
  setrgbcolor
707
 
708
  CL 1 eq {
709
 
710
    currentgray setgray
711
 
712
  } if
713
 
714
} def
715
 
716
 
717
 
718
/SetBgColor {
719
 
720
  % Stack: red green blue
721
 
722
  CL 0 eq {
723
 
724
    pop pop pop 1 1 1
725
 
726
  } if
727
 
728
  setrgbcolor
729
 
730
  CL 1 eq {
731
 
732
    currentgray setgray
733
 
734
  } if
735
 
736
} def
737
 
738
 
739
 
740
% The next two definitions are taken from "$tk_library/prolog.ps"
741
 
742
 
743
 
744
% desiredSize EvenPixels closestSize
745
 
746
%
747
 
748
% The procedure below is used for stippling.  Given the optimal size
749
 
750
% of a dot in a stipple pattern in the current user coordinate system,
751
 
752
% compute the closest size that is an exact multiple of the device's
753
 
754
% pixel size.  This allows stipple patterns to be displayed without
755
 
756
% aliasing effects.
757
 
758
 
759
 
760
/EvenPixels {
761
 
762
  % Compute exact number of device pixels per stipple dot.
763
 
764
  dup 0 matrix currentmatrix dtransform
765
 
766
  dup mul exch dup mul add sqrt
767
 
768
 
769
 
770
  % Round to an integer, make sure the number is at least 1, and compute
771
 
772
  % user coord distance corresponding to this.
773
 
774
  dup round dup 1 lt {pop 1} if
775
 
776
  exch div mul
777
 
778
} bind def
779
 
780
 
781
 
782
% width height string filled StippleFill --
783
 
784
%
785
 
786
% Given a path and other graphics information already set up, this
787
 
788
% procedure will fill the current path in a stippled fashion.  "String"
789
 
790
% contains a proper image description of the stipple pattern and
791
 
792
% "width" and "height" give its dimensions.  If "filled" is true then
793
 
794
% it means that the area to be stippled is gotten by filling the
795
 
796
% current path (e.g. the interior of a polygon); if it's false, the
797
 
798
% area is gotten by stroking the current path (e.g. a wide line).
799
 
800
% Each stipple dot is assumed to be about one unit across in the
801
 
802
% current user coordinate system.
803
 
804
 
805
 
806
% width height string StippleFill --
807
 
808
%
809
 
810
% Given a path already set up and a clipping region generated from
811
 
812
% it, this procedure will fill the clipping region with a stipple
813
 
814
% pattern.  "String" contains a proper image description of the
815
 
816
% stipple pattern and "width" and "height" give its dimensions.  Each
817
 
818
% stipple dot is assumed to be about one unit across in the current
819
 
820
% user coordinate system.  This procedure trashes the graphics state.
821
 
822
 
823
 
824
/StippleFill {
825
 
826
    % The following code is needed to work around a NeWSprint bug.
827
 
828
 
829
 
830
    /tmpstip 1 index def
831
 
832
 
833
 
834
    % Change the scaling so that one user unit in user coordinates
835
 
836
    % corresponds to the size of one stipple dot.
837
 
838
    1 EvenPixels dup scale
839
 
840
 
841
 
842
    % Compute the bounding box occupied by the path (which is now
843
 
844
    % the clipping region), and round the lower coordinates down
845
 
846
    % to the nearest starting point for the stipple pattern.  Be
847
 
848
    % careful about negative numbers, since the rounding works
849
 
850
    % differently on them.
851
 
852
 
853
 
854
    pathbbox
855
 
856
    4 2 roll
857
 
858
    5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
859
 
860
    6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
861
 
862
 
863
 
864
    % Stack now: width height string y1 y2 x1 x2
865
 
866
    % Below is a doubly-nested for loop to iterate across this area
867
 
868
    % in units of the stipple pattern size, going up columns then
869
 
870
    % across rows, blasting out a stipple-pattern-sized rectangle at
871
 
872
    % each position
873
 
874
 
875
 
876
    6 index exch {
877
 
878
	2 index 5 index 3 index {
879
 
880
	    % Stack now: width height string y1 y2 x y
881
 
882
 
883
 
884
	    gsave
885
 
886
	    1 index exch translate
887
 
888
	    5 index 5 index true matrix tmpstip imagemask
889
 
890
	    grestore
891
 
892
	} for
893
 
894
	pop
895
 
896
    } for
897
 
898
    pop pop pop pop pop
899
 
900
} bind def
901
 
902
 
903
 
904
 
905
 
906
/LS {	% Stack: x1 y1 x2 y2
907
 
908
  newpath 4 2 roll moveto lineto stroke
909
 
910
} def
911
 
912
 
913
 
914
/EndText {
915
 
916
  %Stack :
917
 
918
  grestore
919
 
920
} def
921
 
922
 
923
 
924
/BeginText {
925
 
926
  %Stack :  w h theta centerX centerY
927
 
928
  gsave
929
 
930
    % Translate the origin to the center of bounding box and rotate
931
 
932
    translate neg rotate
933
 
934
    % Translate back to the origin of the text region
935
 
936
    -0.5 mul exch -0.5 mul exch translate
937
 
938
} def
939
 
940
 
941
 
942
/DrawAdjText {
943
 
944
  %Stack : str strWidth x y
945
 
946
  moveto				% Go to the text position
947
 
948
  exch dup dup 4 2 roll
949
 
950
 
951
 
952
  % Adjust character widths to get desired overall string width
953
 
954
  % adjust X = (desired width - real width)/#chars
955
 
956
 
957
 
958
  stringwidth pop sub exch
959
 
960
  length div
961
 
962
 
963
 
964
 
965
 
966
  % Flip back the scale so that the string is not drawn in reverse
967
 
968
 
969
 
970
  gsave
971
 
972
    1 -1 scale
973
 
974
    ashow
975
 
976
  grestore
977
 
978
} def
979
 
980
 
981
 
982
/DrawBitmap {
983
 
984
  % Stack: ?bgColorProc? boolean centerX centerY width height theta imageStr
985
 
986
  gsave
987
 
988
    6 -2 roll translate			% Translate to center of bounding box
989
 
990
    4 1 roll neg rotate			% Rotate by theta
991
 
992
 
993
 
994
    % Find upperleft corner of bounding box
995
 
996
 
997
 
998
    2 copy -.5 mul exch -.5 mul exch translate
999
 
1000
    2 copy scale			% Make pixel unit scale
1001
 
1002
    newpath
1003
 
1004
 
1005
 
1006
    closepath
1007
 
1008
 
1009
 
1010
    % Fill rectangle with background color
1011
 
1012
 
1013
 
1014
    4 -1 roll {
1015
 
1016
      gsave
1017
 
1018
	4 -1 roll exec fill
1019
 
1020
      grestore
1021
 
1022
    } if
1023
 
1024
 
1025
 
1026
    % Paint the image string into the unit rectangle
1027
 
1028
 
1029
 
1030
    2 copy true 3 -1 roll 0 0 5 -1 roll 0 0 6 array astore 5 -1 roll
1031
 
1032
    imagemask
1033
 
1034
  grestore
1035
 
1036
} def
1037
 
1038
 
1039
 
1040
% Symbols:
1041
 
1042
 
1043
 
1044
% Skinny-cross
1045
 
1046
/Sc {
1047
 
1048
  % Stack: x y symbolSize
1049
 
1050
  gsave
1051
 
1052
    3 -2 roll translate 45 rotate
1053
 
1054
 
1055
 
1056
  grestore
1057
 
1058
} def
1059
 
1060
 
1061
 
1062
% Skinny-plus
1063
 
1064
/Sp {
1065
 
1066
  % Stack: x y symbolSize
1067
 
1068
  gsave
1069
 
1070
    3 -2 roll translate
1071
 
1072
    2 idiv
1073
 
1074
    dup 2 copy
1075
 
1076
    newpath neg 0 moveto 0 lineto
1077
 
1078
    DrawSymbolProc
1079
 
1080
    newpath neg 0 exch moveto 0 exch lineto
1081
 
1082
    DrawSymbolProc
1083
 
1084
  grestore
1085
 
1086
} def
1087
 
1088
 
1089
 
1090
% Cross
1091
 
1092
/Cr {
1093
 
1094
  % Stack: x y symbolSize
1095
 
1096
  gsave
1097
 
1098
    3 -2 roll translate 45 rotate
1099
 
1100
 
1101
 
1102
  grestore
1103
 
1104
} def
1105
 
1106
 
1107
 
1108
% Plus
1109
 
1110
/Pl {
1111
 
1112
  % Stack: x y symbolSize
1113
 
1114
  gsave
1115
 
1116
    3 -2 roll translate
1117
 
1118
    dup 2 idiv
1119
 
1120
    exch 6 idiv
1121
 
1122
 
1123
 
1124
    %
1125
 
1126
    %          2   3		The plus/cross symbol is a
1127
 
1128
    %				closed polygon of 12 points.
1129
 
1130
    %      0   1   4    5	The diagram to the left
1131
 
1132
    %           x,y		represents the positions of
1133
 
1134
    %     11  10   7    6	the points which are computed
1135
 
1136
    %				below.
1137
 
1138
    %          9   8
1139
 
1140
    %
1141
 
1142
 
1143
 
1144
    newpath
1145
 
1146
    2 copy exch neg exch neg moveto dup neg dup lineto
1147
 
1148
    2 copy neg exch neg lineto 2 copy exch neg lineto
1149
 
1150
    dup dup neg lineto 2 copy neg lineto 2 copy lineto
1151
 
1152
    dup dup lineto 2 copy exch lineto 2 copy neg exch lineto
1153
 
1154
    dup dup neg exch lineto exch neg exch lineto
1155
 
1156
    closepath
1157
 
1158
    DrawSymbolProc
1159
 
1160
  grestore
1161
 
1162
} def
1163
 
1164
 
1165
 
1166
% Circle
1167
 
1168
/Ci {
1169
 
1170
  % Stack: x y symbolSize
1171
 
1172
  gsave
1173
 
1174
    3 copy pop
1175
 
1176
    moveto newpath
1177
 
1178
    2 div 0 360 arc
1179
 
1180
    closepath DrawSymbolProc
1181
 
1182
  grestore
1183
 
1184
} def
1185
 
1186
 
1187
 
1188
% Square
1189
 
1190
/Sq {
1191
 
1192
  % Stack: x y symbolSize
1193
 
1194
  gsave
1195
 
1196
    dup dup 2 div dup
1197
 
1198
    6 -1 roll exch sub exch
1199
 
1200
    5 -1 roll exch sub 4 -2 roll Box
1201
 
1202
    DrawSymbolProc
1203
 
1204
  grestore
1205
 
1206
} def
1207
 
1208
 
1209
 
1210
% Line
1211
 
1212
/Li {
1213
 
1214
  % Stack: x y symbolSize
1215
 
1216
  gsave
1217
 
1218
    3 1 roll exch 3 -1 roll 2 div 3 copy
1219
 
1220
    newpath
1221
 
1222
    sub exch moveto add exch lineto
1223
 
1224
    stroke
1225
 
1226
  grestore
1227
 
1228
} def
1229
 
1230
 
1231
 
1232
% Diamond
1233
 
1234
/Di {
1235
 
1236
  % Stack: x y symbolSize
1237
 
1238
  gsave
1239
 
1240
    3 1 roll translate 45 rotate 0 0 3 -1 roll Sq
1241
 
1242
  grestore
1243
 
1244
} def
1245
 
1246
 
1247
 
1248
% Triangle
1249
 
1250
/Tr {
1251
 
1252
  % Stack: x y symbolSize
1253
 
1254
  gsave
1255
 
1256
    3 -2 roll translate
1257
 
1258
    BaseRatio mul 0.5 mul		% Calculate 1/2 base
1259
 
1260
    dup 0 exch 30 cos mul		% h1 = height above center point
1261
 
1262
    neg					% b2 0 -h1
1263
 
1264
    newpath moveto			% point 1;  b2
1265
 
1266
    dup 30 sin 30 cos div mul		% h2 = height below center point
1267
 
1268
    2 copy lineto			% point 2;  b2 h2
1269
 
1270
    exch neg exch lineto		%
1271
 
1272
    closepath
1273
 
1274
    DrawSymbolProc
1275
 
1276
  grestore
1277
 
1278
} def
1279
 
1280
 
1281
 
1282
% Arrow
1283
 
1284
/Ar {
1285
 
1286
  % Stack: x y symbolSize
1287
 
1288
  gsave
1289
 
1290
    3 -2 roll translate
1291
 
1292
    BaseRatio mul 0.5 mul		% Calculate 1/2 base
1293
 
1294
    dup 0 exch 30 cos mul		% h1 = height above center point
1295
 
1296
					% b2 0 h1
1297
 
1298
    newpath moveto			% point 1;  b2
1299
 
1300
    dup 30 sin 30 cos div mul		% h2 = height below center point
1301
 
1302
    neg					% -h2 b2
1303
 
1304
    2 copy lineto			% point 2;  b2 h2
1305
 
1306
    exch neg exch lineto		%
1307
 
1308
    closepath
1309
 
1310
    DrawSymbolProc
1311
 
1312
  grestore
1313
 
1314
} def
1315
 
1316
 
1317
 
1318
% Bitmap
1319
 
1320
/Bm {
1321
 
1322
  % Stack: x y symbolSize
1323
 
1324
  gsave
1325
 
1326
    3 1 roll translate pop DrawSymbolProc
1327
 
1328
  grestore
1329
 
1330
} def
1331
 
1332
 
1333
 
1334
%%EndProlog
1335
 
1336
 
1337
 
1338
%%BeginSetup
1339
 
1340
gsave					% Save the graphics state
1341
 
1342
 
1343
 
1344
% Default line/text style parameters
1345
 
1346
 
1347
 
1348
1 setlinewidth				% width
1349
 
1350
1 setlinejoin				% join
1351
 
1352
 
1353
 
1354
[] 0 setdash				% dashes
1355
 
1356
 
1357
 
1358
/CL 0 def				% Set color level mode
1359
 
1360
 
1361
 
1362
 
1363
 
1364
% Transform coordinate system to use X11 coordinates
1365
 
1366
 
1367
 
1368
% 1. Flip y-axis over by reversing the scale,
1369
 
1370
% 2. Translate the origin to the other side of the page,
1371
 
1372
%    making the origin the upper left corner
1373
 
1374
0.75 -0.748819 scale
1375
 
1376
 
1377
 
1378
 
1379
 
1380
% User defined page layout
1381
 
1382
 
1383
 
1384
% Set color level
1385
 
1386
/CL 2 def
1387
 
1388
 
1389
 
1390
% Set origin
1391
 
1392
128 328 translate
1393
 
1394
 
1395
 
1396
 
1397
 
1398
%%EndSetup
1399
 
1400
 
1401
 
1402
12 /Helvetica-Bold SetFont
1403
 
1404
33 28 515 347 Box
1405
 
1406
 
1407
 
1408
1 1 1 SetBgColor
1409
 
1410
Fill
1411
 
1412
gsave clip
1413
 
1414
 
1415
 
1416
 
1417
 
1418
 
1419
 
1420
0.639216 0.639216 0.639216 SetFgColor
1421
 
1422
1 setlinewidth
1423
 
1424
[  1] 0 setdash
1425
 
1426
/DashesProc {} def
1427
 
1428
35 309.667 moveto
1429
 
1430
 545 309.667 lineto
1431
 
1432
DashesProc stroke
1433
 
1434
35 364 moveto
1435
 
1436
 545 364 lineto
1437
 
1438
DashesProc stroke
1439
 
1440
35 201 moveto
1441
 
1442
 545 201 lineto
1443
 
1444
DashesProc stroke
1445
 
1446
35 255.333 moveto
1447
 
1448
 545 255.333 lineto
1449
 
1450
DashesProc stroke
1451
 
1452
35 92.3333 moveto
1453
 
1454
 545 92.3333 lineto
1455
 
1456
DashesProc stroke
1457
 
1458
35 146.667 moveto
1459
 
1460
 545 146.667 lineto
1461
 
1462
DashesProc stroke
1463
 
1464
35 38 moveto
1465
 
1466
 545 38 lineto
1467
 
1468
DashesProc stroke
1469
 
1470
 
1471
 
1472
% Element "nh1"
1473
 
1474
 
1475
 
1476
0.501961 0.501961 0.501961 SetFgColor
1477
 
1478
43 255 0 109 Box fill
1479
 
1480
 
1481
 
1482
0.501961 0.501961 0.501961 SetFgColor
1483
 
1484
43 353 0 11 Box fill
1485
 
1486
 
1487
 
1488
0.501961 0.501961 0.501961 SetFgColor
1489
 
1490
43 321 0 43 Box fill
1491
 
1492
 
1493
 
1494
0.501961 0.501961 0.501961 SetFgColor
1495
 
1496
43 299 0 65 Box fill
1497
 
1498
 
1499
 
1500
0.501961 0.501961 0.501961 SetFgColor
1501
 
1502
43 321 0 43 Box fill
1503
 
1504
 
1505
 
1506
0.501961 0.501961 0.501961 SetFgColor
1507
 
1508
44 288 0 76 Box fill
1509
 
1510
 
1511
 
1512
0.501961 0.501961 0.501961 SetFgColor
1513
 
1514
44 331 0 33 Box fill
1515
 
1516
 
1517
 
1518
0.501961 0.501961 0.501961 SetFgColor
1519
 
1520
44 299 0 65 Box fill
1521
 
1522
 
1523
 
1524
0.501961 0.501961 0.501961 SetFgColor
1525
 
1526
44 277 0 87 Box fill
1527
 
1528
 
1529
 
1530
0.501961 0.501961 0.501961 SetFgColor
1531
 
1532
45 299 0 65 Box fill
1533
 
1534
 
1535
 
1536
0.501961 0.501961 0.501961 SetFgColor
1537
 
1538
45 288 0 76 Box fill
1539
 
1540
 
1541
 
1542
0.501961 0.501961 0.501961 SetFgColor
1543
 
1544
45 277 0 87 Box fill
1545
 
1546
 
1547
 
1548
0.501961 0.501961 0.501961 SetFgColor
1549
 
1550
45 223 0 141 Box fill
1551
 
1552
 
1553
 
1554
0.501961 0.501961 0.501961 SetFgColor
1555
 
1556
46 277 0 87 Box fill
1557
 
1558
 
1559
 
1560
0.501961 0.501961 0.501961 SetFgColor
1561
 
1562
46 288 0 76 Box fill
1563
 
1564
 
1565
 
1566
0.501961 0.501961 0.501961 SetFgColor
1567
 
1568
46 212 0 152 Box fill
1569
 
1570
 
1571
 
1572
0.501961 0.501961 0.501961 SetFgColor
1573
 
1574
46 234 0 130 Box fill
1575
 
1576
 
1577
 
1578
0.501961 0.501961 0.501961 SetFgColor
1579
 
1580
47 277 0 87 Box fill
1581
 
1582
 
1583
 
1584
0.501961 0.501961 0.501961 SetFgColor
1585
 
1586
47 234 0 130 Box fill
1587
 
1588
 
1589
 
1590
0.501961 0.501961 0.501961 SetFgColor
1591
 
1592
47 179 0 185 Box fill
1593
 
1594
 
1595
 
1596
0.501961 0.501961 0.501961 SetFgColor
1597
 
1598
47 244 0 120 Box fill
1599
 
1600
 
1601
 
1602
0.501961 0.501961 0.501961 SetFgColor
1603
 
1604
48 277 0 87 Box fill
1605
 
1606
 
1607
 
1608
0.501961 0.501961 0.501961 SetFgColor
1609
 
1610
48 136 0 228 Box fill
1611
 
1612
 
1613
 
1614
0.501961 0.501961 0.501961 SetFgColor
1615
 
1616
48 201 0 163 Box fill
1617
 
1618
 
1619
 
1620
0.501961 0.501961 0.501961 SetFgColor
1621
 
1622
48 114 0 250 Box fill
1623
 
1624
 
1625
 
1626
0.501961 0.501961 0.501961 SetFgColor
1627
 
1628
49 244 0 120 Box fill
1629
 
1630
 
1631
 
1632
0.501961 0.501961 0.501961 SetFgColor
1633
 
1634
49 158 0 206 Box fill
1635
 
1636
 
1637
 
1638
0.501961 0.501961 0.501961 SetFgColor
1639
 
1640
49 244 0 120 Box fill
1641
 
1642
 
1643
 
1644
0.501961 0.501961 0.501961 SetFgColor
1645
 
1646
49 212 0 152 Box fill
1647
 
1648
 
1649
 
1650
0.501961 0.501961 0.501961 SetFgColor
1651
 
1652
50 234 0 130 Box fill
1653
 
1654
 
1655
 
1656
0.501961 0.501961 0.501961 SetFgColor
1657
 
1658
50 201 0 163 Box fill
1659
 
1660
 
1661
 
1662
0.501961 0.501961 0.501961 SetFgColor
1663
 
1664
50 81 0 283 Box fill
1665
 
1666
 
1667
 
1668
0.501961 0.501961 0.501961 SetFgColor
1669
 
1670
50 60 0 304 Box fill
1671
 
1672
 
1673
 
1674
0.501961 0.501961 0.501961 SetFgColor
1675
 
1676
51 201 0 163 Box fill
1677
 
1678
 
1679
 
1680
0.501961 0.501961 0.501961 SetFgColor
1681
 
1682
51 60 0 304 Box fill
1683
 
1684
 
1685
 
1686
0.501961 0.501961 0.501961 SetFgColor
1687
 
1688
51 147 0 217 Box fill
1689
 
1690
 
1691
 
1692
0.501961 0.501961 0.501961 SetFgColor
1693
 
1694
51 158 0 206 Box fill
1695
 
1696
 
1697
 
1698
0.501961 0.501961 0.501961 SetFgColor
1699
 
1700
52 212 0 152 Box fill
1701
 
1702
 
1703
 
1704
0.501961 0.501961 0.501961 SetFgColor
1705
 
1706
52 158 0 206 Box fill
1707
 
1708
 
1709
 
1710
0.501961 0.501961 0.501961 SetFgColor
1711
 
1712
52 114 0 250 Box fill
1713
 
1714
 
1715
 
1716
0.501961 0.501961 0.501961 SetFgColor
1717
 
1718
52 114 0 250 Box fill
1719
 
1720
 
1721
 
1722
0.501961 0.501961 0.501961 SetFgColor
1723
 
1724
53 136 0 228 Box fill
1725
 
1726
 
1727
 
1728
0.501961 0.501961 0.501961 SetFgColor
1729
 
1730
53 168 0 196 Box fill
1731
 
1732
 
1733
 
1734
0.501961 0.501961 0.501961 SetFgColor
1735
 
1736
53 168 0 196 Box fill
1737
 
1738
 
1739
 
1740
0.501961 0.501961 0.501961 SetFgColor
1741
 
1742
53 179 0 185 Box fill
1743
 
1744
 
1745
 
1746
0.501961 0.501961 0.501961 SetFgColor
1747
 
1748
54 158 0 206 Box fill
1749
 
1750
 
1751
 
1752
0.501961 0.501961 0.501961 SetFgColor
1753
 
1754
54 168 0 196 Box fill
1755
 
1756
 
1757
 
1758
0.501961 0.501961 0.501961 SetFgColor
1759
 
1760
54 147 0 217 Box fill
1761
 
1762
 
1763
 
1764
0.501961 0.501961 0.501961 SetFgColor
1765
 
1766
54 158 0 206 Box fill
1767
 
1768
 
1769
 
1770
0.501961 0.501961 0.501961 SetFgColor
1771
 
1772
55 223 0 141 Box fill
1773
 
1774
 
1775
 
1776
0.501961 0.501961 0.501961 SetFgColor
1777
 
1778
55 147 0 217 Box fill
1779
 
1780
 
1781
 
1782
0.501961 0.501961 0.501961 SetFgColor
1783
 
1784
55 201 0 163 Box fill
1785
 
1786
 
1787
 
1788
0.501961 0.501961 0.501961 SetFgColor
1789
 
1790
55 147 0 217 Box fill
1791
 
1792
 
1793
 
1794
0.501961 0.501961 0.501961 SetFgColor
1795
 
1796
56 158 0 206 Box fill
1797
 
1798
 
1799
 
1800
0.501961 0.501961 0.501961 SetFgColor
1801
 
1802
56 168 0 196 Box fill
1803
 
1804
 
1805
 
1806
0.501961 0.501961 0.501961 SetFgColor
1807
 
1808
56 168 0 196 Box fill
1809
 
1810
 
1811
 
1812
0.501961 0.501961 0.501961 SetFgColor
1813
 
1814
56 103 0 261 Box fill
1815
 
1816
 
1817
 
1818
0.501961 0.501961 0.501961 SetFgColor
1819
 
1820
57 125 0 239 Box fill
1821
 
1822
 
1823
 
1824
0.501961 0.501961 0.501961 SetFgColor
1825
 
1826
57 168 0 196 Box fill
1827
 
1828
 
1829
 
1830
0.501961 0.501961 0.501961 SetFgColor
1831
 
1832
57 125 0 239 Box fill
1833
 
1834
 
1835
 
1836
0.501961 0.501961 0.501961 SetFgColor
1837
 
1838
57 158 0 206 Box fill
1839
 
1840
 
1841
 
1842
0.501961 0.501961 0.501961 SetFgColor
1843
 
1844
58 38 0 326 Box fill
1845
 
1846
 
1847
 
1848
0.501961 0.501961 0.501961 SetFgColor
1849
 
1850
58 190 0 174 Box fill
1851
 
1852
 
1853
 
1854
0.501961 0.501961 0.501961 SetFgColor
1855
 
1856
58 179 0 185 Box fill
1857
 
1858
 
1859
 
1860
0.501961 0.501961 0.501961 SetFgColor
1861
 
1862
58 190 0 174 Box fill
1863
 
1864
 
1865
 
1866
0.501961 0.501961 0.501961 SetFgColor
1867
 
1868
59 201 0 163 Box fill
1869
 
1870
 
1871
 
1872
0.501961 0.501961 0.501961 SetFgColor
1873
 
1874
59 179 0 185 Box fill
1875
 
1876
 
1877
 
1878
0.501961 0.501961 0.501961 SetFgColor
1879
 
1880
59 147 0 217 Box fill
1881
 
1882
 
1883
 
1884
0.501961 0.501961 0.501961 SetFgColor
1885
 
1886
59 179 0 185 Box fill
1887
 
1888
 
1889
 
1890
0.501961 0.501961 0.501961 SetFgColor
1891
 
1892
60 223 0 141 Box fill
1893
 
1894
 
1895
 
1896
0.501961 0.501961 0.501961 SetFgColor
1897
 
1898
60 103 0 261 Box fill
1899
 
1900
 
1901
 
1902
0.501961 0.501961 0.501961 SetFgColor
1903
 
1904
60 168 0 196 Box fill
1905
 
1906
 
1907
 
1908
0.501961 0.501961 0.501961 SetFgColor
1909
 
1910
60 179 0 185 Box fill
1911
 
1912
 
1913
 
1914
0.501961 0.501961 0.501961 SetFgColor
1915
 
1916
61 201 0 163 Box fill
1917
 
1918
 
1919
 
1920
0.501961 0.501961 0.501961 SetFgColor
1921
 
1922
61 244 0 120 Box fill
1923
 
1924
 
1925
 
1926
0.501961 0.501961 0.501961 SetFgColor
1927
 
1928
61 190 0 174 Box fill
1929
 
1930
 
1931
 
1932
0.501961 0.501961 0.501961 SetFgColor
1933
 
1934
61 81 0 283 Box fill
1935
 
1936
 
1937
 
1938
0.501961 0.501961 0.501961 SetFgColor
1939
 
1940
62 114 0 250 Box fill
1941
 
1942
 
1943
 
1944
0.501961 0.501961 0.501961 SetFgColor
1945
 
1946
62 103 0 261 Box fill
1947
 
1948
 
1949
 
1950
0.501961 0.501961 0.501961 SetFgColor
1951
 
1952
62 114 0 250 Box fill
1953
 
1954
 
1955
 
1956
0.501961 0.501961 0.501961 SetFgColor
1957
 
1958
62 147 0 217 Box fill
1959
 
1960
 
1961
 
1962
0.501961 0.501961 0.501961 SetFgColor
1963
 
1964
63 190 0 174 Box fill
1965
 
1966
 
1967
 
1968
0.501961 0.501961 0.501961 SetFgColor
1969
 
1970
63 212 0 152 Box fill
1971
 
1972
 
1973
 
1974
0.501961 0.501961 0.501961 SetFgColor
1975
 
1976
63 125 0 239 Box fill
1977
 
1978
 
1979
 
1980
0.501961 0.501961 0.501961 SetFgColor
1981
 
1982
63 92 0 272 Box fill
1983
 
1984
 
1985
 
1986
0.501961 0.501961 0.501961 SetFgColor
1987
 
1988
63 168 0 196 Box fill
1989
 
1990
 
1991
 
1992
0.501961 0.501961 0.501961 SetFgColor
1993
 
1994
64 158 0 206 Box fill
1995
 
1996
 
1997
 
1998
0.501961 0.501961 0.501961 SetFgColor
1999
 
2000
64 114 0 250 Box fill
2001
 
2002
 
2003
 
2004
0.501961 0.501961 0.501961 SetFgColor
2005
 
2006
64 190 0 174 Box fill
2007
 
2008
 
2009
 
2010
0.501961 0.501961 0.501961 SetFgColor
2011
 
2012
64 168 0 196 Box fill
2013
 
2014
 
2015
 
2016
0.501961 0.501961 0.501961 SetFgColor
2017
 
2018
65 179 0 185 Box fill
2019
 
2020
 
2021
 
2022
0.501961 0.501961 0.501961 SetFgColor
2023
 
2024
65 114 0 250 Box fill
2025
 
2026
 
2027
 
2028
0.501961 0.501961 0.501961 SetFgColor
2029
 
2030
65 136 0 228 Box fill
2031
 
2032
 
2033
 
2034
0.501961 0.501961 0.501961 SetFgColor
2035
 
2036
65 136 0 228 Box fill
2037
 
2038
 
2039
 
2040
0.501961 0.501961 0.501961 SetFgColor
2041
 
2042
66 125 0 239 Box fill
2043
 
2044
 
2045
 
2046
0.501961 0.501961 0.501961 SetFgColor
2047
 
2048
66 223 0 141 Box fill
2049
 
2050
 
2051
 
2052
0.501961 0.501961 0.501961 SetFgColor
2053
 
2054
66 114 0 250 Box fill
2055
 
2056
 
2057
 
2058
0.501961 0.501961 0.501961 SetFgColor
2059
 
2060
66 158 0 206 Box fill
2061
 
2062
 
2063
 
2064
0.501961 0.501961 0.501961 SetFgColor
2065
 
2066
67 190 0 174 Box fill
2067
 
2068
 
2069
 
2070
0.501961 0.501961 0.501961 SetFgColor
2071
 
2072
67 190 0 174 Box fill
2073
 
2074
 
2075
 
2076
0.501961 0.501961 0.501961 SetFgColor
2077
 
2078
67 223 0 141 Box fill
2079
 
2080
 
2081
 
2082
0.501961 0.501961 0.501961 SetFgColor
2083
 
2084
67 179 0 185 Box fill
2085
 
2086
 
2087
 
2088
0.501961 0.501961 0.501961 SetFgColor
2089
 
2090
68 158 0 206 Box fill
2091
 
2092
 
2093
 
2094
0.501961 0.501961 0.501961 SetFgColor
2095
 
2096
68 201 0 163 Box fill
2097
 
2098
 
2099
 
2100
0.501961 0.501961 0.501961 SetFgColor
2101
 
2102
68 147 0 217 Box fill
2103
 
2104
 
2105
 
2106
0.501961 0.501961 0.501961 SetFgColor
2107
 
2108
68 168 0 196 Box fill
2109
 
2110
 
2111
 
2112
0.501961 0.501961 0.501961 SetFgColor
2113
 
2114
69 158 0 206 Box fill
2115
 
2116
 
2117
 
2118
0.501961 0.501961 0.501961 SetFgColor
2119
 
2120
69 266 0 98 Box fill
2121
 
2122
 
2123
 
2124
0.501961 0.501961 0.501961 SetFgColor
2125
 
2126
69 179 0 185 Box fill
2127
 
2128
 
2129
 
2130
0.501961 0.501961 0.501961 SetFgColor
2131
 
2132
69 255 0 109 Box fill
2133
 
2134
 
2135
 
2136
0.501961 0.501961 0.501961 SetFgColor
2137
 
2138
70 168 0 196 Box fill
2139
 
2140
 
2141
 
2142
0.501961 0.501961 0.501961 SetFgColor
2143
 
2144
70 223 0 141 Box fill
2145
 
2146
 
2147
 
2148
0.501961 0.501961 0.501961 SetFgColor
2149
 
2150
70 223 0 141 Box fill
2151
 
2152
 
2153
 
2154
0.501961 0.501961 0.501961 SetFgColor
2155
 
2156
70 158 0 206 Box fill
2157
 
2158
 
2159
 
2160
0.501961 0.501961 0.501961 SetFgColor
2161
 
2162
71 92 0 272 Box fill
2163
 
2164
 
2165
 
2166
0.501961 0.501961 0.501961 SetFgColor
2167
 
2168
71 266 0 98 Box fill
2169
 
2170
 
2171
 
2172
0.501961 0.501961 0.501961 SetFgColor
2173
 
2174
71 147 0 217 Box fill
2175
 
2176
 
2177
 
2178
0.501961 0.501961 0.501961 SetFgColor
2179
 
2180
71 234 0 130 Box fill
2181
 
2182
 
2183
 
2184
0.501961 0.501961 0.501961 SetFgColor
2185
 
2186
72 255 0 109 Box fill
2187
 
2188
 
2189
 
2190
0.501961 0.501961 0.501961 SetFgColor
2191
 
2192
72 255 0 109 Box fill
2193
 
2194
 
2195
 
2196
0.501961 0.501961 0.501961 SetFgColor
2197
 
2198
72 168 0 196 Box fill
2199
 
2200
 
2201
 
2202
0.501961 0.501961 0.501961 SetFgColor
2203
 
2204
72 201 0 163 Box fill
2205
 
2206
 
2207
 
2208
0.501961 0.501961 0.501961 SetFgColor
2209
 
2210
73 234 0 130 Box fill
2211
 
2212
 
2213
 
2214
0.501961 0.501961 0.501961 SetFgColor
2215
 
2216
73 223 0 141 Box fill
2217
 
2218
 
2219
 
2220
0.501961 0.501961 0.501961 SetFgColor
2221
 
2222
73 201 0 163 Box fill
2223
 
2224
 
2225
 
2226
0.501961 0.501961 0.501961 SetFgColor
2227
 
2228
73 223 0 141 Box fill
2229
 
2230
 
2231
 
2232
0.501961 0.501961 0.501961 SetFgColor
2233
 
2234
74 201 0 163 Box fill
2235
 
2236
 
2237
 
2238
0.501961 0.501961 0.501961 SetFgColor
2239
 
2240
74 244 0 120 Box fill
2241
 
2242
 
2243
 
2244
0.501961 0.501961 0.501961 SetFgColor
2245
 
2246
74 277 0 87 Box fill
2247
 
2248
 
2249
 
2250
0.501961 0.501961 0.501961 SetFgColor
2251
 
2252
74 212 0 152 Box fill
2253
 
2254
 
2255
 
2256
0.501961 0.501961 0.501961 SetFgColor
2257
 
2258
75 223 0 141 Box fill
2259
 
2260
 
2261
 
2262
0.501961 0.501961 0.501961 SetFgColor
2263
 
2264
75 266 0 98 Box fill
2265
 
2266
 
2267
 
2268
0.501961 0.501961 0.501961 SetFgColor
2269
 
2270
75 179 0 185 Box fill
2271
 
2272
 
2273
 
2274
0.501961 0.501961 0.501961 SetFgColor
2275
 
2276
75 234 0 130 Box fill
2277
 
2278
 
2279
 
2280
0.501961 0.501961 0.501961 SetFgColor
2281
 
2282
76 255 0 109 Box fill
2283
 
2284
 
2285
 
2286
0.501961 0.501961 0.501961 SetFgColor
2287
 
2288
76 288 0 76 Box fill
2289
 
2290
 
2291
 
2292
0.501961 0.501961 0.501961 SetFgColor
2293
 
2294
76 266 0 98 Box fill
2295
 
2296
 
2297
 
2298
0.501961 0.501961 0.501961 SetFgColor
2299
 
2300
76 255 0 109 Box fill
2301
 
2302
 
2303
 
2304
0.501961 0.501961 0.501961 SetFgColor
2305
 
2306
77 244 0 120 Box fill
2307
 
2308
 
2309
 
2310
0.501961 0.501961 0.501961 SetFgColor
2311
 
2312
77 299 0 65 Box fill
2313
 
2314
 
2315
 
2316
0.501961 0.501961 0.501961 SetFgColor
2317
 
2318
77 212 0 152 Box fill
2319
 
2320
 
2321
 
2322
0.501961 0.501961 0.501961 SetFgColor
2323
 
2324
77 255 0 109 Box fill
2325
 
2326
 
2327
 
2328
0.501961 0.501961 0.501961 SetFgColor
2329
 
2330
78 179 0 185 Box fill
2331
 
2332
 
2333
 
2334
0.501961 0.501961 0.501961 SetFgColor
2335
 
2336
78 266 0 98 Box fill
2337
 
2338
 
2339
 
2340
0.501961 0.501961 0.501961 SetFgColor
2341
 
2342
78 310 0 54 Box fill
2343
 
2344
 
2345
 
2346
0.501961 0.501961 0.501961 SetFgColor
2347
 
2348
78 310 0 54 Box fill
2349
 
2350
 
2351
 
2352
0.501961 0.501961 0.501961 SetFgColor
2353
 
2354
79 266 0 98 Box fill
2355
 
2356
 
2357
 
2358
0.501961 0.501961 0.501961 SetFgColor
2359
 
2360
79 201 0 163 Box fill
2361
 
2362
 
2363
 
2364
0.501961 0.501961 0.501961 SetFgColor
2365
 
2366
79 255 0 109 Box fill
2367
 
2368
 
2369
 
2370
0.501961 0.501961 0.501961 SetFgColor
2371
 
2372
79 266 0 98 Box fill
2373
 
2374
 
2375
 
2376
0.501961 0.501961 0.501961 SetFgColor
2377
 
2378
80 244 0 120 Box fill
2379
 
2380
 
2381
 
2382
0.501961 0.501961 0.501961 SetFgColor
2383
 
2384
80 353 0 11 Box fill
2385
 
2386
 
2387
 
2388
0.501961 0.501961 0.501961 SetFgColor
2389
 
2390
80 288 0 76 Box fill
2391
 
2392
 
2393
 
2394
0.501961 0.501961 0.501961 SetFgColor
2395
 
2396
80 288 0 76 Box fill
2397
 
2398
 
2399
 
2400
0.501961 0.501961 0.501961 SetFgColor
2401
 
2402
81 255 0 109 Box fill
2403
 
2404
 
2405
 
2406
0.501961 0.501961 0.501961 SetFgColor
2407
 
2408
81 223 0 141 Box fill
2409
 
2410
 
2411
 
2412
0.501961 0.501961 0.501961 SetFgColor
2413
 
2414
81 277 0 87 Box fill
2415
 
2416
 
2417
 
2418
0.501961 0.501961 0.501961 SetFgColor
2419
 
2420
81 266 0 98 Box fill
2421
 
2422
 
2423
 
2424
0.501961 0.501961 0.501961 SetFgColor
2425
 
2426
82 299 0 65 Box fill
2427
 
2428
 
2429
 
2430
0.501961 0.501961 0.501961 SetFgColor
2431
 
2432
82 255 0 109 Box fill
2433
 
2434
 
2435
 
2436
0.501961 0.501961 0.501961 SetFgColor
2437
 
2438
82 212 0 152 Box fill
2439
 
2440
 
2441
 
2442
0.501961 0.501961 0.501961 SetFgColor
2443
 
2444
82 310 0 54 Box fill
2445
 
2446
 
2447
 
2448
0.501961 0.501961 0.501961 SetFgColor
2449
 
2450
83 277 0 87 Box fill
2451
 
2452
 
2453
 
2454
0.501961 0.501961 0.501961 SetFgColor
2455
 
2456
83 277 0 87 Box fill
2457
 
2458
 
2459
 
2460
0.501961 0.501961 0.501961 SetFgColor
2461
 
2462
83 277 0 87 Box fill
2463
 
2464
 
2465
 
2466
0.501961 0.501961 0.501961 SetFgColor
2467
 
2468
83 212 0 152 Box fill
2469
 
2470
 
2471
 
2472
0.501961 0.501961 0.501961 SetFgColor
2473
 
2474
84 255 0 109 Box fill
2475
 
2476
 
2477
 
2478
0.501961 0.501961 0.501961 SetFgColor
2479
 
2480
84 299 0 65 Box fill
2481
 
2482
 
2483
 
2484
0.501961 0.501961 0.501961 SetFgColor
2485
 
2486
84 255 0 109 Box fill
2487
 
2488
 
2489
 
2490
0.501961 0.501961 0.501961 SetFgColor
2491
 
2492
84 299 0 65 Box fill
2493
 
2494
 
2495
 
2496
0.501961 0.501961 0.501961 SetFgColor
2497
 
2498
84 331 0 33 Box fill
2499
 
2500
 
2501
 
2502
0.501961 0.501961 0.501961 SetFgColor
2503
 
2504
85 310 0 54 Box fill
2505
 
2506
 
2507
 
2508
0.501961 0.501961 0.501961 SetFgColor
2509
 
2510
85 299 0 65 Box fill
2511
 
2512
 
2513
 
2514
0.501961 0.501961 0.501961 SetFgColor
2515
 
2516
85 277 0 87 Box fill
2517
 
2518
 
2519
 
2520
0.501961 0.501961 0.501961 SetFgColor
2521
 
2522
85 299 0 65 Box fill
2523
 
2524
 
2525
 
2526
0.501961 0.501961 0.501961 SetFgColor
2527
 
2528
86 331 0 33 Box fill
2529
 
2530
 
2531
 
2532
0.501961 0.501961 0.501961 SetFgColor
2533
 
2534
86 277 0 87 Box fill
2535
 
2536
 
2537
 
2538
0.501961 0.501961 0.501961 SetFgColor
2539
 
2540
86 288 0 76 Box fill
2541
 
2542
 
2543
 
2544
0.501961 0.501961 0.501961 SetFgColor
2545
 
2546
86 266 0 98 Box fill
2547
 
2548
 
2549
 
2550
0.501961 0.501961 0.501961 SetFgColor
2551
 
2552
87 255 0 109 Box fill
2553
 
2554
 
2555
 
2556
0.501961 0.501961 0.501961 SetFgColor
2557
 
2558
87 299 0 65 Box fill
2559
 
2560
 
2561
 
2562
0.501961 0.501961 0.501961 SetFgColor
2563
 
2564
87 288 0 76 Box fill
2565
 
2566
 
2567
 
2568
0.501961 0.501961 0.501961 SetFgColor
2569
 
2570
87 299 0 65 Box fill
2571
 
2572
 
2573
 
2574
0.501961 0.501961 0.501961 SetFgColor
2575
 
2576
88 321 0 43 Box fill
2577
 
2578
 
2579
 
2580
0.501961 0.501961 0.501961 SetFgColor
2581
 
2582
88 321 0 43 Box fill
2583
 
2584
 
2585
 
2586
0.501961 0.501961 0.501961 SetFgColor
2587
 
2588
88 321 0 43 Box fill
2589
 
2590
 
2591
 
2592
0.501961 0.501961 0.501961 SetFgColor
2593
 
2594
88 299 0 65 Box fill
2595
 
2596
 
2597
 
2598
0.501961 0.501961 0.501961 SetFgColor
2599
 
2600
89 331 0 33 Box fill
2601
 
2602
 
2603
 
2604
0.501961 0.501961 0.501961 SetFgColor
2605
 
2606
89 310 0 54 Box fill
2607
 
2608
 
2609
 
2610
0.501961 0.501961 0.501961 SetFgColor
2611
 
2612
89 310 0 54 Box fill
2613
 
2614
 
2615
 
2616
0.501961 0.501961 0.501961 SetFgColor
2617
 
2618
89 321 0 43 Box fill
2619
 
2620
 
2621
 
2622
0.501961 0.501961 0.501961 SetFgColor
2623
 
2624
90 331 0 33 Box fill
2625
 
2626
 
2627
 
2628
0.501961 0.501961 0.501961 SetFgColor
2629
 
2630
90 299 0 65 Box fill
2631
 
2632
 
2633
 
2634
0.501961 0.501961 0.501961 SetFgColor
2635
 
2636
90 310 0 54 Box fill
2637
 
2638
 
2639
 
2640
0.501961 0.501961 0.501961 SetFgColor
2641
 
2642
90 310 0 54 Box fill
2643
 
2644
 
2645
 
2646
0.501961 0.501961 0.501961 SetFgColor
2647
 
2648
91 321 0 43 Box fill
2649
 
2650
 
2651
 
2652
0.501961 0.501961 0.501961 SetFgColor
2653
 
2654
91 342 0 22 Box fill
2655
 
2656
 
2657
 
2658
0.501961 0.501961 0.501961 SetFgColor
2659
 
2660
91 288 0 76 Box fill
2661
 
2662
 
2663
 
2664
0.501961 0.501961 0.501961 SetFgColor
2665
 
2666
91 331 0 33 Box fill
2667
 
2668
 
2669
 
2670
0.501961 0.501961 0.501961 SetFgColor
2671
 
2672
92 342 0 22 Box fill
2673
 
2674
 
2675
 
2676
0.501961 0.501961 0.501961 SetFgColor
2677
 
2678
92 310 0 54 Box fill
2679
 
2680
 
2681
 
2682
0.501961 0.501961 0.501961 SetFgColor
2683
 
2684
92 310 0 54 Box fill
2685
 
2686
 
2687
 
2688
0.501961 0.501961 0.501961 SetFgColor
2689
 
2690
92 321 0 43 Box fill
2691
 
2692
 
2693
 
2694
0.501961 0.501961 0.501961 SetFgColor
2695
 
2696
93 299 0 65 Box fill
2697
 
2698
 
2699
 
2700
0.501961 0.501961 0.501961 SetFgColor
2701
 
2702
93 342 0 22 Box fill
2703
 
2704
 
2705
 
2706
0.501961 0.501961 0.501961 SetFgColor
2707
 
2708
93 342 0 22 Box fill
2709
 
2710
 
2711
 
2712
0.501961 0.501961 0.501961 SetFgColor
2713
 
2714
93 321 0 43 Box fill
2715
 
2716
 
2717
 
2718
0.501961 0.501961 0.501961 SetFgColor
2719
 
2720
94 288 0 76 Box fill
2721
 
2722
 
2723
 
2724
0.501961 0.501961 0.501961 SetFgColor
2725
 
2726
94 321 0 43 Box fill
2727
 
2728
 
2729
 
2730
0.501961 0.501961 0.501961 SetFgColor
2731
 
2732
94 342 0 22 Box fill
2733
 
2734
 
2735
 
2736
0.501961 0.501961 0.501961 SetFgColor
2737
 
2738
94 364 0 0 Box fill
2739
 
2740
 
2741
 
2742
0.501961 0.501961 0.501961 SetFgColor
2743
 
2744
95 353 0 11 Box fill
2745
 
2746
 
2747
 
2748
0.501961 0.501961 0.501961 SetFgColor
2749
 
2750
95 310 0 54 Box fill
2751
 
2752
 
2753
 
2754
0.501961 0.501961 0.501961 SetFgColor
2755
 
2756
95 353 0 11 Box fill
2757
 
2758
 
2759
 
2760
0.501961 0.501961 0.501961 SetFgColor
2761
 
2762
95 331 0 33 Box fill
2763
 
2764
 
2765
 
2766
0.501961 0.501961 0.501961 SetFgColor
2767
 
2768
96 310 0 54 Box fill
2769
 
2770
 
2771
 
2772
0.501961 0.501961 0.501961 SetFgColor
2773
 
2774
96 310 0 54 Box fill
2775
 
2776
 
2777
 
2778
0.501961 0.501961 0.501961 SetFgColor
2779
 
2780
96 353 0 11 Box fill
2781
 
2782
 
2783
 
2784
0.501961 0.501961 0.501961 SetFgColor
2785
 
2786
96 321 0 43 Box fill
2787
 
2788
 
2789
 
2790
0.501961 0.501961 0.501961 SetFgColor
2791
 
2792
97 299 0 65 Box fill
2793
 
2794
 
2795
 
2796
0.501961 0.501961 0.501961 SetFgColor
2797
 
2798
97 321 0 43 Box fill
2799
 
2800
 
2801
 
2802
0.501961 0.501961 0.501961 SetFgColor
2803
 
2804
97 310 0 54 Box fill
2805
 
2806
 
2807
 
2808
0.501961 0.501961 0.501961 SetFgColor
2809
 
2810
97 364 0 0 Box fill
2811
 
2812
 
2813
 
2814
0.501961 0.501961 0.501961 SetFgColor
2815
 
2816
98 342 0 22 Box fill
2817
 
2818
 
2819
 
2820
0.501961 0.501961 0.501961 SetFgColor
2821
 
2822
98 342 0 22 Box fill
2823
 
2824
 
2825
 
2826
0.501961 0.501961 0.501961 SetFgColor
2827
 
2828
98 342 0 22 Box fill
2829
 
2830
 
2831
 
2832
0.501961 0.501961 0.501961 SetFgColor
2833
 
2834
98 353 0 11 Box fill
2835
 
2836
 
2837
 
2838
0.501961 0.501961 0.501961 SetFgColor
2839
 
2840
99 331 0 33 Box fill
2841
 
2842
 
2843
 
2844
0.501961 0.501961 0.501961 SetFgColor
2845
 
2846
99 342 0 22 Box fill
2847
 
2848
 
2849
 
2850
0.501961 0.501961 0.501961 SetFgColor
2851
 
2852
99 364 0 0 Box fill
2853
 
2854
 
2855
 
2856
0.501961 0.501961 0.501961 SetFgColor
2857
 
2858
99 353 0 11 Box fill
2859
 
2860
 
2861
 
2862
0.501961 0.501961 0.501961 SetFgColor
2863
 
2864
100 342 0 22 Box fill
2865
 
2866
 
2867
 
2868
0.501961 0.501961 0.501961 SetFgColor
2869
 
2870
100 364 0 0 Box fill
2871
 
2872
 
2873
 
2874
0.501961 0.501961 0.501961 SetFgColor
2875
 
2876
100 299 0 65 Box fill
2877
 
2878
 
2879
 
2880
0.501961 0.501961 0.501961 SetFgColor
2881
 
2882
100 353 0 11 Box fill
2883
 
2884
 
2885
 
2886
0.501961 0.501961 0.501961 SetFgColor
2887
 
2888
101 353 0 11 Box fill
2889
 
2890
 
2891
 
2892
0.501961 0.501961 0.501961 SetFgColor
2893
 
2894
101 342 0 22 Box fill
2895
 
2896
 
2897
 
2898
0.501961 0.501961 0.501961 SetFgColor
2899
 
2900
101 342 0 22 Box fill
2901
 
2902
 
2903
 
2904
0.501961 0.501961 0.501961 SetFgColor
2905
 
2906
101 353 0 11 Box fill
2907
 
2908
 
2909
 
2910
0.501961 0.501961 0.501961 SetFgColor
2911
 
2912
102 353 0 11 Box fill
2913
 
2914
 
2915
 
2916
0.501961 0.501961 0.501961 SetFgColor
2917
 
2918
102 331 0 33 Box fill
2919
 
2920
 
2921
 
2922
0.501961 0.501961 0.501961 SetFgColor
2923
 
2924
102 342 0 22 Box fill
2925
 
2926
 
2927
 
2928
0.501961 0.501961 0.501961 SetFgColor
2929
 
2930
102 353 0 11 Box fill
2931
 
2932
 
2933
 
2934
0.501961 0.501961 0.501961 SetFgColor
2935
 
2936
103 353 0 11 Box fill
2937
 
2938
 
2939
 
2940
0.501961 0.501961 0.501961 SetFgColor
2941
 
2942
103 321 0 43 Box fill
2943
 
2944
 
2945
 
2946
0.501961 0.501961 0.501961 SetFgColor
2947
 
2948
103 353 0 11 Box fill
2949
 
2950
 
2951
 
2952
0.501961 0.501961 0.501961 SetFgColor
2953
 
2954
103 342 0 22 Box fill
2955
 
2956
 
2957
 
2958
0.501961 0.501961 0.501961 SetFgColor
2959
 
2960
104 342 0 22 Box fill
2961
 
2962
 
2963
 
2964
0.501961 0.501961 0.501961 SetFgColor
2965
 
2966
104 364 0 0 Box fill
2967
 
2968
 
2969
 
2970
0.501961 0.501961 0.501961 SetFgColor
2971
 
2972
104 364 0 0 Box fill
2973
 
2974
 
2975
 
2976
0.501961 0.501961 0.501961 SetFgColor
2977
 
2978
104 364 0 0 Box fill
2979
 
2980
 
2981
 
2982
0.501961 0.501961 0.501961 SetFgColor
2983
 
2984
104 331 0 33 Box fill
2985
 
2986
 
2987
 
2988
0.501961 0.501961 0.501961 SetFgColor
2989
 
2990
105 353 0 11 Box fill
2991
 
2992
 
2993
 
2994
0.501961 0.501961 0.501961 SetFgColor
2995
 
2996
105 321 0 43 Box fill
2997
 
2998
 
2999
 
3000
0.501961 0.501961 0.501961 SetFgColor
3001
 
3002
105 364 0 0 Box fill
3003
 
3004
 
3005
 
3006
0.501961 0.501961 0.501961 SetFgColor
3007
 
3008
105 364 0 0 Box fill
3009
 
3010
 
3011
 
3012
0.501961 0.501961 0.501961 SetFgColor
3013
 
3014
106 331 0 33 Box fill
3015
 
3016
 
3017
 
3018
0.501961 0.501961 0.501961 SetFgColor
3019
 
3020
106 331 0 33 Box fill
3021
 
3022
 
3023
 
3024
0.501961 0.501961 0.501961 SetFgColor
3025
 
3026
106 331 0 33 Box fill
3027
 
3028
 
3029
 
3030
0.501961 0.501961 0.501961 SetFgColor
3031
 
3032
106 364 0 0 Box fill
3033
 
3034
 
3035
 
3036
0.501961 0.501961 0.501961 SetFgColor
3037
 
3038
107 342 0 22 Box fill
3039
 
3040
 
3041
 
3042
0.501961 0.501961 0.501961 SetFgColor
3043
 
3044
107 364 0 0 Box fill
3045
 
3046
 
3047
 
3048
0.501961 0.501961 0.501961 SetFgColor
3049
 
3050
107 364 0 0 Box fill
3051
 
3052
 
3053
 
3054
0.501961 0.501961 0.501961 SetFgColor
3055
 
3056
107 364 0 0 Box fill
3057
 
3058
 
3059
 
3060
0.501961 0.501961 0.501961 SetFgColor
3061
 
3062
108 353 0 11 Box fill
3063
 
3064
 
3065
 
3066
0.501961 0.501961 0.501961 SetFgColor
3067
 
3068
108 353 0 11 Box fill
3069
 
3070
 
3071
 
3072
0.501961 0.501961 0.501961 SetFgColor
3073
 
3074
108 353 0 11 Box fill
3075
 
3076
 
3077
 
3078
0.501961 0.501961 0.501961 SetFgColor
3079
 
3080
108 364 0 0 Box fill
3081
 
3082
 
3083
 
3084
0.501961 0.501961 0.501961 SetFgColor
3085
 
3086
109 364 0 0 Box fill
3087
 
3088
 
3089
 
3090
0.501961 0.501961 0.501961 SetFgColor
3091
 
3092
109 342 0 22 Box fill
3093
 
3094
 
3095
 
3096
0.501961 0.501961 0.501961 SetFgColor
3097
 
3098
109 364 0 0 Box fill
3099
 
3100
 
3101
 
3102
0.501961 0.501961 0.501961 SetFgColor
3103
 
3104
109 342 0 22 Box fill
3105
 
3106
 
3107
 
3108
0.501961 0.501961 0.501961 SetFgColor
3109
 
3110
110 342 0 22 Box fill
3111
 
3112
 
3113
 
3114
0.501961 0.501961 0.501961 SetFgColor
3115
 
3116
110 364 0 0 Box fill
3117
 
3118
 
3119
 
3120
0.501961 0.501961 0.501961 SetFgColor
3121
 
3122
110 353 0 11 Box fill
3123
 
3124
 
3125
 
3126
0.501961 0.501961 0.501961 SetFgColor
3127
 
3128
110 364 0 0 Box fill
3129
 
3130
 
3131
 
3132
0.501961 0.501961 0.501961 SetFgColor
3133
 
3134
111 342 0 22 Box fill
3135
 
3136
 
3137
 
3138
0.501961 0.501961 0.501961 SetFgColor
3139
 
3140
111 342 0 22 Box fill
3141
 
3142
 
3143
 
3144
0.501961 0.501961 0.501961 SetFgColor
3145
 
3146
111 321 0 43 Box fill
3147
 
3148
 
3149
 
3150
0.501961 0.501961 0.501961 SetFgColor
3151
 
3152
111 364 0 0 Box fill
3153
 
3154
 
3155
 
3156
0.501961 0.501961 0.501961 SetFgColor
3157
 
3158
112 331 0 33 Box fill
3159
 
3160
 
3161
 
3162
0.501961 0.501961 0.501961 SetFgColor
3163
 
3164
112 353 0 11 Box fill
3165
 
3166
 
3167
 
3168
0.501961 0.501961 0.501961 SetFgColor
3169
 
3170
112 342 0 22 Box fill
3171
 
3172
 
3173
 
3174
0.501961 0.501961 0.501961 SetFgColor
3175
 
3176
112 342 0 22 Box fill
3177
 
3178
 
3179
 
3180
0.501961 0.501961 0.501961 SetFgColor
3181
 
3182
113 331 0 33 Box fill
3183
 
3184
 
3185
 
3186
0.501961 0.501961 0.501961 SetFgColor
3187
 
3188
113 342 0 22 Box fill
3189
 
3190
 
3191
 
3192
0.501961 0.501961 0.501961 SetFgColor
3193
 
3194
113 364 0 0 Box fill
3195
 
3196
 
3197
 
3198
0.501961 0.501961 0.501961 SetFgColor
3199
 
3200
113 364 0 0 Box fill
3201
 
3202
 
3203
 
3204
0.501961 0.501961 0.501961 SetFgColor
3205
 
3206
114 353 0 11 Box fill
3207
 
3208
 
3209
 
3210
0.501961 0.501961 0.501961 SetFgColor
3211
 
3212
114 364 0 0 Box fill
3213
 
3214
 
3215
 
3216
0.501961 0.501961 0.501961 SetFgColor
3217
 
3218
114 353 0 11 Box fill
3219
 
3220
 
3221
 
3222
0.501961 0.501961 0.501961 SetFgColor
3223
 
3224
114 353 0 11 Box fill
3225
 
3226
 
3227
 
3228
0.501961 0.501961 0.501961 SetFgColor
3229
 
3230
115 353 0 11 Box fill
3231
 
3232
 
3233
 
3234
0.501961 0.501961 0.501961 SetFgColor
3235
 
3236
115 342 0 22 Box fill
3237
 
3238
 
3239
 
3240
0.501961 0.501961 0.501961 SetFgColor
3241
 
3242
115 342 0 22 Box fill
3243
 
3244
 
3245
 
3246
0.501961 0.501961 0.501961 SetFgColor
3247
 
3248
115 353 0 11 Box fill
3249
 
3250
 
3251
 
3252
0.501961 0.501961 0.501961 SetFgColor
3253
 
3254
116 353 0 11 Box fill
3255
 
3256
 
3257
 
3258
0.501961 0.501961 0.501961 SetFgColor
3259
 
3260
116 353 0 11 Box fill
3261
 
3262
 
3263
 
3264
0.501961 0.501961 0.501961 SetFgColor
3265
 
3266
116 364 0 0 Box fill
3267
 
3268
 
3269
 
3270
0.501961 0.501961 0.501961 SetFgColor
3271
 
3272
116 353 0 11 Box fill
3273
 
3274
 
3275
 
3276
0.501961 0.501961 0.501961 SetFgColor
3277
 
3278
117 364 0 0 Box fill
3279
 
3280
 
3281
 
3282
0.501961 0.501961 0.501961 SetFgColor
3283
 
3284
117 364 0 0 Box fill
3285
 
3286
 
3287
 
3288
0.501961 0.501961 0.501961 SetFgColor
3289
 
3290
117 353 0 11 Box fill
3291
 
3292
 
3293
 
3294
0.501961 0.501961 0.501961 SetFgColor
3295
 
3296
117 353 0 11 Box fill
3297
 
3298
 
3299
 
3300
0.501961 0.501961 0.501961 SetFgColor
3301
 
3302
118 353 0 11 Box fill
3303
 
3304
 
3305
 
3306
0.501961 0.501961 0.501961 SetFgColor
3307
 
3308
118 364 0 0 Box fill
3309
 
3310
 
3311
 
3312
0.501961 0.501961 0.501961 SetFgColor
3313
 
3314
118 364 0 0 Box fill
3315
 
3316
 
3317
 
3318
0.501961 0.501961 0.501961 SetFgColor
3319
 
3320
118 364 0 0 Box fill
3321
 
3322
 
3323
 
3324
0.501961 0.501961 0.501961 SetFgColor
3325
 
3326
119 364 0 0 Box fill
3327
 
3328
 
3329
 
3330
0.501961 0.501961 0.501961 SetFgColor
3331
 
3332
119 353 0 11 Box fill
3333
 
3334
 
3335
 
3336
0.501961 0.501961 0.501961 SetFgColor
3337
 
3338
119 364 0 0 Box fill
3339
 
3340
 
3341
 
3342
0.501961 0.501961 0.501961 SetFgColor
3343
 
3344
119 364 0 0 Box fill
3345
 
3346
 
3347
 
3348
0.501961 0.501961 0.501961 SetFgColor
3349
 
3350
120 353 0 11 Box fill
3351
 
3352
 
3353
 
3354
0.501961 0.501961 0.501961 SetFgColor
3355
 
3356
120 364 0 0 Box fill
3357
 
3358
 
3359
 
3360
0.501961 0.501961 0.501961 SetFgColor
3361
 
3362
120 364 0 0 Box fill
3363
 
3364
 
3365
 
3366
0.501961 0.501961 0.501961 SetFgColor
3367
 
3368
120 353 0 11 Box fill
3369
 
3370
 
3371
 
3372
0.501961 0.501961 0.501961 SetFgColor
3373
 
3374
121 364 0 0 Box fill
3375
 
3376
 
3377
 
3378
0.501961 0.501961 0.501961 SetFgColor
3379
 
3380
121 364 0 0 Box fill
3381
 
3382
 
3383
 
3384
0.501961 0.501961 0.501961 SetFgColor
3385
 
3386
121 364 0 0 Box fill
3387
 
3388
 
3389
 
3390
0.501961 0.501961 0.501961 SetFgColor
3391
 
3392
121 353 0 11 Box fill
3393
 
3394
 
3395
 
3396
0.501961 0.501961 0.501961 SetFgColor
3397
 
3398
122 353 0 11 Box fill
3399
 
3400
 
3401
 
3402
0.501961 0.501961 0.501961 SetFgColor
3403
 
3404
122 353 0 11 Box fill
3405
 
3406
 
3407
 
3408
0.501961 0.501961 0.501961 SetFgColor
3409
 
3410
122 364 0 0 Box fill
3411
 
3412
 
3413
 
3414
0.501961 0.501961 0.501961 SetFgColor
3415
 
3416
122 342 0 22 Box fill
3417
 
3418
 
3419
 
3420
0.501961 0.501961 0.501961 SetFgColor
3421
 
3422
123 364 0 0 Box fill
3423
 
3424
 
3425
 
3426
0.501961 0.501961 0.501961 SetFgColor
3427
 
3428
123 364 0 0 Box fill
3429
 
3430
 
3431
 
3432
0.501961 0.501961 0.501961 SetFgColor
3433
 
3434
123 364 0 0 Box fill
3435
 
3436
 
3437
 
3438
0.501961 0.501961 0.501961 SetFgColor
3439
 
3440
123 364 0 0 Box fill
3441
 
3442
 
3443
 
3444
0.501961 0.501961 0.501961 SetFgColor
3445
 
3446
124 364 0 0 Box fill
3447
 
3448
 
3449
 
3450
0.501961 0.501961 0.501961 SetFgColor
3451
 
3452
124 353 0 11 Box fill
3453
 
3454
 
3455
 
3456
0.501961 0.501961 0.501961 SetFgColor
3457
 
3458
124 353 0 11 Box fill
3459
 
3460
 
3461
 
3462
0.501961 0.501961 0.501961 SetFgColor
3463
 
3464
124 364 0 0 Box fill
3465
 
3466
 
3467
 
3468
0.501961 0.501961 0.501961 SetFgColor
3469
 
3470
125 364 0 0 Box fill
3471
 
3472
 
3473
 
3474
0.501961 0.501961 0.501961 SetFgColor
3475
 
3476
125 364 0 0 Box fill
3477
 
3478
 
3479
 
3480
0.501961 0.501961 0.501961 SetFgColor
3481
 
3482
125 364 0 0 Box fill
3483
 
3484
 
3485
 
3486
0.501961 0.501961 0.501961 SetFgColor
3487
 
3488
125 364 0 0 Box fill
3489
 
3490
 
3491
 
3492
0.501961 0.501961 0.501961 SetFgColor
3493
 
3494
125 364 0 0 Box fill
3495
 
3496
 
3497
 
3498
0.501961 0.501961 0.501961 SetFgColor
3499
 
3500
126 364 0 0 Box fill
3501
 
3502
 
3503
 
3504
0.501961 0.501961 0.501961 SetFgColor
3505
 
3506
126 364 0 0 Box fill
3507
 
3508
 
3509
 
3510
0.501961 0.501961 0.501961 SetFgColor
3511
 
3512
126 364 0 0 Box fill
3513
 
3514
 
3515
 
3516
0.501961 0.501961 0.501961 SetFgColor
3517
 
3518
126 364 0 0 Box fill
3519
 
3520
 
3521
 
3522
0.501961 0.501961 0.501961 SetFgColor
3523
 
3524
127 364 0 0 Box fill
3525
 
3526
 
3527
 
3528
0.501961 0.501961 0.501961 SetFgColor
3529
 
3530
127 364 0 0 Box fill
3531
 
3532
 
3533
 
3534
0.501961 0.501961 0.501961 SetFgColor
3535
 
3536
127 364 0 0 Box fill
3537
 
3538
 
3539
 
3540
0.501961 0.501961 0.501961 SetFgColor
3541
 
3542
127 353 0 11 Box fill
3543
 
3544
 
3545
 
3546
0.501961 0.501961 0.501961 SetFgColor
3547
 
3548
128 364 0 0 Box fill
3549
 
3550
 
3551
 
3552
0.501961 0.501961 0.501961 SetFgColor
3553
 
3554
128 364 0 0 Box fill
3555
 
3556
 
3557
 
3558
0.501961 0.501961 0.501961 SetFgColor
3559
 
3560
128 364 0 0 Box fill
3561
 
3562
 
3563
 
3564
0.501961 0.501961 0.501961 SetFgColor
3565
 
3566
128 364 0 0 Box fill
3567
 
3568
 
3569
 
3570
0.501961 0.501961 0.501961 SetFgColor
3571
 
3572
129 364 0 0 Box fill
3573
 
3574
 
3575
 
3576
0.501961 0.501961 0.501961 SetFgColor
3577
 
3578
129 364 0 0 Box fill
3579
 
3580
 
3581
 
3582
0.501961 0.501961 0.501961 SetFgColor
3583
 
3584
129 364 0 0 Box fill
3585
 
3586
 
3587
 
3588
0.501961 0.501961 0.501961 SetFgColor
3589
 
3590
129 353 0 11 Box fill
3591
 
3592
 
3593
 
3594
0.501961 0.501961 0.501961 SetFgColor
3595
 
3596
130 364 0 0 Box fill
3597
 
3598
 
3599
 
3600
0.501961 0.501961 0.501961 SetFgColor
3601
 
3602
130 364 0 0 Box fill
3603
 
3604
 
3605
 
3606
0.501961 0.501961 0.501961 SetFgColor
3607
 
3608
130 364 0 0 Box fill
3609
 
3610
 
3611
 
3612
0.501961 0.501961 0.501961 SetFgColor
3613
 
3614
130 364 0 0 Box fill
3615
 
3616
 
3617
 
3618
0.501961 0.501961 0.501961 SetFgColor
3619
 
3620
131 364 0 0 Box fill
3621
 
3622
 
3623
 
3624
0.501961 0.501961 0.501961 SetFgColor
3625
 
3626
131 364 0 0 Box fill
3627
 
3628
 
3629
 
3630
0.501961 0.501961 0.501961 SetFgColor
3631
 
3632
131 353 0 11 Box fill
3633
 
3634
 
3635
 
3636
0.501961 0.501961 0.501961 SetFgColor
3637
 
3638
131 364 0 0 Box fill
3639
 
3640
 
3641
 
3642
0.501961 0.501961 0.501961 SetFgColor
3643
 
3644
132 364 0 0 Box fill
3645
 
3646
 
3647
 
3648
0.501961 0.501961 0.501961 SetFgColor
3649
 
3650
132 364 0 0 Box fill
3651
 
3652
 
3653
 
3654
0.501961 0.501961 0.501961 SetFgColor
3655
 
3656
132 364 0 0 Box fill
3657
 
3658
 
3659
 
3660
0.501961 0.501961 0.501961 SetFgColor
3661
 
3662
132 353 0 11 Box fill
3663
 
3664
 
3665
 
3666
0.501961 0.501961 0.501961 SetFgColor
3667
 
3668
133 364 0 0 Box fill
3669
 
3670
 
3671
 
3672
0.501961 0.501961 0.501961 SetFgColor
3673
 
3674
133 364 0 0 Box fill
3675
 
3676
 
3677
 
3678
0.501961 0.501961 0.501961 SetFgColor
3679
 
3680
133 353 0 11 Box fill
3681
 
3682
 
3683
 
3684
0.501961 0.501961 0.501961 SetFgColor
3685
 
3686
133 353 0 11 Box fill
3687
 
3688
 
3689
 
3690
0.501961 0.501961 0.501961 SetFgColor
3691
 
3692
134 364 0 0 Box fill
3693
 
3694
 
3695
 
3696
0.501961 0.501961 0.501961 SetFgColor
3697
 
3698
134 364 0 0 Box fill
3699
 
3700
 
3701
 
3702
0.501961 0.501961 0.501961 SetFgColor
3703
 
3704
134 364 0 0 Box fill
3705
 
3706
 
3707
 
3708
0.501961 0.501961 0.501961 SetFgColor
3709
 
3710
134 364 0 0 Box fill
3711
 
3712
 
3713
 
3714
0.501961 0.501961 0.501961 SetFgColor
3715
 
3716
135 364 0 0 Box fill
3717
 
3718
 
3719
 
3720
0.501961 0.501961 0.501961 SetFgColor
3721
 
3722
135 342 0 22 Box fill
3723
 
3724
 
3725
 
3726
0.501961 0.501961 0.501961 SetFgColor
3727
 
3728
135 364 0 0 Box fill
3729
 
3730
 
3731
 
3732
0.501961 0.501961 0.501961 SetFgColor
3733
 
3734
135 364 0 0 Box fill
3735
 
3736
 
3737
 
3738
0.501961 0.501961 0.501961 SetFgColor
3739
 
3740
136 364 0 0 Box fill
3741
 
3742
 
3743
 
3744
0.501961 0.501961 0.501961 SetFgColor
3745
 
3746
136 364 0 0 Box fill
3747
 
3748
 
3749
 
3750
0.501961 0.501961 0.501961 SetFgColor
3751
 
3752
136 364 0 0 Box fill
3753
 
3754
 
3755
 
3756
0.501961 0.501961 0.501961 SetFgColor
3757
 
3758
136 364 0 0 Box fill
3759
 
3760
 
3761
 
3762
0.501961 0.501961 0.501961 SetFgColor
3763
 
3764
137 353 0 11 Box fill
3765
 
3766
 
3767
 
3768
0.501961 0.501961 0.501961 SetFgColor
3769
 
3770
137 364 0 0 Box fill
3771
 
3772
 
3773
 
3774
0.501961 0.501961 0.501961 SetFgColor
3775
 
3776
137 364 0 0 Box fill
3777
 
3778
 
3779
 
3780
0.501961 0.501961 0.501961 SetFgColor
3781
 
3782
137 364 0 0 Box fill
3783
 
3784
 
3785
 
3786
0.501961 0.501961 0.501961 SetFgColor
3787
 
3788
138 364 0 0 Box fill
3789
 
3790
 
3791
 
3792
0.501961 0.501961 0.501961 SetFgColor
3793
 
3794
138 364 0 0 Box fill
3795
 
3796
 
3797
 
3798
0.501961 0.501961 0.501961 SetFgColor
3799
 
3800
138 364 0 0 Box fill
3801
 
3802
 
3803
 
3804
0.501961 0.501961 0.501961 SetFgColor
3805
 
3806
138 364 0 0 Box fill
3807
 
3808
 
3809
 
3810
0.501961 0.501961 0.501961 SetFgColor
3811
 
3812
139 364 0 0 Box fill
3813
 
3814
 
3815
 
3816
0.501961 0.501961 0.501961 SetFgColor
3817
 
3818
139 364 0 0 Box fill
3819
 
3820
 
3821
 
3822
0.501961 0.501961 0.501961 SetFgColor
3823
 
3824
139 364 0 0 Box fill
3825
 
3826
 
3827
 
3828
0.501961 0.501961 0.501961 SetFgColor
3829
 
3830
139 364 0 0 Box fill
3831
 
3832
 
3833
 
3834
0.501961 0.501961 0.501961 SetFgColor
3835
 
3836
140 364 0 0 Box fill
3837
 
3838
 
3839
 
3840
0.501961 0.501961 0.501961 SetFgColor
3841
 
3842
140 364 0 0 Box fill
3843
 
3844
 
3845
 
3846
0.501961 0.501961 0.501961 SetFgColor
3847
 
3848
140 353 0 11 Box fill
3849
 
3850
 
3851
 
3852
0.501961 0.501961 0.501961 SetFgColor
3853
 
3854
140 364 0 0 Box fill
3855
 
3856
 
3857
 
3858
0.501961 0.501961 0.501961 SetFgColor
3859
 
3860
141 364 0 0 Box fill
3861
 
3862
 
3863
 
3864
0.501961 0.501961 0.501961 SetFgColor
3865
 
3866
141 364 0 0 Box fill
3867
 
3868
 
3869
 
3870
0.501961 0.501961 0.501961 SetFgColor
3871
 
3872
141 364 0 0 Box fill
3873
 
3874
 
3875
 
3876
0.501961 0.501961 0.501961 SetFgColor
3877
 
3878
141 364 0 0 Box fill
3879
 
3880
 
3881
 
3882
0.501961 0.501961 0.501961 SetFgColor
3883
 
3884
142 364 0 0 Box fill
3885
 
3886
 
3887
 
3888
0.501961 0.501961 0.501961 SetFgColor
3889
 
3890
142 364 0 0 Box fill
3891
 
3892
 
3893
 
3894
0.501961 0.501961 0.501961 SetFgColor
3895
 
3896
142 364 0 0 Box fill
3897
 
3898
 
3899
 
3900
0.501961 0.501961 0.501961 SetFgColor
3901
 
3902
142 364 0 0 Box fill
3903
 
3904
 
3905
 
3906
0.501961 0.501961 0.501961 SetFgColor
3907
 
3908
143 364 0 0 Box fill
3909
 
3910
 
3911
 
3912
0.501961 0.501961 0.501961 SetFgColor
3913
 
3914
143 364 0 0 Box fill
3915
 
3916
 
3917
 
3918
0.501961 0.501961 0.501961 SetFgColor
3919
 
3920
143 364 0 0 Box fill
3921
 
3922
 
3923
 
3924
0.501961 0.501961 0.501961 SetFgColor
3925
 
3926
143 364 0 0 Box fill
3927
 
3928
 
3929
 
3930
0.501961 0.501961 0.501961 SetFgColor
3931
 
3932
144 364 0 0 Box fill
3933
 
3934
 
3935
 
3936
0.501961 0.501961 0.501961 SetFgColor
3937
 
3938
144 364 0 0 Box fill
3939
 
3940
 
3941
 
3942
0.501961 0.501961 0.501961 SetFgColor
3943
 
3944
144 364 0 0 Box fill
3945
 
3946
 
3947
 
3948
0.501961 0.501961 0.501961 SetFgColor
3949
 
3950
144 364 0 0 Box fill
3951
 
3952
 
3953
 
3954
0.501961 0.501961 0.501961 SetFgColor
3955
 
3956
145 364 0 0 Box fill
3957
 
3958
 
3959
 
3960
0.501961 0.501961 0.501961 SetFgColor
3961
 
3962
145 364 0 0 Box fill
3963
 
3964
 
3965
 
3966
0.501961 0.501961 0.501961 SetFgColor
3967
 
3968
145 364 0 0 Box fill
3969
 
3970
 
3971
 
3972
0.501961 0.501961 0.501961 SetFgColor
3973
 
3974
145 353 0 11 Box fill
3975
 
3976
 
3977
 
3978
0.501961 0.501961 0.501961 SetFgColor
3979
 
3980
145 364 0 0 Box fill
3981
 
3982
 
3983
 
3984
0.501961 0.501961 0.501961 SetFgColor
3985
 
3986
146 364 0 0 Box fill
3987
 
3988
 
3989
 
3990
0.501961 0.501961 0.501961 SetFgColor
3991
 
3992
146 364 0 0 Box fill
3993
 
3994
 
3995
 
3996
0.501961 0.501961 0.501961 SetFgColor
3997
 
3998
146 364 0 0 Box fill
3999
 
4000
 
4001
 
4002
0.501961 0.501961 0.501961 SetFgColor
4003
 
4004
146 364 0 0 Box fill
4005
 
4006
 
4007
 
4008
0.501961 0.501961 0.501961 SetFgColor
4009
 
4010
147 364 0 0 Box fill
4011
 
4012
 
4013
 
4014
0.501961 0.501961 0.501961 SetFgColor
4015
 
4016
147 364 0 0 Box fill
4017
 
4018
 
4019
 
4020
0.501961 0.501961 0.501961 SetFgColor
4021
 
4022
147 364 0 0 Box fill
4023
 
4024
 
4025
 
4026
0.501961 0.501961 0.501961 SetFgColor
4027
 
4028
147 364 0 0 Box fill
4029
 
4030
 
4031
 
4032
0.501961 0.501961 0.501961 SetFgColor
4033
 
4034
148 364 0 0 Box fill
4035
 
4036
 
4037
 
4038
0.501961 0.501961 0.501961 SetFgColor
4039
 
4040
148 364 0 0 Box fill
4041
 
4042
 
4043
 
4044
0.501961 0.501961 0.501961 SetFgColor
4045
 
4046
148 364 0 0 Box fill
4047
 
4048
 
4049
 
4050
0.501961 0.501961 0.501961 SetFgColor
4051
 
4052
148 364 0 0 Box fill
4053
 
4054
 
4055
 
4056
0.501961 0.501961 0.501961 SetFgColor
4057
 
4058
149 364 0 0 Box fill
4059
 
4060
 
4061
 
4062
0.501961 0.501961 0.501961 SetFgColor
4063
 
4064
149 364 0 0 Box fill
4065
 
4066
 
4067
 
4068
0.501961 0.501961 0.501961 SetFgColor
4069
 
4070
149 364 0 0 Box fill
4071
 
4072
 
4073
 
4074
0.501961 0.501961 0.501961 SetFgColor
4075
 
4076
149 364 0 0 Box fill
4077
 
4078
 
4079
 
4080
0.501961 0.501961 0.501961 SetFgColor
4081
 
4082
150 364 0 0 Box fill
4083
 
4084
 
4085
 
4086
0.501961 0.501961 0.501961 SetFgColor
4087
 
4088
150 364 0 0 Box fill
4089
 
4090
 
4091
 
4092
0.501961 0.501961 0.501961 SetFgColor
4093
 
4094
150 364 0 0 Box fill
4095
 
4096
 
4097
 
4098
0.501961 0.501961 0.501961 SetFgColor
4099
 
4100
150 364 0 0 Box fill
4101
 
4102
 
4103
 
4104
0.501961 0.501961 0.501961 SetFgColor
4105
 
4106
151 364 0 0 Box fill
4107
 
4108
 
4109
 
4110
0.501961 0.501961 0.501961 SetFgColor
4111
 
4112
151 364 0 0 Box fill
4113
 
4114
 
4115
 
4116
0.501961 0.501961 0.501961 SetFgColor
4117
 
4118
151 364 0 0 Box fill
4119
 
4120
 
4121
 
4122
0.501961 0.501961 0.501961 SetFgColor
4123
 
4124
151 364 0 0 Box fill
4125
 
4126
 
4127
 
4128
0.501961 0.501961 0.501961 SetFgColor
4129
 
4130
152 364 0 0 Box fill
4131
 
4132
 
4133
 
4134
0.501961 0.501961 0.501961 SetFgColor
4135
 
4136
152 364 0 0 Box fill
4137
 
4138
 
4139
 
4140
0.501961 0.501961 0.501961 SetFgColor
4141
 
4142
152 364 0 0 Box fill
4143
 
4144
 
4145
 
4146
0.501961 0.501961 0.501961 SetFgColor
4147
 
4148
152 364 0 0 Box fill
4149
 
4150
 
4151
 
4152
0.501961 0.501961 0.501961 SetFgColor
4153
 
4154
153 364 0 0 Box fill
4155
 
4156
 
4157
 
4158
0.501961 0.501961 0.501961 SetFgColor
4159
 
4160
153 364 0 0 Box fill
4161
 
4162
 
4163
 
4164
0.501961 0.501961 0.501961 SetFgColor
4165
 
4166
153 364 0 0 Box fill
4167
 
4168
 
4169
 
4170
0.501961 0.501961 0.501961 SetFgColor
4171
 
4172
153 364 0 0 Box fill
4173
 
4174
 
4175
 
4176
0.501961 0.501961 0.501961 SetFgColor
4177
 
4178
154 364 0 0 Box fill
4179
 
4180
 
4181
 
4182
0.501961 0.501961 0.501961 SetFgColor
4183
 
4184
154 364 0 0 Box fill
4185
 
4186
 
4187
 
4188
0.501961 0.501961 0.501961 SetFgColor
4189
 
4190
154 364 0 0 Box fill
4191
 
4192
 
4193
 
4194
0.501961 0.501961 0.501961 SetFgColor
4195
 
4196
154 364 0 0 Box fill
4197
 
4198
 
4199
 
4200
0.501961 0.501961 0.501961 SetFgColor
4201
 
4202
155 364 0 0 Box fill
4203
 
4204
 
4205
 
4206
0.501961 0.501961 0.501961 SetFgColor
4207
 
4208
155 364 0 0 Box fill
4209
 
4210
 
4211
 
4212
0.501961 0.501961 0.501961 SetFgColor
4213
 
4214
155 364 0 0 Box fill
4215
 
4216
 
4217
 
4218
0.501961 0.501961 0.501961 SetFgColor
4219
 
4220
155 364 0 0 Box fill
4221
 
4222
 
4223
 
4224
0.501961 0.501961 0.501961 SetFgColor
4225
 
4226
156 364 0 0 Box fill
4227
 
4228
 
4229
 
4230
0.501961 0.501961 0.501961 SetFgColor
4231
 
4232
156 364 0 0 Box fill
4233
 
4234
 
4235
 
4236
0.501961 0.501961 0.501961 SetFgColor
4237
 
4238
156 364 0 0 Box fill
4239
 
4240
 
4241
 
4242
0.501961 0.501961 0.501961 SetFgColor
4243
 
4244
156 364 0 0 Box fill
4245
 
4246
 
4247
 
4248
0.501961 0.501961 0.501961 SetFgColor
4249
 
4250
157 364 0 0 Box fill
4251
 
4252
 
4253
 
4254
0.501961 0.501961 0.501961 SetFgColor
4255
 
4256
157 364 0 0 Box fill
4257
 
4258
 
4259
 
4260
0.501961 0.501961 0.501961 SetFgColor
4261
 
4262
157 364 0 0 Box fill
4263
 
4264
 
4265
 
4266
0.501961 0.501961 0.501961 SetFgColor
4267
 
4268
157 364 0 0 Box fill
4269
 
4270
 
4271
 
4272
0.501961 0.501961 0.501961 SetFgColor
4273
 
4274
158 364 0 0 Box fill
4275
 
4276
 
4277
 
4278
0.501961 0.501961 0.501961 SetFgColor
4279
 
4280
158 364 0 0 Box fill
4281
 
4282
 
4283
 
4284
0.501961 0.501961 0.501961 SetFgColor
4285
 
4286
158 364 0 0 Box fill
4287
 
4288
 
4289
 
4290
0.501961 0.501961 0.501961 SetFgColor
4291
 
4292
158 364 0 0 Box fill
4293
 
4294
 
4295
 
4296
0.501961 0.501961 0.501961 SetFgColor
4297
 
4298
159 364 0 0 Box fill
4299
 
4300
 
4301
 
4302
0.501961 0.501961 0.501961 SetFgColor
4303
 
4304
159 364 0 0 Box fill
4305
 
4306
 
4307
 
4308
0.501961 0.501961 0.501961 SetFgColor
4309
 
4310
159 364 0 0 Box fill
4311
 
4312
 
4313
 
4314
0.501961 0.501961 0.501961 SetFgColor
4315
 
4316
159 364 0 0 Box fill
4317
 
4318
 
4319
 
4320
0.501961 0.501961 0.501961 SetFgColor
4321
 
4322
160 364 0 0 Box fill
4323
 
4324
 
4325
 
4326
0.501961 0.501961 0.501961 SetFgColor
4327
 
4328
160 364 0 0 Box fill
4329
 
4330
 
4331
 
4332
0.501961 0.501961 0.501961 SetFgColor
4333
 
4334
160 364 0 0 Box fill
4335
 
4336
 
4337
 
4338
0.501961 0.501961 0.501961 SetFgColor
4339
 
4340
160 364 0 0 Box fill
4341
 
4342
 
4343
 
4344
0.501961 0.501961 0.501961 SetFgColor
4345
 
4346
161 364 0 0 Box fill
4347
 
4348
 
4349
 
4350
0.501961 0.501961 0.501961 SetFgColor
4351
 
4352
161 364 0 0 Box fill
4353
 
4354
 
4355
 
4356
0.501961 0.501961 0.501961 SetFgColor
4357
 
4358
161 364 0 0 Box fill
4359
 
4360
 
4361
 
4362
0.501961 0.501961 0.501961 SetFgColor
4363
 
4364
161 364 0 0 Box fill
4365
 
4366
 
4367
 
4368
0.501961 0.501961 0.501961 SetFgColor
4369
 
4370
162 364 0 0 Box fill
4371
 
4372
 
4373
 
4374
0.501961 0.501961 0.501961 SetFgColor
4375
 
4376
162 364 0 0 Box fill
4377
 
4378
 
4379
 
4380
0.501961 0.501961 0.501961 SetFgColor
4381
 
4382
162 364 0 0 Box fill
4383
 
4384
 
4385
 
4386
0.501961 0.501961 0.501961 SetFgColor
4387
 
4388
162 364 0 0 Box fill
4389
 
4390
 
4391
 
4392
0.501961 0.501961 0.501961 SetFgColor
4393
 
4394
163 364 0 0 Box fill
4395
 
4396
 
4397
 
4398
0.501961 0.501961 0.501961 SetFgColor
4399
 
4400
163 364 0 0 Box fill
4401
 
4402
 
4403
 
4404
0.501961 0.501961 0.501961 SetFgColor
4405
 
4406
163 364 0 0 Box fill
4407
 
4408
 
4409
 
4410
0.501961 0.501961 0.501961 SetFgColor
4411
 
4412
163 364 0 0 Box fill
4413
 
4414
 
4415
 
4416
0.501961 0.501961 0.501961 SetFgColor
4417
 
4418
164 364 0 0 Box fill
4419
 
4420
 
4421
 
4422
0.501961 0.501961 0.501961 SetFgColor
4423
 
4424
164 364 0 0 Box fill
4425
 
4426
 
4427
 
4428
0.501961 0.501961 0.501961 SetFgColor
4429
 
4430
164 364 0 0 Box fill
4431
 
4432
 
4433
 
4434
0.501961 0.501961 0.501961 SetFgColor
4435
 
4436
164 364 0 0 Box fill
4437
 
4438
 
4439
 
4440
0.501961 0.501961 0.501961 SetFgColor
4441
 
4442
165 364 0 0 Box fill
4443
 
4444
 
4445
 
4446
0.501961 0.501961 0.501961 SetFgColor
4447
 
4448
165 364 0 0 Box fill
4449
 
4450
 
4451
 
4452
0.501961 0.501961 0.501961 SetFgColor
4453
 
4454
165 364 0 0 Box fill
4455
 
4456
 
4457
 
4458
0.501961 0.501961 0.501961 SetFgColor
4459
 
4460
165 364 0 0 Box fill
4461
 
4462
 
4463
 
4464
0.501961 0.501961 0.501961 SetFgColor
4465
 
4466
166 364 0 0 Box fill
4467
 
4468
 
4469
 
4470
0.501961 0.501961 0.501961 SetFgColor
4471
 
4472
166 364 0 0 Box fill
4473
 
4474
 
4475
 
4476
0.501961 0.501961 0.501961 SetFgColor
4477
 
4478
166 364 0 0 Box fill
4479
 
4480
 
4481
 
4482
0.501961 0.501961 0.501961 SetFgColor
4483
 
4484
166 364 0 0 Box fill
4485
 
4486
 
4487
 
4488
0.501961 0.501961 0.501961 SetFgColor
4489
 
4490
166 364 0 0 Box fill
4491
 
4492
 
4493
 
4494
0.501961 0.501961 0.501961 SetFgColor
4495
 
4496
167 364 0 0 Box fill
4497
 
4498
 
4499
 
4500
0.501961 0.501961 0.501961 SetFgColor
4501
 
4502
167 364 0 0 Box fill
4503
 
4504
 
4505
 
4506
0.501961 0.501961 0.501961 SetFgColor
4507
 
4508
167 364 0 0 Box fill
4509
 
4510
 
4511
 
4512
0.501961 0.501961 0.501961 SetFgColor
4513
 
4514
167 364 0 0 Box fill
4515
 
4516
 
4517
 
4518
0.501961 0.501961 0.501961 SetFgColor
4519
 
4520
168 364 0 0 Box fill
4521
 
4522
 
4523
 
4524
0.501961 0.501961 0.501961 SetFgColor
4525
 
4526
168 364 0 0 Box fill
4527
 
4528
 
4529
 
4530
0.501961 0.501961 0.501961 SetFgColor
4531
 
4532
168 364 0 0 Box fill
4533
 
4534
 
4535
 
4536
0.501961 0.501961 0.501961 SetFgColor
4537
 
4538
168 364 0 0 Box fill
4539
 
4540
 
4541
 
4542
0.501961 0.501961 0.501961 SetFgColor
4543
 
4544
169 364 0 0 Box fill
4545
 
4546
 
4547
 
4548
0.501961 0.501961 0.501961 SetFgColor
4549
 
4550
169 364 0 0 Box fill
4551
 
4552
 
4553
 
4554
0.501961 0.501961 0.501961 SetFgColor
4555
 
4556
169 364 0 0 Box fill
4557
 
4558
 
4559
 
4560
0.501961 0.501961 0.501961 SetFgColor
4561
 
4562
169 364 0 0 Box fill
4563
 
4564
 
4565
 
4566
0.501961 0.501961 0.501961 SetFgColor
4567
 
4568
170 364 0 0 Box fill
4569
 
4570
 
4571
 
4572
0.501961 0.501961 0.501961 SetFgColor
4573
 
4574
170 364 0 0 Box fill
4575
 
4576
 
4577
 
4578
0.501961 0.501961 0.501961 SetFgColor
4579
 
4580
170 364 0 0 Box fill
4581
 
4582
 
4583
 
4584
0.501961 0.501961 0.501961 SetFgColor
4585
 
4586
170 364 0 0 Box fill
4587
 
4588
 
4589
 
4590
0.501961 0.501961 0.501961 SetFgColor
4591
 
4592
171 364 0 0 Box fill
4593
 
4594
 
4595
 
4596
0.501961 0.501961 0.501961 SetFgColor
4597
 
4598
171 364 0 0 Box fill
4599
 
4600
 
4601
 
4602
0.501961 0.501961 0.501961 SetFgColor
4603
 
4604
171 364 0 0 Box fill
4605
 
4606
 
4607
 
4608
0.501961 0.501961 0.501961 SetFgColor
4609
 
4610
171 364 0 0 Box fill
4611
 
4612
 
4613
 
4614
0.501961 0.501961 0.501961 SetFgColor
4615
 
4616
172 364 0 0 Box fill
4617
 
4618
 
4619
 
4620
0.501961 0.501961 0.501961 SetFgColor
4621
 
4622
172 364 0 0 Box fill
4623
 
4624
 
4625
 
4626
0.501961 0.501961 0.501961 SetFgColor
4627
 
4628
172 364 0 0 Box fill
4629
 
4630
 
4631
 
4632
0.501961 0.501961 0.501961 SetFgColor
4633
 
4634
172 364 0 0 Box fill
4635
 
4636
 
4637
 
4638
0.501961 0.501961 0.501961 SetFgColor
4639
 
4640
173 364 0 0 Box fill
4641
 
4642
 
4643
 
4644
0.501961 0.501961 0.501961 SetFgColor
4645
 
4646
173 364 0 0 Box fill
4647
 
4648
 
4649
 
4650
0.501961 0.501961 0.501961 SetFgColor
4651
 
4652
173 364 0 0 Box fill
4653
 
4654
 
4655
 
4656
0.501961 0.501961 0.501961 SetFgColor
4657
 
4658
173 364 0 0 Box fill
4659
 
4660
 
4661
 
4662
0.501961 0.501961 0.501961 SetFgColor
4663
 
4664
174 364 0 0 Box fill
4665
 
4666
 
4667
 
4668
0.501961 0.501961 0.501961 SetFgColor
4669
 
4670
174 364 0 0 Box fill
4671
 
4672
 
4673
 
4674
0.501961 0.501961 0.501961 SetFgColor
4675
 
4676
174 364 0 0 Box fill
4677
 
4678
 
4679
 
4680
0.501961 0.501961 0.501961 SetFgColor
4681
 
4682
174 364 0 0 Box fill
4683
 
4684
 
4685
 
4686
0.501961 0.501961 0.501961 SetFgColor
4687
 
4688
175 364 0 0 Box fill
4689
 
4690
 
4691
 
4692
0.501961 0.501961 0.501961 SetFgColor
4693
 
4694
175 364 0 0 Box fill
4695
 
4696
 
4697
 
4698
0.501961 0.501961 0.501961 SetFgColor
4699
 
4700
175 364 0 0 Box fill
4701
 
4702
 
4703
 
4704
0.501961 0.501961 0.501961 SetFgColor
4705
 
4706
175 364 0 0 Box fill
4707
 
4708
 
4709
 
4710
0.501961 0.501961 0.501961 SetFgColor
4711
 
4712
176 364 0 0 Box fill
4713
 
4714
 
4715
 
4716
0.501961 0.501961 0.501961 SetFgColor
4717
 
4718
176 364 0 0 Box fill
4719
 
4720
 
4721
 
4722
0.501961 0.501961 0.501961 SetFgColor
4723
 
4724
176 364 0 0 Box fill
4725
 
4726
 
4727
 
4728
0.501961 0.501961 0.501961 SetFgColor
4729
 
4730
176 364 0 0 Box fill
4731
 
4732
 
4733
 
4734
0.501961 0.501961 0.501961 SetFgColor
4735
 
4736
177 364 0 0 Box fill
4737
 
4738
 
4739
 
4740
0.501961 0.501961 0.501961 SetFgColor
4741
 
4742
177 364 0 0 Box fill
4743
 
4744
 
4745
 
4746
0.501961 0.501961 0.501961 SetFgColor
4747
 
4748
177 364 0 0 Box fill
4749
 
4750
 
4751
 
4752
0.501961 0.501961 0.501961 SetFgColor
4753
 
4754
177 364 0 0 Box fill
4755
 
4756
 
4757
 
4758
0.501961 0.501961 0.501961 SetFgColor
4759
 
4760
178 364 0 0 Box fill
4761
 
4762
 
4763
 
4764
0.501961 0.501961 0.501961 SetFgColor
4765
 
4766
178 364 0 0 Box fill
4767
 
4768
 
4769
 
4770
0.501961 0.501961 0.501961 SetFgColor
4771
 
4772
178 364 0 0 Box fill
4773
 
4774
 
4775
 
4776
0.501961 0.501961 0.501961 SetFgColor
4777
 
4778
178 364 0 0 Box fill
4779
 
4780
 
4781
 
4782
0.501961 0.501961 0.501961 SetFgColor
4783
 
4784
179 364 0 0 Box fill
4785
 
4786
 
4787
 
4788
0.501961 0.501961 0.501961 SetFgColor
4789
 
4790
179 364 0 0 Box fill
4791
 
4792
 
4793
 
4794
0.501961 0.501961 0.501961 SetFgColor
4795
 
4796
179 364 0 0 Box fill
4797
 
4798
 
4799
 
4800
0.501961 0.501961 0.501961 SetFgColor
4801
 
4802
179 364 0 0 Box fill
4803
 
4804
 
4805
 
4806
0.501961 0.501961 0.501961 SetFgColor
4807
 
4808
180 364 0 0 Box fill
4809
 
4810
 
4811
 
4812
0.501961 0.501961 0.501961 SetFgColor
4813
 
4814
180 364 0 0 Box fill
4815
 
4816
 
4817
 
4818
0.501961 0.501961 0.501961 SetFgColor
4819
 
4820
180 364 0 0 Box fill
4821
 
4822
 
4823
 
4824
0.501961 0.501961 0.501961 SetFgColor
4825
 
4826
180 364 0 0 Box fill
4827
 
4828
 
4829
 
4830
0.501961 0.501961 0.501961 SetFgColor
4831
 
4832
181 364 0 0 Box fill
4833
 
4834
 
4835
 
4836
0.501961 0.501961 0.501961 SetFgColor
4837
 
4838
181 364 0 0 Box fill
4839
 
4840
 
4841
 
4842
0.501961 0.501961 0.501961 SetFgColor
4843
 
4844
181 364 0 0 Box fill
4845
 
4846
 
4847
 
4848
0.501961 0.501961 0.501961 SetFgColor
4849
 
4850
181 364 0 0 Box fill
4851
 
4852
 
4853
 
4854
0.501961 0.501961 0.501961 SetFgColor
4855
 
4856
182 364 0 0 Box fill
4857
 
4858
 
4859
 
4860
0.501961 0.501961 0.501961 SetFgColor
4861
 
4862
182 364 0 0 Box fill
4863
 
4864
 
4865
 
4866
0.501961 0.501961 0.501961 SetFgColor
4867
 
4868
182 364 0 0 Box fill
4869
 
4870
 
4871
 
4872
0.501961 0.501961 0.501961 SetFgColor
4873
 
4874
182 364 0 0 Box fill
4875
 
4876
 
4877
 
4878
0.501961 0.501961 0.501961 SetFgColor
4879
 
4880
183 364 0 0 Box fill
4881
 
4882
 
4883
 
4884
0.501961 0.501961 0.501961 SetFgColor
4885
 
4886
183 364 0 0 Box fill
4887
 
4888
 
4889
 
4890
0.501961 0.501961 0.501961 SetFgColor
4891
 
4892
183 364 0 0 Box fill
4893
 
4894
 
4895
 
4896
0.501961 0.501961 0.501961 SetFgColor
4897
 
4898
183 364 0 0 Box fill
4899
 
4900
 
4901
 
4902
0.501961 0.501961 0.501961 SetFgColor
4903
 
4904
184 364 0 0 Box fill
4905
 
4906
 
4907
 
4908
0.501961 0.501961 0.501961 SetFgColor
4909
 
4910
184 364 0 0 Box fill
4911
 
4912
 
4913
 
4914
0.501961 0.501961 0.501961 SetFgColor
4915
 
4916
184 364 0 0 Box fill
4917
 
4918
 
4919
 
4920
0.501961 0.501961 0.501961 SetFgColor
4921
 
4922
184 364 0 0 Box fill
4923
 
4924
 
4925
 
4926
0.501961 0.501961 0.501961 SetFgColor
4927
 
4928
185 364 0 0 Box fill
4929
 
4930
 
4931
 
4932
0.501961 0.501961 0.501961 SetFgColor
4933
 
4934
185 364 0 0 Box fill
4935
 
4936
 
4937
 
4938
0.501961 0.501961 0.501961 SetFgColor
4939
 
4940
185 364 0 0 Box fill
4941
 
4942
 
4943
 
4944
0.501961 0.501961 0.501961 SetFgColor
4945
 
4946
185 364 0 0 Box fill
4947
 
4948
 
4949
 
4950
0.501961 0.501961 0.501961 SetFgColor
4951
 
4952
186 364 0 0 Box fill
4953
 
4954
 
4955
 
4956
0.501961 0.501961 0.501961 SetFgColor
4957
 
4958
186 364 0 0 Box fill
4959
 
4960
 
4961
 
4962
0.501961 0.501961 0.501961 SetFgColor
4963
 
4964
186 364 0 0 Box fill
4965
 
4966
 
4967
 
4968
0.501961 0.501961 0.501961 SetFgColor
4969
 
4970
186 364 0 0 Box fill
4971
 
4972
 
4973
 
4974
0.501961 0.501961 0.501961 SetFgColor
4975
 
4976
187 364 0 0 Box fill
4977
 
4978
 
4979
 
4980
0.501961 0.501961 0.501961 SetFgColor
4981
 
4982
187 364 0 0 Box fill
4983
 
4984
 
4985
 
4986
0.501961 0.501961 0.501961 SetFgColor
4987
 
4988
187 364 0 0 Box fill
4989
 
4990
 
4991
 
4992
0.501961 0.501961 0.501961 SetFgColor
4993
 
4994
187 364 0 0 Box fill
4995
 
4996
 
4997
 
4998
0.501961 0.501961 0.501961 SetFgColor
4999
 
5000
187 364 0 0 Box fill
5001
 
5002
 
5003
 
5004
0.501961 0.501961 0.501961 SetFgColor
5005
 
5006
188 364 0 0 Box fill
5007
 
5008
 
5009
 
5010
0.501961 0.501961 0.501961 SetFgColor
5011
 
5012
188 364 0 0 Box fill
5013
 
5014
 
5015
 
5016
0.501961 0.501961 0.501961 SetFgColor
5017
 
5018
188 364 0 0 Box fill
5019
 
5020
 
5021
 
5022
0.501961 0.501961 0.501961 SetFgColor
5023
 
5024
188 364 0 0 Box fill
5025
 
5026
 
5027
 
5028
0.501961 0.501961 0.501961 SetFgColor
5029
 
5030
189 364 0 0 Box fill
5031
 
5032
 
5033
 
5034
0.501961 0.501961 0.501961 SetFgColor
5035
 
5036
189 364 0 0 Box fill
5037
 
5038
 
5039
 
5040
0.501961 0.501961 0.501961 SetFgColor
5041
 
5042
189 364 0 0 Box fill
5043
 
5044
 
5045
 
5046
0.501961 0.501961 0.501961 SetFgColor
5047
 
5048
189 364 0 0 Box fill
5049
 
5050
 
5051
 
5052
0.501961 0.501961 0.501961 SetFgColor
5053
 
5054
190 364 0 0 Box fill
5055
 
5056
 
5057
 
5058
0.501961 0.501961 0.501961 SetFgColor
5059
 
5060
190 364 0 0 Box fill
5061
 
5062
 
5063
 
5064
0.501961 0.501961 0.501961 SetFgColor
5065
 
5066
190 364 0 0 Box fill
5067
 
5068
 
5069
 
5070
0.501961 0.501961 0.501961 SetFgColor
5071
 
5072
190 364 0 0 Box fill
5073
 
5074
 
5075
 
5076
0.501961 0.501961 0.501961 SetFgColor
5077
 
5078
191 364 0 0 Box fill
5079
 
5080
 
5081
 
5082
0.501961 0.501961 0.501961 SetFgColor
5083
 
5084
191 364 0 0 Box fill
5085
 
5086
 
5087
 
5088
0.501961 0.501961 0.501961 SetFgColor
5089
 
5090
191 364 0 0 Box fill
5091
 
5092
 
5093
 
5094
0.501961 0.501961 0.501961 SetFgColor
5095
 
5096
191 364 0 0 Box fill
5097
 
5098
 
5099
 
5100
0.501961 0.501961 0.501961 SetFgColor
5101
 
5102
192 364 0 0 Box fill
5103
 
5104
 
5105
 
5106
0.501961 0.501961 0.501961 SetFgColor
5107
 
5108
192 364 0 0 Box fill
5109
 
5110
 
5111
 
5112
0.501961 0.501961 0.501961 SetFgColor
5113
 
5114
192 364 0 0 Box fill
5115
 
5116
 
5117
 
5118
0.501961 0.501961 0.501961 SetFgColor
5119
 
5120
192 364 0 0 Box fill
5121
 
5122
 
5123
 
5124
0.501961 0.501961 0.501961 SetFgColor
5125
 
5126
193 364 0 0 Box fill
5127
 
5128
 
5129
 
5130
0.501961 0.501961 0.501961 SetFgColor
5131
 
5132
193 364 0 0 Box fill
5133
 
5134
 
5135
 
5136
0.501961 0.501961 0.501961 SetFgColor
5137
 
5138
193 364 0 0 Box fill
5139
 
5140
 
5141
 
5142
0.501961 0.501961 0.501961 SetFgColor
5143
 
5144
193 364 0 0 Box fill
5145
 
5146
 
5147
 
5148
0.501961 0.501961 0.501961 SetFgColor
5149
 
5150
194 364 0 0 Box fill
5151
 
5152
 
5153
 
5154
0.501961 0.501961 0.501961 SetFgColor
5155
 
5156
194 364 0 0 Box fill
5157
 
5158
 
5159
 
5160
0.501961 0.501961 0.501961 SetFgColor
5161
 
5162
194 364 0 0 Box fill
5163
 
5164
 
5165
 
5166
0.501961 0.501961 0.501961 SetFgColor
5167
 
5168
194 364 0 0 Box fill
5169
 
5170
 
5171
 
5172
0.501961 0.501961 0.501961 SetFgColor
5173
 
5174
195 364 0 0 Box fill
5175
 
5176
 
5177
 
5178
0.501961 0.501961 0.501961 SetFgColor
5179
 
5180
195 364 0 0 Box fill
5181
 
5182
 
5183
 
5184
0.501961 0.501961 0.501961 SetFgColor
5185
 
5186
195 364 0 0 Box fill
5187
 
5188
 
5189
 
5190
0.501961 0.501961 0.501961 SetFgColor
5191
 
5192
195 364 0 0 Box fill
5193
 
5194
 
5195
 
5196
0.501961 0.501961 0.501961 SetFgColor
5197
 
5198
196 364 0 0 Box fill
5199
 
5200
 
5201
 
5202
0.501961 0.501961 0.501961 SetFgColor
5203
 
5204
196 364 0 0 Box fill
5205
 
5206
 
5207
 
5208
0.501961 0.501961 0.501961 SetFgColor
5209
 
5210
196 364 0 0 Box fill
5211
 
5212
 
5213
 
5214
0.501961 0.501961 0.501961 SetFgColor
5215
 
5216
196 364 0 0 Box fill
5217
 
5218
 
5219
 
5220
0.501961 0.501961 0.501961 SetFgColor
5221
 
5222
197 364 0 0 Box fill
5223
 
5224
 
5225
 
5226
0.501961 0.501961 0.501961 SetFgColor
5227
 
5228
197 364 0 0 Box fill
5229
 
5230
 
5231
 
5232
0.501961 0.501961 0.501961 SetFgColor
5233
 
5234
197 364 0 0 Box fill
5235
 
5236
 
5237
 
5238
0.501961 0.501961 0.501961 SetFgColor
5239
 
5240
197 364 0 0 Box fill
5241
 
5242
 
5243
 
5244
0.501961 0.501961 0.501961 SetFgColor
5245
 
5246
198 364 0 0 Box fill
5247
 
5248
 
5249
 
5250
0.501961 0.501961 0.501961 SetFgColor
5251
 
5252
198 364 0 0 Box fill
5253
 
5254
 
5255
 
5256
0.501961 0.501961 0.501961 SetFgColor
5257
 
5258
198 364 0 0 Box fill
5259
 
5260
 
5261
 
5262
0.501961 0.501961 0.501961 SetFgColor
5263
 
5264
198 364 0 0 Box fill
5265
 
5266
 
5267
 
5268
0.501961 0.501961 0.501961 SetFgColor
5269
 
5270
199 364 0 0 Box fill
5271
 
5272
 
5273
 
5274
0.501961 0.501961 0.501961 SetFgColor
5275
 
5276
199 364 0 0 Box fill
5277
 
5278
 
5279
 
5280
0.501961 0.501961 0.501961 SetFgColor
5281
 
5282
199 364 0 0 Box fill
5283
 
5284
 
5285
 
5286
0.501961 0.501961 0.501961 SetFgColor
5287
 
5288
199 364 0 0 Box fill
5289
 
5290
 
5291
 
5292
0.501961 0.501961 0.501961 SetFgColor
5293
 
5294
200 364 0 0 Box fill
5295
 
5296
 
5297
 
5298
0.501961 0.501961 0.501961 SetFgColor
5299
 
5300
200 364 0 0 Box fill
5301
 
5302
 
5303
 
5304
0.501961 0.501961 0.501961 SetFgColor
5305
 
5306
200 364 0 0 Box fill
5307
 
5308
 
5309
 
5310
0.501961 0.501961 0.501961 SetFgColor
5311
 
5312
200 364 0 0 Box fill
5313
 
5314
 
5315
 
5316
0.501961 0.501961 0.501961 SetFgColor
5317
 
5318
201 364 0 0 Box fill
5319
 
5320
 
5321
 
5322
0.501961 0.501961 0.501961 SetFgColor
5323
 
5324
201 364 0 0 Box fill
5325
 
5326
 
5327
 
5328
0.501961 0.501961 0.501961 SetFgColor
5329
 
5330
201 364 0 0 Box fill
5331
 
5332
 
5333
 
5334
0.501961 0.501961 0.501961 SetFgColor
5335
 
5336
201 364 0 0 Box fill
5337
 
5338
 
5339
 
5340
0.501961 0.501961 0.501961 SetFgColor
5341
 
5342
202 364 0 0 Box fill
5343
 
5344
 
5345
 
5346
0.501961 0.501961 0.501961 SetFgColor
5347
 
5348
202 364 0 0 Box fill
5349
 
5350
 
5351
 
5352
0.501961 0.501961 0.501961 SetFgColor
5353
 
5354
202 364 0 0 Box fill
5355
 
5356
 
5357
 
5358
0.501961 0.501961 0.501961 SetFgColor
5359
 
5360
202 364 0 0 Box fill
5361
 
5362
 
5363
 
5364
0.501961 0.501961 0.501961 SetFgColor
5365
 
5366
203 364 0 0 Box fill
5367
 
5368
 
5369
 
5370
0.501961 0.501961 0.501961 SetFgColor
5371
 
5372
203 364 0 0 Box fill
5373
 
5374
 
5375
 
5376
0.501961 0.501961 0.501961 SetFgColor
5377
 
5378
203 364 0 0 Box fill
5379
 
5380
 
5381
 
5382
0.501961 0.501961 0.501961 SetFgColor
5383
 
5384
203 364 0 0 Box fill
5385
 
5386
 
5387
 
5388
0.501961 0.501961 0.501961 SetFgColor
5389
 
5390
204 364 0 0 Box fill
5391
 
5392
 
5393
 
5394
0.501961 0.501961 0.501961 SetFgColor
5395
 
5396
204 364 0 0 Box fill
5397
 
5398
 
5399
 
5400
0.501961 0.501961 0.501961 SetFgColor
5401
 
5402
204 364 0 0 Box fill
5403
 
5404
 
5405
 
5406
0.501961 0.501961 0.501961 SetFgColor
5407
 
5408
204 364 0 0 Box fill
5409
 
5410
 
5411
 
5412
0.501961 0.501961 0.501961 SetFgColor
5413
 
5414
205 364 0 0 Box fill
5415
 
5416
 
5417
 
5418
0.501961 0.501961 0.501961 SetFgColor
5419
 
5420
205 364 0 0 Box fill
5421
 
5422
 
5423
 
5424
0.501961 0.501961 0.501961 SetFgColor
5425
 
5426
205 364 0 0 Box fill
5427
 
5428
 
5429
 
5430
0.501961 0.501961 0.501961 SetFgColor
5431
 
5432
205 364 0 0 Box fill
5433
 
5434
 
5435
 
5436
0.501961 0.501961 0.501961 SetFgColor
5437
 
5438
206 364 0 0 Box fill
5439
 
5440
 
5441
 
5442
0.501961 0.501961 0.501961 SetFgColor
5443
 
5444
206 364 0 0 Box fill
5445
 
5446
 
5447
 
5448
0.501961 0.501961 0.501961 SetFgColor
5449
 
5450
206 364 0 0 Box fill
5451
 
5452
 
5453
 
5454
0.501961 0.501961 0.501961 SetFgColor
5455
 
5456
206 364 0 0 Box fill
5457
 
5458
 
5459
 
5460
0.501961 0.501961 0.501961 SetFgColor
5461
 
5462
207 364 0 0 Box fill
5463
 
5464
 
5465
 
5466
0.501961 0.501961 0.501961 SetFgColor
5467
 
5468
207 364 0 0 Box fill
5469
 
5470
 
5471
 
5472
0.501961 0.501961 0.501961 SetFgColor
5473
 
5474
207 364 0 0 Box fill
5475
 
5476
 
5477
 
5478
0.501961 0.501961 0.501961 SetFgColor
5479
 
5480
207 364 0 0 Box fill
5481
 
5482
 
5483
 
5484
0.501961 0.501961 0.501961 SetFgColor
5485
 
5486
207 364 0 0 Box fill
5487
 
5488
 
5489
 
5490
0.501961 0.501961 0.501961 SetFgColor
5491
 
5492
208 364 0 0 Box fill
5493
 
5494
 
5495
 
5496
0.501961 0.501961 0.501961 SetFgColor
5497
 
5498
208 364 0 0 Box fill
5499
 
5500
 
5501
 
5502
0.501961 0.501961 0.501961 SetFgColor
5503
 
5504
208 364 0 0 Box fill
5505
 
5506
 
5507
 
5508
0.501961 0.501961 0.501961 SetFgColor
5509
 
5510
208 364 0 0 Box fill
5511
 
5512
 
5513
 
5514
0.501961 0.501961 0.501961 SetFgColor
5515
 
5516
209 364 0 0 Box fill
5517
 
5518
 
5519
 
5520
0.501961 0.501961 0.501961 SetFgColor
5521
 
5522
209 364 0 0 Box fill
5523
 
5524
 
5525
 
5526
0.501961 0.501961 0.501961 SetFgColor
5527
 
5528
209 364 0 0 Box fill
5529
 
5530
 
5531
 
5532
0.501961 0.501961 0.501961 SetFgColor
5533
 
5534
209 364 0 0 Box fill
5535
 
5536
 
5537
 
5538
0.501961 0.501961 0.501961 SetFgColor
5539
 
5540
210 364 0 0 Box fill
5541
 
5542
 
5543
 
5544
0.501961 0.501961 0.501961 SetFgColor
5545
 
5546
210 364 0 0 Box fill
5547
 
5548
 
5549
 
5550
0.501961 0.501961 0.501961 SetFgColor
5551
 
5552
210 364 0 0 Box fill
5553
 
5554
 
5555
 
5556
0.501961 0.501961 0.501961 SetFgColor
5557
 
5558
210 364 0 0 Box fill
5559
 
5560
 
5561
 
5562
0.501961 0.501961 0.501961 SetFgColor
5563
 
5564
211 364 0 0 Box fill
5565
 
5566
 
5567
 
5568
0.501961 0.501961 0.501961 SetFgColor
5569
 
5570
211 364 0 0 Box fill
5571
 
5572
 
5573
 
5574
0.501961 0.501961 0.501961 SetFgColor
5575
 
5576
211 364 0 0 Box fill
5577
 
5578
 
5579
 
5580
0.501961 0.501961 0.501961 SetFgColor
5581
 
5582
211 364 0 0 Box fill
5583
 
5584
 
5585
 
5586
0.501961 0.501961 0.501961 SetFgColor
5587
 
5588
212 364 0 0 Box fill
5589
 
5590
 
5591
 
5592
0.501961 0.501961 0.501961 SetFgColor
5593
 
5594
212 364 0 0 Box fill
5595
 
5596
 
5597
 
5598
0.501961 0.501961 0.501961 SetFgColor
5599
 
5600
212 364 0 0 Box fill
5601
 
5602
 
5603
 
5604
0.501961 0.501961 0.501961 SetFgColor
5605
 
5606
212 364 0 0 Box fill
5607
 
5608
 
5609
 
5610
0.501961 0.501961 0.501961 SetFgColor
5611
 
5612
213 364 0 0 Box fill
5613
 
5614
 
5615
 
5616
0.501961 0.501961 0.501961 SetFgColor
5617
 
5618
213 364 0 0 Box fill
5619
 
5620
 
5621
 
5622
0.501961 0.501961 0.501961 SetFgColor
5623
 
5624
213 364 0 0 Box fill
5625
 
5626
 
5627
 
5628
0.501961 0.501961 0.501961 SetFgColor
5629
 
5630
213 364 0 0 Box fill
5631
 
5632
 
5633
 
5634
0.501961 0.501961 0.501961 SetFgColor
5635
 
5636
214 364 0 0 Box fill
5637
 
5638
 
5639
 
5640
0.501961 0.501961 0.501961 SetFgColor
5641
 
5642
214 364 0 0 Box fill
5643
 
5644
 
5645
 
5646
0.501961 0.501961 0.501961 SetFgColor
5647
 
5648
214 364 0 0 Box fill
5649
 
5650
 
5651
 
5652
0.501961 0.501961 0.501961 SetFgColor
5653
 
5654
214 364 0 0 Box fill
5655
 
5656
 
5657
 
5658
0.501961 0.501961 0.501961 SetFgColor
5659
 
5660
215 364 0 0 Box fill
5661
 
5662
 
5663
 
5664
0.501961 0.501961 0.501961 SetFgColor
5665
 
5666
215 364 0 0 Box fill
5667
 
5668
 
5669
 
5670
0.501961 0.501961 0.501961 SetFgColor
5671
 
5672
215 364 0 0 Box fill
5673
 
5674
 
5675
 
5676
0.501961 0.501961 0.501961 SetFgColor
5677
 
5678
215 364 0 0 Box fill
5679
 
5680
 
5681
 
5682
0.501961 0.501961 0.501961 SetFgColor
5683
 
5684
216 364 0 0 Box fill
5685
 
5686
 
5687
 
5688
0.501961 0.501961 0.501961 SetFgColor
5689
 
5690
216 364 0 0 Box fill
5691
 
5692
 
5693
 
5694
0.501961 0.501961 0.501961 SetFgColor
5695
 
5696
216 364 0 0 Box fill
5697
 
5698
 
5699
 
5700
0.501961 0.501961 0.501961 SetFgColor
5701
 
5702
216 364 0 0 Box fill
5703
 
5704
 
5705
 
5706
0.501961 0.501961 0.501961 SetFgColor
5707
 
5708
217 364 0 0 Box fill
5709
 
5710
 
5711
 
5712
0.501961 0.501961 0.501961 SetFgColor
5713
 
5714
217 364 0 0 Box fill
5715
 
5716
 
5717
 
5718
0.501961 0.501961 0.501961 SetFgColor
5719
 
5720
217 364 0 0 Box fill
5721
 
5722
 
5723
 
5724
0.501961 0.501961 0.501961 SetFgColor
5725
 
5726
217 364 0 0 Box fill
5727
 
5728
 
5729
 
5730
0.501961 0.501961 0.501961 SetFgColor
5731
 
5732
218 364 0 0 Box fill
5733
 
5734
 
5735
 
5736
0.501961 0.501961 0.501961 SetFgColor
5737
 
5738
218 364 0 0 Box fill
5739
 
5740
 
5741
 
5742
0.501961 0.501961 0.501961 SetFgColor
5743
 
5744
218 364 0 0 Box fill
5745
 
5746
 
5747
 
5748
0.501961 0.501961 0.501961 SetFgColor
5749
 
5750
218 364 0 0 Box fill
5751
 
5752
 
5753
 
5754
0.501961 0.501961 0.501961 SetFgColor
5755
 
5756
219 364 0 0 Box fill
5757
 
5758
 
5759
 
5760
0.501961 0.501961 0.501961 SetFgColor
5761
 
5762
219 364 0 0 Box fill
5763
 
5764
 
5765
 
5766
0.501961 0.501961 0.501961 SetFgColor
5767
 
5768
219 364 0 0 Box fill
5769
 
5770
 
5771
 
5772
0.501961 0.501961 0.501961 SetFgColor
5773
 
5774
219 364 0 0 Box fill
5775
 
5776
 
5777
 
5778
0.501961 0.501961 0.501961 SetFgColor
5779
 
5780
220 364 0 0 Box fill
5781
 
5782
 
5783
 
5784
0.501961 0.501961 0.501961 SetFgColor
5785
 
5786
220 364 0 0 Box fill
5787
 
5788
 
5789
 
5790
0.501961 0.501961 0.501961 SetFgColor
5791
 
5792
220 364 0 0 Box fill
5793
 
5794
 
5795
 
5796
0.501961 0.501961 0.501961 SetFgColor
5797
 
5798
220 364 0 0 Box fill
5799
 
5800
 
5801
 
5802
0.501961 0.501961 0.501961 SetFgColor
5803
 
5804
221 364 0 0 Box fill
5805
 
5806
 
5807
 
5808
0.501961 0.501961 0.501961 SetFgColor
5809
 
5810
221 364 0 0 Box fill
5811
 
5812
 
5813
 
5814
0.501961 0.501961 0.501961 SetFgColor
5815
 
5816
221 364 0 0 Box fill
5817
 
5818
 
5819
 
5820
0.501961 0.501961 0.501961 SetFgColor
5821
 
5822
221 364 0 0 Box fill
5823
 
5824
 
5825
 
5826
0.501961 0.501961 0.501961 SetFgColor
5827
 
5828
222 364 0 0 Box fill
5829
 
5830
 
5831
 
5832
0.501961 0.501961 0.501961 SetFgColor
5833
 
5834
222 364 0 0 Box fill
5835
 
5836
 
5837
 
5838
0.501961 0.501961 0.501961 SetFgColor
5839
 
5840
222 364 0 0 Box fill
5841
 
5842
 
5843
 
5844
0.501961 0.501961 0.501961 SetFgColor
5845
 
5846
222 364 0 0 Box fill
5847
 
5848
 
5849
 
5850
0.501961 0.501961 0.501961 SetFgColor
5851
 
5852
223 364 0 0 Box fill
5853
 
5854
 
5855
 
5856
0.501961 0.501961 0.501961 SetFgColor
5857
 
5858
223 364 0 0 Box fill
5859
 
5860
 
5861
 
5862
0.501961 0.501961 0.501961 SetFgColor
5863
 
5864
223 364 0 0 Box fill
5865
 
5866
 
5867
 
5868
0.501961 0.501961 0.501961 SetFgColor
5869
 
5870
223 364 0 0 Box fill
5871
 
5872
 
5873
 
5874
0.501961 0.501961 0.501961 SetFgColor
5875
 
5876
224 364 0 0 Box fill
5877
 
5878
 
5879
 
5880
0.501961 0.501961 0.501961 SetFgColor
5881
 
5882
224 364 0 0 Box fill
5883
 
5884
 
5885
 
5886
0.501961 0.501961 0.501961 SetFgColor
5887
 
5888
224 364 0 0 Box fill
5889
 
5890
 
5891
 
5892
0.501961 0.501961 0.501961 SetFgColor
5893
 
5894
224 364 0 0 Box fill
5895
 
5896
 
5897
 
5898
0.501961 0.501961 0.501961 SetFgColor
5899
 
5900
225 364 0 0 Box fill
5901
 
5902
 
5903
 
5904
0.501961 0.501961 0.501961 SetFgColor
5905
 
5906
225 364 0 0 Box fill
5907
 
5908
 
5909
 
5910
0.501961 0.501961 0.501961 SetFgColor
5911
 
5912
225 364 0 0 Box fill
5913
 
5914
 
5915
 
5916
0.501961 0.501961 0.501961 SetFgColor
5917
 
5918
225 364 0 0 Box fill
5919
 
5920
 
5921
 
5922
0.501961 0.501961 0.501961 SetFgColor
5923
 
5924
226 364 0 0 Box fill
5925
 
5926
 
5927
 
5928
0.501961 0.501961 0.501961 SetFgColor
5929
 
5930
226 364 0 0 Box fill
5931
 
5932
 
5933
 
5934
0.501961 0.501961 0.501961 SetFgColor
5935
 
5936
226 364 0 0 Box fill
5937
 
5938
 
5939
 
5940
0.501961 0.501961 0.501961 SetFgColor
5941
 
5942
226 364 0 0 Box fill
5943
 
5944
 
5945
 
5946
0.501961 0.501961 0.501961 SetFgColor
5947
 
5948
227 364 0 0 Box fill
5949
 
5950
 
5951
 
5952
0.501961 0.501961 0.501961 SetFgColor
5953
 
5954
227 364 0 0 Box fill
5955
 
5956
 
5957
 
5958
0.501961 0.501961 0.501961 SetFgColor
5959
 
5960
227 364 0 0 Box fill
5961
 
5962
 
5963
 
5964
0.501961 0.501961 0.501961 SetFgColor
5965
 
5966
227 364 0 0 Box fill
5967
 
5968
 
5969
 
5970
0.501961 0.501961 0.501961 SetFgColor
5971
 
5972
228 364 0 0 Box fill
5973
 
5974
 
5975
 
5976
0.501961 0.501961 0.501961 SetFgColor
5977
 
5978
228 364 0 0 Box fill
5979
 
5980
 
5981
 
5982
0.501961 0.501961 0.501961 SetFgColor
5983
 
5984
228 364 0 0 Box fill
5985
 
5986
 
5987
 
5988
0.501961 0.501961 0.501961 SetFgColor
5989
 
5990
228 364 0 0 Box fill
5991
 
5992
 
5993
 
5994
0.501961 0.501961 0.501961 SetFgColor
5995
 
5996
228 364 0 0 Box fill
5997
 
5998
 
5999
 
6000
0.501961 0.501961 0.501961 SetFgColor
6001
 
6002
229 364 0 0 Box fill
6003
 
6004
 
6005
 
6006
0.501961 0.501961 0.501961 SetFgColor
6007
 
6008
229 364 0 0 Box fill
6009
 
6010
 
6011
 
6012
0.501961 0.501961 0.501961 SetFgColor
6013
 
6014
229 364 0 0 Box fill
6015
 
6016
 
6017
 
6018
0.501961 0.501961 0.501961 SetFgColor
6019
 
6020
229 364 0 0 Box fill
6021
 
6022
 
6023
 
6024
0.501961 0.501961 0.501961 SetFgColor
6025
 
6026
230 364 0 0 Box fill
6027
 
6028
 
6029
 
6030
0.501961 0.501961 0.501961 SetFgColor
6031
 
6032
230 364 0 0 Box fill
6033
 
6034
 
6035
 
6036
0.501961 0.501961 0.501961 SetFgColor
6037
 
6038
230 364 0 0 Box fill
6039
 
6040
 
6041
 
6042
0.501961 0.501961 0.501961 SetFgColor
6043
 
6044
230 364 0 0 Box fill
6045
 
6046
 
6047
 
6048
0.501961 0.501961 0.501961 SetFgColor
6049
 
6050
231 364 0 0 Box fill
6051
 
6052
 
6053
 
6054
0.501961 0.501961 0.501961 SetFgColor
6055
 
6056
231 364 0 0 Box fill
6057
 
6058
 
6059
 
6060
0.501961 0.501961 0.501961 SetFgColor
6061
 
6062
231 364 0 0 Box fill
6063
 
6064
 
6065
 
6066
0.501961 0.501961 0.501961 SetFgColor
6067
 
6068
231 364 0 0 Box fill
6069
 
6070
 
6071
 
6072
0.501961 0.501961 0.501961 SetFgColor
6073
 
6074
232 364 0 0 Box fill
6075
 
6076
 
6077
 
6078
0.501961 0.501961 0.501961 SetFgColor
6079
 
6080
232 364 0 0 Box fill
6081
 
6082
 
6083
 
6084
0.501961 0.501961 0.501961 SetFgColor
6085
 
6086
232 364 0 0 Box fill
6087
 
6088
 
6089
 
6090
0.501961 0.501961 0.501961 SetFgColor
6091
 
6092
232 364 0 0 Box fill
6093
 
6094
 
6095
 
6096
0.501961 0.501961 0.501961 SetFgColor
6097
 
6098
233 364 0 0 Box fill
6099
 
6100
 
6101
 
6102
0.501961 0.501961 0.501961 SetFgColor
6103
 
6104
233 364 0 0 Box fill
6105
 
6106
 
6107
 
6108
0.501961 0.501961 0.501961 SetFgColor
6109
 
6110
233 364 0 0 Box fill
6111
 
6112
 
6113
 
6114
0.501961 0.501961 0.501961 SetFgColor
6115
 
6116
233 364 0 0 Box fill
6117
 
6118
 
6119
 
6120
0.501961 0.501961 0.501961 SetFgColor
6121
 
6122
234 364 0 0 Box fill
6123
 
6124
 
6125
 
6126
0.501961 0.501961 0.501961 SetFgColor
6127
 
6128
234 364 0 0 Box fill
6129
 
6130
 
6131
 
6132
0.501961 0.501961 0.501961 SetFgColor
6133
 
6134
234 364 0 0 Box fill
6135
 
6136
 
6137
 
6138
0.501961 0.501961 0.501961 SetFgColor
6139
 
6140
234 364 0 0 Box fill
6141
 
6142
 
6143
 
6144
0.501961 0.501961 0.501961 SetFgColor
6145
 
6146
235 364 0 0 Box fill
6147
 
6148
 
6149
 
6150
0.501961 0.501961 0.501961 SetFgColor
6151
 
6152
235 364 0 0 Box fill
6153
 
6154
 
6155
 
6156
0.501961 0.501961 0.501961 SetFgColor
6157
 
6158
235 364 0 0 Box fill
6159
 
6160
 
6161
 
6162
0.501961 0.501961 0.501961 SetFgColor
6163
 
6164
235 364 0 0 Box fill
6165
 
6166
 
6167
 
6168
0.501961 0.501961 0.501961 SetFgColor
6169
 
6170
236 364 0 0 Box fill
6171
 
6172
 
6173
 
6174
0.501961 0.501961 0.501961 SetFgColor
6175
 
6176
236 364 0 0 Box fill
6177
 
6178
 
6179
 
6180
0.501961 0.501961 0.501961 SetFgColor
6181
 
6182
236 364 0 0 Box fill
6183
 
6184
 
6185
 
6186
0.501961 0.501961 0.501961 SetFgColor
6187
 
6188
236 364 0 0 Box fill
6189
 
6190
 
6191
 
6192
0.501961 0.501961 0.501961 SetFgColor
6193
 
6194
237 364 0 0 Box fill
6195
 
6196
 
6197
 
6198
0.501961 0.501961 0.501961 SetFgColor
6199
 
6200
237 364 0 0 Box fill
6201
 
6202
 
6203
 
6204
0.501961 0.501961 0.501961 SetFgColor
6205
 
6206
237 364 0 0 Box fill
6207
 
6208
 
6209
 
6210
0.501961 0.501961 0.501961 SetFgColor
6211
 
6212
237 364 0 0 Box fill
6213
 
6214
 
6215
 
6216
0.501961 0.501961 0.501961 SetFgColor
6217
 
6218
238 364 0 0 Box fill
6219
 
6220
 
6221
 
6222
0.501961 0.501961 0.501961 SetFgColor
6223
 
6224
238 364 0 0 Box fill
6225
 
6226
 
6227
 
6228
0.501961 0.501961 0.501961 SetFgColor
6229
 
6230
238 364 0 0 Box fill
6231
 
6232
 
6233
 
6234
0.501961 0.501961 0.501961 SetFgColor
6235
 
6236
238 364 0 0 Box fill
6237
 
6238
 
6239
 
6240
0.501961 0.501961 0.501961 SetFgColor
6241
 
6242
239 364 0 0 Box fill
6243
 
6244
 
6245
 
6246
0.501961 0.501961 0.501961 SetFgColor
6247
 
6248
239 364 0 0 Box fill
6249
 
6250
 
6251
 
6252
0.501961 0.501961 0.501961 SetFgColor
6253
 
6254
239 364 0 0 Box fill
6255
 
6256
 
6257
 
6258
0.501961 0.501961 0.501961 SetFgColor
6259
 
6260
239 364 0 0 Box fill
6261
 
6262
 
6263
 
6264
0.501961 0.501961 0.501961 SetFgColor
6265
 
6266
240 364 0 0 Box fill
6267
 
6268
 
6269
 
6270
0.501961 0.501961 0.501961 SetFgColor
6271
 
6272
240 364 0 0 Box fill
6273
 
6274
 
6275
 
6276
0.501961 0.501961 0.501961 SetFgColor
6277
 
6278
240 364 0 0 Box fill
6279
 
6280
 
6281
 
6282
0.501961 0.501961 0.501961 SetFgColor
6283
 
6284
240 364 0 0 Box fill
6285
 
6286
 
6287
 
6288
0.501961 0.501961 0.501961 SetFgColor
6289
 
6290
241 364 0 0 Box fill
6291
 
6292
 
6293
 
6294
0.501961 0.501961 0.501961 SetFgColor
6295
 
6296
241 364 0 0 Box fill
6297
 
6298
 
6299
 
6300
0.501961 0.501961 0.501961 SetFgColor
6301
 
6302
241 364 0 0 Box fill
6303
 
6304
 
6305
 
6306
0.501961 0.501961 0.501961 SetFgColor
6307
 
6308
241 364 0 0 Box fill
6309
 
6310
 
6311
 
6312
0.501961 0.501961 0.501961 SetFgColor
6313
 
6314
242 364 0 0 Box fill
6315
 
6316
 
6317
 
6318
0.501961 0.501961 0.501961 SetFgColor
6319
 
6320
242 364 0 0 Box fill
6321
 
6322
 
6323
 
6324
0.501961 0.501961 0.501961 SetFgColor
6325
 
6326
242 364 0 0 Box fill
6327
 
6328
 
6329
 
6330
0.501961 0.501961 0.501961 SetFgColor
6331
 
6332
242 364 0 0 Box fill
6333
 
6334
 
6335
 
6336
0.501961 0.501961 0.501961 SetFgColor
6337
 
6338
243 364 0 0 Box fill
6339
 
6340
 
6341
 
6342
0.501961 0.501961 0.501961 SetFgColor
6343
 
6344
243 364 0 0 Box fill
6345
 
6346
 
6347
 
6348
0.501961 0.501961 0.501961 SetFgColor
6349
 
6350
243 364 0 0 Box fill
6351
 
6352
 
6353
 
6354
0.501961 0.501961 0.501961 SetFgColor
6355
 
6356
243 364 0 0 Box fill
6357
 
6358
 
6359
 
6360
0.501961 0.501961 0.501961 SetFgColor
6361
 
6362
244 364 0 0 Box fill
6363
 
6364
 
6365
 
6366
0.501961 0.501961 0.501961 SetFgColor
6367
 
6368
244 364 0 0 Box fill
6369
 
6370
 
6371
 
6372
0.501961 0.501961 0.501961 SetFgColor
6373
 
6374
244 364 0 0 Box fill
6375
 
6376
 
6377
 
6378
0.501961 0.501961 0.501961 SetFgColor
6379
 
6380
244 364 0 0 Box fill
6381
 
6382
 
6383
 
6384
0.501961 0.501961 0.501961 SetFgColor
6385
 
6386
245 364 0 0 Box fill
6387
 
6388
 
6389
 
6390
0.501961 0.501961 0.501961 SetFgColor
6391
 
6392
245 364 0 0 Box fill
6393
 
6394
 
6395
 
6396
0.501961 0.501961 0.501961 SetFgColor
6397
 
6398
245 364 0 0 Box fill
6399
 
6400
 
6401
 
6402
0.501961 0.501961 0.501961 SetFgColor
6403
 
6404
245 364 0 0 Box fill
6405
 
6406
 
6407
 
6408
0.501961 0.501961 0.501961 SetFgColor
6409
 
6410
246 364 0 0 Box fill
6411
 
6412
 
6413
 
6414
0.501961 0.501961 0.501961 SetFgColor
6415
 
6416
246 364 0 0 Box fill
6417
 
6418
 
6419
 
6420
0.501961 0.501961 0.501961 SetFgColor
6421
 
6422
246 364 0 0 Box fill
6423
 
6424
 
6425
 
6426
0.501961 0.501961 0.501961 SetFgColor
6427
 
6428
246 364 0 0 Box fill
6429
 
6430
 
6431
 
6432
0.501961 0.501961 0.501961 SetFgColor
6433
 
6434
247 364 0 0 Box fill
6435
 
6436
 
6437
 
6438
0.501961 0.501961 0.501961 SetFgColor
6439
 
6440
247 364 0 0 Box fill
6441
 
6442
 
6443
 
6444
0.501961 0.501961 0.501961 SetFgColor
6445
 
6446
247 364 0 0 Box fill
6447
 
6448
 
6449
 
6450
0.501961 0.501961 0.501961 SetFgColor
6451
 
6452
247 364 0 0 Box fill
6453
 
6454
 
6455
 
6456
0.501961 0.501961 0.501961 SetFgColor
6457
 
6458
248 364 0 0 Box fill
6459
 
6460
 
6461
 
6462
0.501961 0.501961 0.501961 SetFgColor
6463
 
6464
248 364 0 0 Box fill
6465
 
6466
 
6467
 
6468
0.501961 0.501961 0.501961 SetFgColor
6469
 
6470
248 364 0 0 Box fill
6471
 
6472
 
6473
 
6474
0.501961 0.501961 0.501961 SetFgColor
6475
 
6476
248 364 0 0 Box fill
6477
 
6478
 
6479
 
6480
0.501961 0.501961 0.501961 SetFgColor
6481
 
6482
248 364 0 0 Box fill
6483
 
6484
 
6485
 
6486
0.501961 0.501961 0.501961 SetFgColor
6487
 
6488
249 364 0 0 Box fill
6489
 
6490
 
6491
 
6492
0.501961 0.501961 0.501961 SetFgColor
6493
 
6494
249 364 0 0 Box fill
6495
 
6496
 
6497
 
6498
0.501961 0.501961 0.501961 SetFgColor
6499
 
6500
249 364 0 0 Box fill
6501
 
6502
 
6503
 
6504
0.501961 0.501961 0.501961 SetFgColor
6505
 
6506
249 364 0 0 Box fill
6507
 
6508
 
6509
 
6510
0.501961 0.501961 0.501961 SetFgColor
6511
 
6512
250 364 0 0 Box fill
6513
 
6514
 
6515
 
6516
0.501961 0.501961 0.501961 SetFgColor
6517
 
6518
250 364 0 0 Box fill
6519
 
6520
 
6521
 
6522
0.501961 0.501961 0.501961 SetFgColor
6523
 
6524
250 364 0 0 Box fill
6525
 
6526
 
6527
 
6528
0.501961 0.501961 0.501961 SetFgColor
6529
 
6530
250 364 0 0 Box fill
6531
 
6532
 
6533
 
6534
0.501961 0.501961 0.501961 SetFgColor
6535
 
6536
251 364 0 0 Box fill
6537
 
6538
 
6539
 
6540
0.501961 0.501961 0.501961 SetFgColor
6541
 
6542
251 364 0 0 Box fill
6543
 
6544
 
6545
 
6546
0.501961 0.501961 0.501961 SetFgColor
6547
 
6548
251 364 0 0 Box fill
6549
 
6550
 
6551
 
6552
0.501961 0.501961 0.501961 SetFgColor
6553
 
6554
251 364 0 0 Box fill
6555
 
6556
 
6557
 
6558
0.501961 0.501961 0.501961 SetFgColor
6559
 
6560
252 364 0 0 Box fill
6561
 
6562
 
6563
 
6564
0.501961 0.501961 0.501961 SetFgColor
6565
 
6566
252 364 0 0 Box fill
6567
 
6568
 
6569
 
6570
0.501961 0.501961 0.501961 SetFgColor
6571
 
6572
252 364 0 0 Box fill
6573
 
6574
 
6575
 
6576
0.501961 0.501961 0.501961 SetFgColor
6577
 
6578
252 364 0 0 Box fill
6579
 
6580
 
6581
 
6582
0.501961 0.501961 0.501961 SetFgColor
6583
 
6584
253 364 0 0 Box fill
6585
 
6586
 
6587
 
6588
0.501961 0.501961 0.501961 SetFgColor
6589
 
6590
253 364 0 0 Box fill
6591
 
6592
 
6593
 
6594
0.501961 0.501961 0.501961 SetFgColor
6595
 
6596
253 364 0 0 Box fill
6597
 
6598
 
6599
 
6600
0.501961 0.501961 0.501961 SetFgColor
6601
 
6602
253 364 0 0 Box fill
6603
 
6604
 
6605
 
6606
0.501961 0.501961 0.501961 SetFgColor
6607
 
6608
254 364 0 0 Box fill
6609
 
6610
 
6611
 
6612
0.501961 0.501961 0.501961 SetFgColor
6613
 
6614
254 364 0 0 Box fill
6615
 
6616
 
6617
 
6618
0.501961 0.501961 0.501961 SetFgColor
6619
 
6620
254 364 0 0 Box fill
6621
 
6622
 
6623
 
6624
0.501961 0.501961 0.501961 SetFgColor
6625
 
6626
254 364 0 0 Box fill
6627
 
6628
 
6629
 
6630
0.501961 0.501961 0.501961 SetFgColor
6631
 
6632
255 364 0 0 Box fill
6633
 
6634
 
6635
 
6636
0.501961 0.501961 0.501961 SetFgColor
6637
 
6638
255 364 0 0 Box fill
6639
 
6640
 
6641
 
6642
0.501961 0.501961 0.501961 SetFgColor
6643
 
6644
255 364 0 0 Box fill
6645
 
6646
 
6647
 
6648
0.501961 0.501961 0.501961 SetFgColor
6649
 
6650
255 364 0 0 Box fill
6651
 
6652
 
6653
 
6654
0.501961 0.501961 0.501961 SetFgColor
6655
 
6656
256 364 0 0 Box fill
6657
 
6658
 
6659
 
6660
0.501961 0.501961 0.501961 SetFgColor
6661
 
6662
256 364 0 0 Box fill
6663
 
6664
 
6665
 
6666
0.501961 0.501961 0.501961 SetFgColor
6667
 
6668
256 364 0 0 Box fill
6669
 
6670
 
6671
 
6672
0.501961 0.501961 0.501961 SetFgColor
6673
 
6674
256 364 0 0 Box fill
6675
 
6676
 
6677
 
6678
0.501961 0.501961 0.501961 SetFgColor
6679
 
6680
257 364 0 0 Box fill
6681
 
6682
 
6683
 
6684
0.501961 0.501961 0.501961 SetFgColor
6685
 
6686
257 364 0 0 Box fill
6687
 
6688
 
6689
 
6690
0.501961 0.501961 0.501961 SetFgColor
6691
 
6692
257 364 0 0 Box fill
6693
 
6694
 
6695
 
6696
0.501961 0.501961 0.501961 SetFgColor
6697
 
6698
257 364 0 0 Box fill
6699
 
6700
 
6701
 
6702
0.501961 0.501961 0.501961 SetFgColor
6703
 
6704
258 364 0 0 Box fill
6705
 
6706
 
6707
 
6708
0.501961 0.501961 0.501961 SetFgColor
6709
 
6710
258 364 0 0 Box fill
6711
 
6712
 
6713
 
6714
0.501961 0.501961 0.501961 SetFgColor
6715
 
6716
258 364 0 0 Box fill
6717
 
6718
 
6719
 
6720
0.501961 0.501961 0.501961 SetFgColor
6721
 
6722
258 364 0 0 Box fill
6723
 
6724
 
6725
 
6726
0.501961 0.501961 0.501961 SetFgColor
6727
 
6728
259 364 0 0 Box fill
6729
 
6730
 
6731
 
6732
0.501961 0.501961 0.501961 SetFgColor
6733
 
6734
259 364 0 0 Box fill
6735
 
6736
 
6737
 
6738
0.501961 0.501961 0.501961 SetFgColor
6739
 
6740
259 364 0 0 Box fill
6741
 
6742
 
6743
 
6744
0.501961 0.501961 0.501961 SetFgColor
6745
 
6746
259 364 0 0 Box fill
6747
 
6748
 
6749
 
6750
0.501961 0.501961 0.501961 SetFgColor
6751
 
6752
260 364 0 0 Box fill
6753
 
6754
 
6755
 
6756
0.501961 0.501961 0.501961 SetFgColor
6757
 
6758
260 364 0 0 Box fill
6759
 
6760
 
6761
 
6762
0.501961 0.501961 0.501961 SetFgColor
6763
 
6764
260 364 0 0 Box fill
6765
 
6766
 
6767
 
6768
0.501961 0.501961 0.501961 SetFgColor
6769
 
6770
260 364 0 0 Box fill
6771
 
6772
 
6773
 
6774
0.501961 0.501961 0.501961 SetFgColor
6775
 
6776
261 364 0 0 Box fill
6777
 
6778
 
6779
 
6780
0.501961 0.501961 0.501961 SetFgColor
6781
 
6782
261 364 0 0 Box fill
6783
 
6784
 
6785
 
6786
0.501961 0.501961 0.501961 SetFgColor
6787
 
6788
261 364 0 0 Box fill
6789
 
6790
 
6791
 
6792
0.501961 0.501961 0.501961 SetFgColor
6793
 
6794
261 364 0 0 Box fill
6795
 
6796
 
6797
 
6798
0.501961 0.501961 0.501961 SetFgColor
6799
 
6800
262 364 0 0 Box fill
6801
 
6802
 
6803
 
6804
0.501961 0.501961 0.501961 SetFgColor
6805
 
6806
262 364 0 0 Box fill
6807
 
6808
 
6809
 
6810
0.501961 0.501961 0.501961 SetFgColor
6811
 
6812
262 364 0 0 Box fill
6813
 
6814
 
6815
 
6816
0.501961 0.501961 0.501961 SetFgColor
6817
 
6818
262 364 0 0 Box fill
6819
 
6820
 
6821
 
6822
0.501961 0.501961 0.501961 SetFgColor
6823
 
6824
263 364 0 0 Box fill
6825
 
6826
 
6827
 
6828
0.501961 0.501961 0.501961 SetFgColor
6829
 
6830
263 364 0 0 Box fill
6831
 
6832
 
6833
 
6834
0.501961 0.501961 0.501961 SetFgColor
6835
 
6836
263 364 0 0 Box fill
6837
 
6838
 
6839
 
6840
0.501961 0.501961 0.501961 SetFgColor
6841
 
6842
263 364 0 0 Box fill
6843
 
6844
 
6845
 
6846
0.501961 0.501961 0.501961 SetFgColor
6847
 
6848
264 364 0 0 Box fill
6849
 
6850
 
6851
 
6852
0.501961 0.501961 0.501961 SetFgColor
6853
 
6854
264 364 0 0 Box fill
6855
 
6856
 
6857
 
6858
0.501961 0.501961 0.501961 SetFgColor
6859
 
6860
264 364 0 0 Box fill
6861
 
6862
 
6863
 
6864
0.501961 0.501961 0.501961 SetFgColor
6865
 
6866
264 364 0 0 Box fill
6867
 
6868
 
6869
 
6870
0.501961 0.501961 0.501961 SetFgColor
6871
 
6872
265 364 0 0 Box fill
6873
 
6874
 
6875
 
6876
0.501961 0.501961 0.501961 SetFgColor
6877
 
6878
265 364 0 0 Box fill
6879
 
6880
 
6881
 
6882
0.501961 0.501961 0.501961 SetFgColor
6883
 
6884
265 364 0 0 Box fill
6885
 
6886
 
6887
 
6888
0.501961 0.501961 0.501961 SetFgColor
6889
 
6890
265 364 0 0 Box fill
6891
 
6892
 
6893
 
6894
0.501961 0.501961 0.501961 SetFgColor
6895
 
6896
266 364 0 0 Box fill
6897
 
6898
 
6899
 
6900
0.501961 0.501961 0.501961 SetFgColor
6901
 
6902
266 364 0 0 Box fill
6903
 
6904
 
6905
 
6906
0.501961 0.501961 0.501961 SetFgColor
6907
 
6908
266 364 0 0 Box fill
6909
 
6910
 
6911
 
6912
0.501961 0.501961 0.501961 SetFgColor
6913
 
6914
266 364 0 0 Box fill
6915
 
6916
 
6917
 
6918
0.501961 0.501961 0.501961 SetFgColor
6919
 
6920
267 364 0 0 Box fill
6921
 
6922
 
6923
 
6924
0.501961 0.501961 0.501961 SetFgColor
6925
 
6926
267 364 0 0 Box fill
6927
 
6928
 
6929
 
6930
0.501961 0.501961 0.501961 SetFgColor
6931
 
6932
267 364 0 0 Box fill
6933
 
6934
 
6935
 
6936
0.501961 0.501961 0.501961 SetFgColor
6937
 
6938
267 364 0 0 Box fill
6939
 
6940
 
6941
 
6942
0.501961 0.501961 0.501961 SetFgColor
6943
 
6944
268 364 0 0 Box fill
6945
 
6946
 
6947
 
6948
0.501961 0.501961 0.501961 SetFgColor
6949
 
6950
268 364 0 0 Box fill
6951
 
6952
 
6953
 
6954
0.501961 0.501961 0.501961 SetFgColor
6955
 
6956
268 364 0 0 Box fill
6957
 
6958
 
6959
 
6960
0.501961 0.501961 0.501961 SetFgColor
6961
 
6962
268 364 0 0 Box fill
6963
 
6964
 
6965
 
6966
0.501961 0.501961 0.501961 SetFgColor
6967
 
6968
269 364 0 0 Box fill
6969
 
6970
 
6971
 
6972
0.501961 0.501961 0.501961 SetFgColor
6973
 
6974
269 364 0 0 Box fill
6975
 
6976
 
6977
 
6978
0.501961 0.501961 0.501961 SetFgColor
6979
 
6980
269 364 0 0 Box fill
6981
 
6982
 
6983
 
6984
0.501961 0.501961 0.501961 SetFgColor
6985
 
6986
269 364 0 0 Box fill
6987
 
6988
 
6989
 
6990
0.501961 0.501961 0.501961 SetFgColor
6991
 
6992
269 364 0 0 Box fill
6993
 
6994
 
6995
 
6996
0.501961 0.501961 0.501961 SetFgColor
6997
 
6998
270 364 0 0 Box fill
6999
 
7000
 
7001
 
7002
0.501961 0.501961 0.501961 SetFgColor
7003
 
7004
270 364 0 0 Box fill
7005
 
7006
 
7007
 
7008
0.501961 0.501961 0.501961 SetFgColor
7009
 
7010
270 364 0 0 Box fill
7011
 
7012
 
7013
 
7014
0.501961 0.501961 0.501961 SetFgColor
7015
 
7016
270 364 0 0 Box fill
7017
 
7018
 
7019
 
7020
0.501961 0.501961 0.501961 SetFgColor
7021
 
7022
271 364 0 0 Box fill
7023
 
7024
 
7025
 
7026
0.501961 0.501961 0.501961 SetFgColor
7027
 
7028
271 364 0 0 Box fill
7029
 
7030
 
7031
 
7032
0.501961 0.501961 0.501961 SetFgColor
7033
 
7034
271 364 0 0 Box fill
7035
 
7036
 
7037
 
7038
0.501961 0.501961 0.501961 SetFgColor
7039
 
7040
271 364 0 0 Box fill
7041
 
7042
 
7043
 
7044
0.501961 0.501961 0.501961 SetFgColor
7045
 
7046
272 364 0 0 Box fill
7047
 
7048
 
7049
 
7050
0.501961 0.501961 0.501961 SetFgColor
7051
 
7052
272 364 0 0 Box fill
7053
 
7054
 
7055
 
7056
0.501961 0.501961 0.501961 SetFgColor
7057
 
7058
272 364 0 0 Box fill
7059
 
7060
 
7061
 
7062
0.501961 0.501961 0.501961 SetFgColor
7063
 
7064
272 364 0 0 Box fill
7065
 
7066
 
7067
 
7068
0.501961 0.501961 0.501961 SetFgColor
7069
 
7070
273 364 0 0 Box fill
7071
 
7072
 
7073
 
7074
0.501961 0.501961 0.501961 SetFgColor
7075
 
7076
273 364 0 0 Box fill
7077
 
7078
 
7079
 
7080
0.501961 0.501961 0.501961 SetFgColor
7081
 
7082
273 364 0 0 Box fill
7083
 
7084
 
7085
 
7086
0.501961 0.501961 0.501961 SetFgColor
7087
 
7088
273 364 0 0 Box fill
7089
 
7090
 
7091
 
7092
0.501961 0.501961 0.501961 SetFgColor
7093
 
7094
274 364 0 0 Box fill
7095
 
7096
 
7097
 
7098
0.501961 0.501961 0.501961 SetFgColor
7099
 
7100
274 364 0 0 Box fill
7101
 
7102
 
7103
 
7104
0.501961 0.501961 0.501961 SetFgColor
7105
 
7106
274 364 0 0 Box fill
7107
 
7108
 
7109
 
7110
0.501961 0.501961 0.501961 SetFgColor
7111
 
7112
274 364 0 0 Box fill
7113
 
7114
 
7115
 
7116
0.501961 0.501961 0.501961 SetFgColor
7117
 
7118
275 364 0 0 Box fill
7119
 
7120
 
7121
 
7122
0.501961 0.501961 0.501961 SetFgColor
7123
 
7124
275 364 0 0 Box fill
7125
 
7126
 
7127
 
7128
0.501961 0.501961 0.501961 SetFgColor
7129
 
7130
275 364 0 0 Box fill
7131
 
7132
 
7133
 
7134
0.501961 0.501961 0.501961 SetFgColor
7135
 
7136
275 364 0 0 Box fill
7137
 
7138
 
7139
 
7140
0.501961 0.501961 0.501961 SetFgColor
7141
 
7142
276 364 0 0 Box fill
7143
 
7144
 
7145
 
7146
0.501961 0.501961 0.501961 SetFgColor
7147
 
7148
276 364 0 0 Box fill
7149
 
7150
 
7151
 
7152
0.501961 0.501961 0.501961 SetFgColor
7153
 
7154
276 364 0 0 Box fill
7155
 
7156
 
7157
 
7158
0.501961 0.501961 0.501961 SetFgColor
7159
 
7160
276 364 0 0 Box fill
7161
 
7162
 
7163
 
7164
0.501961 0.501961 0.501961 SetFgColor
7165
 
7166
277 364 0 0 Box fill
7167
 
7168
 
7169
 
7170
0.501961 0.501961 0.501961 SetFgColor
7171
 
7172
277 364 0 0 Box fill
7173
 
7174
 
7175
 
7176
0.501961 0.501961 0.501961 SetFgColor
7177
 
7178
277 364 0 0 Box fill
7179
 
7180
 
7181
 
7182
0.501961 0.501961 0.501961 SetFgColor
7183
 
7184
277 364 0 0 Box fill
7185
 
7186
 
7187
 
7188
0.501961 0.501961 0.501961 SetFgColor
7189
 
7190
278 364 0 0 Box fill
7191
 
7192
 
7193
 
7194
0.501961 0.501961 0.501961 SetFgColor
7195
 
7196
278 364 0 0 Box fill
7197
 
7198
 
7199
 
7200
0.501961 0.501961 0.501961 SetFgColor
7201
 
7202
278 364 0 0 Box fill
7203
 
7204
 
7205
 
7206
0.501961 0.501961 0.501961 SetFgColor
7207
 
7208
278 364 0 0 Box fill
7209
 
7210
 
7211
 
7212
0.501961 0.501961 0.501961 SetFgColor
7213
 
7214
279 364 0 0 Box fill
7215
 
7216
 
7217
 
7218
0.501961 0.501961 0.501961 SetFgColor
7219
 
7220
279 364 0 0 Box fill
7221
 
7222
 
7223
 
7224
0.501961 0.501961 0.501961 SetFgColor
7225
 
7226
279 364 0 0 Box fill
7227
 
7228
 
7229
 
7230
0.501961 0.501961 0.501961 SetFgColor
7231
 
7232
279 364 0 0 Box fill
7233
 
7234
 
7235
 
7236
0.501961 0.501961 0.501961 SetFgColor
7237
 
7238
280 364 0 0 Box fill
7239
 
7240
 
7241
 
7242
0.501961 0.501961 0.501961 SetFgColor
7243
 
7244
280 364 0 0 Box fill
7245
 
7246
 
7247
 
7248
0.501961 0.501961 0.501961 SetFgColor
7249
 
7250
280 364 0 0 Box fill
7251
 
7252
 
7253
 
7254
0.501961 0.501961 0.501961 SetFgColor
7255
 
7256
280 364 0 0 Box fill
7257
 
7258
 
7259
 
7260
0.501961 0.501961 0.501961 SetFgColor
7261
 
7262
281 364 0 0 Box fill
7263
 
7264
 
7265
 
7266
0.501961 0.501961 0.501961 SetFgColor
7267
 
7268
281 364 0 0 Box fill
7269
 
7270
 
7271
 
7272
0.501961 0.501961 0.501961 SetFgColor
7273
 
7274
281 364 0 0 Box fill
7275
 
7276
 
7277
 
7278
0.501961 0.501961 0.501961 SetFgColor
7279
 
7280
281 364 0 0 Box fill
7281
 
7282
 
7283
 
7284
0.501961 0.501961 0.501961 SetFgColor
7285
 
7286
282 364 0 0 Box fill
7287
 
7288
 
7289
 
7290
0.501961 0.501961 0.501961 SetFgColor
7291
 
7292
282 364 0 0 Box fill
7293
 
7294
 
7295
 
7296
0.501961 0.501961 0.501961 SetFgColor
7297
 
7298
282 364 0 0 Box fill
7299
 
7300
 
7301
 
7302
0.501961 0.501961 0.501961 SetFgColor
7303
 
7304
282 364 0 0 Box fill
7305
 
7306
 
7307
 
7308
0.501961 0.501961 0.501961 SetFgColor
7309
 
7310
283 364 0 0 Box fill
7311
 
7312
 
7313
 
7314
0.501961 0.501961 0.501961 SetFgColor
7315
 
7316
283 364 0 0 Box fill
7317
 
7318
 
7319
 
7320
0.501961 0.501961 0.501961 SetFgColor
7321
 
7322
283 364 0 0 Box fill
7323
 
7324
 
7325
 
7326
0.501961 0.501961 0.501961 SetFgColor
7327
 
7328
283 364 0 0 Box fill
7329
 
7330
 
7331
 
7332
0.501961 0.501961 0.501961 SetFgColor
7333
 
7334
284 364 0 0 Box fill
7335
 
7336
 
7337
 
7338
0.501961 0.501961 0.501961 SetFgColor
7339
 
7340
284 364 0 0 Box fill
7341
 
7342
 
7343
 
7344
0.501961 0.501961 0.501961 SetFgColor
7345
 
7346
284 364 0 0 Box fill
7347
 
7348
 
7349
 
7350
0.501961 0.501961 0.501961 SetFgColor
7351
 
7352
284 364 0 0 Box fill
7353
 
7354
 
7355
 
7356
0.501961 0.501961 0.501961 SetFgColor
7357
 
7358
285 364 0 0 Box fill
7359
 
7360
 
7361
 
7362
0.501961 0.501961 0.501961 SetFgColor
7363
 
7364
285 364 0 0 Box fill
7365
 
7366
 
7367
 
7368
0.501961 0.501961 0.501961 SetFgColor
7369
 
7370
285 364 0 0 Box fill
7371
 
7372
 
7373
 
7374
0.501961 0.501961 0.501961 SetFgColor
7375
 
7376
285 364 0 0 Box fill
7377
 
7378
 
7379
 
7380
0.501961 0.501961 0.501961 SetFgColor
7381
 
7382
286 364 0 0 Box fill
7383
 
7384
 
7385
 
7386
0.501961 0.501961 0.501961 SetFgColor
7387
 
7388
286 364 0 0 Box fill
7389
 
7390
 
7391
 
7392
0.501961 0.501961 0.501961 SetFgColor
7393
 
7394
286 364 0 0 Box fill
7395
 
7396
 
7397
 
7398
0.501961 0.501961 0.501961 SetFgColor
7399
 
7400
286 364 0 0 Box fill
7401
 
7402
 
7403
 
7404
0.501961 0.501961 0.501961 SetFgColor
7405
 
7406
287 364 0 0 Box fill
7407
 
7408
 
7409
 
7410
0.501961 0.501961 0.501961 SetFgColor
7411
 
7412
287 364 0 0 Box fill
7413
 
7414
 
7415
 
7416
0.501961 0.501961 0.501961 SetFgColor
7417
 
7418
287 364 0 0 Box fill
7419
 
7420
 
7421
 
7422
0.501961 0.501961 0.501961 SetFgColor
7423
 
7424
287 364 0 0 Box fill
7425
 
7426
 
7427
 
7428
0.501961 0.501961 0.501961 SetFgColor
7429
 
7430
288 364 0 0 Box fill
7431
 
7432
 
7433
 
7434
0.501961 0.501961 0.501961 SetFgColor
7435
 
7436
288 364 0 0 Box fill
7437
 
7438
 
7439
 
7440
0.501961 0.501961 0.501961 SetFgColor
7441
 
7442
288 364 0 0 Box fill
7443
 
7444
 
7445
 
7446
0.501961 0.501961 0.501961 SetFgColor
7447
 
7448
288 364 0 0 Box fill
7449
 
7450
 
7451
 
7452
0.501961 0.501961 0.501961 SetFgColor
7453
 
7454
289 364 0 0 Box fill
7455
 
7456
 
7457
 
7458
0.501961 0.501961 0.501961 SetFgColor
7459
 
7460
289 364 0 0 Box fill
7461
 
7462
 
7463
 
7464
0.501961 0.501961 0.501961 SetFgColor
7465
 
7466
289 364 0 0 Box fill
7467
 
7468
 
7469
 
7470
0.501961 0.501961 0.501961 SetFgColor
7471
 
7472
289 364 0 0 Box fill
7473
 
7474
 
7475
 
7476
0.501961 0.501961 0.501961 SetFgColor
7477
 
7478
290 364 0 0 Box fill
7479
 
7480
 
7481
 
7482
0.501961 0.501961 0.501961 SetFgColor
7483
 
7484
290 364 0 0 Box fill
7485
 
7486
 
7487
 
7488
0.501961 0.501961 0.501961 SetFgColor
7489
 
7490
290 364 0 0 Box fill
7491
 
7492
 
7493
 
7494
0.501961 0.501961 0.501961 SetFgColor
7495
 
7496
290 364 0 0 Box fill
7497
 
7498
 
7499
 
7500
0.501961 0.501961 0.501961 SetFgColor
7501
 
7502
290 364 0 0 Box fill
7503
 
7504
 
7505
 
7506
0.501961 0.501961 0.501961 SetFgColor
7507
 
7508
291 364 0 0 Box fill
7509
 
7510
 
7511
 
7512
0.501961 0.501961 0.501961 SetFgColor
7513
 
7514
291 364 0 0 Box fill
7515
 
7516
 
7517
 
7518
0.501961 0.501961 0.501961 SetFgColor
7519
 
7520
291 364 0 0 Box fill
7521
 
7522
 
7523
 
7524
0.501961 0.501961 0.501961 SetFgColor
7525
 
7526
291 364 0 0 Box fill
7527
 
7528
 
7529
 
7530
0.501961 0.501961 0.501961 SetFgColor
7531
 
7532
292 364 0 0 Box fill
7533
 
7534
 
7535
 
7536
0.501961 0.501961 0.501961 SetFgColor
7537
 
7538
292 364 0 0 Box fill
7539
 
7540
 
7541
 
7542
0.501961 0.501961 0.501961 SetFgColor
7543
 
7544
292 364 0 0 Box fill
7545
 
7546
 
7547
 
7548
0.501961 0.501961 0.501961 SetFgColor
7549
 
7550
292 364 0 0 Box fill
7551
 
7552
 
7553
 
7554
0.501961 0.501961 0.501961 SetFgColor
7555
 
7556
293 364 0 0 Box fill
7557
 
7558
 
7559
 
7560
0.501961 0.501961 0.501961 SetFgColor
7561
 
7562
293 364 0 0 Box fill
7563
 
7564
 
7565
 
7566
0.501961 0.501961 0.501961 SetFgColor
7567
 
7568
293 364 0 0 Box fill
7569
 
7570
 
7571
 
7572
0.501961 0.501961 0.501961 SetFgColor
7573
 
7574
293 364 0 0 Box fill
7575
 
7576
 
7577
 
7578
0.501961 0.501961 0.501961 SetFgColor
7579
 
7580
294 364 0 0 Box fill
7581
 
7582
 
7583
 
7584
0.501961 0.501961 0.501961 SetFgColor
7585
 
7586
294 364 0 0 Box fill
7587
 
7588
 
7589
 
7590
0.501961 0.501961 0.501961 SetFgColor
7591
 
7592
294 364 0 0 Box fill
7593
 
7594
 
7595
 
7596
0.501961 0.501961 0.501961 SetFgColor
7597
 
7598
294 364 0 0 Box fill
7599
 
7600
 
7601
 
7602
0.501961 0.501961 0.501961 SetFgColor
7603
 
7604
295 364 0 0 Box fill
7605
 
7606
 
7607
 
7608
0.501961 0.501961 0.501961 SetFgColor
7609
 
7610
295 364 0 0 Box fill
7611
 
7612
 
7613
 
7614
0.501961 0.501961 0.501961 SetFgColor
7615
 
7616
295 364 0 0 Box fill
7617
 
7618
 
7619
 
7620
0.501961 0.501961 0.501961 SetFgColor
7621
 
7622
295 364 0 0 Box fill
7623
 
7624
 
7625
 
7626
0.501961 0.501961 0.501961 SetFgColor
7627
 
7628
296 364 0 0 Box fill
7629
 
7630
 
7631
 
7632
0.501961 0.501961 0.501961 SetFgColor
7633
 
7634
296 364 0 0 Box fill
7635
 
7636
 
7637
 
7638
0.501961 0.501961 0.501961 SetFgColor
7639
 
7640
296 364 0 0 Box fill
7641
 
7642
 
7643
 
7644
0.501961 0.501961 0.501961 SetFgColor
7645
 
7646
296 364 0 0 Box fill
7647
 
7648
 
7649
 
7650
0.501961 0.501961 0.501961 SetFgColor
7651
 
7652
297 364 0 0 Box fill
7653
 
7654
 
7655
 
7656
0.501961 0.501961 0.501961 SetFgColor
7657
 
7658
297 364 0 0 Box fill
7659
 
7660
 
7661
 
7662
0.501961 0.501961 0.501961 SetFgColor
7663
 
7664
297 364 0 0 Box fill
7665
 
7666
 
7667
 
7668
0.501961 0.501961 0.501961 SetFgColor
7669
 
7670
297 364 0 0 Box fill
7671
 
7672
 
7673
 
7674
0.501961 0.501961 0.501961 SetFgColor
7675
 
7676
298 364 0 0 Box fill
7677
 
7678
 
7679
 
7680
0.501961 0.501961 0.501961 SetFgColor
7681
 
7682
298 364 0 0 Box fill
7683
 
7684
 
7685
 
7686
0.501961 0.501961 0.501961 SetFgColor
7687
 
7688
298 364 0 0 Box fill
7689
 
7690
 
7691
 
7692
0.501961 0.501961 0.501961 SetFgColor
7693
 
7694
298 364 0 0 Box fill
7695
 
7696
 
7697
 
7698
0.501961 0.501961 0.501961 SetFgColor
7699
 
7700
299 364 0 0 Box fill
7701
 
7702
 
7703
 
7704
0.501961 0.501961 0.501961 SetFgColor
7705
 
7706
299 364 0 0 Box fill
7707
 
7708
 
7709
 
7710
0.501961 0.501961 0.501961 SetFgColor
7711
 
7712
299 364 0 0 Box fill
7713
 
7714
 
7715
 
7716
0.501961 0.501961 0.501961 SetFgColor
7717
 
7718
299 364 0 0 Box fill
7719
 
7720
 
7721
 
7722
0.501961 0.501961 0.501961 SetFgColor
7723
 
7724
300 364 0 0 Box fill
7725
 
7726
 
7727
 
7728
0.501961 0.501961 0.501961 SetFgColor
7729
 
7730
300 364 0 0 Box fill
7731
 
7732
 
7733
 
7734
0.501961 0.501961 0.501961 SetFgColor
7735
 
7736
300 364 0 0 Box fill
7737
 
7738
 
7739
 
7740
0.501961 0.501961 0.501961 SetFgColor
7741
 
7742
300 364 0 0 Box fill
7743
 
7744
 
7745
 
7746
0.501961 0.501961 0.501961 SetFgColor
7747
 
7748
301 364 0 0 Box fill
7749
 
7750
 
7751
 
7752
0.501961 0.501961 0.501961 SetFgColor
7753
 
7754
301 364 0 0 Box fill
7755
 
7756
 
7757
 
7758
0.501961 0.501961 0.501961 SetFgColor
7759
 
7760
301 364 0 0 Box fill
7761
 
7762
 
7763
 
7764
0.501961 0.501961 0.501961 SetFgColor
7765
 
7766
301 364 0 0 Box fill
7767
 
7768
 
7769
 
7770
0.501961 0.501961 0.501961 SetFgColor
7771
 
7772
302 364 0 0 Box fill
7773
 
7774
 
7775
 
7776
0.501961 0.501961 0.501961 SetFgColor
7777
 
7778
302 364 0 0 Box fill
7779
 
7780
 
7781
 
7782
0.501961 0.501961 0.501961 SetFgColor
7783
 
7784
302 364 0 0 Box fill
7785
 
7786
 
7787
 
7788
0.501961 0.501961 0.501961 SetFgColor
7789
 
7790
302 364 0 0 Box fill
7791
 
7792
 
7793
 
7794
0.501961 0.501961 0.501961 SetFgColor
7795
 
7796
303 364 0 0 Box fill
7797
 
7798
 
7799
 
7800
0.501961 0.501961 0.501961 SetFgColor
7801
 
7802
303 364 0 0 Box fill
7803
 
7804
 
7805
 
7806
0.501961 0.501961 0.501961 SetFgColor
7807
 
7808
303 364 0 0 Box fill
7809
 
7810
 
7811
 
7812
0.501961 0.501961 0.501961 SetFgColor
7813
 
7814
303 364 0 0 Box fill
7815
 
7816
 
7817
 
7818
0.501961 0.501961 0.501961 SetFgColor
7819
 
7820
304 364 0 0 Box fill
7821
 
7822
 
7823
 
7824
0.501961 0.501961 0.501961 SetFgColor
7825
 
7826
304 364 0 0 Box fill
7827
 
7828
 
7829
 
7830
0.501961 0.501961 0.501961 SetFgColor
7831
 
7832
304 364 0 0 Box fill
7833
 
7834
 
7835
 
7836
0.501961 0.501961 0.501961 SetFgColor
7837
 
7838
304 364 0 0 Box fill
7839
 
7840
 
7841
 
7842
0.501961 0.501961 0.501961 SetFgColor
7843
 
7844
305 364 0 0 Box fill
7845
 
7846
 
7847
 
7848
0.501961 0.501961 0.501961 SetFgColor
7849
 
7850
305 364 0 0 Box fill
7851
 
7852
 
7853
 
7854
0.501961 0.501961 0.501961 SetFgColor
7855
 
7856
305 364 0 0 Box fill
7857
 
7858
 
7859
 
7860
0.501961 0.501961 0.501961 SetFgColor
7861
 
7862
305 364 0 0 Box fill
7863
 
7864
 
7865
 
7866
0.501961 0.501961 0.501961 SetFgColor
7867
 
7868
306 364 0 0 Box fill
7869
 
7870
 
7871
 
7872
0.501961 0.501961 0.501961 SetFgColor
7873
 
7874
306 364 0 0 Box fill
7875
 
7876
 
7877
 
7878
0.501961 0.501961 0.501961 SetFgColor
7879
 
7880
306 364 0 0 Box fill
7881
 
7882
 
7883
 
7884
0.501961 0.501961 0.501961 SetFgColor
7885
 
7886
306 364 0 0 Box fill
7887
 
7888
 
7889
 
7890
0.501961 0.501961 0.501961 SetFgColor
7891
 
7892
307 364 0 0 Box fill
7893
 
7894
 
7895
 
7896
0.501961 0.501961 0.501961 SetFgColor
7897
 
7898
307 364 0 0 Box fill
7899
 
7900
 
7901
 
7902
0.501961 0.501961 0.501961 SetFgColor
7903
 
7904
307 364 0 0 Box fill
7905
 
7906
 
7907
 
7908
0.501961 0.501961 0.501961 SetFgColor
7909
 
7910
307 364 0 0 Box fill
7911
 
7912
 
7913
 
7914
0.501961 0.501961 0.501961 SetFgColor
7915
 
7916
308 364 0 0 Box fill
7917
 
7918
 
7919
 
7920
0.501961 0.501961 0.501961 SetFgColor
7921
 
7922
308 364 0 0 Box fill
7923
 
7924
 
7925
 
7926
0.501961 0.501961 0.501961 SetFgColor
7927
 
7928
308 364 0 0 Box fill
7929
 
7930
 
7931
 
7932
0.501961 0.501961 0.501961 SetFgColor
7933
 
7934
308 364 0 0 Box fill
7935
 
7936
 
7937
 
7938
0.501961 0.501961 0.501961 SetFgColor
7939
 
7940
309 364 0 0 Box fill
7941
 
7942
 
7943
 
7944
0.501961 0.501961 0.501961 SetFgColor
7945
 
7946
309 364 0 0 Box fill
7947
 
7948
 
7949
 
7950
0.501961 0.501961 0.501961 SetFgColor
7951
 
7952
309 364 0 0 Box fill
7953
 
7954
 
7955
 
7956
0.501961 0.501961 0.501961 SetFgColor
7957
 
7958
309 364 0 0 Box fill
7959
 
7960
 
7961
 
7962
0.501961 0.501961 0.501961 SetFgColor
7963
 
7964
310 364 0 0 Box fill
7965
 
7966
 
7967
 
7968
0.501961 0.501961 0.501961 SetFgColor
7969
 
7970
310 364 0 0 Box fill
7971
 
7972
 
7973
 
7974
0.501961 0.501961 0.501961 SetFgColor
7975
 
7976
310 364 0 0 Box fill
7977
 
7978
 
7979
 
7980
0.501961 0.501961 0.501961 SetFgColor
7981
 
7982
310 364 0 0 Box fill
7983
 
7984
 
7985
 
7986
0.501961 0.501961 0.501961 SetFgColor
7987
 
7988
310 364 0 0 Box fill
7989
 
7990
 
7991
 
7992
0.501961 0.501961 0.501961 SetFgColor
7993
 
7994
311 364 0 0 Box fill
7995
 
7996
 
7997
 
7998
0.501961 0.501961 0.501961 SetFgColor
7999
 
8000
311 364 0 0 Box fill
8001
 
8002
 
8003
 
8004
0.501961 0.501961 0.501961 SetFgColor
8005
 
8006
311 364 0 0 Box fill
8007
 
8008
 
8009
 
8010
0.501961 0.501961 0.501961 SetFgColor
8011
 
8012
311 364 0 0 Box fill
8013
 
8014
 
8015
 
8016
0.501961 0.501961 0.501961 SetFgColor
8017
 
8018
312 364 0 0 Box fill
8019
 
8020
 
8021
 
8022
0.501961 0.501961 0.501961 SetFgColor
8023
 
8024
312 364 0 0 Box fill
8025
 
8026
 
8027
 
8028
0.501961 0.501961 0.501961 SetFgColor
8029
 
8030
312 364 0 0 Box fill
8031
 
8032
 
8033
 
8034
0.501961 0.501961 0.501961 SetFgColor
8035
 
8036
312 364 0 0 Box fill
8037
 
8038
 
8039
 
8040
0.501961 0.501961 0.501961 SetFgColor
8041
 
8042
313 364 0 0 Box fill
8043
 
8044
 
8045
 
8046
0.501961 0.501961 0.501961 SetFgColor
8047
 
8048
313 364 0 0 Box fill
8049
 
8050
 
8051
 
8052
0.501961 0.501961 0.501961 SetFgColor
8053
 
8054
313 364 0 0 Box fill
8055
 
8056
 
8057
 
8058
0.501961 0.501961 0.501961 SetFgColor
8059
 
8060
313 364 0 0 Box fill
8061
 
8062
 
8063
 
8064
0.501961 0.501961 0.501961 SetFgColor
8065
 
8066
314 364 0 0 Box fill
8067
 
8068
 
8069
 
8070
0.501961 0.501961 0.501961 SetFgColor
8071
 
8072
314 364 0 0 Box fill
8073
 
8074
 
8075
 
8076
0.501961 0.501961 0.501961 SetFgColor
8077
 
8078
314 364 0 0 Box fill
8079
 
8080
 
8081
 
8082
0.501961 0.501961 0.501961 SetFgColor
8083
 
8084
314 364 0 0 Box fill
8085
 
8086
 
8087
 
8088
0.501961 0.501961 0.501961 SetFgColor
8089
 
8090
315 364 0 0 Box fill
8091
 
8092
 
8093
 
8094
0.501961 0.501961 0.501961 SetFgColor
8095
 
8096
315 364 0 0 Box fill
8097
 
8098
 
8099
 
8100
0.501961 0.501961 0.501961 SetFgColor
8101
 
8102
315 364 0 0 Box fill
8103
 
8104
 
8105
 
8106
0.501961 0.501961 0.501961 SetFgColor
8107
 
8108
315 364 0 0 Box fill
8109
 
8110
 
8111
 
8112
0.501961 0.501961 0.501961 SetFgColor
8113
 
8114
316 364 0 0 Box fill
8115
 
8116
 
8117
 
8118
0.501961 0.501961 0.501961 SetFgColor
8119
 
8120
316 364 0 0 Box fill
8121
 
8122
 
8123
 
8124
0.501961 0.501961 0.501961 SetFgColor
8125
 
8126
316 364 0 0 Box fill
8127
 
8128
 
8129
 
8130
0.501961 0.501961 0.501961 SetFgColor
8131
 
8132
316 364 0 0 Box fill
8133
 
8134
 
8135
 
8136
0.501961 0.501961 0.501961 SetFgColor
8137
 
8138
317 364 0 0 Box fill
8139
 
8140
 
8141
 
8142
0.501961 0.501961 0.501961 SetFgColor
8143
 
8144
317 364 0 0 Box fill
8145
 
8146
 
8147
 
8148
0.501961 0.501961 0.501961 SetFgColor
8149
 
8150
317 364 0 0 Box fill
8151
 
8152
 
8153
 
8154
0.501961 0.501961 0.501961 SetFgColor
8155
 
8156
317 364 0 0 Box fill
8157
 
8158
 
8159
 
8160
0.501961 0.501961 0.501961 SetFgColor
8161
 
8162
318 364 0 0 Box fill
8163
 
8164
 
8165
 
8166
0.501961 0.501961 0.501961 SetFgColor
8167
 
8168
318 364 0 0 Box fill
8169
 
8170
 
8171
 
8172
0.501961 0.501961 0.501961 SetFgColor
8173
 
8174
318 364 0 0 Box fill
8175
 
8176
 
8177
 
8178
0.501961 0.501961 0.501961 SetFgColor
8179
 
8180
318 364 0 0 Box fill
8181
 
8182
 
8183
 
8184
0.501961 0.501961 0.501961 SetFgColor
8185
 
8186
319 364 0 0 Box fill
8187
 
8188
 
8189
 
8190
0.501961 0.501961 0.501961 SetFgColor
8191
 
8192
319 364 0 0 Box fill
8193
 
8194
 
8195
 
8196
0.501961 0.501961 0.501961 SetFgColor
8197
 
8198
319 364 0 0 Box fill
8199
 
8200
 
8201
 
8202
0.501961 0.501961 0.501961 SetFgColor
8203
 
8204
319 364 0 0 Box fill
8205
 
8206
 
8207
 
8208
0.501961 0.501961 0.501961 SetFgColor
8209
 
8210
320 364 0 0 Box fill
8211
 
8212
 
8213
 
8214
0.501961 0.501961 0.501961 SetFgColor
8215
 
8216
320 364 0 0 Box fill
8217
 
8218
 
8219
 
8220
0.501961 0.501961 0.501961 SetFgColor
8221
 
8222
320 364 0 0 Box fill
8223
 
8224
 
8225
 
8226
0.501961 0.501961 0.501961 SetFgColor
8227
 
8228
320 364 0 0 Box fill
8229
 
8230
 
8231
 
8232
0.501961 0.501961 0.501961 SetFgColor
8233
 
8234
321 364 0 0 Box fill
8235
 
8236
 
8237
 
8238
0.501961 0.501961 0.501961 SetFgColor
8239
 
8240
321 364 0 0 Box fill
8241
 
8242
 
8243
 
8244
0.501961 0.501961 0.501961 SetFgColor
8245
 
8246
321 364 0 0 Box fill
8247
 
8248
 
8249
 
8250
0.501961 0.501961 0.501961 SetFgColor
8251
 
8252
321 364 0 0 Box fill
8253
 
8254
 
8255
 
8256
0.501961 0.501961 0.501961 SetFgColor
8257
 
8258
322 364 0 0 Box fill
8259
 
8260
 
8261
 
8262
0.501961 0.501961 0.501961 SetFgColor
8263
 
8264
322 364 0 0 Box fill
8265
 
8266
 
8267
 
8268
0.501961 0.501961 0.501961 SetFgColor
8269
 
8270
322 364 0 0 Box fill
8271
 
8272
 
8273
 
8274
0.501961 0.501961 0.501961 SetFgColor
8275
 
8276
322 364 0 0 Box fill
8277
 
8278
 
8279
 
8280
0.501961 0.501961 0.501961 SetFgColor
8281
 
8282
323 364 0 0 Box fill
8283
 
8284
 
8285
 
8286
0.501961 0.501961 0.501961 SetFgColor
8287
 
8288
323 364 0 0 Box fill
8289
 
8290
 
8291
 
8292
0.501961 0.501961 0.501961 SetFgColor
8293
 
8294
323 364 0 0 Box fill
8295
 
8296
 
8297
 
8298
0.501961 0.501961 0.501961 SetFgColor
8299
 
8300
323 364 0 0 Box fill
8301
 
8302
 
8303
 
8304
0.501961 0.501961 0.501961 SetFgColor
8305
 
8306
324 364 0 0 Box fill
8307
 
8308
 
8309
 
8310
0.501961 0.501961 0.501961 SetFgColor
8311
 
8312
324 364 0 0 Box fill
8313
 
8314
 
8315
 
8316
0.501961 0.501961 0.501961 SetFgColor
8317
 
8318
324 364 0 0 Box fill
8319
 
8320
 
8321
 
8322
0.501961 0.501961 0.501961 SetFgColor
8323
 
8324
324 364 0 0 Box fill
8325
 
8326
 
8327
 
8328
0.501961 0.501961 0.501961 SetFgColor
8329
 
8330
325 364 0 0 Box fill
8331
 
8332
 
8333
 
8334
0.501961 0.501961 0.501961 SetFgColor
8335
 
8336
325 364 0 0 Box fill
8337
 
8338
 
8339
 
8340
0.501961 0.501961 0.501961 SetFgColor
8341
 
8342
325 364 0 0 Box fill
8343
 
8344
 
8345
 
8346
0.501961 0.501961 0.501961 SetFgColor
8347
 
8348
325 364 0 0 Box fill
8349
 
8350
 
8351
 
8352
0.501961 0.501961 0.501961 SetFgColor
8353
 
8354
326 364 0 0 Box fill
8355
 
8356
 
8357
 
8358
0.501961 0.501961 0.501961 SetFgColor
8359
 
8360
326 364 0 0 Box fill
8361
 
8362
 
8363
 
8364
0.501961 0.501961 0.501961 SetFgColor
8365
 
8366
326 364 0 0 Box fill
8367
 
8368
 
8369
 
8370
0.501961 0.501961 0.501961 SetFgColor
8371
 
8372
326 364 0 0 Box fill
8373
 
8374
 
8375
 
8376
0.501961 0.501961 0.501961 SetFgColor
8377
 
8378
327 364 0 0 Box fill
8379
 
8380
 
8381
 
8382
0.501961 0.501961 0.501961 SetFgColor
8383
 
8384
327 364 0 0 Box fill
8385
 
8386
 
8387
 
8388
0.501961 0.501961 0.501961 SetFgColor
8389
 
8390
327 364 0 0 Box fill
8391
 
8392
 
8393
 
8394
0.501961 0.501961 0.501961 SetFgColor
8395
 
8396
327 364 0 0 Box fill
8397
 
8398
 
8399
 
8400
0.501961 0.501961 0.501961 SetFgColor
8401
 
8402
328 364 0 0 Box fill
8403
 
8404
 
8405
 
8406
0.501961 0.501961 0.501961 SetFgColor
8407
 
8408
328 364 0 0 Box fill
8409
 
8410
 
8411
 
8412
0.501961 0.501961 0.501961 SetFgColor
8413
 
8414
328 364 0 0 Box fill
8415
 
8416
 
8417
 
8418
0.501961 0.501961 0.501961 SetFgColor
8419
 
8420
328 364 0 0 Box fill
8421
 
8422
 
8423
 
8424
0.501961 0.501961 0.501961 SetFgColor
8425
 
8426
329 364 0 0 Box fill
8427
 
8428
 
8429
 
8430
0.501961 0.501961 0.501961 SetFgColor
8431
 
8432
329 364 0 0 Box fill
8433
 
8434
 
8435
 
8436
0.501961 0.501961 0.501961 SetFgColor
8437
 
8438
329 364 0 0 Box fill
8439
 
8440
 
8441
 
8442
0.501961 0.501961 0.501961 SetFgColor
8443
 
8444
329 364 0 0 Box fill
8445
 
8446
 
8447
 
8448
0.501961 0.501961 0.501961 SetFgColor
8449
 
8450
330 364 0 0 Box fill
8451
 
8452
 
8453
 
8454
0.501961 0.501961 0.501961 SetFgColor
8455
 
8456
330 364 0 0 Box fill
8457
 
8458
 
8459
 
8460
0.501961 0.501961 0.501961 SetFgColor
8461
 
8462
330 364 0 0 Box fill
8463
 
8464
 
8465
 
8466
0.501961 0.501961 0.501961 SetFgColor
8467
 
8468
330 364 0 0 Box fill
8469
 
8470
 
8471
 
8472
0.501961 0.501961 0.501961 SetFgColor
8473
 
8474
331 364 0 0 Box fill
8475
 
8476
 
8477
 
8478
0.501961 0.501961 0.501961 SetFgColor
8479
 
8480
331 364 0 0 Box fill
8481
 
8482
 
8483
 
8484
0.501961 0.501961 0.501961 SetFgColor
8485
 
8486
331 364 0 0 Box fill
8487
 
8488
 
8489
 
8490
0.501961 0.501961 0.501961 SetFgColor
8491
 
8492
331 364 0 0 Box fill
8493
 
8494
 
8495
 
8496
0.501961 0.501961 0.501961 SetFgColor
8497
 
8498
331 364 0 0 Box fill
8499
 
8500
 
8501
 
8502
0.501961 0.501961 0.501961 SetFgColor
8503
 
8504
332 364 0 0 Box fill
8505
 
8506
 
8507
 
8508
0.501961 0.501961 0.501961 SetFgColor
8509
 
8510
332 364 0 0 Box fill
8511
 
8512
 
8513
 
8514
0.501961 0.501961 0.501961 SetFgColor
8515
 
8516
332 364 0 0 Box fill
8517
 
8518
 
8519
 
8520
0.501961 0.501961 0.501961 SetFgColor
8521
 
8522
332 364 0 0 Box fill
8523
 
8524
 
8525
 
8526
0.501961 0.501961 0.501961 SetFgColor
8527
 
8528
333 364 0 0 Box fill
8529
 
8530
 
8531
 
8532
0.501961 0.501961 0.501961 SetFgColor
8533
 
8534
333 364 0 0 Box fill
8535
 
8536
 
8537
 
8538
0.501961 0.501961 0.501961 SetFgColor
8539
 
8540
333 364 0 0 Box fill
8541
 
8542
 
8543
 
8544
0.501961 0.501961 0.501961 SetFgColor
8545
 
8546
333 364 0 0 Box fill
8547
 
8548
 
8549
 
8550
0.501961 0.501961 0.501961 SetFgColor
8551
 
8552
334 364 0 0 Box fill
8553
 
8554
 
8555
 
8556
0.501961 0.501961 0.501961 SetFgColor
8557
 
8558
334 364 0 0 Box fill
8559
 
8560
 
8561
 
8562
0.501961 0.501961 0.501961 SetFgColor
8563
 
8564
334 364 0 0 Box fill
8565
 
8566
 
8567
 
8568
0.501961 0.501961 0.501961 SetFgColor
8569
 
8570
334 364 0 0 Box fill
8571
 
8572
 
8573
 
8574
0.501961 0.501961 0.501961 SetFgColor
8575
 
8576
335 364 0 0 Box fill
8577
 
8578
 
8579
 
8580
0.501961 0.501961 0.501961 SetFgColor
8581
 
8582
335 364 0 0 Box fill
8583
 
8584
 
8585
 
8586
0.501961 0.501961 0.501961 SetFgColor
8587
 
8588
335 364 0 0 Box fill
8589
 
8590
 
8591
 
8592
0.501961 0.501961 0.501961 SetFgColor
8593
 
8594
335 364 0 0 Box fill
8595
 
8596
 
8597
 
8598
0.501961 0.501961 0.501961 SetFgColor
8599
 
8600
336 364 0 0 Box fill
8601
 
8602
 
8603
 
8604
0.501961 0.501961 0.501961 SetFgColor
8605
 
8606
336 364 0 0 Box fill
8607
 
8608
 
8609
 
8610
0.501961 0.501961 0.501961 SetFgColor
8611
 
8612
336 364 0 0 Box fill
8613
 
8614
 
8615
 
8616
0.501961 0.501961 0.501961 SetFgColor
8617
 
8618
336 364 0 0 Box fill
8619
 
8620
 
8621
 
8622
0.501961 0.501961 0.501961 SetFgColor
8623
 
8624
337 364 0 0 Box fill
8625
 
8626
 
8627
 
8628
0.501961 0.501961 0.501961 SetFgColor
8629
 
8630
337 364 0 0 Box fill
8631
 
8632
 
8633
 
8634
0.501961 0.501961 0.501961 SetFgColor
8635
 
8636
337 364 0 0 Box fill
8637
 
8638
 
8639
 
8640
0.501961 0.501961 0.501961 SetFgColor
8641
 
8642
337 364 0 0 Box fill
8643
 
8644
 
8645
 
8646
0.501961 0.501961 0.501961 SetFgColor
8647
 
8648
338 364 0 0 Box fill
8649
 
8650
 
8651
 
8652
0.501961 0.501961 0.501961 SetFgColor
8653
 
8654
338 364 0 0 Box fill
8655
 
8656
 
8657
 
8658
0.501961 0.501961 0.501961 SetFgColor
8659
 
8660
338 364 0 0 Box fill
8661
 
8662
 
8663
 
8664
0.501961 0.501961 0.501961 SetFgColor
8665
 
8666
338 364 0 0 Box fill
8667
 
8668
 
8669
 
8670
0.501961 0.501961 0.501961 SetFgColor
8671
 
8672
339 364 0 0 Box fill
8673
 
8674
 
8675
 
8676
0.501961 0.501961 0.501961 SetFgColor
8677
 
8678
339 364 0 0 Box fill
8679
 
8680
 
8681
 
8682
0.501961 0.501961 0.501961 SetFgColor
8683
 
8684
339 364 0 0 Box fill
8685
 
8686
 
8687
 
8688
0.501961 0.501961 0.501961 SetFgColor
8689
 
8690
339 364 0 0 Box fill
8691
 
8692
 
8693
 
8694
0.501961 0.501961 0.501961 SetFgColor
8695
 
8696
340 364 0 0 Box fill
8697
 
8698
 
8699
 
8700
0.501961 0.501961 0.501961 SetFgColor
8701
 
8702
340 364 0 0 Box fill
8703
 
8704
 
8705
 
8706
0.501961 0.501961 0.501961 SetFgColor
8707
 
8708
340 364 0 0 Box fill
8709
 
8710
 
8711
 
8712
0.501961 0.501961 0.501961 SetFgColor
8713
 
8714
340 364 0 0 Box fill
8715
 
8716
 
8717
 
8718
0.501961 0.501961 0.501961 SetFgColor
8719
 
8720
341 364 0 0 Box fill
8721
 
8722
 
8723
 
8724
0.501961 0.501961 0.501961 SetFgColor
8725
 
8726
341 364 0 0 Box fill
8727
 
8728
 
8729
 
8730
0.501961 0.501961 0.501961 SetFgColor
8731
 
8732
341 364 0 0 Box fill
8733
 
8734
 
8735
 
8736
0.501961 0.501961 0.501961 SetFgColor
8737
 
8738
341 364 0 0 Box fill
8739
 
8740
 
8741
 
8742
0.501961 0.501961 0.501961 SetFgColor
8743
 
8744
342 364 0 0 Box fill
8745
 
8746
 
8747
 
8748
0.501961 0.501961 0.501961 SetFgColor
8749
 
8750
342 364 0 0 Box fill
8751
 
8752
 
8753
 
8754
0.501961 0.501961 0.501961 SetFgColor
8755
 
8756
342 364 0 0 Box fill
8757
 
8758
 
8759
 
8760
0.501961 0.501961 0.501961 SetFgColor
8761
 
8762
342 364 0 0 Box fill
8763
 
8764
 
8765
 
8766
0.501961 0.501961 0.501961 SetFgColor
8767
 
8768
343 364 0 0 Box fill
8769
 
8770
 
8771
 
8772
0.501961 0.501961 0.501961 SetFgColor
8773
 
8774
343 364 0 0 Box fill
8775
 
8776
 
8777
 
8778
0.501961 0.501961 0.501961 SetFgColor
8779
 
8780
343 364 0 0 Box fill
8781
 
8782
 
8783
 
8784
0.501961 0.501961 0.501961 SetFgColor
8785
 
8786
343 364 0 0 Box fill
8787
 
8788
 
8789
 
8790
0.501961 0.501961 0.501961 SetFgColor
8791
 
8792
344 364 0 0 Box fill
8793
 
8794
 
8795
 
8796
0.501961 0.501961 0.501961 SetFgColor
8797
 
8798
344 364 0 0 Box fill
8799
 
8800
 
8801
 
8802
0.501961 0.501961 0.501961 SetFgColor
8803
 
8804
344 364 0 0 Box fill
8805
 
8806
 
8807
 
8808
0.501961 0.501961 0.501961 SetFgColor
8809
 
8810
344 364 0 0 Box fill
8811
 
8812
 
8813
 
8814
0.501961 0.501961 0.501961 SetFgColor
8815
 
8816
345 364 0 0 Box fill
8817
 
8818
 
8819
 
8820
0.501961 0.501961 0.501961 SetFgColor
8821
 
8822
345 364 0 0 Box fill
8823
 
8824
 
8825
 
8826
0.501961 0.501961 0.501961 SetFgColor
8827
 
8828
345 364 0 0 Box fill
8829
 
8830
 
8831
 
8832
0.501961 0.501961 0.501961 SetFgColor
8833
 
8834
345 364 0 0 Box fill
8835
 
8836
 
8837
 
8838
0.501961 0.501961 0.501961 SetFgColor
8839
 
8840
346 364 0 0 Box fill
8841
 
8842
 
8843
 
8844
0.501961 0.501961 0.501961 SetFgColor
8845
 
8846
346 364 0 0 Box fill
8847
 
8848
 
8849
 
8850
0.501961 0.501961 0.501961 SetFgColor
8851
 
8852
346 364 0 0 Box fill
8853
 
8854
 
8855
 
8856
0.501961 0.501961 0.501961 SetFgColor
8857
 
8858
346 364 0 0 Box fill
8859
 
8860
 
8861
 
8862
0.501961 0.501961 0.501961 SetFgColor
8863
 
8864
347 364 0 0 Box fill
8865
 
8866
 
8867
 
8868
0.501961 0.501961 0.501961 SetFgColor
8869
 
8870
347 364 0 0 Box fill
8871
 
8872
 
8873
 
8874
0.501961 0.501961 0.501961 SetFgColor
8875
 
8876
347 364 0 0 Box fill
8877
 
8878
 
8879
 
8880
0.501961 0.501961 0.501961 SetFgColor
8881
 
8882
347 364 0 0 Box fill
8883
 
8884
 
8885
 
8886
0.501961 0.501961 0.501961 SetFgColor
8887
 
8888
348 364 0 0 Box fill
8889
 
8890
 
8891
 
8892
0.501961 0.501961 0.501961 SetFgColor
8893
 
8894
348 364 0 0 Box fill
8895
 
8896
 
8897
 
8898
0.501961 0.501961 0.501961 SetFgColor
8899
 
8900
348 364 0 0 Box fill
8901
 
8902
 
8903
 
8904
0.501961 0.501961 0.501961 SetFgColor
8905
 
8906
348 364 0 0 Box fill
8907
 
8908
 
8909
 
8910
0.501961 0.501961 0.501961 SetFgColor
8911
 
8912
349 364 0 0 Box fill
8913
 
8914
 
8915
 
8916
0.501961 0.501961 0.501961 SetFgColor
8917
 
8918
349 364 0 0 Box fill
8919
 
8920
 
8921
 
8922
0.501961 0.501961 0.501961 SetFgColor
8923
 
8924
349 364 0 0 Box fill
8925
 
8926
 
8927
 
8928
0.501961 0.501961 0.501961 SetFgColor
8929
 
8930
349 364 0 0 Box fill
8931
 
8932
 
8933
 
8934
0.501961 0.501961 0.501961 SetFgColor
8935
 
8936
350 364 0 0 Box fill
8937
 
8938
 
8939
 
8940
0.501961 0.501961 0.501961 SetFgColor
8941
 
8942
350 364 0 0 Box fill
8943
 
8944
 
8945
 
8946
0.501961 0.501961 0.501961 SetFgColor
8947
 
8948
350 364 0 0 Box fill
8949
 
8950
 
8951
 
8952
0.501961 0.501961 0.501961 SetFgColor
8953
 
8954
350 364 0 0 Box fill
8955
 
8956
 
8957
 
8958
0.501961 0.501961 0.501961 SetFgColor
8959
 
8960
351 364 0 0 Box fill
8961
 
8962
 
8963
 
8964
0.501961 0.501961 0.501961 SetFgColor
8965
 
8966
351 364 0 0 Box fill
8967
 
8968
 
8969
 
8970
0.501961 0.501961 0.501961 SetFgColor
8971
 
8972
351 364 0 0 Box fill
8973
 
8974
 
8975
 
8976
0.501961 0.501961 0.501961 SetFgColor
8977
 
8978
351 364 0 0 Box fill
8979
 
8980
 
8981
 
8982
0.501961 0.501961 0.501961 SetFgColor
8983
 
8984
351 364 0 0 Box fill
8985
 
8986
 
8987
 
8988
0.501961 0.501961 0.501961 SetFgColor
8989
 
8990
352 364 0 0 Box fill
8991
 
8992
 
8993
 
8994
0.501961 0.501961 0.501961 SetFgColor
8995
 
8996
352 364 0 0 Box fill
8997
 
8998
 
8999
 
9000
0.501961 0.501961 0.501961 SetFgColor
9001
 
9002
352 364 0 0 Box fill
9003
 
9004
 
9005
 
9006
0.501961 0.501961 0.501961 SetFgColor
9007
 
9008
352 364 0 0 Box fill
9009
 
9010
 
9011
 
9012
0.501961 0.501961 0.501961 SetFgColor
9013
 
9014
353 364 0 0 Box fill
9015
 
9016
 
9017
 
9018
0.501961 0.501961 0.501961 SetFgColor
9019
 
9020
353 364 0 0 Box fill
9021
 
9022
 
9023
 
9024
0.501961 0.501961 0.501961 SetFgColor
9025
 
9026
353 364 0 0 Box fill
9027
 
9028
 
9029
 
9030
0.501961 0.501961 0.501961 SetFgColor
9031
 
9032
353 364 0 0 Box fill
9033
 
9034
 
9035
 
9036
0.501961 0.501961 0.501961 SetFgColor
9037
 
9038
354 364 0 0 Box fill
9039
 
9040
 
9041
 
9042
0.501961 0.501961 0.501961 SetFgColor
9043
 
9044
354 364 0 0 Box fill
9045
 
9046
 
9047
 
9048
0.501961 0.501961 0.501961 SetFgColor
9049
 
9050
354 364 0 0 Box fill
9051
 
9052
 
9053
 
9054
0.501961 0.501961 0.501961 SetFgColor
9055
 
9056
354 364 0 0 Box fill
9057
 
9058
 
9059
 
9060
0.501961 0.501961 0.501961 SetFgColor
9061
 
9062
355 364 0 0 Box fill
9063
 
9064
 
9065
 
9066
0.501961 0.501961 0.501961 SetFgColor
9067
 
9068
355 364 0 0 Box fill
9069
 
9070
 
9071
 
9072
0.501961 0.501961 0.501961 SetFgColor
9073
 
9074
355 364 0 0 Box fill
9075
 
9076
 
9077
 
9078
0.501961 0.501961 0.501961 SetFgColor
9079
 
9080
355 364 0 0 Box fill
9081
 
9082
 
9083
 
9084
0.501961 0.501961 0.501961 SetFgColor
9085
 
9086
356 364 0 0 Box fill
9087
 
9088
 
9089
 
9090
0.501961 0.501961 0.501961 SetFgColor
9091
 
9092
356 364 0 0 Box fill
9093
 
9094
 
9095
 
9096
0.501961 0.501961 0.501961 SetFgColor
9097
 
9098
356 364 0 0 Box fill
9099
 
9100
 
9101
 
9102
0.501961 0.501961 0.501961 SetFgColor
9103
 
9104
356 364 0 0 Box fill
9105
 
9106
 
9107
 
9108
0.501961 0.501961 0.501961 SetFgColor
9109
 
9110
357 364 0 0 Box fill
9111
 
9112
 
9113
 
9114
0.501961 0.501961 0.501961 SetFgColor
9115
 
9116
357 364 0 0 Box fill
9117
 
9118
 
9119
 
9120
0.501961 0.501961 0.501961 SetFgColor
9121
 
9122
357 364 0 0 Box fill
9123
 
9124
 
9125
 
9126
0.501961 0.501961 0.501961 SetFgColor
9127
 
9128
357 364 0 0 Box fill
9129
 
9130
 
9131
 
9132
0.501961 0.501961 0.501961 SetFgColor
9133
 
9134
358 364 0 0 Box fill
9135
 
9136
 
9137
 
9138
0.501961 0.501961 0.501961 SetFgColor
9139
 
9140
358 364 0 0 Box fill
9141
 
9142
 
9143
 
9144
0.501961 0.501961 0.501961 SetFgColor
9145
 
9146
358 364 0 0 Box fill
9147
 
9148
 
9149
 
9150
0.501961 0.501961 0.501961 SetFgColor
9151
 
9152
358 364 0 0 Box fill
9153
 
9154
 
9155
 
9156
0.501961 0.501961 0.501961 SetFgColor
9157
 
9158
359 364 0 0 Box fill
9159
 
9160
 
9161
 
9162
0.501961 0.501961 0.501961 SetFgColor
9163
 
9164
359 364 0 0 Box fill
9165
 
9166
 
9167
 
9168
0.501961 0.501961 0.501961 SetFgColor
9169
 
9170
359 364 0 0 Box fill
9171
 
9172
 
9173
 
9174
0.501961 0.501961 0.501961 SetFgColor
9175
 
9176
359 364 0 0 Box fill
9177
 
9178
 
9179
 
9180
0.501961 0.501961 0.501961 SetFgColor
9181
 
9182
360 364 0 0 Box fill
9183
 
9184
 
9185
 
9186
0.501961 0.501961 0.501961 SetFgColor
9187
 
9188
360 364 0 0 Box fill
9189
 
9190
 
9191
 
9192
0.501961 0.501961 0.501961 SetFgColor
9193
 
9194
360 364 0 0 Box fill
9195
 
9196
 
9197
 
9198
0.501961 0.501961 0.501961 SetFgColor
9199
 
9200
360 364 0 0 Box fill
9201
 
9202
 
9203
 
9204
0.501961 0.501961 0.501961 SetFgColor
9205
 
9206
361 364 0 0 Box fill
9207
 
9208
 
9209
 
9210
0.501961 0.501961 0.501961 SetFgColor
9211
 
9212
361 364 0 0 Box fill
9213
 
9214
 
9215
 
9216
0.501961 0.501961 0.501961 SetFgColor
9217
 
9218
361 364 0 0 Box fill
9219
 
9220
 
9221
 
9222
0.501961 0.501961 0.501961 SetFgColor
9223
 
9224
361 364 0 0 Box fill
9225
 
9226
 
9227
 
9228
0.501961 0.501961 0.501961 SetFgColor
9229
 
9230
362 364 0 0 Box fill
9231
 
9232
 
9233
 
9234
0.501961 0.501961 0.501961 SetFgColor
9235
 
9236
362 364 0 0 Box fill
9237
 
9238
 
9239
 
9240
0.501961 0.501961 0.501961 SetFgColor
9241
 
9242
362 364 0 0 Box fill
9243
 
9244
 
9245
 
9246
0.501961 0.501961 0.501961 SetFgColor
9247
 
9248
362 364 0 0 Box fill
9249
 
9250
 
9251
 
9252
0.501961 0.501961 0.501961 SetFgColor
9253
 
9254
363 364 0 0 Box fill
9255
 
9256
 
9257
 
9258
0.501961 0.501961 0.501961 SetFgColor
9259
 
9260
363 364 0 0 Box fill
9261
 
9262
 
9263
 
9264
0.501961 0.501961 0.501961 SetFgColor
9265
 
9266
363 364 0 0 Box fill
9267
 
9268
 
9269
 
9270
0.501961 0.501961 0.501961 SetFgColor
9271
 
9272
363 364 0 0 Box fill
9273
 
9274
 
9275
 
9276
0.501961 0.501961 0.501961 SetFgColor
9277
 
9278
364 364 0 0 Box fill
9279
 
9280
 
9281
 
9282
0.501961 0.501961 0.501961 SetFgColor
9283
 
9284
364 364 0 0 Box fill
9285
 
9286
 
9287
 
9288
0.501961 0.501961 0.501961 SetFgColor
9289
 
9290
364 364 0 0 Box fill
9291
 
9292
 
9293
 
9294
0.501961 0.501961 0.501961 SetFgColor
9295
 
9296
364 364 0 0 Box fill
9297
 
9298
 
9299
 
9300
0.501961 0.501961 0.501961 SetFgColor
9301
 
9302
365 364 0 0 Box fill
9303
 
9304
 
9305
 
9306
0.501961 0.501961 0.501961 SetFgColor
9307
 
9308
365 364 0 0 Box fill
9309
 
9310
 
9311
 
9312
0.501961 0.501961 0.501961 SetFgColor
9313
 
9314
365 364 0 0 Box fill
9315
 
9316
 
9317
 
9318
0.501961 0.501961 0.501961 SetFgColor
9319
 
9320
365 364 0 0 Box fill
9321
 
9322
 
9323
 
9324
0.501961 0.501961 0.501961 SetFgColor
9325
 
9326
366 364 0 0 Box fill
9327
 
9328
 
9329
 
9330
0.501961 0.501961 0.501961 SetFgColor
9331
 
9332
366 364 0 0 Box fill
9333
 
9334
 
9335
 
9336
0.501961 0.501961 0.501961 SetFgColor
9337
 
9338
366 364 0 0 Box fill
9339
 
9340
 
9341
 
9342
0.501961 0.501961 0.501961 SetFgColor
9343
 
9344
366 364 0 0 Box fill
9345
 
9346
 
9347
 
9348
0.501961 0.501961 0.501961 SetFgColor
9349
 
9350
367 364 0 0 Box fill
9351
 
9352
 
9353
 
9354
0.501961 0.501961 0.501961 SetFgColor
9355
 
9356
367 364 0 0 Box fill
9357
 
9358
 
9359
 
9360
0.501961 0.501961 0.501961 SetFgColor
9361
 
9362
367 364 0 0 Box fill
9363
 
9364
 
9365
 
9366
0.501961 0.501961 0.501961 SetFgColor
9367
 
9368
367 364 0 0 Box fill
9369
 
9370
 
9371
 
9372
0.501961 0.501961 0.501961 SetFgColor
9373
 
9374
368 364 0 0 Box fill
9375
 
9376
 
9377
 
9378
0.501961 0.501961 0.501961 SetFgColor
9379
 
9380
368 364 0 0 Box fill
9381
 
9382
 
9383
 
9384
0.501961 0.501961 0.501961 SetFgColor
9385
 
9386
368 364 0 0 Box fill
9387
 
9388
 
9389
 
9390
0.501961 0.501961 0.501961 SetFgColor
9391
 
9392
368 364 0 0 Box fill
9393
 
9394
 
9395
 
9396
0.501961 0.501961 0.501961 SetFgColor
9397
 
9398
369 364 0 0 Box fill
9399
 
9400
 
9401
 
9402
0.501961 0.501961 0.501961 SetFgColor
9403
 
9404
369 364 0 0 Box fill
9405
 
9406
 
9407
 
9408
0.501961 0.501961 0.501961 SetFgColor
9409
 
9410
369 364 0 0 Box fill
9411
 
9412
 
9413
 
9414
0.501961 0.501961 0.501961 SetFgColor
9415
 
9416
369 364 0 0 Box fill
9417
 
9418
 
9419
 
9420
0.501961 0.501961 0.501961 SetFgColor
9421
 
9422
370 364 0 0 Box fill
9423
 
9424
 
9425
 
9426
0.501961 0.501961 0.501961 SetFgColor
9427
 
9428
370 364 0 0 Box fill
9429
 
9430
 
9431
 
9432
0.501961 0.501961 0.501961 SetFgColor
9433
 
9434
370 364 0 0 Box fill
9435
 
9436
 
9437
 
9438
0.501961 0.501961 0.501961 SetFgColor
9439
 
9440
370 364 0 0 Box fill
9441
 
9442
 
9443
 
9444
0.501961 0.501961 0.501961 SetFgColor
9445
 
9446
371 364 0 0 Box fill
9447
 
9448
 
9449
 
9450
0.501961 0.501961 0.501961 SetFgColor
9451
 
9452
371 364 0 0 Box fill
9453
 
9454
 
9455
 
9456
0.501961 0.501961 0.501961 SetFgColor
9457
 
9458
371 364 0 0 Box fill
9459
 
9460
 
9461
 
9462
0.501961 0.501961 0.501961 SetFgColor
9463
 
9464
371 364 0 0 Box fill
9465
 
9466
 
9467
 
9468
0.501961 0.501961 0.501961 SetFgColor
9469
 
9470
372 364 0 0 Box fill
9471
 
9472
 
9473
 
9474
0.501961 0.501961 0.501961 SetFgColor
9475
 
9476
372 364 0 0 Box fill
9477
 
9478
 
9479
 
9480
0.501961 0.501961 0.501961 SetFgColor
9481
 
9482
372 364 0 0 Box fill
9483
 
9484
 
9485
 
9486
0.501961 0.501961 0.501961 SetFgColor
9487
 
9488
372 364 0 0 Box fill
9489
 
9490
 
9491
 
9492
0.501961 0.501961 0.501961 SetFgColor
9493
 
9494
372 364 0 0 Box fill
9495
 
9496
 
9497
 
9498
0.501961 0.501961 0.501961 SetFgColor
9499
 
9500
373 364 0 0 Box fill
9501
 
9502
 
9503
 
9504
0.501961 0.501961 0.501961 SetFgColor
9505
 
9506
373 364 0 0 Box fill
9507
 
9508
 
9509
 
9510
0.501961 0.501961 0.501961 SetFgColor
9511
 
9512
373 364 0 0 Box fill
9513
 
9514
 
9515
 
9516
0.501961 0.501961 0.501961 SetFgColor
9517
 
9518
373 364 0 0 Box fill
9519
 
9520
 
9521
 
9522
0.501961 0.501961 0.501961 SetFgColor
9523
 
9524
374 364 0 0 Box fill
9525
 
9526
 
9527
 
9528
0.501961 0.501961 0.501961 SetFgColor
9529
 
9530
374 364 0 0 Box fill
9531
 
9532
 
9533
 
9534
0.501961 0.501961 0.501961 SetFgColor
9535
 
9536
374 364 0 0 Box fill
9537
 
9538
 
9539
 
9540
0.501961 0.501961 0.501961 SetFgColor
9541
 
9542
374 364 0 0 Box fill
9543
 
9544
 
9545
 
9546
0.501961 0.501961 0.501961 SetFgColor
9547
 
9548
375 364 0 0 Box fill
9549
 
9550
 
9551
 
9552
0.501961 0.501961 0.501961 SetFgColor
9553
 
9554
375 364 0 0 Box fill
9555
 
9556
 
9557
 
9558
0.501961 0.501961 0.501961 SetFgColor
9559
 
9560
375 364 0 0 Box fill
9561
 
9562
 
9563
 
9564
0.501961 0.501961 0.501961 SetFgColor
9565
 
9566
375 364 0 0 Box fill
9567
 
9568
 
9569
 
9570
0.501961 0.501961 0.501961 SetFgColor
9571
 
9572
376 364 0 0 Box fill
9573
 
9574
 
9575
 
9576
0.501961 0.501961 0.501961 SetFgColor
9577
 
9578
376 364 0 0 Box fill
9579
 
9580
 
9581
 
9582
0.501961 0.501961 0.501961 SetFgColor
9583
 
9584
376 364 0 0 Box fill
9585
 
9586
 
9587
 
9588
0.501961 0.501961 0.501961 SetFgColor
9589
 
9590
376 364 0 0 Box fill
9591
 
9592
 
9593
 
9594
0.501961 0.501961 0.501961 SetFgColor
9595
 
9596
377 364 0 0 Box fill
9597
 
9598
 
9599
 
9600
0.501961 0.501961 0.501961 SetFgColor
9601
 
9602
377 364 0 0 Box fill
9603
 
9604
 
9605
 
9606
0.501961 0.501961 0.501961 SetFgColor
9607
 
9608
377 364 0 0 Box fill
9609
 
9610
 
9611
 
9612
0.501961 0.501961 0.501961 SetFgColor
9613
 
9614
377 364 0 0 Box fill
9615
 
9616
 
9617
 
9618
0.501961 0.501961 0.501961 SetFgColor
9619
 
9620
378 364 0 0 Box fill
9621
 
9622
 
9623
 
9624
0.501961 0.501961 0.501961 SetFgColor
9625
 
9626
378 364 0 0 Box fill
9627
 
9628
 
9629
 
9630
0.501961 0.501961 0.501961 SetFgColor
9631
 
9632
378 364 0 0 Box fill
9633
 
9634
 
9635
 
9636
0.501961 0.501961 0.501961 SetFgColor
9637
 
9638
378 364 0 0 Box fill
9639
 
9640
 
9641
 
9642
0.501961 0.501961 0.501961 SetFgColor
9643
 
9644
379 364 0 0 Box fill
9645
 
9646
 
9647
 
9648
0.501961 0.501961 0.501961 SetFgColor
9649
 
9650
379 364 0 0 Box fill
9651
 
9652
 
9653
 
9654
0.501961 0.501961 0.501961 SetFgColor
9655
 
9656
379 364 0 0 Box fill
9657
 
9658
 
9659
 
9660
0.501961 0.501961 0.501961 SetFgColor
9661
 
9662
379 364 0 0 Box fill
9663
 
9664
 
9665
 
9666
0.501961 0.501961 0.501961 SetFgColor
9667
 
9668
380 364 0 0 Box fill
9669
 
9670
 
9671
 
9672
0.501961 0.501961 0.501961 SetFgColor
9673
 
9674
380 364 0 0 Box fill
9675
 
9676
 
9677
 
9678
0.501961 0.501961 0.501961 SetFgColor
9679
 
9680
380 364 0 0 Box fill
9681
 
9682
 
9683
 
9684
0.501961 0.501961 0.501961 SetFgColor
9685
 
9686
380 364 0 0 Box fill
9687
 
9688
 
9689
 
9690
0.501961 0.501961 0.501961 SetFgColor
9691
 
9692
381 364 0 0 Box fill
9693
 
9694
 
9695
 
9696
0.501961 0.501961 0.501961 SetFgColor
9697
 
9698
381 364 0 0 Box fill
9699
 
9700
 
9701
 
9702
0.501961 0.501961 0.501961 SetFgColor
9703
 
9704
381 364 0 0 Box fill
9705
 
9706
 
9707
 
9708
0.501961 0.501961 0.501961 SetFgColor
9709
 
9710
381 364 0 0 Box fill
9711
 
9712
 
9713
 
9714
0.501961 0.501961 0.501961 SetFgColor
9715
 
9716
382 364 0 0 Box fill
9717
 
9718
 
9719
 
9720
0.501961 0.501961 0.501961 SetFgColor
9721
 
9722
382 364 0 0 Box fill
9723
 
9724
 
9725
 
9726
0.501961 0.501961 0.501961 SetFgColor
9727
 
9728
382 364 0 0 Box fill
9729
 
9730
 
9731
 
9732
0.501961 0.501961 0.501961 SetFgColor
9733
 
9734
382 364 0 0 Box fill
9735
 
9736
 
9737
 
9738
0.501961 0.501961 0.501961 SetFgColor
9739
 
9740
383 364 0 0 Box fill
9741
 
9742
 
9743
 
9744
0.501961 0.501961 0.501961 SetFgColor
9745
 
9746
383 364 0 0 Box fill
9747
 
9748
 
9749
 
9750
0.501961 0.501961 0.501961 SetFgColor
9751
 
9752
383 364 0 0 Box fill
9753
 
9754
 
9755
 
9756
0.501961 0.501961 0.501961 SetFgColor
9757
 
9758
383 364 0 0 Box fill
9759
 
9760
 
9761
 
9762
0.501961 0.501961 0.501961 SetFgColor
9763
 
9764
384 364 0 0 Box fill
9765
 
9766
 
9767
 
9768
0.501961 0.501961 0.501961 SetFgColor
9769
 
9770
384 364 0 0 Box fill
9771
 
9772
 
9773
 
9774
0.501961 0.501961 0.501961 SetFgColor
9775
 
9776
384 364 0 0 Box fill
9777
 
9778
 
9779
 
9780
0.501961 0.501961 0.501961 SetFgColor
9781
 
9782
384 364 0 0 Box fill
9783
 
9784
 
9785
 
9786
0.501961 0.501961 0.501961 SetFgColor
9787
 
9788
385 364 0 0 Box fill
9789
 
9790
 
9791
 
9792
0.501961 0.501961 0.501961 SetFgColor
9793
 
9794
385 364 0 0 Box fill
9795
 
9796
 
9797
 
9798
0.501961 0.501961 0.501961 SetFgColor
9799
 
9800
385 364 0 0 Box fill
9801
 
9802
 
9803
 
9804
0.501961 0.501961 0.501961 SetFgColor
9805
 
9806
385 364 0 0 Box fill
9807
 
9808
 
9809
 
9810
0.501961 0.501961 0.501961 SetFgColor
9811
 
9812
386 364 0 0 Box fill
9813
 
9814
 
9815
 
9816
0.501961 0.501961 0.501961 SetFgColor
9817
 
9818
386 364 0 0 Box fill
9819
 
9820
 
9821
 
9822
0.501961 0.501961 0.501961 SetFgColor
9823
 
9824
386 364 0 0 Box fill
9825
 
9826
 
9827
 
9828
0.501961 0.501961 0.501961 SetFgColor
9829
 
9830
386 364 0 0 Box fill
9831
 
9832
 
9833
 
9834
0.501961 0.501961 0.501961 SetFgColor
9835
 
9836
387 364 0 0 Box fill
9837
 
9838
 
9839
 
9840
0.501961 0.501961 0.501961 SetFgColor
9841
 
9842
387 364 0 0 Box fill
9843
 
9844
 
9845
 
9846
0.501961 0.501961 0.501961 SetFgColor
9847
 
9848
387 364 0 0 Box fill
9849
 
9850
 
9851
 
9852
0.501961 0.501961 0.501961 SetFgColor
9853
 
9854
387 364 0 0 Box fill
9855
 
9856
 
9857
 
9858
0.501961 0.501961 0.501961 SetFgColor
9859
 
9860
388 364 0 0 Box fill
9861
 
9862
 
9863
 
9864
0.501961 0.501961 0.501961 SetFgColor
9865
 
9866
388 364 0 0 Box fill
9867
 
9868
 
9869
 
9870
0.501961 0.501961 0.501961 SetFgColor
9871
 
9872
388 364 0 0 Box fill
9873
 
9874
 
9875
 
9876
0.501961 0.501961 0.501961 SetFgColor
9877
 
9878
388 364 0 0 Box fill
9879
 
9880
 
9881
 
9882
0.501961 0.501961 0.501961 SetFgColor
9883
 
9884
389 364 0 0 Box fill
9885
 
9886
 
9887
 
9888
0.501961 0.501961 0.501961 SetFgColor
9889
 
9890
389 364 0 0 Box fill
9891
 
9892
 
9893
 
9894
0.501961 0.501961 0.501961 SetFgColor
9895
 
9896
389 364 0 0 Box fill
9897
 
9898
 
9899
 
9900
0.501961 0.501961 0.501961 SetFgColor
9901
 
9902
389 364 0 0 Box fill
9903
 
9904
 
9905
 
9906
0.501961 0.501961 0.501961 SetFgColor
9907
 
9908
390 364 0 0 Box fill
9909
 
9910
 
9911
 
9912
0.501961 0.501961 0.501961 SetFgColor
9913
 
9914
390 364 0 0 Box fill
9915
 
9916
 
9917
 
9918
0.501961 0.501961 0.501961 SetFgColor
9919
 
9920
390 364 0 0 Box fill
9921
 
9922
 
9923
 
9924
0.501961 0.501961 0.501961 SetFgColor
9925
 
9926
390 364 0 0 Box fill
9927
 
9928
 
9929
 
9930
0.501961 0.501961 0.501961 SetFgColor
9931
 
9932
391 364 0 0 Box fill
9933
 
9934
 
9935
 
9936
0.501961 0.501961 0.501961 SetFgColor
9937
 
9938
391 364 0 0 Box fill
9939
 
9940
 
9941
 
9942
0.501961 0.501961 0.501961 SetFgColor
9943
 
9944
391 364 0 0 Box fill
9945
 
9946
 
9947
 
9948
0.501961 0.501961 0.501961 SetFgColor
9949
 
9950
391 364 0 0 Box fill
9951
 
9952
 
9953
 
9954
0.501961 0.501961 0.501961 SetFgColor
9955
 
9956
392 364 0 0 Box fill
9957
 
9958
 
9959
 
9960
0.501961 0.501961 0.501961 SetFgColor
9961
 
9962
392 364 0 0 Box fill
9963
 
9964
 
9965
 
9966
0.501961 0.501961 0.501961 SetFgColor
9967
 
9968
392 364 0 0 Box fill
9969
 
9970
 
9971
 
9972
0.501961 0.501961 0.501961 SetFgColor
9973
 
9974
392 364 0 0 Box fill
9975
 
9976
 
9977
 
9978
0.501961 0.501961 0.501961 SetFgColor
9979
 
9980
392 364 0 0 Box fill
9981
 
9982
 
9983
 
9984
0.501961 0.501961 0.501961 SetFgColor
9985
 
9986
393 364 0 0 Box fill
9987
 
9988
 
9989
 
9990
0.501961 0.501961 0.501961 SetFgColor
9991
 
9992
393 364 0 0 Box fill
9993
 
9994
 
9995
 
9996
0.501961 0.501961 0.501961 SetFgColor
9997
 
9998
393 364 0 0 Box fill
9999
 
10000
 
10001
 
10002
0.501961 0.501961 0.501961 SetFgColor
10003
 
10004
393 364 0 0 Box fill
10005
 
10006
 
10007
 
10008
0.501961 0.501961 0.501961 SetFgColor
10009
 
10010
394 364 0 0 Box fill
10011
 
10012
 
10013
 
10014
0.501961 0.501961 0.501961 SetFgColor
10015
 
10016
394 364 0 0 Box fill
10017
 
10018
 
10019
 
10020
0.501961 0.501961 0.501961 SetFgColor
10021
 
10022
394 364 0 0 Box fill
10023
 
10024
 
10025
 
10026
0.501961 0.501961 0.501961 SetFgColor
10027
 
10028
394 364 0 0 Box fill
10029
 
10030
 
10031
 
10032
0.501961 0.501961 0.501961 SetFgColor
10033
 
10034
395 364 0 0 Box fill
10035
 
10036
 
10037
 
10038
0.501961 0.501961 0.501961 SetFgColor
10039
 
10040
395 364 0 0 Box fill
10041
 
10042
 
10043
 
10044
0.501961 0.501961 0.501961 SetFgColor
10045
 
10046
395 364 0 0 Box fill
10047
 
10048
 
10049
 
10050
0.501961 0.501961 0.501961 SetFgColor
10051
 
10052
395 364 0 0 Box fill
10053
 
10054
 
10055
 
10056
0.501961 0.501961 0.501961 SetFgColor
10057
 
10058
396 364 0 0 Box fill
10059
 
10060
 
10061
 
10062
0.501961 0.501961 0.501961 SetFgColor
10063
 
10064
396 364 0 0 Box fill
10065
 
10066
 
10067
 
10068
0.501961 0.501961 0.501961 SetFgColor
10069
 
10070
396 364 0 0 Box fill
10071
 
10072
 
10073
 
10074
0.501961 0.501961 0.501961 SetFgColor
10075
 
10076
396 364 0 0 Box fill
10077
 
10078
 
10079
 
10080
0.501961 0.501961 0.501961 SetFgColor
10081
 
10082
397 364 0 0 Box fill
10083
 
10084
 
10085
 
10086
0.501961 0.501961 0.501961 SetFgColor
10087
 
10088
397 364 0 0 Box fill
10089
 
10090
 
10091
 
10092
0.501961 0.501961 0.501961 SetFgColor
10093
 
10094
397 364 0 0 Box fill
10095
 
10096
 
10097
 
10098
0.501961 0.501961 0.501961 SetFgColor
10099
 
10100
397 364 0 0 Box fill
10101
 
10102
 
10103
 
10104
0.501961 0.501961 0.501961 SetFgColor
10105
 
10106
398 364 0 0 Box fill
10107
 
10108
 
10109
 
10110
0.501961 0.501961 0.501961 SetFgColor
10111
 
10112
398 364 0 0 Box fill
10113
 
10114
 
10115
 
10116
0.501961 0.501961 0.501961 SetFgColor
10117
 
10118
398 364 0 0 Box fill
10119
 
10120
 
10121
 
10122
0.501961 0.501961 0.501961 SetFgColor
10123
 
10124
398 364 0 0 Box fill
10125
 
10126
 
10127
 
10128
0.501961 0.501961 0.501961 SetFgColor
10129
 
10130
399 364 0 0 Box fill
10131
 
10132
 
10133
 
10134
0.501961 0.501961 0.501961 SetFgColor
10135
 
10136
399 364 0 0 Box fill
10137
 
10138
 
10139
 
10140
0.501961 0.501961 0.501961 SetFgColor
10141
 
10142
399 364 0 0 Box fill
10143
 
10144
 
10145
 
10146
0.501961 0.501961 0.501961 SetFgColor
10147
 
10148
399 364 0 0 Box fill
10149
 
10150
 
10151
 
10152
0.501961 0.501961 0.501961 SetFgColor
10153
 
10154
400 364 0 0 Box fill
10155
 
10156
 
10157
 
10158
0.501961 0.501961 0.501961 SetFgColor
10159
 
10160
400 364 0 0 Box fill
10161
 
10162
 
10163
 
10164
0.501961 0.501961 0.501961 SetFgColor
10165
 
10166
400 364 0 0 Box fill
10167
 
10168
 
10169
 
10170
0.501961 0.501961 0.501961 SetFgColor
10171
 
10172
400 364 0 0 Box fill
10173
 
10174
 
10175
 
10176
0.501961 0.501961 0.501961 SetFgColor
10177
 
10178
401 364 0 0 Box fill
10179
 
10180
 
10181
 
10182
0.501961 0.501961 0.501961 SetFgColor
10183
 
10184
401 364 0 0 Box fill
10185
 
10186
 
10187
 
10188
0.501961 0.501961 0.501961 SetFgColor
10189
 
10190
401 364 0 0 Box fill
10191
 
10192
 
10193
 
10194
0.501961 0.501961 0.501961 SetFgColor
10195
 
10196
401 364 0 0 Box fill
10197
 
10198
 
10199
 
10200
0.501961 0.501961 0.501961 SetFgColor
10201
 
10202
402 364 0 0 Box fill
10203
 
10204
 
10205
 
10206
0.501961 0.501961 0.501961 SetFgColor
10207
 
10208
402 364 0 0 Box fill
10209
 
10210
 
10211
 
10212
0.501961 0.501961 0.501961 SetFgColor
10213
 
10214
402 364 0 0 Box fill
10215
 
10216
 
10217
 
10218
0.501961 0.501961 0.501961 SetFgColor
10219
 
10220
402 364 0 0 Box fill
10221
 
10222
 
10223
 
10224
0.501961 0.501961 0.501961 SetFgColor
10225
 
10226
403 364 0 0 Box fill
10227
 
10228
 
10229
 
10230
0.501961 0.501961 0.501961 SetFgColor
10231
 
10232
403 364 0 0 Box fill
10233
 
10234
 
10235
 
10236
0.501961 0.501961 0.501961 SetFgColor
10237
 
10238
403 364 0 0 Box fill
10239
 
10240
 
10241
 
10242
0.501961 0.501961 0.501961 SetFgColor
10243
 
10244
403 364 0 0 Box fill
10245
 
10246
 
10247
 
10248
0.501961 0.501961 0.501961 SetFgColor
10249
 
10250
404 364 0 0 Box fill
10251
 
10252
 
10253
 
10254
0.501961 0.501961 0.501961 SetFgColor
10255
 
10256
404 364 0 0 Box fill
10257
 
10258
 
10259
 
10260
0.501961 0.501961 0.501961 SetFgColor
10261
 
10262
404 364 0 0 Box fill
10263
 
10264
 
10265
 
10266
0.501961 0.501961 0.501961 SetFgColor
10267
 
10268
404 364 0 0 Box fill
10269
 
10270
 
10271
 
10272
0.501961 0.501961 0.501961 SetFgColor
10273
 
10274
405 364 0 0 Box fill
10275
 
10276
 
10277
 
10278
0.501961 0.501961 0.501961 SetFgColor
10279
 
10280
405 364 0 0 Box fill
10281
 
10282
 
10283
 
10284
0.501961 0.501961 0.501961 SetFgColor
10285
 
10286
405 364 0 0 Box fill
10287
 
10288
 
10289
 
10290
0.501961 0.501961 0.501961 SetFgColor
10291
 
10292
405 364 0 0 Box fill
10293
 
10294
 
10295
 
10296
0.501961 0.501961 0.501961 SetFgColor
10297
 
10298
406 364 0 0 Box fill
10299
 
10300
 
10301
 
10302
0.501961 0.501961 0.501961 SetFgColor
10303
 
10304
406 364 0 0 Box fill
10305
 
10306
 
10307
 
10308
0.501961 0.501961 0.501961 SetFgColor
10309
 
10310
406 364 0 0 Box fill
10311
 
10312
 
10313
 
10314
0.501961 0.501961 0.501961 SetFgColor
10315
 
10316
406 364 0 0 Box fill
10317
 
10318
 
10319
 
10320
0.501961 0.501961 0.501961 SetFgColor
10321
 
10322
407 364 0 0 Box fill
10323
 
10324
 
10325
 
10326
0.501961 0.501961 0.501961 SetFgColor
10327
 
10328
407 364 0 0 Box fill
10329
 
10330
 
10331
 
10332
0.501961 0.501961 0.501961 SetFgColor
10333
 
10334
407 364 0 0 Box fill
10335
 
10336
 
10337
 
10338
0.501961 0.501961 0.501961 SetFgColor
10339
 
10340
407 364 0 0 Box fill
10341
 
10342
 
10343
 
10344
0.501961 0.501961 0.501961 SetFgColor
10345
 
10346
408 364 0 0 Box fill
10347
 
10348
 
10349
 
10350
0.501961 0.501961 0.501961 SetFgColor
10351
 
10352
408 364 0 0 Box fill
10353
 
10354
 
10355
 
10356
0.501961 0.501961 0.501961 SetFgColor
10357
 
10358
408 364 0 0 Box fill
10359
 
10360
 
10361
 
10362
0.501961 0.501961 0.501961 SetFgColor
10363
 
10364
408 364 0 0 Box fill
10365
 
10366
 
10367
 
10368
0.501961 0.501961 0.501961 SetFgColor
10369
 
10370
409 364 0 0 Box fill
10371
 
10372
 
10373
 
10374
0.501961 0.501961 0.501961 SetFgColor
10375
 
10376
409 364 0 0 Box fill
10377
 
10378
 
10379
 
10380
0.501961 0.501961 0.501961 SetFgColor
10381
 
10382
409 364 0 0 Box fill
10383
 
10384
 
10385
 
10386
0.501961 0.501961 0.501961 SetFgColor
10387
 
10388
409 364 0 0 Box fill
10389
 
10390
 
10391
 
10392
0.501961 0.501961 0.501961 SetFgColor
10393
 
10394
410 364 0 0 Box fill
10395
 
10396
 
10397
 
10398
0.501961 0.501961 0.501961 SetFgColor
10399
 
10400
410 364 0 0 Box fill
10401
 
10402
 
10403
 
10404
0.501961 0.501961 0.501961 SetFgColor
10405
 
10406
410 364 0 0 Box fill
10407
 
10408
 
10409
 
10410
0.501961 0.501961 0.501961 SetFgColor
10411
 
10412
410 364 0 0 Box fill
10413
 
10414
 
10415
 
10416
0.501961 0.501961 0.501961 SetFgColor
10417
 
10418
411 364 0 0 Box fill
10419
 
10420
 
10421
 
10422
0.501961 0.501961 0.501961 SetFgColor
10423
 
10424
411 364 0 0 Box fill
10425
 
10426
 
10427
 
10428
0.501961 0.501961 0.501961 SetFgColor
10429
 
10430
411 364 0 0 Box fill
10431
 
10432
 
10433
 
10434
0.501961 0.501961 0.501961 SetFgColor
10435
 
10436
411 364 0 0 Box fill
10437
 
10438
 
10439
 
10440
0.501961 0.501961 0.501961 SetFgColor
10441
 
10442
412 364 0 0 Box fill
10443
 
10444
 
10445
 
10446
0.501961 0.501961 0.501961 SetFgColor
10447
 
10448
412 364 0 0 Box fill
10449
 
10450
 
10451
 
10452
0.501961 0.501961 0.501961 SetFgColor
10453
 
10454
412 364 0 0 Box fill
10455
 
10456
 
10457
 
10458
0.501961 0.501961 0.501961 SetFgColor
10459
 
10460
412 364 0 0 Box fill
10461
 
10462
 
10463
 
10464
0.501961 0.501961 0.501961 SetFgColor
10465
 
10466
413 364 0 0 Box fill
10467
 
10468
 
10469
 
10470
0.501961 0.501961 0.501961 SetFgColor
10471
 
10472
413 364 0 0 Box fill
10473
 
10474
 
10475
 
10476
0.501961 0.501961 0.501961 SetFgColor
10477
 
10478
413 364 0 0 Box fill
10479
 
10480
 
10481
 
10482
0.501961 0.501961 0.501961 SetFgColor
10483
 
10484
413 364 0 0 Box fill
10485
 
10486
 
10487
 
10488
0.501961 0.501961 0.501961 SetFgColor
10489
 
10490
413 364 0 0 Box fill
10491
 
10492
 
10493
 
10494
0.501961 0.501961 0.501961 SetFgColor
10495
 
10496
414 364 0 0 Box fill
10497
 
10498
 
10499
 
10500
0.501961 0.501961 0.501961 SetFgColor
10501
 
10502
414 364 0 0 Box fill
10503
 
10504
 
10505
 
10506
0.501961 0.501961 0.501961 SetFgColor
10507
 
10508
414 364 0 0 Box fill
10509
 
10510
 
10511
 
10512
0.501961 0.501961 0.501961 SetFgColor
10513
 
10514
414 364 0 0 Box fill
10515
 
10516
 
10517
 
10518
0.501961 0.501961 0.501961 SetFgColor
10519
 
10520
415 364 0 0 Box fill
10521
 
10522
 
10523
 
10524
0.501961 0.501961 0.501961 SetFgColor
10525
 
10526
415 364 0 0 Box fill
10527
 
10528
 
10529
 
10530
0.501961 0.501961 0.501961 SetFgColor
10531
 
10532
415 364 0 0 Box fill
10533
 
10534
 
10535
 
10536
0.501961 0.501961 0.501961 SetFgColor
10537
 
10538
415 364 0 0 Box fill
10539
 
10540
 
10541
 
10542
0.501961 0.501961 0.501961 SetFgColor
10543
 
10544
416 364 0 0 Box fill
10545
 
10546
 
10547
 
10548
0.501961 0.501961 0.501961 SetFgColor
10549
 
10550
416 364 0 0 Box fill
10551
 
10552
 
10553
 
10554
0.501961 0.501961 0.501961 SetFgColor
10555
 
10556
416 364 0 0 Box fill
10557
 
10558
 
10559
 
10560
0.501961 0.501961 0.501961 SetFgColor
10561
 
10562
416 364 0 0 Box fill
10563
 
10564
 
10565
 
10566
0.501961 0.501961 0.501961 SetFgColor
10567
 
10568
417 364 0 0 Box fill
10569
 
10570
 
10571
 
10572
0.501961 0.501961 0.501961 SetFgColor
10573
 
10574
417 364 0 0 Box fill
10575
 
10576
 
10577
 
10578
0.501961 0.501961 0.501961 SetFgColor
10579
 
10580
417 364 0 0 Box fill
10581
 
10582
 
10583
 
10584
0.501961 0.501961 0.501961 SetFgColor
10585
 
10586
417 364 0 0 Box fill
10587
 
10588
 
10589
 
10590
0.501961 0.501961 0.501961 SetFgColor
10591
 
10592
418 364 0 0 Box fill
10593
 
10594
 
10595
 
10596
0.501961 0.501961 0.501961 SetFgColor
10597
 
10598
418 364 0 0 Box fill
10599
 
10600
 
10601
 
10602
0.501961 0.501961 0.501961 SetFgColor
10603
 
10604
418 364 0 0 Box fill
10605
 
10606
 
10607
 
10608
0.501961 0.501961 0.501961 SetFgColor
10609
 
10610
418 364 0 0 Box fill
10611
 
10612
 
10613
 
10614
0.501961 0.501961 0.501961 SetFgColor
10615
 
10616
419 364 0 0 Box fill
10617
 
10618
 
10619
 
10620
0.501961 0.501961 0.501961 SetFgColor
10621
 
10622
419 364 0 0 Box fill
10623
 
10624
 
10625
 
10626
0.501961 0.501961 0.501961 SetFgColor
10627
 
10628
419 364 0 0 Box fill
10629
 
10630
 
10631
 
10632
0.501961 0.501961 0.501961 SetFgColor
10633
 
10634
419 364 0 0 Box fill
10635
 
10636
 
10637
 
10638
0.501961 0.501961 0.501961 SetFgColor
10639
 
10640
420 364 0 0 Box fill
10641
 
10642
 
10643
 
10644
0.501961 0.501961 0.501961 SetFgColor
10645
 
10646
420 364 0 0 Box fill
10647
 
10648
 
10649
 
10650
0.501961 0.501961 0.501961 SetFgColor
10651
 
10652
420 364 0 0 Box fill
10653
 
10654
 
10655
 
10656
0.501961 0.501961 0.501961 SetFgColor
10657
 
10658
420 364 0 0 Box fill
10659
 
10660
 
10661
 
10662
0.501961 0.501961 0.501961 SetFgColor
10663
 
10664
421 364 0 0 Box fill
10665
 
10666
 
10667
 
10668
0.501961 0.501961 0.501961 SetFgColor
10669
 
10670
421 364 0 0 Box fill
10671
 
10672
 
10673
 
10674
0.501961 0.501961 0.501961 SetFgColor
10675
 
10676
421 364 0 0 Box fill
10677
 
10678
 
10679
 
10680
0.501961 0.501961 0.501961 SetFgColor
10681
 
10682
421 364 0 0 Box fill
10683
 
10684
 
10685
 
10686
0.501961 0.501961 0.501961 SetFgColor
10687
 
10688
422 364 0 0 Box fill
10689
 
10690
 
10691
 
10692
0.501961 0.501961 0.501961 SetFgColor
10693
 
10694
422 364 0 0 Box fill
10695
 
10696
 
10697
 
10698
0.501961 0.501961 0.501961 SetFgColor
10699
 
10700
422 364 0 0 Box fill
10701
 
10702
 
10703
 
10704
0.501961 0.501961 0.501961 SetFgColor
10705
 
10706
422 364 0 0 Box fill
10707
 
10708
 
10709
 
10710
0.501961 0.501961 0.501961 SetFgColor
10711
 
10712
423 364 0 0 Box fill
10713
 
10714
 
10715
 
10716
0.501961 0.501961 0.501961 SetFgColor
10717
 
10718
423 364 0 0 Box fill
10719
 
10720
 
10721
 
10722
0.501961 0.501961 0.501961 SetFgColor
10723
 
10724
423 364 0 0 Box fill
10725
 
10726
 
10727
 
10728
0.501961 0.501961 0.501961 SetFgColor
10729
 
10730
423 364 0 0 Box fill
10731
 
10732
 
10733
 
10734
0.501961 0.501961 0.501961 SetFgColor
10735
 
10736
424 364 0 0 Box fill
10737
 
10738
 
10739
 
10740
0.501961 0.501961 0.501961 SetFgColor
10741
 
10742
424 364 0 0 Box fill
10743
 
10744
 
10745
 
10746
0.501961 0.501961 0.501961 SetFgColor
10747
 
10748
424 364 0 0 Box fill
10749
 
10750
 
10751
 
10752
0.501961 0.501961 0.501961 SetFgColor
10753
 
10754
424 364 0 0 Box fill
10755
 
10756
 
10757
 
10758
0.501961 0.501961 0.501961 SetFgColor
10759
 
10760
425 364 0 0 Box fill
10761
 
10762
 
10763
 
10764
0.501961 0.501961 0.501961 SetFgColor
10765
 
10766
425 364 0 0 Box fill
10767
 
10768
 
10769
 
10770
0.501961 0.501961 0.501961 SetFgColor
10771
 
10772
425 364 0 0 Box fill
10773
 
10774
 
10775
 
10776
0.501961 0.501961 0.501961 SetFgColor
10777
 
10778
425 364 0 0 Box fill
10779
 
10780
 
10781
 
10782
0.501961 0.501961 0.501961 SetFgColor
10783
 
10784
426 364 0 0 Box fill
10785
 
10786
 
10787
 
10788
0.501961 0.501961 0.501961 SetFgColor
10789
 
10790
426 364 0 0 Box fill
10791
 
10792
 
10793
 
10794
0.501961 0.501961 0.501961 SetFgColor
10795
 
10796
426 364 0 0 Box fill
10797
 
10798
 
10799
 
10800
0.501961 0.501961 0.501961 SetFgColor
10801
 
10802
426 364 0 0 Box fill
10803
 
10804
 
10805
 
10806
0.501961 0.501961 0.501961 SetFgColor
10807
 
10808
427 364 0 0 Box fill
10809
 
10810
 
10811
 
10812
0.501961 0.501961 0.501961 SetFgColor
10813
 
10814
427 364 0 0 Box fill
10815
 
10816
 
10817
 
10818
0.501961 0.501961 0.501961 SetFgColor
10819
 
10820
427 364 0 0 Box fill
10821
 
10822
 
10823
 
10824
0.501961 0.501961 0.501961 SetFgColor
10825
 
10826
427 364 0 0 Box fill
10827
 
10828
 
10829
 
10830
0.501961 0.501961 0.501961 SetFgColor
10831
 
10832
428 364 0 0 Box fill
10833
 
10834
 
10835
 
10836
0.501961 0.501961 0.501961 SetFgColor
10837
 
10838
428 364 0 0 Box fill
10839
 
10840
 
10841
 
10842
0.501961 0.501961 0.501961 SetFgColor
10843
 
10844
428 364 0 0 Box fill
10845
 
10846
 
10847
 
10848
0.501961 0.501961 0.501961 SetFgColor
10849
 
10850
428 364 0 0 Box fill
10851
 
10852
 
10853
 
10854
0.501961 0.501961 0.501961 SetFgColor
10855
 
10856
429 364 0 0 Box fill
10857
 
10858
 
10859
 
10860
0.501961 0.501961 0.501961 SetFgColor
10861
 
10862
429 364 0 0 Box fill
10863
 
10864
 
10865
 
10866
0.501961 0.501961 0.501961 SetFgColor
10867
 
10868
429 364 0 0 Box fill
10869
 
10870
 
10871
 
10872
0.501961 0.501961 0.501961 SetFgColor
10873
 
10874
429 364 0 0 Box fill
10875
 
10876
 
10877
 
10878
0.501961 0.501961 0.501961 SetFgColor
10879
 
10880
430 364 0 0 Box fill
10881
 
10882
 
10883
 
10884
0.501961 0.501961 0.501961 SetFgColor
10885
 
10886
430 364 0 0 Box fill
10887
 
10888
 
10889
 
10890
0.501961 0.501961 0.501961 SetFgColor
10891
 
10892
430 364 0 0 Box fill
10893
 
10894
 
10895
 
10896
0.501961 0.501961 0.501961 SetFgColor
10897
 
10898
430 364 0 0 Box fill
10899
 
10900
 
10901
 
10902
0.501961 0.501961 0.501961 SetFgColor
10903
 
10904
431 364 0 0 Box fill
10905
 
10906
 
10907
 
10908
0.501961 0.501961 0.501961 SetFgColor
10909
 
10910
431 364 0 0 Box fill
10911
 
10912
 
10913
 
10914
0.501961 0.501961 0.501961 SetFgColor
10915
 
10916
431 364 0 0 Box fill
10917
 
10918
 
10919
 
10920
0.501961 0.501961 0.501961 SetFgColor
10921
 
10922
431 364 0 0 Box fill
10923
 
10924
 
10925
 
10926
0.501961 0.501961 0.501961 SetFgColor
10927
 
10928
432 364 0 0 Box fill
10929
 
10930
 
10931
 
10932
0.501961 0.501961 0.501961 SetFgColor
10933
 
10934
432 364 0 0 Box fill
10935
 
10936
 
10937
 
10938
0.501961 0.501961 0.501961 SetFgColor
10939
 
10940
432 364 0 0 Box fill
10941
 
10942
 
10943
 
10944
0.501961 0.501961 0.501961 SetFgColor
10945
 
10946
432 364 0 0 Box fill
10947
 
10948
 
10949
 
10950
0.501961 0.501961 0.501961 SetFgColor
10951
 
10952
433 364 0 0 Box fill
10953
 
10954
 
10955
 
10956
0.501961 0.501961 0.501961 SetFgColor
10957
 
10958
433 364 0 0 Box fill
10959
 
10960
 
10961
 
10962
0.501961 0.501961 0.501961 SetFgColor
10963
 
10964
433 364 0 0 Box fill
10965
 
10966
 
10967
 
10968
0.501961 0.501961 0.501961 SetFgColor
10969
 
10970
433 364 0 0 Box fill
10971
 
10972
 
10973
 
10974
0.501961 0.501961 0.501961 SetFgColor
10975
 
10976
434 364 0 0 Box fill
10977
 
10978
 
10979
 
10980
0.501961 0.501961 0.501961 SetFgColor
10981
 
10982
434 364 0 0 Box fill
10983
 
10984
 
10985
 
10986
0.501961 0.501961 0.501961 SetFgColor
10987
 
10988
434 364 0 0 Box fill
10989
 
10990
 
10991
 
10992
0.501961 0.501961 0.501961 SetFgColor
10993
 
10994
434 364 0 0 Box fill
10995
 
10996
 
10997
 
10998
0.501961 0.501961 0.501961 SetFgColor
10999
 
11000
434 364 0 0 Box fill
11001
 
11002
 
11003
 
11004
0.501961 0.501961 0.501961 SetFgColor
11005
 
11006
435 364 0 0 Box fill
11007
 
11008
 
11009
 
11010
0.501961 0.501961 0.501961 SetFgColor
11011
 
11012
435 364 0 0 Box fill
11013
 
11014
 
11015
 
11016
0.501961 0.501961 0.501961 SetFgColor
11017
 
11018
435 364 0 0 Box fill
11019
 
11020
 
11021
 
11022
0.501961 0.501961 0.501961 SetFgColor
11023
 
11024
435 364 0 0 Box fill
11025
 
11026
 
11027
 
11028
0.501961 0.501961 0.501961 SetFgColor
11029
 
11030
436 364 0 0 Box fill
11031
 
11032
 
11033
 
11034
0.501961 0.501961 0.501961 SetFgColor
11035
 
11036
436 364 0 0 Box fill
11037
 
11038
 
11039
 
11040
0.501961 0.501961 0.501961 SetFgColor
11041
 
11042
436 364 0 0 Box fill
11043
 
11044
 
11045
 
11046
0.501961 0.501961 0.501961 SetFgColor
11047
 
11048
436 364 0 0 Box fill
11049
 
11050
 
11051
 
11052
0.501961 0.501961 0.501961 SetFgColor
11053
 
11054
437 364 0 0 Box fill
11055
 
11056
 
11057
 
11058
0.501961 0.501961 0.501961 SetFgColor
11059
 
11060
437 364 0 0 Box fill
11061
 
11062
 
11063
 
11064
0.501961 0.501961 0.501961 SetFgColor
11065
 
11066
437 364 0 0 Box fill
11067
 
11068
 
11069
 
11070
0.501961 0.501961 0.501961 SetFgColor
11071
 
11072
437 364 0 0 Box fill
11073
 
11074
 
11075
 
11076
0.501961 0.501961 0.501961 SetFgColor
11077
 
11078
438 364 0 0 Box fill
11079
 
11080
 
11081
 
11082
0.501961 0.501961 0.501961 SetFgColor
11083
 
11084
438 364 0 0 Box fill
11085
 
11086
 
11087
 
11088
0.501961 0.501961 0.501961 SetFgColor
11089
 
11090
438 364 0 0 Box fill
11091
 
11092
 
11093
 
11094
0.501961 0.501961 0.501961 SetFgColor
11095
 
11096
438 364 0 0 Box fill
11097
 
11098
 
11099
 
11100
0.501961 0.501961 0.501961 SetFgColor
11101
 
11102
439 364 0 0 Box fill
11103
 
11104
 
11105
 
11106
0.501961 0.501961 0.501961 SetFgColor
11107
 
11108
439 364 0 0 Box fill
11109
 
11110
 
11111
 
11112
0.501961 0.501961 0.501961 SetFgColor
11113
 
11114
439 364 0 0 Box fill
11115
 
11116
 
11117
 
11118
0.501961 0.501961 0.501961 SetFgColor
11119
 
11120
439 364 0 0 Box fill
11121
 
11122
 
11123
 
11124
0.501961 0.501961 0.501961 SetFgColor
11125
 
11126
440 364 0 0 Box fill
11127
 
11128
 
11129
 
11130
0.501961 0.501961 0.501961 SetFgColor
11131
 
11132
440 364 0 0 Box fill
11133
 
11134
 
11135
 
11136
0.501961 0.501961 0.501961 SetFgColor
11137
 
11138
440 364 0 0 Box fill
11139
 
11140
 
11141
 
11142
0.501961 0.501961 0.501961 SetFgColor
11143
 
11144
440 364 0 0 Box fill
11145
 
11146
 
11147
 
11148
0.501961 0.501961 0.501961 SetFgColor
11149
 
11150
441 364 0 0 Box fill
11151
 
11152
 
11153
 
11154
0.501961 0.501961 0.501961 SetFgColor
11155
 
11156
441 364 0 0 Box fill
11157
 
11158
 
11159
 
11160
0.501961 0.501961 0.501961 SetFgColor
11161
 
11162
441 364 0 0 Box fill
11163
 
11164
 
11165
 
11166
0.501961 0.501961 0.501961 SetFgColor
11167
 
11168
441 364 0 0 Box fill
11169
 
11170
 
11171
 
11172
0.501961 0.501961 0.501961 SetFgColor
11173
 
11174
442 364 0 0 Box fill
11175
 
11176
 
11177
 
11178
0.501961 0.501961 0.501961 SetFgColor
11179
 
11180
442 364 0 0 Box fill
11181
 
11182
 
11183
 
11184
0.501961 0.501961 0.501961 SetFgColor
11185
 
11186
442 364 0 0 Box fill
11187
 
11188
 
11189
 
11190
0.501961 0.501961 0.501961 SetFgColor
11191
 
11192
442 364 0 0 Box fill
11193
 
11194
 
11195
 
11196
0.501961 0.501961 0.501961 SetFgColor
11197
 
11198
443 364 0 0 Box fill
11199
 
11200
 
11201
 
11202
0.501961 0.501961 0.501961 SetFgColor
11203
 
11204
443 364 0 0 Box fill
11205
 
11206
 
11207
 
11208
0.501961 0.501961 0.501961 SetFgColor
11209
 
11210
443 364 0 0 Box fill
11211
 
11212
 
11213
 
11214
0.501961 0.501961 0.501961 SetFgColor
11215
 
11216
443 364 0 0 Box fill
11217
 
11218
 
11219
 
11220
0.501961 0.501961 0.501961 SetFgColor
11221
 
11222
444 364 0 0 Box fill
11223
 
11224
 
11225
 
11226
0.501961 0.501961 0.501961 SetFgColor
11227
 
11228
444 364 0 0 Box fill
11229
 
11230
 
11231
 
11232
0.501961 0.501961 0.501961 SetFgColor
11233
 
11234
444 364 0 0 Box fill
11235
 
11236
 
11237
 
11238
0.501961 0.501961 0.501961 SetFgColor
11239
 
11240
444 364 0 0 Box fill
11241
 
11242
 
11243
 
11244
0.501961 0.501961 0.501961 SetFgColor
11245
 
11246
445 364 0 0 Box fill
11247
 
11248
 
11249
 
11250
0.501961 0.501961 0.501961 SetFgColor
11251
 
11252
445 364 0 0 Box fill
11253
 
11254
 
11255
 
11256
0.501961 0.501961 0.501961 SetFgColor
11257
 
11258
445 364 0 0 Box fill
11259
 
11260
 
11261
 
11262
0.501961 0.501961 0.501961 SetFgColor
11263
 
11264
445 364 0 0 Box fill
11265
 
11266
 
11267
 
11268
0.501961 0.501961 0.501961 SetFgColor
11269
 
11270
446 364 0 0 Box fill
11271
 
11272
 
11273
 
11274
0.501961 0.501961 0.501961 SetFgColor
11275
 
11276
446 364 0 0 Box fill
11277
 
11278
 
11279
 
11280
0.501961 0.501961 0.501961 SetFgColor
11281
 
11282
446 364 0 0 Box fill
11283
 
11284
 
11285
 
11286
0.501961 0.501961 0.501961 SetFgColor
11287
 
11288
446 364 0 0 Box fill
11289
 
11290
 
11291
 
11292
0.501961 0.501961 0.501961 SetFgColor
11293
 
11294
447 364 0 0 Box fill
11295
 
11296
 
11297
 
11298
0.501961 0.501961 0.501961 SetFgColor
11299
 
11300
447 364 0 0 Box fill
11301
 
11302
 
11303
 
11304
0.501961 0.501961 0.501961 SetFgColor
11305
 
11306
447 364 0 0 Box fill
11307
 
11308
 
11309
 
11310
0.501961 0.501961 0.501961 SetFgColor
11311
 
11312
447 364 0 0 Box fill
11313
 
11314
 
11315
 
11316
0.501961 0.501961 0.501961 SetFgColor
11317
 
11318
448 364 0 0 Box fill
11319
 
11320
 
11321
 
11322
0.501961 0.501961 0.501961 SetFgColor
11323
 
11324
448 364 0 0 Box fill
11325
 
11326
 
11327
 
11328
0.501961 0.501961 0.501961 SetFgColor
11329
 
11330
448 364 0 0 Box fill
11331
 
11332
 
11333
 
11334
0.501961 0.501961 0.501961 SetFgColor
11335
 
11336
448 364 0 0 Box fill
11337
 
11338
 
11339
 
11340
0.501961 0.501961 0.501961 SetFgColor
11341
 
11342
449 364 0 0 Box fill
11343
 
11344
 
11345
 
11346
0.501961 0.501961 0.501961 SetFgColor
11347
 
11348
449 364 0 0 Box fill
11349
 
11350
 
11351
 
11352
0.501961 0.501961 0.501961 SetFgColor
11353
 
11354
449 364 0 0 Box fill
11355
 
11356
 
11357
 
11358
0.501961 0.501961 0.501961 SetFgColor
11359
 
11360
449 364 0 0 Box fill
11361
 
11362
 
11363
 
11364
0.501961 0.501961 0.501961 SetFgColor
11365
 
11366
450 364 0 0 Box fill
11367
 
11368
 
11369
 
11370
0.501961 0.501961 0.501961 SetFgColor
11371
 
11372
450 364 0 0 Box fill
11373
 
11374
 
11375
 
11376
0.501961 0.501961 0.501961 SetFgColor
11377
 
11378
450 364 0 0 Box fill
11379
 
11380
 
11381
 
11382
0.501961 0.501961 0.501961 SetFgColor
11383
 
11384
450 364 0 0 Box fill
11385
 
11386
 
11387
 
11388
0.501961 0.501961 0.501961 SetFgColor
11389
 
11390
451 364 0 0 Box fill
11391
 
11392
 
11393
 
11394
0.501961 0.501961 0.501961 SetFgColor
11395
 
11396
451 364 0 0 Box fill
11397
 
11398
 
11399
 
11400
0.501961 0.501961 0.501961 SetFgColor
11401
 
11402
451 364 0 0 Box fill
11403
 
11404
 
11405
 
11406
0.501961 0.501961 0.501961 SetFgColor
11407
 
11408
451 364 0 0 Box fill
11409
 
11410
 
11411
 
11412
0.501961 0.501961 0.501961 SetFgColor
11413
 
11414
452 364 0 0 Box fill
11415
 
11416
 
11417
 
11418
0.501961 0.501961 0.501961 SetFgColor
11419
 
11420
452 364 0 0 Box fill
11421
 
11422
 
11423
 
11424
0.501961 0.501961 0.501961 SetFgColor
11425
 
11426
452 364 0 0 Box fill
11427
 
11428
 
11429
 
11430
0.501961 0.501961 0.501961 SetFgColor
11431
 
11432
452 364 0 0 Box fill
11433
 
11434
 
11435
 
11436
0.501961 0.501961 0.501961 SetFgColor
11437
 
11438
453 364 0 0 Box fill
11439
 
11440
 
11441
 
11442
0.501961 0.501961 0.501961 SetFgColor
11443
 
11444
453 364 0 0 Box fill
11445
 
11446
 
11447
 
11448
0.501961 0.501961 0.501961 SetFgColor
11449
 
11450
453 364 0 0 Box fill
11451
 
11452
 
11453
 
11454
0.501961 0.501961 0.501961 SetFgColor
11455
 
11456
453 364 0 0 Box fill
11457
 
11458
 
11459
 
11460
0.501961 0.501961 0.501961 SetFgColor
11461
 
11462
454 364 0 0 Box fill
11463
 
11464
 
11465
 
11466
0.501961 0.501961 0.501961 SetFgColor
11467
 
11468
454 364 0 0 Box fill
11469
 
11470
 
11471
 
11472
0.501961 0.501961 0.501961 SetFgColor
11473
 
11474
454 364 0 0 Box fill
11475
 
11476
 
11477
 
11478
0.501961 0.501961 0.501961 SetFgColor
11479
 
11480
454 364 0 0 Box fill
11481
 
11482
 
11483
 
11484
0.501961 0.501961 0.501961 SetFgColor
11485
 
11486
454 364 0 0 Box fill
11487
 
11488
 
11489
 
11490
0.501961 0.501961 0.501961 SetFgColor
11491
 
11492
455 364 0 0 Box fill
11493
 
11494
 
11495
 
11496
0.501961 0.501961 0.501961 SetFgColor
11497
 
11498
455 364 0 0 Box fill
11499
 
11500
 
11501
 
11502
0.501961 0.501961 0.501961 SetFgColor
11503
 
11504
455 364 0 0 Box fill
11505
 
11506
 
11507
 
11508
0.501961 0.501961 0.501961 SetFgColor
11509
 
11510
455 364 0 0 Box fill
11511
 
11512
 
11513
 
11514
0.501961 0.501961 0.501961 SetFgColor
11515
 
11516
456 364 0 0 Box fill
11517
 
11518
 
11519
 
11520
0.501961 0.501961 0.501961 SetFgColor
11521
 
11522
456 364 0 0 Box fill
11523
 
11524
 
11525
 
11526
0.501961 0.501961 0.501961 SetFgColor
11527
 
11528
456 364 0 0 Box fill
11529
 
11530
 
11531
 
11532
0.501961 0.501961 0.501961 SetFgColor
11533
 
11534
456 364 0 0 Box fill
11535
 
11536
 
11537
 
11538
0.501961 0.501961 0.501961 SetFgColor
11539
 
11540
457 364 0 0 Box fill
11541
 
11542
 
11543
 
11544
0.501961 0.501961 0.501961 SetFgColor
11545
 
11546
457 364 0 0 Box fill
11547
 
11548
 
11549
 
11550
0.501961 0.501961 0.501961 SetFgColor
11551
 
11552
457 364 0 0 Box fill
11553
 
11554
 
11555
 
11556
0.501961 0.501961 0.501961 SetFgColor
11557
 
11558
457 364 0 0 Box fill
11559
 
11560
 
11561
 
11562
0.501961 0.501961 0.501961 SetFgColor
11563
 
11564
458 364 0 0 Box fill
11565
 
11566
 
11567
 
11568
0.501961 0.501961 0.501961 SetFgColor
11569
 
11570
458 364 0 0 Box fill
11571
 
11572
 
11573
 
11574
0.501961 0.501961 0.501961 SetFgColor
11575
 
11576
458 364 0 0 Box fill
11577
 
11578
 
11579
 
11580
0.501961 0.501961 0.501961 SetFgColor
11581
 
11582
458 364 0 0 Box fill
11583
 
11584
 
11585
 
11586
0.501961 0.501961 0.501961 SetFgColor
11587
 
11588
459 364 0 0 Box fill
11589
 
11590
 
11591
 
11592
0.501961 0.501961 0.501961 SetFgColor
11593
 
11594
459 364 0 0 Box fill
11595
 
11596
 
11597
 
11598
0.501961 0.501961 0.501961 SetFgColor
11599
 
11600
459 364 0 0 Box fill
11601
 
11602
 
11603
 
11604
0.501961 0.501961 0.501961 SetFgColor
11605
 
11606
459 364 0 0 Box fill
11607
 
11608
 
11609
 
11610
0.501961 0.501961 0.501961 SetFgColor
11611
 
11612
460 364 0 0 Box fill
11613
 
11614
 
11615
 
11616
0.501961 0.501961 0.501961 SetFgColor
11617
 
11618
460 364 0 0 Box fill
11619
 
11620
 
11621
 
11622
0.501961 0.501961 0.501961 SetFgColor
11623
 
11624
460 364 0 0 Box fill
11625
 
11626
 
11627
 
11628
0.501961 0.501961 0.501961 SetFgColor
11629
 
11630
460 364 0 0 Box fill
11631
 
11632
 
11633
 
11634
0.501961 0.501961 0.501961 SetFgColor
11635
 
11636
461 364 0 0 Box fill
11637
 
11638
 
11639
 
11640
0.501961 0.501961 0.501961 SetFgColor
11641
 
11642
461 364 0 0 Box fill
11643
 
11644
 
11645
 
11646
0.501961 0.501961 0.501961 SetFgColor
11647
 
11648
461 364 0 0 Box fill
11649
 
11650
 
11651
 
11652
0.501961 0.501961 0.501961 SetFgColor
11653
 
11654
461 364 0 0 Box fill
11655
 
11656
 
11657
 
11658
0.501961 0.501961 0.501961 SetFgColor
11659
 
11660
462 364 0 0 Box fill
11661
 
11662
 
11663
 
11664
0.501961 0.501961 0.501961 SetFgColor
11665
 
11666
462 364 0 0 Box fill
11667
 
11668
 
11669
 
11670
0.501961 0.501961 0.501961 SetFgColor
11671
 
11672
462 364 0 0 Box fill
11673
 
11674
 
11675
 
11676
0.501961 0.501961 0.501961 SetFgColor
11677
 
11678
462 364 0 0 Box fill
11679
 
11680
 
11681
 
11682
0.501961 0.501961 0.501961 SetFgColor
11683
 
11684
463 364 0 0 Box fill
11685
 
11686
 
11687
 
11688
0.501961 0.501961 0.501961 SetFgColor
11689
 
11690
463 364 0 0 Box fill
11691
 
11692
 
11693
 
11694
0.501961 0.501961 0.501961 SetFgColor
11695
 
11696
463 364 0 0 Box fill
11697
 
11698
 
11699
 
11700
0.501961 0.501961 0.501961 SetFgColor
11701
 
11702
463 364 0 0 Box fill
11703
 
11704
 
11705
 
11706
0.501961 0.501961 0.501961 SetFgColor
11707
 
11708
464 364 0 0 Box fill
11709
 
11710
 
11711
 
11712
0.501961 0.501961 0.501961 SetFgColor
11713
 
11714
464 364 0 0 Box fill
11715
 
11716
 
11717
 
11718
0.501961 0.501961 0.501961 SetFgColor
11719
 
11720
464 364 0 0 Box fill
11721
 
11722
 
11723
 
11724
0.501961 0.501961 0.501961 SetFgColor
11725
 
11726
464 364 0 0 Box fill
11727
 
11728
 
11729
 
11730
0.501961 0.501961 0.501961 SetFgColor
11731
 
11732
465 364 0 0 Box fill
11733
 
11734
 
11735
 
11736
0.501961 0.501961 0.501961 SetFgColor
11737
 
11738
465 364 0 0 Box fill
11739
 
11740
 
11741
 
11742
0.501961 0.501961 0.501961 SetFgColor
11743
 
11744
465 364 0 0 Box fill
11745
 
11746
 
11747
 
11748
0.501961 0.501961 0.501961 SetFgColor
11749
 
11750
465 364 0 0 Box fill
11751
 
11752
 
11753
 
11754
0.501961 0.501961 0.501961 SetFgColor
11755
 
11756
466 364 0 0 Box fill
11757
 
11758
 
11759
 
11760
0.501961 0.501961 0.501961 SetFgColor
11761
 
11762
466 364 0 0 Box fill
11763
 
11764
 
11765
 
11766
0.501961 0.501961 0.501961 SetFgColor
11767
 
11768
466 364 0 0 Box fill
11769
 
11770
 
11771
 
11772
0.501961 0.501961 0.501961 SetFgColor
11773
 
11774
466 364 0 0 Box fill
11775
 
11776
 
11777
 
11778
0.501961 0.501961 0.501961 SetFgColor
11779
 
11780
467 364 0 0 Box fill
11781
 
11782
 
11783
 
11784
0.501961 0.501961 0.501961 SetFgColor
11785
 
11786
467 364 0 0 Box fill
11787
 
11788
 
11789
 
11790
0.501961 0.501961 0.501961 SetFgColor
11791
 
11792
467 364 0 0 Box fill
11793
 
11794
 
11795
 
11796
0.501961 0.501961 0.501961 SetFgColor
11797
 
11798
467 364 0 0 Box fill
11799
 
11800
 
11801
 
11802
0.501961 0.501961 0.501961 SetFgColor
11803
 
11804
468 364 0 0 Box fill
11805
 
11806
 
11807
 
11808
0.501961 0.501961 0.501961 SetFgColor
11809
 
11810
468 364 0 0 Box fill
11811
 
11812
 
11813
 
11814
0.501961 0.501961 0.501961 SetFgColor
11815
 
11816
468 364 0 0 Box fill
11817
 
11818
 
11819
 
11820
0.501961 0.501961 0.501961 SetFgColor
11821
 
11822
468 364 0 0 Box fill
11823
 
11824
 
11825
 
11826
0.501961 0.501961 0.501961 SetFgColor
11827
 
11828
469 364 0 0 Box fill
11829
 
11830
 
11831
 
11832
0.501961 0.501961 0.501961 SetFgColor
11833
 
11834
469 364 0 0 Box fill
11835
 
11836
 
11837
 
11838
0.501961 0.501961 0.501961 SetFgColor
11839
 
11840
469 364 0 0 Box fill
11841
 
11842
 
11843
 
11844
0.501961 0.501961 0.501961 SetFgColor
11845
 
11846
469 364 0 0 Box fill
11847
 
11848
 
11849
 
11850
0.501961 0.501961 0.501961 SetFgColor
11851
 
11852
470 364 0 0 Box fill
11853
 
11854
 
11855
 
11856
0.501961 0.501961 0.501961 SetFgColor
11857
 
11858
470 364 0 0 Box fill
11859
 
11860
 
11861
 
11862
0.501961 0.501961 0.501961 SetFgColor
11863
 
11864
470 364 0 0 Box fill
11865
 
11866
 
11867
 
11868
0.501961 0.501961 0.501961 SetFgColor
11869
 
11870
470 364 0 0 Box fill
11871
 
11872
 
11873
 
11874
0.501961 0.501961 0.501961 SetFgColor
11875
 
11876
471 364 0 0 Box fill
11877
 
11878
 
11879
 
11880
0.501961 0.501961 0.501961 SetFgColor
11881
 
11882
471 364 0 0 Box fill
11883
 
11884
 
11885
 
11886
0.501961 0.501961 0.501961 SetFgColor
11887
 
11888
471 364 0 0 Box fill
11889
 
11890
 
11891
 
11892
0.501961 0.501961 0.501961 SetFgColor
11893
 
11894
471 364 0 0 Box fill
11895
 
11896
 
11897
 
11898
0.501961 0.501961 0.501961 SetFgColor
11899
 
11900
472 364 0 0 Box fill
11901
 
11902
 
11903
 
11904
0.501961 0.501961 0.501961 SetFgColor
11905
 
11906
472 364 0 0 Box fill
11907
 
11908
 
11909
 
11910
0.501961 0.501961 0.501961 SetFgColor
11911
 
11912
472 364 0 0 Box fill
11913
 
11914
 
11915
 
11916
0.501961 0.501961 0.501961 SetFgColor
11917
 
11918
472 364 0 0 Box fill
11919
 
11920
 
11921
 
11922
0.501961 0.501961 0.501961 SetFgColor
11923
 
11924
473 364 0 0 Box fill
11925
 
11926
 
11927
 
11928
0.501961 0.501961 0.501961 SetFgColor
11929
 
11930
473 364 0 0 Box fill
11931
 
11932
 
11933
 
11934
0.501961 0.501961 0.501961 SetFgColor
11935
 
11936
473 364 0 0 Box fill
11937
 
11938
 
11939
 
11940
0.501961 0.501961 0.501961 SetFgColor
11941
 
11942
473 364 0 0 Box fill
11943
 
11944
 
11945
 
11946
0.501961 0.501961 0.501961 SetFgColor
11947
 
11948
474 364 0 0 Box fill
11949
 
11950
 
11951
 
11952
0.501961 0.501961 0.501961 SetFgColor
11953
 
11954
474 364 0 0 Box fill
11955
 
11956
 
11957
 
11958
0.501961 0.501961 0.501961 SetFgColor
11959
 
11960
474 364 0 0 Box fill
11961
 
11962
 
11963
 
11964
0.501961 0.501961 0.501961 SetFgColor
11965
 
11966
474 364 0 0 Box fill
11967
 
11968
 
11969
 
11970
0.501961 0.501961 0.501961 SetFgColor
11971
 
11972
475 364 0 0 Box fill
11973
 
11974
 
11975
 
11976
0.501961 0.501961 0.501961 SetFgColor
11977
 
11978
475 364 0 0 Box fill
11979
 
11980
 
11981
 
11982
0.501961 0.501961 0.501961 SetFgColor
11983
 
11984
475 364 0 0 Box fill
11985
 
11986
 
11987
 
11988
0.501961 0.501961 0.501961 SetFgColor
11989
 
11990
475 364 0 0 Box fill
11991
 
11992
 
11993
 
11994
0.501961 0.501961 0.501961 SetFgColor
11995
 
11996
475 364 0 0 Box fill
11997
 
11998
 
11999
 
12000
0.501961 0.501961 0.501961 SetFgColor
12001
 
12002
476 364 0 0 Box fill
12003
 
12004
 
12005
 
12006
0.501961 0.501961 0.501961 SetFgColor
12007
 
12008
476 364 0 0 Box fill
12009
 
12010
 
12011
 
12012
0.501961 0.501961 0.501961 SetFgColor
12013
 
12014
476 364 0 0 Box fill
12015
 
12016
 
12017
 
12018
0.501961 0.501961 0.501961 SetFgColor
12019
 
12020
476 364 0 0 Box fill
12021
 
12022
 
12023
 
12024
0.501961 0.501961 0.501961 SetFgColor
12025
 
12026
477 364 0 0 Box fill
12027
 
12028
 
12029
 
12030
0.501961 0.501961 0.501961 SetFgColor
12031
 
12032
477 364 0 0 Box fill
12033
 
12034
 
12035
 
12036
0.501961 0.501961 0.501961 SetFgColor
12037
 
12038
477 364 0 0 Box fill
12039
 
12040
 
12041
 
12042
0.501961 0.501961 0.501961 SetFgColor
12043
 
12044
477 364 0 0 Box fill
12045
 
12046
 
12047
 
12048
0.501961 0.501961 0.501961 SetFgColor
12049
 
12050
478 364 0 0 Box fill
12051
 
12052
 
12053
 
12054
0.501961 0.501961 0.501961 SetFgColor
12055
 
12056
478 364 0 0 Box fill
12057
 
12058
 
12059
 
12060
0.501961 0.501961 0.501961 SetFgColor
12061
 
12062
478 364 0 0 Box fill
12063
 
12064
 
12065
 
12066
0.501961 0.501961 0.501961 SetFgColor
12067
 
12068
478 364 0 0 Box fill
12069
 
12070
 
12071
 
12072
0.501961 0.501961 0.501961 SetFgColor
12073
 
12074
479 364 0 0 Box fill
12075
 
12076
 
12077
 
12078
0.501961 0.501961 0.501961 SetFgColor
12079
 
12080
479 364 0 0 Box fill
12081
 
12082
 
12083
 
12084
0.501961 0.501961 0.501961 SetFgColor
12085
 
12086
479 364 0 0 Box fill
12087
 
12088
 
12089
 
12090
0.501961 0.501961 0.501961 SetFgColor
12091
 
12092
479 364 0 0 Box fill
12093
 
12094
 
12095
 
12096
0.501961 0.501961 0.501961 SetFgColor
12097
 
12098
480 364 0 0 Box fill
12099
 
12100
 
12101
 
12102
0.501961 0.501961 0.501961 SetFgColor
12103
 
12104
480 364 0 0 Box fill
12105
 
12106
 
12107
 
12108
0.501961 0.501961 0.501961 SetFgColor
12109
 
12110
480 364 0 0 Box fill
12111
 
12112
 
12113
 
12114
0.501961 0.501961 0.501961 SetFgColor
12115
 
12116
480 364 0 0 Box fill
12117
 
12118
 
12119
 
12120
0.501961 0.501961 0.501961 SetFgColor
12121
 
12122
481 364 0 0 Box fill
12123
 
12124
 
12125
 
12126
0.501961 0.501961 0.501961 SetFgColor
12127
 
12128
481 364 0 0 Box fill
12129
 
12130
 
12131
 
12132
0.501961 0.501961 0.501961 SetFgColor
12133
 
12134
481 364 0 0 Box fill
12135
 
12136
 
12137
 
12138
0.501961 0.501961 0.501961 SetFgColor
12139
 
12140
481 364 0 0 Box fill
12141
 
12142
 
12143
 
12144
0.501961 0.501961 0.501961 SetFgColor
12145
 
12146
482 364 0 0 Box fill
12147
 
12148
 
12149
 
12150
0.501961 0.501961 0.501961 SetFgColor
12151
 
12152
482 364 0 0 Box fill
12153
 
12154
 
12155
 
12156
0.501961 0.501961 0.501961 SetFgColor
12157
 
12158
482 364 0 0 Box fill
12159
 
12160
 
12161
 
12162
0.501961 0.501961 0.501961 SetFgColor
12163
 
12164
482 364 0 0 Box fill
12165
 
12166
 
12167
 
12168
0.501961 0.501961 0.501961 SetFgColor
12169
 
12170
483 364 0 0 Box fill
12171
 
12172
 
12173
 
12174
0.501961 0.501961 0.501961 SetFgColor
12175
 
12176
483 364 0 0 Box fill
12177
 
12178
 
12179
 
12180
0.501961 0.501961 0.501961 SetFgColor
12181
 
12182
483 364 0 0 Box fill
12183
 
12184
 
12185
 
12186
0.501961 0.501961 0.501961 SetFgColor
12187
 
12188
483 364 0 0 Box fill
12189
 
12190
 
12191
 
12192
0.501961 0.501961 0.501961 SetFgColor
12193
 
12194
484 364 0 0 Box fill
12195
 
12196
 
12197
 
12198
0.501961 0.501961 0.501961 SetFgColor
12199
 
12200
484 364 0 0 Box fill
12201
 
12202
 
12203
 
12204
0.501961 0.501961 0.501961 SetFgColor
12205
 
12206
484 364 0 0 Box fill
12207
 
12208
 
12209
 
12210
0.501961 0.501961 0.501961 SetFgColor
12211
 
12212
484 364 0 0 Box fill
12213
 
12214
 
12215
 
12216
0.501961 0.501961 0.501961 SetFgColor
12217
 
12218
485 364 0 0 Box fill
12219
 
12220
 
12221
 
12222
0.501961 0.501961 0.501961 SetFgColor
12223
 
12224
485 364 0 0 Box fill
12225
 
12226
 
12227
 
12228
0.501961 0.501961 0.501961 SetFgColor
12229
 
12230
485 364 0 0 Box fill
12231
 
12232
 
12233
 
12234
0.501961 0.501961 0.501961 SetFgColor
12235
 
12236
485 364 0 0 Box fill
12237
 
12238
 
12239
 
12240
0.501961 0.501961 0.501961 SetFgColor
12241
 
12242
486 364 0 0 Box fill
12243
 
12244
 
12245
 
12246
0.501961 0.501961 0.501961 SetFgColor
12247
 
12248
486 364 0 0 Box fill
12249
 
12250
 
12251
 
12252
0.501961 0.501961 0.501961 SetFgColor
12253
 
12254
486 364 0 0 Box fill
12255
 
12256
 
12257
 
12258
0.501961 0.501961 0.501961 SetFgColor
12259
 
12260
486 364 0 0 Box fill
12261
 
12262
 
12263
 
12264
0.501961 0.501961 0.501961 SetFgColor
12265
 
12266
487 364 0 0 Box fill
12267
 
12268
 
12269
 
12270
0.501961 0.501961 0.501961 SetFgColor
12271
 
12272
487 364 0 0 Box fill
12273
 
12274
 
12275
 
12276
0.501961 0.501961 0.501961 SetFgColor
12277
 
12278
487 364 0 0 Box fill
12279
 
12280
 
12281
 
12282
0.501961 0.501961 0.501961 SetFgColor
12283
 
12284
487 364 0 0 Box fill
12285
 
12286
 
12287
 
12288
0.501961 0.501961 0.501961 SetFgColor
12289
 
12290
488 364 0 0 Box fill
12291
 
12292
 
12293
 
12294
0.501961 0.501961 0.501961 SetFgColor
12295
 
12296
488 364 0 0 Box fill
12297
 
12298
 
12299
 
12300
0.501961 0.501961 0.501961 SetFgColor
12301
 
12302
488 364 0 0 Box fill
12303
 
12304
 
12305
 
12306
0.501961 0.501961 0.501961 SetFgColor
12307
 
12308
488 364 0 0 Box fill
12309
 
12310
 
12311
 
12312
0.501961 0.501961 0.501961 SetFgColor
12313
 
12314
489 364 0 0 Box fill
12315
 
12316
 
12317
 
12318
0.501961 0.501961 0.501961 SetFgColor
12319
 
12320
489 364 0 0 Box fill
12321
 
12322
 
12323
 
12324
0.501961 0.501961 0.501961 SetFgColor
12325
 
12326
489 364 0 0 Box fill
12327
 
12328
 
12329
 
12330
0.501961 0.501961 0.501961 SetFgColor
12331
 
12332
489 364 0 0 Box fill
12333
 
12334
 
12335
 
12336
0.501961 0.501961 0.501961 SetFgColor
12337
 
12338
490 364 0 0 Box fill
12339
 
12340
 
12341
 
12342
0.501961 0.501961 0.501961 SetFgColor
12343
 
12344
490 364 0 0 Box fill
12345
 
12346
 
12347
 
12348
0.501961 0.501961 0.501961 SetFgColor
12349
 
12350
490 364 0 0 Box fill
12351
 
12352
 
12353
 
12354
0.501961 0.501961 0.501961 SetFgColor
12355
 
12356
490 364 0 0 Box fill
12357
 
12358
 
12359
 
12360
0.501961 0.501961 0.501961 SetFgColor
12361
 
12362
491 364 0 0 Box fill
12363
 
12364
 
12365
 
12366
0.501961 0.501961 0.501961 SetFgColor
12367
 
12368
491 364 0 0 Box fill
12369
 
12370
 
12371
 
12372
0.501961 0.501961 0.501961 SetFgColor
12373
 
12374
491 364 0 0 Box fill
12375
 
12376
 
12377
 
12378
0.501961 0.501961 0.501961 SetFgColor
12379
 
12380
491 364 0 0 Box fill
12381
 
12382
 
12383
 
12384
0.501961 0.501961 0.501961 SetFgColor
12385
 
12386
492 364 0 0 Box fill
12387
 
12388
 
12389
 
12390
0.501961 0.501961 0.501961 SetFgColor
12391
 
12392
492 364 0 0 Box fill
12393
 
12394
 
12395
 
12396
0.501961 0.501961 0.501961 SetFgColor
12397
 
12398
492 364 0 0 Box fill
12399
 
12400
 
12401
 
12402
0.501961 0.501961 0.501961 SetFgColor
12403
 
12404
492 364 0 0 Box fill
12405
 
12406
 
12407
 
12408
0.501961 0.501961 0.501961 SetFgColor
12409
 
12410
493 364 0 0 Box fill
12411
 
12412
 
12413
 
12414
0.501961 0.501961 0.501961 SetFgColor
12415
 
12416
493 364 0 0 Box fill
12417
 
12418
 
12419
 
12420
0.501961 0.501961 0.501961 SetFgColor
12421
 
12422
493 364 0 0 Box fill
12423
 
12424
 
12425
 
12426
0.501961 0.501961 0.501961 SetFgColor
12427
 
12428
493 364 0 0 Box fill
12429
 
12430
 
12431
 
12432
0.501961 0.501961 0.501961 SetFgColor
12433
 
12434
494 364 0 0 Box fill
12435
 
12436
 
12437
 
12438
0.501961 0.501961 0.501961 SetFgColor
12439
 
12440
494 364 0 0 Box fill
12441
 
12442
 
12443
 
12444
0.501961 0.501961 0.501961 SetFgColor
12445
 
12446
494 364 0 0 Box fill
12447
 
12448
 
12449
 
12450
0.501961 0.501961 0.501961 SetFgColor
12451
 
12452
494 364 0 0 Box fill
12453
 
12454
 
12455
 
12456
0.501961 0.501961 0.501961 SetFgColor
12457
 
12458
495 364 0 0 Box fill
12459
 
12460
 
12461
 
12462
0.501961 0.501961 0.501961 SetFgColor
12463
 
12464
495 364 0 0 Box fill
12465
 
12466
 
12467
 
12468
0.501961 0.501961 0.501961 SetFgColor
12469
 
12470
495 364 0 0 Box fill
12471
 
12472
 
12473
 
12474
0.501961 0.501961 0.501961 SetFgColor
12475
 
12476
495 364 0 0 Box fill
12477
 
12478
 
12479
 
12480
0.501961 0.501961 0.501961 SetFgColor
12481
 
12482
495 364 0 0 Box fill
12483
 
12484
 
12485
 
12486
0.501961 0.501961 0.501961 SetFgColor
12487
 
12488
496 364 0 0 Box fill
12489
 
12490
 
12491
 
12492
0.501961 0.501961 0.501961 SetFgColor
12493
 
12494
496 364 0 0 Box fill
12495
 
12496
 
12497
 
12498
0.501961 0.501961 0.501961 SetFgColor
12499
 
12500
496 364 0 0 Box fill
12501
 
12502
 
12503
 
12504
0.501961 0.501961 0.501961 SetFgColor
12505
 
12506
496 364 0 0 Box fill
12507
 
12508
 
12509
 
12510
0.501961 0.501961 0.501961 SetFgColor
12511
 
12512
497 364 0 0 Box fill
12513
 
12514
 
12515
 
12516
0.501961 0.501961 0.501961 SetFgColor
12517
 
12518
497 364 0 0 Box fill
12519
 
12520
 
12521
 
12522
0.501961 0.501961 0.501961 SetFgColor
12523
 
12524
497 364 0 0 Box fill
12525
 
12526
 
12527
 
12528
0.501961 0.501961 0.501961 SetFgColor
12529
 
12530
497 364 0 0 Box fill
12531
 
12532
 
12533
 
12534
0.501961 0.501961 0.501961 SetFgColor
12535
 
12536
498 364 0 0 Box fill
12537
 
12538
 
12539
 
12540
0.501961 0.501961 0.501961 SetFgColor
12541
 
12542
498 364 0 0 Box fill
12543
 
12544
 
12545
 
12546
0.501961 0.501961 0.501961 SetFgColor
12547
 
12548
498 364 0 0 Box fill
12549
 
12550
 
12551
 
12552
0.501961 0.501961 0.501961 SetFgColor
12553
 
12554
498 364 0 0 Box fill
12555
 
12556
 
12557
 
12558
0.501961 0.501961 0.501961 SetFgColor
12559
 
12560
499 364 0 0 Box fill
12561
 
12562
 
12563
 
12564
0.501961 0.501961 0.501961 SetFgColor
12565
 
12566
499 364 0 0 Box fill
12567
 
12568
 
12569
 
12570
0.501961 0.501961 0.501961 SetFgColor
12571
 
12572
499 364 0 0 Box fill
12573
 
12574
 
12575
 
12576
0.501961 0.501961 0.501961 SetFgColor
12577
 
12578
499 364 0 0 Box fill
12579
 
12580
 
12581
 
12582
0.501961 0.501961 0.501961 SetFgColor
12583
 
12584
500 364 0 0 Box fill
12585
 
12586
 
12587
 
12588
0.501961 0.501961 0.501961 SetFgColor
12589
 
12590
500 364 0 0 Box fill
12591
 
12592
 
12593
 
12594
0.501961 0.501961 0.501961 SetFgColor
12595
 
12596
500 364 0 0 Box fill
12597
 
12598
 
12599
 
12600
0.501961 0.501961 0.501961 SetFgColor
12601
 
12602
500 364 0 0 Box fill
12603
 
12604
 
12605
 
12606
0.501961 0.501961 0.501961 SetFgColor
12607
 
12608
501 364 0 0 Box fill
12609
 
12610
 
12611
 
12612
0.501961 0.501961 0.501961 SetFgColor
12613
 
12614
501 364 0 0 Box fill
12615
 
12616
 
12617
 
12618
0.501961 0.501961 0.501961 SetFgColor
12619
 
12620
501 364 0 0 Box fill
12621
 
12622
 
12623
 
12624
0.501961 0.501961 0.501961 SetFgColor
12625
 
12626
501 364 0 0 Box fill
12627
 
12628
 
12629
 
12630
0.501961 0.501961 0.501961 SetFgColor
12631
 
12632
502 364 0 0 Box fill
12633
 
12634
 
12635
 
12636
0.501961 0.501961 0.501961 SetFgColor
12637
 
12638
502 364 0 0 Box fill
12639
 
12640
 
12641
 
12642
0.501961 0.501961 0.501961 SetFgColor
12643
 
12644
502 364 0 0 Box fill
12645
 
12646
 
12647
 
12648
0.501961 0.501961 0.501961 SetFgColor
12649
 
12650
502 364 0 0 Box fill
12651
 
12652
 
12653
 
12654
0.501961 0.501961 0.501961 SetFgColor
12655
 
12656
503 364 0 0 Box fill
12657
 
12658
 
12659
 
12660
0.501961 0.501961 0.501961 SetFgColor
12661
 
12662
503 364 0 0 Box fill
12663
 
12664
 
12665
 
12666
0.501961 0.501961 0.501961 SetFgColor
12667
 
12668
503 364 0 0 Box fill
12669
 
12670
 
12671
 
12672
0.501961 0.501961 0.501961 SetFgColor
12673
 
12674
503 364 0 0 Box fill
12675
 
12676
 
12677
 
12678
0.501961 0.501961 0.501961 SetFgColor
12679
 
12680
504 364 0 0 Box fill
12681
 
12682
 
12683
 
12684
0.501961 0.501961 0.501961 SetFgColor
12685
 
12686
504 364 0 0 Box fill
12687
 
12688
 
12689
 
12690
0.501961 0.501961 0.501961 SetFgColor
12691
 
12692
504 364 0 0 Box fill
12693
 
12694
 
12695
 
12696
0.501961 0.501961 0.501961 SetFgColor
12697
 
12698
504 364 0 0 Box fill
12699
 
12700
 
12701
 
12702
0.501961 0.501961 0.501961 SetFgColor
12703
 
12704
505 364 0 0 Box fill
12705
 
12706
 
12707
 
12708
0.501961 0.501961 0.501961 SetFgColor
12709
 
12710
505 364 0 0 Box fill
12711
 
12712
 
12713
 
12714
0.501961 0.501961 0.501961 SetFgColor
12715
 
12716
505 364 0 0 Box fill
12717
 
12718
 
12719
 
12720
0.501961 0.501961 0.501961 SetFgColor
12721
 
12722
505 364 0 0 Box fill
12723
 
12724
 
12725
 
12726
0.501961 0.501961 0.501961 SetFgColor
12727
 
12728
506 364 0 0 Box fill
12729
 
12730
 
12731
 
12732
0.501961 0.501961 0.501961 SetFgColor
12733
 
12734
506 364 0 0 Box fill
12735
 
12736
 
12737
 
12738
0.501961 0.501961 0.501961 SetFgColor
12739
 
12740
506 364 0 0 Box fill
12741
 
12742
 
12743
 
12744
0.501961 0.501961 0.501961 SetFgColor
12745
 
12746
506 364 0 0 Box fill
12747
 
12748
 
12749
 
12750
0.501961 0.501961 0.501961 SetFgColor
12751
 
12752
507 364 0 0 Box fill
12753
 
12754
 
12755
 
12756
0.501961 0.501961 0.501961 SetFgColor
12757
 
12758
507 364 0 0 Box fill
12759
 
12760
 
12761
 
12762
0.501961 0.501961 0.501961 SetFgColor
12763
 
12764
507 364 0 0 Box fill
12765
 
12766
 
12767
 
12768
0.501961 0.501961 0.501961 SetFgColor
12769
 
12770
507 364 0 0 Box fill
12771
 
12772
 
12773
 
12774
0.501961 0.501961 0.501961 SetFgColor
12775
 
12776
508 364 0 0 Box fill
12777
 
12778
 
12779
 
12780
0.501961 0.501961 0.501961 SetFgColor
12781
 
12782
508 364 0 0 Box fill
12783
 
12784
 
12785
 
12786
0.501961 0.501961 0.501961 SetFgColor
12787
 
12788
508 364 0 0 Box fill
12789
 
12790
 
12791
 
12792
0.501961 0.501961 0.501961 SetFgColor
12793
 
12794
508 364 0 0 Box fill
12795
 
12796
 
12797
 
12798
0.501961 0.501961 0.501961 SetFgColor
12799
 
12800
509 364 0 0 Box fill
12801
 
12802
 
12803
 
12804
0.501961 0.501961 0.501961 SetFgColor
12805
 
12806
509 364 0 0 Box fill
12807
 
12808
 
12809
 
12810
0.501961 0.501961 0.501961 SetFgColor
12811
 
12812
509 364 0 0 Box fill
12813
 
12814
 
12815
 
12816
0.501961 0.501961 0.501961 SetFgColor
12817
 
12818
509 364 0 0 Box fill
12819
 
12820
 
12821
 
12822
0.501961 0.501961 0.501961 SetFgColor
12823
 
12824
510 364 0 0 Box fill
12825
 
12826
 
12827
 
12828
0.501961 0.501961 0.501961 SetFgColor
12829
 
12830
510 364 0 0 Box fill
12831
 
12832
 
12833
 
12834
0.501961 0.501961 0.501961 SetFgColor
12835
 
12836
510 364 0 0 Box fill
12837
 
12838
 
12839
 
12840
0.501961 0.501961 0.501961 SetFgColor
12841
 
12842
510 364 0 0 Box fill
12843
 
12844
 
12845
 
12846
0.501961 0.501961 0.501961 SetFgColor
12847
 
12848
511 364 0 0 Box fill
12849
 
12850
 
12851
 
12852
0.501961 0.501961 0.501961 SetFgColor
12853
 
12854
511 364 0 0 Box fill
12855
 
12856
 
12857
 
12858
0.501961 0.501961 0.501961 SetFgColor
12859
 
12860
511 364 0 0 Box fill
12861
 
12862
 
12863
 
12864
0.501961 0.501961 0.501961 SetFgColor
12865
 
12866
511 364 0 0 Box fill
12867
 
12868
 
12869
 
12870
0.501961 0.501961 0.501961 SetFgColor
12871
 
12872
512 364 0 0 Box fill
12873
 
12874
 
12875
 
12876
0.501961 0.501961 0.501961 SetFgColor
12877
 
12878
512 364 0 0 Box fill
12879
 
12880
 
12881
 
12882
0.501961 0.501961 0.501961 SetFgColor
12883
 
12884
512 364 0 0 Box fill
12885
 
12886
 
12887
 
12888
0.501961 0.501961 0.501961 SetFgColor
12889
 
12890
512 364 0 0 Box fill
12891
 
12892
 
12893
 
12894
0.501961 0.501961 0.501961 SetFgColor
12895
 
12896
513 364 0 0 Box fill
12897
 
12898
 
12899
 
12900
0.501961 0.501961 0.501961 SetFgColor
12901
 
12902
513 364 0 0 Box fill
12903
 
12904
 
12905
 
12906
0.501961 0.501961 0.501961 SetFgColor
12907
 
12908
513 364 0 0 Box fill
12909
 
12910
 
12911
 
12912
0.501961 0.501961 0.501961 SetFgColor
12913
 
12914
513 364 0 0 Box fill
12915
 
12916
 
12917
 
12918
0.501961 0.501961 0.501961 SetFgColor
12919
 
12920
514 364 0 0 Box fill
12921
 
12922
 
12923
 
12924
0.501961 0.501961 0.501961 SetFgColor
12925
 
12926
514 364 0 0 Box fill
12927
 
12928
 
12929
 
12930
0.501961 0.501961 0.501961 SetFgColor
12931
 
12932
514 364 0 0 Box fill
12933
 
12934
 
12935
 
12936
0.501961 0.501961 0.501961 SetFgColor
12937
 
12938
514 364 0 0 Box fill
12939
 
12940
 
12941
 
12942
0.501961 0.501961 0.501961 SetFgColor
12943
 
12944
515 364 0 0 Box fill
12945
 
12946
 
12947
 
12948
0.501961 0.501961 0.501961 SetFgColor
12949
 
12950
515 364 0 0 Box fill
12951
 
12952
 
12953
 
12954
0.501961 0.501961 0.501961 SetFgColor
12955
 
12956
515 364 0 0 Box fill
12957
 
12958
 
12959
 
12960
0.501961 0.501961 0.501961 SetFgColor
12961
 
12962
515 364 0 0 Box fill
12963
 
12964
 
12965
 
12966
0.501961 0.501961 0.501961 SetFgColor
12967
 
12968
516 364 0 0 Box fill
12969
 
12970
 
12971
 
12972
0.501961 0.501961 0.501961 SetFgColor
12973
 
12974
516 364 0 0 Box fill
12975
 
12976
 
12977
 
12978
0.501961 0.501961 0.501961 SetFgColor
12979
 
12980
516 364 0 0 Box fill
12981
 
12982
 
12983
 
12984
0.501961 0.501961 0.501961 SetFgColor
12985
 
12986
516 364 0 0 Box fill
12987
 
12988
 
12989
 
12990
0.501961 0.501961 0.501961 SetFgColor
12991
 
12992
516 364 0 0 Box fill
12993
 
12994
 
12995
 
12996
0.501961 0.501961 0.501961 SetFgColor
12997
 
12998
517 364 0 0 Box fill
12999
 
13000
 
13001
 
13002
0.501961 0.501961 0.501961 SetFgColor
13003
 
13004
517 364 0 0 Box fill
13005
 
13006
 
13007
 
13008
0.501961 0.501961 0.501961 SetFgColor
13009
 
13010
517 364 0 0 Box fill
13011
 
13012
 
13013
 
13014
0.501961 0.501961 0.501961 SetFgColor
13015
 
13016
517 364 0 0 Box fill
13017
 
13018
 
13019
 
13020
0.501961 0.501961 0.501961 SetFgColor
13021
 
13022
518 364 0 0 Box fill
13023
 
13024
 
13025
 
13026
0.501961 0.501961 0.501961 SetFgColor
13027
 
13028
518 364 0 0 Box fill
13029
 
13030
 
13031
 
13032
0.501961 0.501961 0.501961 SetFgColor
13033
 
13034
518 364 0 0 Box fill
13035
 
13036
 
13037
 
13038
0.501961 0.501961 0.501961 SetFgColor
13039
 
13040
518 364 0 0 Box fill
13041
 
13042
 
13043
 
13044
0.501961 0.501961 0.501961 SetFgColor
13045
 
13046
519 364 0 0 Box fill
13047
 
13048
 
13049
 
13050
0.501961 0.501961 0.501961 SetFgColor
13051
 
13052
519 364 0 0 Box fill
13053
 
13054
 
13055
 
13056
0.501961 0.501961 0.501961 SetFgColor
13057
 
13058
519 364 0 0 Box fill
13059
 
13060
 
13061
 
13062
0.501961 0.501961 0.501961 SetFgColor
13063
 
13064
519 364 0 0 Box fill
13065
 
13066
 
13067
 
13068
0.501961 0.501961 0.501961 SetFgColor
13069
 
13070
520 364 0 0 Box fill
13071
 
13072
 
13073
 
13074
0.501961 0.501961 0.501961 SetFgColor
13075
 
13076
520 364 0 0 Box fill
13077
 
13078
 
13079
 
13080
0.501961 0.501961 0.501961 SetFgColor
13081
 
13082
520 364 0 0 Box fill
13083
 
13084
 
13085
 
13086
0.501961 0.501961 0.501961 SetFgColor
13087
 
13088
520 364 0 0 Box fill
13089
 
13090
 
13091
 
13092
0.501961 0.501961 0.501961 SetFgColor
13093
 
13094
521 364 0 0 Box fill
13095
 
13096
 
13097
 
13098
0.501961 0.501961 0.501961 SetFgColor
13099
 
13100
521 364 0 0 Box fill
13101
 
13102
 
13103
 
13104
0.501961 0.501961 0.501961 SetFgColor
13105
 
13106
521 364 0 0 Box fill
13107
 
13108
 
13109
 
13110
0.501961 0.501961 0.501961 SetFgColor
13111
 
13112
521 364 0 0 Box fill
13113
 
13114
 
13115
 
13116
0.501961 0.501961 0.501961 SetFgColor
13117
 
13118
522 364 0 0 Box fill
13119
 
13120
 
13121
 
13122
0.501961 0.501961 0.501961 SetFgColor
13123
 
13124
522 364 0 0 Box fill
13125
 
13126
 
13127
 
13128
0.501961 0.501961 0.501961 SetFgColor
13129
 
13130
522 364 0 0 Box fill
13131
 
13132
 
13133
 
13134
0.501961 0.501961 0.501961 SetFgColor
13135
 
13136
522 364 0 0 Box fill
13137
 
13138
 
13139
 
13140
0.501961 0.501961 0.501961 SetFgColor
13141
 
13142
523 364 0 0 Box fill
13143
 
13144
 
13145
 
13146
0.501961 0.501961 0.501961 SetFgColor
13147
 
13148
523 364 0 0 Box fill
13149
 
13150
 
13151
 
13152
0.501961 0.501961 0.501961 SetFgColor
13153
 
13154
523 364 0 0 Box fill
13155
 
13156
 
13157
 
13158
0.501961 0.501961 0.501961 SetFgColor
13159
 
13160
523 364 0 0 Box fill
13161
 
13162
 
13163
 
13164
0.501961 0.501961 0.501961 SetFgColor
13165
 
13166
524 364 0 0 Box fill
13167
 
13168
 
13169
 
13170
0.501961 0.501961 0.501961 SetFgColor
13171
 
13172
524 364 0 0 Box fill
13173
 
13174
 
13175
 
13176
0.501961 0.501961 0.501961 SetFgColor
13177
 
13178
524 364 0 0 Box fill
13179
 
13180
 
13181
 
13182
0.501961 0.501961 0.501961 SetFgColor
13183
 
13184
524 364 0 0 Box fill
13185
 
13186
 
13187
 
13188
0.501961 0.501961 0.501961 SetFgColor
13189
 
13190
525 364 0 0 Box fill
13191
 
13192
 
13193
 
13194
0.501961 0.501961 0.501961 SetFgColor
13195
 
13196
525 364 0 0 Box fill
13197
 
13198
 
13199
 
13200
0.501961 0.501961 0.501961 SetFgColor
13201
 
13202
525 364 0 0 Box fill
13203
 
13204
 
13205
 
13206
0.501961 0.501961 0.501961 SetFgColor
13207
 
13208
525 364 0 0 Box fill
13209
 
13210
 
13211
 
13212
0.501961 0.501961 0.501961 SetFgColor
13213
 
13214
526 364 0 0 Box fill
13215
 
13216
 
13217
 
13218
0.501961 0.501961 0.501961 SetFgColor
13219
 
13220
526 364 0 0 Box fill
13221
 
13222
 
13223
 
13224
0.501961 0.501961 0.501961 SetFgColor
13225
 
13226
526 364 0 0 Box fill
13227
 
13228
 
13229
 
13230
0.501961 0.501961 0.501961 SetFgColor
13231
 
13232
526 364 0 0 Box fill
13233
 
13234
 
13235
 
13236
0.501961 0.501961 0.501961 SetFgColor
13237
 
13238
527 364 0 0 Box fill
13239
 
13240
 
13241
 
13242
0.501961 0.501961 0.501961 SetFgColor
13243
 
13244
527 364 0 0 Box fill
13245
 
13246
 
13247
 
13248
0.501961 0.501961 0.501961 SetFgColor
13249
 
13250
527 364 0 0 Box fill
13251
 
13252
 
13253
 
13254
0.501961 0.501961 0.501961 SetFgColor
13255
 
13256
527 364 0 0 Box fill
13257
 
13258
 
13259
 
13260
0.501961 0.501961 0.501961 SetFgColor
13261
 
13262
528 364 0 0 Box fill
13263
 
13264
 
13265
 
13266
0.501961 0.501961 0.501961 SetFgColor
13267
 
13268
528 364 0 0 Box fill
13269
 
13270
 
13271
 
13272
0.501961 0.501961 0.501961 SetFgColor
13273
 
13274
528 364 0 0 Box fill
13275
 
13276
 
13277
 
13278
0.501961 0.501961 0.501961 SetFgColor
13279
 
13280
528 364 0 0 Box fill
13281
 
13282
 
13283
 
13284
0.501961 0.501961 0.501961 SetFgColor
13285
 
13286
529 364 0 0 Box fill
13287
 
13288
 
13289
 
13290
0.501961 0.501961 0.501961 SetFgColor
13291
 
13292
529 364 0 0 Box fill
13293
 
13294
 
13295
 
13296
0.501961 0.501961 0.501961 SetFgColor
13297
 
13298
529 364 0 0 Box fill
13299
 
13300
 
13301
 
13302
0.501961 0.501961 0.501961 SetFgColor
13303
 
13304
529 364 0 0 Box fill
13305
 
13306
 
13307
 
13308
0.501961 0.501961 0.501961 SetFgColor
13309
 
13310
530 364 0 0 Box fill
13311
 
13312
 
13313
 
13314
0.501961 0.501961 0.501961 SetFgColor
13315
 
13316
530 364 0 0 Box fill
13317
 
13318
 
13319
 
13320
0.501961 0.501961 0.501961 SetFgColor
13321
 
13322
530 364 0 0 Box fill
13323
 
13324
 
13325
 
13326
0.501961 0.501961 0.501961 SetFgColor
13327
 
13328
530 364 0 0 Box fill
13329
 
13330
 
13331
 
13332
0.501961 0.501961 0.501961 SetFgColor
13333
 
13334
531 364 0 0 Box fill
13335
 
13336
 
13337
 
13338
0.501961 0.501961 0.501961 SetFgColor
13339
 
13340
531 364 0 0 Box fill
13341
 
13342
 
13343
 
13344
0.501961 0.501961 0.501961 SetFgColor
13345
 
13346
531 364 0 0 Box fill
13347
 
13348
 
13349
 
13350
0.501961 0.501961 0.501961 SetFgColor
13351
 
13352
531 364 0 0 Box fill
13353
 
13354
 
13355
 
13356
0.501961 0.501961 0.501961 SetFgColor
13357
 
13358
532 364 0 0 Box fill
13359
 
13360
 
13361
 
13362
0.501961 0.501961 0.501961 SetFgColor
13363
 
13364
532 364 0 0 Box fill
13365
 
13366
 
13367
 
13368
0.501961 0.501961 0.501961 SetFgColor
13369
 
13370
532 364 0 0 Box fill
13371
 
13372
 
13373
 
13374
0.501961 0.501961 0.501961 SetFgColor
13375
 
13376
532 364 0 0 Box fill
13377
 
13378
 
13379
 
13380
0.501961 0.501961 0.501961 SetFgColor
13381
 
13382
533 364 0 0 Box fill
13383
 
13384
 
13385
 
13386
0.501961 0.501961 0.501961 SetFgColor
13387
 
13388
533 364 0 0 Box fill
13389
 
13390
 
13391
 
13392
0.501961 0.501961 0.501961 SetFgColor
13393
 
13394
533 364 0 0 Box fill
13395
 
13396
 
13397
 
13398
0.501961 0.501961 0.501961 SetFgColor
13399
 
13400
533 364 0 0 Box fill
13401
 
13402
 
13403
 
13404
0.501961 0.501961 0.501961 SetFgColor
13405
 
13406
534 364 0 0 Box fill
13407
 
13408
 
13409
 
13410
0.501961 0.501961 0.501961 SetFgColor
13411
 
13412
534 364 0 0 Box fill
13413
 
13414
 
13415
 
13416
0.501961 0.501961 0.501961 SetFgColor
13417
 
13418
534 364 0 0 Box fill
13419
 
13420
 
13421
 
13422
0.501961 0.501961 0.501961 SetFgColor
13423
 
13424
534 364 0 0 Box fill
13425
 
13426
 
13427
 
13428
0.501961 0.501961 0.501961 SetFgColor
13429
 
13430
535 364 0 0 Box fill
13431
 
13432
 
13433
 
13434
0.501961 0.501961 0.501961 SetFgColor
13435
 
13436
535 364 0 0 Box fill
13437
 
13438
 
13439
 
13440
0.501961 0.501961 0.501961 SetFgColor
13441
 
13442
535 364 0 0 Box fill
13443
 
13444
 
13445
 
13446
0.501961 0.501961 0.501961 SetFgColor
13447
 
13448
535 364 0 0 Box fill
13449
 
13450
 
13451
 
13452
0.501961 0.501961 0.501961 SetFgColor
13453
 
13454
536 364 0 0 Box fill
13455
 
13456
 
13457
 
13458
0.501961 0.501961 0.501961 SetFgColor
13459
 
13460
536 364 0 0 Box fill
13461
 
13462
 
13463
 
13464
0.501961 0.501961 0.501961 SetFgColor
13465
 
13466
536 364 0 0 Box fill
13467
 
13468
 
13469
 
13470
0.501961 0.501961 0.501961 SetFgColor
13471
 
13472
536 364 0 0 Box fill
13473
 
13474
 
13475
 
13476
 
13477
 
13478
% Unset clipping
13479
 
13480
grestore
13481
 
13482
 
13483
 
13484
0.85098 0.85098 0.85098 SetBgColor
13485
 
13486
 
13487
 
13488
 
13489
 
13490
 
13491
 
13492
 
13493
 
13494
545 30 15 342 Box fill
13495
 
13496
 
13497
 
13498
 
13499
 
13500
 
13501
 
13502
1 1 1 SetBgColor
13503
 
13504
33 372 514 2 Box fill
13505
 
13506
 
13507
 
13508
545 28 2 346 Box fill
13509
 
13510
 
13511
 
13512
0.509804 0.509804 0.509804 SetBgColor
13513
 
13514
newpath 33 374 moveto
13515
 
13516
33 28 lineto
13517
 
13518
547 28 lineto
13519
 
13520
545 30 lineto
13521
 
13522
35 30 lineto
13523
 
13524
35 372 lineto
13525
 
13526
33 374 lineto
13527
 
13528
33 374  lineto closepath Fill
13529
 
13530
98 12 0 290 14 BeginText
13531
 
13532
12 /Helvetica-Bold SetFont
13533
 
13534
 
13535
 
13536
(Hits per event) 98 0 11 DrawAdjText
13537
 
13538
EndText
13539
 
13540
10 9 0 43 391.5 BeginText
13541
 
13542
12 /Helvetica-Bold SetFont
13543
 
13544
 
13545
 
13546
(0) 6 2 8 DrawAdjText
13547
 
13548
EndText
13549
 
13550
28 9 0 166.5 391.5 BeginText
13551
 
13552
12 /Helvetica-Bold SetFont
13553
 
13554
 
13555
 
13556
(5000) 24 2 8 DrawAdjText
13557
 
13558
EndText
13559
 
13560
34 9 0 290 391.5 BeginText
13561
 
13562
12 /Helvetica-Bold SetFont
13563
 
13564
 
13565
 
13566
(10000) 30 2 8 DrawAdjText
13567
 
13568
EndText
13569
 
13570
34 9 0 413.5 391.5 BeginText
13571
 
13572
12 /Helvetica-Bold SetFont
13573
 
13574
 
13575
 
13576
(15000) 30 2 8 DrawAdjText
13577
 
13578
EndText
13579
 
13580
34 9 0 537 391.5 BeginText
13581
 
13582
12 /Helvetica-Bold SetFont
13583
 
13584
 
13585
 
13586
(20000) 30 2 8 DrawAdjText
13587
 
13588
EndText
13589
 
13590
 
13591
 
13592
 
13593
 
13594
 
13595
 
13596
1 setlinewidth
13597
 
13598
[ ] 0 setdash
13599
 
13600
/DashesProc {} def
13601
 
13602
43 377 moveto
13603
 
13604
 537 377 lineto
13605
 
13606
DashesProc stroke
13607
 
13608
104.75 377 moveto
13609
 
13610
 104.75 382 lineto
13611
 
13612
DashesProc stroke
13613
 
13614
43 377 moveto
13615
 
13616
 43 385 lineto
13617
 
13618
DashesProc stroke
13619
 
13620
228.25 377 moveto
13621
 
13622
 228.25 382 lineto
13623
 
13624
DashesProc stroke
13625
 
13626
166.5 377 moveto
13627
 
13628
 166.5 385 lineto
13629
 
13630
DashesProc stroke
13631
 
13632
351.75 377 moveto
13633
 
13634
 351.75 382 lineto
13635
 
13636
DashesProc stroke
13637
 
13638
290 377 moveto
13639
 
13640
 290 385 lineto
13641
 
13642
DashesProc stroke
13643
 
13644
475.25 377 moveto
13645
 
13646
 475.25 382 lineto
13647
 
13648
DashesProc stroke
13649
 
13650
413.5 377 moveto
13651
 
13652
 413.5 385 lineto
13653
 
13654
DashesProc stroke
13655
 
13656
537 377 moveto
13657
 
13658
 537 385 lineto
13659
 
13660
DashesProc stroke
13661
 
13662
10 9 0 15 364 BeginText
13663
 
13664
12 /Helvetica-Bold SetFont
13665
 
13666
 
13667
 
13668
(0) 6 2 8 DrawAdjText
13669
 
13670
EndText
13671
 
13672
16 9 0 12 255.333 BeginText
13673
 
13674
12 /Helvetica-Bold SetFont
13675
 
13676
 
13677
 
13678
(10) 12 2 8 DrawAdjText
13679
 
13680
EndText
13681
 
13682
16 9 0 12 146.667 BeginText
13683
 
13684
12 /Helvetica-Bold SetFont
13685
 
13686
 
13687
 
13688
(20) 12 2 8 DrawAdjText
13689
 
13690
EndText
13691
 
13692
16 9 0 12 38 BeginText
13693
 
13694
12 /Helvetica-Bold SetFont
13695
 
13696
 
13697
 
13698
(30) 12 2 8 DrawAdjText
13699
 
13700
EndText
13701
 
13702
 
13703
 
13704
 
13705
 
13706
 
13707
 
13708
1 setlinewidth
13709
 
13710
[ ] 0 setdash
13711
 
13712
/DashesProc {} def
13713
 
13714
30 364 moveto
13715
 
13716
 30 38 lineto
13717
 
13718
DashesProc stroke
13719
 
13720
30 309.667 moveto
13721
 
13722
 25 309.667 lineto
13723
 
13724
DashesProc stroke
13725
 
13726
30 364 moveto
13727
 
13728
 22 364 lineto
13729
 
13730
DashesProc stroke
13731
 
13732
30 201 moveto
13733
 
13734
 25 201 lineto
13735
 
13736
DashesProc stroke
13737
 
13738
30 255.333 moveto
13739
 
13740
 22 255.333 lineto
13741
 
13742
DashesProc stroke
13743
 
13744
30 92.3333 moveto
13745
 
13746
 25 92.3333 lineto
13747
 
13748
DashesProc stroke
13749
 
13750
30 146.667 moveto
13751
 
13752
 22 146.667 lineto
13753
 
13754
DashesProc stroke
13755
 
13756
30 38 moveto
13757
 
13758
 22 38 lineto
13759
 
13760
DashesProc stroke
13761
 
13762
showpage
13763
 
13764
%Trailer
13765
 
13766
grestore
13767
 
13768
end
13769
 
13770
%EOF
13771
 
13772
EndEPSF
13773
grestore
13774
gsave
13775
 
13776
% including file "/usr//lib/blt2.4/bltCanvEps.pro"
13777
 
13778
%
13779
% PostScript encapulator prolog file of the BLT "eps" canvas item.
13780
%
13781
% Copyright 1991-1997 Bell Labs Innovations for Lucent Technologies.
13782
%
13783
% Permission to use, copy, modify, and distribute this software and its
13784
% documentation for any purpose and without fee is hereby granted, provided
13785
% that the above copyright notice appear in all copies and that both that the
13786
% copyright notice and warranty disclaimer appear in supporting documentation,
13787
% and that the names of Lucent Technologies any of their entities not be used
13788
% in advertising or publicity pertaining to distribution of the software
13789
% without specific, written prior permission.
13790
%
13791
% Lucent Technologies disclaims all warranties with regard to this software,
13792
% including all implied warranties of merchantability and fitness.  In no event
13793
% shall Lucent Technologies be liable for any special, indirect or
13794
% consequential damages or any damages whatsoever resulting from loss of use,
13795
% data or profits, whether in an action of contract, negligence or other
13796
% tortuous action, arising out of or in connection with the use or performance
13797
% of this software.
13798
%
13799
 
13800
%
13801
% The definitions of the next two macros are from Appendix H of
13802
% Adobe's "PostScript Language Reference Manual" pp. 709-736.
13803
%
13804
 
13805
% Prepare for EPS file
13806
 
13807
/BeginEPSF {
13808
  /beforeInclusionState save def
13809
  /dictCount countdictstack def		% Save the # objects in the dictionary
13810
  /opCount count 1 sub def		% Count object on operator stack
13811
  userdict begin			% Make "userdict" the current
13812
					% dictionary
13813
    /showpage {} def			% Redefine showpage to be null
13814
 
13815
 
13816
    1 setlinewidth
13817
 
13818
    10 setmiterlimit
13819
    [] 0 setdash
13820
    newpath
13821
    /languagellevel where {
13822
      pop languagelevel
13823
      1 ne {
13824
	false setstrokeadjust false setoverprint
13825
      } if
13826
    } if
13827
    % note: no "end"
13828
} bind def
13829
 
13830
/EndEPSF { %def
13831
  count opCount sub {
13832
    pop
13833
  } repeat
13834
  countdictstack dictCount sub {
13835
  end					% Clean up dictionary stack
13836
  } repeat
13837
  beforeInclusionState restore
13838
} bind def
13839
 
13840
 
13841
%
13842
% Set up a clip region based upon a bounding box (x1, y1, x2, y2).
13843
%
13844
/SetClipRegion {
13845
  % Stack: x1 y1 x2 y2
13846
  newpath
13847
  4 2 roll moveto
13848
  1 index 0 rlineto
13849
 
13850
  neg 0 rlineto
13851
  closepath
13852
  clip
13853
  newpath
13854
} def
13855
 
13856
BeginEPSF
13857
4 96 translate
13858
1 1 scale
13859
-96 -246 translate
13860
96 246 516 546 SetClipRegion
13861
%% including "g2.eps"
13862
 
13863
 
13864
 
13865
%%BeginProlog
13866
 
13867
%
13868
 
13869
% PostScript prolog file of the BLT graph widget.
13870
 
13871
%
13872
 
13873
% Copyright 1989-1992 Regents of the University of California.
13874
 
13875
% Permission to use, copy, modify, and distribute this
13876
 
13877
% software and its documentation for any purpose and without
13878
 
13879
% fee is hereby granted, provided that the above copyright
13880
 
13881
% notice appear in all copies.  The University of California
13882
 
13883
% makes no representations about the suitability of this
13884
 
13885
% software for any purpose.  It is provided "as is" without
13886
 
13887
% express or implied warranty.
13888
 
13889
%
13890
 
13891
% Copyright 1991-1997 Bell Labs Innovations for Lucent Technologies.
13892
 
13893
%
13894
 
13895
% Permission to use, copy, modify, and distribute this software and its
13896
 
13897
% documentation for any purpose and without fee is hereby granted, provided
13898
 
13899
% that the above copyright notice appear in all copies and that both that the
13900
 
13901
% copyright notice and warranty disclaimer appear in supporting documentation,
13902
 
13903
% and that the names of Lucent Technologies any of their entities not be used
13904
 
13905
% in advertising or publicity pertaining to distribution of the software
13906
 
13907
% without specific, written prior permission.
13908
 
13909
%
13910
 
13911
% Lucent Technologies disclaims all warranties with regard to this software,
13912
 
13913
% including all implied warranties of merchantability and fitness.  In no event
13914
 
13915
% shall Lucent Technologies be liable for any special, indirect or
13916
 
13917
% consequential damages or any damages whatsoever resulting from loss of use,
13918
 
13919
% data or profits, whether in an action of contract, negligence or other
13920
 
13921
% tortuous action, arising out of or in connection with the use or performance
13922
 
13923
% of this software.
13924
 
13925
%
13926
 
13927
 
13928
 
13929
200 dict begin
13930
 
13931
 
13932
 
13933
/BaseRatio 1.3467736870885982 def	% Ratio triangle base / symbol size
13934
 
13935
/BgColorProc 0 def			% Background color routine (symbols)
13936
 
13937
/DrawSymbolProc 0 def			% Routine to draw symbol outline/fill
13938
 
13939
/StippleProc 0 def			% Stipple routine (bar segments)
13940
 
13941
/DashesProc 0 def			% Dashes routine (line segments)
13942
 
13943
 
13944
 
13945
% Define the array ISOLatin1Encoding (which specifies how characters are
13946
 
13947
% encoded for ISO-8859-1 fonts), if it isn't already present (Postscript
13948
 
13949
% level 2 is supposed to define it, but level 1 doesn't).
13950
 
13951
 
13952
 
13953
systemdict /ISOLatin1Encoding known not {
13954
 
13955
  /ISOLatin1Encoding [
13956
 
13957
    /space /space /space /space /space /space /space /space
13958
 
13959
    /space /space /space /space /space /space /space /space
13960
 
13961
    /space /space /space /space /space /space /space /space
13962
 
13963
    /space /space /space /space /space /space /space /space
13964
 
13965
    /space /exclam /quotedbl /numbersign /dollar /percent /ampersand
13966
 
13967
    /quoteright
13968
 
13969
    /parenleft /parenright /asterisk /plus /comma /minus /period /slash
13970
 
13971
    /zero /one /two /three /four /five /six /seven
13972
 
13973
    /eight /nine /colon /semicolon /less /equal /greater /question
13974
 
13975
    /at /A /B /C /D /E /F /G
13976
 
13977
    /H /I /J /K /L /M /N /O
13978
 
13979
    /P /Q /R /S /T /U /V /W
13980
 
13981
    /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
13982
 
13983
    /quoteleft /a /b /c /d /e /f /g
13984
 
13985
    /h /i /j /k /l /m /n /o
13986
 
13987
    /p /q /r /s /t /u /v /w
13988
 
13989
    /x /y /z /braceleft /bar /braceright /asciitilde /space
13990
 
13991
    /space /space /space /space /space /space /space /space
13992
 
13993
    /space /space /space /space /space /space /space /space
13994
 
13995
    /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
13996
 
13997
    /dieresis /space /ring /cedilla /space /hungarumlaut /ogonek /caron
13998
 
13999
    /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
14000
 
14001
    /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen
14002
 
14003
    /registered /macron
14004
 
14005
    /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph
14006
 
14007
    /periodcentered
14008
 
14009
    /cedillar /onesuperior /ordmasculine /guillemotright /onequarter
14010
 
14011
    /onehalf /threequarters /questiondown
14012
 
14013
    /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
14014
 
14015
    /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex
14016
 
14017
    /Idieresis
14018
 
14019
    /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
14020
 
14021
    /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn
14022
 
14023
    /germandbls
14024
 
14025
    /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
14026
 
14027
    /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex
14028
 
14029
    /idieresis
14030
 
14031
    /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
14032
 
14033
    /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn
14034
 
14035
    /ydieresis
14036
 
14037
  ] def
14038
 
14039
} if
14040
 
14041
 
14042
 
14043
% font ISOEncode font
14044
 
14045
% This procedure changes the encoding of a font from the default
14046
 
14047
% Postscript encoding to ISOLatin1.  It is typically invoked just
14048
 
14049
% before invoking "setfont".  The body of this procedure comes from
14050
 
14051
% Section 5.6.1 of the Postscript book.
14052
 
14053
 
14054
 
14055
/ISOEncode {
14056
 
14057
  dup length dict
14058
 
14059
  begin
14060
 
14061
    {1 index /FID ne {def} {pop pop} ifelse} forall
14062
 
14063
    /Encoding ISOLatin1Encoding def
14064
 
14065
    currentdict
14066
 
14067
  end
14068
 
14069
 
14070
 
14071
  % I'm not sure why it's necessary to use "definefont" on this new
14072
 
14073
  % font, but it seems to be important; just use the name "Temporary"
14074
 
14075
  % for the font.
14076
 
14077
 
14078
 
14079
  /Temporary exch definefont
14080
 
14081
} bind def
14082
 
14083
 
14084
 
14085
/Stroke {
14086
 
14087
  gsave
14088
 
14089
    stroke
14090
 
14091
  grestore
14092
 
14093
} def
14094
 
14095
 
14096
 
14097
/Fill {
14098
 
14099
  gsave
14100
 
14101
    fill
14102
 
14103
  grestore
14104
 
14105
} def
14106
 
14107
 
14108
 
14109
/SetFont {
14110
 
14111
  % Stack: pointSize fontName
14112
 
14113
  findfont exch scalefont ISOEncode setfont
14114
 
14115
} def
14116
 
14117
 
14118
 
14119
/Box {
14120
 
14121
  % Stack: x y width height
14122
 
14123
  newpath
14124
 
14125
  exch 4 2 roll moveto
14126
 
14127
  dup 0 rlineto
14128
 
14129
  exch 0 exch rlineto
14130
 
14131
  neg 0 rlineto
14132
 
14133
  closepath
14134
 
14135
} def
14136
 
14137
 
14138
 
14139
/SetFgColor {
14140
 
14141
  % Stack: red green blue
14142
 
14143
  CL 0 eq {
14144
 
14145
    pop pop pop 0 0 0
14146
 
14147
  } if
14148
 
14149
  setrgbcolor
14150
 
14151
  CL 1 eq {
14152
 
14153
    currentgray setgray
14154
 
14155
  } if
14156
 
14157
} def
14158
 
14159
 
14160
 
14161
/SetBgColor {
14162
 
14163
  % Stack: red green blue
14164
 
14165
  CL 0 eq {
14166
 
14167
    pop pop pop 1 1 1
14168
 
14169
  } if
14170
 
14171
  setrgbcolor
14172
 
14173
  CL 1 eq {
14174
 
14175
    currentgray setgray
14176
 
14177
  } if
14178
 
14179
} def
14180
 
14181
 
14182
 
14183
% The next two definitions are taken from "$tk_library/prolog.ps"
14184
 
14185
 
14186
 
14187
% desiredSize EvenPixels closestSize
14188
 
14189
%
14190
 
14191
% The procedure below is used for stippling.  Given the optimal size
14192
 
14193
% of a dot in a stipple pattern in the current user coordinate system,
14194
 
14195
% compute the closest size that is an exact multiple of the device's
14196
 
14197
% pixel size.  This allows stipple patterns to be displayed without
14198
 
14199
% aliasing effects.
14200
 
14201
 
14202
 
14203
/EvenPixels {
14204
 
14205
  % Compute exact number of device pixels per stipple dot.
14206
 
14207
  dup 0 matrix currentmatrix dtransform
14208
 
14209
  dup mul exch dup mul add sqrt
14210
 
14211
 
14212
 
14213
  % Round to an integer, make sure the number is at least 1, and compute
14214
 
14215
  % user coord distance corresponding to this.
14216
 
14217
  dup round dup 1 lt {pop 1} if
14218
 
14219
  exch div mul
14220
 
14221
} bind def
14222
 
14223
 
14224
 
14225
% width height string filled StippleFill --
14226
 
14227
%
14228
 
14229
% Given a path and other graphics information already set up, this
14230
 
14231
% procedure will fill the current path in a stippled fashion.  "String"
14232
 
14233
% contains a proper image description of the stipple pattern and
14234
 
14235
% "width" and "height" give its dimensions.  If "filled" is true then
14236
 
14237
% it means that the area to be stippled is gotten by filling the
14238
 
14239
% current path (e.g. the interior of a polygon); if it's false, the
14240
 
14241
% area is gotten by stroking the current path (e.g. a wide line).
14242
 
14243
% Each stipple dot is assumed to be about one unit across in the
14244
 
14245
% current user coordinate system.
14246
 
14247
 
14248
 
14249
% width height string StippleFill --
14250
 
14251
%
14252
 
14253
% Given a path already set up and a clipping region generated from
14254
 
14255
% it, this procedure will fill the clipping region with a stipple
14256
 
14257
% pattern.  "String" contains a proper image description of the
14258
 
14259
% stipple pattern and "width" and "height" give its dimensions.  Each
14260
 
14261
% stipple dot is assumed to be about one unit across in the current
14262
 
14263
% user coordinate system.  This procedure trashes the graphics state.
14264
 
14265
 
14266
 
14267
/StippleFill {
14268
 
14269
    % The following code is needed to work around a NeWSprint bug.
14270
 
14271
 
14272
 
14273
    /tmpstip 1 index def
14274
 
14275
 
14276
 
14277
    % Change the scaling so that one user unit in user coordinates
14278
 
14279
    % corresponds to the size of one stipple dot.
14280
 
14281
    1 EvenPixels dup scale
14282
 
14283
 
14284
 
14285
    % Compute the bounding box occupied by the path (which is now
14286
 
14287
    % the clipping region), and round the lower coordinates down
14288
 
14289
    % to the nearest starting point for the stipple pattern.  Be
14290
 
14291
    % careful about negative numbers, since the rounding works
14292
 
14293
    % differently on them.
14294
 
14295
 
14296
 
14297
    pathbbox
14298
 
14299
    4 2 roll
14300
 
14301
    5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
14302
 
14303
    6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
14304
 
14305
 
14306
 
14307
    % Stack now: width height string y1 y2 x1 x2
14308
 
14309
    % Below is a doubly-nested for loop to iterate across this area
14310
 
14311
    % in units of the stipple pattern size, going up columns then
14312
 
14313
    % across rows, blasting out a stipple-pattern-sized rectangle at
14314
 
14315
    % each position
14316
 
14317
 
14318
 
14319
    6 index exch {
14320
 
14321
	2 index 5 index 3 index {
14322
 
14323
	    % Stack now: width height string y1 y2 x y
14324
 
14325
 
14326
 
14327
	    gsave
14328
 
14329
	    1 index exch translate
14330
 
14331
	    5 index 5 index true matrix tmpstip imagemask
14332
 
14333
	    grestore
14334
 
14335
	} for
14336
 
14337
	pop
14338
 
14339
    } for
14340
 
14341
    pop pop pop pop pop
14342
 
14343
} bind def
14344
 
14345
 
14346
 
14347
 
14348
 
14349
/LS {	% Stack: x1 y1 x2 y2
14350
 
14351
  newpath 4 2 roll moveto lineto stroke
14352
 
14353
} def
14354
 
14355
 
14356
 
14357
/EndText {
14358
 
14359
  %Stack :
14360
 
14361
  grestore
14362
 
14363
} def
14364
 
14365
 
14366
 
14367
/BeginText {
14368
 
14369
  %Stack :  w h theta centerX centerY
14370
 
14371
  gsave
14372
 
14373
    % Translate the origin to the center of bounding box and rotate
14374
 
14375
    translate neg rotate
14376
 
14377
    % Translate back to the origin of the text region
14378
 
14379
    -0.5 mul exch -0.5 mul exch translate
14380
 
14381
} def
14382
 
14383
 
14384
 
14385
/DrawAdjText {
14386
 
14387
  %Stack : str strWidth x y
14388
 
14389
  moveto				% Go to the text position
14390
 
14391
  exch dup dup 4 2 roll
14392
 
14393
 
14394
 
14395
  % Adjust character widths to get desired overall string width
14396
 
14397
  % adjust X = (desired width - real width)/#chars
14398
 
14399
 
14400
 
14401
  stringwidth pop sub exch
14402
 
14403
  length div
14404
 
14405
 
14406
 
14407
 
14408
 
14409
  % Flip back the scale so that the string is not drawn in reverse
14410
 
14411
 
14412
 
14413
  gsave
14414
 
14415
    1 -1 scale
14416
 
14417
    ashow
14418
 
14419
  grestore
14420
 
14421
} def
14422
 
14423
 
14424
 
14425
/DrawBitmap {
14426
 
14427
  % Stack: ?bgColorProc? boolean centerX centerY width height theta imageStr
14428
 
14429
  gsave
14430
 
14431
    6 -2 roll translate			% Translate to center of bounding box
14432
 
14433
    4 1 roll neg rotate			% Rotate by theta
14434
 
14435
 
14436
 
14437
    % Find upperleft corner of bounding box
14438
 
14439
 
14440
 
14441
    2 copy -.5 mul exch -.5 mul exch translate
14442
 
14443
    2 copy scale			% Make pixel unit scale
14444
 
14445
    newpath
14446
 
14447
 
14448
 
14449
    closepath
14450
 
14451
 
14452
 
14453
    % Fill rectangle with background color
14454
 
14455
 
14456
 
14457
    4 -1 roll {
14458
 
14459
      gsave
14460
 
14461
	4 -1 roll exec fill
14462
 
14463
      grestore
14464
 
14465
    } if
14466
 
14467
 
14468
 
14469
    % Paint the image string into the unit rectangle
14470
 
14471
 
14472
 
14473
    2 copy true 3 -1 roll 0 0 5 -1 roll 0 0 6 array astore 5 -1 roll
14474
 
14475
    imagemask
14476
 
14477
  grestore
14478
 
14479
} def
14480
 
14481
 
14482
 
14483
% Symbols:
14484
 
14485
 
14486
 
14487
% Skinny-cross
14488
 
14489
/Sc {
14490
 
14491
  % Stack: x y symbolSize
14492
 
14493
  gsave
14494
 
14495
    3 -2 roll translate 45 rotate
14496
 
14497
 
14498
 
14499
  grestore
14500
 
14501
} def
14502
 
14503
 
14504
 
14505
% Skinny-plus
14506
 
14507
/Sp {
14508
 
14509
  % Stack: x y symbolSize
14510
 
14511
  gsave
14512
 
14513
    3 -2 roll translate
14514
 
14515
    2 idiv
14516
 
14517
    dup 2 copy
14518
 
14519
    newpath neg 0 moveto 0 lineto
14520
 
14521
    DrawSymbolProc
14522
 
14523
    newpath neg 0 exch moveto 0 exch lineto
14524
 
14525
    DrawSymbolProc
14526
 
14527
  grestore
14528
 
14529
} def
14530
 
14531
 
14532
 
14533
% Cross
14534
 
14535
/Cr {
14536
 
14537
  % Stack: x y symbolSize
14538
 
14539
  gsave
14540
 
14541
    3 -2 roll translate 45 rotate
14542
 
14543
 
14544
 
14545
  grestore
14546
 
14547
} def
14548
 
14549
 
14550
 
14551
% Plus
14552
 
14553
/Pl {
14554
 
14555
  % Stack: x y symbolSize
14556
 
14557
  gsave
14558
 
14559
    3 -2 roll translate
14560
 
14561
    dup 2 idiv
14562
 
14563
    exch 6 idiv
14564
 
14565
 
14566
 
14567
    %
14568
 
14569
    %          2   3		The plus/cross symbol is a
14570
 
14571
    %				closed polygon of 12 points.
14572
 
14573
    %      0   1   4    5	The diagram to the left
14574
 
14575
    %           x,y		represents the positions of
14576
 
14577
    %     11  10   7    6	the points which are computed
14578
 
14579
    %				below.
14580
 
14581
    %          9   8
14582
 
14583
    %
14584
 
14585
 
14586
 
14587
    newpath
14588
 
14589
    2 copy exch neg exch neg moveto dup neg dup lineto
14590
 
14591
    2 copy neg exch neg lineto 2 copy exch neg lineto
14592
 
14593
    dup dup neg lineto 2 copy neg lineto 2 copy lineto
14594
 
14595
    dup dup lineto 2 copy exch lineto 2 copy neg exch lineto
14596
 
14597
    dup dup neg exch lineto exch neg exch lineto
14598
 
14599
    closepath
14600
 
14601
    DrawSymbolProc
14602
 
14603
  grestore
14604
 
14605
} def
14606
 
14607
 
14608
 
14609
% Circle
14610
 
14611
/Ci {
14612
 
14613
  % Stack: x y symbolSize
14614
 
14615
  gsave
14616
 
14617
    3 copy pop
14618
 
14619
    moveto newpath
14620
 
14621
    2 div 0 360 arc
14622
 
14623
    closepath DrawSymbolProc
14624
 
14625
  grestore
14626
 
14627
} def
14628
 
14629
 
14630
 
14631
% Square
14632
 
14633
/Sq {
14634
 
14635
  % Stack: x y symbolSize
14636
 
14637
  gsave
14638
 
14639
    dup dup 2 div dup
14640
 
14641
    6 -1 roll exch sub exch
14642
 
14643
    5 -1 roll exch sub 4 -2 roll Box
14644
 
14645
    DrawSymbolProc
14646
 
14647
  grestore
14648
 
14649
} def
14650
 
14651
 
14652
 
14653
% Line
14654
 
14655
/Li {
14656
 
14657
  % Stack: x y symbolSize
14658
 
14659
  gsave
14660
 
14661
    3 1 roll exch 3 -1 roll 2 div 3 copy
14662
 
14663
    newpath
14664
 
14665
    sub exch moveto add exch lineto
14666
 
14667
    stroke
14668
 
14669
  grestore
14670
 
14671
} def
14672
 
14673
 
14674
 
14675
% Diamond
14676
 
14677
/Di {
14678
 
14679
  % Stack: x y symbolSize
14680
 
14681
  gsave
14682
 
14683
    3 1 roll translate 45 rotate 0 0 3 -1 roll Sq
14684
 
14685
  grestore
14686
 
14687
} def
14688
 
14689
 
14690
 
14691
% Triangle
14692
 
14693
/Tr {
14694
 
14695
  % Stack: x y symbolSize
14696
 
14697
  gsave
14698
 
14699
    3 -2 roll translate
14700
 
14701
    BaseRatio mul 0.5 mul		% Calculate 1/2 base
14702
 
14703
    dup 0 exch 30 cos mul		% h1 = height above center point
14704
 
14705
    neg					% b2 0 -h1
14706
 
14707
    newpath moveto			% point 1;  b2
14708
 
14709
    dup 30 sin 30 cos div mul		% h2 = height below center point
14710
 
14711
    2 copy lineto			% point 2;  b2 h2
14712
 
14713
    exch neg exch lineto		%
14714
 
14715
    closepath
14716
 
14717
    DrawSymbolProc
14718
 
14719
  grestore
14720
 
14721
} def
14722
 
14723
 
14724
 
14725
% Arrow
14726
 
14727
/Ar {
14728
 
14729
  % Stack: x y symbolSize
14730
 
14731
  gsave
14732
 
14733
    3 -2 roll translate
14734
 
14735
    BaseRatio mul 0.5 mul		% Calculate 1/2 base
14736
 
14737
    dup 0 exch 30 cos mul		% h1 = height above center point
14738
 
14739
					% b2 0 h1
14740
 
14741
    newpath moveto			% point 1;  b2
14742
 
14743
    dup 30 sin 30 cos div mul		% h2 = height below center point
14744
 
14745
    neg					% -h2 b2
14746
 
14747
    2 copy lineto			% point 2;  b2 h2
14748
 
14749
    exch neg exch lineto		%
14750
 
14751
    closepath
14752
 
14753
    DrawSymbolProc
14754
 
14755
  grestore
14756
 
14757
} def
14758
 
14759
 
14760
 
14761
% Bitmap
14762
 
14763
/Bm {
14764
 
14765
  % Stack: x y symbolSize
14766
 
14767
  gsave
14768
 
14769
    3 1 roll translate pop DrawSymbolProc
14770
 
14771
  grestore
14772
 
14773
} def
14774
 
14775
 
14776
 
14777
%%EndProlog
14778
 
14779
 
14780
 
14781
%%BeginSetup
14782
 
14783
gsave					% Save the graphics state
14784
 
14785
 
14786
 
14787
% Default line/text style parameters
14788
 
14789
 
14790
 
14791
1 setlinewidth				% width
14792
 
14793
1 setlinejoin				% join
14794
 
14795
 
14796
 
14797
[] 0 setdash				% dashes
14798
 
14799
 
14800
 
14801
/CL 0 def				% Set color level mode
14802
 
14803
 
14804
 
14805
 
14806
 
14807
% Transform coordinate system to use X11 coordinates
14808
 
14809
 
14810
 
14811
% 1. Flip y-axis over by reversing the scale,
14812
 
14813
% 2. Translate the origin to the other side of the page,
14814
 
14815
%    making the origin the upper left corner
14816
 
14817
0.75 -0.748819 scale
14818
 
14819
 
14820
 
14821
 
14822
 
14823
% User defined page layout
14824
 
14825
 
14826
 
14827
% Set color level
14828
 
14829
/CL 2 def
14830
 
14831
 
14832
 
14833
% Set origin
14834
 
14835
128 328 translate
14836
 
14837
 
14838
 
14839
 
14840
 
14841
%%EndSetup
14842
 
14843
 
14844
 
14845
12 /Helvetica-Bold SetFont
14846
 
14847
33 28 515 347 Box
14848
 
14849
 
14850
 
14851
1 1 1 SetBgColor
14852
 
14853
Fill
14854
 
14855
gsave clip
14856
 
14857
 
14858
 
14859
 
14860
 
14861
 
14862
 
14863
0.639216 0.639216 0.639216 SetFgColor
14864
 
14865
1 setlinewidth
14866
 
14867
[  1] 0 setdash
14868
 
14869
/DashesProc {} def
14870
 
14871
35 304.727 moveto
14872
 
14873
 545 304.727 lineto
14874
 
14875
DashesProc stroke
14876
 
14877
35 364 moveto
14878
 
14879
 545 364 lineto
14880
 
14881
DashesProc stroke
14882
 
14883
35 186.182 moveto
14884
 
14885
 545 186.182 lineto
14886
 
14887
DashesProc stroke
14888
 
14889
35 245.455 moveto
14890
 
14891
 545 245.455 lineto
14892
 
14893
DashesProc stroke
14894
 
14895
35 67.6364 moveto
14896
 
14897
 545 67.6364 lineto
14898
 
14899
DashesProc stroke
14900
 
14901
35 126.909 moveto
14902
 
14903
 545 126.909 lineto
14904
 
14905
DashesProc stroke
14906
 
14907
 
14908
 
14909
% Element "nbx1"
14910
 
14911
 
14912
 
14913
0.501961 0.501961 0.501961 SetFgColor
14914
 
14915
43 281 2 83 Box fill
14916
 
14917
 
14918
 
14919
0.501961 0.501961 0.501961 SetFgColor
14920
 
14921
45 263 2 101 Box fill
14922
 
14923
 
14924
 
14925
0.501961 0.501961 0.501961 SetFgColor
14926
 
14927
47 228 2 136 Box fill
14928
 
14929
 
14930
 
14931
0.501961 0.501961 0.501961 SetFgColor
14932
 
14933
49 364 2 0 Box fill
14934
 
14935
 
14936
 
14937
0.501961 0.501961 0.501961 SetFgColor
14938
 
14939
51 275 2 89 Box fill
14940
 
14941
 
14942
 
14943
0.501961 0.501961 0.501961 SetFgColor
14944
 
14945
54 263 2 101 Box fill
14946
 
14947
 
14948
 
14949
0.501961 0.501961 0.501961 SetFgColor
14950
 
14951
56 311 2 53 Box fill
14952
 
14953
 
14954
 
14955
0.501961 0.501961 0.501961 SetFgColor
14956
 
14957
58 251 2 113 Box fill
14958
 
14959
 
14960
 
14961
0.501961 0.501961 0.501961 SetFgColor
14962
 
14963
60 245 2 119 Box fill
14964
 
14965
 
14966
 
14967
0.501961 0.501961 0.501961 SetFgColor
14968
 
14969
63 311 2 53 Box fill
14970
 
14971
 
14972
 
14973
0.501961 0.501961 0.501961 SetFgColor
14974
 
14975
65 257 2 107 Box fill
14976
 
14977
 
14978
 
14979
0.501961 0.501961 0.501961 SetFgColor
14980
 
14981
67 293 2 71 Box fill
14982
 
14983
 
14984
 
14985
0.501961 0.501961 0.501961 SetFgColor
14986
 
14987
69 323 2 41 Box fill
14988
 
14989
 
14990
 
14991
0.501961 0.501961 0.501961 SetFgColor
14992
 
14993
72 305 2 59 Box fill
14994
 
14995
 
14996
 
14997
0.501961 0.501961 0.501961 SetFgColor
14998
 
14999
74 364 2 0 Box fill
15000
 
15001
 
15002
 
15003
0.501961 0.501961 0.501961 SetFgColor
15004
 
15005
76 346 2 18 Box fill
15006
 
15007
 
15008
 
15009
0.501961 0.501961 0.501961 SetFgColor
15010
 
15011
78 275 2 89 Box fill
15012
 
15013
 
15014
 
15015
0.501961 0.501961 0.501961 SetFgColor
15016
 
15017
81 257 2 107 Box fill
15018
 
15019
 
15020
 
15021
0.501961 0.501961 0.501961 SetFgColor
15022
 
15023
83 352 2 12 Box fill
15024
 
15025
 
15026
 
15027
0.501961 0.501961 0.501961 SetFgColor
15028
 
15029
85 317 2 47 Box fill
15030
 
15031
 
15032
 
15033
0.501961 0.501961 0.501961 SetFgColor
15034
 
15035
87 311 2 53 Box fill
15036
 
15037
 
15038
 
15039
0.501961 0.501961 0.501961 SetFgColor
15040
 
15041
90 328 2 36 Box fill
15042
 
15043
 
15044
 
15045
0.501961 0.501961 0.501961 SetFgColor
15046
 
15047
92 293 2 71 Box fill
15048
 
15049
 
15050
 
15051
0.501961 0.501961 0.501961 SetFgColor
15052
 
15053
94 222 2 142 Box fill
15054
 
15055
 
15056
 
15057
0.501961 0.501961 0.501961 SetFgColor
15058
 
15059
96 328 2 36 Box fill
15060
 
15061
 
15062
 
15063
0.501961 0.501961 0.501961 SetFgColor
15064
 
15065
99 364 2 0 Box fill
15066
 
15067
 
15068
 
15069
0.501961 0.501961 0.501961 SetFgColor
15070
 
15071
101 287 2 77 Box fill
15072
 
15073
 
15074
 
15075
0.501961 0.501961 0.501961 SetFgColor
15076
 
15077
103 323 2 41 Box fill
15078
 
15079
 
15080
 
15081
0.501961 0.501961 0.501961 SetFgColor
15082
 
15083
105 305 2 59 Box fill
15084
 
15085
 
15086
 
15087
0.501961 0.501961 0.501961 SetFgColor
15088
 
15089
108 275 2 89 Box fill
15090
 
15091
 
15092
 
15093
0.501961 0.501961 0.501961 SetFgColor
15094
 
15095
110 334 2 30 Box fill
15096
 
15097
 
15098
 
15099
0.501961 0.501961 0.501961 SetFgColor
15100
 
15101
112 245 2 119 Box fill
15102
 
15103
 
15104
 
15105
0.501961 0.501961 0.501961 SetFgColor
15106
 
15107
114 263 2 101 Box fill
15108
 
15109
 
15110
 
15111
0.501961 0.501961 0.501961 SetFgColor
15112
 
15113
117 317 2 47 Box fill
15114
 
15115
 
15116
 
15117
0.501961 0.501961 0.501961 SetFgColor
15118
 
15119
119 281 2 83 Box fill
15120
 
15121
 
15122
 
15123
0.501961 0.501961 0.501961 SetFgColor
15124
 
15125
121 281 2 83 Box fill
15126
 
15127
 
15128
 
15129
0.501961 0.501961 0.501961 SetFgColor
15130
 
15131
123 364 2 0 Box fill
15132
 
15133
 
15134
 
15135
0.501961 0.501961 0.501961 SetFgColor
15136
 
15137
126 251 2 113 Box fill
15138
 
15139
 
15140
 
15141
0.501961 0.501961 0.501961 SetFgColor
15142
 
15143
128 204 2 160 Box fill
15144
 
15145
 
15146
 
15147
0.501961 0.501961 0.501961 SetFgColor
15148
 
15149
130 281 2 83 Box fill
15150
 
15151
 
15152
 
15153
0.501961 0.501961 0.501961 SetFgColor
15154
 
15155
132 323 2 41 Box fill
15156
 
15157
 
15158
 
15159
0.501961 0.501961 0.501961 SetFgColor
15160
 
15161
135 251 2 113 Box fill
15162
 
15163
 
15164
 
15165
0.501961 0.501961 0.501961 SetFgColor
15166
 
15167
137 323 2 41 Box fill
15168
 
15169
 
15170
 
15171
0.501961 0.501961 0.501961 SetFgColor
15172
 
15173
139 275 2 89 Box fill
15174
 
15175
 
15176
 
15177
0.501961 0.501961 0.501961 SetFgColor
15178
 
15179
141 222 2 142 Box fill
15180
 
15181
 
15182
 
15183
0.501961 0.501961 0.501961 SetFgColor
15184
 
15185
144 364 2 0 Box fill
15186
 
15187
 
15188
 
15189
0.501961 0.501961 0.501961 SetFgColor
15190
 
15191
146 358 2 6 Box fill
15192
 
15193
 
15194
 
15195
0.501961 0.501961 0.501961 SetFgColor
15196
 
15197
148 364 2 0 Box fill
15198
 
15199
 
15200
 
15201
0.501961 0.501961 0.501961 SetFgColor
15202
 
15203
150 364 2 0 Box fill
15204
 
15205
 
15206
 
15207
0.501961 0.501961 0.501961 SetFgColor
15208
 
15209
153 364 2 0 Box fill
15210
 
15211
 
15212
 
15213
0.501961 0.501961 0.501961 SetFgColor
15214
 
15215
155 364 2 0 Box fill
15216
 
15217
 
15218
 
15219
0.501961 0.501961 0.501961 SetFgColor
15220
 
15221
157 364 2 0 Box fill
15222
 
15223
 
15224
 
15225
0.501961 0.501961 0.501961 SetFgColor
15226
 
15227
159 263 2 101 Box fill
15228
 
15229
 
15230
 
15231
0.501961 0.501961 0.501961 SetFgColor
15232
 
15233
162 222 2 142 Box fill
15234
 
15235
 
15236
 
15237
0.501961 0.501961 0.501961 SetFgColor
15238
 
15239
164 157 2 207 Box fill
15240
 
15241
 
15242
 
15243
0.501961 0.501961 0.501961 SetFgColor
15244
 
15245
166 287 2 77 Box fill
15246
 
15247
 
15248
 
15249
0.501961 0.501961 0.501961 SetFgColor
15250
 
15251
168 204 2 160 Box fill
15252
 
15253
 
15254
 
15255
0.501961 0.501961 0.501961 SetFgColor
15256
 
15257
170 210 2 154 Box fill
15258
 
15259
 
15260
 
15261
0.501961 0.501961 0.501961 SetFgColor
15262
 
15263
173 293 2 71 Box fill
15264
 
15265
 
15266
 
15267
0.501961 0.501961 0.501961 SetFgColor
15268
 
15269
175 263 2 101 Box fill
15270
 
15271
 
15272
 
15273
0.501961 0.501961 0.501961 SetFgColor
15274
 
15275
177 234 2 130 Box fill
15276
 
15277
 
15278
 
15279
0.501961 0.501961 0.501961 SetFgColor
15280
 
15281
179 311 2 53 Box fill
15282
 
15283
 
15284
 
15285
0.501961 0.501961 0.501961 SetFgColor
15286
 
15287
182 364 2 0 Box fill
15288
 
15289
 
15290
 
15291
0.501961 0.501961 0.501961 SetFgColor
15292
 
15293
184 240 2 124 Box fill
15294
 
15295
 
15296
 
15297
0.501961 0.501961 0.501961 SetFgColor
15298
 
15299
186 311 2 53 Box fill
15300
 
15301
 
15302
 
15303
0.501961 0.501961 0.501961 SetFgColor
15304
 
15305
188 293 2 71 Box fill
15306
 
15307
 
15308
 
15309
0.501961 0.501961 0.501961 SetFgColor
15310
 
15311
191 198 2 166 Box fill
15312
 
15313
 
15314
 
15315
0.501961 0.501961 0.501961 SetFgColor
15316
 
15317
193 305 2 59 Box fill
15318
 
15319
 
15320
 
15321
0.501961 0.501961 0.501961 SetFgColor
15322
 
15323
195 328 2 36 Box fill
15324
 
15325
 
15326
 
15327
0.501961 0.501961 0.501961 SetFgColor
15328
 
15329
197 311 2 53 Box fill
15330
 
15331
 
15332
 
15333
0.501961 0.501961 0.501961 SetFgColor
15334
 
15335
200 311 2 53 Box fill
15336
 
15337
 
15338
 
15339
0.501961 0.501961 0.501961 SetFgColor
15340
 
15341
202 305 2 59 Box fill
15342
 
15343
 
15344
 
15345
0.501961 0.501961 0.501961 SetFgColor
15346
 
15347
204 257 2 107 Box fill
15348
 
15349
 
15350
 
15351
0.501961 0.501961 0.501961 SetFgColor
15352
 
15353
206 364 2 0 Box fill
15354
 
15355
 
15356
 
15357
0.501961 0.501961 0.501961 SetFgColor
15358
 
15359
209 317 2 47 Box fill
15360
 
15361
 
15362
 
15363
0.501961 0.501961 0.501961 SetFgColor
15364
 
15365
211 251 2 113 Box fill
15366
 
15367
 
15368
 
15369
0.501961 0.501961 0.501961 SetFgColor
15370
 
15371
213 317 2 47 Box fill
15372
 
15373
 
15374
 
15375
0.501961 0.501961 0.501961 SetFgColor
15376
 
15377
215 275 2 89 Box fill
15378
 
15379
 
15380
 
15381
0.501961 0.501961 0.501961 SetFgColor
15382
 
15383
218 245 2 119 Box fill
15384
 
15385
 
15386
 
15387
0.501961 0.501961 0.501961 SetFgColor
15388
 
15389
220 334 2 30 Box fill
15390
 
15391
 
15392
 
15393
0.501961 0.501961 0.501961 SetFgColor
15394
 
15395
222 234 2 130 Box fill
15396
 
15397
 
15398
 
15399
0.501961 0.501961 0.501961 SetFgColor
15400
 
15401
224 216 2 148 Box fill
15402
 
15403
 
15404
 
15405
0.501961 0.501961 0.501961 SetFgColor
15406
 
15407
227 293 2 71 Box fill
15408
 
15409
 
15410
 
15411
0.501961 0.501961 0.501961 SetFgColor
15412
 
15413
229 263 2 101 Box fill
15414
 
15415
 
15416
 
15417
0.501961 0.501961 0.501961 SetFgColor
15418
 
15419
231 364 2 0 Box fill
15420
 
15421
 
15422
 
15423
0.501961 0.501961 0.501961 SetFgColor
15424
 
15425
233 299 2 65 Box fill
15426
 
15427
 
15428
 
15429
0.501961 0.501961 0.501961 SetFgColor
15430
 
15431
236 269 2 95 Box fill
15432
 
15433
 
15434
 
15435
0.501961 0.501961 0.501961 SetFgColor
15436
 
15437
238 263 2 101 Box fill
15438
 
15439
 
15440
 
15441
0.501961 0.501961 0.501961 SetFgColor
15442
 
15443
240 281 2 83 Box fill
15444
 
15445
 
15446
 
15447
0.501961 0.501961 0.501961 SetFgColor
15448
 
15449
242 240 2 124 Box fill
15450
 
15451
 
15452
 
15453
0.501961 0.501961 0.501961 SetFgColor
15454
 
15455
245 240 2 124 Box fill
15456
 
15457
 
15458
 
15459
0.501961 0.501961 0.501961 SetFgColor
15460
 
15461
247 275 2 89 Box fill
15462
 
15463
 
15464
 
15465
0.501961 0.501961 0.501961 SetFgColor
15466
 
15467
249 269 2 95 Box fill
15468
 
15469
 
15470
 
15471
0.501961 0.501961 0.501961 SetFgColor
15472
 
15473
251 157 2 207 Box fill
15474
 
15475
 
15476
 
15477
0.501961 0.501961 0.501961 SetFgColor
15478
 
15479
254 323 2 41 Box fill
15480
 
15481
 
15482
 
15483
0.501961 0.501961 0.501961 SetFgColor
15484
 
15485
256 364 2 0 Box fill
15486
 
15487
 
15488
 
15489
0.501961 0.501961 0.501961 SetFgColor
15490
 
15491
258 293 2 71 Box fill
15492
 
15493
 
15494
 
15495
0.501961 0.501961 0.501961 SetFgColor
15496
 
15497
260 323 2 41 Box fill
15498
 
15499
 
15500
 
15501
0.501961 0.501961 0.501961 SetFgColor
15502
 
15503
263 275 2 89 Box fill
15504
 
15505
 
15506
 
15507
0.501961 0.501961 0.501961 SetFgColor
15508
 
15509
265 269 2 95 Box fill
15510
 
15511
 
15512
 
15513
0.501961 0.501961 0.501961 SetFgColor
15514
 
15515
267 334 2 30 Box fill
15516
 
15517
 
15518
 
15519
0.501961 0.501961 0.501961 SetFgColor
15520
 
15521
269 317 2 47 Box fill
15522
 
15523
 
15524
 
15525
0.501961 0.501961 0.501961 SetFgColor
15526
 
15527
272 305 2 59 Box fill
15528
 
15529
 
15530
 
15531
0.501961 0.501961 0.501961 SetFgColor
15532
 
15533
274 328 2 36 Box fill
15534
 
15535
 
15536
 
15537
0.501961 0.501961 0.501961 SetFgColor
15538
 
15539
276 251 2 113 Box fill
15540
 
15541
 
15542
 
15543
0.501961 0.501961 0.501961 SetFgColor
15544
 
15545
278 281 2 83 Box fill
15546
 
15547
 
15548
 
15549
0.501961 0.501961 0.501961 SetFgColor
15550
 
15551
281 364 2 0 Box fill
15552
 
15553
 
15554
 
15555
0.501961 0.501961 0.501961 SetFgColor
15556
 
15557
283 293 2 71 Box fill
15558
 
15559
 
15560
 
15561
0.501961 0.501961 0.501961 SetFgColor
15562
 
15563
285 293 2 71 Box fill
15564
 
15565
 
15566
 
15567
0.501961 0.501961 0.501961 SetFgColor
15568
 
15569
287 323 2 41 Box fill
15570
 
15571
 
15572
 
15573
0.501961 0.501961 0.501961 SetFgColor
15574
 
15575
290 257 2 107 Box fill
15576
 
15577
 
15578
 
15579
0.501961 0.501961 0.501961 SetFgColor
15580
 
15581
292 275 2 89 Box fill
15582
 
15583
 
15584
 
15585
0.501961 0.501961 0.501961 SetFgColor
15586
 
15587
294 334 2 30 Box fill
15588
 
15589
 
15590
 
15591
0.501961 0.501961 0.501961 SetFgColor
15592
 
15593
296 346 2 18 Box fill
15594
 
15595
 
15596
 
15597
0.501961 0.501961 0.501961 SetFgColor
15598
 
15599
298 311 2 53 Box fill
15600
 
15601
 
15602
 
15603
0.501961 0.501961 0.501961 SetFgColor
15604
 
15605
301 364 2 0 Box fill
15606
 
15607
 
15608
 
15609
0.501961 0.501961 0.501961 SetFgColor
15610
 
15611
303 364 2 0 Box fill
15612
 
15613
 
15614
 
15615
0.501961 0.501961 0.501961 SetFgColor
15616
 
15617
305 364 2 0 Box fill
15618
 
15619
 
15620
 
15621
0.501961 0.501961 0.501961 SetFgColor
15622
 
15623
307 358 2 6 Box fill
15624
 
15625
 
15626
 
15627
0.501961 0.501961 0.501961 SetFgColor
15628
 
15629
310 364 2 0 Box fill
15630
 
15631
 
15632
 
15633
0.501961 0.501961 0.501961 SetFgColor
15634
 
15635
312 364 2 0 Box fill
15636
 
15637
 
15638
 
15639
0.501961 0.501961 0.501961 SetFgColor
15640
 
15641
314 364 2 0 Box fill
15642
 
15643
 
15644
 
15645
0.501961 0.501961 0.501961 SetFgColor
15646
 
15647
316 251 2 113 Box fill
15648
 
15649
 
15650
 
15651
0.501961 0.501961 0.501961 SetFgColor
15652
 
15653
319 234 2 130 Box fill
15654
 
15655
 
15656
 
15657
0.501961 0.501961 0.501961 SetFgColor
15658
 
15659
321 180 2 184 Box fill
15660
 
15661
 
15662
 
15663
0.501961 0.501961 0.501961 SetFgColor
15664
 
15665
323 275 2 89 Box fill
15666
 
15667
 
15668
 
15669
0.501961 0.501961 0.501961 SetFgColor
15670
 
15671
325 269 2 95 Box fill
15672
 
15673
 
15674
 
15675
0.501961 0.501961 0.501961 SetFgColor
15676
 
15677
328 234 2 130 Box fill
15678
 
15679
 
15680
 
15681
0.501961 0.501961 0.501961 SetFgColor
15682
 
15683
330 287 2 77 Box fill
15684
 
15685
 
15686
 
15687
0.501961 0.501961 0.501961 SetFgColor
15688
 
15689
332 269 2 95 Box fill
15690
 
15691
 
15692
 
15693
0.501961 0.501961 0.501961 SetFgColor
15694
 
15695
334 269 2 95 Box fill
15696
 
15697
 
15698
 
15699
0.501961 0.501961 0.501961 SetFgColor
15700
 
15701
337 334 2 30 Box fill
15702
 
15703
 
15704
 
15705
0.501961 0.501961 0.501961 SetFgColor
15706
 
15707
339 364 2 0 Box fill
15708
 
15709
 
15710
 
15711
0.501961 0.501961 0.501961 SetFgColor
15712
 
15713
341 210 2 154 Box fill
15714
 
15715
 
15716
 
15717
0.501961 0.501961 0.501961 SetFgColor
15718
 
15719
343 299 2 65 Box fill
15720
 
15721
 
15722
 
15723
0.501961 0.501961 0.501961 SetFgColor
15724
 
15725
346 222 2 142 Box fill
15726
 
15727
 
15728
 
15729
0.501961 0.501961 0.501961 SetFgColor
15730
 
15731
348 269 2 95 Box fill
15732
 
15733
 
15734
 
15735
0.501961 0.501961 0.501961 SetFgColor
15736
 
15737
350 299 2 65 Box fill
15738
 
15739
 
15740
 
15741
0.501961 0.501961 0.501961 SetFgColor
15742
 
15743
352 192 2 172 Box fill
15744
 
15745
 
15746
 
15747
0.501961 0.501961 0.501961 SetFgColor
15748
 
15749
355 234 2 130 Box fill
15750
 
15751
 
15752
 
15753
0.501961 0.501961 0.501961 SetFgColor
15754
 
15755
357 251 2 113 Box fill
15756
 
15757
 
15758
 
15759
0.501961 0.501961 0.501961 SetFgColor
15760
 
15761
359 240 2 124 Box fill
15762
 
15763
 
15764
 
15765
0.501961 0.501961 0.501961 SetFgColor
15766
 
15767
361 240 2 124 Box fill
15768
 
15769
 
15770
 
15771
0.501961 0.501961 0.501961 SetFgColor
15772
 
15773
364 364 2 0 Box fill
15774
 
15775
 
15776
 
15777
0.501961 0.501961 0.501961 SetFgColor
15778
 
15779
366 228 2 136 Box fill
15780
 
15781
 
15782
 
15783
0.501961 0.501961 0.501961 SetFgColor
15784
 
15785
368 198 2 166 Box fill
15786
 
15787
 
15788
 
15789
0.501961 0.501961 0.501961 SetFgColor
15790
 
15791
370 328 2 36 Box fill
15792
 
15793
 
15794
 
15795
0.501961 0.501961 0.501961 SetFgColor
15796
 
15797
373 275 2 89 Box fill
15798
 
15799
 
15800
 
15801
0.501961 0.501961 0.501961 SetFgColor
15802
 
15803
375 257 2 107 Box fill
15804
 
15805
 
15806
 
15807
0.501961 0.501961 0.501961 SetFgColor
15808
 
15809
377 311 2 53 Box fill
15810
 
15811
 
15812
 
15813
0.501961 0.501961 0.501961 SetFgColor
15814
 
15815
379 216 2 148 Box fill
15816
 
15817
 
15818
 
15819
0.501961 0.501961 0.501961 SetFgColor
15820
 
15821
382 269 2 95 Box fill
15822
 
15823
 
15824
 
15825
0.501961 0.501961 0.501961 SetFgColor
15826
 
15827
384 299 2 65 Box fill
15828
 
15829
 
15830
 
15831
0.501961 0.501961 0.501961 SetFgColor
15832
 
15833
386 245 2 119 Box fill
15834
 
15835
 
15836
 
15837
0.501961 0.501961 0.501961 SetFgColor
15838
 
15839
388 364 2 0 Box fill
15840
 
15841
 
15842
 
15843
0.501961 0.501961 0.501961 SetFgColor
15844
 
15845
391 305 2 59 Box fill
15846
 
15847
 
15848
 
15849
0.501961 0.501961 0.501961 SetFgColor
15850
 
15851
393 186 2 178 Box fill
15852
 
15853
 
15854
 
15855
0.501961 0.501961 0.501961 SetFgColor
15856
 
15857
395 210 2 154 Box fill
15858
 
15859
 
15860
 
15861
0.501961 0.501961 0.501961 SetFgColor
15862
 
15863
397 346 2 18 Box fill
15864
 
15865
 
15866
 
15867
0.501961 0.501961 0.501961 SetFgColor
15868
 
15869
400 269 2 95 Box fill
15870
 
15871
 
15872
 
15873
0.501961 0.501961 0.501961 SetFgColor
15874
 
15875
402 198 2 166 Box fill
15876
 
15877
 
15878
 
15879
0.501961 0.501961 0.501961 SetFgColor
15880
 
15881
404 311 2 53 Box fill
15882
 
15883
 
15884
 
15885
0.501961 0.501961 0.501961 SetFgColor
15886
 
15887
406 287 2 77 Box fill
15888
 
15889
 
15890
 
15891
0.501961 0.501961 0.501961 SetFgColor
15892
 
15893
409 257 2 107 Box fill
15894
 
15895
 
15896
 
15897
0.501961 0.501961 0.501961 SetFgColor
15898
 
15899
411 334 2 30 Box fill
15900
 
15901
 
15902
 
15903
0.501961 0.501961 0.501961 SetFgColor
15904
 
15905
413 364 2 0 Box fill
15906
 
15907
 
15908
 
15909
0.501961 0.501961 0.501961 SetFgColor
15910
 
15911
415 287 2 77 Box fill
15912
 
15913
 
15914
 
15915
0.501961 0.501961 0.501961 SetFgColor
15916
 
15917
417 352 2 12 Box fill
15918
 
15919
 
15920
 
15921
0.501961 0.501961 0.501961 SetFgColor
15922
 
15923
420 317 2 47 Box fill
15924
 
15925
 
15926
 
15927
0.501961 0.501961 0.501961 SetFgColor
15928
 
15929
422 245 2 119 Box fill
15930
 
15931
 
15932
 
15933
0.501961 0.501961 0.501961 SetFgColor
15934
 
15935
424 305 2 59 Box fill
15936
 
15937
 
15938
 
15939
0.501961 0.501961 0.501961 SetFgColor
15940
 
15941
426 311 2 53 Box fill
15942
 
15943
 
15944
 
15945
0.501961 0.501961 0.501961 SetFgColor
15946
 
15947
429 299 2 65 Box fill
15948
 
15949
 
15950
 
15951
0.501961 0.501961 0.501961 SetFgColor
15952
 
15953
431 334 2 30 Box fill
15954
 
15955
 
15956
 
15957
0.501961 0.501961 0.501961 SetFgColor
15958
 
15959
433 299 2 65 Box fill
15960
 
15961
 
15962
 
15963
0.501961 0.501961 0.501961 SetFgColor
15964
 
15965
435 293 2 71 Box fill
15966
 
15967
 
15968
 
15969
0.501961 0.501961 0.501961 SetFgColor
15970
 
15971
438 364 2 0 Box fill
15972
 
15973
 
15974
 
15975
0.501961 0.501961 0.501961 SetFgColor
15976
 
15977
440 293 2 71 Box fill
15978
 
15979
 
15980
 
15981
0.501961 0.501961 0.501961 SetFgColor
15982
 
15983
442 240 2 124 Box fill
15984
 
15985
 
15986
 
15987
0.501961 0.501961 0.501961 SetFgColor
15988
 
15989
444 317 2 47 Box fill
15990
 
15991
 
15992
 
15993
0.501961 0.501961 0.501961 SetFgColor
15994
 
15995
447 228 2 136 Box fill
15996
 
15997
 
15998
 
15999
0.501961 0.501961 0.501961 SetFgColor
16000
 
16001
449 257 2 107 Box fill
16002
 
16003
 
16004
 
16005
0.501961 0.501961 0.501961 SetFgColor
16006
 
16007
451 251 2 113 Box fill
16008
 
16009
 
16010
 
16011
0.501961 0.501961 0.501961 SetFgColor
16012
 
16013
453 210 2 154 Box fill
16014
 
16015
 
16016
 
16017
0.501961 0.501961 0.501961 SetFgColor
16018
 
16019
456 186 2 178 Box fill
16020
 
16021
 
16022
 
16023
0.501961 0.501961 0.501961 SetFgColor
16024
 
16025
458 364 2 0 Box fill
16026
 
16027
 
16028
 
16029
0.501961 0.501961 0.501961 SetFgColor
16030
 
16031
460 364 2 0 Box fill
16032
 
16033
 
16034
 
16035
0.501961 0.501961 0.501961 SetFgColor
16036
 
16037
462 364 2 0 Box fill
16038
 
16039
 
16040
 
16041
0.501961 0.501961 0.501961 SetFgColor
16042
 
16043
465 364 2 0 Box fill
16044
 
16045
 
16046
 
16047
0.501961 0.501961 0.501961 SetFgColor
16048
 
16049
467 364 2 0 Box fill
16050
 
16051
 
16052
 
16053
0.501961 0.501961 0.501961 SetFgColor
16054
 
16055
469 364 2 0 Box fill
16056
 
16057
 
16058
 
16059
0.501961 0.501961 0.501961 SetFgColor
16060
 
16061
471 364 2 0 Box fill
16062
 
16063
 
16064
 
16065
0.501961 0.501961 0.501961 SetFgColor
16066
 
16067
474 364 2 0 Box fill
16068
 
16069
 
16070
 
16071
0.501961 0.501961 0.501961 SetFgColor
16072
 
16073
476 364 2 0 Box fill
16074
 
16075
 
16076
 
16077
0.501961 0.501961 0.501961 SetFgColor
16078
 
16079
478 364 2 0 Box fill
16080
 
16081
 
16082
 
16083
0.501961 0.501961 0.501961 SetFgColor
16084
 
16085
480 364 2 0 Box fill
16086
 
16087
 
16088
 
16089
0.501961 0.501961 0.501961 SetFgColor
16090
 
16091
483 364 2 0 Box fill
16092
 
16093
 
16094
 
16095
0.501961 0.501961 0.501961 SetFgColor
16096
 
16097
485 364 2 0 Box fill
16098
 
16099
 
16100
 
16101
0.501961 0.501961 0.501961 SetFgColor
16102
 
16103
487 364 2 0 Box fill
16104
 
16105
 
16106
 
16107
0.501961 0.501961 0.501961 SetFgColor
16108
 
16109
489 358 2 6 Box fill
16110
 
16111
 
16112
 
16113
0.501961 0.501961 0.501961 SetFgColor
16114
 
16115
492 364 2 0 Box fill
16116
 
16117
 
16118
 
16119
0.501961 0.501961 0.501961 SetFgColor
16120
 
16121
494 364 2 0 Box fill
16122
 
16123
 
16124
 
16125
0.501961 0.501961 0.501961 SetFgColor
16126
 
16127
496 257 2 107 Box fill
16128
 
16129
 
16130
 
16131
0.501961 0.501961 0.501961 SetFgColor
16132
 
16133
498 240 2 124 Box fill
16134
 
16135
 
16136
 
16137
0.501961 0.501961 0.501961 SetFgColor
16138
 
16139
501 293 2 71 Box fill
16140
 
16141
 
16142
 
16143
0.501961 0.501961 0.501961 SetFgColor
16144
 
16145
503 269 2 95 Box fill
16146
 
16147
 
16148
 
16149
0.501961 0.501961 0.501961 SetFgColor
16150
 
16151
505 192 2 172 Box fill
16152
 
16153
 
16154
 
16155
0.501961 0.501961 0.501961 SetFgColor
16156
 
16157
507 127 2 237 Box fill
16158
 
16159
 
16160
 
16161
0.501961 0.501961 0.501961 SetFgColor
16162
 
16163
510 210 2 154 Box fill
16164
 
16165
 
16166
 
16167
0.501961 0.501961 0.501961 SetFgColor
16168
 
16169
512 162 2 202 Box fill
16170
 
16171
 
16172
 
16173
0.501961 0.501961 0.501961 SetFgColor
16174
 
16175
514 97 2 267 Box fill
16176
 
16177
 
16178
 
16179
0.501961 0.501961 0.501961 SetFgColor
16180
 
16181
516 145 2 219 Box fill
16182
 
16183
 
16184
 
16185
0.501961 0.501961 0.501961 SetFgColor
16186
 
16187
519 364 2 0 Box fill
16188
 
16189
 
16190
 
16191
0.501961 0.501961 0.501961 SetFgColor
16192
 
16193
521 38 2 326 Box fill
16194
 
16195
 
16196
 
16197
0.501961 0.501961 0.501961 SetFgColor
16198
 
16199
523 269 2 95 Box fill
16200
 
16201
 
16202
 
16203
0.501961 0.501961 0.501961 SetFgColor
16204
 
16205
525 174 2 190 Box fill
16206
 
16207
 
16208
 
16209
0.501961 0.501961 0.501961 SetFgColor
16210
 
16211
528 174 2 190 Box fill
16212
 
16213
 
16214
 
16215
0.501961 0.501961 0.501961 SetFgColor
16216
 
16217
530 340 2 24 Box fill
16218
 
16219
 
16220
 
16221
0.501961 0.501961 0.501961 SetFgColor
16222
 
16223
532 234 2 130 Box fill
16224
 
16225
 
16226
 
16227
0.501961 0.501961 0.501961 SetFgColor
16228
 
16229
534 145 2 219 Box fill
16230
 
16231
 
16232
 
16233
 
16234
 
16235
% Unset clipping
16236
 
16237
grestore
16238
 
16239
 
16240
 
16241
0.85098 0.85098 0.85098 SetBgColor
16242
 
16243
 
16244
 
16245
 
16246
 
16247
 
16248
 
16249
 
16250
 
16251
545 30 15 342 Box fill
16252
 
16253
 
16254
 
16255
 
16256
 
16257
 
16258
 
16259
1 1 1 SetBgColor
16260
 
16261
33 372 514 2 Box fill
16262
 
16263
 
16264
 
16265
545 28 2 346 Box fill
16266
 
16267
 
16268
 
16269
0.509804 0.509804 0.509804 SetBgColor
16270
 
16271
newpath 33 374 moveto
16272
 
16273
33 28 lineto
16274
 
16275
547 28 lineto
16276
 
16277
545 30 lineto
16278
 
16279
35 30 lineto
16280
 
16281
35 372 lineto
16282
 
16283
33 374 lineto
16284
 
16285
33 374  lineto closepath Fill
16286
 
16287
112 12 0 290 14 BeginText
16288
 
16289
12 /Helvetica-Bold SetFont
16290
 
16291
 
16292
 
16293
(Events per bunch) 112 0 11 DrawAdjText
16294
 
16295
EndText
16296
 
16297
10 9 0 43 391.5 BeginText
16298
 
16299
12 /Helvetica-Bold SetFont
16300
 
16301
 
16302
 
16303
(0) 6 2 8 DrawAdjText
16304
 
16305
EndText
16306
 
16307
16 9 0 87.9091 391.5 BeginText
16308
 
16309
12 /Helvetica-Bold SetFont
16310
 
16311
 
16312
 
16313
(20) 12 2 8 DrawAdjText
16314
 
16315
EndText
16316
 
16317
16 9 0 132.818 391.5 BeginText
16318
 
16319
12 /Helvetica-Bold SetFont
16320
 
16321
 
16322
 
16323
(40) 12 2 8 DrawAdjText
16324
 
16325
EndText
16326
 
16327
16 9 0 177.727 391.5 BeginText
16328
 
16329
12 /Helvetica-Bold SetFont
16330
 
16331
 
16332
 
16333
(60) 12 2 8 DrawAdjText
16334
 
16335
EndText
16336
 
16337
16 9 0 222.636 391.5 BeginText
16338
 
16339
12 /Helvetica-Bold SetFont
16340
 
16341
 
16342
 
16343
(80) 12 2 8 DrawAdjText
16344
 
16345
EndText
16346
 
16347
22 9 0 267.545 391.5 BeginText
16348
 
16349
12 /Helvetica-Bold SetFont
16350
 
16351
 
16352
 
16353
(100) 18 2 8 DrawAdjText
16354
 
16355
EndText
16356
 
16357
22 9 0 312.455 391.5 BeginText
16358
 
16359
12 /Helvetica-Bold SetFont
16360
 
16361
 
16362
 
16363
(120) 18 2 8 DrawAdjText
16364
 
16365
EndText
16366
 
16367
22 9 0 357.364 391.5 BeginText
16368
 
16369
12 /Helvetica-Bold SetFont
16370
 
16371
 
16372
 
16373
(140) 18 2 8 DrawAdjText
16374
 
16375
EndText
16376
 
16377
22 9 0 402.273 391.5 BeginText
16378
 
16379
12 /Helvetica-Bold SetFont
16380
 
16381
 
16382
 
16383
(160) 18 2 8 DrawAdjText
16384
 
16385
EndText
16386
 
16387
22 9 0 447.182 391.5 BeginText
16388
 
16389
12 /Helvetica-Bold SetFont
16390
 
16391
 
16392
 
16393
(180) 18 2 8 DrawAdjText
16394
 
16395
EndText
16396
 
16397
22 9 0 492.091 391.5 BeginText
16398
 
16399
12 /Helvetica-Bold SetFont
16400
 
16401
 
16402
 
16403
(200) 18 2 8 DrawAdjText
16404
 
16405
EndText
16406
 
16407
22 9 0 537 391.5 BeginText
16408
 
16409
12 /Helvetica-Bold SetFont
16410
 
16411
 
16412
 
16413
(220) 18 2 8 DrawAdjText
16414
 
16415
EndText
16416
 
16417
 
16418
 
16419
 
16420
 
16421
 
16422
 
16423
1 setlinewidth
16424
 
16425
[ ] 0 setdash
16426
 
16427
/DashesProc {} def
16428
 
16429
43 377 moveto
16430
 
16431
 537 377 lineto
16432
 
16433
DashesProc stroke
16434
 
16435
65.4545 377 moveto
16436
 
16437
 65.4545 382 lineto
16438
 
16439
DashesProc stroke
16440
 
16441
43 377 moveto
16442
 
16443
 43 385 lineto
16444
 
16445
DashesProc stroke
16446
 
16447
110.364 377 moveto
16448
 
16449
 110.364 382 lineto
16450
 
16451
DashesProc stroke
16452
 
16453
87.9091 377 moveto
16454
 
16455
 87.9091 385 lineto
16456
 
16457
DashesProc stroke
16458
 
16459
155.273 377 moveto
16460
 
16461
 155.273 382 lineto
16462
 
16463
DashesProc stroke
16464
 
16465
132.818 377 moveto
16466
 
16467
 132.818 385 lineto
16468
 
16469
DashesProc stroke
16470
 
16471
200.182 377 moveto
16472
 
16473
 200.182 382 lineto
16474
 
16475
DashesProc stroke
16476
 
16477
177.727 377 moveto
16478
 
16479
 177.727 385 lineto
16480
 
16481
DashesProc stroke
16482
 
16483
245.091 377 moveto
16484
 
16485
 245.091 382 lineto
16486
 
16487
DashesProc stroke
16488
 
16489
222.636 377 moveto
16490
 
16491
 222.636 385 lineto
16492
 
16493
DashesProc stroke
16494
 
16495
290 377 moveto
16496
 
16497
 290 382 lineto
16498
 
16499
DashesProc stroke
16500
 
16501
267.545 377 moveto
16502
 
16503
 267.545 385 lineto
16504
 
16505
DashesProc stroke
16506
 
16507
334.909 377 moveto
16508
 
16509
 334.909 382 lineto
16510
 
16511
DashesProc stroke
16512
 
16513
312.455 377 moveto
16514
 
16515
 312.455 385 lineto
16516
 
16517
DashesProc stroke
16518
 
16519
379.818 377 moveto
16520
 
16521
 379.818 382 lineto
16522
 
16523
DashesProc stroke
16524
 
16525
357.364 377 moveto
16526
 
16527
 357.364 385 lineto
16528
 
16529
DashesProc stroke
16530
 
16531
424.727 377 moveto
16532
 
16533
 424.727 382 lineto
16534
 
16535
DashesProc stroke
16536
 
16537
402.273 377 moveto
16538
 
16539
 402.273 385 lineto
16540
 
16541
DashesProc stroke
16542
 
16543
469.636 377 moveto
16544
 
16545
 469.636 382 lineto
16546
 
16547
DashesProc stroke
16548
 
16549
447.182 377 moveto
16550
 
16551
 447.182 385 lineto
16552
 
16553
DashesProc stroke
16554
 
16555
514.545 377 moveto
16556
 
16557
 514.545 382 lineto
16558
 
16559
DashesProc stroke
16560
 
16561
492.091 377 moveto
16562
 
16563
 492.091 385 lineto
16564
 
16565
DashesProc stroke
16566
 
16567
537 377 moveto
16568
 
16569
 537 385 lineto
16570
 
16571
DashesProc stroke
16572
 
16573
10 9 0 15 364 BeginText
16574
 
16575
12 /Helvetica-Bold SetFont
16576
 
16577
 
16578
 
16579
(0) 6 2 8 DrawAdjText
16580
 
16581
EndText
16582
 
16583
16 9 0 12 245.455 BeginText
16584
 
16585
12 /Helvetica-Bold SetFont
16586
 
16587
 
16588
 
16589
(20) 12 2 8 DrawAdjText
16590
 
16591
EndText
16592
 
16593
16 9 0 12 126.909 BeginText
16594
 
16595
12 /Helvetica-Bold SetFont
16596
 
16597
 
16598
 
16599
(40) 12 2 8 DrawAdjText
16600
 
16601
EndText
16602
 
16603
 
16604
 
16605
 
16606
 
16607
 
16608
 
16609
1 setlinewidth
16610
 
16611
[ ] 0 setdash
16612
 
16613
/DashesProc {} def
16614
 
16615
30 364 moveto
16616
 
16617
 30 38 lineto
16618
 
16619
DashesProc stroke
16620
 
16621
30 304.727 moveto
16622
 
16623
 25 304.727 lineto
16624
 
16625
DashesProc stroke
16626
 
16627
30 364 moveto
16628
 
16629
 22 364 lineto
16630
 
16631
DashesProc stroke
16632
 
16633
30 186.182 moveto
16634
 
16635
 25 186.182 lineto
16636
 
16637
DashesProc stroke
16638
 
16639
30 245.455 moveto
16640
 
16641
 22 245.455 lineto
16642
 
16643
DashesProc stroke
16644
 
16645
30 67.6364 moveto
16646
 
16647
 25 67.6364 lineto
16648
 
16649
DashesProc stroke
16650
 
16651
30 126.909 moveto
16652
 
16653
 22 126.909 lineto
16654
 
16655
DashesProc stroke
16656
 
16657
showpage
16658
 
16659
%Trailer
16660
 
16661
grestore
16662
 
16663
end
16664
 
16665
%EOF
16666
 
16667
EndEPSF
16668
grestore
16669
gsave
16670
 
16671
% including file "/usr//lib/blt2.4/bltCanvEps.pro"
16672
 
16673
%
16674
% PostScript encapulator prolog file of the BLT "eps" canvas item.
16675
%
16676
% Copyright 1991-1997 Bell Labs Innovations for Lucent Technologies.
16677
%
16678
% Permission to use, copy, modify, and distribute this software and its
16679
% documentation for any purpose and without fee is hereby granted, provided
16680
% that the above copyright notice appear in all copies and that both that the
16681
% copyright notice and warranty disclaimer appear in supporting documentation,
16682
% and that the names of Lucent Technologies any of their entities not be used
16683
% in advertising or publicity pertaining to distribution of the software
16684
% without specific, written prior permission.
16685
%
16686
% Lucent Technologies disclaims all warranties with regard to this software,
16687
% including all implied warranties of merchantability and fitness.  In no event
16688
% shall Lucent Technologies be liable for any special, indirect or
16689
% consequential damages or any damages whatsoever resulting from loss of use,
16690
% data or profits, whether in an action of contract, negligence or other
16691
% tortuous action, arising out of or in connection with the use or performance
16692
% of this software.
16693
%
16694
 
16695
%
16696
% The definitions of the next two macros are from Appendix H of
16697
% Adobe's "PostScript Language Reference Manual" pp. 709-736.
16698
%
16699
 
16700
% Prepare for EPS file
16701
 
16702
/BeginEPSF {
16703
  /beforeInclusionState save def
16704
  /dictCount countdictstack def		% Save the # objects in the dictionary
16705
  /opCount count 1 sub def		% Count object on operator stack
16706
  userdict begin			% Make "userdict" the current
16707
					% dictionary
16708
    /showpage {} def			% Redefine showpage to be null
16709
 
16710
 
16711
    1 setlinewidth
16712
 
16713
    10 setmiterlimit
16714
    [] 0 setdash
16715
    newpath
16716
    /languagellevel where {
16717
      pop languagelevel
16718
      1 ne {
16719
	false setstrokeadjust false setoverprint
16720
      } if
16721
    } if
16722
    % note: no "end"
16723
} bind def
16724
 
16725
/EndEPSF { %def
16726
  count opCount sub {
16727
    pop
16728
  } repeat
16729
  countdictstack dictCount sub {
16730
  end					% Clean up dictionary stack
16731
  } repeat
16732
  beforeInclusionState restore
16733
} bind def
16734
 
16735
 
16736
%
16737
% Set up a clip region based upon a bounding box (x1, y1, x2, y2).
16738
%
16739
/SetClipRegion {
16740
  % Stack: x1 y1 x2 y2
16741
  newpath
16742
  4 2 roll moveto
16743
  1 index 0 rlineto
16744
 
16745
  neg 0 rlineto
16746
  closepath
16747
  clip
16748
  newpath
16749
} def
16750
 
16751
BeginEPSF
16752
564 496 translate
16753
1 1 scale
16754
-96 -246 translate
16755
96 246 516 546 SetClipRegion
16756
%% including "g3.eps"
16757
 
16758
 
16759
 
16760
%%BeginProlog
16761
 
16762
%
16763
 
16764
% PostScript prolog file of the BLT graph widget.
16765
 
16766
%
16767
 
16768
% Copyright 1989-1992 Regents of the University of California.
16769
 
16770
% Permission to use, copy, modify, and distribute this
16771
 
16772
% software and its documentation for any purpose and without
16773
 
16774
% fee is hereby granted, provided that the above copyright
16775
 
16776
% notice appear in all copies.  The University of California
16777
 
16778
% makes no representations about the suitability of this
16779
 
16780
% software for any purpose.  It is provided "as is" without
16781
 
16782
% express or implied warranty.
16783
 
16784
%
16785
 
16786
% Copyright 1991-1997 Bell Labs Innovations for Lucent Technologies.
16787
 
16788
%
16789
 
16790
% Permission to use, copy, modify, and distribute this software and its
16791
 
16792
% documentation for any purpose and without fee is hereby granted, provided
16793
 
16794
% that the above copyright notice appear in all copies and that both that the
16795
 
16796
% copyright notice and warranty disclaimer appear in supporting documentation,
16797
 
16798
% and that the names of Lucent Technologies any of their entities not be used
16799
 
16800
% in advertising or publicity pertaining to distribution of the software
16801
 
16802
% without specific, written prior permission.
16803
 
16804
%
16805
 
16806
% Lucent Technologies disclaims all warranties with regard to this software,
16807
 
16808
% including all implied warranties of merchantability and fitness.  In no event
16809
 
16810
% shall Lucent Technologies be liable for any special, indirect or
16811
 
16812
% consequential damages or any damages whatsoever resulting from loss of use,
16813
 
16814
% data or profits, whether in an action of contract, negligence or other
16815
 
16816
% tortuous action, arising out of or in connection with the use or performance
16817
 
16818
% of this software.
16819
 
16820
%
16821
 
16822
 
16823
 
16824
200 dict begin
16825
 
16826
 
16827
 
16828
/BaseRatio 1.3467736870885982 def	% Ratio triangle base / symbol size
16829
 
16830
/BgColorProc 0 def			% Background color routine (symbols)
16831
 
16832
/DrawSymbolProc 0 def			% Routine to draw symbol outline/fill
16833
 
16834
/StippleProc 0 def			% Stipple routine (bar segments)
16835
 
16836
/DashesProc 0 def			% Dashes routine (line segments)
16837
 
16838
 
16839
 
16840
% Define the array ISOLatin1Encoding (which specifies how characters are
16841
 
16842
% encoded for ISO-8859-1 fonts), if it isn't already present (Postscript
16843
 
16844
% level 2 is supposed to define it, but level 1 doesn't).
16845
 
16846
 
16847
 
16848
systemdict /ISOLatin1Encoding known not {
16849
 
16850
  /ISOLatin1Encoding [
16851
 
16852
    /space /space /space /space /space /space /space /space
16853
 
16854
    /space /space /space /space /space /space /space /space
16855
 
16856
    /space /space /space /space /space /space /space /space
16857
 
16858
    /space /space /space /space /space /space /space /space
16859
 
16860
    /space /exclam /quotedbl /numbersign /dollar /percent /ampersand
16861
 
16862
    /quoteright
16863
 
16864
    /parenleft /parenright /asterisk /plus /comma /minus /period /slash
16865
 
16866
    /zero /one /two /three /four /five /six /seven
16867
 
16868
    /eight /nine /colon /semicolon /less /equal /greater /question
16869
 
16870
    /at /A /B /C /D /E /F /G
16871
 
16872
    /H /I /J /K /L /M /N /O
16873
 
16874
    /P /Q /R /S /T /U /V /W
16875
 
16876
    /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
16877
 
16878
    /quoteleft /a /b /c /d /e /f /g
16879
 
16880
    /h /i /j /k /l /m /n /o
16881
 
16882
    /p /q /r /s /t /u /v /w
16883
 
16884
    /x /y /z /braceleft /bar /braceright /asciitilde /space
16885
 
16886
    /space /space /space /space /space /space /space /space
16887
 
16888
    /space /space /space /space /space /space /space /space
16889
 
16890
    /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
16891
 
16892
    /dieresis /space /ring /cedilla /space /hungarumlaut /ogonek /caron
16893
 
16894
    /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
16895
 
16896
    /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen
16897
 
16898
    /registered /macron
16899
 
16900
    /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph
16901
 
16902
    /periodcentered
16903
 
16904
    /cedillar /onesuperior /ordmasculine /guillemotright /onequarter
16905
 
16906
    /onehalf /threequarters /questiondown
16907
 
16908
    /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
16909
 
16910
    /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex
16911
 
16912
    /Idieresis
16913
 
16914
    /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
16915
 
16916
    /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn
16917
 
16918
    /germandbls
16919
 
16920
    /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
16921
 
16922
    /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex
16923
 
16924
    /idieresis
16925
 
16926
    /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
16927
 
16928
    /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn
16929
 
16930
    /ydieresis
16931
 
16932
  ] def
16933
 
16934
} if
16935
 
16936
 
16937
 
16938
% font ISOEncode font
16939
 
16940
% This procedure changes the encoding of a font from the default
16941
 
16942
% Postscript encoding to ISOLatin1.  It is typically invoked just
16943
 
16944
% before invoking "setfont".  The body of this procedure comes from
16945
 
16946
% Section 5.6.1 of the Postscript book.
16947
 
16948
 
16949
 
16950
/ISOEncode {
16951
 
16952
  dup length dict
16953
 
16954
  begin
16955
 
16956
    {1 index /FID ne {def} {pop pop} ifelse} forall
16957
 
16958
    /Encoding ISOLatin1Encoding def
16959
 
16960
    currentdict
16961
 
16962
  end
16963
 
16964
 
16965
 
16966
  % I'm not sure why it's necessary to use "definefont" on this new
16967
 
16968
  % font, but it seems to be important; just use the name "Temporary"
16969
 
16970
  % for the font.
16971
 
16972
 
16973
 
16974
  /Temporary exch definefont
16975
 
16976
} bind def
16977
 
16978
 
16979
 
16980
/Stroke {
16981
 
16982
  gsave
16983
 
16984
    stroke
16985
 
16986
  grestore
16987
 
16988
} def
16989
 
16990
 
16991
 
16992
/Fill {
16993
 
16994
  gsave
16995
 
16996
    fill
16997
 
16998
  grestore
16999
 
17000
} def
17001
 
17002
 
17003
 
17004
/SetFont {
17005
 
17006
  % Stack: pointSize fontName
17007
 
17008
  findfont exch scalefont ISOEncode setfont
17009
 
17010
} def
17011
 
17012
 
17013
 
17014
/Box {
17015
 
17016
  % Stack: x y width height
17017
 
17018
  newpath
17019
 
17020
  exch 4 2 roll moveto
17021
 
17022
  dup 0 rlineto
17023
 
17024
  exch 0 exch rlineto
17025
 
17026
  neg 0 rlineto
17027
 
17028
  closepath
17029
 
17030
} def
17031
 
17032
 
17033
 
17034
/SetFgColor {
17035
 
17036
  % Stack: red green blue
17037
 
17038
  CL 0 eq {
17039
 
17040
    pop pop pop 0 0 0
17041
 
17042
  } if
17043
 
17044
  setrgbcolor
17045
 
17046
  CL 1 eq {
17047
 
17048
    currentgray setgray
17049
 
17050
  } if
17051
 
17052
} def
17053
 
17054
 
17055
 
17056
/SetBgColor {
17057
 
17058
  % Stack: red green blue
17059
 
17060
  CL 0 eq {
17061
 
17062
    pop pop pop 1 1 1
17063
 
17064
  } if
17065
 
17066
  setrgbcolor
17067
 
17068
  CL 1 eq {
17069
 
17070
    currentgray setgray
17071
 
17072
  } if
17073
 
17074
} def
17075
 
17076
 
17077
 
17078
% The next two definitions are taken from "$tk_library/prolog.ps"
17079
 
17080
 
17081
 
17082
% desiredSize EvenPixels closestSize
17083
 
17084
%
17085
 
17086
% The procedure below is used for stippling.  Given the optimal size
17087
 
17088
% of a dot in a stipple pattern in the current user coordinate system,
17089
 
17090
% compute the closest size that is an exact multiple of the device's
17091
 
17092
% pixel size.  This allows stipple patterns to be displayed without
17093
 
17094
% aliasing effects.
17095
 
17096
 
17097
 
17098
/EvenPixels {
17099
 
17100
  % Compute exact number of device pixels per stipple dot.
17101
 
17102
  dup 0 matrix currentmatrix dtransform
17103
 
17104
  dup mul exch dup mul add sqrt
17105
 
17106
 
17107
 
17108
  % Round to an integer, make sure the number is at least 1, and compute
17109
 
17110
  % user coord distance corresponding to this.
17111
 
17112
  dup round dup 1 lt {pop 1} if
17113
 
17114
  exch div mul
17115
 
17116
} bind def
17117
 
17118
 
17119
 
17120
% width height string filled StippleFill --
17121
 
17122
%
17123
 
17124
% Given a path and other graphics information already set up, this
17125
 
17126
% procedure will fill the current path in a stippled fashion.  "String"
17127
 
17128
% contains a proper image description of the stipple pattern and
17129
 
17130
% "width" and "height" give its dimensions.  If "filled" is true then
17131
 
17132
% it means that the area to be stippled is gotten by filling the
17133
 
17134
% current path (e.g. the interior of a polygon); if it's false, the
17135
 
17136
% area is gotten by stroking the current path (e.g. a wide line).
17137
 
17138
% Each stipple dot is assumed to be about one unit across in the
17139
 
17140
% current user coordinate system.
17141
 
17142
 
17143
 
17144
% width height string StippleFill --
17145
 
17146
%
17147
 
17148
% Given a path already set up and a clipping region generated from
17149
 
17150
% it, this procedure will fill the clipping region with a stipple
17151
 
17152
% pattern.  "String" contains a proper image description of the
17153
 
17154
% stipple pattern and "width" and "height" give its dimensions.  Each
17155
 
17156
% stipple dot is assumed to be about one unit across in the current
17157
 
17158
% user coordinate system.  This procedure trashes the graphics state.
17159
 
17160
 
17161
 
17162
/StippleFill {
17163
 
17164
    % The following code is needed to work around a NeWSprint bug.
17165
 
17166
 
17167
 
17168
    /tmpstip 1 index def
17169
 
17170
 
17171
 
17172
    % Change the scaling so that one user unit in user coordinates
17173
 
17174
    % corresponds to the size of one stipple dot.
17175
 
17176
    1 EvenPixels dup scale
17177
 
17178
 
17179
 
17180
    % Compute the bounding box occupied by the path (which is now
17181
 
17182
    % the clipping region), and round the lower coordinates down
17183
 
17184
    % to the nearest starting point for the stipple pattern.  Be
17185
 
17186
    % careful about negative numbers, since the rounding works
17187
 
17188
    % differently on them.
17189
 
17190
 
17191
 
17192
    pathbbox
17193
 
17194
    4 2 roll
17195
 
17196
    5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
17197
 
17198
    6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
17199
 
17200
 
17201
 
17202
    % Stack now: width height string y1 y2 x1 x2
17203
 
17204
    % Below is a doubly-nested for loop to iterate across this area
17205
 
17206
    % in units of the stipple pattern size, going up columns then
17207
 
17208
    % across rows, blasting out a stipple-pattern-sized rectangle at
17209
 
17210
    % each position
17211
 
17212
 
17213
 
17214
    6 index exch {
17215
 
17216
	2 index 5 index 3 index {
17217
 
17218
	    % Stack now: width height string y1 y2 x y
17219
 
17220
 
17221
 
17222
	    gsave
17223
 
17224
	    1 index exch translate
17225
 
17226
	    5 index 5 index true matrix tmpstip imagemask
17227
 
17228
	    grestore
17229
 
17230
	} for
17231
 
17232
	pop
17233
 
17234
    } for
17235
 
17236
    pop pop pop pop pop
17237
 
17238
} bind def
17239
 
17240
 
17241
 
17242
 
17243
 
17244
/LS {	% Stack: x1 y1 x2 y2
17245
 
17246
  newpath 4 2 roll moveto lineto stroke
17247
 
17248
} def
17249
 
17250
 
17251
 
17252
/EndText {
17253
 
17254
  %Stack :
17255
 
17256
  grestore
17257
 
17258
} def
17259
 
17260
 
17261
 
17262
/BeginText {
17263
 
17264
  %Stack :  w h theta centerX centerY
17265
 
17266
  gsave
17267
 
17268
    % Translate the origin to the center of bounding box and rotate
17269
 
17270
    translate neg rotate
17271
 
17272
    % Translate back to the origin of the text region
17273
 
17274
    -0.5 mul exch -0.5 mul exch translate
17275
 
17276
} def
17277
 
17278
 
17279
 
17280
/DrawAdjText {
17281
 
17282
  %Stack : str strWidth x y
17283
 
17284
  moveto				% Go to the text position
17285
 
17286
  exch dup dup 4 2 roll
17287
 
17288
 
17289
 
17290
  % Adjust character widths to get desired overall string width
17291
 
17292
  % adjust X = (desired width - real width)/#chars
17293
 
17294
 
17295
 
17296
  stringwidth pop sub exch
17297
 
17298
  length div
17299
 
17300
 
17301
 
17302
 
17303
 
17304
  % Flip back the scale so that the string is not drawn in reverse
17305
 
17306
 
17307
 
17308
  gsave
17309
 
17310
    1 -1 scale
17311
 
17312
    ashow
17313
 
17314
  grestore
17315
 
17316
} def
17317
 
17318
 
17319
 
17320
/DrawBitmap {
17321
 
17322
  % Stack: ?bgColorProc? boolean centerX centerY width height theta imageStr
17323
 
17324
  gsave
17325
 
17326
    6 -2 roll translate			% Translate to center of bounding box
17327
 
17328
    4 1 roll neg rotate			% Rotate by theta
17329
 
17330
 
17331
 
17332
    % Find upperleft corner of bounding box
17333
 
17334
 
17335
 
17336
    2 copy -.5 mul exch -.5 mul exch translate
17337
 
17338
    2 copy scale			% Make pixel unit scale
17339
 
17340
    newpath
17341
 
17342
 
17343
 
17344
    closepath
17345
 
17346
 
17347
 
17348
    % Fill rectangle with background color
17349
 
17350
 
17351
 
17352
    4 -1 roll {
17353
 
17354
      gsave
17355
 
17356
	4 -1 roll exec fill
17357
 
17358
      grestore
17359
 
17360
    } if
17361
 
17362
 
17363
 
17364
    % Paint the image string into the unit rectangle
17365
 
17366
 
17367
 
17368
    2 copy true 3 -1 roll 0 0 5 -1 roll 0 0 6 array astore 5 -1 roll
17369
 
17370
    imagemask
17371
 
17372
  grestore
17373
 
17374
} def
17375
 
17376
 
17377
 
17378
% Symbols:
17379
 
17380
 
17381
 
17382
% Skinny-cross
17383
 
17384
/Sc {
17385
 
17386
  % Stack: x y symbolSize
17387
 
17388
  gsave
17389
 
17390
    3 -2 roll translate 45 rotate
17391
 
17392
 
17393
 
17394
  grestore
17395
 
17396
} def
17397
 
17398
 
17399
 
17400
% Skinny-plus
17401
 
17402
/Sp {
17403
 
17404
  % Stack: x y symbolSize
17405
 
17406
  gsave
17407
 
17408
    3 -2 roll translate
17409
 
17410
    2 idiv
17411
 
17412
    dup 2 copy
17413
 
17414
    newpath neg 0 moveto 0 lineto
17415
 
17416
    DrawSymbolProc
17417
 
17418
    newpath neg 0 exch moveto 0 exch lineto
17419
 
17420
    DrawSymbolProc
17421
 
17422
  grestore
17423
 
17424
} def
17425
 
17426
 
17427
 
17428
% Cross
17429
 
17430
/Cr {
17431
 
17432
  % Stack: x y symbolSize
17433
 
17434
  gsave
17435
 
17436
    3 -2 roll translate 45 rotate
17437
 
17438
 
17439
 
17440
  grestore
17441
 
17442
} def
17443
 
17444
 
17445
 
17446
% Plus
17447
 
17448
/Pl {
17449
 
17450
  % Stack: x y symbolSize
17451
 
17452
  gsave
17453
 
17454
    3 -2 roll translate
17455
 
17456
    dup 2 idiv
17457
 
17458
    exch 6 idiv
17459
 
17460
 
17461
 
17462
    %
17463
 
17464
    %          2   3		The plus/cross symbol is a
17465
 
17466
    %				closed polygon of 12 points.
17467
 
17468
    %      0   1   4    5	The diagram to the left
17469
 
17470
    %           x,y		represents the positions of
17471
 
17472
    %     11  10   7    6	the points which are computed
17473
 
17474
    %				below.
17475
 
17476
    %          9   8
17477
 
17478
    %
17479
 
17480
 
17481
 
17482
    newpath
17483
 
17484
    2 copy exch neg exch neg moveto dup neg dup lineto
17485
 
17486
    2 copy neg exch neg lineto 2 copy exch neg lineto
17487
 
17488
    dup dup neg lineto 2 copy neg lineto 2 copy lineto
17489
 
17490
    dup dup lineto 2 copy exch lineto 2 copy neg exch lineto
17491
 
17492
    dup dup neg exch lineto exch neg exch lineto
17493
 
17494
    closepath
17495
 
17496
    DrawSymbolProc
17497
 
17498
  grestore
17499
 
17500
} def
17501
 
17502
 
17503
 
17504
% Circle
17505
 
17506
/Ci {
17507
 
17508
  % Stack: x y symbolSize
17509
 
17510
  gsave
17511
 
17512
    3 copy pop
17513
 
17514
    moveto newpath
17515
 
17516
    2 div 0 360 arc
17517
 
17518
    closepath DrawSymbolProc
17519
 
17520
  grestore
17521
 
17522
} def
17523
 
17524
 
17525
 
17526
% Square
17527
 
17528
/Sq {
17529
 
17530
  % Stack: x y symbolSize
17531
 
17532
  gsave
17533
 
17534
    dup dup 2 div dup
17535
 
17536
    6 -1 roll exch sub exch
17537
 
17538
    5 -1 roll exch sub 4 -2 roll Box
17539
 
17540
    DrawSymbolProc
17541
 
17542
  grestore
17543
 
17544
} def
17545
 
17546
 
17547
 
17548
% Line
17549
 
17550
/Li {
17551
 
17552
  % Stack: x y symbolSize
17553
 
17554
  gsave
17555
 
17556
    3 1 roll exch 3 -1 roll 2 div 3 copy
17557
 
17558
    newpath
17559
 
17560
    sub exch moveto add exch lineto
17561
 
17562
    stroke
17563
 
17564
  grestore
17565
 
17566
} def
17567
 
17568
 
17569
 
17570
% Diamond
17571
 
17572
/Di {
17573
 
17574
  % Stack: x y symbolSize
17575
 
17576
  gsave
17577
 
17578
    3 1 roll translate 45 rotate 0 0 3 -1 roll Sq
17579
 
17580
  grestore
17581
 
17582
} def
17583
 
17584
 
17585
 
17586
% Triangle
17587
 
17588
/Tr {
17589
 
17590
  % Stack: x y symbolSize
17591
 
17592
  gsave
17593
 
17594
    3 -2 roll translate
17595
 
17596
    BaseRatio mul 0.5 mul		% Calculate 1/2 base
17597
 
17598
    dup 0 exch 30 cos mul		% h1 = height above center point
17599
 
17600
    neg					% b2 0 -h1
17601
 
17602
    newpath moveto			% point 1;  b2
17603
 
17604
    dup 30 sin 30 cos div mul		% h2 = height below center point
17605
 
17606
    2 copy lineto			% point 2;  b2 h2
17607
 
17608
    exch neg exch lineto		%
17609
 
17610
    closepath
17611
 
17612
    DrawSymbolProc
17613
 
17614
  grestore
17615
 
17616
} def
17617
 
17618
 
17619
 
17620
% Arrow
17621
 
17622
/Ar {
17623
 
17624
  % Stack: x y symbolSize
17625
 
17626
  gsave
17627
 
17628
    3 -2 roll translate
17629
 
17630
    BaseRatio mul 0.5 mul		% Calculate 1/2 base
17631
 
17632
    dup 0 exch 30 cos mul		% h1 = height above center point
17633
 
17634
					% b2 0 h1
17635
 
17636
    newpath moveto			% point 1;  b2
17637
 
17638
    dup 30 sin 30 cos div mul		% h2 = height below center point
17639
 
17640
    neg					% -h2 b2
17641
 
17642
    2 copy lineto			% point 2;  b2 h2
17643
 
17644
    exch neg exch lineto		%
17645
 
17646
    closepath
17647
 
17648
    DrawSymbolProc
17649
 
17650
  grestore
17651
 
17652
} def
17653
 
17654
 
17655
 
17656
% Bitmap
17657
 
17658
/Bm {
17659
 
17660
  % Stack: x y symbolSize
17661
 
17662
  gsave
17663
 
17664
    3 1 roll translate pop DrawSymbolProc
17665
 
17666
  grestore
17667
 
17668
} def
17669
 
17670
 
17671
 
17672
%%EndProlog
17673
 
17674
 
17675
 
17676
%%BeginSetup
17677
 
17678
gsave					% Save the graphics state
17679
 
17680
 
17681
 
17682
% Default line/text style parameters
17683
 
17684
 
17685
 
17686
1 setlinewidth				% width
17687
 
17688
1 setlinejoin				% join
17689
 
17690
 
17691
 
17692
[] 0 setdash				% dashes
17693
 
17694
 
17695
 
17696
/CL 0 def				% Set color level mode
17697
 
17698
 
17699
 
17700
 
17701
 
17702
% Transform coordinate system to use X11 coordinates
17703
 
17704
 
17705
 
17706
% 1. Flip y-axis over by reversing the scale,
17707
 
17708
% 2. Translate the origin to the other side of the page,
17709
 
17710
%    making the origin the upper left corner
17711
 
17712
0.75 -0.748819 scale
17713
 
17714
 
17715
 
17716
 
17717
 
17718
% User defined page layout
17719
 
17720
 
17721
 
17722
% Set color level
17723
 
17724
/CL 2 def
17725
 
17726
 
17727
 
17728
% Set origin
17729
 
17730
128 328 translate
17731
 
17732
 
17733
 
17734
 
17735
 
17736
%%EndSetup
17737
 
17738
 
17739
 
17740
12 /Helvetica-Bold SetFont
17741
 
17742
45 28 503 347 Box
17743
 
17744
 
17745
 
17746
1 1 1 SetBgColor
17747
 
17748
Fill
17749
 
17750
gsave clip
17751
 
17752
 
17753
 
17754
 
17755
 
17756
 
17757
 
17758
0.639216 0.639216 0.639216 SetFgColor
17759
 
17760
1 setlinewidth
17761
 
17762
[  1] 0 setdash
17763
 
17764
/DashesProc {} def
17765
 
17766
47 313.8 moveto
17767
 
17768
 545 313.8 lineto
17769
 
17770
DashesProc stroke
17771
 
17772
47 364 moveto
17773
 
17774
 545 364 lineto
17775
 
17776
DashesProc stroke
17777
 
17778
47 213.399 moveto
17779
 
17780
 545 213.399 lineto
17781
 
17782
DashesProc stroke
17783
 
17784
47 263.6 moveto
17785
 
17786
 545 263.6 lineto
17787
 
17788
DashesProc stroke
17789
 
17790
47 112.999 moveto
17791
 
17792
 545 112.999 lineto
17793
 
17794
DashesProc stroke
17795
 
17796
47 163.199 moveto
17797
 
17798
 545 163.199 lineto
17799
 
17800
DashesProc stroke
17801
 
17802
47 62.7989 moveto
17803
 
17804
 545 62.7989 lineto
17805
 
17806
DashesProc stroke
17807
 
17808
 
17809
 
17810
% Element "hbx1"
17811
 
17812
 
17813
 
17814
0.501961 0.501961 0.501961 SetFgColor
17815
 
17816
55 161 2 203 Box fill
17817
 
17818
 
17819
 
17820
0.501961 0.501961 0.501961 SetFgColor
17821
 
17822
57 161 2 203 Box fill
17823
 
17824
 
17825
 
17826
0.501961 0.501961 0.501961 SetFgColor
17827
 
17828
59 160 2 204 Box fill
17829
 
17830
 
17831
 
17832
0.501961 0.501961 0.501961 SetFgColor
17833
 
17834
61 364 2 0 Box fill
17835
 
17836
 
17837
 
17838
0.501961 0.501961 0.501961 SetFgColor
17839
 
17840
63 168 2 196 Box fill
17841
 
17842
 
17843
 
17844
0.501961 0.501961 0.501961 SetFgColor
17845
 
17846
65 169 2 195 Box fill
17847
 
17848
 
17849
 
17850
0.501961 0.501961 0.501961 SetFgColor
17851
 
17852
68 197 2 167 Box fill
17853
 
17854
 
17855
 
17856
0.501961 0.501961 0.501961 SetFgColor
17857
 
17858
70 189 2 175 Box fill
17859
 
17860
 
17861
 
17862
0.501961 0.501961 0.501961 SetFgColor
17863
 
17864
72 160 2 204 Box fill
17865
 
17866
 
17867
 
17868
0.501961 0.501961 0.501961 SetFgColor
17869
 
17870
74 220 2 144 Box fill
17871
 
17872
 
17873
 
17874
0.501961 0.501961 0.501961 SetFgColor
17875
 
17876
76 158 2 206 Box fill
17877
 
17878
 
17879
 
17880
0.501961 0.501961 0.501961 SetFgColor
17881
 
17882
79 161 2 203 Box fill
17883
 
17884
 
17885
 
17886
0.501961 0.501961 0.501961 SetFgColor
17887
 
17888
81 275 2 89 Box fill
17889
 
17890
 
17891
 
17892
0.501961 0.501961 0.501961 SetFgColor
17893
 
17894
83 147 2 217 Box fill
17895
 
17896
 
17897
 
17898
0.501961 0.501961 0.501961 SetFgColor
17899
 
17900
85 364 2 0 Box fill
17901
 
17902
 
17903
 
17904
0.501961 0.501961 0.501961 SetFgColor
17905
 
17906
87 153 2 211 Box fill
17907
 
17908
 
17909
 
17910
0.501961 0.501961 0.501961 SetFgColor
17911
 
17912
90 192 2 172 Box fill
17913
 
17914
 
17915
 
17916
0.501961 0.501961 0.501961 SetFgColor
17917
 
17918
92 117 2 247 Box fill
17919
 
17920
 
17921
 
17922
0.501961 0.501961 0.501961 SetFgColor
17923
 
17924
94 168 2 196 Box fill
17925
 
17926
 
17927
 
17928
0.501961 0.501961 0.501961 SetFgColor
17929
 
17930
96 239 2 125 Box fill
17931
 
17932
 
17933
 
17934
0.501961 0.501961 0.501961 SetFgColor
17935
 
17936
98 182 2 182 Box fill
17937
 
17938
 
17939
 
17940
0.501961 0.501961 0.501961 SetFgColor
17941
 
17942
101 38 2 326 Box fill
17943
 
17944
 
17945
 
17946
0.501961 0.501961 0.501961 SetFgColor
17947
 
17948
103 161 2 203 Box fill
17949
 
17950
 
17951
 
17952
0.501961 0.501961 0.501961 SetFgColor
17953
 
17954
105 130 2 234 Box fill
17955
 
17956
 
17957
 
17958
0.501961 0.501961 0.501961 SetFgColor
17959
 
17960
107 228 2 136 Box fill
17961
 
17962
 
17963
 
17964
0.501961 0.501961 0.501961 SetFgColor
17965
 
17966
109 364 2 0 Box fill
17967
 
17968
 
17969
 
17970
0.501961 0.501961 0.501961 SetFgColor
17971
 
17972
111 172 2 192 Box fill
17973
 
17974
 
17975
 
17976
0.501961 0.501961 0.501961 SetFgColor
17977
 
17978
114 153 2 211 Box fill
17979
 
17980
 
17981
 
17982
0.501961 0.501961 0.501961 SetFgColor
17983
 
17984
116 146 2 218 Box fill
17985
 
17986
 
17987
 
17988
0.501961 0.501961 0.501961 SetFgColor
17989
 
17990
118 136 2 228 Box fill
17991
 
17992
 
17993
 
17994
0.501961 0.501961 0.501961 SetFgColor
17995
 
17996
120 212 2 152 Box fill
17997
 
17998
 
17999
 
18000
0.501961 0.501961 0.501961 SetFgColor
18001
 
18002
122 140 2 224 Box fill
18003
 
18004
 
18005
 
18006
0.501961 0.501961 0.501961 SetFgColor
18007
 
18008
125 141 2 223 Box fill
18009
 
18010
 
18011
 
18012
0.501961 0.501961 0.501961 SetFgColor
18013
 
18014
127 147 2 217 Box fill
18015
 
18016
 
18017
 
18018
0.501961 0.501961 0.501961 SetFgColor
18019
 
18020
129 209 2 155 Box fill
18021
 
18022
 
18023
 
18024
0.501961 0.501961 0.501961 SetFgColor
18025
 
18026
131 166 2 198 Box fill
18027
 
18028
 
18029
 
18030
0.501961 0.501961 0.501961 SetFgColor
18031
 
18032
133 364 2 0 Box fill
18033
 
18034
 
18035
 
18036
0.501961 0.501961 0.501961 SetFgColor
18037
 
18038
136 166 2 198 Box fill
18039
 
18040
 
18041
 
18042
0.501961 0.501961 0.501961 SetFgColor
18043
 
18044
138 183 2 181 Box fill
18045
 
18046
 
18047
 
18048
0.501961 0.501961 0.501961 SetFgColor
18049
 
18050
140 194 2 170 Box fill
18051
 
18052
 
18053
 
18054
0.501961 0.501961 0.501961 SetFgColor
18055
 
18056
142 168 2 196 Box fill
18057
 
18058
 
18059
 
18060
0.501961 0.501961 0.501961 SetFgColor
18061
 
18062
144 165 2 199 Box fill
18063
 
18064
 
18065
 
18066
0.501961 0.501961 0.501961 SetFgColor
18067
 
18068
147 174 2 190 Box fill
18069
 
18070
 
18071
 
18072
0.501961 0.501961 0.501961 SetFgColor
18073
 
18074
149 159 2 205 Box fill
18075
 
18076
 
18077
 
18078
0.501961 0.501961 0.501961 SetFgColor
18079
 
18080
151 197 2 167 Box fill
18081
 
18082
 
18083
 
18084
0.501961 0.501961 0.501961 SetFgColor
18085
 
18086
153 364 2 0 Box fill
18087
 
18088
 
18089
 
18090
0.501961 0.501961 0.501961 SetFgColor
18091
 
18092
155 158 2 206 Box fill
18093
 
18094
 
18095
 
18096
0.501961 0.501961 0.501961 SetFgColor
18097
 
18098
157 364 2 0 Box fill
18099
 
18100
 
18101
 
18102
0.501961 0.501961 0.501961 SetFgColor
18103
 
18104
160 364 2 0 Box fill
18105
 
18106
 
18107
 
18108
0.501961 0.501961 0.501961 SetFgColor
18109
 
18110
162 364 2 0 Box fill
18111
 
18112
 
18113
 
18114
0.501961 0.501961 0.501961 SetFgColor
18115
 
18116
164 364 2 0 Box fill
18117
 
18118
 
18119
 
18120
0.501961 0.501961 0.501961 SetFgColor
18121
 
18122
166 364 2 0 Box fill
18123
 
18124
 
18125
 
18126
0.501961 0.501961 0.501961 SetFgColor
18127
 
18128
168 172 2 192 Box fill
18129
 
18130
 
18131
 
18132
0.501961 0.501961 0.501961 SetFgColor
18133
 
18134
171 127 2 237 Box fill
18135
 
18136
 
18137
 
18138
0.501961 0.501961 0.501961 SetFgColor
18139
 
18140
173 179 2 185 Box fill
18141
 
18142
 
18143
 
18144
0.501961 0.501961 0.501961 SetFgColor
18145
 
18146
175 208 2 156 Box fill
18147
 
18148
 
18149
 
18150
0.501961 0.501961 0.501961 SetFgColor
18151
 
18152
177 178 2 186 Box fill
18153
 
18154
 
18155
 
18156
0.501961 0.501961 0.501961 SetFgColor
18157
 
18158
179 175 2 189 Box fill
18159
 
18160
 
18161
 
18162
0.501961 0.501961 0.501961 SetFgColor
18163
 
18164
182 232 2 132 Box fill
18165
 
18166
 
18167
 
18168
0.501961 0.501961 0.501961 SetFgColor
18169
 
18170
184 189 2 175 Box fill
18171
 
18172
 
18173
 
18174
0.501961 0.501961 0.501961 SetFgColor
18175
 
18176
186 193 2 171 Box fill
18177
 
18178
 
18179
 
18180
0.501961 0.501961 0.501961 SetFgColor
18181
 
18182
188 159 2 205 Box fill
18183
 
18184
 
18185
 
18186
0.501961 0.501961 0.501961 SetFgColor
18187
 
18188
190 364 2 0 Box fill
18189
 
18190
 
18191
 
18192
0.501961 0.501961 0.501961 SetFgColor
18193
 
18194
193 121 2 243 Box fill
18195
 
18196
 
18197
 
18198
0.501961 0.501961 0.501961 SetFgColor
18199
 
18200
195 228 2 136 Box fill
18201
 
18202
 
18203
 
18204
0.501961 0.501961 0.501961 SetFgColor
18205
 
18206
197 169 2 195 Box fill
18207
 
18208
 
18209
 
18210
0.501961 0.501961 0.501961 SetFgColor
18211
 
18212
199 160 2 204 Box fill
18213
 
18214
 
18215
 
18216
0.501961 0.501961 0.501961 SetFgColor
18217
 
18218
201 226 2 138 Box fill
18219
 
18220
 
18221
 
18222
0.501961 0.501961 0.501961 SetFgColor
18223
 
18224
203 245 2 119 Box fill
18225
 
18226
 
18227
 
18228
0.501961 0.501961 0.501961 SetFgColor
18229
 
18230
206 135 2 229 Box fill
18231
 
18232
 
18233
 
18234
0.501961 0.501961 0.501961 SetFgColor
18235
 
18236
208 184 2 180 Box fill
18237
 
18238
 
18239
 
18240
0.501961 0.501961 0.501961 SetFgColor
18241
 
18242
210 217 2 147 Box fill
18243
 
18244
 
18245
 
18246
0.501961 0.501961 0.501961 SetFgColor
18247
 
18248
212 152 2 212 Box fill
18249
 
18250
 
18251
 
18252
0.501961 0.501961 0.501961 SetFgColor
18253
 
18254
214 364 2 0 Box fill
18255
 
18256
 
18257
 
18258
0.501961 0.501961 0.501961 SetFgColor
18259
 
18260
217 209 2 155 Box fill
18261
 
18262
 
18263
 
18264
0.501961 0.501961 0.501961 SetFgColor
18265
 
18266
219 110 2 254 Box fill
18267
 
18268
 
18269
 
18270
0.501961 0.501961 0.501961 SetFgColor
18271
 
18272
221 178 2 186 Box fill
18273
 
18274
 
18275
 
18276
0.501961 0.501961 0.501961 SetFgColor
18277
 
18278
223 161 2 203 Box fill
18279
 
18280
 
18281
 
18282
0.501961 0.501961 0.501961 SetFgColor
18283
 
18284
225 170 2 194 Box fill
18285
 
18286
 
18287
 
18288
0.501961 0.501961 0.501961 SetFgColor
18289
 
18290
228 150 2 214 Box fill
18291
 
18292
 
18293
 
18294
0.501961 0.501961 0.501961 SetFgColor
18295
 
18296
230 217 2 147 Box fill
18297
 
18298
 
18299
 
18300
0.501961 0.501961 0.501961 SetFgColor
18301
 
18302
232 144 2 220 Box fill
18303
 
18304
 
18305
 
18306
0.501961 0.501961 0.501961 SetFgColor
18307
 
18308
234 214 2 150 Box fill
18309
 
18310
 
18311
 
18312
0.501961 0.501961 0.501961 SetFgColor
18313
 
18314
236 188 2 176 Box fill
18315
 
18316
 
18317
 
18318
0.501961 0.501961 0.501961 SetFgColor
18319
 
18320
239 364 2 0 Box fill
18321
 
18322
 
18323
 
18324
0.501961 0.501961 0.501961 SetFgColor
18325
 
18326
241 157 2 207 Box fill
18327
 
18328
 
18329
 
18330
0.501961 0.501961 0.501961 SetFgColor
18331
 
18332
243 223 2 141 Box fill
18333
 
18334
 
18335
 
18336
0.501961 0.501961 0.501961 SetFgColor
18337
 
18338
245 141 2 223 Box fill
18339
 
18340
 
18341
 
18342
0.501961 0.501961 0.501961 SetFgColor
18343
 
18344
247 194 2 170 Box fill
18345
 
18346
 
18347
 
18348
0.501961 0.501961 0.501961 SetFgColor
18349
 
18350
249 185 2 179 Box fill
18351
 
18352
 
18353
 
18354
0.501961 0.501961 0.501961 SetFgColor
18355
 
18356
252 150 2 214 Box fill
18357
 
18358
 
18359
 
18360
0.501961 0.501961 0.501961 SetFgColor
18361
 
18362
254 173 2 191 Box fill
18363
 
18364
 
18365
 
18366
0.501961 0.501961 0.501961 SetFgColor
18367
 
18368
256 172 2 192 Box fill
18369
 
18370
 
18371
 
18372
0.501961 0.501961 0.501961 SetFgColor
18373
 
18374
258 176 2 188 Box fill
18375
 
18376
 
18377
 
18378
0.501961 0.501961 0.501961 SetFgColor
18379
 
18380
260 189 2 175 Box fill
18381
 
18382
 
18383
 
18384
0.501961 0.501961 0.501961 SetFgColor
18385
 
18386
263 364 2 0 Box fill
18387
 
18388
 
18389
 
18390
0.501961 0.501961 0.501961 SetFgColor
18391
 
18392
265 171 2 193 Box fill
18393
 
18394
 
18395
 
18396
0.501961 0.501961 0.501961 SetFgColor
18397
 
18398
267 208 2 156 Box fill
18399
 
18400
 
18401
 
18402
0.501961 0.501961 0.501961 SetFgColor
18403
 
18404
269 145 2 219 Box fill
18405
 
18406
 
18407
 
18408
0.501961 0.501961 0.501961 SetFgColor
18409
 
18410
271 208 2 156 Box fill
18411
 
18412
 
18413
 
18414
0.501961 0.501961 0.501961 SetFgColor
18415
 
18416
274 242 2 122 Box fill
18417
 
18418
 
18419
 
18420
0.501961 0.501961 0.501961 SetFgColor
18421
 
18422
276 186 2 178 Box fill
18423
 
18424
 
18425
 
18426
0.501961 0.501961 0.501961 SetFgColor
18427
 
18428
278 178 2 186 Box fill
18429
 
18430
 
18431
 
18432
0.501961 0.501961 0.501961 SetFgColor
18433
 
18434
280 201 2 163 Box fill
18435
 
18436
 
18437
 
18438
0.501961 0.501961 0.501961 SetFgColor
18439
 
18440
282 191 2 173 Box fill
18441
 
18442
 
18443
 
18444
0.501961 0.501961 0.501961 SetFgColor
18445
 
18446
285 185 2 179 Box fill
18447
 
18448
 
18449
 
18450
0.501961 0.501961 0.501961 SetFgColor
18451
 
18452
287 364 2 0 Box fill
18453
 
18454
 
18455
 
18456
0.501961 0.501961 0.501961 SetFgColor
18457
 
18458
289 161 2 203 Box fill
18459
 
18460
 
18461
 
18462
0.501961 0.501961 0.501961 SetFgColor
18463
 
18464
291 164 2 200 Box fill
18465
 
18466
 
18467
 
18468
0.501961 0.501961 0.501961 SetFgColor
18469
 
18470
293 236 2 128 Box fill
18471
 
18472
 
18473
 
18474
0.501961 0.501961 0.501961 SetFgColor
18475
 
18476
296 202 2 162 Box fill
18477
 
18478
 
18479
 
18480
0.501961 0.501961 0.501961 SetFgColor
18481
 
18482
298 223 2 141 Box fill
18483
 
18484
 
18485
 
18486
0.501961 0.501961 0.501961 SetFgColor
18487
 
18488
300 164 2 200 Box fill
18489
 
18490
 
18491
 
18492
0.501961 0.501961 0.501961 SetFgColor
18493
 
18494
302 155 2 209 Box fill
18495
 
18496
 
18497
 
18498
0.501961 0.501961 0.501961 SetFgColor
18499
 
18500
304 192 2 172 Box fill
18501
 
18502
 
18503
 
18504
0.501961 0.501961 0.501961 SetFgColor
18505
 
18506
306 364 2 0 Box fill
18507
 
18508
 
18509
 
18510
0.501961 0.501961 0.501961 SetFgColor
18511
 
18512
309 364 2 0 Box fill
18513
 
18514
 
18515
 
18516
0.501961 0.501961 0.501961 SetFgColor
18517
 
18518
311 364 2 0 Box fill
18519
 
18520
 
18521
 
18522
0.501961 0.501961 0.501961 SetFgColor
18523
 
18524
313 364 2 0 Box fill
18525
 
18526
 
18527
 
18528
0.501961 0.501961 0.501961 SetFgColor
18529
 
18530
315 364 2 0 Box fill
18531
 
18532
 
18533
 
18534
0.501961 0.501961 0.501961 SetFgColor
18535
 
18536
317 364 2 0 Box fill
18537
 
18538
 
18539
 
18540
0.501961 0.501961 0.501961 SetFgColor
18541
 
18542
320 364 2 0 Box fill
18543
 
18544
 
18545
 
18546
0.501961 0.501961 0.501961 SetFgColor
18547
 
18548
322 152 2 212 Box fill
18549
 
18550
 
18551
 
18552
0.501961 0.501961 0.501961 SetFgColor
18553
 
18554
324 132 2 232 Box fill
18555
 
18556
 
18557
 
18558
0.501961 0.501961 0.501961 SetFgColor
18559
 
18560
326 197 2 167 Box fill
18561
 
18562
 
18563
 
18564
0.501961 0.501961 0.501961 SetFgColor
18565
 
18566
328 178 2 186 Box fill
18567
 
18568
 
18569
 
18570
0.501961 0.501961 0.501961 SetFgColor
18571
 
18572
331 224 2 140 Box fill
18573
 
18574
 
18575
 
18576
0.501961 0.501961 0.501961 SetFgColor
18577
 
18578
333 141 2 223 Box fill
18579
 
18580
 
18581
 
18582
0.501961 0.501961 0.501961 SetFgColor
18583
 
18584
335 234 2 130 Box fill
18585
 
18586
 
18587
 
18588
0.501961 0.501961 0.501961 SetFgColor
18589
 
18590
337 192 2 172 Box fill
18591
 
18592
 
18593
 
18594
0.501961 0.501961 0.501961 SetFgColor
18595
 
18596
339 180 2 184 Box fill
18597
 
18598
 
18599
 
18600
0.501961 0.501961 0.501961 SetFgColor
18601
 
18602
342 134 2 230 Box fill
18603
 
18604
 
18605
 
18606
0.501961 0.501961 0.501961 SetFgColor
18607
 
18608
344 364 2 0 Box fill
18609
 
18610
 
18611
 
18612
0.501961 0.501961 0.501961 SetFgColor
18613
 
18614
346 176 2 188 Box fill
18615
 
18616
 
18617
 
18618
0.501961 0.501961 0.501961 SetFgColor
18619
 
18620
348 190 2 174 Box fill
18621
 
18622
 
18623
 
18624
0.501961 0.501961 0.501961 SetFgColor
18625
 
18626
350 182 2 182 Box fill
18627
 
18628
 
18629
 
18630
0.501961 0.501961 0.501961 SetFgColor
18631
 
18632
352 127 2 237 Box fill
18633
 
18634
 
18635
 
18636
0.501961 0.501961 0.501961 SetFgColor
18637
 
18638
355 138 2 226 Box fill
18639
 
18640
 
18641
 
18642
0.501961 0.501961 0.501961 SetFgColor
18643
 
18644
357 134 2 230 Box fill
18645
 
18646
 
18647
 
18648
0.501961 0.501961 0.501961 SetFgColor
18649
 
18650
359 153 2 211 Box fill
18651
 
18652
 
18653
 
18654
0.501961 0.501961 0.501961 SetFgColor
18655
 
18656
361 167 2 197 Box fill
18657
 
18658
 
18659
 
18660
0.501961 0.501961 0.501961 SetFgColor
18661
 
18662
363 169 2 195 Box fill
18663
 
18664
 
18665
 
18666
0.501961 0.501961 0.501961 SetFgColor
18667
 
18668
366 217 2 147 Box fill
18669
 
18670
 
18671
 
18672
0.501961 0.501961 0.501961 SetFgColor
18673
 
18674
368 364 2 0 Box fill
18675
 
18676
 
18677
 
18678
0.501961 0.501961 0.501961 SetFgColor
18679
 
18680
370 159 2 205 Box fill
18681
 
18682
 
18683
 
18684
0.501961 0.501961 0.501961 SetFgColor
18685
 
18686
372 121 2 243 Box fill
18687
 
18688
 
18689
 
18690
0.501961 0.501961 0.501961 SetFgColor
18691
 
18692
374 190 2 174 Box fill
18693
 
18694
 
18695
 
18696
0.501961 0.501961 0.501961 SetFgColor
18697
 
18698
377 136 2 228 Box fill
18699
 
18700
 
18701
 
18702
0.501961 0.501961 0.501961 SetFgColor
18703
 
18704
379 188 2 176 Box fill
18705
 
18706
 
18707
 
18708
0.501961 0.501961 0.501961 SetFgColor
18709
 
18710
381 207 2 157 Box fill
18711
 
18712
 
18713
 
18714
0.501961 0.501961 0.501961 SetFgColor
18715
 
18716
383 137 2 227 Box fill
18717
 
18718
 
18719
 
18720
0.501961 0.501961 0.501961 SetFgColor
18721
 
18722
385 171 2 193 Box fill
18723
 
18724
 
18725
 
18726
0.501961 0.501961 0.501961 SetFgColor
18727
 
18728
388 240 2 124 Box fill
18729
 
18730
 
18731
 
18732
0.501961 0.501961 0.501961 SetFgColor
18733
 
18734
390 149 2 215 Box fill
18735
 
18736
 
18737
 
18738
0.501961 0.501961 0.501961 SetFgColor
18739
 
18740
392 364 2 0 Box fill
18741
 
18742
 
18743
 
18744
0.501961 0.501961 0.501961 SetFgColor
18745
 
18746
394 178 2 186 Box fill
18747
 
18748
 
18749
 
18750
0.501961 0.501961 0.501961 SetFgColor
18751
 
18752
396 161 2 203 Box fill
18753
 
18754
 
18755
 
18756
0.501961 0.501961 0.501961 SetFgColor
18757
 
18758
398 84 2 280 Box fill
18759
 
18760
 
18761
 
18762
0.501961 0.501961 0.501961 SetFgColor
18763
 
18764
401 149 2 215 Box fill
18765
 
18766
 
18767
 
18768
0.501961 0.501961 0.501961 SetFgColor
18769
 
18770
403 189 2 175 Box fill
18771
 
18772
 
18773
 
18774
0.501961 0.501961 0.501961 SetFgColor
18775
 
18776
405 151 2 213 Box fill
18777
 
18778
 
18779
 
18780
0.501961 0.501961 0.501961 SetFgColor
18781
 
18782
407 246 2 118 Box fill
18783
 
18784
 
18785
 
18786
0.501961 0.501961 0.501961 SetFgColor
18787
 
18788
409 206 2 158 Box fill
18789
 
18790
 
18791
 
18792
0.501961 0.501961 0.501961 SetFgColor
18793
 
18794
412 183 2 181 Box fill
18795
 
18796
 
18797
 
18798
0.501961 0.501961 0.501961 SetFgColor
18799
 
18800
414 222 2 142 Box fill
18801
 
18802
 
18803
 
18804
0.501961 0.501961 0.501961 SetFgColor
18805
 
18806
416 364 2 0 Box fill
18807
 
18808
 
18809
 
18810
0.501961 0.501961 0.501961 SetFgColor
18811
 
18812
418 200 2 164 Box fill
18813
 
18814
 
18815
 
18816
0.501961 0.501961 0.501961 SetFgColor
18817
 
18818
420 198 2 166 Box fill
18819
 
18820
 
18821
 
18822
0.501961 0.501961 0.501961 SetFgColor
18823
 
18824
423 203 2 161 Box fill
18825
 
18826
 
18827
 
18828
0.501961 0.501961 0.501961 SetFgColor
18829
 
18830
425 189 2 175 Box fill
18831
 
18832
 
18833
 
18834
0.501961 0.501961 0.501961 SetFgColor
18835
 
18836
427 190 2 174 Box fill
18837
 
18838
 
18839
 
18840
0.501961 0.501961 0.501961 SetFgColor
18841
 
18842
429 81 2 283 Box fill
18843
 
18844
 
18845
 
18846
0.501961 0.501961 0.501961 SetFgColor
18847
 
18848
431 131 2 233 Box fill
18849
 
18850
 
18851
 
18852
0.501961 0.501961 0.501961 SetFgColor
18853
 
18854
434 133 2 231 Box fill
18855
 
18856
 
18857
 
18858
0.501961 0.501961 0.501961 SetFgColor
18859
 
18860
436 180 2 184 Box fill
18861
 
18862
 
18863
 
18864
0.501961 0.501961 0.501961 SetFgColor
18865
 
18866
438 184 2 180 Box fill
18867
 
18868
 
18869
 
18870
0.501961 0.501961 0.501961 SetFgColor
18871
 
18872
440 364 2 0 Box fill
18873
 
18874
 
18875
 
18876
0.501961 0.501961 0.501961 SetFgColor
18877
 
18878
442 192 2 172 Box fill
18879
 
18880
 
18881
 
18882
0.501961 0.501961 0.501961 SetFgColor
18883
 
18884
444 162 2 202 Box fill
18885
 
18886
 
18887
 
18888
0.501961 0.501961 0.501961 SetFgColor
18889
 
18890
447 233 2 131 Box fill
18891
 
18892
 
18893
 
18894
0.501961 0.501961 0.501961 SetFgColor
18895
 
18896
449 161 2 203 Box fill
18897
 
18898
 
18899
 
18900
0.501961 0.501961 0.501961 SetFgColor
18901
 
18902
451 168 2 196 Box fill
18903
 
18904
 
18905
 
18906
0.501961 0.501961 0.501961 SetFgColor
18907
 
18908
453 154 2 210 Box fill
18909
 
18910
 
18911
 
18912
0.501961 0.501961 0.501961 SetFgColor
18913
 
18914
455 139 2 225 Box fill
18915
 
18916
 
18917
 
18918
0.501961 0.501961 0.501961 SetFgColor
18919
 
18920
458 138 2 226 Box fill
18921
 
18922
 
18923
 
18924
0.501961 0.501961 0.501961 SetFgColor
18925
 
18926
460 364 2 0 Box fill
18927
 
18928
 
18929
 
18930
0.501961 0.501961 0.501961 SetFgColor
18931
 
18932
462 364 2 0 Box fill
18933
 
18934
 
18935
 
18936
0.501961 0.501961 0.501961 SetFgColor
18937
 
18938
464 364 2 0 Box fill
18939
 
18940
 
18941
 
18942
0.501961 0.501961 0.501961 SetFgColor
18943
 
18944
466 364 2 0 Box fill
18945
 
18946
 
18947
 
18948
0.501961 0.501961 0.501961 SetFgColor
18949
 
18950
469 364 2 0 Box fill
18951
 
18952
 
18953
 
18954
0.501961 0.501961 0.501961 SetFgColor
18955
 
18956
471 364 2 0 Box fill
18957
 
18958
 
18959
 
18960
0.501961 0.501961 0.501961 SetFgColor
18961
 
18962
473 364 2 0 Box fill
18963
 
18964
 
18965
 
18966
0.501961 0.501961 0.501961 SetFgColor
18967
 
18968
475 364 2 0 Box fill
18969
 
18970
 
18971
 
18972
0.501961 0.501961 0.501961 SetFgColor
18973
 
18974
477 364 2 0 Box fill
18975
 
18976
 
18977
 
18978
0.501961 0.501961 0.501961 SetFgColor
18979
 
18980
480 364 2 0 Box fill
18981
 
18982
 
18983
 
18984
0.501961 0.501961 0.501961 SetFgColor
18985
 
18986
482 364 2 0 Box fill
18987
 
18988
 
18989
 
18990
0.501961 0.501961 0.501961 SetFgColor
18991
 
18992
484 364 2 0 Box fill
18993
 
18994
 
18995
 
18996
0.501961 0.501961 0.501961 SetFgColor
18997
 
18998
486 364 2 0 Box fill
18999
 
19000
 
19001
 
19002
0.501961 0.501961 0.501961 SetFgColor
19003
 
19004
488 364 2 0 Box fill
19005
 
19006
 
19007
 
19008
0.501961 0.501961 0.501961 SetFgColor
19009
 
19010
490 364 2 0 Box fill
19011
 
19012
 
19013
 
19014
0.501961 0.501961 0.501961 SetFgColor
19015
 
19016
493 364 2 0 Box fill
19017
 
19018
 
19019
 
19020
0.501961 0.501961 0.501961 SetFgColor
19021
 
19022
495 364 2 0 Box fill
19023
 
19024
 
19025
 
19026
0.501961 0.501961 0.501961 SetFgColor
19027
 
19028
497 204 2 160 Box fill
19029
 
19030
 
19031
 
19032
0.501961 0.501961 0.501961 SetFgColor
19033
 
19034
499 128 2 236 Box fill
19035
 
19036
 
19037
 
19038
0.501961 0.501961 0.501961 SetFgColor
19039
 
19040
501 176 2 188 Box fill
19041
 
19042
 
19043
 
19044
0.501961 0.501961 0.501961 SetFgColor
19045
 
19046
504 165 2 199 Box fill
19047
 
19048
 
19049
 
19050
0.501961 0.501961 0.501961 SetFgColor
19051
 
19052
506 141 2 223 Box fill
19053
 
19054
 
19055
 
19056
0.501961 0.501961 0.501961 SetFgColor
19057
 
19058
508 139 2 225 Box fill
19059
 
19060
 
19061
 
19062
0.501961 0.501961 0.501961 SetFgColor
19063
 
19064
510 179 2 185 Box fill
19065
 
19066
 
19067
 
19068
0.501961 0.501961 0.501961 SetFgColor
19069
 
19070
512 124 2 240 Box fill
19071
 
19072
 
19073
 
19074
0.501961 0.501961 0.501961 SetFgColor
19075
 
19076
515 71 2 293 Box fill
19077
 
19078
 
19079
 
19080
0.501961 0.501961 0.501961 SetFgColor
19081
 
19082
517 131 2 233 Box fill
19083
 
19084
 
19085
 
19086
0.501961 0.501961 0.501961 SetFgColor
19087
 
19088
519 364 2 0 Box fill
19089
 
19090
 
19091
 
19092
0.501961 0.501961 0.501961 SetFgColor
19093
 
19094
521 144 2 220 Box fill
19095
 
19096
 
19097
 
19098
0.501961 0.501961 0.501961 SetFgColor
19099
 
19100
523 183 2 181 Box fill
19101
 
19102
 
19103
 
19104
0.501961 0.501961 0.501961 SetFgColor
19105
 
19106
526 129 2 235 Box fill
19107
 
19108
 
19109
 
19110
0.501961 0.501961 0.501961 SetFgColor
19111
 
19112
528 138 2 226 Box fill
19113
 
19114
 
19115
 
19116
0.501961 0.501961 0.501961 SetFgColor
19117
 
19118
530 196 2 168 Box fill
19119
 
19120
 
19121
 
19122
0.501961 0.501961 0.501961 SetFgColor
19123
 
19124
532 194 2 170 Box fill
19125
 
19126
 
19127
 
19128
0.501961 0.501961 0.501961 SetFgColor
19129
 
19130
534 132 2 232 Box fill
19131
 
19132
 
19133
 
19134
 
19135
 
19136
% Unset clipping
19137
 
19138
grestore
19139
 
19140
 
19141
 
19142
0.85098 0.85098 0.85098 SetBgColor
19143
 
19144
 
19145
 
19146
 
19147
 
19148
 
19149
 
19150
 
19151
 
19152
545 30 15 342 Box fill
19153
 
19154
 
19155
 
19156
 
19157
 
19158
 
19159
 
19160
1 1 1 SetBgColor
19161
 
19162
45 372 502 2 Box fill
19163
 
19164
 
19165
 
19166
545 28 2 346 Box fill
19167
 
19168
 
19169
 
19170
0.509804 0.509804 0.509804 SetBgColor
19171
 
19172
newpath 45 374 moveto
19173
 
19174
45 28 lineto
19175
 
19176
547 28 lineto
19177
 
19178
545 30 lineto
19179
 
19180
47 30 lineto
19181
 
19182
47 372 lineto
19183
 
19184
45 374 lineto
19185
 
19186
45 374  lineto closepath Fill
19187
 
19188
154 12 0 296 14 BeginText
19189
 
19190
12 /Helvetica-Bold SetFont
19191
 
19192
 
19193
 
19194
(Average hits per bunch) 154 0 11 DrawAdjText
19195
 
19196
EndText
19197
 
19198
10 9 0 55 391.5 BeginText
19199
 
19200
12 /Helvetica-Bold SetFont
19201
 
19202
 
19203
 
19204
(0) 6 2 8 DrawAdjText
19205
 
19206
EndText
19207
 
19208
16 9 0 98.8182 391.5 BeginText
19209
 
19210
12 /Helvetica-Bold SetFont
19211
 
19212
 
19213
 
19214
(20) 12 2 8 DrawAdjText
19215
 
19216
EndText
19217
 
19218
16 9 0 142.636 391.5 BeginText
19219
 
19220
12 /Helvetica-Bold SetFont
19221
 
19222
 
19223
 
19224
(40) 12 2 8 DrawAdjText
19225
 
19226
EndText
19227
 
19228
16 9 0 186.455 391.5 BeginText
19229
 
19230
12 /Helvetica-Bold SetFont
19231
 
19232
 
19233
 
19234
(60) 12 2 8 DrawAdjText
19235
 
19236
EndText
19237
 
19238
16 9 0 230.273 391.5 BeginText
19239
 
19240
12 /Helvetica-Bold SetFont
19241
 
19242
 
19243
 
19244
(80) 12 2 8 DrawAdjText
19245
 
19246
EndText
19247
 
19248
22 9 0 274.091 391.5 BeginText
19249
 
19250
12 /Helvetica-Bold SetFont
19251
 
19252
 
19253
 
19254
(100) 18 2 8 DrawAdjText
19255
 
19256
EndText
19257
 
19258
22 9 0 317.909 391.5 BeginText
19259
 
19260
12 /Helvetica-Bold SetFont
19261
 
19262
 
19263
 
19264
(120) 18 2 8 DrawAdjText
19265
 
19266
EndText
19267
 
19268
22 9 0 361.727 391.5 BeginText
19269
 
19270
12 /Helvetica-Bold SetFont
19271
 
19272
 
19273
 
19274
(140) 18 2 8 DrawAdjText
19275
 
19276
EndText
19277
 
19278
22 9 0 405.545 391.5 BeginText
19279
 
19280
12 /Helvetica-Bold SetFont
19281
 
19282
 
19283
 
19284
(160) 18 2 8 DrawAdjText
19285
 
19286
EndText
19287
 
19288
22 9 0 449.364 391.5 BeginText
19289
 
19290
12 /Helvetica-Bold SetFont
19291
 
19292
 
19293
 
19294
(180) 18 2 8 DrawAdjText
19295
 
19296
EndText
19297
 
19298
22 9 0 493.182 391.5 BeginText
19299
 
19300
12 /Helvetica-Bold SetFont
19301
 
19302
 
19303
 
19304
(200) 18 2 8 DrawAdjText
19305
 
19306
EndText
19307
 
19308
22 9 0 537 391.5 BeginText
19309
 
19310
12 /Helvetica-Bold SetFont
19311
 
19312
 
19313
 
19314
(220) 18 2 8 DrawAdjText
19315
 
19316
EndText
19317
 
19318
 
19319
 
19320
 
19321
 
19322
 
19323
 
19324
1 setlinewidth
19325
 
19326
[ ] 0 setdash
19327
 
19328
/DashesProc {} def
19329
 
19330
55 377 moveto
19331
 
19332
 537 377 lineto
19333
 
19334
DashesProc stroke
19335
 
19336
76.9091 377 moveto
19337
 
19338
 76.9091 382 lineto
19339
 
19340
DashesProc stroke
19341
 
19342
55 377 moveto
19343
 
19344
 55 385 lineto
19345
 
19346
DashesProc stroke
19347
 
19348
120.727 377 moveto
19349
 
19350
 120.727 382 lineto
19351
 
19352
DashesProc stroke
19353
 
19354
98.8182 377 moveto
19355
 
19356
 98.8182 385 lineto
19357
 
19358
DashesProc stroke
19359
 
19360
164.545 377 moveto
19361
 
19362
 164.545 382 lineto
19363
 
19364
DashesProc stroke
19365
 
19366
142.636 377 moveto
19367
 
19368
 142.636 385 lineto
19369
 
19370
DashesProc stroke
19371
 
19372
208.364 377 moveto
19373
 
19374
 208.364 382 lineto
19375
 
19376
DashesProc stroke
19377
 
19378
186.455 377 moveto
19379
 
19380
 186.455 385 lineto
19381
 
19382
DashesProc stroke
19383
 
19384
252.182 377 moveto
19385
 
19386
 252.182 382 lineto
19387
 
19388
DashesProc stroke
19389
 
19390
230.273 377 moveto
19391
 
19392
 230.273 385 lineto
19393
 
19394
DashesProc stroke
19395
 
19396
296 377 moveto
19397
 
19398
 296 382 lineto
19399
 
19400
DashesProc stroke
19401
 
19402
274.091 377 moveto
19403
 
19404
 274.091 385 lineto
19405
 
19406
DashesProc stroke
19407
 
19408
339.818 377 moveto
19409
 
19410
 339.818 382 lineto
19411
 
19412
DashesProc stroke
19413
 
19414
317.909 377 moveto
19415
 
19416
 317.909 385 lineto
19417
 
19418
DashesProc stroke
19419
 
19420
383.636 377 moveto
19421
 
19422
 383.636 382 lineto
19423
 
19424
DashesProc stroke
19425
 
19426
361.727 377 moveto
19427
 
19428
 361.727 385 lineto
19429
 
19430
DashesProc stroke
19431
 
19432
427.455 377 moveto
19433
 
19434
 427.455 382 lineto
19435
 
19436
DashesProc stroke
19437
 
19438
405.545 377 moveto
19439
 
19440
 405.545 385 lineto
19441
 
19442
DashesProc stroke
19443
 
19444
471.273 377 moveto
19445
 
19446
 471.273 382 lineto
19447
 
19448
DashesProc stroke
19449
 
19450
449.364 377 moveto
19451
 
19452
 449.364 385 lineto
19453
 
19454
DashesProc stroke
19455
 
19456
515.091 377 moveto
19457
 
19458
 515.091 382 lineto
19459
 
19460
DashesProc stroke
19461
 
19462
493.182 377 moveto
19463
 
19464
 493.182 385 lineto
19465
 
19466
DashesProc stroke
19467
 
19468
537 377 moveto
19469
 
19470
 537 385 lineto
19471
 
19472
DashesProc stroke
19473
 
19474
10 9 0 27 364 BeginText
19475
 
19476
12 /Helvetica-Bold SetFont
19477
 
19478
 
19479
 
19480
(0) 6 2 8 DrawAdjText
19481
 
19482
EndText
19483
 
19484
22 9 0 21 263.6 BeginText
19485
 
19486
12 /Helvetica-Bold SetFont
19487
 
19488
 
19489
 
19490
(500) 18 2 8 DrawAdjText
19491
 
19492
EndText
19493
 
19494
28 9 0 18 163.199 BeginText
19495
 
19496
12 /Helvetica-Bold SetFont
19497
 
19498
 
19499
 
19500
(1000) 24 2 8 DrawAdjText
19501
 
19502
EndText
19503
 
19504
28 9 0 18 62.7989 BeginText
19505
 
19506
12 /Helvetica-Bold SetFont
19507
 
19508
 
19509
 
19510
(1500) 24 2 8 DrawAdjText
19511
 
19512
EndText
19513
 
19514
 
19515
 
19516
 
19517
 
19518
 
19519
 
19520
1 setlinewidth
19521
 
19522
[ ] 0 setdash
19523
 
19524
/DashesProc {} def
19525
 
19526
42 364 moveto
19527
 
19528
 42 38 lineto
19529
 
19530
DashesProc stroke
19531
 
19532
42 313.8 moveto
19533
 
19534
 37 313.8 lineto
19535
 
19536
DashesProc stroke
19537
 
19538
42 364 moveto
19539
 
19540
 34 364 lineto
19541
 
19542
DashesProc stroke
19543
 
19544
42 213.399 moveto
19545
 
19546
 37 213.399 lineto
19547
 
19548
DashesProc stroke
19549
 
19550
42 263.6 moveto
19551
 
19552
 34 263.6 lineto
19553
 
19554
DashesProc stroke
19555
 
19556
42 112.999 moveto
19557
 
19558
 37 112.999 lineto
19559
 
19560
DashesProc stroke
19561
 
19562
42 163.199 moveto
19563
 
19564
 34 163.199 lineto
19565
 
19566
DashesProc stroke
19567
 
19568
42 62.7989 moveto
19569
 
19570
 34 62.7989 lineto
19571
 
19572
DashesProc stroke
19573
 
19574
showpage
19575
 
19576
%Trailer
19577
 
19578
grestore
19579
 
19580
end
19581
 
19582
%EOF
19583
 
19584
EndEPSF
19585
grestore
19586
gsave
19587
 
19588
% including file "/usr//lib/blt2.4/bltCanvEps.pro"
19589
 
19590
%
19591
% PostScript encapulator prolog file of the BLT "eps" canvas item.
19592
%
19593
% Copyright 1991-1997 Bell Labs Innovations for Lucent Technologies.
19594
%
19595
% Permission to use, copy, modify, and distribute this software and its
19596
% documentation for any purpose and without fee is hereby granted, provided
19597
% that the above copyright notice appear in all copies and that both that the
19598
% copyright notice and warranty disclaimer appear in supporting documentation,
19599
% and that the names of Lucent Technologies any of their entities not be used
19600
% in advertising or publicity pertaining to distribution of the software
19601
% without specific, written prior permission.
19602
%
19603
% Lucent Technologies disclaims all warranties with regard to this software,
19604
% including all implied warranties of merchantability and fitness.  In no event
19605
% shall Lucent Technologies be liable for any special, indirect or
19606
% consequential damages or any damages whatsoever resulting from loss of use,
19607
% data or profits, whether in an action of contract, negligence or other
19608
% tortuous action, arising out of or in connection with the use or performance
19609
% of this software.
19610
%
19611
 
19612
%
19613
% The definitions of the next two macros are from Appendix H of
19614
% Adobe's "PostScript Language Reference Manual" pp. 709-736.
19615
%
19616
 
19617
% Prepare for EPS file
19618
 
19619
/BeginEPSF {
19620
  /beforeInclusionState save def
19621
  /dictCount countdictstack def		% Save the # objects in the dictionary
19622
  /opCount count 1 sub def		% Count object on operator stack
19623
  userdict begin			% Make "userdict" the current
19624
					% dictionary
19625
    /showpage {} def			% Redefine showpage to be null
19626
 
19627
 
19628
    1 setlinewidth
19629
 
19630
    10 setmiterlimit
19631
    [] 0 setdash
19632
    newpath
19633
    /languagellevel where {
19634
      pop languagelevel
19635
      1 ne {
19636
	false setstrokeadjust false setoverprint
19637
      } if
19638
    } if
19639
    % note: no "end"
19640
} bind def
19641
 
19642
/EndEPSF { %def
19643
  count opCount sub {
19644
    pop
19645
  } repeat
19646
  countdictstack dictCount sub {
19647
  end					% Clean up dictionary stack
19648
  } repeat
19649
  beforeInclusionState restore
19650
} bind def
19651
 
19652
 
19653
%
19654
% Set up a clip region based upon a bounding box (x1, y1, x2, y2).
19655
%
19656
/SetClipRegion {
19657
  % Stack: x1 y1 x2 y2
19658
  newpath
19659
  4 2 roll moveto
19660
  1 index 0 rlineto
19661
 
19662
  neg 0 rlineto
19663
  closepath
19664
  clip
19665
  newpath
19666
} def
19667
 
19668
BeginEPSF
19669
564 96 translate
19670
1 1 scale
19671
-96 -246 translate
19672
96 246 516 546 SetClipRegion
19673
%% including "g4.eps"
19674
 
19675
 
19676
 
19677
%%BeginProlog
19678
 
19679
%
19680
 
19681
% PostScript prolog file of the BLT graph widget.
19682
 
19683
%
19684
 
19685
% Copyright 1989-1992 Regents of the University of California.
19686
 
19687
% Permission to use, copy, modify, and distribute this
19688
 
19689
% software and its documentation for any purpose and without
19690
 
19691
% fee is hereby granted, provided that the above copyright
19692
 
19693
% notice appear in all copies.  The University of California
19694
 
19695
% makes no representations about the suitability of this
19696
 
19697
% software for any purpose.  It is provided "as is" without
19698
 
19699
% express or implied warranty.
19700
 
19701
%
19702
 
19703
% Copyright 1991-1997 Bell Labs Innovations for Lucent Technologies.
19704
 
19705
%
19706
 
19707
% Permission to use, copy, modify, and distribute this software and its
19708
 
19709
% documentation for any purpose and without fee is hereby granted, provided
19710
 
19711
% that the above copyright notice appear in all copies and that both that the
19712
 
19713
% copyright notice and warranty disclaimer appear in supporting documentation,
19714
 
19715
% and that the names of Lucent Technologies any of their entities not be used
19716
 
19717
% in advertising or publicity pertaining to distribution of the software
19718
 
19719
% without specific, written prior permission.
19720
 
19721
%
19722
 
19723
% Lucent Technologies disclaims all warranties with regard to this software,
19724
 
19725
% including all implied warranties of merchantability and fitness.  In no event
19726
 
19727
% shall Lucent Technologies be liable for any special, indirect or
19728
 
19729
% consequential damages or any damages whatsoever resulting from loss of use,
19730
 
19731
% data or profits, whether in an action of contract, negligence or other
19732
 
19733
% tortuous action, arising out of or in connection with the use or performance
19734
 
19735
% of this software.
19736
 
19737
%
19738
 
19739
 
19740
 
19741
200 dict begin
19742
 
19743
 
19744
 
19745
/BaseRatio 1.3467736870885982 def	% Ratio triangle base / symbol size
19746
 
19747
/BgColorProc 0 def			% Background color routine (symbols)
19748
 
19749
/DrawSymbolProc 0 def			% Routine to draw symbol outline/fill
19750
 
19751
/StippleProc 0 def			% Stipple routine (bar segments)
19752
 
19753
/DashesProc 0 def			% Dashes routine (line segments)
19754
 
19755
 
19756
 
19757
% Define the array ISOLatin1Encoding (which specifies how characters are
19758
 
19759
% encoded for ISO-8859-1 fonts), if it isn't already present (Postscript
19760
 
19761
% level 2 is supposed to define it, but level 1 doesn't).
19762
 
19763
 
19764
 
19765
systemdict /ISOLatin1Encoding known not {
19766
 
19767
  /ISOLatin1Encoding [
19768
 
19769
    /space /space /space /space /space /space /space /space
19770
 
19771
    /space /space /space /space /space /space /space /space
19772
 
19773
    /space /space /space /space /space /space /space /space
19774
 
19775
    /space /space /space /space /space /space /space /space
19776
 
19777
    /space /exclam /quotedbl /numbersign /dollar /percent /ampersand
19778
 
19779
    /quoteright
19780
 
19781
    /parenleft /parenright /asterisk /plus /comma /minus /period /slash
19782
 
19783
    /zero /one /two /three /four /five /six /seven
19784
 
19785
    /eight /nine /colon /semicolon /less /equal /greater /question
19786
 
19787
    /at /A /B /C /D /E /F /G
19788
 
19789
    /H /I /J /K /L /M /N /O
19790
 
19791
    /P /Q /R /S /T /U /V /W
19792
 
19793
    /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore
19794
 
19795
    /quoteleft /a /b /c /d /e /f /g
19796
 
19797
    /h /i /j /k /l /m /n /o
19798
 
19799
    /p /q /r /s /t /u /v /w
19800
 
19801
    /x /y /z /braceleft /bar /braceright /asciitilde /space
19802
 
19803
    /space /space /space /space /space /space /space /space
19804
 
19805
    /space /space /space /space /space /space /space /space
19806
 
19807
    /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
19808
 
19809
    /dieresis /space /ring /cedilla /space /hungarumlaut /ogonek /caron
19810
 
19811
    /space /exclamdown /cent /sterling /currency /yen /brokenbar /section
19812
 
19813
    /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen
19814
 
19815
    /registered /macron
19816
 
19817
    /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph
19818
 
19819
    /periodcentered
19820
 
19821
    /cedillar /onesuperior /ordmasculine /guillemotright /onequarter
19822
 
19823
    /onehalf /threequarters /questiondown
19824
 
19825
    /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla
19826
 
19827
    /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex
19828
 
19829
    /Idieresis
19830
 
19831
    /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply
19832
 
19833
    /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn
19834
 
19835
    /germandbls
19836
 
19837
    /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla
19838
 
19839
    /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex
19840
 
19841
    /idieresis
19842
 
19843
    /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide
19844
 
19845
    /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn
19846
 
19847
    /ydieresis
19848
 
19849
  ] def
19850
 
19851
} if
19852
 
19853
 
19854
 
19855
% font ISOEncode font
19856
 
19857
% This procedure changes the encoding of a font from the default
19858
 
19859
% Postscript encoding to ISOLatin1.  It is typically invoked just
19860
 
19861
% before invoking "setfont".  The body of this procedure comes from
19862
 
19863
% Section 5.6.1 of the Postscript book.
19864
 
19865
 
19866
 
19867
/ISOEncode {
19868
 
19869
  dup length dict
19870
 
19871
  begin
19872
 
19873
    {1 index /FID ne {def} {pop pop} ifelse} forall
19874
 
19875
    /Encoding ISOLatin1Encoding def
19876
 
19877
    currentdict
19878
 
19879
  end
19880
 
19881
 
19882
 
19883
  % I'm not sure why it's necessary to use "definefont" on this new
19884
 
19885
  % font, but it seems to be important; just use the name "Temporary"
19886
 
19887
  % for the font.
19888
 
19889
 
19890
 
19891
  /Temporary exch definefont
19892
 
19893
} bind def
19894
 
19895
 
19896
 
19897
/Stroke {
19898
 
19899
  gsave
19900
 
19901
    stroke
19902
 
19903
  grestore
19904
 
19905
} def
19906
 
19907
 
19908
 
19909
/Fill {
19910
 
19911
  gsave
19912
 
19913
    fill
19914
 
19915
  grestore
19916
 
19917
} def
19918
 
19919
 
19920
 
19921
/SetFont {
19922
 
19923
  % Stack: pointSize fontName
19924
 
19925
  findfont exch scalefont ISOEncode setfont
19926
 
19927
} def
19928
 
19929
 
19930
 
19931
/Box {
19932
 
19933
  % Stack: x y width height
19934
 
19935
  newpath
19936
 
19937
  exch 4 2 roll moveto
19938
 
19939
  dup 0 rlineto
19940
 
19941
  exch 0 exch rlineto
19942
 
19943
  neg 0 rlineto
19944
 
19945
  closepath
19946
 
19947
} def
19948
 
19949
 
19950
 
19951
/SetFgColor {
19952
 
19953
  % Stack: red green blue
19954
 
19955
  CL 0 eq {
19956
 
19957
    pop pop pop 0 0 0
19958
 
19959
  } if
19960
 
19961
  setrgbcolor
19962
 
19963
  CL 1 eq {
19964
 
19965
    currentgray setgray
19966
 
19967
  } if
19968
 
19969
} def
19970
 
19971
 
19972
 
19973
/SetBgColor {
19974
 
19975
  % Stack: red green blue
19976
 
19977
  CL 0 eq {
19978
 
19979
    pop pop pop 1 1 1
19980
 
19981
  } if
19982
 
19983
  setrgbcolor
19984
 
19985
  CL 1 eq {
19986
 
19987
    currentgray setgray
19988
 
19989
  } if
19990
 
19991
} def
19992
 
19993
 
19994
 
19995
% The next two definitions are taken from "$tk_library/prolog.ps"
19996
 
19997
 
19998
 
19999
% desiredSize EvenPixels closestSize
20000
 
20001
%
20002
 
20003
% The procedure below is used for stippling.  Given the optimal size
20004
 
20005
% of a dot in a stipple pattern in the current user coordinate system,
20006
 
20007
% compute the closest size that is an exact multiple of the device's
20008
 
20009
% pixel size.  This allows stipple patterns to be displayed without
20010
 
20011
% aliasing effects.
20012
 
20013
 
20014
 
20015
/EvenPixels {
20016
 
20017
  % Compute exact number of device pixels per stipple dot.
20018
 
20019
  dup 0 matrix currentmatrix dtransform
20020
 
20021
  dup mul exch dup mul add sqrt
20022
 
20023
 
20024
 
20025
  % Round to an integer, make sure the number is at least 1, and compute
20026
 
20027
  % user coord distance corresponding to this.
20028
 
20029
  dup round dup 1 lt {pop 1} if
20030
 
20031
  exch div mul
20032
 
20033
} bind def
20034
 
20035
 
20036
 
20037
% width height string filled StippleFill --
20038
 
20039
%
20040
 
20041
% Given a path and other graphics information already set up, this
20042
 
20043
% procedure will fill the current path in a stippled fashion.  "String"
20044
 
20045
% contains a proper image description of the stipple pattern and
20046
 
20047
% "width" and "height" give its dimensions.  If "filled" is true then
20048
 
20049
% it means that the area to be stippled is gotten by filling the
20050
 
20051
% current path (e.g. the interior of a polygon); if it's false, the
20052
 
20053
% area is gotten by stroking the current path (e.g. a wide line).
20054
 
20055
% Each stipple dot is assumed to be about one unit across in the
20056
 
20057
% current user coordinate system.
20058
 
20059
 
20060
 
20061
% width height string StippleFill --
20062
 
20063
%
20064
 
20065
% Given a path already set up and a clipping region generated from
20066
 
20067
% it, this procedure will fill the clipping region with a stipple
20068
 
20069
% pattern.  "String" contains a proper image description of the
20070
 
20071
% stipple pattern and "width" and "height" give its dimensions.  Each
20072
 
20073
% stipple dot is assumed to be about one unit across in the current
20074
 
20075
% user coordinate system.  This procedure trashes the graphics state.
20076
 
20077
 
20078
 
20079
/StippleFill {
20080
 
20081
    % The following code is needed to work around a NeWSprint bug.
20082
 
20083
 
20084
 
20085
    /tmpstip 1 index def
20086
 
20087
 
20088
 
20089
    % Change the scaling so that one user unit in user coordinates
20090
 
20091
    % corresponds to the size of one stipple dot.
20092
 
20093
    1 EvenPixels dup scale
20094
 
20095
 
20096
 
20097
    % Compute the bounding box occupied by the path (which is now
20098
 
20099
    % the clipping region), and round the lower coordinates down
20100
 
20101
    % to the nearest starting point for the stipple pattern.  Be
20102
 
20103
    % careful about negative numbers, since the rounding works
20104
 
20105
    % differently on them.
20106
 
20107
 
20108
 
20109
    pathbbox
20110
 
20111
    4 2 roll
20112
 
20113
    5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
20114
 
20115
    6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
20116
 
20117
 
20118
 
20119
    % Stack now: width height string y1 y2 x1 x2
20120
 
20121
    % Below is a doubly-nested for loop to iterate across this area
20122
 
20123
    % in units of the stipple pattern size, going up columns then
20124
 
20125
    % across rows, blasting out a stipple-pattern-sized rectangle at
20126
 
20127
    % each position
20128
 
20129
 
20130
 
20131
    6 index exch {
20132
 
20133
	2 index 5 index 3 index {
20134
 
20135
	    % Stack now: width height string y1 y2 x y
20136
 
20137
 
20138
 
20139
	    gsave
20140
 
20141
	    1 index exch translate
20142
 
20143
	    5 index 5 index true matrix tmpstip imagemask
20144
 
20145
	    grestore
20146
 
20147
	} for
20148
 
20149
	pop
20150
 
20151
    } for
20152
 
20153
    pop pop pop pop pop
20154
 
20155
} bind def
20156
 
20157
 
20158
 
20159
 
20160
 
20161
/LS {	% Stack: x1 y1 x2 y2
20162
 
20163
  newpath 4 2 roll moveto lineto stroke
20164
 
20165
} def
20166
 
20167
 
20168
 
20169
/EndText {
20170
 
20171
  %Stack :
20172
 
20173
  grestore
20174
 
20175
} def
20176
 
20177
 
20178
 
20179
/BeginText {
20180
 
20181
  %Stack :  w h theta centerX centerY
20182
 
20183
  gsave
20184
 
20185
    % Translate the origin to the center of bounding box and rotate
20186
 
20187
    translate neg rotate
20188
 
20189
    % Translate back to the origin of the text region
20190
 
20191
    -0.5 mul exch -0.5 mul exch translate
20192
 
20193
} def
20194
 
20195
 
20196
 
20197
/DrawAdjText {
20198
 
20199
  %Stack : str strWidth x y
20200
 
20201
  moveto				% Go to the text position
20202
 
20203
  exch dup dup 4 2 roll
20204
 
20205
 
20206
 
20207
  % Adjust character widths to get desired overall string width
20208
 
20209
  % adjust X = (desired width - real width)/#chars
20210
 
20211
 
20212
 
20213
  stringwidth pop sub exch
20214
 
20215
  length div
20216
 
20217
 
20218
 
20219
 
20220
 
20221
  % Flip back the scale so that the string is not drawn in reverse
20222
 
20223
 
20224
 
20225
  gsave
20226
 
20227
    1 -1 scale
20228
 
20229
    ashow
20230
 
20231
  grestore
20232
 
20233
} def
20234
 
20235
 
20236
 
20237
/DrawBitmap {
20238
 
20239
  % Stack: ?bgColorProc? boolean centerX centerY width height theta imageStr
20240
 
20241
  gsave
20242
 
20243
    6 -2 roll translate			% Translate to center of bounding box
20244
 
20245
    4 1 roll neg rotate			% Rotate by theta
20246
 
20247
 
20248
 
20249
    % Find upperleft corner of bounding box
20250
 
20251
 
20252
 
20253
    2 copy -.5 mul exch -.5 mul exch translate
20254
 
20255
    2 copy scale			% Make pixel unit scale
20256
 
20257
    newpath
20258
 
20259
 
20260
 
20261
    closepath
20262
 
20263
 
20264
 
20265
    % Fill rectangle with background color
20266
 
20267
 
20268
 
20269
    4 -1 roll {
20270
 
20271
      gsave
20272
 
20273
	4 -1 roll exec fill
20274
 
20275
      grestore
20276
 
20277
    } if
20278
 
20279
 
20280
 
20281
    % Paint the image string into the unit rectangle
20282
 
20283
 
20284
 
20285
    2 copy true 3 -1 roll 0 0 5 -1 roll 0 0 6 array astore 5 -1 roll
20286
 
20287
    imagemask
20288
 
20289
  grestore
20290
 
20291
} def
20292
 
20293
 
20294
 
20295
% Symbols:
20296
 
20297
 
20298
 
20299
% Skinny-cross
20300
 
20301
/Sc {
20302
 
20303
  % Stack: x y symbolSize
20304
 
20305
  gsave
20306
 
20307
    3 -2 roll translate 45 rotate
20308
 
20309
 
20310
 
20311
  grestore
20312
 
20313
} def
20314
 
20315
 
20316
 
20317
% Skinny-plus
20318
 
20319
/Sp {
20320
 
20321
  % Stack: x y symbolSize
20322
 
20323
  gsave
20324
 
20325
    3 -2 roll translate
20326
 
20327
    2 idiv
20328
 
20329
    dup 2 copy
20330
 
20331
    newpath neg 0 moveto 0 lineto
20332
 
20333
    DrawSymbolProc
20334
 
20335
    newpath neg 0 exch moveto 0 exch lineto
20336
 
20337
    DrawSymbolProc
20338
 
20339
  grestore
20340
 
20341
} def
20342
 
20343
 
20344
 
20345
% Cross
20346
 
20347
/Cr {
20348
 
20349
  % Stack: x y symbolSize
20350
 
20351
  gsave
20352
 
20353
    3 -2 roll translate 45 rotate
20354
 
20355
 
20356
 
20357
  grestore
20358
 
20359
} def
20360
 
20361
 
20362
 
20363
% Plus
20364
 
20365
/Pl {
20366
 
20367
  % Stack: x y symbolSize
20368
 
20369
  gsave
20370
 
20371
    3 -2 roll translate
20372
 
20373
    dup 2 idiv
20374
 
20375
    exch 6 idiv
20376
 
20377
 
20378
 
20379
    %
20380
 
20381
    %          2   3		The plus/cross symbol is a
20382
 
20383
    %				closed polygon of 12 points.
20384
 
20385
    %      0   1   4    5	The diagram to the left
20386
 
20387
    %           x,y		represents the positions of
20388
 
20389
    %     11  10   7    6	the points which are computed
20390
 
20391
    %				below.
20392
 
20393
    %          9   8
20394
 
20395
    %
20396
 
20397
 
20398
 
20399
    newpath
20400
 
20401
    2 copy exch neg exch neg moveto dup neg dup lineto
20402
 
20403
    2 copy neg exch neg lineto 2 copy exch neg lineto
20404
 
20405
    dup dup neg lineto 2 copy neg lineto 2 copy lineto
20406
 
20407
    dup dup lineto 2 copy exch lineto 2 copy neg exch lineto
20408
 
20409
    dup dup neg exch lineto exch neg exch lineto
20410
 
20411
    closepath
20412
 
20413
    DrawSymbolProc
20414
 
20415
  grestore
20416
 
20417
} def
20418
 
20419
 
20420
 
20421
% Circle
20422
 
20423
/Ci {
20424
 
20425
  % Stack: x y symbolSize
20426
 
20427
  gsave
20428
 
20429
    3 copy pop
20430
 
20431
    moveto newpath
20432
 
20433
    2 div 0 360 arc
20434
 
20435
    closepath DrawSymbolProc
20436
 
20437
  grestore
20438
 
20439
} def
20440
 
20441
 
20442
 
20443
% Square
20444
 
20445
/Sq {
20446
 
20447
  % Stack: x y symbolSize
20448
 
20449
  gsave
20450
 
20451
    dup dup 2 div dup
20452
 
20453
    6 -1 roll exch sub exch
20454
 
20455
    5 -1 roll exch sub 4 -2 roll Box
20456
 
20457
    DrawSymbolProc
20458
 
20459
  grestore
20460
 
20461
} def
20462
 
20463
 
20464
 
20465
% Line
20466
 
20467
/Li {
20468
 
20469
  % Stack: x y symbolSize
20470
 
20471
  gsave
20472
 
20473
    3 1 roll exch 3 -1 roll 2 div 3 copy
20474
 
20475
    newpath
20476
 
20477
    sub exch moveto add exch lineto
20478
 
20479
    stroke
20480
 
20481
  grestore
20482
 
20483
} def
20484
 
20485
 
20486
 
20487
% Diamond
20488
 
20489
/Di {
20490
 
20491
  % Stack: x y symbolSize
20492
 
20493
  gsave
20494
 
20495
    3 1 roll translate 45 rotate 0 0 3 -1 roll Sq
20496
 
20497
  grestore
20498
 
20499
} def
20500
 
20501
 
20502
 
20503
% Triangle
20504
 
20505
/Tr {
20506
 
20507
  % Stack: x y symbolSize
20508
 
20509
  gsave
20510
 
20511
    3 -2 roll translate
20512
 
20513
    BaseRatio mul 0.5 mul		% Calculate 1/2 base
20514
 
20515
    dup 0 exch 30 cos mul		% h1 = height above center point
20516
 
20517
    neg					% b2 0 -h1
20518
 
20519
    newpath moveto			% point 1;  b2
20520
 
20521
    dup 30 sin 30 cos div mul		% h2 = height below center point
20522
 
20523
    2 copy lineto			% point 2;  b2 h2
20524
 
20525
    exch neg exch lineto		%
20526
 
20527
    closepath
20528
 
20529
    DrawSymbolProc
20530
 
20531
  grestore
20532
 
20533
} def
20534
 
20535
 
20536
 
20537
% Arrow
20538
 
20539
/Ar {
20540
 
20541
  % Stack: x y symbolSize
20542
 
20543
  gsave
20544
 
20545
    3 -2 roll translate
20546
 
20547
    BaseRatio mul 0.5 mul		% Calculate 1/2 base
20548
 
20549
    dup 0 exch 30 cos mul		% h1 = height above center point
20550
 
20551
					% b2 0 h1
20552
 
20553
    newpath moveto			% point 1;  b2
20554
 
20555
    dup 30 sin 30 cos div mul		% h2 = height below center point
20556
 
20557
    neg					% -h2 b2
20558
 
20559
    2 copy lineto			% point 2;  b2 h2
20560
 
20561
    exch neg exch lineto		%
20562
 
20563
    closepath
20564
 
20565
    DrawSymbolProc
20566
 
20567
  grestore
20568
 
20569
} def
20570
 
20571
 
20572
 
20573
% Bitmap
20574
 
20575
/Bm {
20576
 
20577
  % Stack: x y symbolSize
20578
 
20579
  gsave
20580
 
20581
    3 1 roll translate pop DrawSymbolProc
20582
 
20583
  grestore
20584
 
20585
} def
20586
 
20587
 
20588
 
20589
%%EndProlog
20590
 
20591
 
20592
 
20593
%%BeginSetup
20594
 
20595
gsave					% Save the graphics state
20596
 
20597
 
20598
 
20599
% Default line/text style parameters
20600
 
20601
 
20602
 
20603
1 setlinewidth				% width
20604
 
20605
1 setlinejoin				% join
20606
 
20607
 
20608
 
20609
[] 0 setdash				% dashes
20610
 
20611
 
20612
 
20613
/CL 0 def				% Set color level mode
20614
 
20615
 
20616
 
20617
 
20618
 
20619
% Transform coordinate system to use X11 coordinates
20620
 
20621
 
20622
 
20623
% 1. Flip y-axis over by reversing the scale,
20624
 
20625
% 2. Translate the origin to the other side of the page,
20626
 
20627
%    making the origin the upper left corner
20628
 
20629
0.75 -0.748819 scale
20630
 
20631
 
20632
 
20633
 
20634
 
20635
% User defined page layout
20636
 
20637
 
20638
 
20639
% Set color level
20640
 
20641
/CL 2 def
20642
 
20643
 
20644
 
20645
% Set origin
20646
 
20647
128 328 translate
20648
 
20649
 
20650
 
20651
 
20652
 
20653
%%EndSetup
20654
 
20655
 
20656
 
20657
12 /Helvetica-Bold SetFont
20658
 
20659
45 28 503 347 Box
20660
 
20661
 
20662
 
20663
1 1 1 SetBgColor
20664
 
20665
Fill
20666
 
20667
gsave clip
20668
 
20669
 
20670
 
20671
 
20672
 
20673
 
20674
 
20675
0.639216 0.639216 0.639216 SetFgColor
20676
 
20677
1 setlinewidth
20678
 
20679
[  1] 0 setdash
20680
 
20681
/DashesProc {} def
20682
 
20683
47 315.754 moveto
20684
 
20685
 545 315.754 lineto
20686
 
20687
DashesProc stroke
20688
 
20689
47 364 moveto
20690
 
20691
 545 364 lineto
20692
 
20693
DashesProc stroke
20694
 
20695
47 219.261 moveto
20696
 
20697
 545 219.261 lineto
20698
 
20699
DashesProc stroke
20700
 
20701
47 267.507 moveto
20702
 
20703
 545 267.507 lineto
20704
 
20705
DashesProc stroke
20706
 
20707
47 122.769 moveto
20708
 
20709
 545 122.769 lineto
20710
 
20711
DashesProc stroke
20712
 
20713
47 171.015 moveto
20714
 
20715
 545 171.015 lineto
20716
 
20717
DashesProc stroke
20718
 
20719
47 74.5224 moveto
20720
 
20721
 545 74.5224 lineto
20722
 
20723
DashesProc stroke
20724
 
20725
 
20726
 
20727
% Element "nco2"
20728
 
20729
 
20730
 
20731
1 0.733333 0.733333 SetFgColor
20732
 
20733
56 337 4 27 Box fill
20734
 
20735
 
20736
 
20737
1 0.733333 0.733333 SetFgColor
20738
 
20739
60 345 4 19 Box fill
20740
 
20741
 
20742
 
20743
1 0.733333 0.733333 SetFgColor
20744
 
20745
65 196 4 168 Box fill
20746
 
20747
 
20748
 
20749
1 0.733333 0.733333 SetFgColor
20750
 
20751
70 38 4 326 Box fill
20752
 
20753
 
20754
 
20755
1 0.733333 0.733333 SetFgColor
20756
 
20757
75 85 4 279 Box fill
20758
 
20759
 
20760
 
20761
1 0.733333 0.733333 SetFgColor
20762
 
20763
80 194 4 170 Box fill
20764
 
20765
 
20766
 
20767
1 0.733333 0.733333 SetFgColor
20768
 
20769
84 280 4 84 Box fill
20770
 
20771
 
20772
 
20773
1 0.733333 0.733333 SetFgColor
20774
 
20775
89 317 4 47 Box fill
20776
 
20777
 
20778
 
20779
1 0.733333 0.733333 SetFgColor
20780
 
20781
94 342 4 22 Box fill
20782
 
20783
 
20784
 
20785
1 0.733333 0.733333 SetFgColor
20786
 
20787
99 359 4 5 Box fill
20788
 
20789
 
20790
 
20791
1 0.733333 0.733333 SetFgColor
20792
 
20793
103 363 4 1 Box fill
20794
 
20795
 
20796
 
20797
1 0.733333 0.733333 SetFgColor
20798
 
20799
108 364 4 0 Box fill
20800
 
20801
 
20802
 
20803
1 0.733333 0.733333 SetFgColor
20804
 
20805
113 364 4 0 Box fill
20806
 
20807
 
20808
 
20809
1 0.733333 0.733333 SetFgColor
20810
 
20811
118 364 4 0 Box fill
20812
 
20813
 
20814
 
20815
1 0.733333 0.733333 SetFgColor
20816
 
20817
123 364 4 0 Box fill
20818
 
20819
 
20820
 
20821
1 0.733333 0.733333 SetFgColor
20822
 
20823
127 364 4 0 Box fill
20824
 
20825
 
20826
 
20827
1 0.733333 0.733333 SetFgColor
20828
 
20829
132 364 4 0 Box fill
20830
 
20831
 
20832
 
20833
1 0.733333 0.733333 SetFgColor
20834
 
20835
137 364 4 0 Box fill
20836
 
20837
 
20838
 
20839
1 0.733333 0.733333 SetFgColor
20840
 
20841
142 364 4 0 Box fill
20842
 
20843
 
20844
 
20845
1 0.733333 0.733333 SetFgColor
20846
 
20847
146 364 4 0 Box fill
20848
 
20849
 
20850
 
20851
1 0.733333 0.733333 SetFgColor
20852
 
20853
151 364 4 0 Box fill
20854
 
20855
 
20856
 
20857
1 0.733333 0.733333 SetFgColor
20858
 
20859
156 364 4 0 Box fill
20860
 
20861
 
20862
 
20863
1 0.733333 0.733333 SetFgColor
20864
 
20865
161 364 4 0 Box fill
20866
 
20867
 
20868
 
20869
1 0.733333 0.733333 SetFgColor
20870
 
20871
165 364 4 0 Box fill
20872
 
20873
 
20874
 
20875
1 0.733333 0.733333 SetFgColor
20876
 
20877
170 364 4 0 Box fill
20878
 
20879
 
20880
 
20881
1 0.733333 0.733333 SetFgColor
20882
 
20883
175 364 4 0 Box fill
20884
 
20885
 
20886
 
20887
1 0.733333 0.733333 SetFgColor
20888
 
20889
180 364 4 0 Box fill
20890
 
20891
 
20892
 
20893
1 0.733333 0.733333 SetFgColor
20894
 
20895
185 364 4 0 Box fill
20896
 
20897
 
20898
 
20899
1 0.733333 0.733333 SetFgColor
20900
 
20901
189 364 4 0 Box fill
20902
 
20903
 
20904
 
20905
1 0.733333 0.733333 SetFgColor
20906
 
20907
194 364 4 0 Box fill
20908
 
20909
 
20910
 
20911
1 0.733333 0.733333 SetFgColor
20912
 
20913
199 364 4 0 Box fill
20914
 
20915
 
20916
 
20917
1 0.733333 0.733333 SetFgColor
20918
 
20919
204 364 4 0 Box fill
20920
 
20921
 
20922
 
20923
1 0.733333 0.733333 SetFgColor
20924
 
20925
208 364 4 0 Box fill
20926
 
20927
 
20928
 
20929
1 0.733333 0.733333 SetFgColor
20930
 
20931
213 364 4 0 Box fill
20932
 
20933
 
20934
 
20935
1 0.733333 0.733333 SetFgColor
20936
 
20937
218 364 4 0 Box fill
20938
 
20939
 
20940
 
20941
1 0.733333 0.733333 SetFgColor
20942
 
20943
223 364 4 0 Box fill
20944
 
20945
 
20946
 
20947
1 0.733333 0.733333 SetFgColor
20948
 
20949
227 364 4 0 Box fill
20950
 
20951
 
20952
 
20953
1 0.733333 0.733333 SetFgColor
20954
 
20955
232 364 4 0 Box fill
20956
 
20957
 
20958
 
20959
1 0.733333 0.733333 SetFgColor
20960
 
20961
237 364 4 0 Box fill
20962
 
20963
 
20964
 
20965
1 0.733333 0.733333 SetFgColor
20966
 
20967
242 364 4 0 Box fill
20968
 
20969
 
20970
 
20971
1 0.733333 0.733333 SetFgColor
20972
 
20973
247 364 4 0 Box fill
20974
 
20975
 
20976
 
20977
1 0.733333 0.733333 SetFgColor
20978
 
20979
251 364 4 0 Box fill
20980
 
20981
 
20982
 
20983
1 0.733333 0.733333 SetFgColor
20984
 
20985
256 364 4 0 Box fill
20986
 
20987
 
20988
 
20989
1 0.733333 0.733333 SetFgColor
20990
 
20991
261 364 4 0 Box fill
20992
 
20993
 
20994
 
20995
1 0.733333 0.733333 SetFgColor
20996
 
20997
266 364 4 0 Box fill
20998
 
20999
 
21000
 
21001
1 0.733333 0.733333 SetFgColor
21002
 
21003
270 364 4 0 Box fill
21004
 
21005
 
21006
 
21007
1 0.733333 0.733333 SetFgColor
21008
 
21009
275 364 4 0 Box fill
21010
 
21011
 
21012
 
21013
1 0.733333 0.733333 SetFgColor
21014
 
21015
280 364 4 0 Box fill
21016
 
21017
 
21018
 
21019
1 0.733333 0.733333 SetFgColor
21020
 
21021
285 364 4 0 Box fill
21022
 
21023
 
21024
 
21025
1 0.733333 0.733333 SetFgColor
21026
 
21027
290 364 4 0 Box fill
21028
 
21029
 
21030
 
21031
1 0.733333 0.733333 SetFgColor
21032
 
21033
294 364 4 0 Box fill
21034
 
21035
 
21036
 
21037
1 0.733333 0.733333 SetFgColor
21038
 
21039
299 364 4 0 Box fill
21040
 
21041
 
21042
 
21043
1 0.733333 0.733333 SetFgColor
21044
 
21045
304 364 4 0 Box fill
21046
 
21047
 
21048
 
21049
1 0.733333 0.733333 SetFgColor
21050
 
21051
309 364 4 0 Box fill
21052
 
21053
 
21054
 
21055
1 0.733333 0.733333 SetFgColor
21056
 
21057
313 364 4 0 Box fill
21058
 
21059
 
21060
 
21061
1 0.733333 0.733333 SetFgColor
21062
 
21063
318 364 4 0 Box fill
21064
 
21065
 
21066
 
21067
1 0.733333 0.733333 SetFgColor
21068
 
21069
323 364 4 0 Box fill
21070
 
21071
 
21072
 
21073
1 0.733333 0.733333 SetFgColor
21074
 
21075
328 364 4 0 Box fill
21076
 
21077
 
21078
 
21079
1 0.733333 0.733333 SetFgColor
21080
 
21081
332 364 4 0 Box fill
21082
 
21083
 
21084
 
21085
1 0.733333 0.733333 SetFgColor
21086
 
21087
337 364 4 0 Box fill
21088
 
21089
 
21090
 
21091
1 0.733333 0.733333 SetFgColor
21092
 
21093
342 364 4 0 Box fill
21094
 
21095
 
21096
 
21097
1 0.733333 0.733333 SetFgColor
21098
 
21099
347 364 4 0 Box fill
21100
 
21101
 
21102
 
21103
1 0.733333 0.733333 SetFgColor
21104
 
21105
352 364 4 0 Box fill
21106
 
21107
 
21108
 
21109
1 0.733333 0.733333 SetFgColor
21110
 
21111
356 364 4 0 Box fill
21112
 
21113
 
21114
 
21115
1 0.733333 0.733333 SetFgColor
21116
 
21117
361 364 4 0 Box fill
21118
 
21119
 
21120
 
21121
1 0.733333 0.733333 SetFgColor
21122
 
21123
366 364 4 0 Box fill
21124
 
21125
 
21126
 
21127
1 0.733333 0.733333 SetFgColor
21128
 
21129
371 364 4 0 Box fill
21130
 
21131
 
21132
 
21133
1 0.733333 0.733333 SetFgColor
21134
 
21135
375 364 4 0 Box fill
21136
 
21137
 
21138
 
21139
1 0.733333 0.733333 SetFgColor
21140
 
21141
380 364 4 0 Box fill
21142
 
21143
 
21144
 
21145
1 0.733333 0.733333 SetFgColor
21146
 
21147
385 364 4 0 Box fill
21148
 
21149
 
21150
 
21151
1 0.733333 0.733333 SetFgColor
21152
 
21153
390 364 4 0 Box fill
21154
 
21155
 
21156
 
21157
1 0.733333 0.733333 SetFgColor
21158
 
21159
395 364 4 0 Box fill
21160
 
21161
 
21162
 
21163
1 0.733333 0.733333 SetFgColor
21164
 
21165
399 364 4 0 Box fill
21166
 
21167
 
21168
 
21169
1 0.733333 0.733333 SetFgColor
21170
 
21171
404 364 4 0 Box fill
21172
 
21173
 
21174
 
21175
1 0.733333 0.733333 SetFgColor
21176
 
21177
409 364 4 0 Box fill
21178
 
21179
 
21180
 
21181
1 0.733333 0.733333 SetFgColor
21182
 
21183
414 364 4 0 Box fill
21184
 
21185
 
21186
 
21187
1 0.733333 0.733333 SetFgColor
21188
 
21189
418 364 4 0 Box fill
21190
 
21191
 
21192
 
21193
1 0.733333 0.733333 SetFgColor
21194
 
21195
423 364 4 0 Box fill
21196
 
21197
 
21198
 
21199
1 0.733333 0.733333 SetFgColor
21200
 
21201
428 364 4 0 Box fill
21202
 
21203
 
21204
 
21205
1 0.733333 0.733333 SetFgColor
21206
 
21207
433 364 4 0 Box fill
21208
 
21209
 
21210
 
21211
1 0.733333 0.733333 SetFgColor
21212
 
21213
437 364 4 0 Box fill
21214
 
21215
 
21216
 
21217
1 0.733333 0.733333 SetFgColor
21218
 
21219
442 364 4 0 Box fill
21220
 
21221
 
21222
 
21223
1 0.733333 0.733333 SetFgColor
21224
 
21225
447 364 4 0 Box fill
21226
 
21227
 
21228
 
21229
1 0.733333 0.733333 SetFgColor
21230
 
21231
452 364 4 0 Box fill
21232
 
21233
 
21234
 
21235
1 0.733333 0.733333 SetFgColor
21236
 
21237
457 364 4 0 Box fill
21238
 
21239
 
21240
 
21241
1 0.733333 0.733333 SetFgColor
21242
 
21243
461 364 4 0 Box fill
21244
 
21245
 
21246
 
21247
1 0.733333 0.733333 SetFgColor
21248
 
21249
466 364 4 0 Box fill
21250
 
21251
 
21252
 
21253
1 0.733333 0.733333 SetFgColor
21254
 
21255
471 364 4 0 Box fill
21256
 
21257
 
21258
 
21259
1 0.733333 0.733333 SetFgColor
21260
 
21261
476 364 4 0 Box fill
21262
 
21263
 
21264
 
21265
1 0.733333 0.733333 SetFgColor
21266
 
21267
480 364 4 0 Box fill
21268
 
21269
 
21270
 
21271
1 0.733333 0.733333 SetFgColor
21272
 
21273
485 364 4 0 Box fill
21274
 
21275
 
21276
 
21277
1 0.733333 0.733333 SetFgColor
21278
 
21279
490 364 4 0 Box fill
21280
 
21281
 
21282
 
21283
1 0.733333 0.733333 SetFgColor
21284
 
21285
495 364 4 0 Box fill
21286
 
21287
 
21288
 
21289
1 0.733333 0.733333 SetFgColor
21290
 
21291
500 364 4 0 Box fill
21292
 
21293
 
21294
 
21295
1 0.733333 0.733333 SetFgColor
21296
 
21297
504 364 4 0 Box fill
21298
 
21299
 
21300
 
21301
1 0.733333 0.733333 SetFgColor
21302
 
21303
509 364 4 0 Box fill
21304
 
21305
 
21306
 
21307
1 0.733333 0.733333 SetFgColor
21308
 
21309
514 364 4 0 Box fill
21310
 
21311
 
21312
 
21313
1 0.733333 0.733333 SetFgColor
21314
 
21315
519 364 4 0 Box fill
21316
 
21317
 
21318
 
21319
1 0.733333 0.733333 SetFgColor
21320
 
21321
523 364 4 0 Box fill
21322
 
21323
 
21324
 
21325
1 0.733333 0.733333 SetFgColor
21326
 
21327
528 364 4 0 Box fill
21328
 
21329
 
21330
 
21331
1 0.733333 0.733333 SetFgColor
21332
 
21333
533 364 4 0 Box fill
21334
 
21335
 
21336
 
21337
 
21338
 
21339
% Element "nco1"
21340
 
21341
 
21342
 
21343
0.501961 1 0.501961 SetFgColor
21344
 
21345
55 364 4 0 Box fill
21346
 
21347
 
21348
 
21349
0.501961 1 0.501961 SetFgColor
21350
 
21351
59 364 4 0 Box fill
21352
 
21353
 
21354
 
21355
0.501961 1 0.501961 SetFgColor
21356
 
21357
64 363 4 1 Box fill
21358
 
21359
 
21360
 
21361
0.501961 1 0.501961 SetFgColor
21362
 
21363
69 360 4 4 Box fill
21364
 
21365
 
21366
 
21367
0.501961 1 0.501961 SetFgColor
21368
 
21369
74 358 4 6 Box fill
21370
 
21371
 
21372
 
21373
0.501961 1 0.501961 SetFgColor
21374
 
21375
78 347 4 17 Box fill
21376
 
21377
 
21378
 
21379
0.501961 1 0.501961 SetFgColor
21380
 
21381
83 337 4 27 Box fill
21382
 
21383
 
21384
 
21385
0.501961 1 0.501961 SetFgColor
21386
 
21387
88 332 4 32 Box fill
21388
 
21389
 
21390
 
21391
0.501961 1 0.501961 SetFgColor
21392
 
21393
93 337 4 27 Box fill
21394
 
21395
 
21396
 
21397
0.501961 1 0.501961 SetFgColor
21398
 
21399
97 347 4 17 Box fill
21400
 
21401
 
21402
 
21403
0.501961 1 0.501961 SetFgColor
21404
 
21405
102 355 4 9 Box fill
21406
 
21407
 
21408
 
21409
0.501961 1 0.501961 SetFgColor
21410
 
21411
107 361 4 3 Box fill
21412
 
21413
 
21414
 
21415
0.501961 1 0.501961 SetFgColor
21416
 
21417
112 362 4 2 Box fill
21418
 
21419
 
21420
 
21421
0.501961 1 0.501961 SetFgColor
21422
 
21423
117 363 4 1 Box fill
21424
 
21425
 
21426
 
21427
0.501961 1 0.501961 SetFgColor
21428
 
21429
121 364 4 0 Box fill
21430
 
21431
 
21432
 
21433
0.501961 1 0.501961 SetFgColor
21434
 
21435
126 364 4 0 Box fill
21436
 
21437
 
21438
 
21439
0.501961 1 0.501961 SetFgColor
21440
 
21441
131 364 4 0 Box fill
21442
 
21443
 
21444
 
21445
0.501961 1 0.501961 SetFgColor
21446
 
21447
136 364 4 0 Box fill
21448
 
21449
 
21450
 
21451
0.501961 1 0.501961 SetFgColor
21452
 
21453
140 364 4 0 Box fill
21454
 
21455
 
21456
 
21457
0.501961 1 0.501961 SetFgColor
21458
 
21459
145 364 4 0 Box fill
21460
 
21461
 
21462
 
21463
0.501961 1 0.501961 SetFgColor
21464
 
21465
150 364 4 0 Box fill
21466
 
21467
 
21468
 
21469
0.501961 1 0.501961 SetFgColor
21470
 
21471
155 364 4 0 Box fill
21472
 
21473
 
21474
 
21475
0.501961 1 0.501961 SetFgColor
21476
 
21477
159 364 4 0 Box fill
21478
 
21479
 
21480
 
21481
0.501961 1 0.501961 SetFgColor
21482
 
21483
164 364 4 0 Box fill
21484
 
21485
 
21486
 
21487
0.501961 1 0.501961 SetFgColor
21488
 
21489
169 364 4 0 Box fill
21490
 
21491
 
21492
 
21493
0.501961 1 0.501961 SetFgColor
21494
 
21495
174 364 4 0 Box fill
21496
 
21497
 
21498
 
21499
0.501961 1 0.501961 SetFgColor
21500
 
21501
179 364 4 0 Box fill
21502
 
21503
 
21504
 
21505
0.501961 1 0.501961 SetFgColor
21506
 
21507
183 364 4 0 Box fill
21508
 
21509
 
21510
 
21511
0.501961 1 0.501961 SetFgColor
21512
 
21513
188 364 4 0 Box fill
21514
 
21515
 
21516
 
21517
0.501961 1 0.501961 SetFgColor
21518
 
21519
193 364 4 0 Box fill
21520
 
21521
 
21522
 
21523
0.501961 1 0.501961 SetFgColor
21524
 
21525
198 364 4 0 Box fill
21526
 
21527
 
21528
 
21529
0.501961 1 0.501961 SetFgColor
21530
 
21531
202 364 4 0 Box fill
21532
 
21533
 
21534
 
21535
0.501961 1 0.501961 SetFgColor
21536
 
21537
207 364 4 0 Box fill
21538
 
21539
 
21540
 
21541
0.501961 1 0.501961 SetFgColor
21542
 
21543
212 364 4 0 Box fill
21544
 
21545
 
21546
 
21547
0.501961 1 0.501961 SetFgColor
21548
 
21549
217 364 4 0 Box fill
21550
 
21551
 
21552
 
21553
0.501961 1 0.501961 SetFgColor
21554
 
21555
222 364 4 0 Box fill
21556
 
21557
 
21558
 
21559
0.501961 1 0.501961 SetFgColor
21560
 
21561
226 364 4 0 Box fill
21562
 
21563
 
21564
 
21565
0.501961 1 0.501961 SetFgColor
21566
 
21567
231 364 4 0 Box fill
21568
 
21569
 
21570
 
21571
0.501961 1 0.501961 SetFgColor
21572
 
21573
236 364 4 0 Box fill
21574
 
21575
 
21576
 
21577
0.501961 1 0.501961 SetFgColor
21578
 
21579
241 364 4 0 Box fill
21580
 
21581
 
21582
 
21583
0.501961 1 0.501961 SetFgColor
21584
 
21585
245 364 4 0 Box fill
21586
 
21587
 
21588
 
21589
0.501961 1 0.501961 SetFgColor
21590
 
21591
250 364 4 0 Box fill
21592
 
21593
 
21594
 
21595
0.501961 1 0.501961 SetFgColor
21596
 
21597
255 364 4 0 Box fill
21598
 
21599
 
21600
 
21601
0.501961 1 0.501961 SetFgColor
21602
 
21603
260 364 4 0 Box fill
21604
 
21605
 
21606
 
21607
0.501961 1 0.501961 SetFgColor
21608
 
21609
264 364 4 0 Box fill
21610
 
21611
 
21612
 
21613
0.501961 1 0.501961 SetFgColor
21614
 
21615
269 364 4 0 Box fill
21616
 
21617
 
21618
 
21619
0.501961 1 0.501961 SetFgColor
21620
 
21621
274 364 4 0 Box fill
21622
 
21623
 
21624
 
21625
0.501961 1 0.501961 SetFgColor
21626
 
21627
279 364 4 0 Box fill
21628
 
21629
 
21630
 
21631
0.501961 1 0.501961 SetFgColor
21632
 
21633
284 364 4 0 Box fill
21634
 
21635
 
21636
 
21637
0.501961 1 0.501961 SetFgColor
21638
 
21639
288 364 4 0 Box fill
21640
 
21641
 
21642
 
21643
0.501961 1 0.501961 SetFgColor
21644
 
21645
293 364 4 0 Box fill
21646
 
21647
 
21648
 
21649
0.501961 1 0.501961 SetFgColor
21650
 
21651
298 364 4 0 Box fill
21652
 
21653
 
21654
 
21655
0.501961 1 0.501961 SetFgColor
21656
 
21657
303 364 4 0 Box fill
21658
 
21659
 
21660
 
21661
0.501961 1 0.501961 SetFgColor
21662
 
21663
307 364 4 0 Box fill
21664
 
21665
 
21666
 
21667
0.501961 1 0.501961 SetFgColor
21668
 
21669
312 364 4 0 Box fill
21670
 
21671
 
21672
 
21673
0.501961 1 0.501961 SetFgColor
21674
 
21675
317 364 4 0 Box fill
21676
 
21677
 
21678
 
21679
0.501961 1 0.501961 SetFgColor
21680
 
21681
322 364 4 0 Box fill
21682
 
21683
 
21684
 
21685
0.501961 1 0.501961 SetFgColor
21686
 
21687
327 364 4 0 Box fill
21688
 
21689
 
21690
 
21691
0.501961 1 0.501961 SetFgColor
21692
 
21693
331 364 4 0 Box fill
21694
 
21695
 
21696
 
21697
0.501961 1 0.501961 SetFgColor
21698
 
21699
336 364 4 0 Box fill
21700
 
21701
 
21702
 
21703
0.501961 1 0.501961 SetFgColor
21704
 
21705
341 364 4 0 Box fill
21706
 
21707
 
21708
 
21709
0.501961 1 0.501961 SetFgColor
21710
 
21711
346 364 4 0 Box fill
21712
 
21713
 
21714
 
21715
0.501961 1 0.501961 SetFgColor
21716
 
21717
350 364 4 0 Box fill
21718
 
21719
 
21720
 
21721
0.501961 1 0.501961 SetFgColor
21722
 
21723
355 364 4 0 Box fill
21724
 
21725
 
21726
 
21727
0.501961 1 0.501961 SetFgColor
21728
 
21729
360 364 4 0 Box fill
21730
 
21731
 
21732
 
21733
0.501961 1 0.501961 SetFgColor
21734
 
21735
365 364 4 0 Box fill
21736
 
21737
 
21738
 
21739
0.501961 1 0.501961 SetFgColor
21740
 
21741
369 364 4 0 Box fill
21742
 
21743
 
21744
 
21745
0.501961 1 0.501961 SetFgColor
21746
 
21747
374 364 4 0 Box fill
21748
 
21749
 
21750
 
21751
0.501961 1 0.501961 SetFgColor
21752
 
21753
379 364 4 0 Box fill
21754
 
21755
 
21756
 
21757
0.501961 1 0.501961 SetFgColor
21758
 
21759
384 364 4 0 Box fill
21760
 
21761
 
21762
 
21763
0.501961 1 0.501961 SetFgColor
21764
 
21765
389 364 4 0 Box fill
21766
 
21767
 
21768
 
21769
0.501961 1 0.501961 SetFgColor
21770
 
21771
393 364 4 0 Box fill
21772
 
21773
 
21774
 
21775
0.501961 1 0.501961 SetFgColor
21776
 
21777
398 364 4 0 Box fill
21778
 
21779
 
21780
 
21781
0.501961 1 0.501961 SetFgColor
21782
 
21783
403 364 4 0 Box fill
21784
 
21785
 
21786
 
21787
0.501961 1 0.501961 SetFgColor
21788
 
21789
408 364 4 0 Box fill
21790
 
21791
 
21792
 
21793
0.501961 1 0.501961 SetFgColor
21794
 
21795
412 364 4 0 Box fill
21796
 
21797
 
21798
 
21799
0.501961 1 0.501961 SetFgColor
21800
 
21801
417 364 4 0 Box fill
21802
 
21803
 
21804
 
21805
0.501961 1 0.501961 SetFgColor
21806
 
21807
422 364 4 0 Box fill
21808
 
21809
 
21810
 
21811
0.501961 1 0.501961 SetFgColor
21812
 
21813
427 364 4 0 Box fill
21814
 
21815
 
21816
 
21817
0.501961 1 0.501961 SetFgColor
21818
 
21819
432 364 4 0 Box fill
21820
 
21821
 
21822
 
21823
0.501961 1 0.501961 SetFgColor
21824
 
21825
436 364 4 0 Box fill
21826
 
21827
 
21828
 
21829
0.501961 1 0.501961 SetFgColor
21830
 
21831
441 364 4 0 Box fill
21832
 
21833
 
21834
 
21835
0.501961 1 0.501961 SetFgColor
21836
 
21837
446 364 4 0 Box fill
21838
 
21839
 
21840
 
21841
0.501961 1 0.501961 SetFgColor
21842
 
21843
451 364 4 0 Box fill
21844
 
21845
 
21846
 
21847
0.501961 1 0.501961 SetFgColor
21848
 
21849
455 364 4 0 Box fill
21850
 
21851
 
21852
 
21853
0.501961 1 0.501961 SetFgColor
21854
 
21855
460 364 4 0 Box fill
21856
 
21857
 
21858
 
21859
0.501961 1 0.501961 SetFgColor
21860
 
21861
465 364 4 0 Box fill
21862
 
21863
 
21864
 
21865
0.501961 1 0.501961 SetFgColor
21866
 
21867
470 364 4 0 Box fill
21868
 
21869
 
21870
 
21871
0.501961 1 0.501961 SetFgColor
21872
 
21873
474 364 4 0 Box fill
21874
 
21875
 
21876
 
21877
0.501961 1 0.501961 SetFgColor
21878
 
21879
479 364 4 0 Box fill
21880
 
21881
 
21882
 
21883
0.501961 1 0.501961 SetFgColor
21884
 
21885
484 364 4 0 Box fill
21886
 
21887
 
21888
 
21889
0.501961 1 0.501961 SetFgColor
21890
 
21891
489 364 4 0 Box fill
21892
 
21893
 
21894
 
21895
0.501961 1 0.501961 SetFgColor
21896
 
21897
494 364 4 0 Box fill
21898
 
21899
 
21900
 
21901
0.501961 1 0.501961 SetFgColor
21902
 
21903
498 364 4 0 Box fill
21904
 
21905
 
21906
 
21907
0.501961 1 0.501961 SetFgColor
21908
 
21909
503 364 4 0 Box fill
21910
 
21911
 
21912
 
21913
0.501961 1 0.501961 SetFgColor
21914
 
21915
508 364 4 0 Box fill
21916
 
21917
 
21918
 
21919
0.501961 1 0.501961 SetFgColor
21920
 
21921
513 364 4 0 Box fill
21922
 
21923
 
21924
 
21925
0.501961 1 0.501961 SetFgColor
21926
 
21927
517 364 4 0 Box fill
21928
 
21929
 
21930
 
21931
0.501961 1 0.501961 SetFgColor
21932
 
21933
522 364 4 0 Box fill
21934
 
21935
 
21936
 
21937
0.501961 1 0.501961 SetFgColor
21938
 
21939
527 364 4 0 Box fill
21940
 
21941
 
21942
 
21943
0.501961 1 0.501961 SetFgColor
21944
 
21945
532 364 4 0 Box fill
21946
 
21947
 
21948
 
21949
 
21950
 
21951
% Unset clipping
21952
 
21953
grestore
21954
 
21955
 
21956
 
21957
0.85098 0.85098 0.85098 SetBgColor
21958
 
21959
 
21960
 
21961
 
21962
 
21963
 
21964
 
21965
 
21966
 
21967
545 30 15 342 Box fill
21968
 
21969
 
21970
 
21971
 
21972
 
21973
 
21974
 
21975
1 1 1 SetBgColor
21976
 
21977
45 372 502 2 Box fill
21978
 
21979
 
21980
 
21981
545 28 2 346 Box fill
21982
 
21983
 
21984
 
21985
0.509804 0.509804 0.509804 SetBgColor
21986
 
21987
newpath 45 374 moveto
21988
 
21989
45 28 lineto
21990
 
21991
547 28 lineto
21992
 
21993
545 30 lineto
21994
 
21995
47 30 lineto
21996
 
21997
47 372 lineto
21998
 
21999
45 374 lineto
22000
 
22001
45 374  lineto closepath Fill
22002
 
22003
119 12 0 296 14 BeginText
22004
 
22005
12 /Helvetica-Bold SetFont
22006
 
22007
 
22008
 
22009
(Channel occupancy) 119 0 11 DrawAdjText
22010
 
22011
EndText
22012
 
22013
10 9 0 55 391.5 BeginText
22014
 
22015
12 /Helvetica-Bold SetFont
22016
 
22017
 
22018
 
22019
(0) 6 2 8 DrawAdjText
22020
 
22021
EndText
22022
 
22023
16 9 0 102.723 391.5 BeginText
22024
 
22025
12 /Helvetica-Bold SetFont
22026
 
22027
 
22028
 
22029
(10) 12 2 8 DrawAdjText
22030
 
22031
EndText
22032
 
22033
16 9 0 150.446 391.5 BeginText
22034
 
22035
12 /Helvetica-Bold SetFont
22036
 
22037
 
22038
 
22039
(20) 12 2 8 DrawAdjText
22040
 
22041
EndText
22042
 
22043
16 9 0 198.168 391.5 BeginText
22044
 
22045
12 /Helvetica-Bold SetFont
22046
 
22047
 
22048
 
22049
(30) 12 2 8 DrawAdjText
22050
 
22051
EndText
22052
 
22053
16 9 0 245.891 391.5 BeginText
22054
 
22055
12 /Helvetica-Bold SetFont
22056
 
22057
 
22058
 
22059
(40) 12 2 8 DrawAdjText
22060
 
22061
EndText
22062
 
22063
16 9 0 293.614 391.5 BeginText
22064
 
22065
12 /Helvetica-Bold SetFont
22066
 
22067
 
22068
 
22069
(50) 12 2 8 DrawAdjText
22070
 
22071
EndText
22072
 
22073
16 9 0 341.337 391.5 BeginText
22074
 
22075
12 /Helvetica-Bold SetFont
22076
 
22077
 
22078
 
22079
(60) 12 2 8 DrawAdjText
22080
 
22081
EndText
22082
 
22083
16 9 0 389.059 391.5 BeginText
22084
 
22085
12 /Helvetica-Bold SetFont
22086
 
22087
 
22088
 
22089
(70) 12 2 8 DrawAdjText
22090
 
22091
EndText
22092
 
22093
16 9 0 436.782 391.5 BeginText
22094
 
22095
12 /Helvetica-Bold SetFont
22096
 
22097
 
22098
 
22099
(80) 12 2 8 DrawAdjText
22100
 
22101
EndText
22102
 
22103
16 9 0 484.505 391.5 BeginText
22104
 
22105
12 /Helvetica-Bold SetFont
22106
 
22107
 
22108
 
22109
(90) 12 2 8 DrawAdjText
22110
 
22111
EndText
22112
 
22113
22 9 0 532.228 391.5 BeginText
22114
 
22115
12 /Helvetica-Bold SetFont
22116
 
22117
 
22118
 
22119
(100) 18 2 8 DrawAdjText
22120
 
22121
EndText
22122
 
22123
 
22124
 
22125
 
22126
 
22127
 
22128
 
22129
1 setlinewidth
22130
 
22131
[ ] 0 setdash
22132
 
22133
/DashesProc {} def
22134
 
22135
55 377 moveto
22136
 
22137
 537 377 lineto
22138
 
22139
DashesProc stroke
22140
 
22141
78.8614 377 moveto
22142
 
22143
 78.8614 382 lineto
22144
 
22145
DashesProc stroke
22146
 
22147
55 377 moveto
22148
 
22149
 55 385 lineto
22150
 
22151
DashesProc stroke
22152
 
22153
126.584 377 moveto
22154
 
22155
 126.584 382 lineto
22156
 
22157
DashesProc stroke
22158
 
22159
102.723 377 moveto
22160
 
22161
 102.723 385 lineto
22162
 
22163
DashesProc stroke
22164
 
22165
174.307 377 moveto
22166
 
22167
 174.307 382 lineto
22168
 
22169
DashesProc stroke
22170
 
22171
150.446 377 moveto
22172
 
22173
 150.446 385 lineto
22174
 
22175
DashesProc stroke
22176
 
22177
222.03 377 moveto
22178
 
22179
 222.03 382 lineto
22180
 
22181
DashesProc stroke
22182
 
22183
198.168 377 moveto
22184
 
22185
 198.168 385 lineto
22186
 
22187
DashesProc stroke
22188
 
22189
269.752 377 moveto
22190
 
22191
 269.752 382 lineto
22192
 
22193
DashesProc stroke
22194
 
22195
245.891 377 moveto
22196
 
22197
 245.891 385 lineto
22198
 
22199
DashesProc stroke
22200
 
22201
317.475 377 moveto
22202
 
22203
 317.475 382 lineto
22204
 
22205
DashesProc stroke
22206
 
22207
293.614 377 moveto
22208
 
22209
 293.614 385 lineto
22210
 
22211
DashesProc stroke
22212
 
22213
365.198 377 moveto
22214
 
22215
 365.198 382 lineto
22216
 
22217
DashesProc stroke
22218
 
22219
341.337 377 moveto
22220
 
22221
 341.337 385 lineto
22222
 
22223
DashesProc stroke
22224
 
22225
412.921 377 moveto
22226
 
22227
 412.921 382 lineto
22228
 
22229
DashesProc stroke
22230
 
22231
389.059 377 moveto
22232
 
22233
 389.059 385 lineto
22234
 
22235
DashesProc stroke
22236
 
22237
460.644 377 moveto
22238
 
22239
 460.644 382 lineto
22240
 
22241
DashesProc stroke
22242
 
22243
436.782 377 moveto
22244
 
22245
 436.782 385 lineto
22246
 
22247
DashesProc stroke
22248
 
22249
508.366 377 moveto
22250
 
22251
 508.366 382 lineto
22252
 
22253
DashesProc stroke
22254
 
22255
484.505 377 moveto
22256
 
22257
 484.505 385 lineto
22258
 
22259
DashesProc stroke
22260
 
22261
532.228 377 moveto
22262
 
22263
 532.228 385 lineto
22264
 
22265
DashesProc stroke
22266
 
22267
10 9 0 27 364 BeginText
22268
 
22269
12 /Helvetica-Bold SetFont
22270
 
22271
 
22272
 
22273
(0) 6 2 8 DrawAdjText
22274
 
22275
EndText
22276
 
22277
28 9 0 18 267.507 BeginText
22278
 
22279
12 /Helvetica-Bold SetFont
22280
 
22281
 
22282
 
22283
(2000) 24 2 8 DrawAdjText
22284
 
22285
EndText
22286
 
22287
28 9 0 18 171.015 BeginText
22288
 
22289
12 /Helvetica-Bold SetFont
22290
 
22291
 
22292
 
22293
(4000) 24 2 8 DrawAdjText
22294
 
22295
EndText
22296
 
22297
28 9 0 18 74.5224 BeginText
22298
 
22299
12 /Helvetica-Bold SetFont
22300
 
22301
 
22302
 
22303
(6000) 24 2 8 DrawAdjText
22304
 
22305
EndText
22306
 
22307
 
22308
 
22309
 
22310
 
22311
 
22312
 
22313
1 setlinewidth
22314
 
22315
[ ] 0 setdash
22316
 
22317
/DashesProc {} def
22318
 
22319
42 364 moveto
22320
 
22321
 42 38 lineto
22322
 
22323
DashesProc stroke
22324
 
22325
42 315.754 moveto
22326
 
22327
 37 315.754 lineto
22328
 
22329
DashesProc stroke
22330
 
22331
42 364 moveto
22332
 
22333
 34 364 lineto
22334
 
22335
DashesProc stroke
22336
 
22337
42 219.261 moveto
22338
 
22339
 37 219.261 lineto
22340
 
22341
DashesProc stroke
22342
 
22343
42 267.507 moveto
22344
 
22345
 34 267.507 lineto
22346
 
22347
DashesProc stroke
22348
 
22349
42 122.769 moveto
22350
 
22351
 37 122.769 lineto
22352
 
22353
DashesProc stroke
22354
 
22355
42 171.015 moveto
22356
 
22357
 34 171.015 lineto
22358
 
22359
DashesProc stroke
22360
 
22361
42 74.5224 moveto
22362
 
22363
 34 74.5224 lineto
22364
 
22365
DashesProc stroke
22366
 
22367
showpage
22368
 
22369
%Trailer
22370
 
22371
grestore
22372
 
22373
end
22374
 
22375
%EOF
22376
 
22377
EndEPSF
22378
grestore
22379
restore showpage
22380
 
22381
%%Trailer
22382
end
22383
%%EOF