OpenCores
URL https://opencores.org/ocsvn/mpeg2fpga/mpeg2fpga/trunk

Subversion Repositories mpeg2fpga

[/] [mpeg2fpga/] [trunk/] [tools/] [fsmgraph/] [vld.ps] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 kdv
%!PS-Adobe-3.0 EPSF-3.0
2
%%Creator: uDraw(Graph) 3.1.1 (info available on http://www.b-novative.com/)
3
%%For: koen@macpro (on: i686 Linux 2.6.22-gentoo-r9 unix)
4
%%Title: vld.ps
5
%%CreationDate: Sun Mar  2 10:47:45 2008
6
%%BoundingBox: 0 0 594 842
7
%%Pages: 1
8
%%DocumentData: Clean7Bit
9
%%Orientation: Landscape
10
%%DocumentNeededResources: font Helvetica-Bold
11
%%EndComments
12
 
13
%%BeginProlog
14
/CurrentEncoding [
15
/space/space/space/space/space/space/space/space
16
/space/space/space/space/space/space/space/space
17
/space/space/space/space/space/space/space/space
18
/space/space/space/space/space/space/space/space
19
/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle
20
/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash
21
/zero/one/two/three/four/five/six/seven
22
/eight/nine/colon/semicolon/less/equal/greater/question
23
/at/A/B/C/D/E/F/G
24
/H/I/J/K/L/M/N/O
25
/P/Q/R/S/T/U/V/W
26
/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore
27
/grave/a/b/c/d/e/f/g
28
/h/i/j/k/l/m/n/o
29
/p/q/r/s/t/u/v/w
30
/x/y/z/braceleft/bar/braceright/asciitilde/space
31
/space/space/space/space/space/space/space/space
32
/space/space/space/space/space/space/space/space
33
/space/space/space/space/space/space/space/space
34
/space/space/space/space/space/space/space/space
35
/space/exclamdown/cent/sterling/currency/yen/brokenbar/section
36
/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron
37
/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered
38
/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown
39
/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
40
/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
41
/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
42
/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
43
/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
44
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
45
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
46
/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
47
] def
48
 
49
50 dict begin
50
% This is a standard prolog for Postscript generated by Tk's canvas
51
% widget.
52
% RCS: @(#) $Id: mkpsenc.tcl,v 1.3 2002/07/19 14:37:21 drh Exp $
53
 
54
% The definitions below just define all of the variables used in
55
% any of the procedures here.  This is needed for obscure reasons
56
% explained on p. 716 of the Postscript manual (Section H.2.7,
57
% "Initializing Variables," in the section on Encapsulated Postscript).
58
 
59
/baseline 0 def
60
/stipimage 0 def
61
/height 0 def
62
/justify 0 def
63
/lineLength 0 def
64
/spacing 0 def
65
/stipple 0 def
66
/strings 0 def
67
/xoffset 0 def
68
/yoffset 0 def
69
/tmpstip null def
70
 
71
 
72
/cstringshow {
73
    {
74
        dup type /stringtype eq
75
        { show } { glyphshow }
76
        ifelse
77
    }
78
    forall
79
} bind def
80
 
81
 
82
 
83
/cstringwidth {
84
 
85
    {
86
        dup type /stringtype eq
87
        { stringwidth } {
88
            currentfont /Encoding get exch 1 exch put (\001) stringwidth
89
        }
90
        ifelse
91
        exch 3 1 roll add 3 1 roll add exch
92
    }
93
    forall
94
} bind def
95
 
96
% font ISOEncode font
97
% This procedure changes the encoding of a font from the default
98
% Postscript encoding to current system encoding.  It's typically invoked just
99
% before invoking "setfont".  The body of this procedure comes from
100
% Section 5.6.1 of the Postscript book.
101
 
102
/ISOEncode {
103
    dup length dict begin
104
        {1 index /FID ne {def} {pop pop} ifelse} forall
105
        /Encoding CurrentEncoding def
106
        currentdict
107
    end
108
 
109
    % I'm not sure why it's necessary to use "definefont" on this new
110
    % font, but it seems to be important; just use the name "Temporary"
111
    % for the font.
112
 
113
    /Temporary exch definefont
114
} bind def
115
 
116
% StrokeClip
117
%
118
% This procedure converts the current path into a clip area under
119
% the assumption of stroking.  It's a bit tricky because some Postscript
120
% interpreters get errors during strokepath for dashed lines.  If
121
% this happens then turn off dashes and try again.
122
 
123
/StrokeClip {
124
    {strokepath} stopped {
125
        (This Postscript printer gets limitcheck overflows when) =
126
        (stippling dashed lines;  lines will be printed solid instead.) =
127
        [] 0 setdash strokepath} if
128
    clip
129
} bind def
130
 
131
% desiredSize EvenPixels closestSize
132
%
133
% The procedure below is used for stippling.  Given the optimal size
134
% of a dot in a stipple pattern in the current user coordinate system,
135
% compute the closest size that is an exact multiple of the device's
136
% pixel size.  This allows stipple patterns to be displayed without
137
% aliasing effects.
138
 
139
/EvenPixels {
140
    % Compute exact number of device pixels per stipple dot.
141
    dup 0 matrix currentmatrix dtransform
142
    dup mul exch dup mul add sqrt
143
 
144
    % Round to an integer, make sure the number is at least 1, and compute
145
    % user coord distance corresponding to this.
146
    dup round dup 1 lt {pop 1} if
147
    exch div mul
148
} bind def
149
 
150
% width height string StippleFill --
151
%
152
% Given a path already set up and a clipping region generated from
153
% it, this procedure will fill the clipping region with a stipple
154
% pattern.  "String" contains a proper image description of the
155
% stipple pattern and "width" and "height" give its dimensions.  Each
156
% stipple dot is assumed to be about one unit across in the current
157
% user coordinate system.  This procedure trashes the graphics state.
158
 
159
/StippleFill {
160
    % The following code is needed to work around a NeWSprint bug.
161
 
162
    /tmpstip 1 index def
163
 
164
    % Change the scaling so that one user unit in user coordinates
165
    % corresponds to the size of one stipple dot.
166
    1 EvenPixels dup scale
167
 
168
    % Compute the bounding box occupied by the path (which is now
169
    % the clipping region), and round the lower coordinates down
170
    % to the nearest starting point for the stipple pattern.  Be
171
    % careful about negative numbers, since the rounding works
172
    % differently on them.
173
 
174
    pathbbox
175
    4 2 roll
176
    5 index div dup 0 lt {1 sub} if cvi 5 index mul 4 1 roll
177
    6 index div dup 0 lt {1 sub} if cvi 6 index mul 3 2 roll
178
 
179
    % Stack now: width height string y1 y2 x1 x2
180
    % Below is a doubly-nested for loop to iterate across this area
181
    % in units of the stipple pattern size, going up columns then
182
    % across rows, blasting out a stipple-pattern-sized rectangle at
183
    % each position
184
 
185
    6 index exch {
186
        2 index 5 index 3 index {
187
            % Stack now: width height string y1 y2 x y
188
 
189
            gsave
190
            1 index exch translate
191
            5 index 5 index true matrix tmpstip imagemask
192
            grestore
193
        } for
194
        pop
195
    } for
196
    pop pop pop pop pop
197
} bind def
198
 
199
% -- AdjustColor --
200
% Given a color value already set for output by the caller, adjusts
201
% that value to a grayscale or mono value if requested by the CL
202
% variable.
203
 
204
/AdjustColor {
205
    CL 2 lt {
206
        currentgray
207
        CL 0 eq {
208
            .5 lt {0} {1} ifelse
209
        } if
210
        setgray
211
    } if
212
} bind def
213
 
214
% x y strings spacing xoffset yoffset justify stipple DrawText --
215
% This procedure does all of the real work of drawing text.  The
216
% color and font must already have been set by the caller, and the
217
% following arguments must be on the stack:
218
%
219
% x, y -        Coordinates at which to draw text.
220
% strings -     An array of strings, one for each line of the text item,
221
%               in order from top to bottom.
222
% spacing -     Spacing between lines.
223
% xoffset -     Horizontal offset for text bbox relative to x and y: 0 for
224
%               nw/w/sw anchor, -0.5 for n/center/s, and -1.0 for ne/e/se.
225
% yoffset -     Vertical offset for text bbox relative to x and y: 0 for
226
%               nw/n/ne anchor, +0.5 for w/center/e, and +1.0 for sw/s/se.
227
% justify -     0 for left justification, 0.5 for center, 1 for right justify.
228
% stipple -     Boolean value indicating whether or not text is to be
229
%               drawn in stippled fashion.  If text is stippled,
230
%               procedure StippleText must have been defined to call
231
%               StippleFill in the right way.
232
%
233
% Also, when this procedure is invoked, the color and font must already
234
% have been set for the text.
235
 
236
/DrawText {
237
    /stipple exch def
238
    /justify exch def
239
    /yoffset exch def
240
    /xoffset exch def
241
    /spacing exch def
242
    /strings exch def
243
 
244
    % First scan through all of the text to find the widest line.
245
 
246
    /lineLength 0 def
247
    strings {
248
        cstringwidth pop
249
        dup lineLength gt {/lineLength exch def} {pop} ifelse
250
        newpath
251
    } forall
252
 
253
    % Compute the baseline offset and the actual font height.
254
 
255
 
256
    pathbbox dup /baseline exch def
257
    exch pop exch sub /height exch def pop
258
    newpath
259
 
260
    % Translate coordinates first so that the origin is at the upper-left
261
    % corner of the text's bounding box. Remember that x and y for
262
    % positioning are still on the stack.
263
 
264
    translate
265
    lineLength xoffset mul
266
    strings length 1 sub spacing mul height add yoffset mul translate
267
 
268
    % Now use the baseline and justification information to translate so
269
    % that the origin is at the baseline and positioning point for the
270
    % first line of text.
271
 
272
    justify lineLength mul baseline neg translate
273
 
274
    % Iterate over each of the lines to output it.  For each line,
275
    % compute its width again so it can be properly justified, then
276
    % display it.
277
 
278
    strings {
279
        dup cstringwidth pop
280
        justify neg mul 0 moveto
281
        stipple {
282
 
283
 
284
            % The text is stippled, so turn it into a path and print
285
            % by calling StippledText, which in turn calls StippleFill.
286
            % Unfortunately, many Postscript interpreters will get
287
            % overflow errors if we try to do the whole string at
288
            % once, so do it a character at a time.
289
 
290
            gsave
291
            /char (X) def
292
            {
293
                dup type /stringtype eq {
294
                    % This segment is a string.
295
                    {
296
                        char 0 3 -1 roll put
297
                        currentpoint
298
                        gsave
299
                        char true charpath clip StippleText
300
                        grestore
301
                        char stringwidth translate
302
                        moveto
303
                    } forall
304
                } {
305
                    % This segment is glyph name
306
                    % Temporary override
307
                    currentfont /Encoding get exch 1 exch put
308
                    currentpoint
309
                    gsave (\001) true charpath clip StippleText
310
                    grestore
311
                    (\001) stringwidth translate
312
                    moveto
313
                } ifelse
314
            } forall
315
            grestore
316
        } {cstringshow} ifelse
317
 
318
    } forall
319
} bind def
320
 
321
%%EndProlog
322
%%BeginSetup
323
/CL 2 def
324
%%IncludeResource: font Helvetica-Bold
325
%%EndSetup
326
 
327
%%Page: 1 1
328
save
329
0.0 0.0 translate
330
90 rotate
331
0.1909 0.1909 scale
332
187 -3111 translate
333
-187 3111 moveto 4218 3111 lineto 4218 0 lineto -187 0 lineto closepath clip newpath
334
gsave
335
 
336
1.000 1.000 1.000 setrgbcolor AdjustColor
337
fill
338
 
339
 
340
1 setlinewidth
341
[] 0 setdash
342
1.000 1.000 1.000 setrgbcolor AdjustColor
343
stroke
344
grestore
345
gsave
346
60 2139 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
347
1.000 1.000 1.000 setrgbcolor AdjustColor
348
fill
349
60 2139 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
350
 
351
1 setlinewidth
352
[] 0 setdash
353
0.000 0.000 0.000 setrgbcolor AdjustColor
354
stroke
355
grestore
356
gsave
357
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
358
0.000 0.000 0.000 setrgbcolor AdjustColor
359
129 2127 [
360
[(STATE_DCT_SUBS_B15)]
361
] 13 -0.5 0.5 0 false DrawText
362
grestore
363
gsave
364
grestore
365
gsave
366
53 2035 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
367
1.000 1.000 1.000 setrgbcolor AdjustColor
368
fill
369
53 2035 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
370
 
371
1 setlinewidth
372
[] 0 setdash
373
0.000 0.000 0.000 setrgbcolor AdjustColor
374
stroke
375
grestore
376
gsave
377
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
378
0.000 0.000 0.000 setrgbcolor AdjustColor
379
129 2023 [
380
[(STATE_DCT_ESCAPE_B15)]
381
] 13 -0.5 0.5 0 false DrawText
382
grestore
383
gsave
384
grestore
385
gsave
386
160 2451 moveto 188 0 rlineto 0 -24.0000000000001 rlineto -188 0 rlineto closepath
387
1.000 1.000 1.000 setrgbcolor AdjustColor
388
fill
389
160 2451 moveto 188 0 rlineto 0 -24.0000000000001 rlineto -188 0 rlineto closepath
390
 
391
1 setlinewidth
392
[] 0 setdash
393
0.000 0.000 0.000 setrgbcolor AdjustColor
394
stroke
395
grestore
396
gsave
397
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
398
0.000 0.000 0.000 setrgbcolor AdjustColor
399
254 2439 [
400
[(STATE_DCT_NON_INTRA_FIRST)]
401
] 13 -0.5 0.5 0 false DrawText
402
grestore
403
gsave
404
grestore
405
gsave
406
182 2243 moveto 146 0 rlineto 0 -24.0000000000001 rlineto -146 0 rlineto closepath
407
1.000 1.000 1.000 setrgbcolor AdjustColor
408
fill
409
182 2243 moveto 146 0 rlineto 0 -24.0000000000001 rlineto -146 0 rlineto closepath
410
 
411
1 setlinewidth
412
[] 0 setdash
413
0.000 0.000 0.000 setrgbcolor AdjustColor
414
stroke
415
grestore
416
gsave
417
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
418
0.000 0.000 0.000 setrgbcolor AdjustColor
419
255 2231 [
420
[(STATE_DCT_DC_DIFF_0)]
421
] 13 -0.5 0.5 0 false DrawText
422
grestore
423
gsave
424
grestore
425
gsave
426
290 2971 moveto 152 0 rlineto 0 -24 rlineto -152 0 rlineto closepath
427
1.000 1.000 1.000 setrgbcolor AdjustColor
428
fill
429
290 2971 moveto 152 0 rlineto 0 -24 rlineto -152 0 rlineto closepath
430
 
431
1 setlinewidth
432
[] 0 setdash
433
0.000 0.000 0.000 setrgbcolor AdjustColor
434
stroke
435
grestore
436
gsave
437
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
438
0.000 0.000 0.000 setrgbcolor AdjustColor
439
366 2959 [
440
[(STATE_DCT_ESCAPE_B14)]
441
] 13 -0.5 0.5 0 false DrawText
442
grestore
443
gsave
444
grestore
445
gsave
446
286 2347 moveto 132 0 rlineto 0 -24.0000000000001 rlineto -132 0 rlineto closepath
447
1.000 1.000 1.000 setrgbcolor AdjustColor
448
fill
449
286 2347 moveto 132 0 rlineto 0 -24.0000000000001 rlineto -132 0 rlineto closepath
450
 
451
1 setlinewidth
452
[] 0 setdash
453
0.000 0.000 0.000 setrgbcolor AdjustColor
454
stroke
455
grestore
456
gsave
457
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
458
0.000 0.000 0.000 setrgbcolor AdjustColor
459
352 2335 [
460
[(STATE_DCT_DC_DIFF)]
461
] 13 -0.5 0.5 0 false DrawText
462
grestore
463
gsave
464
grestore
465
gsave
466
409 2867 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
467
1.000 1.000 1.000 setrgbcolor AdjustColor
468
fill
469
409 2867 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
470
 
471
1 setlinewidth
472
[] 0 setdash
473
0.000 0.000 0.000 setrgbcolor AdjustColor
474
stroke
475
grestore
476
gsave
477
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
478
0.000 0.000 0.000 setrgbcolor AdjustColor
479
478 2855 [
480
[(STATE_DCT_SUBS_B14)]
481
] 13 -0.5 0.5 0 false DrawText
482
grestore
483
gsave
484
grestore
485
gsave
486
432 2763 moveto 118 0 rlineto 0 -24 rlineto -118 0 rlineto closepath
487
1.000 1.000 1.000 setrgbcolor AdjustColor
488
fill
489
432 2763 moveto 118 0 rlineto 0 -24 rlineto -118 0 rlineto closepath
490
 
491
1 setlinewidth
492
[] 0 setdash
493
0.000 0.000 0.000 setrgbcolor AdjustColor
494
stroke
495
grestore
496
gsave
497
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
498
0.000 0.000 0.000 setrgbcolor AdjustColor
499
491 2751 [
500
[(STATE_DCT_ERROR)]
501
] 13 -0.5 0.5 0 false DrawText
502
grestore
503
gsave
504
grestore
505
gsave
506
432 2451 moveto 180 0 rlineto 0 -24.0000000000001 rlineto -180 0 rlineto closepath
507
1.000 1.000 1.000 setrgbcolor AdjustColor
508
fill
509
432 2451 moveto 180 0 rlineto 0 -24.0000000000001 rlineto -180 0 rlineto closepath
510
 
511
1 setlinewidth
512
[] 0 setdash
513
0.000 0.000 0.000 setrgbcolor AdjustColor
514
stroke
515
grestore
516
gsave
517
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
518
0.000 0.000 0.000 setrgbcolor AdjustColor
519
522 2439 [
520
[(STATE_DCT_DC_CHROMI_SIZE)]
521
] 13 -0.5 0.5 0 false DrawText
522
grestore
523
gsave
524
grestore
525
gsave
526
593 2555 moveto 124 0 rlineto 0 -24.0000000000001 rlineto -124 0 rlineto closepath
527
1.000 1.000 1.000 setrgbcolor AdjustColor
528
fill
529
593 2555 moveto 124 0 rlineto 0 -24.0000000000001 rlineto -124 0 rlineto closepath
530
 
531
1 setlinewidth
532
[] 0 setdash
533
0.000 0.000 0.000 setrgbcolor AdjustColor
534
stroke
535
grestore
536
gsave
537
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
538
0.000 0.000 0.000 setrgbcolor AdjustColor
539
655 2543 [
540
[(STATE_NEXT_BLOCK)]
541
] 13 -0.5 0.5 0 false DrawText
542
grestore
543
gsave
544
grestore
545
gsave
546
553 2659 moveto 160 0 rlineto 0 -24.0000000000001 rlineto -160 0 rlineto closepath
547
1.000 1.000 1.000 setrgbcolor AdjustColor
548
fill
549
553 2659 moveto 160 0 rlineto 0 -24.0000000000001 rlineto -160 0 rlineto closepath
550
 
551
1 setlinewidth
552
[] 0 setdash
553
0.000 0.000 0.000 setrgbcolor AdjustColor
554
stroke
555
grestore
556
gsave
557
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
558
0.000 0.000 0.000 setrgbcolor AdjustColor
559
633 2647 [
560
[(STATE_NON_CODED_BLOCK)]
561
] 13 -0.5 0.5 0 false DrawText
562
grestore
563
gsave
564
grestore
565
gsave
566
652 2451 moveto 166 0 rlineto 0 -24.0000000000001 rlineto -166 0 rlineto closepath
567
1.000 1.000 1.000 setrgbcolor AdjustColor
568
fill
569
652 2451 moveto 166 0 rlineto 0 -24.0000000000001 rlineto -166 0 rlineto closepath
570
 
571
1 setlinewidth
572
[] 0 setdash
573
0.000 0.000 0.000 setrgbcolor AdjustColor
574
stroke
575
grestore
576
gsave
577
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
578
0.000 0.000 0.000 setrgbcolor AdjustColor
579
735 2439 [
580
[(STATE_DCT_DC_LUMI_SIZE)]
581
] 13 -0.5 0.5 0 false DrawText
582
grestore
583
gsave
584
grestore
585
gsave
586
2042 995 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
587
1.000 1.000 1.000 setrgbcolor AdjustColor
588
fill
589
2042 995 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
590
 
591
1 setlinewidth
592
[] 0 setdash
593
0.000 0.000 0.000 setrgbcolor AdjustColor
594
stroke
595
grestore
596
gsave
597
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
598
0.000 0.000 0.000 setrgbcolor AdjustColor
599
2122 983 [
600
[(STATE_NEXT_START_CODE)]
601
] 13 -0.5 0.5 0 false DrawText
602
grestore
603
gsave
604
grestore
605
gsave
606
2084 683 moveto 180 0 rlineto 0 -24 rlineto -180 0 rlineto closepath
607
1.000 1.000 1.000 setrgbcolor AdjustColor
608
fill
609
2084 683 moveto 180 0 rlineto 0 -24 rlineto -180 0 rlineto closepath
610
 
611
1 setlinewidth
612
[] 0 setdash
613
0.000 0.000 0.000 setrgbcolor AdjustColor
614
stroke
615
grestore
616
gsave
617
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
618
0.000 0.000 0.000 setrgbcolor AdjustColor
619
2174 671 [
620
[(STATE_PICTURE_CODING_EXT)]
621
] 13 -0.5 0.5 0 false DrawText
622
grestore
623
gsave
624
grestore
625
gsave
626
2086 371 moveto 208 0 rlineto 0 -24 rlineto -208 0 rlineto closepath
627
1.000 1.000 1.000 setrgbcolor AdjustColor
628
fill
629
2086 371 moveto 208 0 rlineto 0 -24 rlineto -208 0 rlineto closepath
630
 
631
1 setlinewidth
632
[] 0 setdash
633
0.000 0.000 0.000 setrgbcolor AdjustColor
634
stroke
635
grestore
636
gsave
637
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
638
0.000 0.000 0.000 setrgbcolor AdjustColor
639
2190 359 [
640
[(STATE_LD_CHROMA_INTRA_QUANT1)]
641
] 13 -0.5 0.5 0 false DrawText
642
grestore
643
gsave
644
grestore
645
gsave
646
2040 475 moveto 187.999999999999 0 rlineto 0 -24 rlineto -187.999999999999 0 rlineto closepath
647
1.000 1.000 1.000 setrgbcolor AdjustColor
648
fill
649
2040 475 moveto 187.999999999999 0 rlineto 0 -24 rlineto -187.999999999999 0 rlineto closepath
650
 
651
1 setlinewidth
652
[] 0 setdash
653
0.000 0.000 0.000 setrgbcolor AdjustColor
654
stroke
655
grestore
656
gsave
657
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
658
0.000 0.000 0.000 setrgbcolor AdjustColor
659
2134 463 [
660
[(STATE_PICTURE_CODING_EXT1)]
661
] 13 -0.5 0.5 0 false DrawText
662
grestore
663
gsave
664
grestore
665
gsave
666
2062 579 moveto 188 0 rlineto 0 -23.9999999999995 rlineto -188 0 rlineto closepath
667
1.000 1.000 1.000 setrgbcolor AdjustColor
668
fill
669
2062 579 moveto 188 0 rlineto 0 -23.9999999999995 rlineto -188 0 rlineto closepath
670
 
671
1 setlinewidth
672
[] 0 setdash
673
0.000 0.000 0.000 setrgbcolor AdjustColor
674
stroke
675
grestore
676
gsave
677
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
678
0.000 0.000 0.000 setrgbcolor AdjustColor
679
2156 567 [
680
[(STATE_PICTURE_CODING_EXT0)]
681
] 13 -0.5 0.5 0 false DrawText
682
grestore
683
gsave
684
grestore
685
gsave
686
2172 787 moveto 194 0 rlineto 0 -23.9999999999995 rlineto -194 0 rlineto closepath
687
1.000 1.000 1.000 setrgbcolor AdjustColor
688
fill
689
2172 787 moveto 194 0 rlineto 0 -23.9999999999995 rlineto -194 0 rlineto closepath
690
 
691
1 setlinewidth
692
[] 0 setdash
693
0.000 0.000 0.000 setrgbcolor AdjustColor
694
stroke
695
grestore
696
gsave
697
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
698
0.000 0.000 0.000 setrgbcolor AdjustColor
699
2269 775 [
700
[(STATE_EXTENSION_START_CODE)]
701
] 13 -0.5 0.5 0 false DrawText
702
grestore
703
gsave
704
grestore
705
gsave
706
2203 267 moveto 236 0 rlineto 0 -24.0000000000005 rlineto -236 0 rlineto closepath
707
1.000 1.000 1.000 setrgbcolor AdjustColor
708
fill
709
2203 267 moveto 236 0 rlineto 0 -24.0000000000005 rlineto -236 0 rlineto closepath
710
 
711
1 setlinewidth
712
[] 0 setdash
713
0.000 0.000 0.000 setrgbcolor AdjustColor
714
stroke
715
grestore
716
gsave
717
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
718
0.000 0.000 0.000 setrgbcolor AdjustColor
719
2321 255 [
720
[(STATE_LD_CHROMA_NON_INTRA_QUANT1)]
721
] 13 -0.5 0.5 0 false DrawText
722
grestore
723
gsave
724
grestore
725
gsave
726
2277 2035 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
727
1.000 1.000 1.000 setrgbcolor AdjustColor
728
fill
729
2277 2035 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
730
 
731
1 setlinewidth
732
[] 0 setdash
733
0.000 0.000 0.000 setrgbcolor AdjustColor
734
stroke
735
grestore
736
gsave
737
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
738
0.000 0.000 0.000 setrgbcolor AdjustColor
739
2357 2023 [
740
[(STATE_MACROBLOCK_TYPE)]
741
] 13 -0.5 0.5 0 false DrawText
742
grestore
743
gsave
744
grestore
745
gsave
746
2294 1515 moveto 188 0 rlineto 0 -24 rlineto -188 0 rlineto closepath
747
1.000 1.000 1.000 setrgbcolor AdjustColor
748
fill
749
2294 1515 moveto 188 0 rlineto 0 -24 rlineto -188 0 rlineto closepath
750
 
751
1 setlinewidth
752
[] 0 setdash
753
0.000 0.000 0.000 setrgbcolor AdjustColor
754
stroke
755
grestore
756
gsave
757
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
758
0.000 0.000 0.000 setrgbcolor AdjustColor
759
2388 1503 [
760
[(STATE_MOTION_VERT_FLD_SEL)]
761
] 13 -0.5 0.5 0 false DrawText
762
grestore
763
gsave
764
grestore
765
gsave
766
2300 1307 moveto 160 0 rlineto 0 -24.0000000000002 rlineto -160 0 rlineto closepath
767
1.000 1.000 1.000 setrgbcolor AdjustColor
768
fill
769
2300 1307 moveto 160 0 rlineto 0 -24.0000000000002 rlineto -160 0 rlineto closepath
770
 
771
1 setlinewidth
772
[] 0 setdash
773
0.000 0.000 0.000 setrgbcolor AdjustColor
774
stroke
775
grestore
776
gsave
777
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
778
0.000 0.000 0.000 setrgbcolor AdjustColor
779
2380 1295 [
780
[(STATE_MOTION_RESIDUAL)]
781
] 13 -0.5 0.5 0 false DrawText
782
grestore
783
gsave
784
grestore
785
gsave
786
2304 891 moveto 124 0 rlineto 0 -23.9999999999995 rlineto -124 0 rlineto closepath
787
1.000 1.000 1.000 setrgbcolor AdjustColor
788
fill
789
2304 891 moveto 124 0 rlineto 0 -23.9999999999995 rlineto -124 0 rlineto closepath
790
 
791
1 setlinewidth
792
[] 0 setdash
793
0.000 0.000 0.000 setrgbcolor AdjustColor
794
stroke
795
grestore
796
gsave
797
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
798
0.000 0.000 0.000 setrgbcolor AdjustColor
799
2366 879 [
800
[(STATE_START_CODE)]
801
] 13 -0.5 0.5 0 false DrawText
802
grestore
803
gsave
804
grestore
805
gsave
806
2228 1099 moveto 90.0000000000005 0 rlineto 0 -23.9999999999995 rlineto -90.0000000000005 0 rlineto closepath
807
1.000 1.000 1.000 setrgbcolor AdjustColor
808
fill
809
2228 1099 moveto 90.0000000000005 0 rlineto 0 -23.9999999999995 rlineto -90.0000000000005 0 rlineto closepath
810
 
811
1 setlinewidth
812
[] 0 setdash
813
0.000 0.000 0.000 setrgbcolor AdjustColor
814
stroke
815
grestore
816
gsave
817
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
818
0.000 0.000 0.000 setrgbcolor AdjustColor
819
2273 1087 [
820
[(STATE_ERROR)]
821
] 13 -0.5 0.5 0 false DrawText
822
grestore
823
gsave
824
grestore
825
gsave
826
2278 1203 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
827
1.000 1.000 1.000 setrgbcolor AdjustColor
828
fill
829
2278 1203 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
830
 
831
1 setlinewidth
832
[] 0 setdash
833
0.000 0.000 0.000 setrgbcolor AdjustColor
834
stroke
835
grestore
836
gsave
837
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
838
0.000 0.000 0.000 setrgbcolor AdjustColor
839
2358 1191 [
840
[(STATE_MOTION_DMVECTOR)]
841
] 13 -0.5 0.5 0 false DrawText
842
grestore
843
gsave
844
grestore
845
gsave
846
2259 1411 moveto 132 0 rlineto 0 -24.0000000000002 rlineto -132 0 rlineto closepath
847
1.000 1.000 1.000 setrgbcolor AdjustColor
848
fill
849
2259 1411 moveto 132 0 rlineto 0 -24.0000000000002 rlineto -132 0 rlineto closepath
850
 
851
1 setlinewidth
852
[] 0 setdash
853
0.000 0.000 0.000 setrgbcolor AdjustColor
854
stroke
855
grestore
856
gsave
857
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
858
0.000 0.000 0.000 setrgbcolor AdjustColor
859
2325 1399 [
860
[(STATE_MOTION_CODE)]
861
] 13 -0.5 0.5 0 false DrawText
862
grestore
863
gsave
864
grestore
865
gsave
866
2407 1723 moveto 166 0 rlineto 0 -24.0000000000002 rlineto -166 0 rlineto closepath
867
1.000 1.000 1.000 setrgbcolor AdjustColor
868
fill
869
2407 1723 moveto 166 0 rlineto 0 -24.0000000000002 rlineto -166 0 rlineto closepath
870
 
871
1 setlinewidth
872
[] 0 setdash
873
0.000 0.000 0.000 setrgbcolor AdjustColor
874
stroke
875
grestore
876
gsave
877
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
878
0.000 0.000 0.000 setrgbcolor AdjustColor
879
2490 1711 [
880
[(STATE_MACROBLOCK_QUANT)]
881
] 13 -0.5 0.5 0 false DrawText
882
grestore
883
gsave
884
grestore
885
gsave
886
2400 1619 moveto 180 0 rlineto 0 -24 rlineto -180 0 rlineto closepath
887
1.000 1.000 1.000 setrgbcolor AdjustColor
888
fill
889
2400 1619 moveto 180 0 rlineto 0 -24 rlineto -180 0 rlineto closepath
890
 
891
1 setlinewidth
892
[] 0 setdash
893
0.000 0.000 0.000 setrgbcolor AdjustColor
894
stroke
895
grestore
896
gsave
897
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
898
0.000 0.000 0.000 setrgbcolor AdjustColor
899
2490 1607 [
900
[(STATE_NEXT_MOTION_VECTOR)]
901
] 13 -0.5 0.5 0 false DrawText
902
grestore
903
gsave
904
grestore
905
gsave
906
2348 683 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
907
1.000 1.000 1.000 setrgbcolor AdjustColor
908
fill
909
2348 683 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
910
 
911
1 setlinewidth
912
[] 0 setdash
913
0.000 0.000 0.000 setrgbcolor AdjustColor
914
stroke
915
grestore
916
gsave
917
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
918
0.000 0.000 0.000 setrgbcolor AdjustColor
919
2431 671 [
920
[(STATE_QUANT_MATRIX_EXT)]
921
] 13 -0.5 0.5 0 false DrawText
922
grestore
923
gsave
924
grestore
925
gsave
926
2396 475 moveto 188 0 rlineto 0 -24 rlineto -188 0 rlineto closepath
927
1.000 1.000 1.000 setrgbcolor AdjustColor
928
fill
929
2396 475 moveto 188 0 rlineto 0 -24 rlineto -188 0 rlineto closepath
930
 
931
1 setlinewidth
932
[] 0 setdash
933
0.000 0.000 0.000 setrgbcolor AdjustColor
934
stroke
935
grestore
936
gsave
937
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
938
0.000 0.000 0.000 setrgbcolor AdjustColor
939
2490 463 [
940
[(STATE_LD_NON_INTRA_QUANT1)]
941
] 13 -0.5 0.5 0 false DrawText
942
grestore
943
gsave
944
grestore
945
gsave
946
2352 579 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
947
1.000 1.000 1.000 setrgbcolor AdjustColor
948
fill
949
2352 579 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
950
 
951
1 setlinewidth
952
[] 0 setdash
953
0.000 0.000 0.000 setrgbcolor AdjustColor
954
stroke
955
grestore
956
gsave
957
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
958
0.000 0.000 0.000 setrgbcolor AdjustColor
959
2432 567 [
960
[(STATE_LD_INTRA_QUANT1)]
961
] 13 -0.5 0.5 0 false DrawText
962
grestore
963
gsave
964
grestore
965
gsave
966
2398 1099 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
967
1.000 1.000 1.000 setrgbcolor AdjustColor
968
fill
969
2398 1099 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
970
 
971
1 setlinewidth
972
[] 0 setdash
973
0.000 0.000 0.000 setrgbcolor AdjustColor
974
stroke
975
grestore
976
gsave
977
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
978
0.000 0.000 0.000 setrgbcolor AdjustColor
979
2474 1087 [
980
[(STATE_MOTION_PREDICT)]
981
] 13 -0.5 0.5 0 false DrawText
982
grestore
983
gsave
984
grestore
985
gsave
986
2441 2347 moveto 160 0 rlineto 0 -24.0000000000001 rlineto -160 0 rlineto closepath
987
1.000 1.000 1.000 setrgbcolor AdjustColor
988
fill
989
2441 2347 moveto 160 0 rlineto 0 -24.0000000000001 rlineto -160 0 rlineto closepath
990
 
991
1 setlinewidth
992
[] 0 setdash
993
0.000 0.000 0.000 setrgbcolor AdjustColor
994
stroke
995
grestore
996
gsave
997
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
998
0.000 0.000 0.000 setrgbcolor AdjustColor
999
2521 2335 [
1000
[(STATE_MACROBLOCK_SKIP)]
1001
] 13 -0.5 0.5 0 false DrawText
1002
grestore
1003
gsave
1004
grestore
1005
gsave
1006
2467 1931 moveto 132 0 rlineto 0 -23.9999999999998 rlineto -132 0 rlineto closepath
1007
1.000 1.000 1.000 setrgbcolor AdjustColor
1008
fill
1009
2467 1931 moveto 132 0 rlineto 0 -23.9999999999998 rlineto -132 0 rlineto closepath
1010
 
1011
1 setlinewidth
1012
[] 0 setdash
1013
0.000 0.000 0.000 setrgbcolor AdjustColor
1014
stroke
1015
grestore
1016
gsave
1017
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1018
0.000 0.000 0.000 setrgbcolor AdjustColor
1019
2533 1919 [
1020
[(STATE_MOTION_TYPE)]
1021
] 13 -0.5 0.5 0 false DrawText
1022
grestore
1023
gsave
1024
grestore
1025
gsave
1026
2494 787 moveto 138 0 rlineto 0 -23.9999999999995 rlineto -138 0 rlineto closepath
1027
1.000 1.000 1.000 setrgbcolor AdjustColor
1028
fill
1029
2494 787 moveto 138 0 rlineto 0 -23.9999999999995 rlineto -138 0 rlineto closepath
1030
 
1031
1 setlinewidth
1032
[] 0 setdash
1033
0.000 0.000 0.000 setrgbcolor AdjustColor
1034
stroke
1035
grestore
1036
gsave
1037
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1038
0.000 0.000 0.000 setrgbcolor AdjustColor
1039
2563 775 [
1040
[(STATE_GROUP_HEADER)]
1041
] 13 -0.5 0.5 0 false DrawText
1042
grestore
1043
gsave
1044
grestore
1045
gsave
1046
2450 2139 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1047
1.000 1.000 1.000 setrgbcolor AdjustColor
1048
fill
1049
2450 2139 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1050
 
1051
1 setlinewidth
1052
[] 0 setdash
1053
0.000 0.000 0.000 setrgbcolor AdjustColor
1054
stroke
1055
grestore
1056
gsave
1057
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1058
0.000 0.000 0.000 setrgbcolor AdjustColor
1059
2533 2127 [
1060
[(STATE_EMIT_EMPTY_BLOCK)]
1061
] 13 -0.5 0.5 0 false DrawText
1062
grestore
1063
gsave
1064
grestore
1065
gsave
1066
2564 2243 moveto 174 0 rlineto 0 -24.0000000000001 rlineto -174 0 rlineto closepath
1067
1.000 1.000 1.000 setrgbcolor AdjustColor
1068
fill
1069
2564 2243 moveto 174 0 rlineto 0 -24.0000000000001 rlineto -174 0 rlineto closepath
1070
 
1071
1 setlinewidth
1072
[] 0 setdash
1073
0.000 0.000 0.000 setrgbcolor AdjustColor
1074
stroke
1075
grestore
1076
gsave
1077
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1078
0.000 0.000 0.000 setrgbcolor AdjustColor
1079
2651 2231 [
1080
[(STATE_DELAY_EMPTY_BLOCK)]
1081
] 13 -0.5 0.5 0 false DrawText
1082
grestore
1083
gsave
1084
grestore
1085
gsave
1086
2599 1307 moveto 188 0 rlineto 0 -24.0000000000002 rlineto -188 0 rlineto closepath
1087
1.000 1.000 1.000 setrgbcolor AdjustColor
1088
fill
1089
2599 1307 moveto 188 0 rlineto 0 -24.0000000000002 rlineto -188 0 rlineto closepath
1090
 
1091
1 setlinewidth
1092
[] 0 setdash
1093
0.000 0.000 0.000 setrgbcolor AdjustColor
1094
stroke
1095
grestore
1096
gsave
1097
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1098
0.000 0.000 0.000 setrgbcolor AdjustColor
1099
2693 1295 [
1100
[(STATE_CODED_BLOCK_PATTERN)]
1101
] 13 -0.5 0.5 0 false DrawText
1102
grestore
1103
gsave
1104
grestore
1105
gsave
1106
2576 683 moveto 194 0 rlineto 0 -24 rlineto -194 0 rlineto closepath
1107
1.000 1.000 1.000 setrgbcolor AdjustColor
1108
fill
1109
2576 683 moveto 194 0 rlineto 0 -24 rlineto -194 0 rlineto closepath
1110
 
1111
1 setlinewidth
1112
[] 0 setdash
1113
0.000 0.000 0.000 setrgbcolor AdjustColor
1114
stroke
1115
grestore
1116
gsave
1117
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1118
0.000 0.000 0.000 setrgbcolor AdjustColor
1119
2673 671 [
1120
[(STATE_SEQUENCE_DISPLAY_EXT)]
1121
] 13 -0.5 0.5 0 false DrawText
1122
grestore
1123
gsave
1124
grestore
1125
gsave
1126
2521 1827 moveto 110 0 rlineto 0 -24 rlineto -110 0 rlineto closepath
1127
1.000 1.000 1.000 setrgbcolor AdjustColor
1128
fill
1129
2521 1827 moveto 110 0 rlineto 0 -24 rlineto -110 0 rlineto closepath
1130
 
1131
1 setlinewidth
1132
[] 0 setdash
1133
0.000 0.000 0.000 setrgbcolor AdjustColor
1134
stroke
1135
grestore
1136
gsave
1137
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1138
0.000 0.000 0.000 setrgbcolor AdjustColor
1139
2576 1815 [
1140
[(STATE_DCT_TYPE)]
1141
] 13 -0.5 0.5 0 false DrawText
1142
grestore
1143
gsave
1144
grestore
1145
gsave
1146
2675 2451 moveto 160 0 rlineto 0 -24.0000000000001 rlineto -160 0 rlineto closepath
1147
1.000 1.000 1.000 setrgbcolor AdjustColor
1148
fill
1149
2675 2451 moveto 160 0 rlineto 0 -24.0000000000001 rlineto -160 0 rlineto closepath
1150
 
1151
1 setlinewidth
1152
[] 0 setdash
1153
0.000 0.000 0.000 setrgbcolor AdjustColor
1154
stroke
1155
grestore
1156
gsave
1157
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1158
0.000 0.000 0.000 setrgbcolor AdjustColor
1159
2755 2439 [
1160
[(STATE_NEXT_MACROBLOCK)]
1161
] 13 -0.5 0.5 0 false DrawText
1162
grestore
1163
gsave
1164
grestore
1165
gsave
1166
2695 1515 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1167
1.000 1.000 1.000 setrgbcolor AdjustColor
1168
fill
1169
2695 1515 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1170
 
1171
1 setlinewidth
1172
[] 0 setdash
1173
0.000 0.000 0.000 setrgbcolor AdjustColor
1174
stroke
1175
grestore
1176
gsave
1177
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1178
0.000 0.000 0.000 setrgbcolor AdjustColor
1179
2796 1503 [
1180
[(STATE_MOTION_PIPELINE_FLUSH)]
1181
] 13 -0.5 0.5 0 false DrawText
1182
grestore
1183
gsave
1184
grestore
1185
gsave
1186
2621 1203 moveto 202 0 rlineto 0 -23.9999999999995 rlineto -202 0 rlineto closepath
1187
1.000 1.000 1.000 setrgbcolor AdjustColor
1188
fill
1189
2621 1203 moveto 202 0 rlineto 0 -23.9999999999995 rlineto -202 0 rlineto closepath
1190
 
1191
1 setlinewidth
1192
[] 0 setdash
1193
0.000 0.000 0.000 setrgbcolor AdjustColor
1194
stroke
1195
grestore
1196
gsave
1197
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1198
0.000 0.000 0.000 setrgbcolor AdjustColor
1199
2722 1191 [
1200
[(STATE_CODED_BLOCK_PATTERN_1)]
1201
] 13 -0.5 0.5 0 false DrawText
1202
grestore
1203
gsave
1204
grestore
1205
gsave
1206
2627 1411 moveto 138 0 rlineto 0 -24.0000000000002 rlineto -138 0 rlineto closepath
1207
1.000 1.000 1.000 setrgbcolor AdjustColor
1208
fill
1209
2627 1411 moveto 138 0 rlineto 0 -24.0000000000002 rlineto -138 0 rlineto closepath
1210
 
1211
1 setlinewidth
1212
[] 0 setdash
1213
0.000 0.000 0.000 setrgbcolor AdjustColor
1214
stroke
1215
grestore
1216
gsave
1217
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1218
0.000 0.000 0.000 setrgbcolor AdjustColor
1219
2696 1399 [
1220
[(STATE_MARKER_BIT_0)]
1221
] 13 -0.5 0.5 0 false DrawText
1222
grestore
1223
gsave
1224
grestore
1225
gsave
1226
2662 579 moveto 202 0 rlineto 0 -23.9999999999995 rlineto -202 0 rlineto closepath
1227
1.000 1.000 1.000 setrgbcolor AdjustColor
1228
fill
1229
2662 579 moveto 202 0 rlineto 0 -23.9999999999995 rlineto -202 0 rlineto closepath
1230
 
1231
1 setlinewidth
1232
[] 0 setdash
1233
0.000 0.000 0.000 setrgbcolor AdjustColor
1234
stroke
1235
grestore
1236
gsave
1237
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1238
0.000 0.000 0.000 setrgbcolor AdjustColor
1239
2763 567 [
1240
[(STATE_SEQUENCE_DISPLAY_EXT0)]
1241
] 13 -0.5 0.5 0 false DrawText
1242
grestore
1243
gsave
1244
grestore
1245
gsave
1246
2684 371 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1247
1.000 1.000 1.000 setrgbcolor AdjustColor
1248
fill
1249
2684 371 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1250
 
1251
1 setlinewidth
1252
[] 0 setdash
1253
0.000 0.000 0.000 setrgbcolor AdjustColor
1254
stroke
1255
grestore
1256
gsave
1257
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1258
0.000 0.000 0.000 setrgbcolor AdjustColor
1259
2785 359 [
1260
[(STATE_SEQUENCE_DISPLAY_EXT2)]
1261
] 13 -0.5 0.5 0 false DrawText
1262
grestore
1263
gsave
1264
grestore
1265
gsave
1266
2646 475 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1267
1.000 1.000 1.000 setrgbcolor AdjustColor
1268
fill
1269
2646 475 moveto 202 0 rlineto 0 -24 rlineto -202 0 rlineto closepath
1270
 
1271
1 setlinewidth
1272
[] 0 setdash
1273
0.000 0.000 0.000 setrgbcolor AdjustColor
1274
stroke
1275
grestore
1276
gsave
1277
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1278
0.000 0.000 0.000 setrgbcolor AdjustColor
1279
2747 463 [
1280
[(STATE_SEQUENCE_DISPLAY_EXT1)]
1281
] 13 -0.5 0.5 0 false DrawText
1282
grestore
1283
gsave
1284
grestore
1285
gsave
1286
2694 787 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
1287
1.000 1.000 1.000 setrgbcolor AdjustColor
1288
fill
1289
2694 787 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
1290
 
1291
1 setlinewidth
1292
[] 0 setdash
1293
0.000 0.000 0.000 setrgbcolor AdjustColor
1294
stroke
1295
grestore
1296
gsave
1297
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1298
0.000 0.000 0.000 setrgbcolor AdjustColor
1299
2774 775 [
1300
[(STATE_SEQUENCE_HEADER)]
1301
] 13 -0.5 0.5 0 false DrawText
1302
grestore
1303
gsave
1304
grestore
1305
gsave
1306
2798 1099 moveto 90 0 rlineto 0 -23.9999999999995 rlineto -90 0 rlineto closepath
1307
1.000 1.000 1.000 setrgbcolor AdjustColor
1308
fill
1309
2798 1099 moveto 90 0 rlineto 0 -23.9999999999995 rlineto -90 0 rlineto closepath
1310
 
1311
1 setlinewidth
1312
[] 0 setdash
1313
0.000 0.000 0.000 setrgbcolor AdjustColor
1314
stroke
1315
grestore
1316
gsave
1317
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1318
0.000 0.000 0.000 setrgbcolor AdjustColor
1319
2843 1087 [
1320
[(STATE_BLOCK)]
1321
] 13 -0.5 0.5 0 false DrawText
1322
grestore
1323
gsave
1324
grestore
1325
gsave
1326
2863 1203 moveto 202 0 rlineto 0 -23.9999999999995 rlineto -202 0 rlineto closepath
1327
1.000 1.000 1.000 setrgbcolor AdjustColor
1328
fill
1329
2863 1203 moveto 202 0 rlineto 0 -23.9999999999995 rlineto -202 0 rlineto closepath
1330
 
1331
1 setlinewidth
1332
[] 0 setdash
1333
0.000 0.000 0.000 setrgbcolor AdjustColor
1334
stroke
1335
grestore
1336
gsave
1337
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1338
0.000 0.000 0.000 setrgbcolor AdjustColor
1339
2964 1191 [
1340
[(STATE_CODED_BLOCK_PATTERN_2)]
1341
] 13 -0.5 0.5 0 false DrawText
1342
grestore
1343
gsave
1344
grestore
1345
gsave
1346
2876 683 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
1347
1.000 1.000 1.000 setrgbcolor AdjustColor
1348
fill
1349
2876 683 moveto 138 0 rlineto 0 -24 rlineto -138 0 rlineto closepath
1350
 
1351
1 setlinewidth
1352
[] 0 setdash
1353
0.000 0.000 0.000 setrgbcolor AdjustColor
1354
stroke
1355
grestore
1356
gsave
1357
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1358
0.000 0.000 0.000 setrgbcolor AdjustColor
1359
2945 671 [
1360
[(STATE_SEQUENCE_EXT)]
1361
] 13 -0.5 0.5 0 false DrawText
1362
grestore
1363
gsave
1364
grestore
1365
gsave
1366
2894 787 moveto 138 0 rlineto 0 -23.9999999999995 rlineto -138 0 rlineto closepath
1367
1.000 1.000 1.000 setrgbcolor AdjustColor
1368
fill
1369
2894 787 moveto 138 0 rlineto 0 -23.9999999999995 rlineto -138 0 rlineto closepath
1370
 
1371
1 setlinewidth
1372
[] 0 setdash
1373
0.000 0.000 0.000 setrgbcolor AdjustColor
1374
stroke
1375
grestore
1376
gsave
1377
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1378
0.000 0.000 0.000 setrgbcolor AdjustColor
1379
2963 775 [
1380
[(STATE_SEQUENCE_END)]
1381
] 13 -0.5 0.5 0 false DrawText
1382
grestore
1383
gsave
1384
grestore
1385
gsave
1386
2948 475 moveto 146 0 rlineto 0 -24 rlineto -146 0 rlineto closepath
1387
1.000 1.000 1.000 setrgbcolor AdjustColor
1388
fill
1389
2948 475 moveto 146 0 rlineto 0 -24 rlineto -146 0 rlineto closepath
1390
 
1391
1 setlinewidth
1392
[] 0 setdash
1393
0.000 0.000 0.000 setrgbcolor AdjustColor
1394
stroke
1395
grestore
1396
gsave
1397
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1398
0.000 0.000 0.000 setrgbcolor AdjustColor
1399
3021 463 [
1400
[(STATE_SEQUENCE_EXT1)]
1401
] 13 -0.5 0.5 0 false DrawText
1402
grestore
1403
gsave
1404
grestore
1405
gsave
1406
3094 787 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
1407
1.000 1.000 1.000 setrgbcolor AdjustColor
1408
fill
1409
3094 787 moveto 152 0 rlineto 0 -23.9999999999995 rlineto -152 0 rlineto closepath
1410
 
1411
1 setlinewidth
1412
[] 0 setdash
1413
0.000 0.000 0.000 setrgbcolor AdjustColor
1414
stroke
1415
grestore
1416
gsave
1417
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1418
0.000 0.000 0.000 setrgbcolor AdjustColor
1419
3170 775 [
1420
[(STATE_PICTURE_HEADER)]
1421
] 13 -0.5 0.5 0 false DrawText
1422
grestore
1423
gsave
1424
grestore
1425
gsave
1426
3015 579 moveto 146 0 rlineto 0 -23.9999999999995 rlineto -146 0 rlineto closepath
1427
1.000 1.000 1.000 setrgbcolor AdjustColor
1428
fill
1429
3015 579 moveto 146 0 rlineto 0 -23.9999999999995 rlineto -146 0 rlineto closepath
1430
 
1431
1 setlinewidth
1432
[] 0 setdash
1433
0.000 0.000 0.000 setrgbcolor AdjustColor
1434
stroke
1435
grestore
1436
gsave
1437
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1438
0.000 0.000 0.000 setrgbcolor AdjustColor
1439
3088 567 [
1440
[(STATE_SEQUENCE_EXT0)]
1441
] 13 -0.5 0.5 0 false DrawText
1442
grestore
1443
gsave
1444
grestore
1445
gsave
1446
3054 683 moveto 146 0 rlineto 0 -24 rlineto -146 0 rlineto closepath
1447
1.000 1.000 1.000 setrgbcolor AdjustColor
1448
fill
1449
3054 683 moveto 146 0 rlineto 0 -24 rlineto -146 0 rlineto closepath
1450
 
1451
1 setlinewidth
1452
[] 0 setdash
1453
0.000 0.000 0.000 setrgbcolor AdjustColor
1454
stroke
1455
grestore
1456
gsave
1457
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1458
0.000 0.000 0.000 setrgbcolor AdjustColor
1459
3127 671 [
1460
[(STATE_GROUP_HEADER0)]
1461
] 13 -0.5 0.5 0 false DrawText
1462
grestore
1463
gsave
1464
grestore
1465
gsave
1466
3262 683 moveto 165.999999999999 0 rlineto 0 -24 rlineto -165.999999999999 0 rlineto closepath
1467
1.000 1.000 1.000 setrgbcolor AdjustColor
1468
fill
1469
3262 683 moveto 165.999999999999 0 rlineto 0 -24 rlineto -165.999999999999 0 rlineto closepath
1470
 
1471
1 setlinewidth
1472
[] 0 setdash
1473
0.000 0.000 0.000 setrgbcolor AdjustColor
1474
stroke
1475
grestore
1476
gsave
1477
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1478
0.000 0.000 0.000 setrgbcolor AdjustColor
1479
3345 671 [
1480
[(STATE_SEQUENCE_HEADER0)]
1481
] 13 -0.5 0.5 0 false DrawText
1482
grestore
1483
gsave
1484
grestore
1485
gsave
1486
3262 579 moveto 165.999999999999 0 rlineto 0 -23.9999999999995 rlineto -165.999999999999 0 rlineto closepath
1487
1.000 1.000 1.000 setrgbcolor AdjustColor
1488
fill
1489
3262 579 moveto 165.999999999999 0 rlineto 0 -23.9999999999995 rlineto -165.999999999999 0 rlineto closepath
1490
 
1491
1 setlinewidth
1492
[] 0 setdash
1493
0.000 0.000 0.000 setrgbcolor AdjustColor
1494
stroke
1495
grestore
1496
gsave
1497
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1498
0.000 0.000 0.000 setrgbcolor AdjustColor
1499
3345 567 [
1500
[(STATE_SEQUENCE_HEADER1)]
1501
] 13 -0.5 0.5 0 false DrawText
1502
grestore
1503
gsave
1504
grestore
1505
gsave
1506
3270 163 moveto 188 0 rlineto 0 -24.0000000000005 rlineto -188 0 rlineto closepath
1507
1.000 1.000 1.000 setrgbcolor AdjustColor
1508
fill
1509
3270 163 moveto 188 0 rlineto 0 -24.0000000000005 rlineto -188 0 rlineto closepath
1510
 
1511
1 setlinewidth
1512
[] 0 setdash
1513
0.000 0.000 0.000 setrgbcolor AdjustColor
1514
stroke
1515
grestore
1516
gsave
1517
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1518
0.000 0.000 0.000 setrgbcolor AdjustColor
1519
3364 151 [
1520
[(STATE_LD_NON_INTRA_QUANT0)]
1521
] 13 -0.5 0.5 0 false DrawText
1522
grestore
1523
gsave
1524
grestore
1525
gsave
1526
3239 475 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1527
1.000 1.000 1.000 setrgbcolor AdjustColor
1528
fill
1529
3239 475 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1530
 
1531
1 setlinewidth
1532
[] 0 setdash
1533
0.000 0.000 0.000 setrgbcolor AdjustColor
1534
stroke
1535
grestore
1536
gsave
1537
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1538
0.000 0.000 0.000 setrgbcolor AdjustColor
1539
3322 463 [
1540
[(STATE_SEQUENCE_HEADER2)]
1541
] 13 -0.5 0.5 0 false DrawText
1542
grestore
1543
gsave
1544
grestore
1545
gsave
1546
3374 787 moveto 89.9999999999995 0 rlineto 0 -23.9999999999995 rlineto -89.9999999999995 0 rlineto closepath
1547
1.000 1.000 1.000 setrgbcolor AdjustColor
1548
fill
1549
3374 787 moveto 89.9999999999995 0 rlineto 0 -23.9999999999995 rlineto -89.9999999999995 0 rlineto closepath
1550
 
1551
1 setlinewidth
1552
[] 0 setdash
1553
0.000 0.000 0.000 setrgbcolor AdjustColor
1554
stroke
1555
grestore
1556
gsave
1557
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1558
0.000 0.000 0.000 setrgbcolor AdjustColor
1559
3419 775 [
1560
[(STATE_SLICE)]
1561
] 13 -0.5 0.5 0 false DrawText
1562
grestore
1563
gsave
1564
grestore
1565
gsave
1566
3490 683 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1567
1.000 1.000 1.000 setrgbcolor AdjustColor
1568
fill
1569
3490 683 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1570
 
1571
1 setlinewidth
1572
[] 0 setdash
1573
0.000 0.000 0.000 setrgbcolor AdjustColor
1574
stroke
1575
grestore
1576
gsave
1577
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1578
0.000 0.000 0.000 setrgbcolor AdjustColor
1579
3570 671 [
1580
[(STATE_PICTURE_HEADER0)]
1581
] 13 -0.5 0.5 0 false DrawText
1582
grestore
1583
gsave
1584
grestore
1585
gsave
1586
3429 371 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1587
1.000 1.000 1.000 setrgbcolor AdjustColor
1588
fill
1589
3429 371 moveto 166 0 rlineto 0 -24 rlineto -166 0 rlineto closepath
1590
 
1591
1 setlinewidth
1592
[] 0 setdash
1593
0.000 0.000 0.000 setrgbcolor AdjustColor
1594
stroke
1595
grestore
1596
gsave
1597
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1598
0.000 0.000 0.000 setrgbcolor AdjustColor
1599
3512 359 [
1600
[(STATE_SEQUENCE_HEADER3)]
1601
] 13 -0.5 0.5 0 false DrawText
1602
grestore
1603
gsave
1604
grestore
1605
gsave
1606
3445 475 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1607
1.000 1.000 1.000 setrgbcolor AdjustColor
1608
fill
1609
3445 475 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1610
 
1611
1 setlinewidth
1612
[] 0 setdash
1613
0.000 0.000 0.000 setrgbcolor AdjustColor
1614
stroke
1615
grestore
1616
gsave
1617
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1618
0.000 0.000 0.000 setrgbcolor AdjustColor
1619
3525 463 [
1620
[(STATE_PICTURE_HEADER2)]
1621
] 13 -0.5 0.5 0 false DrawText
1622
grestore
1623
gsave
1624
grestore
1625
gsave
1626
3583 267 moveto 160 0 rlineto 0 -24.0000000000005 rlineto -160 0 rlineto closepath
1627
1.000 1.000 1.000 setrgbcolor AdjustColor
1628
fill
1629
3583 267 moveto 160 0 rlineto 0 -24.0000000000005 rlineto -160 0 rlineto closepath
1630
 
1631
1 setlinewidth
1632
[] 0 setdash
1633
0.000 0.000 0.000 setrgbcolor AdjustColor
1634
stroke
1635
grestore
1636
gsave
1637
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1638
0.000 0.000 0.000 setrgbcolor AdjustColor
1639
3663 255 [
1640
[(STATE_LD_INTRA_QUANT0)]
1641
] 13 -0.5 0.5 0 false DrawText
1642
grestore
1643
gsave
1644
grestore
1645
gsave
1646
3512 579 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
1647
1.000 1.000 1.000 setrgbcolor AdjustColor
1648
fill
1649
3512 579 moveto 160 0 rlineto 0 -23.9999999999995 rlineto -160 0 rlineto closepath
1650
 
1651
1 setlinewidth
1652
[] 0 setdash
1653
0.000 0.000 0.000 setrgbcolor AdjustColor
1654
stroke
1655
grestore
1656
gsave
1657
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1658
0.000 0.000 0.000 setrgbcolor AdjustColor
1659
3592 567 [
1660
[(STATE_PICTURE_HEADER1)]
1661
] 13 -0.5 0.5 0 false DrawText
1662
grestore
1663
gsave
1664
grestore
1665
gsave
1666
3756 683 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1667
1.000 1.000 1.000 setrgbcolor AdjustColor
1668
fill
1669
3756 683 moveto 160 0 rlineto 0 -24 rlineto -160 0 rlineto closepath
1670
 
1671
1 setlinewidth
1672
[] 0 setdash
1673
0.000 0.000 0.000 setrgbcolor AdjustColor
1674
stroke
1675
grestore
1676
gsave
1677
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1678
0.000 0.000 0.000 setrgbcolor AdjustColor
1679
3836 671 [
1680
[(STATE_SLICE_EXTENSION)]
1681
] 13 -0.5 0.5 0 false DrawText
1682
grestore
1683
gsave
1684
grestore
1685
gsave
1686
3796 579 moveto 216 0 rlineto 0 -23.9999999999995 rlineto -216 0 rlineto closepath
1687
1.000 1.000 1.000 setrgbcolor AdjustColor
1688
fill
1689
3796 579 moveto 216 0 rlineto 0 -23.9999999999995 rlineto -216 0 rlineto closepath
1690
 
1691
1 setlinewidth
1692
[] 0 setdash
1693
0.000 0.000 0.000 setrgbcolor AdjustColor
1694
stroke
1695
grestore
1696
gsave
1697
/Helvetica-Bold findfont 12 scalefont ISOEncode setfont
1698
0.000 0.000 0.000 setrgbcolor AdjustColor
1699
3904 567 [
1700
[(STATE_SLICE_EXTRA_INFORMATION)]
1701
] 13 -0.5 0.5 0 false DrawText
1702
grestore
1703
gsave
1704
grestore
1705
gsave
1706
240 2219 moveto
1707
191 2179 lineto
1708
148.028700316512 2143.19058359709 lineto
1709
 
1710
1 setlinejoin
1711
1 setlinewidth
1712
[] 0 setdash
1713
0.000 0.000 0.000 setrgbcolor AdjustColor
1714
stroke
1715
143 2139 moveto
1716
155.741077959002 2142.45686772131 lineto
1717
152.53951577628 2146.29874234057 lineto
1718
151.899331376616 2147.06696362017 lineto
1719
148.697769193894 2150.90883823944 lineto
1720
143 2139 lineto
1721
fill
1722
grestore
1723
gsave
1724
616.875018350554 2528.69058068955 moveto
1725
501 2485 lineto
1726
379 2439 lineto
1727
265 2387 lineto
1728
151 2335 lineto
1729
151 2283 lineto
1730
151 2231 lineto
1731
141 2185 lineto
1732
131 2139 lineto
1733
 
1734
1 setlinejoin
1735
1 setlinewidth
1736
[] 0 setdash
1737
0.000 0.000 0.000 setrgbcolor AdjustColor
1738
stroke
1739
623 2531 moveto
1740
609.82992264031 2531.91327123012 lineto
1741
611.594294918553 2527.23384910086 lineto
1742
611.947098813423 2526.29815181447 lineto
1743
613.711471091667 2521.61872968522 lineto
1744
623 2531 lineto
1745
fill
1746
grestore
1747
gsave
1748
grestore
1749
gsave
1750
grestore
1751
gsave
1752
grestore
1753
gsave
1754
442.708935639748 2737.19131899643 moveto
1755
289 2693 lineto
1756
129 2647 lineto
1757
129 2595 lineto
1758
129 2543 lineto
1759
129 2491 lineto
1760
129 2439 lineto
1761
129 2387 lineto
1762
129 2335 lineto
1763
129 2283 lineto
1764
129 2231 lineto
1765
129 2185 lineto
1766
129 2139 lineto
1767
 
1768
1 setlinejoin
1769
1 setlinewidth
1770
[] 0 setdash
1771
0.000 0.000 0.000 setrgbcolor AdjustColor
1772
stroke
1773
449 2739 moveto
1774
435.946240139274 2740.97087683494 lineto
1775
437.328053571098 2736.16456924598 lineto
1776
437.604360995978 2735.20349994205 lineto
1777
438.986174427802 2730.3971923531 lineto
1778
449 2739 lineto
1779
fill
1780
grestore
1781
gsave
1782
grestore
1783
gsave
1784
grestore
1785
gsave
1786
grestore
1787
gsave
1788
grestore
1789
gsave
1790
grestore
1791
gsave
1792
60 2127 moveto
1793
46.66 2113.66 36.67 2110.33 30 2117 curveto
1794
23.33 2123.67 23.33 2130.33 30 2137 curveto
1795
36.67 2143.67 45.1186592602035 2141.8813407398 55.3713491297401 2131.62865087026 curveto
1796
 
1797
1 setlinejoin
1798
1 setlinewidth
1799
[] 0 setdash
1800
0.000 0.000 0.000 setrgbcolor AdjustColor
1801
stroke
1802
60 2127 moveto
1803
55.4038059222875 2139.37578288433 lineto
1804
51.8675649095736 2135.83954187161 lineto
1805
51.160458128387 2135.13243509043 lineto
1806
47.6242171156731 2131.59619407771 lineto
1807
60 2127 lineto
1808
fill
1809
grestore
1810
gsave
1811
grestore
1812
gsave
1813
130.587614150736 2108.64954339705 moveto
1814
134 2095 lineto
1815
139 2075 lineto
1816
134 2055 lineto
1817
129 2035 lineto
1818
 
1819
1 setlinejoin
1820
1 setlinewidth
1821
[] 0 setdash
1822
0.000 0.000 0.000 setrgbcolor AdjustColor
1823
stroke
1824
129 2115 moveto
1825
126.573916142762 2102.02313138243 lineto
1826
131.425598785988 2103.23605204324 lineto
1827
132.395741286134 2103.47858766827 lineto
1828
137.24742392936 2104.69150832908 lineto
1829
129 2115 lineto
1830
fill
1831
grestore
1832
gsave
1833
129 2115 moveto
1834
129 2095 lineto
1835
129 2075 lineto
1836
129 2055 lineto
1837
129 2041.54590083621 lineto
1838
 
1839
1 setlinejoin
1840
1 setlinewidth
1841
[] 0 setdash
1842
0.000 0.000 0.000 setrgbcolor AdjustColor
1843
stroke
1844
129 2035 moveto
1845
134.501 2047.001 lineto
1846
129.5 2047.001 lineto
1847
128.5 2047.001 lineto
1848
123.499 2047.001 lineto
1849
129 2035 lineto
1850
fill
1851
grestore
1852
gsave
1853
608 2531 moveto
1854
454 2491 lineto
1855
306.335670740304 2452.64562876372 lineto
1856
 
1857
1 setlinejoin
1858
1 setlinewidth
1859
[] 0 setdash
1860
0.000 0.000 0.000 setrgbcolor AdjustColor
1861
stroke
1862
300 2451 moveto
1863
312.998514721288 2448.69270352134 lineto
1864
311.741271500949 2453.53308991964 lineto
1865
311.489873136554 2454.50097362256 lineto
1866
310.232629916215 2459.34136002087 lineto
1867
300 2451 lineto
1868
fill
1869
grestore
1870
gsave
1871
348.182668574714 2942.56805508874 moveto
1872
303 2901 lineto
1873
254 2855 lineto
1874
254 2803 lineto
1875
254 2751 lineto
1876
254 2699 lineto
1877
254 2647 lineto
1878
254 2595 lineto
1879
254 2543 lineto
1880
254 2497 lineto
1881
254 2451 lineto
1882
 
1883
1 setlinejoin
1884
1 setlinewidth
1885
[] 0 setdash
1886
0.000 0.000 0.000 setrgbcolor AdjustColor
1887
stroke
1888
353 2947 moveto
1889
340.443603951801 2942.92300106932 lineto
1890
343.829563662436 2939.2426100795 lineto
1891
344.506620193257 2938.50667906774 lineto
1892
347.892579903892 2934.82628807792 lineto
1893
353 2947 lineto
1894
fill
1895
grestore
1896
gsave
1897
grestore
1898
gsave
1899
grestore
1900
gsave
1901
grestore
1902
gsave
1903
grestore
1904
gsave
1905
459.016977300997 2838.75520288603 moveto
1906
410 2797 lineto
1907
357 2751 lineto
1908
357 2699 lineto
1909
357 2647 lineto
1910
357 2595 lineto
1911
357 2543 lineto
1912
311 2497 lineto
1913
265 2451 lineto
1914
 
1915
1 setlinejoin
1916
1 setlinewidth
1917
[] 0 setdash
1918
0.000 0.000 0.000 setrgbcolor AdjustColor
1919
stroke
1920
464 2843 moveto
1921
451.297106018675 2839.40535307725 lineto
1922
454.540086763129 2835.59837568159 lineto
1923
455.188553218729 2834.8371324511 lineto
1924
458.431533963184 2831.03015505544 lineto
1925
464 2843 lineto
1926
fill
1927
grestore
1928
gsave
1929
grestore
1930
gsave
1931
grestore
1932
gsave
1933
grestore
1934
gsave
1935
465.109175056215 2837.73594272311 moveto
1936
435 2797 lineto
1937
401 2751 lineto
1938
401 2699 lineto
1939
401 2647 lineto
1940
401 2595 lineto
1941
401 2543 lineto
1942
401 2491 lineto
1943
401 2439 lineto
1944
328 2387 lineto
1945
255 2335 lineto
1946
255 2289 lineto
1947
255 2243 lineto
1948
 
1949
1 setlinejoin
1950
1 setlinewidth
1951
[] 0 setdash
1952
0.000 0.000 0.000 setrgbcolor AdjustColor
1953
stroke
1954
469 2843 moveto
1955
457.442939921727 2836.61882735328 lineto
1956
461.4646248052 2833.6462776568 lineto
1957
462.268800946666 2833.05188659572 lineto
1958
466.29048583014 2830.07933689924 lineto
1959
469 2843 lineto
1960
fill
1961
grestore
1962
gsave
1963
grestore
1964
gsave
1965
grestore
1966
gsave
1967
grestore
1968
gsave
1969
grestore
1970
gsave
1971
grestore
1972
gsave
1973
340 2323 moveto
1974
303 2283 lineto
1975
270.444941475292 2247.80534213545 lineto
1976
 
1977
1 setlinejoin
1978
1 setlinewidth
1979
[] 0 setdash
1980
0.000 0.000 0.000 setrgbcolor AdjustColor
1981
stroke
1982
266 2243 moveto
1983
278.187463838556 2248.0745174336 lineto
1984
274.516232541184 2251.47040638367 lineto
1985
273.782133101598 2252.14944836529 lineto
1986
270.110901804226 2255.54533731535 lineto
1987
266 2243 lineto
1988
fill
1989
grestore
1990
gsave
1991
473.182668574714 2734.56805508874 moveto
1992
428 2693 lineto
1993
379 2647 lineto
1994
379 2595 lineto
1995
379 2543 lineto
1996
323 2497 lineto
1997
268 2451 lineto
1998
 
1999
1 setlinejoin
2000
1 setlinewidth
2001
[] 0 setdash
2002
0.000 0.000 0.000 setrgbcolor AdjustColor
2003
stroke
2004
478 2739 moveto
2005
465.443603951801 2734.92300106932 lineto
2006
468.829563662436 2731.2426100795 lineto
2007
469.506620193257 2730.50667906774 lineto
2008
472.892579903892 2726.82628807792 lineto
2009
478 2739 lineto
2010
fill
2011
grestore
2012
gsave
2013
grestore
2014
gsave
2015
grestore
2016
gsave
2017
383.446518717476 2943.36898752168 moveto
2018
402 2931 lineto
2019
427 2915 lineto
2020
446 2891 lineto
2021
465 2867 lineto
2022
 
2023
1 setlinejoin
2024
1 setlinewidth
2025
[] 0 setdash
2026
0.000 0.000 0.000 setrgbcolor AdjustColor
2027
stroke
2028
378 2947 moveto
2029
384.934029802913 2935.76593427595 lineto
2030
387.708085484236 2939.92701779793 lineto
2031
388.262785680461 2940.75906809227 lineto
2032
391.036841361783 2944.92015161425 lineto
2033
378 2947 lineto
2034
fill
2035
grestore
2036
gsave
2037
378 2947 moveto
2038
399 2927 lineto
2039
421 2907 lineto
2040
443 2887 lineto
2041
460.156425654811 2871.40324940472 lineto
2042
 
2043
1 setlinejoin
2044
1 setlinewidth
2045
[] 0 setdash
2046
0.000 0.000 0.000 setrgbcolor AdjustColor
2047
stroke
2048
465 2867 moveto
2049
459.820352218949 2879.1431565445 lineto
2050
456.456315576174 2875.44271623745 lineto
2051
455.783642782177 2874.70277616405 lineto
2052
452.419606139402 2871.002335857 lineto
2053
465 2867 lineto
2054
fill
2055
grestore
2056
gsave
2057
502 2427 moveto
2058
436 2387 lineto
2059
376.574870887483 2350.43068977691 lineto
2060
 
2061
1 setlinejoin
2062
1 setlinewidth
2063
[] 0 setdash
2064
0.000 0.000 0.000 setrgbcolor AdjustColor
2065
stroke
2066
371 2347 moveto
2067
384.103811397351 2348.60472080521 lineto
2068
381.482800171603 2352.86386404705 lineto
2069
380.958702745939 2353.71552236375 lineto
2070
378.337691520192 2357.97466560559 lineto
2071
371 2347 lineto
2072
fill
2073
grestore
2074
gsave
2075
690 2427 moveto
2076
543 2387 lineto
2077
402.316238817889 2348.71870444024 lineto
2078
 
2079
1 setlinejoin
2080
1 setlinewidth
2081
[] 0 setdash
2082
0.000 0.000 0.000 setrgbcolor AdjustColor
2083
stroke
2084
396 2347 moveto
2085
409.024299834734 2344.84300769242 lineto
2086
407.711227559319 2349.66854830458 lineto
2087
407.448665616624 2350.63346344398 lineto
2088
406.135593341208 2355.45900405613 lineto
2089
396 2347 lineto
2090
fill
2091
grestore
2092
gsave
2093
479 2843 moveto
2094
484 2803 lineto
2095
488.188080927133 2769.49535258293 lineto
2096
 
2097
1 setlinejoin
2098
1 setlinewidth
2099
[] 0 setdash
2100
0.000 0.000 0.000 setrgbcolor AdjustColor
2101
stroke
2102
489 2763 moveto
2103
492.969979749997 2775.59064187342 lineto
2104
488.007598088552 2774.97034416574 lineto
2105
487.015320211838 2774.84630943115 lineto
2106
482.052938550393 2774.22601172347 lineto
2107
489 2763 lineto
2108
fill
2109
grestore
2110
gsave
2111
409 2855 moveto
2112
395.66 2841.66 385.67 2838.33 379 2845 curveto
2113
372.33 2851.67 372.33 2858.33 379 2865 curveto
2114
385.67 2871.67 394.118659260204 2869.8813407398 404.37134912974 2859.62865087026 curveto
2115
 
2116
1 setlinejoin
2117
1 setlinewidth
2118
[] 0 setdash
2119
0.000 0.000 0.000 setrgbcolor AdjustColor
2120
stroke
2121
409 2855 moveto
2122
404.403805922288 2867.37578288433 lineto
2123
400.867564909574 2863.83954187161 lineto
2124
400.160458128387 2863.13243509043 lineto
2125
396.624217115673 2859.59619407771 lineto
2126
409 2855 lineto
2127
fill
2128
grestore
2129
gsave
2130
grestore
2131
gsave
2132
508 2843 moveto
2133
626 2797 lineto
2134
744 2751 lineto
2135
744 2699 lineto
2136
744 2647 lineto
2137
704 2601 lineto
2138
669.233137529444 2559.99293144499 lineto
2139
 
2140
1 setlinejoin
2141
1 setlinewidth
2142
[] 0 setdash
2143
0.000 0.000 0.000 setrgbcolor AdjustColor
2144
stroke
2145
665 2555 moveto
2146
676.956795760906 2560.59643074932 lineto
2147
673.142248186607 2563.83050369275 lineto
2148
672.37949122314 2564.47718894439 lineto
2149
668.564943648841 2567.71126188781 lineto
2150
665 2555 lineto
2151
fill
2152
grestore
2153
gsave
2154
grestore
2155
gsave
2156
grestore
2157
gsave
2158
491 2732.45409916379 moveto
2159
491 2693 lineto
2160
491 2647 lineto
2161
491 2595 lineto
2162
491 2543 lineto
2163
504 2497 lineto
2164
518 2451 lineto
2165
 
2166
1 setlinejoin
2167
1 setlinewidth
2168
[] 0 setdash
2169
0.000 0.000 0.000 setrgbcolor AdjustColor
2170
stroke
2171
491 2739 moveto
2172
485.499 2726.999 lineto
2173
490.5 2726.999 lineto
2174
491.5 2726.999 lineto
2175
496.501 2726.999 lineto
2176
491 2739 lineto
2177
fill
2178
grestore
2179
gsave
2180
grestore
2181
gsave
2182
grestore
2183
gsave
2184
507 2739 moveto
2185
561 2699 lineto
2186
610.706093789485 2662.85011360765 lineto
2187
 
2188
1 setlinejoin
2189
1 setlinewidth
2190
[] 0 setdash
2191
0.000 0.000 0.000 setrgbcolor AdjustColor
2192
stroke
2193
616 2659 moveto
2194
609.529890761188 2670.50750574355 lineto
2195
606.588444101115 2666.46301658595 lineto
2196
606.00027240344 2665.65428050165 lineto
2197
603.058825743367 2661.60979134405 lineto
2198
616 2659 lineto
2199
fill
2200
grestore
2201
gsave
2202
528.124981649446 2736.69058068955 moveto
2203
644 2693 lineto
2204
766 2647 lineto
2205
766 2595 lineto
2206
766 2543 lineto
2207
752 2497 lineto
2208
738 2451 lineto
2209
 
2210
1 setlinejoin
2211
1 setlinewidth
2212
[] 0 setdash
2213
0.000 0.000 0.000 setrgbcolor AdjustColor
2214
stroke
2215
522 2739 moveto
2216
531.288528908333 2729.61872968522 lineto
2217
533.052901186577 2734.29815181447 lineto
2218
533.405705081447 2735.23384910086 lineto
2219
535.170077359691 2739.91327123012 lineto
2220
522 2739 lineto
2221
fill
2222
grestore
2223
gsave
2224
grestore
2225
gsave
2226
grestore
2227
gsave
2228
639 2531 moveto
2229
588 2491 lineto
2230
542.150664442646 2455.03973681776 lineto
2231
 
2232
1 setlinejoin
2233
1 setlinewidth
2234
[] 0 setdash
2235
0.000 0.000 0.000 setrgbcolor AdjustColor
2236
stroke
2237
537 2451 moveto
2238
549.83791464512 2454.07781571323 lineto
2239
546.751597829279 2458.01286965343 lineto
2240
546.134457894098 2458.79972307079 lineto
2241
543.048141078257 2462.73477701098 lineto
2242
537 2451 lineto
2243
fill
2244
grestore
2245
gsave
2246
637.658542124557 2629.01828021975 moveto
2247
643 2617 lineto
2248
652 2598 lineto
2249
652 2577 lineto
2250
652 2555 lineto
2251
 
2252
1 setlinejoin
2253
1 setlinewidth
2254
[] 0 setdash
2255
0.000 0.000 0.000 setrgbcolor AdjustColor
2256
stroke
2257
635 2635 moveto
2258
634.847190402147 2621.79917990325 lineto
2259
639.417161956797 2623.83027837198 lineto
2260
640.330973505418 2624.23641683803 lineto
2261
644.900945060068 2626.26751530677 lineto
2262
635 2635 lineto
2263
fill
2264
grestore
2265
gsave
2266
635 2635 moveto
2267
639 2615 lineto
2268
643 2595 lineto
2269
647 2575 lineto
2270
650.412385849264 2561.35045660295 lineto
2271
 
2272
1 setlinejoin
2273
1 setlinewidth
2274
[] 0 setdash
2275
0.000 0.000 0.000 setrgbcolor AdjustColor
2276
stroke
2277
652 2555 moveto
2278
654.426083857238 2567.97686861757 lineto
2279
649.574401214012 2566.76394795676 lineto
2280
648.604258713866 2566.52141233173 lineto
2281
643.75257607064 2565.30849167092 lineto
2282
652 2555 lineto
2283
fill
2284
grestore
2285
gsave
2286
717 2539 moveto
2287
1419 2489 lineto
2288
2122 2439 lineto
2289
2122 2387 lineto
2290
2122 2335 lineto
2291
2122 2283 lineto
2292
2122 2231 lineto
2293
2122 2179 lineto
2294
2122 2127 lineto
2295
2122 2075 lineto
2296
2122 2023 lineto
2297
2122 1971 lineto
2298
2122 1919 lineto
2299
2122 1867 lineto
2300
2122 1815 lineto
2301
2122 1763 lineto
2302
2122 1711 lineto
2303
2122 1659 lineto
2304
2122 1607 lineto
2305
2122 1555 lineto
2306
2122 1503 lineto
2307
2122 1451 lineto
2308
2122 1399 lineto
2309
2122 1347 lineto
2310
2122 1295 lineto
2311
2122 1243 lineto
2312
2122 1191 lineto
2313
2122 1139 lineto
2314
2122 1087 lineto
2315
2122 1041 lineto
2316
2122 1001.54590083621 lineto
2317
 
2318
1 setlinejoin
2319
1 setlinewidth
2320
[] 0 setdash
2321
0.000 0.000 0.000 setrgbcolor AdjustColor
2322
stroke
2323
2122 995 moveto
2324
2127.501 1007.001 lineto
2325
2122.5 1007.001 lineto
2326
2121.5 1007.001 lineto
2327
2116.499 1007.001 lineto
2328
2122 995 lineto
2329
fill
2330
grestore
2331
gsave
2332
grestore
2333
gsave
2334
grestore
2335
gsave
2336
grestore
2337
gsave
2338
grestore
2339
gsave
2340
grestore
2341
gsave
2342
grestore
2343
gsave
2344
grestore
2345
gsave
2346
grestore
2347
gsave
2348
grestore
2349
gsave
2350
grestore
2351
gsave
2352
grestore
2353
gsave
2354
grestore
2355
gsave
2356
grestore
2357
gsave
2358
grestore
2359
gsave
2360
664 2531 moveto
2361
694 2491 lineto
2362
720.990166622984 2456.17397855099 lineto
2363
 
2364
1 setlinejoin
2365
1 setlinewidth
2366
[] 0 setdash
2367
0.000 0.000 0.000 setrgbcolor AdjustColor
2368
stroke
2369
725 2451 moveto
2370
721.996600645121 2463.85552777272 lineto
2371
718.043734969193 2460.79205687387 lineto
2372
717.253319917017 2460.17948520844 lineto
2373
713.300454241089 2457.11601430959 lineto
2374
725 2451 lineto
2375
fill
2376
grestore
2377
gsave
2378
593 2543 moveto
2379
579.66 2529.66 569.67 2526.33 563 2533 curveto
2380
556.33 2539.67 556.33 2546.33 563 2553 curveto
2381
569.67 2559.67 578.118659260204 2557.8813407398 588.37134912974 2547.62865087026 curveto
2382
 
2383
1 setlinejoin
2384
1 setlinewidth
2385
[] 0 setdash
2386
0.000 0.000 0.000 setrgbcolor AdjustColor
2387
stroke
2388
593 2543 moveto
2389
588.403805922287 2555.37578288433 lineto
2390
584.867564909574 2551.83954187161 lineto
2391
584.160458128387 2551.13243509043 lineto
2392
580.624217115673 2547.59619407771 lineto
2393
593 2543 lineto
2394
fill
2395
grestore
2396
gsave
2397
grestore
2398
gsave
2399
717 2540 moveto
2400
1696 2492 lineto
2401
2668.46228289151 2443.32721975313 lineto
2402
 
2403
1 setlinejoin
2404
1 setlinewidth
2405
[] 0 setdash
2406
0.000 0.000 0.000 setrgbcolor AdjustColor
2407
stroke
2408
2675 2443 moveto
2409
2663.28899045751 2449.09403458275 lineto
2410
2663.03899797728 2444.09928686542 lineto
2411
2662.98900947893 2443.10053707191 lineto
2412
2662.7390169987 2438.10578935457 lineto
2413
2675 2443 lineto
2414
fill
2415
grestore
2416
gsave
2417
723.53999706608 2540.72205012469 moveto
2418
1917 2490 lineto
2419
3118 2439 lineto
2420
3118 2387 lineto
2421
3118 2335 lineto
2422
3118 2283 lineto
2423
3118 2231 lineto
2424
3118 2179 lineto
2425
3118 2127 lineto
2426
3118 2075 lineto
2427
3118 2023 lineto
2428
3118 1971 lineto
2429
3118 1919 lineto
2430
3118 1867 lineto
2431
3118 1815 lineto
2432
3118 1763 lineto
2433
3118 1711 lineto
2434
3118 1659 lineto
2435
3118 1607 lineto
2436
3118 1555 lineto
2437
3118 1503 lineto
2438
3118 1451 lineto
2439
3118 1399 lineto
2440
3118 1347 lineto
2441
3118 1295 lineto
2442
3118 1243 lineto
2443
3118 1191 lineto
2444
2996 1145 lineto
2445
2874 1099 lineto
2446
 
2447
1 setlinejoin
2448
1 setlinewidth
2449
[] 0 setdash
2450
0.000 0.000 0.000 setrgbcolor AdjustColor
2451
stroke
2452
717 2541 moveto
2453
728.756594615706 2534.99437887959 lineto
2454
728.968945422906 2539.99086846075 lineto
2455
729.011407092012 2540.98996655736 lineto
2456
729.223757899211 2545.98645613853 lineto
2457
717 2541 lineto
2458
fill
2459
grestore
2460
gsave
2461
grestore
2462
gsave
2463
grestore
2464
gsave
2465
grestore
2466
gsave
2467
grestore
2468
gsave
2469
grestore
2470
gsave
2471
grestore
2472
gsave
2473
grestore
2474
gsave
2475
grestore
2476
gsave
2477
grestore
2478
gsave
2479
grestore
2480
gsave
2481
grestore
2482
gsave
2483
grestore
2484
gsave
2485
grestore
2486
gsave
2487
2042 983 moveto
2488
2028.66 969.659999999999 2018.67 966.329999999999 2012 973 curveto
2489
2005.33 979.67 2005.33 986.33 2012 993 curveto
2490
2018.67 999.67 2027.1186592602 997.881340739796 2037.37134912974 987.62865087026 curveto
2491
 
2492
1 setlinejoin
2493
1 setlinewidth
2494
[] 0 setdash
2495
0.000 0.000 0.000 setrgbcolor AdjustColor
2496
stroke
2497
2042 983 moveto
2498
2037.40380592229 995.375782884327 lineto
2499
2033.86756490957 991.839541871613 lineto
2500
2033.16045812839 991.132435090426 lineto
2501
2029.62421711567 987.596194077712 lineto
2502
2042 983 lineto
2503
fill
2504
grestore
2505
gsave
2506
grestore
2507
gsave
2508
2100.805131456 967.017267449597 moveto
2509
2046 925 lineto
2510
1987 879 lineto
2511
1987 827 lineto
2512
1987 775 lineto
2513
1987 723 lineto
2514
1987 671 lineto
2515
1987 619 lineto
2516
1987 567 lineto
2517
1987 515 lineto
2518
1987 463 lineto
2519
1987 411 lineto
2520
1987 359 lineto
2521
2134 313 lineto
2522
2282 267 lineto
2523
 
2524
1 setlinejoin
2525
1 setlinewidth
2526
[] 0 setdash
2527
0.000 0.000 0.000 setrgbcolor AdjustColor
2528
stroke
2529
2106 971 moveto
2530
2093.12894813648 968.063841638038 lineto
2531
2096.17171428631 964.095016225217 lineto
2532
2096.78014582996 963.301409863925 lineto
2533
2099.82291197979 959.332584451104 lineto
2534
2106 971 lineto
2535
fill
2536
grestore
2537
gsave
2538
grestore
2539
gsave
2540
grestore
2541
gsave
2542
grestore
2543
gsave
2544
grestore
2545
gsave
2546
grestore
2547
gsave
2548
grestore
2549
gsave
2550
2255 1075 moveto
2551
2197 1035 lineto
2552
2144.3886692637 998.71632363014 lineto
2553
 
2554
1 setlinejoin
2555
1 setlinewidth
2556
[] 0 setdash
2557
0.000 0.000 0.000 setrgbcolor AdjustColor
2558
stroke
2559
2139 995 moveto
2560
2152.00247563365 997.284869667279 lineto
2561
2149.16324312167 1001.40175680964 lineto
2562
2148.59551016587 1002.22496959556 lineto
2563
2145.75627765389 1006.34185673792 lineto
2564
2139 995 lineto
2565
fill
2566
grestore
2567
gsave
2568
2110.3418006553 965.571704198189 moveto
2569
2083 925 lineto
2570
2053 879 lineto
2571
2053 827 lineto
2572
2053 775 lineto
2573
2053 723 lineto
2574
2053 671 lineto
2575
2098 625 lineto
2576
2144 579 lineto
2577
 
2578
1 setlinejoin
2579
1 setlinewidth
2580
[] 0 setdash
2581
0.000 0.000 0.000 setrgbcolor AdjustColor
2582
stroke
2583
2114 971 moveto
2584
2102.73140498349 964.122226497338 lineto
2585
2106.87856638788 961.327400333515 lineto
2586
2107.70783281547 960.768546871442 lineto
2587
2111.85499421985 957.973720707619 lineto
2588
2114 971 lineto
2589
fill
2590
grestore
2591
gsave
2592
grestore
2593
gsave
2594
grestore
2595
gsave
2596
grestore
2597
gsave
2598
2103.18266857471 966.568055088737 moveto
2599
2058 925 lineto
2600
2009 879 lineto
2601
2009 827 lineto
2602
2009 775 lineto
2603
2009 723 lineto
2604
2009 671 lineto
2605
2009 619 lineto
2606
2009 567 lineto
2607
2009 515 lineto
2608
2009 463 lineto
2609
2089 417 lineto
2610
2169 371 lineto
2611
 
2612
1 setlinejoin
2613
1 setlinewidth
2614
[] 0 setdash
2615
0.000 0.000 0.000 setrgbcolor AdjustColor
2616
stroke
2617
2108 971 moveto
2618
2095.4436039518 966.92300106932 lineto
2619
2098.82956366244 963.242610079499 lineto
2620
2099.50662019326 962.506679067738 lineto
2621
2102.89257990389 958.826288077917 lineto
2622
2108 971 lineto
2623
fill
2624
grestore
2625
gsave
2626
grestore
2627
gsave
2628
grestore
2629
gsave
2630
grestore
2631
gsave
2632
grestore
2633
gsave
2634
grestore
2635
gsave
2636
2106.70471920127 966.06042708146 moveto
2637
2071 925 lineto
2638
2031 879 lineto
2639
2031 827 lineto
2640
2031 775 lineto
2641
2031 723 lineto
2642
2031 671 lineto
2643
2031 619 lineto
2644
2031 567 lineto
2645
2076 521 lineto
2646
2122 475 lineto
2647
 
2648
1 setlinejoin
2649
1 setlinewidth
2650
[] 0 setdash
2651
0.000 0.000 0.000 setrgbcolor AdjustColor
2652
stroke
2653
2111 971 moveto
2654
2098.97411426477 965.553618239317 lineto
2655
2102.74789648111 962.272068485978 lineto
2656
2103.50250200327 961.615889771053 lineto
2657
2107.27628421961 958.334340017715 lineto
2658
2111 971 lineto
2659
fill
2660
grestore
2661
gsave
2662
grestore
2663
gsave
2664
grestore
2665
gsave
2666
grestore
2667
gsave
2668
grestore
2669
gsave
2670
2128.38532200059 964.904177109608 moveto
2671
2144 925 lineto
2672
2163 879 lineto
2673
2209 833 lineto
2674
2256 787 lineto
2675
 
2676
1 setlinejoin
2677
1 setlinewidth
2678
[] 0 setdash
2679
0.000 0.000 0.000 setrgbcolor AdjustColor
2680
stroke
2681
2126 971 moveto
2682
2125.25039005115 957.81959458421 lineto
2683
2129.90753519246 959.641955726461 lineto
2684
2130.83877797217 960.006355075041 lineto
2685
2135.49592311348 961.828716217293 lineto
2686
2126 971 lineto
2687
fill
2688
grestore
2689
gsave
2690
grestore
2691
gsave
2692
2117.47759880909 964.633595019838 moveto
2693
2108 925 lineto
2694
2097 879 lineto
2695
2097 827 lineto
2696
2097 775 lineto
2697
2207 723 lineto
2698
2317 671 lineto
2699
2430 619 lineto
2700
2543 567 lineto
2701
2519 521 lineto
2702
2496 475 lineto
2703
 
2704
1 setlinejoin
2705
1 setlinewidth
2706
[] 0 setdash
2707
0.000 0.000 0.000 setrgbcolor AdjustColor
2708
stroke
2709
2119 971 moveto
2710
2110.85873238514 960.607465967188 lineto
2711
2115.7225994223 959.444367327866 lineto
2712
2116.69517831395 959.211794114645 lineto
2713
2121.55904535112 958.048695475323 lineto
2714
2119 971 lineto
2715
fill
2716
grestore
2717
gsave
2718
grestore
2719
gsave
2720
grestore
2721
gsave
2722
grestore
2723
gsave
2724
grestore
2725
gsave
2726
2125.12158233908 964.550901550281 moveto
2727
2132 925 lineto
2728
2141 879 lineto
2729
2141 827 lineto
2730
2141 775 lineto
2731
2343 723 lineto
2732
2545 671 lineto
2733
2577 619 lineto
2734
2609 567 lineto
2735
2670 521 lineto
2736
2731 475 lineto
2737
 
2738
1 setlinejoin
2739
1 setlinewidth
2740
[] 0 setdash
2741
0.000 0.000 0.000 setrgbcolor AdjustColor
2742
stroke
2743
2124 971 moveto
2744
2120.63661557493 958.233925928103 lineto
2745
2125.56365956078 959.090803143034 lineto
2746
2126.5488713156 959.262144317785 lineto
2747
2131.47591530145 960.119021532716 lineto
2748
2124 971 lineto
2749
fill
2750
grestore
2751
gsave
2752
grestore
2753
gsave
2754
grestore
2755
gsave
2756
grestore
2757
gsave
2758
grestore
2759
gsave
2760
2120.85773142128 964.455645378723 moveto
2761
2120 925 lineto
2762
2119 879 lineto
2763
2119 827 lineto
2764
2119 775 lineto
2765
2257 729 lineto
2766
2395 683 lineto
2767
 
2768
1 setlinejoin
2769
1 setlinewidth
2770
[] 0 setdash
2771
0.000 0.000 0.000 setrgbcolor AdjustColor
2772
stroke
2773
2121 971 moveto
2774
2115.23946971877 959.12139347907 lineto
2775
2120.23928842668 959.012701768029 lineto
2776
2121.23905221551 958.99096777262 lineto
2777
2126.23887092341 958.882276061578 lineto
2778
2121 971 lineto
2779
fill
2780
grestore
2781
gsave
2782
grestore
2783
gsave
2784
grestore
2785
gsave
2786
2113.28153746155 965.045272534821 moveto
2787
2095 925 lineto
2788
2075 879 lineto
2789
2075 827 lineto
2790
2075 775 lineto
2791
2185 723 lineto
2792
2295 671 lineto
2793
2355 625 lineto
2794
2416 579 lineto
2795
 
2796
1 setlinejoin
2797
1 setlinewidth
2798
[] 0 setdash
2799
0.000 0.000 0.000 setrgbcolor AdjustColor
2800
stroke
2801
2116 971 moveto
2802
2106.01188280332 962.367357480732 lineto
2803
2110.56123251064 960.290480440435 lineto
2804
2111.47092051451 959.875188090845 lineto
2805
2116.02027022183 957.798311050547 lineto
2806
2116 971 lineto
2807
fill
2808
grestore
2809
gsave
2810
grestore
2811
gsave
2812
grestore
2813
gsave
2814
grestore
2815
gsave
2816
2138.67815087293 966.421384252025 moveto
2817
2181 925 lineto
2818
2229 879 lineto
2819
2335 827 lineto
2820
2441 775 lineto
2821
2643 723 lineto
2822
2845 671 lineto
2823
2892 619 lineto
2824
2939 567 lineto
2825
2975 521 lineto
2826
3011 475 lineto
2827
 
2828
1 setlinejoin
2829
1 setlinewidth
2830
[] 0 setdash
2831
0.000 0.000 0.000 setrgbcolor AdjustColor
2832
stroke
2833
2134 971 moveto
2834
2138.72899363602 958.674351084404 lineto
2835
2142.2270083369 962.248409583138 lineto
2836
2142.92647138447 962.963078349132 lineto
2837
2146.42448608536 966.537136847865 lineto
2838
2134 971 lineto
2839
fill
2840
grestore
2841
gsave
2842
grestore
2843
gsave
2844
grestore
2845
gsave
2846
grestore
2847
gsave
2848
grestore
2849
gsave
2850
2208.51990640141 975.417215070265 moveto
2851
2739 928 lineto
2852
3277 879 lineto
2853
3277 827 lineto
2854
3277 775 lineto
2855
3406 729 lineto
2856
3536 683 lineto
2857
 
2858
1 setlinejoin
2859
1 setlinewidth
2860
[] 0 setdash
2861
0.000 0.000 0.000 setrgbcolor AdjustColor
2862
stroke
2863
2202 976 moveto
2864
2213.46358594523 969.452389804192 lineto
2865
2213.90882755621 974.433530326989 lineto
2866
2213.9978580723 975.429559225769 lineto
2867
2214.44309968328 980.410699748566 lineto
2868
2202 976 lineto
2869
fill
2870
grestore
2871
gsave
2872
grestore
2873
gsave
2874
grestore
2875
gsave
2876
2141.09400555729 966.889048146745 moveto
2877
2193 925 lineto
2878
2251 879 lineto
2879
2357 827 lineto
2880
2463 775 lineto
2881
2758 729 lineto
2882
3054 683 lineto
2883
 
2884
1 setlinejoin
2885
1 setlinewidth
2886
[] 0 setdash
2887
0.000 0.000 0.000 setrgbcolor AdjustColor
2888
stroke
2889
2136 971 moveto
2890
2141.88441767025 959.182274724719 lineto
2891
2145.02514203082 963.074041867157 lineto
2892
2145.65316129908 963.852239656087 lineto
2893
2148.79388565964 967.744006798525 lineto
2894
2136 971 lineto
2895
fill
2896
grestore
2897
gsave
2898
grestore
2899
gsave
2900
grestore
2901
gsave
2902
2169.28803631728 969.180819681795 moveto
2903
2322 925 lineto
2904
2481 879 lineto
2905
2772 827 lineto
2906
3063 775 lineto
2907
3261 723 lineto
2908
3459 671 lineto
2909
3459 619 lineto
2910
3459 567 lineto
2911
3488 521 lineto
2912
3517 475 lineto
2913
 
2914
1 setlinejoin
2915
1 setlinewidth
2916
[] 0 setdash
2917
0.000 0.000 0.000 setrgbcolor AdjustColor
2918
stroke
2919
2163 971 moveto
2920
2172.99945073275 962.380488004342 lineto
2921
2174.3892855315 967.184482200028 lineto
2922
2174.66719690898 968.145088917821 lineto
2923
2176.05703170773 972.949083113506 lineto
2924
2163 971 lineto
2925
fill
2926
grestore
2927
gsave
2928
grestore
2929
gsave
2930
grestore
2931
gsave
2932
grestore
2933
gsave
2934
grestore
2935
gsave
2936
2135.16896279646 965.953360825337 moveto
2937
2169 925 lineto
2938
2207 879 lineto
2939
2313 827 lineto
2940
2419 775 lineto
2941
2621 723 lineto
2942
2823 671 lineto
2943
2870 619 lineto
2944
2917 567 lineto
2945
2917 515 lineto
2946
2917 463 lineto
2947
2917 411 lineto
2948
2917 359 lineto
2949
2917 307 lineto
2950
2917 255 lineto
2951
3114 209 lineto
2952
3312 163 lineto
2953
 
2954
1 setlinejoin
2955
1 setlinewidth
2956
[] 0 setdash
2957
0.000 0.000 0.000 setrgbcolor AdjustColor
2958
stroke
2959
2131 971 moveto
2960
2134.4021536497 958.244203178797 lineto
2961
2138.25773336959 961.429247295225 lineto
2962
2139.02869512122 962.066128742221 lineto
2963
2142.8842748411 965.25117285865 lineto
2964
2131 971 lineto
2965
fill
2966
grestore
2967
gsave
2968
grestore
2969
gsave
2970
grestore
2971
gsave
2972
grestore
2973
gsave
2974
grestore
2975
gsave
2976
grestore
2977
gsave
2978
grestore
2979
gsave
2980
grestore
2981
gsave
2982
2166.25461659668 969.069044540623 moveto
2983
2309 925 lineto
2984
2459 879 lineto
2985
2681 833 lineto
2986
2904 787 lineto
2987
 
2988
1 setlinejoin
2989
1 setlinewidth
2990
[] 0 setdash
2991
0.000 0.000 0.000 setrgbcolor AdjustColor
2992
stroke
2993
2160 971 moveto
2994
2169.84424747748 962.203648847266 lineto
2995
2171.31947731886 966.982110724803 lineto
2996
2171.61446428975 967.937612000056 lineto
2997
2173.08969413113 972.716073877593 lineto
2998
2160 971 lineto
2999
fill
3000
grestore
3001
gsave
3002
grestore
3003
gsave
3004
2208.52093359684 975.428823334583 moveto
3005
2750 928 lineto
3006
3299 879 lineto
3007
3299 827 lineto
3008
3299 775 lineto
3009
3490 723 lineto
3010
3681 671 lineto
3011
3641 625 lineto
3012
3602 579 lineto
3013
 
3014
1 setlinejoin
3015
1 setlinewidth
3016
[] 0 setdash
3017
0.000 0.000 0.000 setrgbcolor AdjustColor
3018
stroke
3019
2202 976 moveto
3020
2213.47522444026 969.472808716942 lineto
3021
2213.91159745831 974.454734006337 lineto
3022
2213.99885461049 975.450919827052 lineto
3023
2214.43522762854 980.432845116448 lineto
3024
2202 976 lineto
3025
fill
3026
grestore
3027
gsave
3028
grestore
3029
gsave
3030
grestore
3031
gsave
3032
grestore
3033
gsave
3034
2208.52089657594 976.428400836813 moveto
3035
2761 928 lineto
3036
3321 879 lineto
3037
3321 827 lineto
3038
3321 775 lineto
3039
3512 723 lineto
3040
3703 671 lineto
3041
3703 619 lineto
3042
3703 567 lineto
3043
3703 515 lineto
3044
3703 463 lineto
3045
3618 417 lineto
3046
3534 371 lineto
3047
 
3048
1 setlinejoin
3049
1 setlinewidth
3050
[] 0 setdash
3051
0.000 0.000 0.000 setrgbcolor AdjustColor
3052
stroke
3053
2202 977 moveto
3054
2213.47480151176 970.472065237333 lineto
3055
2213.91149731371 975.45396224315 lineto
3056
2213.99881900975 976.450142408281 lineto
3057
2214.4355148117 981.432039414098 lineto
3058
2202 977 lineto
3059
fill
3060
grestore
3061
gsave
3062
grestore
3063
gsave
3064
grestore
3065
gsave
3066
grestore
3067
gsave
3068
grestore
3069
gsave
3070
grestore
3071
gsave
3072
2156.24793128637 969.04752147301 moveto
3073
2198 956 lineto
3074
2246 941 lineto
3075
2291 916 lineto
3076
2337 891 lineto
3077
 
3078
1 setlinejoin
3079
1 setlinewidth
3080
[] 0 setdash
3081
0.000 0.000 0.000 setrgbcolor AdjustColor
3082
stroke
3083
2150 971 moveto
3084
2159.81390347916 962.169807448205 lineto
3085
2161.30557671983 966.943161818358 lineto
3086
2161.60385171297 967.897641796393 lineto
3087
2163.09552495364 972.670996166546 lineto
3088
2150 971 lineto
3089
fill
3090
grestore
3091
gsave
3092
2150 971 moveto
3093
2196 952 lineto
3094
2243 932 lineto
3095
2290 912 lineto
3096
2331.02353551771 893.670335194214 lineto
3097
 
3098
1 setlinejoin
3099
1 setlinewidth
3100
[] 0 setdash
3101
0.000 0.000 0.000 setrgbcolor AdjustColor
3102
stroke
3103
2337 891 moveto
3104
2328.28706074601 900.91814960344 lineto
3105
2326.24695249499 896.352193041651 lineto
3106
2325.8390124328 895.439184331035 lineto
3107
2323.79890418179 890.873227769245 lineto
3108
2337 891 lineto
3109
fill
3110
grestore
3111
gsave
3112
2208.52184707897 976.439349987947 moveto
3113
2772 928 lineto
3114
3343 879 lineto
3115
3343 827 lineto
3116
3343 775 lineto
3117
3534 723 lineto
3118
3725 671 lineto
3119
3725 619 lineto
3120
3725 567 lineto
3121
3725 515 lineto
3122
3725 463 lineto
3123
3725 411 lineto
3124
3725 359 lineto
3125
3697 313 lineto
3126
3670 267 lineto
3127
 
3128
1 setlinejoin
3129
1 setlinewidth
3130
[] 0 setdash
3131
0.000 0.000 0.000 setrgbcolor AdjustColor
3132
stroke
3133
2202 977 moveto
3134
2213.48574550084 970.491340207848 lineto
3135
2213.91407626545 975.473963388069 lineto
3136
2213.99972528857 976.47028875904 lineto
3137
2214.42805605319 981.452911939261 lineto
3138
2202 977 lineto
3139
fill
3140
grestore
3141
gsave
3142
grestore
3143
gsave
3144
grestore
3145
gsave
3146
grestore
3147
gsave
3148
grestore
3149
gsave
3150
grestore
3151
gsave
3152
grestore
3153
gsave
3154
2132.40352115447 965.408500960513 moveto
3155
2157 925 lineto
3156
2185 879 lineto
3157
2291 827 lineto
3158
2397 775 lineto
3159
2599 723 lineto
3160
2801 671 lineto
3161
2848 619 lineto
3162
2895 567 lineto
3163
2895 515 lineto
3164
2895 463 lineto
3165
2846 417 lineto
3166
2797 371 lineto
3167
 
3168
1 setlinejoin
3169
1 setlinewidth
3170
[] 0 setdash
3171
0.000 0.000 0.000 setrgbcolor AdjustColor
3172
stroke
3173
2129 971 moveto
3174
2130.54093705526 957.888534979198 lineto
3175
2134.81278403189 960.488789660623 lineto
3176
2135.6669825875 961.008736607519 lineto
3177
2139.93882956413 963.608991288945 lineto
3178
2129 971 lineto
3179
fill
3180
grestore
3181
gsave
3182
grestore
3183
gsave
3184
grestore
3185
gsave
3186
grestore
3187
gsave
3188
grestore
3189
gsave
3190
grestore
3191
gsave
3192
2171 659 moveto
3193
2164 619 lineto
3194
2158.97102189488 585.4734792992 lineto
3195
 
3196
1 setlinejoin
3197
1 setlinewidth
3198
[] 0 setdash
3199
0.000 0.000 0.000 setrgbcolor AdjustColor
3200
stroke
3201
2158 579 moveto
3202
2165.22037265275 590.052204339203 lineto
3203
2160.27470195205 590.794054944307 lineto
3204
2159.28576559918 590.942395397237 lineto
3205
2154.34009489849 591.684246002341 lineto
3206
2158 579 lineto
3207
fill
3208
grestore
3209
gsave
3210
2455 451 moveto
3211
2339 411 lineto
3212
2230.18258237136 373.150463433516 lineto
3213
 
3214
1 setlinejoin
3215
1 setlinewidth
3216
[] 0 setdash
3217
0.000 0.000 0.000 setrgbcolor AdjustColor
3218
stroke
3219
2224 371 moveto
3220
2237.14209801507 369.746899141239 lineto
3221
2235.49916636974 374.470327621567 lineto
3222
2235.1706457448 375.414824418273 lineto
3223
2233.52771409947 380.138252898601 lineto
3224
2224 371 lineto
3225
fill
3226
grestore
3227
gsave
3228
2413 659 moveto
3229
2347 613 lineto
3230
2281 567 lineto
3231
2281 515 lineto
3232
2281 463 lineto
3233
2240 417 lineto
3234
2204.29528079873 375.939572918539 lineto
3235
 
3236
1 setlinejoin
3237
1 setlinewidth
3238
[] 0 setdash
3239
0.000 0.000 0.000 setrgbcolor AdjustColor
3240
stroke
3241
2200 371 moveto
3242
2212.02588573523 376.446381760682 lineto
3243
2208.25210351889 379.727931514021 lineto
3244
2207.49749799673 380.384110228946 lineto
3245
2203.72371578039 383.665659982285 lineto
3246
2200 371 lineto
3247
fill
3248
grestore
3249
gsave
3250
grestore
3251
gsave
3252
grestore
3253
gsave
3254
2086 359 moveto
3255
2072.66 345.659999999999 2062.67 342.329999999999 2056 349 curveto
3256
2049.33 355.67 2049.33 362.329999999999 2056 369 curveto
3257
2062.67 375.67 2071.1186592602 373.881340739796 2081.37134912974 363.62865087026 curveto
3258
 
3259
1 setlinejoin
3260
1 setlinewidth
3261
[] 0 setdash
3262
0.000 0.000 0.000 setrgbcolor AdjustColor
3263
stroke
3264
2086 359 moveto
3265
2081.40380592229 371.375782884326 lineto
3266
2077.86756490957 367.839541871613 lineto
3267
2077.16045812839 367.132435090426 lineto
3268
2073.62421711567 363.596194077712 lineto
3269
2086 359 lineto
3270
fill
3271
grestore
3272
gsave
3273
grestore
3274
gsave
3275
2205 347 moveto
3276
2255 307 lineto
3277
2299.8885102073 271.089191834164 lineto
3278
 
3279
1 setlinejoin
3280
1 setlinewidth
3281
[] 0 setdash
3282
0.000 0.000 0.000 setrgbcolor AdjustColor
3283
stroke
3284
2305 267 moveto
3285
2299.06524087447 278.792524586447 lineto
3286
2295.94114094165 274.887399670422 lineto
3287
2295.3164458941 274.106530860979 lineto
3288
2292.19234596128 270.201405944954 lineto
3289
2305 267 lineto
3290
fill
3291
grestore
3292
gsave
3293
2417 555 moveto
3294
2360 509 lineto
3295
2303 463 lineto
3296
2253 417 lineto
3297
2207.81733142529 375.431944911263 lineto
3298
 
3299
1 setlinejoin
3300
1 setlinewidth
3301
[] 0 setdash
3302
0.000 0.000 0.000 setrgbcolor AdjustColor
3303
stroke
3304
2203 371 moveto
3305
2215.5563960482 375.076998930679 lineto
3306
2212.17043633756 378.7573899205 lineto
3307
2211.49337980674 379.493320932262 lineto
3308
2208.10742009611 383.173711922083 lineto
3309
2203 371 lineto
3310
fill
3311
grestore
3312
gsave
3313
grestore
3314
gsave
3315
2153 555 moveto
3316
2144 515 lineto
3317
2137.283756773 481.418783864978 lineto
3318
 
3319
1 setlinejoin
3320
1 setlinewidth
3321
[] 0 setdash
3322
0.000 0.000 0.000 setrgbcolor AdjustColor
3323
stroke
3324
2136 475 moveto
3325
2143.74776403477 485.689113829571 lineto
3326
2138.84388007564 486.669890621397 lineto
3327
2137.86329939995 486.866006756535 lineto
3328
2132.95941544082 487.846783548362 lineto
3329
2136 475 lineto
3330
fill
3331
grestore
3332
gsave
3333
2258 763 moveto
3334
2221 723 lineto
3335
2188.44494147529 687.805342135451 lineto
3336
 
3337
1 setlinejoin
3338
1 setlinewidth
3339
[] 0 setdash
3340
0.000 0.000 0.000 setrgbcolor AdjustColor
3341
stroke
3342
2184 683 moveto
3343
2196.18746383856 688.074517433598 lineto
3344
2192.51623254118 691.470406383668 lineto
3345
2191.7821331016 692.149448365285 lineto
3346
2188.11090180423 695.545337315354 lineto
3347
2184 683 lineto
3348
fill
3349
grestore
3350
gsave
3351
2688 2427 moveto
3352
2434 2381 lineto
3353
2181 2335 lineto
3354
2181 2283 lineto
3355
2181 2231 lineto
3356
2181 2179 lineto
3357
2181 2127 lineto
3358
2181 2075 lineto
3359
2181 2023 lineto
3360
2181 1971 lineto
3361
2181 1919 lineto
3362
2181 1867 lineto
3363
2181 1815 lineto
3364
2181 1763 lineto
3365
2181 1711 lineto
3366
2181 1659 lineto
3367
2181 1607 lineto
3368
2181 1555 lineto
3369
2181 1503 lineto
3370
2181 1451 lineto
3371
2181 1399 lineto
3372
2181 1347 lineto
3373
2181 1295 lineto
3374
2181 1243 lineto
3375
2181 1191 lineto
3376
2221 1145 lineto
3377
2257.64455052562 1103.8866018493 lineto
3378
 
3379
1 setlinejoin
3380
1 setlinewidth
3381
[] 0 setdash
3382
0.000 0.000 0.000 setrgbcolor AdjustColor
3383
stroke
3384
2262 1099 moveto
3385
2258.12145783991 1111.61910903005 lineto
3386
2254.38814496826 1108.29159103576 lineto
3387
2253.64163169658 1107.626220511 lineto
3388
2249.90831882493 1104.29870251671 lineto
3389
2262 1099 lineto
3390
fill
3391
grestore
3392
gsave
3393
grestore
3394
gsave
3395
grestore
3396
gsave
3397
grestore
3398
gsave
3399
grestore
3400
gsave
3401
grestore
3402
gsave
3403
grestore
3404
gsave
3405
grestore
3406
gsave
3407
grestore
3408
gsave
3409
grestore
3410
gsave
3411
grestore
3412
gsave
3413
grestore
3414
gsave
3415
grestore
3416
gsave
3417
2354 867 moveto
3418
2317 827 lineto
3419
2284.44494147529 791.805342135451 lineto
3420
 
3421
1 setlinejoin
3422
1 setlinewidth
3423
[] 0 setdash
3424
0.000 0.000 0.000 setrgbcolor AdjustColor
3425
stroke
3426
2280 787 moveto
3427
2292.18746383856 792.074517433599 lineto
3428
2288.51623254118 795.470406383668 lineto
3429
2287.7821331016 796.149448365285 lineto
3430
2284.11090180423 799.545337315354 lineto
3431
2280 787 lineto
3432
fill
3433
grestore
3434
gsave
3435
2287 763 moveto
3436
2349 723 lineto
3437
2406.47386662673 686.508656110013 lineto
3438
 
3439
1 setlinejoin
3440
1 setlinewidth
3441
[] 0 setdash
3442
0.000 0.000 0.000 setrgbcolor AdjustColor
3443
stroke
3444
2412 683 moveto
3445
2404.81718276401 694.076648344798 lineto
3446
2402.13660607254 689.854740055743 lineto
3447
2401.60059793588 689.010527240496 lineto
3448
2398.92002124442 684.788618951441 lineto
3449
2412 683 lineto
3450
fill
3451
grestore
3452
gsave
3453
2347 763 moveto
3454
2611 723 lineto
3455
2869.53106584505 683.000853963596 lineto
3456
 
3457
1 setlinejoin
3458
1 setlinewidth
3459
[] 0 setdash
3460
0.000 0.000 0.000 setrgbcolor AdjustColor
3461
stroke
3462
2876 682 moveto
3463
2864.98119862421 689.271245989579 lineto
3464
2864.2165566296 684.329047731711 lineto
3465
2864.06365881024 683.340805728538 lineto
3466
2863.29901681563 678.39860747067 lineto
3467
2876 682 lineto
3468
fill
3469
grestore
3470
gsave
3471
2419 555 moveto
3472
2372 509 lineto
3473
2325 463 lineto
3474
2325 411 lineto
3475
2325 359 lineto
3476
2323 313 lineto
3477
2321.28433576271 273.539722542399 lineto
3478
 
3479
1 setlinejoin
3480
1 setlinewidth
3481
[] 0 setdash
3482
0.000 0.000 0.000 setrgbcolor AdjustColor
3483
stroke
3484
2321 267 moveto
3485
2327.01709805565 278.750724785675 lineto
3486
2322.02081820772 278.967954344281 lineto
3487
2321.02176204936 279.011391568557 lineto
3488
2316.02548220143 279.228621127163 lineto
3489
2321 267 lineto
3490
fill
3491
grestore
3492
gsave
3493
grestore
3494
gsave
3495
grestore
3496
gsave
3497
2203 255 moveto
3498
2189.66 241.659999999999 2179.67 238.329999999999 2173 245 curveto
3499
2166.33 251.67 2166.33 258.329999999999 2173 265 curveto
3500
2179.67 271.67 2188.1186592602 269.881340739796 2198.37134912974 259.628650870259 curveto
3501
 
3502
1 setlinejoin
3503
1 setlinewidth
3504
[] 0 setdash
3505
0.000 0.000 0.000 setrgbcolor AdjustColor
3506
stroke
3507
2203 255 moveto
3508
2198.40380592229 267.375782884326 lineto
3509
2194.86756490957 263.839541871613 lineto
3510
2194.16045812839 263.132435090426 lineto
3511
2190.62421711567 259.596194077712 lineto
3512
2203 255 lineto
3513
fill
3514
grestore
3515
gsave
3516
grestore
3517
gsave
3518
2490 451 moveto
3519
2490 405 lineto
3520
2490 359 lineto
3521
2415 313 lineto
3522
2345.57997369451 270.422383865969 lineto
3523
 
3524
1 setlinejoin
3525
1 setlinewidth
3526
[] 0 setdash
3527
0.000 0.000 0.000 setrgbcolor AdjustColor
3528
stroke
3529
2340 267 moveto
3530
2353.10618661987 268.585204808568 lineto
3531
2350.4915210235 272.848246541784 lineto
3532
2349.96869246994 273.700684400855 lineto
3533
2347.35402687356 277.963726134072 lineto
3534
2340 267 lineto
3535
fill
3536
grestore
3537
gsave
3538
grestore
3539
gsave
3540
2449 659 moveto
3541
2518 613 lineto
3542
2587 567 lineto
3543
2601 515 lineto
3544
2615 463 lineto
3545
2615 411 lineto
3546
2615 359 lineto
3547
2484 313 lineto
3548
2360.17096651501 269.18357276685 lineto
3549
 
3550
1 setlinejoin
3551
1 setlinewidth
3552
[] 0 setdash
3553
0.000 0.000 0.000 setrgbcolor AdjustColor
3554
stroke
3555
2354 267 moveto
3556
2367.14862615409 265.817362160257 lineto
3557
2365.48039932324 270.531916247427 lineto
3558
2365.14682067281 271.474638520406 lineto
3559
2363.47859384196 276.189192607576 lineto
3560
2354 267 lineto
3561
fill
3562
grestore
3563
gsave
3564
grestore
3565
gsave
3566
grestore
3567
gsave
3568
grestore
3569
gsave
3570
2315 763 moveto
3571
2470 723 lineto
3572
2619.65922238925 684.625840413011 lineto
3573
 
3574
1 setlinejoin
3575
1 setlinewidth
3576
[] 0 setdash
3577
0.000 0.000 0.000 setrgbcolor AdjustColor
3578
stroke
3579
2626 683 moveto
3580
2615.74137774543 691.309372505671 lineto
3581
2614.49925261874 686.465084511584 lineto
3582
2614.25087726847 685.49642064554 lineto
3583
2613.00875214178 680.652132651454 lineto
3584
2626 683 lineto
3585
fill
3586
grestore
3587
gsave
3588
2228 1087 moveto
3589
2214.66 1073.66 2204.67 1070.33 2198 1077 curveto
3590
2191.33 1083.67 2191.33 1090.33 2198 1097 curveto
3591
2204.67 1103.67 2213.1186592602 1101.8813407398 2223.37134912974 1091.62865087026 curveto
3592
 
3593
1 setlinejoin
3594
1 setlinewidth
3595
[] 0 setdash
3596
0.000 0.000 0.000 setrgbcolor AdjustColor
3597
stroke
3598
2228 1087 moveto
3599
2223.40380592229 1099.37578288433 lineto
3600
2219.86756490957 1095.83954187161 lineto
3601
2219.16045812839 1095.13243509043 lineto
3602
2215.62421711567 1091.59619407771 lineto
3603
2228 1087 lineto
3604
fill
3605
grestore
3606
gsave
3607
grestore
3608
gsave
3609
2512 2115 moveto
3610
2444 2075 lineto
3611
2382.62045192734 2038.35549368796 lineto
3612
 
3613
1 setlinejoin
3614
1 setlinewidth
3615
[] 0 setdash
3616
0.000 0.000 0.000 setrgbcolor AdjustColor
3617
stroke
3618
2377 2035 moveto
3619
2390.1241851209 2036.42855413349 lineto
3620
2387.56062292322 2040.72252081461 lineto
3621
2387.04801300566 2041.58114242651 lineto
3622
2384.48445080798 2045.87510910764 lineto
3623
2377 2035 lineto
3624
fill
3625
grestore
3626
gsave
3627
2709 2427 moveto
3628
2533 2381 lineto
3629
2357 2335 lineto
3630
2357 2283 lineto
3631
2357 2231 lineto
3632
2357 2179 lineto
3633
2357 2127 lineto
3634
2357 2081 lineto
3635
2357 2041.54590083621 lineto
3636
 
3637
1 setlinejoin
3638
1 setlinewidth
3639
[] 0 setdash
3640
0.000 0.000 0.000 setrgbcolor AdjustColor
3641
stroke
3642
2357 2035 moveto
3643
2362.501 2047.001 lineto
3644
2357.5 2047.001 lineto
3645
2356.5 2047.001 lineto
3646
2351.499 2047.001 lineto
3647
2357 2035 lineto
3648
fill
3649
grestore
3650
gsave
3651
grestore
3652
gsave
3653
grestore
3654
gsave
3655
grestore
3656
gsave
3657
2339 2011 moveto
3658
2271 1965 lineto
3659
2203 1919 lineto
3660
2203 1867 lineto
3661
2203 1815 lineto
3662
2203 1763 lineto
3663
2203 1711 lineto
3664
2203 1659 lineto
3665
2203 1607 lineto
3666
2203 1555 lineto
3667
2203 1503 lineto
3668
2203 1451 lineto
3669
2203 1399 lineto
3670
2203 1347 lineto
3671
2203 1295 lineto
3672
2203 1243 lineto
3673
2203 1191 lineto
3674
2233 1145 lineto
3675
2260.3418006553 1104.42829580181 lineto
3676
 
3677
1 setlinejoin
3678
1 setlinewidth
3679
[] 0 setdash
3680
0.000 0.000 0.000 setrgbcolor AdjustColor
3681
stroke
3682
2264 1099 moveto
3683
2261.85499421985 1112.02627929238 lineto
3684
2257.70783281547 1109.23145312856 lineto
3685
2256.87856638788 1108.67259966648 lineto
3686
2252.73140498349 1105.87777350266 lineto
3687
2264 1099 lineto
3688
fill
3689
grestore
3690
gsave
3691
grestore
3692
gsave
3693
grestore
3694
gsave
3695
grestore
3696
gsave
3697
grestore
3698
gsave
3699
grestore
3700
gsave
3701
grestore
3702
gsave
3703
grestore
3704
gsave
3705
grestore
3706
gsave
3707
2504 2323 moveto
3708
2441 2277 lineto
3709
2379 2231 lineto
3710
2379 2179 lineto
3711
2379 2127 lineto
3712
2369 2081 lineto
3713
2360.39054338646 2041.39649957773 lineto
3714
 
3715
1 setlinejoin
3716
1 setlinewidth
3717
[] 0 setdash
3718
0.000 0.000 0.000 setrgbcolor AdjustColor
3719
stroke
3720
2359 2035 moveto
3721
2366.92481533956 2045.55851806997 lineto
3722
2362.03795634358 2046.62087872127 lineto
3723
2361.06077997966 2046.8333083656 lineto
3724
2356.17392098368 2047.8956690169 lineto
3725
2359 2035 lineto
3726
fill
3727
grestore
3728
gsave
3729
grestore
3730
gsave
3731
grestore
3732
gsave
3733
2377 2011 moveto
3734
2444 1971 lineto
3735
2506.35786410024 1934.31890347045 lineto
3736
 
3737
1 setlinejoin
3738
1 setlinewidth
3739
[] 0 setdash
3740
0.000 0.000 0.000 setrgbcolor AdjustColor
3741
stroke
3742
2512 1931 moveto
3743
2504.44504520012 1941.82624865647 lineto
3744
2501.90943754717 1937.51571564647 lineto
3745
2501.40241742061 1936.65378143131 lineto
3746
2498.86680976767 1932.3432484213 lineto
3747
2512 1931 lineto
3748
fill
3749
grestore
3750
gsave
3751
2478 1595 moveto
3752
2438 1555 lineto
3753
2403.56969426485 1519.68686591267 lineto
3754
 
3755
1 setlinejoin
3756
1 setlinewidth
3757
[] 0 setdash
3758
0.000 0.000 0.000 setrgbcolor AdjustColor
3759
stroke
3760
2399 1515 moveto
3761
2411.31661650174 1519.75246882673 lineto
3762
2407.7358998035 1523.24366760752 lineto
3763
2407.01989966388 1523.94176774364 lineto
3764
2403.43918296564 1527.43296652443 lineto
3765
2399 1515 lineto
3766
fill
3767
grestore
3768
gsave
3769
2313 1387 moveto
3770
2269 1341 lineto
3771
2225 1295 lineto
3772
2225 1243 lineto
3773
2225 1191 lineto
3774
2246 1145 lineto
3775
2264.28153746155 1104.95472746518 lineto
3776
 
3777
1 setlinejoin
3778
1 setlinewidth
3779
[] 0 setdash
3780
0.000 0.000 0.000 setrgbcolor AdjustColor
3781
stroke
3782
2267 1099 moveto
3783
2267.02027022183 1112.20168894945 lineto
3784
2262.47092051451 1110.12481190915 lineto
3785
2261.56123251064 1109.70951955957 lineto
3786
2257.01188280332 1107.63264251927 lineto
3787
2267 1099 lineto
3788
fill
3789
grestore
3790
gsave
3791
grestore
3792
gsave
3793
grestore
3794
gsave
3795
2463 1595 moveto
3796
2363 1549 lineto
3797
2263 1503 lineto
3798
2290 1457 lineto
3799
2313.68646127364 1416.64528820047 lineto
3800
 
3801
1 setlinejoin
3802
1 setlinewidth
3803
[] 0 setdash
3804
0.000 0.000 0.000 setrgbcolor AdjustColor
3805
stroke
3806
2317 1411 moveto
3807
2315.66923620106 1424.1344611504 lineto
3808
2311.35629486617 1421.60295210601 lineto
3809
2310.49387908235 1421.09675153725 lineto
3810
2306.18093774746 1418.56524249286 lineto
3811
2317 1411 lineto
3812
fill
3813
grestore
3814
gsave
3815
grestore
3816
gsave
3817
2380 1491 moveto
3818
2356 1451 lineto
3819
2335.36783819568 1416.61306365947 lineto
3820
 
3821
1 setlinejoin
3822
1 setlinewidth
3823
[] 0 setdash
3824
0.000 0.000 0.000 setrgbcolor AdjustColor
3825
stroke
3826
2332 1411 moveto
3827
2342.89153214523 1418.46053145087 lineto
3828
2338.60321002374 1421.03352472376 lineto
3829
2337.74571709803 1421.54802047919 lineto
3830
2333.45739497654 1424.12101375208 lineto
3831
2332 1411 lineto
3832
fill
3833
grestore
3834
gsave
3835
2318 1387 moveto
3836
2293 1341 lineto
3837
2269 1295 lineto
3838
2308 1249 lineto
3839
2342.76686247056 1207.99293144499 lineto
3840
 
3841
1 setlinejoin
3842
1 setlinewidth
3843
[] 0 setdash
3844
0.000 0.000 0.000 setrgbcolor AdjustColor
3845
stroke
3846
2347 1203 moveto
3847
2343.43505635116 1215.71126188781 lineto
3848
2339.62050877686 1212.47718894439 lineto
3849
2338.85775181339 1211.83050369275 lineto
3850
2335.04320423909 1208.59643074932 lineto
3851
2347 1203 lineto
3852
fill
3853
grestore
3854
gsave
3855
grestore
3856
gsave
3857
2331 1387 moveto
3858
2352 1347 lineto
3859
2369.9572433919 1312.79572687257 lineto
3860
 
3861
1 setlinejoin
3862
1 setlinewidth
3863
[] 0 setdash
3864
0.000 0.000 0.000 setrgbcolor AdjustColor
3865
stroke
3866
2373 1307 moveto
3867
2372.29210224173 1320.1827115103 lineto
3868
2367.86422732964 1317.85807718145 lineto
3869
2366.9788294268 1317.39324328246 lineto
3870
2362.55095451471 1315.06860895361 lineto
3871
2373 1307 lineto
3872
fill
3873
grestore
3874
gsave
3875
2346 1387 moveto
3876
2429 1341 lineto
3877
2513 1295 lineto
3878
2513 1243 lineto
3879
2513 1191 lineto
3880
2495 1145 lineto
3881
2480.26913744701 1105.14001897425 lineto
3882
 
3883
1 setlinejoin
3884
1 setlinewidth
3885
[] 0 setdash
3886
0.000 0.000 0.000 setrgbcolor AdjustColor
3887
stroke
3888
2478 1099 moveto
3889
2487.32005607866 1108.34994955551 lineto
3890
2482.62914559002 1110.08354691001 lineto
3891
2481.69115109119 1110.43019705088 lineto
3892
2477.00024060254 1112.16379440538 lineto
3893
2478 1099 lineto
3894
fill
3895
grestore
3896
gsave
3897
grestore
3898
gsave
3899
grestore
3900
gsave
3901
2377 1283 moveto
3902
2368 1243 lineto
3903
2361.283756773 1209.41878386498 lineto
3904
 
3905
1 setlinejoin
3906
1 setlinewidth
3907
[] 0 setdash
3908
0.000 0.000 0.000 setrgbcolor AdjustColor
3909
stroke
3910
2360 1203 moveto
3911
2367.74776403477 1213.68911382957 lineto
3912
2362.84388007564 1214.6698906214 lineto
3913
2361.86329939995 1214.86600675654 lineto
3914
2356.95941544082 1215.84678354836 lineto
3915
2360 1203 lineto
3916
fill
3917
grestore
3918
gsave
3919
2644 1387 moveto
3920
2445 1341 lineto
3921
2247 1295 lineto
3922
2247 1243 lineto
3923
2247 1191 lineto
3924
2258 1145 lineto
3925
2268.34767129239 1105.33392671251 lineto
3926
 
3927
1 setlinejoin
3928
1 setlinewidth
3929
[] 0 setdash
3930
0.000 0.000 0.000 setrgbcolor AdjustColor
3931
stroke
3932
2270 1099 moveto
3933
2272.29354742779 1112.00094774224 lineto
3934
2267.45449344854 1110.73858583461 lineto
3935
2266.48687617614 1110.48616393746 lineto
3936
2261.64782219688 1109.22380202983 lineto
3937
2270 1099 lineto
3938
fill
3939
grestore
3940
gsave
3941
grestore
3942
gsave
3943
grestore
3944
gsave
3945
2392 1283 moveto
3946
2441 1237 lineto
3947
2491 1191 lineto
3948
2483 1145 lineto
3949
2476.12158233908 1105.44909844972 lineto
3950
 
3951
1 setlinejoin
3952
1 setlinewidth
3953
[] 0 setdash
3954
0.000 0.000 0.000 setrgbcolor AdjustColor
3955
stroke
3956
2475 1099 moveto
3957
2482.47591530145 1109.88097846728 lineto
3958
2477.5488713156 1110.73785568221 lineto
3959
2476.56365956078 1110.90919685697 lineto
3960
2471.63661557493 1111.7660740719 lineto
3961
2475 1099 lineto
3962
fill
3963
grestore
3964
gsave
3965
grestore
3966
gsave
3967
2371 1179 moveto
3968
2415 1139 lineto
3969
2455.10753271584 1103.34885980815 lineto
3970
 
3971
1 setlinejoin
3972
1 setlinewidth
3973
[] 0 setdash
3974
0.000 0.000 0.000 setrgbcolor AdjustColor
3975
stroke
3976
2460 1099 moveto
3977
2454.68500624388 1111.08452909188 lineto
3978
2451.36252268589 1107.34673508914 lineto
3979
2450.69815884706 1106.59932577046 lineto
3980
2447.37567528907 1102.86153176772 lineto
3981
2460 1099 lineto
3982
fill
3983
grestore
3984
gsave
3985
2273 1068.45409916379 moveto
3986
2273 1029 lineto
3987
2273 983 lineto
3988
2273 931 lineto
3989
2273 879 lineto
3990
2468 827 lineto
3991
2663 775 lineto
3992
2947 723 lineto
3993
3231 671 lineto
3994
3167 625 lineto
3995
3104 579 lineto
3996
 
3997
1 setlinejoin
3998
1 setlinewidth
3999
[] 0 setdash
4000
0.000 0.000 0.000 setrgbcolor AdjustColor
4001
stroke
4002
2273 1075 moveto
4003
2267.499 1062.999 lineto
4004
2272.5 1062.999 lineto
4005
2273.5 1062.999 lineto
4006
2278.501 1062.999 lineto
4007
2273 1075 lineto
4008
fill
4009
grestore
4010
gsave
4011
grestore
4012
gsave
4013
grestore
4014
gsave
4015
grestore
4016
gsave
4017
grestore
4018
gsave
4019
2388 867 moveto
4020
2464 827 lineto
4021
2534.20741306813 790.048729964142 lineto
4022
 
4023
1 setlinejoin
4024
1 setlinewidth
4025
[] 0 setdash
4026
0.000 0.000 0.000 setrgbcolor AdjustColor
4027
stroke
4028
2540 787 moveto
4029
2531.94216754021 797.457358081748 lineto
4030
2529.61296962961 793.031882051615 lineto
4031
2529.14722319678 792.146963829233 lineto
4032
2526.81802528618 787.721487799101 lineto
4033
2540 787 lineto
4034
fill
4035
grestore
4036
gsave
4037
2428 871 moveto
4038
2761 828 lineto
4039
3087.50800028072 785.838306270056 lineto
4040
 
4041
1 setlinejoin
4042
1 setlinewidth
4043
[] 0 setdash
4044
0.000 0.000 0.000 setrgbcolor AdjustColor
4045
stroke
4046
3094 785 moveto
4047
3082.80231038118 791.992621053695 lineto
4048
3082.16185312993 787.032800945131 lineto
4049
3082.03378729284 786.041035276553 lineto
4050
3081.39333004159 781.081215167989 lineto
4051
3094 785 lineto
4052
fill
4053
grestore
4054
gsave
4055
2667 1283 moveto
4056
2568 1237 lineto
4057
2469 1191 lineto
4058
2382 1145 lineto
4059
2300.78680518593 1102.0596900983 lineto
4060
 
4061
1 setlinejoin
4062
1 setlinewidth
4063
[] 0 setdash
4064
0.000 0.000 0.000 setrgbcolor AdjustColor
4065
stroke
4066
2295 1099 moveto
4067
2308.18058528931 1099.74644050746 lineto
4068
2305.84301395047 1104.16749934397 lineto
4069
2305.37559316686 1105.05153430428 lineto
4070
2303.03802182802 1109.47259314078 lineto
4071
2295 1099 lineto
4072
fill
4073
grestore
4074
gsave
4075
grestore
4076
gsave
4077
2413 867 moveto
4078
2569 827 lineto
4079
2719.6567373698 788.616117867566 lineto
4080
 
4081
1 setlinejoin
4082
1 setlinewidth
4083
[] 0 setdash
4084
0.000 0.000 0.000 setrgbcolor AdjustColor
4085
stroke
4086
2726 787 moveto
4087
2715.72865124024 795.293635912883 lineto
4088
2714.49395403692 790.447449389841 lineto
4089
2714.24706397427 789.478405893932 lineto
4090
2713.01236677095 784.632219370891 lineto
4091
2726 787 lineto
4092
fill
4093
grestore
4094
gsave
4095
2428 873 moveto
4096
2901 827 lineto
4097
3367.48617746061 780.647250865436 lineto
4098
 
4099
1 setlinejoin
4100
1 setlinewidth
4101
[] 0 setdash
4102
0.000 0.000 0.000 setrgbcolor AdjustColor
4103
stroke
4104
3374 780 moveto
4105
3362.60174341907 786.66068682008 lineto
4106
3362.10725050525 781.684194304444 lineto
4107
3362.00837169825 780.689094821213 lineto
4108
3361.51387878443 775.712602305577 lineto
4109
3374 780 lineto
4110
fill
4111
grestore
4112
gsave
4113
2428 869 moveto
4114
2661 828 lineto
4115
2887.55314816004 788.134424572696 lineto
4116
 
4117
1 setlinejoin
4118
1 setlinewidth
4119
[] 0 setdash
4120
0.000 0.000 0.000 setrgbcolor AdjustColor
4121
stroke
4122
2894 787 moveto
4123
2883.13393264935 794.497571762322 lineto
4124
2882.26724410182 789.572244162907 lineto
4125
2882.09394105292 788.587375616733 lineto
4126
2881.22725250538 783.662048017316 lineto
4127
2894 787 lineto
4128
fill
4129
grestore
4130
gsave
4131
2348 1179 moveto
4132
2315 1139 lineto
4133
2286.16569971595 1104.04933298903 lineto
4134
 
4135
1 setlinejoin
4136
1 setlinewidth
4137
[] 0 setdash
4138
0.000 0.000 0.000 setrgbcolor AdjustColor
4139
stroke
4140
2282 1099 moveto
4141
2293.88055624575 1104.75650808143 lineto
4142
2290.02291847977 1107.93905923836 lineto
4143
2289.25154520123 1108.57544219316 lineto
4144
2285.39390743525 1111.75799335009 lineto
4145
2282 1099 lineto
4146
fill
4147
grestore
4148
gsave
4149
2528 1907 moveto
4150
2509 1861 lineto
4151
2490 1815 lineto
4152
2490 1769 lineto
4153
2490 1729.54590083621 lineto
4154
 
4155
1 setlinejoin
4156
1 setlinewidth
4157
[] 0 setdash
4158
0.000 0.000 0.000 setrgbcolor AdjustColor
4159
stroke
4160
2490 1723 moveto
4161
2495.501 1735.001 lineto
4162
2490.5 1735.001 lineto
4163
2489.5 1735.001 lineto
4164
2484.499 1735.001 lineto
4165
2490 1723 lineto
4166
fill
4167
grestore
4168
gsave
4169
grestore
4170
gsave
4171
2490 1699 moveto
4172
2490 1659 lineto
4173
2490 1625.54590083621 lineto
4174
 
4175
1 setlinejoin
4176
1 setlinewidth
4177
[] 0 setdash
4178
0.000 0.000 0.000 setrgbcolor AdjustColor
4179
stroke
4180
2490 1619 moveto
4181
2495.501 1631.001 lineto
4182
2490.5 1631.001 lineto
4183
2489.5 1631.001 lineto
4184
2484.499 1631.001 lineto
4185
2490 1619 lineto
4186
fill
4187
grestore
4188
gsave
4189
2566 1803 moveto
4190
2532 1763 lineto
4191
2503.16569971595 1728.04933298903 lineto
4192
 
4193
1 setlinejoin
4194
1 setlinewidth
4195
[] 0 setdash
4196
0.000 0.000 0.000 setrgbcolor AdjustColor
4197
stroke
4198
2499 1723 moveto
4199
2510.88055624575 1728.75650808143 lineto
4200
2507.02291847977 1731.93905923836 lineto
4201
2506.25154520123 1732.57544219316 lineto
4202
2502.39390743525 1735.75799335009 lineto
4203
2499 1723 lineto
4204
fill
4205
grestore
4206
gsave
4207
2525 1595 moveto
4208
2642 1555 lineto
4209
2753.80060066799 1517.10149129899 lineto
4210
 
4211
1 setlinejoin
4212
1 setlinewidth
4213
[] 0 setdash
4214
0.000 0.000 0.000 setrgbcolor AdjustColor
4215
stroke
4216
2760 1515 moveto
4217
2750.40029946678 1524.06260181584 lineto
4218
2748.79478202171 1519.32632535288 lineto
4219
2748.47374274055 1518.37925947347 lineto
4220
2746.86822529548 1513.64298301051 lineto
4221
2760 1515 lineto
4222
fill
4223
grestore
4224
gsave
4225
2400 1607 moveto
4226
2386.66 1593.66 2376.67 1590.33 2370 1597 curveto
4227
2363.33 1603.67 2363.33 1610.33 2370 1617 curveto
4228
2376.67 1623.67 2385.1186592602 1621.8813407398 2395.37134912974 1611.62865087026 curveto
4229
 
4230
1 setlinejoin
4231
1 setlinewidth
4232
[] 0 setdash
4233
0.000 0.000 0.000 setrgbcolor AdjustColor
4234
stroke
4235
2400 1607 moveto
4236
2395.40380592229 1619.37578288433 lineto
4237
2391.86756490957 1615.83954187161 lineto
4238
2391.16045812839 1615.13243509043 lineto
4239
2387.62421711567 1611.59619407771 lineto
4240
2400 1607 lineto
4241
fill
4242
grestore
4243
gsave
4244
grestore
4245
gsave
4246
2497.61002158613 1588.99695035191 moveto
4247
2515 1549 lineto
4248
2535 1503 lineto
4249
2535 1451 lineto
4250
2535 1399 lineto
4251
2535 1347 lineto
4252
2535 1295 lineto
4253
2535 1243 lineto
4254
2535 1191 lineto
4255
2508 1145 lineto
4256
2481 1099 lineto
4257
 
4258
1 setlinejoin
4259
1 setlinewidth
4260
[] 0 setdash
4261
0.000 0.000 0.000 setrgbcolor AdjustColor
4262
stroke
4263
2495 1595 moveto
4264
2494.74030968364 1581.80084991601 lineto
4265
2499.32657703496 1583.7948791992 lineto
4266
2500.24364709121 1584.19360531061 lineto
4267
2504.82991444253 1586.1876345938 lineto
4268
2495 1595 lineto
4269
fill
4270
grestore
4271
gsave
4272
grestore
4273
gsave
4274
grestore
4275
gsave
4276
grestore
4277
gsave
4278
grestore
4279
gsave
4280
2446 659 moveto
4281
2505 613 lineto
4282
2565 567 lineto
4283
2531 521 lineto
4284
2501.81565714935 480.31879481425 lineto
4285
 
4286
1 setlinejoin
4287
1 setlinewidth
4288
[] 0 setdash
4289
0.000 0.000 0.000 setrgbcolor AdjustColor
4290
stroke
4291
2498 475 moveto
4292
2509.46525033001 481.544695322946 lineto
4293
2505.40174653861 484.45981760808 lineto
4294
2504.58920828798 485.042725483532 lineto
4295
2500.52570449658 487.957847768666 lineto
4296
2498 475 lineto
4297
fill
4298
grestore
4299
gsave
4300
grestore
4301
gsave
4302
2431 659 moveto
4303
2431 619 lineto
4304
2431 585.545900836211 lineto
4305
 
4306
1 setlinejoin
4307
1 setlinewidth
4308
[] 0 setdash
4309
0.000 0.000 0.000 setrgbcolor AdjustColor
4310
stroke
4311
2431 579 moveto
4312
2436.501 591.001 lineto
4313
2431.5 591.001 lineto
4314
2430.5 591.001 lineto
4315
2425.499 591.001 lineto
4316
2431 579 lineto
4317
fill
4318
grestore
4319
gsave
4320
2438 555 moveto
4321
2460 515 lineto
4322
2479.73705745089 480.674682694101 lineto
4323
 
4324
1 setlinejoin
4325
1 setlinewidth
4326
[] 0 setdash
4327
0.000 0.000 0.000 setrgbcolor AdjustColor
4328
stroke
4329
2483 475 moveto
4330
2481.7866996109 488.145832197537 lineto
4331
2477.45130118931 485.652978105122 lineto
4332
2476.58439488625 485.154506980864 lineto
4333
2472.24899646466 482.661652888449 lineto
4334
2483 475 lineto
4335
fill
4336
grestore
4337
gsave
4338
2396 463 moveto
4339
2382.66 449.659999999999 2372.67 446.329999999999 2366 453 curveto
4340
2359.33 459.67 2359.33 466.33 2366 473 curveto
4341
2372.67 479.67 2381.1186592602 477.881340739796 2391.37134912974 467.62865087026 curveto
4342
 
4343
1 setlinejoin
4344
1 setlinewidth
4345
[] 0 setdash
4346
0.000 0.000 0.000 setrgbcolor AdjustColor
4347
stroke
4348
2396 463 moveto
4349
2391.40380592229 475.375782884327 lineto
4350
2387.86756490957 471.839541871613 lineto
4351
2387.16045812839 471.132435090426 lineto
4352
2383.62421711567 467.596194077712 lineto
4353
2396 463 lineto
4354
fill
4355
grestore
4356
gsave
4357
grestore
4358
gsave
4359
2352 567 moveto
4360
2338.66 553.66 2328.67 550.329999999999 2322 557 curveto
4361
2315.33 563.67 2315.33 570.33 2322 577 curveto
4362
2328.67 583.67 2337.1186592602 581.881340739797 2347.37134912974 571.62865087026 curveto
4363
 
4364
1 setlinejoin
4365
1 setlinewidth
4366
[] 0 setdash
4367
0.000 0.000 0.000 setrgbcolor AdjustColor
4368
stroke
4369
2352 567 moveto
4370
2347.40380592229 579.375782884327 lineto
4371
2343.86756490957 575.839541871614 lineto
4372
2343.16045812839 575.132435090427 lineto
4373
2339.62421711567 571.596194077713 lineto
4374
2352 567 lineto
4375
fill
4376
grestore
4377
gsave
4378
grestore
4379
gsave
4380
2728 2427 moveto
4381
2638 2387 lineto
4382
2553.98171978025 2349.65854212456 lineto
4383
 
4384
1 setlinejoin
4385
1 setlinewidth
4386
[] 0 setdash
4387
0.000 0.000 0.000 setrgbcolor AdjustColor
4388
stroke
4389
2548 2347 moveto
4390
2561.20082009675 2346.84719040215 lineto
4391
2559.16972162802 2351.4171619568 lineto
4392
2558.76358316197 2352.33097350542 lineto
4393
2556.73248469323 2356.90094506007 lineto
4394
2548 2347 lineto
4395
fill
4396
grestore
4397
gsave
4398
2536 2323 moveto
4399
2586 2283 lineto
4400
2630.8885102073 2247.08919183416 lineto
4401
 
4402
1 setlinejoin
4403
1 setlinewidth
4404
[] 0 setdash
4405
0.000 0.000 0.000 setrgbcolor AdjustColor
4406
stroke
4407
2636 2243 moveto
4408
2630.06524087447 2254.79252458645 lineto
4409
2626.94114094165 2250.88739967042 lineto
4410
2626.3164458941 2250.10653086098 lineto
4411
2623.19234596128 2246.20140594495 lineto
4412
2636 2243 lineto
4413
fill
4414
grestore
4415
gsave
4416
2521 2316.45409916379 moveto
4417
2521 2277 lineto
4418
2521 2231 lineto
4419
2526 2185 lineto
4420
2531 2139 lineto
4421
 
4422
1 setlinejoin
4423
1 setlinewidth
4424
[] 0 setdash
4425
0.000 0.000 0.000 setrgbcolor AdjustColor
4426
stroke
4427
2521 2323 moveto
4428
2515.499 2310.999 lineto
4429
2520.5 2310.999 lineto
4430
2521.5 2310.999 lineto
4431
2526.501 2310.999 lineto
4432
2521 2323 lineto
4433
fill
4434
grestore
4435
gsave
4436
grestore
4437
gsave
4438
2450 2127 moveto
4439
2436.66 2113.66 2426.67 2110.33 2420 2117 curveto
4440
2413.33 2123.67 2413.33 2130.33 2420 2137 curveto
4441
2426.67 2143.67 2435.1186592602 2141.8813407398 2445.37134912974 2131.62865087026 curveto
4442
 
4443
1 setlinejoin
4444
1 setlinewidth
4445
[] 0 setdash
4446
0.000 0.000 0.000 setrgbcolor AdjustColor
4447
stroke
4448
2450 2127 moveto
4449
2445.40380592229 2139.37578288433 lineto
4450
2441.86756490957 2135.83954187161 lineto
4451
2441.16045812839 2135.13243509043 lineto
4452
2437.62421711567 2131.59619407771 lineto
4453
2450 2127 lineto
4454
fill
4455
grestore
4456
gsave
4457
grestore
4458
gsave
4459
2637 2219 moveto
4460
2591 2179 lineto
4461
2550.89246728416 2143.34885980815 lineto
4462
 
4463
1 setlinejoin
4464
1 setlinewidth
4465
[] 0 setdash
4466
0.000 0.000 0.000 setrgbcolor AdjustColor
4467
stroke
4468
2546 2139 moveto
4469
2558.62432471093 2142.86153176772 lineto
4470
2555.30184115294 2146.59932577046 lineto
4471
2554.63747731411 2147.34673508914 lineto
4472
2551.31499375612 2151.08452909188 lineto
4473
2546 2139 lineto
4474
fill
4475
grestore
4476
gsave
4477
2537 1907 moveto
4478
2554 1867 lineto
4479
2568.43963215529 1833.02439492873 lineto
4480
 
4481
1 setlinejoin
4482
1 setlinewidth
4483
[] 0 setdash
4484
0.000 0.000 0.000 setrgbcolor AdjustColor
4485
stroke
4486
2571 1827 moveto
4487
2571.36866155766 1840.19655601496 lineto
4488
2566.76608663445 1838.24046167259 lineto
4489
2565.84575571599 1837.84932103225 lineto
4490
2561.24318079278 1835.89322668988 lineto
4491
2571 1827 lineto
4492
fill
4493
grestore
4494
gsave
4495
2628 763 moveto
4496
2844 723 lineto
4497
3054.56255208354 684.186626344047 lineto
4498
 
4499
1 setlinejoin
4500
1 setlinewidth
4501
[] 0 setdash
4502
0.000 0.000 0.000 setrgbcolor AdjustColor
4503
stroke
4504
3061 683 moveto
4505
3050.19504240951 690.585373653796 lineto
4506
3049.28847225285 685.6672305539 lineto
4507
3049.10719447707 684.683798620308 lineto
4508
3048.20062432041 679.765655520413 lineto
4509
3061 683 lineto
4510
fill
4511
grestore
4512
gsave
4513
2681 1387 moveto
4514
2624 1341 lineto
4515
2568 1295 lineto
4516
2568 1243 lineto
4517
2568 1191 lineto
4518
2689 1145 lineto
4519
2804.87501835055 1101.30941931045 lineto
4520
 
4521
1 setlinejoin
4522
1 setlinewidth
4523
[] 0 setdash
4524
0.000 0.000 0.000 setrgbcolor AdjustColor
4525
stroke
4526
2811 1099 moveto
4527
2801.71147109167 1108.38127031478 lineto
4528
2799.94709881342 1103.70184818553 lineto
4529
2799.59429491855 1102.76615089914 lineto
4530
2797.82992264031 1098.08672876988 lineto
4531
2811 1099 lineto
4532
fill
4533
grestore
4534
gsave
4535
grestore
4536
gsave
4537
grestore
4538
gsave
4539
2695 1387 moveto
4540
2694 1347 lineto
4541
2693.16359640501 1313.54385620057 lineto
4542
 
4543
1 setlinejoin
4544
1 setlinewidth
4545
[] 0 setdash
4546
0.000 0.000 0.000 setrgbcolor AdjustColor
4547
stroke
4548
2693 1307 moveto
4549
2698.799213029 1318.85976940097 lineto
4550
2693.79977510932 1318.98475534896 lineto
4551
2692.80008746291 1319.00974754012 lineto
4552
2687.80064954322 1319.13473348812 lineto
4553
2693 1307 lineto
4554
fill
4555
grestore
4556
gsave
4557
2696 1283 moveto
4558
2707 1243 lineto
4559
2716.26431195607 1209.31159288703 lineto
4560
 
4561
1 setlinejoin
4562
1 setlinewidth
4563
[] 0 setdash
4564
0.000 0.000 0.000 setrgbcolor AdjustColor
4565
stroke
4566
2718 1203 moveto
4567
2720.12195091308 1216.03005473214 lineto
4568
2715.29995974367 1214.70400716055 lineto
4569
2714.33575435086 1214.43885067753 lineto
4570
2709.51376318145 1213.11280310594 lineto
4571
2718 1203 lineto
4572
fill
4573
grestore
4574
gsave
4575
2681 1283 moveto
4576
2635 1237 lineto
4577
2590 1191 lineto
4578
2701 1145 lineto
4579
2806.94491199736 1101.48691114394 lineto
4580
 
4581
1 setlinejoin
4582
1 setlinewidth
4583
[] 0 setdash
4584
0.000 0.000 0.000 setrgbcolor AdjustColor
4585
stroke
4586
2813 1099 moveto
4587
2803.98877077537 1108.64794018748 lineto
4588
2802.08879658663 1104.02191607577 lineto
4589
2801.70887773265 1103.09689625739 lineto
4590
2799.80890354391 1098.47087214568 lineto
4591
2813 1099 lineto
4592
fill
4593
grestore
4594
gsave
4595
grestore
4596
gsave
4597
2796 1491 moveto
4598
2796 1445 lineto
4599
2796 1399 lineto
4600
2750 1353 lineto
4601
2708.62865087026 1311.62865087026 lineto
4602
 
4603
1 setlinejoin
4604
1 setlinewidth
4605
[] 0 setdash
4606
0.000 0.000 0.000 setrgbcolor AdjustColor
4607
stroke
4608
2704 1307 moveto
4609
2716.37578288433 1311.59619407771 lineto
4610
2712.83954187161 1315.13243509043 lineto
4611
2712.13243509043 1315.83954187161 lineto
4612
2708.59619407771 1319.37578288433 lineto
4613
2704 1307 lineto
4614
fill
4615
grestore
4616
gsave
4617
grestore
4618
gsave
4619
2683 659 moveto
4620
2717 619 lineto
4621
2747.6894941367 583.926292415195 lineto
4622
 
4623
1 setlinejoin
4624
1 setlinewidth
4625
[] 0 setdash
4626
0.000 0.000 0.000 setrgbcolor AdjustColor
4627
stroke
4628
2752 579 moveto
4629
2748.23721059855 591.654106761061 lineto
4630
2744.47357454832 588.360925217111 lineto
4631
2743.72099785362 587.702420609242 lineto
4632
2739.95736180339 584.409239065292 lineto
4633
2752 579 lineto
4634
fill
4635
grestore
4636
gsave
4637
2668 659 moveto
4638
2649 613 lineto
4639
2631 567 lineto
4640
2682 521 lineto
4641
2728.13921222555 479.384239953428 lineto
4642
 
4643
1 setlinejoin
4644
1 setlinewidth
4645
[] 0 setdash
4646
0.000 0.000 0.000 setrgbcolor AdjustColor
4647
stroke
4648
2733 475 moveto
4649
2727.77281875275 487.122771061452 lineto
4650
2724.42330513259 483.409179873885 lineto
4651
2723.75353636231 482.666610150317 lineto
4652
2720.40402274216 478.95301896275 lineto
4653
2733 475 lineto
4654
fill
4655
grestore
4656
gsave
4657
grestore
4658
gsave
4659
2724 1283 moveto
4660
2828 1243 lineto
4661
2925.89041221588 1205.34984145543 lineto
4662
 
4663
1 setlinejoin
4664
1 setlinewidth
4665
[] 0 setdash
4666
0.000 0.000 0.000 setrgbcolor AdjustColor
4667
stroke
4668
2932 1203 moveto
4669
2922.77366329524 1212.44244211051 lineto
4670
2920.97840891961 1207.77478073389 lineto
4671
2920.6194298403 1206.84143512768 lineto
4672
2918.82417546468 1202.17377375106 lineto
4673
2932 1203 lineto
4674
fill
4675
grestore
4676
gsave
4677
2837.46721896045 2425.98812220347 moveto
4678
3125 2381 lineto
4679
3419 2335 lineto
4680
3419 2283 lineto
4681
3419 2231 lineto
4682
3419 2179 lineto
4683
3419 2127 lineto
4684
3419 2075 lineto
4685
3419 2023 lineto
4686
3419 1971 lineto
4687
3419 1919 lineto
4688
3419 1867 lineto
4689
3419 1815 lineto
4690
3419 1763 lineto
4691
3419 1711 lineto
4692
3419 1659 lineto
4693
3419 1607 lineto
4694
3419 1555 lineto
4695
3419 1503 lineto
4696
3419 1451 lineto
4697
3419 1399 lineto
4698
3419 1347 lineto
4699
3419 1295 lineto
4700
3419 1243 lineto
4701
3419 1191 lineto
4702
3419 1139 lineto
4703
3419 1087 lineto
4704
3419 1035 lineto
4705
3419 983 lineto
4706
3419 931 lineto
4707
3419 879 lineto
4708
3419 833 lineto
4709
3419 787 lineto
4710
 
4711
1 setlinejoin
4712
1 setlinewidth
4713
[] 0 setdash
4714
0.000 0.000 0.000 setrgbcolor AdjustColor
4715
stroke
4716
2831 2427 moveto
4717
2842.00639267052 2419.70998474746 lineto
4718
2842.77945675858 2424.65087261461 lineto
4719
2842.93403865981 2425.63885259204 lineto
4720
2843.70710274787 2430.57974045919 lineto
4721
2831 2427 lineto
4722
fill
4723
grestore
4724
gsave
4725
grestore
4726
gsave
4727
grestore
4728
gsave
4729
grestore
4730
gsave
4731
grestore
4732
gsave
4733
grestore
4734
gsave
4735
grestore
4736
gsave
4737
grestore
4738
gsave
4739
grestore
4740
gsave
4741
grestore
4742
gsave
4743
grestore
4744
gsave
4745
grestore
4746
gsave
4747
grestore
4748
gsave
4749
grestore
4750
gsave
4751
grestore
4752
gsave
4753
grestore
4754
gsave
4755
2675 2439 moveto
4756
2661.66 2425.66 2651.67 2422.33 2645 2429 curveto
4757
2638.33 2435.67 2638.33 2442.33 2645 2449 curveto
4758
2651.67 2455.67 2660.1186592602 2453.8813407398 2670.37134912974 2443.62865087026 curveto
4759
 
4760
1 setlinejoin
4761
1 setlinewidth
4762
[] 0 setdash
4763
0.000 0.000 0.000 setrgbcolor AdjustColor
4764
stroke
4765
2675 2439 moveto
4766
2670.40380592229 2451.37578288433 lineto
4767
2666.86756490957 2447.83954187161 lineto
4768
2666.16045812839 2447.13243509043 lineto
4769
2662.62421711567 2443.59619407771 lineto
4770
2675 2439 lineto
4771
fill
4772
grestore
4773
gsave
4774
grestore
4775
gsave
4776
2841.52062758274 2432.4253403749 moveto
4777
3391 2384 lineto
4778
3947 2335 lineto
4779
3947 2283 lineto
4780
3947 2231 lineto
4781
3947 2179 lineto
4782
3947 2127 lineto
4783
3947 2075 lineto
4784
3947 2023 lineto
4785
3947 1971 lineto
4786
3947 1919 lineto
4787
3947 1867 lineto
4788
3947 1815 lineto
4789
3947 1763 lineto
4790
3947 1711 lineto
4791
3947 1659 lineto
4792
3947 1607 lineto
4793
3947 1555 lineto
4794
3947 1503 lineto
4795
3947 1451 lineto
4796
3947 1399 lineto
4797
3947 1347 lineto
4798
3947 1295 lineto
4799
3947 1243 lineto
4800
3947 1191 lineto
4801
3947 1139 lineto
4802
3947 1087 lineto
4803
3947 1035 lineto
4804
3947 983 lineto
4805
3947 931 lineto
4806
3947 879 lineto
4807
3947 827 lineto
4808
3947 775 lineto
4809
3947 723 lineto
4810
3947 671 lineto
4811
3927 625 lineto
4812
3908 579 lineto
4813
 
4814
1 setlinejoin
4815
1 setlinewidth
4816
[] 0 setdash
4817
0.000 0.000 0.000 setrgbcolor AdjustColor
4818
stroke
4819
2835 2433 moveto
4820
2846.47173641975 2426.46668036019 lineto
4821
2846.91077038268 2431.44837185801 lineto
4822
2846.99855961742 2432.44451092975 lineto
4823
2847.43759358036 2437.42620242757 lineto
4824
2835 2433 lineto
4825
fill
4826
grestore
4827
gsave
4828
grestore
4829
gsave
4830
grestore
4831
gsave
4832
grestore
4833
gsave
4834
grestore
4835
gsave
4836
grestore
4837
gsave
4838
grestore
4839
gsave
4840
grestore
4841
gsave
4842
grestore
4843
gsave
4844
grestore
4845
gsave
4846
grestore
4847
gsave
4848
grestore
4849
gsave
4850
grestore
4851
gsave
4852
grestore
4853
gsave
4854
grestore
4855
gsave
4856
grestore
4857
gsave
4858
grestore
4859
gsave
4860
grestore
4861
gsave
4862
2841.51594422695 2431.37446935421 moveto
4863
3335 2384 lineto
4864
3836 2335 lineto
4865
3836 2283 lineto
4866
3836 2231 lineto
4867
3836 2179 lineto
4868
3836 2127 lineto
4869
3836 2075 lineto
4870
3836 2023 lineto
4871
3836 1971 lineto
4872
3836 1919 lineto
4873
3836 1867 lineto
4874
3836 1815 lineto
4875
3836 1763 lineto
4876
3836 1711 lineto
4877
3836 1659 lineto
4878
3836 1607 lineto
4879
3836 1555 lineto
4880
3836 1503 lineto
4881
3836 1451 lineto
4882
3836 1399 lineto
4883
3836 1347 lineto
4884
3836 1295 lineto
4885
3836 1243 lineto
4886
3836 1191 lineto
4887
3836 1139 lineto
4888
3836 1087 lineto
4889
3836 1035 lineto
4890
3836 983 lineto
4891
3836 931 lineto
4892
3836 879 lineto
4893
3836 827 lineto
4894
3836 775 lineto
4895
3836 729 lineto
4896
3836 683 lineto
4897
 
4898
1 setlinejoin
4899
1 setlinewidth
4900
[] 0 setdash
4901
0.000 0.000 0.000 setrgbcolor AdjustColor
4902
stroke
4903
2835 2432 moveto
4904
2846.42039949209 2425.37735117637 lineto
4905
2846.89829838452 2430.35546463918 lineto
4906
2846.99385905087 2431.35088824702 lineto
4907
2847.4717579433 2436.32900170983 lineto
4908
2835 2432 lineto
4909
fill
4910
grestore
4911
gsave
4912
grestore
4913
gsave
4914
grestore
4915
gsave
4916
grestore
4917
gsave
4918
grestore
4919
gsave
4920
grestore
4921
gsave
4922
grestore
4923
gsave
4924
grestore
4925
gsave
4926
grestore
4927
gsave
4928
grestore
4929
gsave
4930
grestore
4931
gsave
4932
grestore
4933
gsave
4934
grestore
4935
gsave
4936
grestore
4937
gsave
4938
grestore
4939
gsave
4940
grestore
4941
gsave
4942
grestore
4943
gsave
4944
2695 1503 moveto
4945
2681.66 1489.66 2671.67 1486.33 2665 1493 curveto
4946
2658.33 1499.67 2658.33 1506.33 2665 1513 curveto
4947
2671.67 1519.67 2680.1186592602 1517.8813407398 2690.37134912974 1507.62865087026 curveto
4948
 
4949
1 setlinejoin
4950
1 setlinewidth
4951
[] 0 setdash
4952
0.000 0.000 0.000 setrgbcolor AdjustColor
4953
stroke
4954
2695 1503 moveto
4955
2690.40380592229 1515.37578288433 lineto
4956
2686.86756490957 1511.83954187161 lineto
4957
2686.16045812839 1511.13243509043 lineto
4958
2682.62421711567 1507.59619407771 lineto
4959
2695 1503 lineto
4960
fill
4961
grestore
4962
gsave
4963
grestore
4964
gsave
4965
2784 1491 moveto
4966
2745 1451 lineto
4967
2711.50848567869 1415.74577439862 lineto
4968
 
4969
1 setlinejoin
4970
1 setlinewidth
4971
[] 0 setdash
4972
0.000 0.000 0.000 setrgbcolor AdjustColor
4973
stroke
4974
2707 1411 moveto
4975
2719.25390417664 1415.91190741257 lineto
4976
2715.62818200924 1419.35634347161 lineto
4977
2714.90318257564 1420.04509293352 lineto
4978
2711.27746040824 1423.48952899256 lineto
4979
2707 1411 lineto
4980
fill
4981
grestore
4982
gsave
4983
2830 1491 moveto
4984
2963 1445 lineto
4985
3096 1399 lineto
4986
3096 1347 lineto
4987
3096 1295 lineto
4988
3096 1243 lineto
4989
3096 1191 lineto
4990
2984 1145 lineto
4991
2878.05508800264 1101.48691114394 lineto
4992
 
4993
1 setlinejoin
4994
1 setlinewidth
4995
[] 0 setdash
4996
0.000 0.000 0.000 setrgbcolor AdjustColor
4997
stroke
4998
2872 1099 moveto
4999
2885.19109645609 1098.47087214568 lineto
5000
2883.29112226735 1103.09689625739 lineto
5001
2882.91120341337 1104.02191607577 lineto
5002
2881.01122922463 1108.64794018748 lineto
5003
2872 1099 lineto
5004
fill
5005
grestore
5006
gsave
5007
grestore
5008
gsave
5009
grestore
5010
gsave
5011
grestore
5012
gsave
5013
2839 763 moveto
5014
3059 723 lineto
5015
3272.55968513275 684.170966339499 lineto
5016
 
5017
1 setlinejoin
5018
1 setlinewidth
5019
[] 0 setdash
5020
0.000 0.000 0.000 setrgbcolor AdjustColor
5021
stroke
5022
3279 683 moveto
5023
3268.17662600443 690.559072519297 lineto
5024
3267.28201992799 685.638739098888 lineto
5025
3267.10313448979 684.654869188787 lineto
5026
3266.20852841335 679.734535768378 lineto
5027
3279 683 lineto
5028
fill
5029
grestore
5030
gsave
5031
2751 451 moveto
5032
2765 411 lineto
5033
2777.70158077009 377.129117946418 lineto
5034
 
5035
1 setlinejoin
5036
1 setlinewidth
5037
[] 0 setdash
5038
0.000 0.000 0.000 setrgbcolor AdjustColor
5039
stroke
5040
2780 371 moveto
5041
2780.93691438331 384.168416512183 lineto
5042
2776.25433216628 382.4124481808 lineto
5043
2775.31800298871 382.061324739212 lineto
5044
2770.63542077169 380.305356407828 lineto
5045
2780 371 lineto
5046
fill
5047
grestore
5048
gsave
5049
2761 555 moveto
5050
2754 515 lineto
5051
2748.97102189488 481.4734792992 lineto
5052
 
5053
1 setlinejoin
5054
1 setlinewidth
5055
[] 0 setdash
5056
0.000 0.000 0.000 setrgbcolor AdjustColor
5057
stroke
5058
2748 475 moveto
5059
2755.22037265274 486.052204339203 lineto
5060
2750.27470195205 486.794054944307 lineto
5061
2749.28576559918 486.942395397237 lineto
5062
2744.34009489849 487.684246002341 lineto
5063
2748 475 lineto
5064
fill
5065
grestore
5066
gsave
5067
2735 1179 moveto
5068
2782 1139 lineto
5069
2824.01503867218 1103.24252027899 lineto
5070
 
5071
1 setlinejoin
5072
1 setlinewidth
5073
[] 0 setdash
5074
0.000 0.000 0.000 setrgbcolor AdjustColor
5075
stroke
5076
2829 1099 moveto
5077
2823.4260663653 1110.96729985569 lineto
5078
2820.18482509902 1107.15884136782 lineto
5079
2819.5367064695 1106.39730197812 lineto
5080
2816.29546520322 1102.58884349025 lineto
5081
2829 1099 lineto
5082
fill
5083
grestore
5084
gsave
5085
2950 1179 moveto
5086
2903 1139 lineto
5087
2860.98496132782 1103.24252027899 lineto
5088
 
5089
1 setlinejoin
5090
1 setlinewidth
5091
[] 0 setdash
5092
0.000 0.000 0.000 setrgbcolor AdjustColor
5093
stroke
5094
2856 1099 moveto
5095
2868.70453479678 1102.58884349025 lineto
5096
2865.4632935305 1106.39730197812 lineto
5097
2864.81517490098 1107.15884136782 lineto
5098
2861.5739336347 1110.96729985569 lineto
5099
2856 1099 lineto
5100
fill
5101
grestore
5102
gsave
5103
2961 659 moveto
5104
3016 619 lineto
5105
3065.70609378949 582.850113607647 lineto
5106
 
5107
1 setlinejoin
5108
1 setlinewidth
5109
[] 0 setdash
5110
0.000 0.000 0.000 setrgbcolor AdjustColor
5111
stroke
5112
3071 579 moveto
5113
3064.52989076119 590.50750574355 lineto
5114
3061.58844410112 586.463016585949 lineto
5115
3061.00027240344 585.654280501646 lineto
5116
3058.05882574337 581.609791344046 lineto
5117
3071 579 lineto
5118
fill
5119
grestore
5120
gsave
5121
3080 555 moveto
5122
3054 515 lineto
5123
3031.56743969989 480.488368769058 lineto
5124
 
5125
1 setlinejoin
5126
1 setlinewidth
5127
[] 0 setdash
5128
0.000 0.000 0.000 setrgbcolor AdjustColor
5129
stroke
5130
3028 475 moveto
5131
3039.15268352877 482.064180922598 lineto
5132
3034.95962700365 484.789667663926 lineto
5133
3034.12118338735 485.334656014521 lineto
5134
3029.92812686223 488.060142755849 lineto
5135
3028 475 lineto
5136
fill
5137
grestore
5138
gsave
5139
3216 763 moveto
5140
3369 723 lineto
5141
3516.6643292597 684.645628763715 lineto
5142
 
5143
1 setlinejoin
5144
1 setlinewidth
5145
[] 0 setdash
5146
0.000 0.000 0.000 setrgbcolor AdjustColor
5147
stroke
5148
3523 683 moveto
5149
3512.76737008379 691.341360020871 lineto
5150
3511.51012686345 686.500973622564 lineto
5151
3511.25872849905 685.533089919643 lineto
5152
3510.00148527871 680.692703521337 lineto
5153
3523 683 lineto
5154
fill
5155
grestore
5156
gsave
5157
3342 555 moveto
5158
3333 515 lineto
5159
3325.43690506161 481.386244718255 lineto
5160
 
5161
1 setlinejoin
5162
1 setlinewidth
5163
[] 0 setdash
5164
0.000 0.000 0.000 setrgbcolor AdjustColor
5165
stroke
5166
3324 475 moveto
5167
3332.00119512195 485.50075609756 lineto
5168
3327.12217073171 486.598536585365 lineto
5169
3326.14656097561 486.818048780488 lineto
5170
3321.26753658537 487.915829268292 lineto
5171
3324 475 lineto
5172
fill
5173
grestore
5174
gsave
5175
3345 659 moveto
5176
3345 619 lineto
5177
3345 585.545900836211 lineto
5178
 
5179
1 setlinejoin
5180
1 setlinewidth
5181
[] 0 setdash
5182
0.000 0.000 0.000 setrgbcolor AdjustColor
5183
stroke
5184
3345 579 moveto
5185
3350.501 591.001 lineto
5186
3345.5 591.001 lineto
5187
3344.5 591.001 lineto
5188
3339.499 591.001 lineto
5189
3345 579 lineto
5190
fill
5191
grestore
5192
gsave
5193
3628 243 moveto
5194
3513 203 lineto
5195
3404.18258237136 165.150463433516 lineto
5196
 
5197
1 setlinejoin
5198
1 setlinewidth
5199
[] 0 setdash
5200
0.000 0.000 0.000 setrgbcolor AdjustColor
5201
stroke
5202
3398 163 moveto
5203
3411.14209801507 161.74689914124 lineto
5204
3409.49916636974 166.470327621567 lineto
5205
3409.1706457448 167.414824418273 lineto
5206
3407.52771409947 172.138252898601 lineto
5207
3398 163 lineto
5208
fill
5209
grestore
5210
gsave
5211
3270 151 moveto
5212
3256.66 137.66 3246.67 134.33 3240 141 curveto
5213
3233.33 147.67 3233.33 154.329999999999 3240 161 curveto
5214
3246.67 167.669999999999 3255.1186592602 165.881340739796 3265.37134912974 155.628650870259 curveto
5215
 
5216
1 setlinejoin
5217
1 setlinewidth
5218
[] 0 setdash
5219
0.000 0.000 0.000 setrgbcolor AdjustColor
5220
stroke
5221
3270 151 moveto
5222
3265.40380592229 163.375782884326 lineto
5223
3261.86756490957 159.839541871613 lineto
5224
3261.16045812839 159.132435090426 lineto
5225
3257.62421711567 155.596194077712 lineto
5226
3270 151 lineto
5227
fill
5228
grestore
5229
gsave
5230
grestore
5231
gsave
5232
3512 347 moveto
5233
3512 301 lineto
5234
3512 255 lineto
5235
3446 209 lineto
5236
3386.34323040728 166.781363057456 lineto
5237
 
5238
1 setlinejoin
5239
1 setlinewidth
5240
[] 0 setdash
5241
0.000 0.000 0.000 setrgbcolor AdjustColor
5242
stroke
5243
3381 163 moveto
5244
3393.97382719686 165.44229602344 lineto
5245
3391.08490524043 169.524468353176 lineto
5246
3390.50723638291 170.340739564881 lineto
5247
3387.61831442649 174.422911894617 lineto
5248
3381 163 lineto
5249
fill
5250
grestore
5251
gsave
5252
grestore
5253
gsave
5254
3343 451 moveto
5255
3416 411 lineto
5256
3484.24152839716 374.112687352886 lineto
5257
 
5258
1 setlinejoin
5259
1 setlinewidth
5260
[] 0 setdash
5261
0.000 0.000 0.000 setrgbcolor AdjustColor
5262
stroke
5263
3490 371 moveto
5264
3482.05846133662 381.545945460602 lineto
5265
3479.68040064776 377.146533186208 lineto
5266
3479.20488361339 376.266826672631 lineto
5267
3476.82682292453 371.867414398238 lineto
5268
3490 371 lineto
5269
fill
5270
grestore
5271
gsave
5272
3464 764 moveto
5273
3625 724 lineto
5274
3780.65417859102 684.60604122079 lineto
5275
 
5276
1 setlinejoin
5277
1 setlinewidth
5278
[] 0 setdash
5279
0.000 0.000 0.000 setrgbcolor AdjustColor
5280
stroke
5281
3787 683 moveto
5282
3776.71549193029 691.277312109856 lineto
5283
3775.48849318005 686.4291707065 lineto
5284
3775.24314250014 685.459736312708 lineto
5285
3774.01614374991 680.611594909353 lineto
5286
3787 683 lineto
5287
fill
5288
grestore
5289
gsave
5290
3572 659 moveto
5291
3580 619 lineto
5292
3587.56309493839 585.386244718255 lineto
5293
 
5294
1 setlinejoin
5295
1 setlinewidth
5296
[] 0 setdash
5297
0.000 0.000 0.000 setrgbcolor AdjustColor
5298
stroke
5299
3589 579 moveto
5300
3591.73246341463 591.915829268292 lineto
5301
3586.85343902439 590.818048780488 lineto
5302
3585.87782926829 590.598536585365 lineto
5303
3580.99880487805 589.50075609756 lineto
5304
3589 579 lineto
5305
fill
5306
grestore
5307
gsave
5308
3529 347 moveto
5309
3587 307 lineto
5310
3639.6113307363 270.71632363014 lineto
5311
 
5312
1 setlinejoin
5313
1 setlinewidth
5314
[] 0 setdash
5315
0.000 0.000 0.000 setrgbcolor AdjustColor
5316
stroke
5317
3645 267 moveto
5318
3638.24372234611 278.34185673792 lineto
5319
3635.40448983413 274.224969595557 lineto
5320
3634.83675687833 273.401756809642 lineto
5321
3631.99752436636 269.28486966728 lineto
5322
3645 267 lineto
5323
fill
5324
grestore
5325
gsave
5326
3584 555 moveto
5327
3558 515 lineto
5328
3535.56743969989 480.488368769058 lineto
5329
 
5330
1 setlinejoin
5331
1 setlinewidth
5332
[] 0 setdash
5333
0.000 0.000 0.000 setrgbcolor AdjustColor
5334
stroke
5335
3532 475 moveto
5336
3543.15268352877 482.064180922598 lineto
5337
3538.95962700365 484.789667663926 lineto
5338
3538.12118338735 485.334656014521 lineto
5339
3533.92812686223 488.060142755849 lineto
5340
3532 475 lineto
5341
fill
5342
grestore
5343
gsave
5344
3583 255 moveto
5345
3569.66 241.659999999999 3559.67 238.329999999999 3553 245 curveto
5346
3546.33 251.67 3546.33 258.329999999999 3553 265 curveto
5347
3559.67 271.67 3568.1186592602 269.881340739796 3578.37134912974 259.628650870259 curveto
5348
 
5349
1 setlinejoin
5350
1 setlinewidth
5351
[] 0 setdash
5352
0.000 0.000 0.000 setrgbcolor AdjustColor
5353
stroke
5354
3583 255 moveto
5355
3578.40380592229 267.375782884326 lineto
5356
3574.86756490957 263.839541871613 lineto
5357
3574.16045812839 263.132435090426 lineto
5358
3570.62421711567 259.596194077712 lineto
5359
3583 255 lineto
5360
fill
5361
grestore
5362
gsave
5363
grestore
5364
gsave
5365
3843 659 moveto
5366
3869 619 lineto
5367
3892.33774617061 584.425561228724 lineto
5368
 
5369
1 setlinejoin
5370
1 setlinewidth
5371
[] 0 setdash
5372
0.000 0.000 0.000 setrgbcolor AdjustColor
5373
stroke
5374
3896 579 moveto
5375
3893.84526282322 592.024673112942 lineto
5376
3889.70019060417 589.226749365082 lineto
5377
3888.87134193009 588.667276510081 lineto
5378
3884.72626971104 585.869352762221 lineto
5379
3896 579 lineto
5380
fill
5381
grestore
5382
gsave
5383
3796 567 moveto
5384
3782.66 553.66 3772.67 550.329999999999 3766 557 curveto
5385
3759.33 563.67 3759.33 570.33 3766 577 curveto
5386
3772.67 583.67 3781.1186592602 581.881340739797 3791.37134912974 571.62865087026 curveto
5387
 
5388
1 setlinejoin
5389
1 setlinewidth
5390
[] 0 setdash
5391
0.000 0.000 0.000 setrgbcolor AdjustColor
5392
stroke
5393
3796 567 moveto
5394
3791.40380592229 579.375782884327 lineto
5395
3787.86756490957 575.839541871614 lineto
5396
3787.16045812839 575.132435090427 lineto
5397
3783.62421711567 571.596194077713 lineto
5398
3796 567 lineto
5399
fill
5400
grestore
5401
gsave
5402
grestore
5403
restore showpage
5404
 
5405
%%Trailer
5406
end
5407
%%EOF
5408
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.