1: %!
2: %%BoundingBox: 69 74 543 506
3: %%Creator: Igor
4: %%Title: CuPlots
5: %%Creation Date: Wed, Nov 05, 2003 2:26 PM
6: %%DocumentFonts: (atend)
7: %%EndComments
8: 0 580 translate 1 -1 scale
9: /IgorSave save def
10:
11: 1000 dict begin
12:
13: 0 setgray 0 setlinecap
14: 1 setlinewidth 0 setlinejoin
15: 1 setmiterlimit [] 0 setdash
16:
17: /aw 0 def /ah 0 def
18: /x0 0 def /y0 0 def /x1 0 def /y1 0 def
19: /rx0 0 def /ry0 0 def /rx1 0 def /ry1 0 def
20: /tmp0 0 def /tmp1 0 def
21: /packedRed 0 def /packedGreen 0 def /packedBlue 0 def
22: /x 0 def /y 0 def /w 0 def /c 0 string def
23:
24: /rbak 1 def /gbak 1 def /bbak 1 def
25: /rfor 0 def /gfor 0 def /bfor 0 def
26:
27: /bdef{bind def}bind def
28: /ldef{load def}bdef
29: /xdef{exch def}bdef
30:
31: /setuserscreendict 22 dict def
32: setuserscreendict begin
33:
34: /tempctm matrix def
35: /temprot matrix def
36: /tempscale matrix def
37:
38: /concatprocs{
39: /proc2 exch cvlit def
40: /proc1 exch cvlit def
41: /newproc proc1 length proc2 length add array def
42: newproc 0 proc1 putinterval
43: newproc proc1 length proc2 putinterval
44: newproc cvx
45: }def
46:
47: /resmatrix matrix def
48: /findresolution{
49: 72 0 resmatrix defaultmatrix dtransform
50: /yres xdef /xres xdef
51: xres dup mul yres dup mul add sqrt
52: }def
53: end
54:
55: /setuserscreen{
56: setuserscreendict begin
57: /spotfunction xdef
58: /screenangle xdef
59: /cellsize xdef
60:
61: /m tempctm currentmatrix def
62: /rm screenangle temprot rotate def
63: /sm cellsize dup tempscale scale def
64:
65: sm rm m m concatmatrix m concatmatrix pop
66: 1 0 m dtransform /y1 xdef /x1 xdef
67: /veclength x1 dup mul y1 dup mul add sqrt def
68: /frequency findresolution veclength div def
69: /newscreenangle y1 x1 atan def
70: m 2 get m 1 get mul m 0 get m 3 get mul sub 0 gt
71: {
72: { neg } /spotfunction load concatprocs
73: /spotfunction xdef
74: } if
75: frequency newscreenangle /spotfunction load setscreen
76: end
77: }def
78:
79: /setpatterndict 18 dict def
80: setpatterndict begin
81: /bitison{
82: /ybit xdef /xbit xdef
83: /bytevalue bstring ybit bwidth mul xbit 8 idiv add get def
84: /mask 1 7 xbit 8 mod sub bitshift def
85: bytevalue mask and 0 ne
86: }def
87: end
88:
89: /bitpatternspotfunction{
90: setpatterndict begin
91: /y xdef /x xdef
92: /xindex x 1 add 2 div bpside mul cvi def
93: /yindex y 1 add 2 div bpside mul cvi def
94: xindex yindex bitison
95: { /onbits onbits 1 add def 1 }
96: { /offbits offbits 1 add def 0 }
97: ifelse
98: end
99: }def
100:
101: /setpattern{
102: setpatterndict begin
103: /cellsz xdef
104: /angle xdef
105: /bwidth xdef
106: /bpside xdef
107: /bstring xdef
108:
109: /onbits 0 def /offbits 0 def
110: cellsz angle /bitpatternspotfunction load setuserscreen
111: {} settransfer
112: offbits offbits onbits add div setgray
113: end
114: }def
115:
116: /FillPattern{ % patternstring --
117: /pat xdef
118: gsave
119: pat 8 1 0 72 300 32 div div setpattern
120: fill
121: grestore
122: }def
123:
124:
125:
126: /UseBack{ rbak gbak bbak setrgbcolor }bdef
127: /UseFore{ rfor gfor bfor setrgbcolor }bdef
128: /SetBack {/bbak xdef /gbak xdef /rbak xdef }bdef
129: /SetFore {/bfor xdef /gfor xdef /rfor xdef }bdef
130:
131:
132: /ps {setlinewidth} bdef
133: /clw {currentlinewidth} bdef
134: /sd {0 setdash} bdef
135:
136: /mstroke {0 clw eq {newpath}{stroke} ifelse} bdef
137:
138: /_R{ .5 sub round .5 add}bdef
139: /allign { transform _R exch _R exch itransform }bdef
140: /L {allign lineto} bdef
141: /M {allign moveto} bdef
142:
143: /addto { dup load exec 3 -1 roll add store }bdef
144: /MacLine{ % xto yto xfrom yfrom MacLine --
145: newpath % only handles horizontal or vertical lines
146: /y0 xdef /x0 xdef /y1 xdef /x1 xdef
147: x1 x0 sub abs
148: y1 y0 sub abs gt
149: {clw x1 x0 gt {/x1}{/x0}ifelse addto clw 2 div dup /y0 addto /y1 addto}
150: {clw y1 y0 gt {/y1}{/y0}ifelse addto clw 2 div dup /x0 addto /x1 addto}
151: ifelse
152: x0 y0 M
153: x1 y1 L
154: mstroke
155: }bdef
156:
157: /FillPath{ % graylevel FillPath -- fills current path and leaves path alive
158: gsave
159: dup 1 exch sub % glev 1-glev
160: rbak 2 index mul rfor 2 index mul add
161: gbak 3 index mul gfor 3 index mul add
162: bbak 4 index mul bfor 4 index mul add
163: setrgbcolor
164: pop pop
165: fill
166: grestore
167: }bdef
168:
169: /StrokePath{ % linejoin StrokePath -- strokes current path and leaves path alive
170: gsave
171: setlinejoin
172: mstroke
173: grestore
174: }bdef
175:
176: /RectPath{ % x0 y0 x1 y1 RectPath -- sets current path to a rectange
177: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
178: newpath
179: x0 y0 M
180: x1 y0 L
181: x1 y1 L
182: x0 y1 L
183: closepath
184: }bdef
185:
186: /PaintRect{ % x0 y0 x1 y1 graylevel PaintRect --
187: gsave
188: 5 1 roll
189: RectPath
190: FillPath
191: grestore
192: }bdef
193:
194:
195:
196:
197: % **** begin image stuff *****
198: % The following are used for images. This has to be kept
199: % in synch with corresponding code in ImageDisp.c.In particular
200: % the expansion factor, 8, has to be in synch. LH010606: now to
201: % fix colorscales in layouts, expansion factor is in variable.
202: % packedcolor is (red*256+green)*256+blue
203:
204: /ExpFact 8 def % default expansion factor
205:
206: /SetPackedColor{ % packedcolor SetPackedColor --
207: dup 256 mod /tmp0 xdef % extract blue
208: 256 idiv
209: dup 256 mod /tmp1 xdef % extract green
210: 256 idiv % extract red
211: 255 div /packedRed xdef
212: tmp1 255 div /packedGreen xdef
213: tmp0 255 div /packedBlue xdef
214: }bdef
215:
216: /IR_FillRect{
217: gsave
218: newpath
219: rx0 ry0 M
220: rx1 ry0 L
221: rx1 ry1 L
222: rx0 ry1 L
223: closepath
224: packedRed packedGreen packedBlue setrgbcolor
225: fill
226: grestore
227: }bdef
228:
229: /NewRectImageLine{ % x0 y0 x1 y1 packedcolor NewRectImageLine --
230: SetPackedColor
231:
232: /ry1 xdef /rx1 xdef /ry0 xdef /rx0 xdef % remember starting rectange for following calls
233:
234: IR_FillRect
235: }bdef
236:
237: /rx{ % xdist rx --
238: ExpFact div
239: dup 0 lt
240: { rx0 /rx1 xdef rx1 add /rx0 xdef } % neg delta steps left
241: { rx1 /rx0 xdef rx0 add /rx1 xdef }
242: ifelse
243: IR_FillRect
244: }bdef
245:
246: /ry{ % ydist rr --
247: ExpFact div
248: dup 0 lt
249: { ry1 /ry0 xdef ry0 exch sub /ry1 xdef } % neg delta steps down
250: { ry0 /ry1 xdef ry1 exch sub /ry0 xdef }
251: ifelse
252: IR_FillRect
253: }bdef
254:
255:
256: /cx{ % xdist packedcolor cx --
257: SetPackedColor
258: rx
259: }bdef
260:
261: /cy{ % ydist packedcolor cx --
262: SetPackedColor
263: ry
264: }bdef
265:
266: % **** end image stuff *****
267:
268:
269:
270: /EraseRect{ % x0 y0 x1 y1 EraseRect -- fills rect with background color
271: gsave
272: RectPath
273: UseBack fill
274: grestore
275: }bdef
276:
277: /FrameRect{ % x0 y0 x1 y1 FrameRect --
278: RectPath
279: mstroke
280: }bdef
281:
282: /FrameMacRect{ % x0 y0 x1 y1 FrameMacRect -- Mac-like version
283: RectPath
284: mstroke
285: }bdef
286:
287:
288: /ellipse{
289: /savematrix matrix currentmatrix def
290: translate scale 0 0 1 0 360 arc
291: savematrix setmatrix
292: }bdef
293:
294:
295:
296: /OvalPath{ % x0 y0 x1 y1 OvalPath -- sets current path to an oval inside rectange
297: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
298: newpath
299: x0 x1 sub abs 2 div y0 y1 sub abs 2 div x0 x1 add 2 div y0 y1 add 2 div ellipse
300: closepath
301: }bdef
302:
303:
304: /PaintOval{ % x0 y0 x1 y1 graylevel PaintOval --
305: gsave
306: 5 1 roll
307: OvalPath
308: FillPath
309: grestore
310: }bdef
311:
312: /EraseOval{ % x0 y0 x1 y1 EraseOval -- fills with background color
313: gsave
314: OvalPath
315: UseBack fill
316: grestore
317: }bdef
318:
319: /FrameOval{ % x0 y0 x1 y1 FrameOval --
320: OvalPath
321: mstroke
322: }bdef
323:
324:
325: /RRectPath{ % x0 y0 x1 y1 r OvalPath -- sets current path to rounded rectange, radius r
326: /radius xdef
327: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
328: newpath
329: x0 radius add y0 M
330: x1 y0 x1 y1 radius arcto 4{pop}repeat
331: x1 y1 x0 y1 radius arcto 4{pop}repeat
332: x0 y1 x0 y0 radius arcto 4{pop}repeat
333: x0 y0 x1 y0 radius arcto 4{pop}repeat
334: closepath
335: }bdef
336:
337:
338: /PaintRRect{ % x0 y0 x1 y1 r graylevel PaintRRect --
339: gsave
340: 6 1 roll
341: RRectPath
342: FillPath
343: grestore
344: }bdef
345:
346: /EraseRRect{ % x0 y0 x1 y1 r EraseRRect -- fills rect with background color
347: gsave
348: RRectPath
349: UseBack fill
350: grestore
351: }bdef
352:
353: /FrameRRect{ % x0 y0 x1 y1 r FrameRect --
354: RRectPath
355: mstroke
356: }bdef
357:
358:
359:
360:
361: /CapLine{ % x0 y0 x1 y1 linecap CapLine -- draws line using given line cap
362: gsave
363: setlinecap
364: /y1 xdef /x1 xdef /y0 xdef /x0 xdef
365: newpath
366: x0 y0 M
367: x1 y1 L
368: mstroke
369: grestore
370: }bdef
371:
372: /Arrow{ % x0 y0 x1 y1 width height graylevel Arrow -- draws arrow at end of line from P0 to P1
373: gsave
374: /gl xdef 1 add /aw xdef 1 add /ah xdef /y0 xdef /x0 xdef /y1 xdef /x1 xdef
375: x0 y0 translate
376: /x1 x1 x0 sub def
377: /y1 y1 y0 sub def
378: y1 x1 atan rotate
379: newpath
380: 0 0 M
381: aw ah 2 div L
382: aw ah 2 div neg L
383: closepath
384: gl FillPath
385: % 10 setmiterlimit
386: % 1 ps
387: % 0 StrokePath
388: grestore
389: }bdef
390:
391:
392: % ************ fonts ************
393:
394:
395: /normal 0 def
396: /bold 1 def
397: /italic 2 def
398: /underline 4 def
399: /outline 8 def
400: /shadow 16 def
401:
402: /FACE1 bold italic or def
403: /FACE2 outline shadow or def
404:
405: /Shadow {
406: gsave
407: siz 0.08 mul 1 index mul x add
408: exch siz 0.07 mul mul y add M
409: c show
410: grestore
411: } def
412:
413: /Outline {
414: gsave
415: siz .02 mul setlinewidth
416: x y M c true charpath
417: gsave UseBack fill grestore stroke
418: grestore
419: } def
420:
421: /Underline{
422: gsave
423: siz 0.08 mul ps
424: x y clw add M x c stringwidth pop add y clw add L stroke
425: grestore
426: }bdef
427:
428: /DoShow{ % assumes x,y,c are already set
429: fontkind FACE2 and
430: dup normal eq {c x y M show} if
431: dup outline eq {Outline} if
432: dup shadow eq {1 Shadow Outline} if
433: outline shadow or eq {1 Shadow 1.5 Shadow Outline} if
434: fontkind underline and 0 ne { Underline } if
435: }bdef
436:
437: /DoWShow{ % assumes x,y,c & w are already set
438: gsave
439: x y translate
440: /x 0 def /y 0 def
441: w c stringwidth pop div 1 scale
442: DoShow
443: grestore
444: }bdef
445:
446: /S{
447: /y xdef /x xdef /c xdef
448: DoShow
449: }bdef
450:
451: /WS{ % string x y desiredwidth WS -
452: /w xdef /y xdef /x xdef /c xdef
453: DoWShow
454: }bdef
455:
456: /F{
457: /fontkind xdef
458: findfont exch /siz xdef [siz 0 0 siz neg 0 0] makefont setfont
459: }bdef
460:
461:
462:
463: /Re-encode {
464: dup length array copy
465: /eap 0 def
466: exch {
467: dup type /integertype eq
468: { /eap xdef }
469: {
470: 1 index
471: exch
472: eap exch
473: put
474: /eap eap 1 add def
475: }
476: ifelse
477: } forall
478: } bind def
479:
480: [ 39/quotesingle 96/grave 128/.notdef/.notdef/quotesinglbase
481: /florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex
482: /perthousand/Scaron/guilsinglleft/OE/.notdef/.notdef
483: /.notdef/.notdef/quoteleft/quoteright/quotedblleft/quotedblright
484: /bullet/endash/emdash/tilde/trademark/scaron/guilsinglright
485: /oe/.notdef/.notdef/Ydieresis/.notdef/exclamdown/cent
486: /sterling/currency/yen/brokenbar/section/dieresis/copyright
487: /ordfeminine/guillemotleft/logicalnot/.notdef/registered
488: /macron/degree/plusminus/twosuperior/threesuperior/acute
489: /mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine
490: /guillemotright/onequarter/onehalf/threequarters/questiondown
491: /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
492: /Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave
493: /Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute
494: /Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave
495: /Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
496: /agrave/aacute/acircumflex/atilde/adieresis/aring/ae
497: /ccedilla/egrave/eacute/ecircumflex/edieresis/igrave
498: /iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute
499: /ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute
500: /ucircumflex/udieresis/yacute/thorn/ydieresis]
501: /zzz xdef
502:
503: /OurEncoding{ zzz StandardEncoding Re-encode }bdef
504:
505: /EncodeFont {
506: findfont
507: dup length dict begin
508: {
509: 1 index /FID ne
510: { def }
511: { pop pop }
512: ifelse
513: } forall
514: /FontName xdef
515: /Encoding xdef
516: FontName currentdict
517: end
518: definefont pop
519: } bind def
520:
521: /AnObj save def
522: 1 1 1 SetBack 0 0 0 SetFore UseFore
523: 0 0 translate
524: AnObj restore
525: /AnObj save def
526: 1 1 1 SetBack 0 0 0 SetFore UseFore
527: 73 77 translate
528: 1.00 ps
529: gsave 1.00 ps 83.50 17.88 83.50 367.50 0 CapLine grestore
530: gsave 1.00 ps 425.50 17.88 425.50 367.50 0 CapLine grestore
531: 1 ps
532: 1.00 ps
533: gsave 1.00 ps 83.00 17.88 92.37 17.88 0 CapLine grestore
534: 1 ps
535: OurEncoding /_Helvetica /Helvetica EncodeFont
536: 16.00 (_Helvetica) 0 F
537: (0.6) 56.63 23.25 22.25 WS
538: 1.00 ps
539: gsave 1.00 ps 83.00 105.25 92.37 105.25 0 CapLine grestore
540: 1 ps
541: 16.00 (_Helvetica) 0 F
542: (0.4) 56.63 110.63 22.25 WS
543: 1.00 ps
544: gsave 1.00 ps 83.00 192.75 92.37 192.75 0 CapLine grestore
545: 1 ps
546: 16.00 (_Helvetica) 0 F
547: (0.2) 56.63 198.13 22.25 WS
548: 1.00 ps
549: gsave 1.00 ps 83.00 280.13 92.37 280.13 0 CapLine grestore
550: 1 ps
551: 16.00 (_Helvetica) 0 F
552: (0.0) 56.63 285.50 22.25 WS
553: 1.00 ps
554: gsave 1.00 ps 83.00 367.50 92.37 367.50 0 CapLine grestore
555: 1 ps
556: 16.00 (_Helvetica) 0 F
557: (-0.2) 51.25 372.88 27.62 WS
558: 11.25 (_Helvetica) 0 F
559: gsave 31.00 213.88 translate -90 rotate
560: (63) 0.00 0.00 12.50 WS
561: grestore
562: 16.00 (_Helvetica) 0 F
563: gsave 40.50 201.38 translate -90 rotate
564: (K \(%\)) 0.00 0.00 40.13 WS
565: grestore
566: 1.00 ps
567: gsave 1.00 ps 83.50 367.50 425.50 367.50 0 CapLine grestore
568: gsave 1.00 ps 83.50 17.88 425.50 17.88 0 CapLine grestore
569: 1 ps
570: 1.00 ps
571: gsave 1.00 ps 425.50 368.00 425.50 358.63 0 CapLine grestore
572: 1 ps
573: 16.00 (_Helvetica) 0 F
574: (10) 416.63 387.00 17.75 WS
575: 1.00 ps
576: gsave 1.00 ps 357.13 368.00 357.13 358.63 0 CapLine grestore
577: 1 ps
578: 16.00 (_Helvetica) 0 F
579: (8) 352.75 387.00 8.88 WS
580: 1.00 ps
581: gsave 1.00 ps 288.75 368.00 288.75 358.63 0 CapLine grestore
582: 1 ps
583: 16.00 (_Helvetica) 0 F
584: (6) 284.38 387.00 8.88 WS
585: 1.00 ps
586: gsave 1.00 ps 220.25 368.00 220.25 358.63 0 CapLine grestore
587: 1 ps
588: 16.00 (_Helvetica) 0 F
589: (4) 215.88 387.00 8.88 WS
590: 1.00 ps
591: gsave 1.00 ps 151.88 368.00 151.88 358.63 0 CapLine grestore
592: 1 ps
593: 16.00 (_Helvetica) 0 F
594: (2) 147.50 387.00 8.88 WS
595: 1.00 ps
596: gsave 1.00 ps 83.50 368.00 83.50 358.63 0 CapLine grestore
597: 1 ps
598: 16.00 (_Helvetica) 0 F
599: (0) 79.13 387.00 8.88 WS
600: 16.00 (Symbol) 0 F
601: (c) 189.50 415.50 8.75 WS
602: OurEncoding /_Helvetica /Helvetica EncodeFont
603: 16.00 (_Helvetica) 0 F
604: ( \(x10) 198.25 415.50 35.63 WS
605: 11.25 (_Helvetica) 0 F
606: (-3) 233.88 406.00 10.00 WS
607: 16.00 (_Helvetica) 0 F
608: ( emu/mol\)) 243.88 415.50 75.75 WS
609: 0.50 ps
610: newpath 373.50 360.13 M
611: 381.50 360.13 L
612: 373.50 368.13 L
613: 381.50 368.13 L
614: closepath
615: 0 FillPath
616: 0 StrokePath newpath
617: newpath 373.38 355.00 M
618: 381.38 355.00 L
619: 373.38 363.00 L
620: 381.38 363.00 L
621: closepath
622: 0 FillPath
623: 0 StrokePath newpath
624: newpath 363.38 350.00 M
625: 371.37 350.00 L
626: 363.38 358.00 L
627: 371.37 358.00 L
628: closepath
629: 0 FillPath
630: 0 StrokePath newpath
631: newpath 357.50 343.13 M
632: 365.50 343.13 L
633: 357.50 351.13 L
634: 365.50 351.13 L
635: closepath
636: 0 FillPath
637: 0 StrokePath newpath
638: newpath 353.63 339.75 M
639: 361.63 339.75 L
640: 353.63 347.75 L
641: 361.63 347.75 L
642: closepath
643: 0 FillPath
644: 0 StrokePath newpath
645: newpath 347.00 331.25 M
646: 355.00 331.25 L
647: 347.00 339.25 L
648: 355.00 339.25 L
649: closepath
650: 0 FillPath
651: 0 StrokePath newpath
652: newpath 335.38 324.63 M
653: 343.38 324.63 L
654: 335.38 332.62 L
655: 343.38 332.62 L
656: closepath
657: 0 FillPath
658: 0 StrokePath newpath
659: newpath 328.38 317.88 M
660: 336.37 317.88 L
661: 328.38 325.88 L
662: 336.37 325.88 L
663: closepath
664: 0 FillPath
665: 0 StrokePath newpath
666: newpath 321.75 309.38 M
667: 329.75 309.38 L
668: 321.75 317.37 L
669: 329.75 317.37 L
670: closepath
671: 0 FillPath
672: 0 StrokePath newpath
673: newpath 316.00 304.38 M
674: 324.00 304.38 L
675: 316.00 312.38 L
676: 324.00 312.38 L
677: closepath
678: 0 FillPath
679: 0 StrokePath newpath
680: newpath 308.38 296.00 M
681: 316.38 296.00 L
682: 308.38 304.00 L
683: 316.38 304.00 L
684: closepath
685: 0 FillPath
686: 0 StrokePath newpath
687: newpath 302.25 296.00 M
688: 310.25 296.00 L
689: 302.25 304.00 L
690: 310.25 304.00 L
691: closepath
692: 0 FillPath
693: 0 StrokePath newpath
694: newpath 297.25 286.00 M
695: 305.25 286.00 L
696: 297.25 294.00 L
697: 305.25 294.00 L
698: closepath
699: 0 FillPath
700: 0 StrokePath newpath
701: newpath 286.38 281.13 M
702: 294.38 281.13 L
703: 286.38 289.13 L
704: 294.38 289.13 L
705: closepath
706: 0 FillPath
707: 0 StrokePath newpath
708: newpath 279.50 276.13 M
709: 287.50 276.13 L
710: 279.50 284.13 L
711: 287.50 284.13 L
712: closepath
713: 0 FillPath
714: 0 StrokePath newpath
715: newpath 275.50 273.00 M
716: 283.50 273.00 L
717: 275.50 281.00 L
718: 283.50 281.00 L
719: closepath
720: 0 FillPath
721: 0 StrokePath newpath
722: newpath 261.12 268.13 M
723: 269.13 268.13 L
724: 261.12 276.13 L
725: 269.13 276.13 L
726: closepath
727: 0 FillPath
728: 0 StrokePath newpath
729: newpath 245.25 265.13 M
730: 253.25 265.13 L
731: 245.25 273.13 L
732: 253.25 273.13 L
733: closepath
734: 0 FillPath
735: 0 StrokePath newpath
736: newpath 234.50 264.13 M
737: 242.50 264.13 L
738: 234.50 272.13 L
739: 242.50 272.13 L
740: closepath
741: 0 FillPath
742: 0 StrokePath newpath
743: newpath 222.00 263.63 M
744: 230.00 263.63 L
745: 222.00 271.63 L
746: 230.00 271.63 L
747: closepath
748: 0 FillPath
749: 0 StrokePath newpath
750: newpath 211.12 263.25 M
751: 219.13 263.25 L
752: 211.12 271.25 L
753: 219.13 271.25 L
754: closepath
755: 0 FillPath
756: 0 StrokePath newpath
757: newpath 201.25 263.00 M
758: 209.25 263.00 L
759: 201.25 271.00 L
760: 209.25 271.00 L
761: closepath
762: 0 FillPath
763: 0 StrokePath newpath
764: newpath 193.38 262.25 M
765: 201.38 262.25 L
766: 193.38 270.25 L
767: 201.38 270.25 L
768: closepath
769: 0 FillPath
770: 0 StrokePath newpath
771: newpath 185.00 262.13 M
772: 193.00 262.13 L
773: 185.00 270.13 L
774: 193.00 270.13 L
775: closepath
776: 0 FillPath
777: 0 StrokePath newpath
778: newpath 178.62 262.13 M
779: 186.63 262.13 L
780: 178.62 270.13 L
781: 186.63 270.13 L
782: closepath
783: 0 FillPath
784: 0 StrokePath newpath
785: newpath 171.75 261.12 M
786: 179.75 261.12 L
787: 171.75 269.13 L
788: 179.75 269.13 L
789: closepath
790: 0 FillPath
791: 0 StrokePath newpath
792: newpath 163.00 261.00 M
793: 171.00 261.00 L
794: 163.00 269.00 L
795: 171.00 269.00 L
796: closepath
797: 0 FillPath
798: 0 StrokePath newpath
799: 1 ps
800: 0.50 ps
801: newpath 329.50 182.88 M
802: 337.50 190.88 L
803: 337.50 182.88 L
804: 329.50 190.88 L
805: closepath
806: 0 FillPath
807: 0 StrokePath newpath
808: newpath 302.13 186.38 M
809: 310.13 194.38 L
810: 310.13 186.38 L
811: 302.13 194.38 L
812: closepath
813: 0 FillPath
814: 0 StrokePath newpath
815: newpath 288.25 194.88 M
816: 296.25 202.87 L
817: 296.25 194.88 L
818: 288.25 202.87 L
819: closepath
820: 0 FillPath
821: 0 StrokePath newpath
822: newpath 267.50 201.88 M
823: 275.50 209.88 L
824: 275.50 201.88 L
825: 267.50 209.88 L
826: closepath
827: 0 FillPath
828: 0 StrokePath newpath
829: newpath 256.25 205.38 M
830: 264.25 213.38 L
831: 264.25 205.38 L
832: 256.25 213.38 L
833: closepath
834: 0 FillPath
835: 0 StrokePath newpath
836: newpath 243.25 208.88 M
837: 251.25 216.88 L
838: 251.25 208.88 L
839: 243.25 216.88 L
840: closepath
841: 0 FillPath
842: 0 StrokePath newpath
843: newpath 233.25 212.38 M
844: 241.25 220.38 L
845: 241.25 212.38 L
846: 233.25 220.38 L
847: closepath
848: 0 FillPath
849: 0 StrokePath newpath
850: newpath 219.25 217.63 M
851: 227.25 225.63 L
852: 227.25 217.63 L
853: 219.25 225.63 L
854: closepath
855: 0 FillPath
856: 0 StrokePath newpath
857: newpath 208.63 223.00 M
858: 216.63 231.00 L
859: 216.63 223.00 L
860: 208.63 231.00 L
861: closepath
862: 0 FillPath
863: 0 StrokePath newpath
864: newpath 202.25 226.50 M
865: 210.25 234.50 L
866: 210.25 226.50 L
867: 202.25 234.50 L
868: closepath
869: 0 FillPath
870: 0 StrokePath newpath
871: newpath 195.38 230.13 M
872: 203.38 238.13 L
873: 203.38 230.13 L
874: 195.38 238.13 L
875: closepath
876: 0 FillPath
877: 0 StrokePath newpath
878: newpath 189.87 235.50 M
879: 197.88 243.50 L
880: 197.88 235.50 L
881: 189.87 243.50 L
882: closepath
883: 0 FillPath
884: 0 StrokePath newpath
885: newpath 186.50 235.63 M
886: 194.50 243.63 L
887: 194.50 235.63 L
888: 186.50 243.63 L
889: closepath
890: 0 FillPath
891: 0 StrokePath newpath
892: newpath 183.62 239.25 M
893: 191.63 247.25 L
894: 191.63 239.25 L
895: 183.62 247.25 L
896: closepath
897: 0 FillPath
898: 0 StrokePath newpath
899: newpath 178.50 241.25 M
900: 186.50 249.25 L
901: 186.50 241.25 L
902: 178.50 249.25 L
903: closepath
904: 0 FillPath
905: 0 StrokePath newpath
906: newpath 173.25 246.75 M
907: 181.25 254.75 L
908: 181.25 246.75 L
909: 173.25 254.75 L
910: closepath
911: 0 FillPath
912: 0 StrokePath newpath
913: newpath 168.75 245.50 M
914: 176.75 253.50 L
915: 176.75 245.50 L
916: 168.75 253.50 L
917: closepath
918: 0 FillPath
919: 0 StrokePath newpath
920: newpath 161.38 251.38 M
921: 169.37 259.38 L
922: 169.37 251.38 L
923: 161.38 259.38 L
924: closepath
925: 0 FillPath
926: 0 StrokePath newpath
927: newpath 154.50 252.00 M
928: 162.50 260.00 L
929: 162.50 252.00 L
930: 154.50 260.00 L
931: closepath
932: 0 FillPath
933: 0 StrokePath newpath
934: newpath 148.00 254.50 M
935: 156.00 262.50 L
936: 156.00 254.50 L
937: 148.00 262.50 L
938: closepath
939: 0 FillPath
940: 0 StrokePath newpath
941: newpath 143.13 253.50 M
942: 151.13 261.50 L
943: 151.13 253.50 L
944: 143.13 261.50 L
945: closepath
946: 0 FillPath
947: 0 StrokePath newpath
948: 1 ps
949: 1.00 ps
950: newpath 83.50 261.25 M
951: 85.25 261.38 L
952: 86.88 261.50 L
953: 88.62 261.50 L
954: 90.38 261.63 L
955: 92.12 261.75 L
956: 93.75 261.75 L
957: 95.50 261.88 L
958: 97.25 261.88 L
959: 99.00 262.00 L
960: 100.63 262.13 L
961: 102.38 262.13 L
962: 104.13 262.25 L
963: 105.88 262.38 L
964: 107.50 262.38 L
965: 109.25 262.50 L
966: 111.00 262.50 L
967: 112.75 262.63 L
968: 114.38 262.75 L
969: 116.12 262.75 L
970: 117.88 262.88 L
971: 119.63 263.00 L
972: 121.25 263.00 L
973: 123.00 263.13 L
974: 124.75 263.13 L
975: 126.50 263.25 L
976: 128.13 263.38 L
977: 129.87 263.38 L
978: 131.63 263.50 L
979: 133.38 263.50 L
980: 135.00 263.63 L
981: 136.75 263.75 L
982: 138.50 263.75 L
983: 140.25 263.88 L
984: 141.88 264.00 L
985: 143.63 264.00 L
986: 145.38 264.13 L
987: 147.13 264.13 L
988: 148.75 264.25 L
989: 150.50 264.38 L
990: 152.25 264.38 L
991: 154.00 264.50 L
992: 155.63 264.63 L
993: 157.38 264.63 L
994: 159.13 264.75 L
995: 160.88 264.75 L
996: 162.50 264.88 L
997: 164.25 265.00 L
998: 166.00 265.00 L
999: 167.75 265.13 L
1000: 169.37 265.13 L
1001: 171.13 265.25 L
1002: 172.88 265.38 L
1003: 174.63 265.38 L
1004: 176.25 265.50 L
1005: 178.00 265.63 L
1006: 179.75 265.63 L
1007: 181.50 265.75 L
1008: 183.12 265.75 L
1009: 184.87 265.88 L
1010: 186.63 266.00 L
1011: 188.38 266.00 L
1012: 190.00 266.13 L
1013: 191.75 266.25 L
1014: 193.50 266.25 L
1015: 195.25 266.38 L
1016: 196.88 266.38 L
1017: 198.62 266.50 L
1018: 200.38 266.63 L
1019: 202.13 266.63 L
1020: 203.75 266.75 L
1021: 205.50 266.75 L
1022: 207.25 266.88 L
1023: 209.00 267.00 L
1024: 210.63 267.00 L
1025: 212.38 267.13 L
1026: 214.13 267.25 L
1027: 215.88 267.25 L
1028: 217.50 267.37 L
1029: 219.25 267.37 L
1030: 221.00 267.50 L
1031: 222.75 267.63 L
1032: 224.38 267.63 L
1033: 226.12 267.75 L
1034: 227.87 267.88 L
1035: 229.63 267.88 L
1036: 231.25 268.00 L
1037: 233.00 268.00 L
1038: 234.75 268.13 L
1039: 236.50 268.25 L
1040: 238.13 268.25 L
1041: 239.88 268.38 L
1042: 241.63 268.50 L
1043: 243.38 268.50 L
1044: 245.00 268.63 L
1045: 246.75 268.63 L
1046: 248.50 268.75 L
1047: 250.25 268.88 L
1048: 251.88 268.88 L
1049: 253.63 269.00 L
1050: 255.38 269.00 L
1051: 257.13 269.13 L
1052: 258.75 269.25 L
1053: 260.50 269.25 L
1054: 262.25 269.38 L
1055: 264.00 269.50 L
1056: 265.63 269.50 L
1057: 267.37 269.63 L
1058: 269.13 269.63 L
1059: 270.88 269.75 L
1060: 272.50 269.88 L
1061: 274.25 269.88 L
1062: 276.00 270.00 L
1063: 277.75 270.13 L
1064: 279.38 270.13 L
1065: 281.13 270.25 L
1066: 282.88 270.25 L
1067: 284.63 270.38 L
1068: 286.25 270.50 L
1069: 288.00 270.50 L
1070: 289.75 270.63 L
1071: 291.50 270.63 L
1072: 293.13 270.75 L
1073: 294.88 270.88 L
1074: 296.63 270.88 L
1075: 298.38 271.00 L
1076: 300.00 271.13 L
1077: 301.75 271.13 L
1078: 303.50 271.25 L
1079: 305.25 271.25 L
1080: 306.88 271.38 L
1081: 308.63 271.50 L
1082: 310.38 271.50 L
1083: 312.13 271.63 L
1084: 313.75 271.75 L
1085: 315.50 271.75 L
1086: 317.25 271.88 L
1087: 319.00 271.88 L
1088: 320.63 272.00 L
1089: 322.38 272.13 L
1090: 324.13 272.13 L
1091: 325.88 272.25 L
1092: 327.50 272.38 L
1093: 329.25 272.38 L
1094: 331.00 272.50 L
1095: 332.75 272.50 L
1096: 334.38 272.63 L
1097: 336.12 272.75 L
1098: 337.88 272.75 L
1099: 339.63 272.88 L
1100: 341.25 272.88 L
1101: 343.00 273.00 L
1102: 344.75 273.13 L
1103: 346.50 273.13 L
1104: 348.13 273.25 L
1105: 349.88 273.38 L
1106: 351.63 273.38 L
1107: 353.38 273.50 L
1108: 355.00 273.50 L
1109: 356.75 273.62 L
1110: 358.50 273.75 L
1111: 360.25 273.75 L
1112: 361.88 273.88 L
1113: 363.63 274.00 L
1114: 365.38 274.00 L
1115: 367.13 274.13 L
1116: 368.75 274.13 L
1117: 370.50 274.25 L
1118: 372.25 274.38 L
1119: 374.00 274.38 L
1120: 375.63 274.50 L
1121: 377.38 274.50 L
1122: 379.13 274.63 L
1123: 380.88 274.75 L
1124: 382.50 274.75 L
1125: 384.25 274.88 L
1126: 386.00 275.00 L
1127: 387.75 275.00 L
1128: 389.38 275.13 L
1129: 391.13 275.13 L
1130: 392.88 275.25 L
1131: 394.63 275.38 L
1132: 396.25 275.38 L
1133: 398.00 275.50 L
1134: 399.75 275.63 L
1135: 401.50 275.63 L
1136: 403.13 275.75 L
1137: 404.87 275.75 L
1138: 406.63 275.88 L
1139: 408.38 276.00 L
1140: 410.00 276.00 L
1141: 411.75 276.13 L
1142: 413.50 276.13 L
1143: 415.25 276.25 L
1144: 416.88 276.38 L
1145: 418.63 276.38 L
1146: mstroke
1147: newpath 418.63 276.38 M
1148: 420.38 276.50 L
1149: 422.13 276.63 L
1150: 423.75 276.63 L
1151: 425.50 276.75 L
1152: mstroke
1153: [] sd
1154: 1 ps
1155: 1.00 ps
1156: newpath 83.50 300.75 M
1157: 85.25 299.75 L
1158: 86.88 298.75 L
1159: 88.62 297.88 L
1160: 90.38 296.88 L
1161: 92.12 295.88 L
1162: 93.75 295.00 L
1163: 95.50 294.00 L
1164: 97.25 293.00 L
1165: 99.00 292.00 L
1166: 100.63 291.13 L
1167: 102.38 290.13 L
1168: 104.13 289.13 L
1169: 105.88 288.13 L
1170: 107.50 287.25 L
1171: 109.25 286.25 L
1172: 111.00 285.25 L
1173: 112.75 284.38 L
1174: 114.38 283.38 L
1175: 116.12 282.38 L
1176: 117.88 281.38 L
1177: 119.63 280.50 L
1178: 121.25 279.50 L
1179: 123.00 278.50 L
1180: 124.75 277.63 L
1181: 126.50 276.63 L
1182: 128.13 275.63 L
1183: 129.87 274.63 L
1184: 131.63 273.75 L
1185: 133.38 272.75 L
1186: 135.00 271.75 L
1187: 136.75 270.75 L
1188: 138.50 269.88 L
1189: 140.25 268.88 L
1190: 141.88 267.88 L
1191: 143.63 267.00 L
1192: 145.38 266.00 L
1193: 147.13 265.00 L
1194: 148.75 264.00 L
1195: 150.50 263.13 L
1196: 152.25 262.13 L
1197: 154.00 261.12 L
1198: 155.63 260.13 L
1199: 157.38 259.25 L
1200: 159.13 258.25 L
1201: 160.88 257.25 L
1202: 162.50 256.38 L
1203: 164.25 255.38 L
1204: 166.00 254.38 L
1205: 167.75 253.38 L
1206: 169.37 252.50 L
1207: 171.13 251.50 L
1208: 172.88 250.50 L
1209: 174.63 249.50 L
1210: 176.25 248.62 L
1211: 178.00 247.63 L
1212: 179.75 246.63 L
1213: 181.50 245.75 L
1214: 183.12 244.75 L
1215: 184.87 243.75 L
1216: 186.63 242.75 L
1217: 188.38 241.88 L
1218: 190.00 240.88 L
1219: 191.75 239.88 L
1220: 193.50 239.00 L
1221: 195.25 238.00 L
1222: 196.88 237.00 L
1223: 198.62 236.00 L
1224: 200.38 235.13 L
1225: 202.13 234.12 L
1226: 203.75 233.13 L
1227: 205.50 232.13 L
1228: 207.25 231.25 L
1229: 209.00 230.25 L
1230: 210.63 229.25 L
1231: 212.38 228.38 L
1232: 214.13 227.38 L
1233: 215.88 226.38 L
1234: 217.50 225.38 L
1235: 219.25 224.50 L
1236: 221.00 223.50 L
1237: 222.75 222.50 L
1238: 224.38 221.50 L
1239: 226.12 220.63 L
1240: 227.87 219.63 L
1241: 229.63 218.63 L
1242: 231.25 217.75 L
1243: 233.00 216.75 L
1244: 234.75 215.75 L
1245: 236.50 214.75 L
1246: 238.13 213.88 L
1247: 239.88 212.88 L
1248: 241.63 211.88 L
1249: 243.38 210.88 L
1250: 245.00 210.00 L
1251: 246.75 209.00 L
1252: 248.50 208.00 L
1253: 250.25 207.13 L
1254: 251.88 206.13 L
1255: 253.63 205.13 L
1256: 255.38 204.13 L
1257: 257.13 203.25 L
1258: 258.75 202.25 L
1259: 260.50 201.25 L
1260: 262.25 200.25 L
1261: 264.00 199.38 L
1262: 265.63 198.38 L
1263: 267.37 197.37 L
1264: 269.13 196.50 L
1265: 270.88 195.50 L
1266: 272.50 194.50 L
1267: 274.25 193.50 L
1268: 276.00 192.63 L
1269: 277.75 191.63 L
1270: 279.38 190.62 L
1271: 281.13 189.75 L
1272: 282.88 188.75 L
1273: 284.63 187.75 L
1274: 286.25 186.75 L
1275: 288.00 185.88 L
1276: 289.75 184.87 L
1277: 291.50 183.88 L
1278: 293.13 182.88 L
1279: 294.88 182.00 L
1280: 296.63 181.00 L
1281: 298.38 180.00 L
1282: 300.00 179.13 L
1283: 301.75 178.12 L
1284: 303.50 177.13 L
1285: 305.25 176.13 L
1286: 306.88 175.25 L
1287: 308.63 174.25 L
1288: 310.38 173.25 L
1289: 312.13 172.25 L
1290: 313.75 171.38 L
1291: 315.50 170.38 L
1292: 317.25 169.37 L
1293: 319.00 168.50 L
1294: 320.63 167.50 L
1295: 322.38 166.50 L
1296: 324.13 165.50 L
1297: 325.88 164.63 L
1298: 327.50 163.63 L
1299: 329.25 162.63 L
1300: 331.00 161.63 L
1301: 332.75 160.75 L
1302: 334.38 159.75 L
1303: 336.12 158.75 L
1304: 337.88 157.88 L
1305: 339.63 156.88 L
1306: 341.25 155.88 L
1307: 343.00 154.87 L
1308: 344.75 154.00 L
1309: 346.50 153.00 L
1310: 348.13 152.00 L
1311: 349.88 151.13 L
1312: 351.63 150.13 L
1313: 353.38 149.13 L
1314: 355.00 148.13 L
1315: 356.75 147.25 L
1316: 358.50 146.25 L
1317: 360.25 145.25 L
1318: 361.88 144.25 L
1319: 363.63 143.38 L
1320: 365.38 142.37 L
1321: 367.13 141.38 L
1322: 368.75 140.50 L
1323: 370.50 139.50 L
1324: 372.25 138.50 L
1325: 374.00 137.50 L
1326: 375.63 136.63 L
1327: 377.38 135.63 L
1328: 379.13 134.63 L
1329: 380.88 133.63 L
1330: 382.50 132.75 L
1331: 384.25 131.75 L
1332: 386.00 130.75 L
1333: 387.75 129.87 L
1334: 389.38 128.88 L
1335: 391.13 127.88 L
1336: 392.88 126.88 L
1337: 394.63 126.00 L
1338: 396.25 125.00 L
1339: 398.00 124.00 L
1340: 399.75 123.00 L
1341: 401.50 122.13 L
1342: 403.13 121.13 L
1343: 404.87 120.13 L
1344: 406.63 119.25 L
1345: 408.38 118.25 L
1346: 410.00 117.25 L
1347: 411.75 116.25 L
1348: 413.50 115.38 L
1349: 415.25 114.38 L
1350: 416.88 113.38 L
1351: 418.63 112.50 L
1352: mstroke
1353: newpath 418.63 112.50 M
1354: 420.38 111.50 L
1355: 422.13 110.50 L
1356: 423.75 109.50 L
1357: 425.50 108.63 L
1358: mstroke
1359: [] sd
1360: 1 ps
1361: 361.37 42.50 411.25 79.25 EraseRect
1362: gsave 1.00 ps 362.88 44.00 409.75 77.75 FrameRect grestore
1363: 1.00 ps
1364: 1 ps
1365: 0.50 ps
1366: newpath 374.38 50.00 M
1367: 381.63 50.00 L
1368: 374.38 57.25 L
1369: 381.63 57.25 L
1370: closepath
1371: 0 FillPath
1372: 0 StrokePath newpath
1373: 1 ps
1374: 12.00 (_Helvetica) 0 F
1375: ( c) 390.63 57.25 9.38 WS
1376: 1.00 ps
1377: 1 ps
1378: 0.50 ps
1379: newpath 374.38 64.37 M
1380: 381.63 71.63 L
1381: 381.63 64.37 L
1382: 374.38 71.63 L
1383: closepath
1384: 0 FillPath
1385: 0 StrokePath newpath
1386: 1 ps
1387: 12.00 (_Helvetica) 0 F
1388: ( ab) 390.63 71.63 16.63 WS
1389: AnObj restore
1390: /AnObj save def
1391: 1 1 1 SetBack 0 0 0 SetFore UseFore
1392: 0 0 translate
1393: AnObj restore
1394: /AnObj save def
1395: 1 1 1 SetBack 0 0 0 SetFore UseFore
1396: 155 88 translate
1397: 1.00 ps
1398: gsave 1.00 ps 84.00 17.88 84.00 126.75 0 CapLine grestore
1399: gsave 1.00 ps 224.50 17.88 224.50 126.75 0 CapLine grestore
1400: 1 ps
1401: 1.00 ps
1402: gsave 1.00 ps 83.50 126.75 90.75 126.75 0 CapLine grestore
1403: 1 ps
1404: OurEncoding /_Helvetica /Helvetica EncodeFont
1405: 16.00 (_Helvetica) 0 F
1406: (-0.25) 43.88 132.13 36.50 WS
1407: 1.00 ps
1408: gsave 1.00 ps 83.50 108.63 90.75 108.63 0 CapLine grestore
1409: 1 ps
1410: 16.00 (_Helvetica) 0 F
1411: (-0.20) 43.88 114.00 36.50 WS
1412: 1.00 ps
1413: gsave 1.00 ps 83.50 90.50 90.75 90.50 0 CapLine grestore
1414: 1 ps
1415: 16.00 (_Helvetica) 0 F
1416: (-0.15) 43.88 95.87 36.50 WS
1417: 1.00 ps
1418: gsave 1.00 ps 83.50 72.25 90.75 72.25 0 CapLine grestore
1419: 1 ps
1420: 16.00 (_Helvetica) 0 F
1421: (-0.10) 43.88 77.62 36.50 WS
1422: 1.00 ps
1423: gsave 1.00 ps 83.50 54.13 90.75 54.13 0 CapLine grestore
1424: 1 ps
1425: 16.00 (_Helvetica) 0 F
1426: (-0.05) 43.88 59.50 36.50 WS
1427: 1.00 ps
1428: gsave 1.00 ps 83.50 36.00 90.75 36.00 0 CapLine grestore
1429: 1 ps
1430: 16.00 (_Helvetica) 0 F
1431: (0.00) 49.25 41.38 31.12 WS
1432: 1.00 ps
1433: gsave 1.00 ps 83.50 17.88 90.75 17.88 0 CapLine grestore
1434: 1 ps
1435: 16.00 (_Helvetica) 0 F
1436: (0.05) 49.25 23.25 31.12 WS
1437: 11.25 (_Helvetica) 0 F
1438: gsave 22.00 103.00 translate -90 rotate
1439: (63) 0.00 0.00 12.50 WS
1440: grestore
1441: 16.00 (_Helvetica) 0 F
1442: gsave 31.50 90.50 translate -90 rotate
1443: (K) 0.00 0.00 10.63 WS
1444: grestore
1445: 11.25 (_Helvetica) 0 F
1446: gsave 36.38 79.87 translate -90 rotate
1447: (cf) 0.00 0.00 8.88 WS
1448: grestore
1449: 16.00 (_Helvetica) 0 F
1450: gsave 31.50 71.00 translate -90 rotate
1451: ( \(%\)) 0.00 0.00 29.50 WS
1452: grestore
1453: 1.00 ps
1454: gsave 1.00 ps 84.00 126.75 224.50 126.75 0 CapLine grestore
1455: gsave 1.00 ps 84.00 17.88 224.50 17.88 0 CapLine grestore
1456: 1 ps
1457: 1.00 ps
1458: gsave 1.00 ps 224.50 127.25 224.50 123.13 0 CapLine grestore
1459: 1 ps
1460: 1.00 ps
1461: gsave 1.00 ps 204.38 127.25 204.38 120.00 0 CapLine grestore
1462: 1 ps
1463: 16.00 (_Helvetica) 0 F
1464: (300) 191.12 145.25 26.63 WS
1465: 1.00 ps
1466: gsave 1.00 ps 184.37 127.25 184.37 123.13 0 CapLine grestore
1467: 1 ps
1468: 1.00 ps
1469: gsave 1.00 ps 164.25 127.25 164.25 120.00 0 CapLine grestore
1470: 1 ps
1471: 16.00 (_Helvetica) 0 F
1472: (200) 151.00 145.25 26.63 WS
1473: 1.00 ps
1474: gsave 1.00 ps 144.25 127.25 144.25 123.13 0 CapLine grestore
1475: 1 ps
1476: 1.00 ps
1477: gsave 1.00 ps 124.13 127.25 124.13 120.00 0 CapLine grestore
1478: 1 ps
1479: 16.00 (_Helvetica) 0 F
1480: (100) 110.88 145.25 26.63 WS
1481: 1.00 ps
1482: gsave 1.00 ps 104.13 127.25 104.13 123.13 0 CapLine grestore
1483: 1 ps
1484: 1.00 ps
1485: gsave 1.00 ps 84.00 127.25 84.00 120.00 0 CapLine grestore
1486: 1 ps
1487: 16.00 (_Helvetica) 0 F
1488: (0) 79.63 145.25 8.88 WS
1489: 16.00 (_Helvetica) 0 F
1490: (T \(K\)) 136.50 174.50 35.63 WS
1491: 0.50 ps
1492: newpath 83.25 108.38 M
1493: 87.25 108.38 L
1494: 83.25 112.37 L
1495: 87.25 112.37 L
1496: closepath
1497: 0 FillPath
1498: 0 StrokePath newpath
1499: newpath 83.25 104.13 M
1500: 87.25 104.13 L
1501: 83.25 108.13 L
1502: 87.25 108.13 L
1503: closepath
1504: 0 FillPath
1505: 0 StrokePath newpath
1506: newpath 84.13 100.38 M
1507: 88.13 100.38 L
1508: 84.13 104.38 L
1509: 88.13 104.38 L
1510: closepath
1511: 0 FillPath
1512: 0 StrokePath newpath
1513: newpath 84.87 94.87 M
1514: 88.87 94.87 L
1515: 84.87 98.87 L
1516: 88.87 98.87 L
1517: closepath
1518: 0 FillPath
1519: 0 StrokePath newpath
1520: newpath 85.38 92.25 M
1521: 89.38 92.25 L
1522: 85.38 96.25 L
1523: 89.38 96.25 L
1524: closepath
1525: 0 FillPath
1526: 0 StrokePath newpath
1527: newpath 86.25 85.50 M
1528: 90.25 85.50 L
1529: 86.25 89.50 L
1530: 90.25 89.50 L
1531: closepath
1532: 0 FillPath
1533: 0 StrokePath newpath
1534: newpath 88.25 80.25 M
1535: 92.25 80.25 L
1536: 88.25 84.25 L
1537: 92.25 84.25 L
1538: closepath
1539: 0 FillPath
1540: 0 StrokePath newpath
1541: newpath 89.87 75.00 M
1542: 93.87 75.00 L
1543: 89.87 79.00 L
1544: 93.87 79.00 L
1545: closepath
1546: 0 FillPath
1547: 0 StrokePath newpath
1548: newpath 92.00 68.25 M
1549: 96.00 68.25 L
1550: 92.00 72.25 L
1551: 96.00 72.25 L
1552: closepath
1553: 0 FillPath
1554: 0 StrokePath newpath
1555: newpath 93.25 64.25 M
1556: 97.25 64.25 L
1557: 93.25 68.25 L
1558: 97.25 68.25 L
1559: closepath
1560: 0 FillPath
1561: 0 StrokePath newpath
1562: newpath 96.12 57.63 M
1563: 100.13 57.63 L
1564: 96.12 61.63 L
1565: 100.13 61.63 L
1566: closepath
1567: 0 FillPath
1568: 0 StrokePath newpath
1569: newpath 97.75 57.75 M
1570: 101.75 57.75 L
1571: 97.75 61.75 L
1572: 101.75 61.75 L
1573: closepath
1574: 0 FillPath
1575: 0 StrokePath newpath
1576: newpath 101.13 49.63 M
1577: 105.13 49.63 L
1578: 101.13 53.63 L
1579: 105.13 53.63 L
1580: closepath
1581: 0 FillPath
1582: 0 StrokePath newpath
1583: newpath 106.12 46.00 M
1584: 110.12 46.00 L
1585: 106.12 50.00 L
1586: 110.12 50.00 L
1587: closepath
1588: 0 FillPath
1589: 0 StrokePath newpath
1590: newpath 109.75 42.13 M
1591: 113.75 42.13 L
1592: 109.75 46.13 L
1593: 113.75 46.13 L
1594: closepath
1595: 0 FillPath
1596: 0 StrokePath newpath
1597: newpath 113.88 39.63 M
1598: 117.88 39.63 L
1599: 113.88 43.63 L
1600: 117.88 43.63 L
1601: closepath
1602: 0 FillPath
1603: 0 StrokePath newpath
1604: newpath 121.37 36.25 M
1605: 125.38 36.25 L
1606: 121.37 40.25 L
1607: 125.38 40.25 L
1608: closepath
1609: 0 FillPath
1610: 0 StrokePath newpath
1611: newpath 130.38 34.38 M
1612: 134.38 34.38 L
1613: 130.38 38.38 L
1614: 134.38 38.38 L
1615: closepath
1616: 0 FillPath
1617: 0 StrokePath newpath
1618: newpath 138.25 33.88 M
1619: 142.25 33.88 L
1620: 138.25 37.88 L
1621: 142.25 37.88 L
1622: closepath
1623: 0 FillPath
1624: 0 StrokePath newpath
1625: newpath 145.63 33.88 M
1626: 149.63 33.88 L
1627: 145.63 37.88 L
1628: 149.63 37.88 L
1629: closepath
1630: 0 FillPath
1631: 0 StrokePath newpath
1632: newpath 154.38 34.00 M
1633: 158.38 34.00 L
1634: 154.38 38.00 L
1635: 158.38 38.00 L
1636: closepath
1637: 0 FillPath
1638: 0 StrokePath newpath
1639: newpath 162.13 34.25 M
1640: 166.12 34.25 L
1641: 162.13 38.25 L
1642: 166.12 38.25 L
1643: closepath
1644: 0 FillPath
1645: 0 StrokePath newpath
1646: newpath 170.38 33.88 M
1647: 174.38 33.88 L
1648: 170.38 37.88 L
1649: 174.38 37.88 L
1650: closepath
1651: 0 FillPath
1652: 0 StrokePath newpath
1653: newpath 178.62 34.13 M
1654: 182.63 34.13 L
1655: 178.62 38.13 L
1656: 182.63 38.13 L
1657: closepath
1658: 0 FillPath
1659: 0 StrokePath newpath
1660: newpath 186.50 34.25 M
1661: 190.50 34.25 L
1662: 186.50 38.25 L
1663: 190.50 38.25 L
1664: closepath
1665: 0 FillPath
1666: 0 StrokePath newpath
1667: newpath 194.75 33.75 M
1668: 198.75 33.75 L
1669: 194.75 37.75 L
1670: 198.75 37.75 L
1671: closepath
1672: 0 FillPath
1673: 0 StrokePath newpath
1674: newpath 210.75 33.88 M
1675: 214.75 33.88 L
1676: 210.75 37.88 L
1677: 214.75 37.88 L
1678: closepath
1679: 0 FillPath
1680: 0 StrokePath newpath
1681: 1 ps
1682: 0.50 ps
1683: newpath 82.75 56.13 M
1684: 86.75 60.13 L
1685: 86.75 56.13 L
1686: 82.75 60.13 L
1687: closepath
1688: 0 FillPath
1689: 0 StrokePath newpath
1690: newpath 84.00 46.25 M
1691: 88.00 50.25 L
1692: 88.00 46.25 L
1693: 84.00 50.25 L
1694: closepath
1695: 0 FillPath
1696: 0 StrokePath newpath
1697: newpath 85.25 46.88 M
1698: 89.25 50.88 L
1699: 89.25 46.88 L
1700: 85.25 50.88 L
1701: closepath
1702: 0 FillPath
1703: 0 StrokePath newpath
1704: newpath 87.25 42.88 M
1705: 91.25 46.88 L
1706: 91.25 42.88 L
1707: 87.25 46.88 L
1708: closepath
1709: 0 FillPath
1710: 0 StrokePath newpath
1711: newpath 88.87 40.50 M
1712: 92.88 44.50 L
1713: 92.88 40.50 L
1714: 88.87 44.50 L
1715: closepath
1716: 0 FillPath
1717: 0 StrokePath newpath
1718: newpath 91.37 37.38 M
1719: 95.38 41.38 L
1720: 95.38 37.38 L
1721: 91.37 41.38 L
1722: closepath
1723: 0 FillPath
1724: 0 StrokePath newpath
1725: newpath 93.87 35.75 M
1726: 97.88 39.75 L
1727: 97.88 35.75 L
1728: 93.87 39.75 L
1729: closepath
1730: 0 FillPath
1731: 0 StrokePath newpath
1732: newpath 98.00 33.63 M
1733: 102.00 37.63 L
1734: 102.00 33.63 L
1735: 98.00 37.63 L
1736: closepath
1737: 0 FillPath
1738: 0 StrokePath newpath
1739: newpath 101.62 33.00 M
1740: 105.63 37.00 L
1741: 105.63 33.00 L
1742: 101.62 37.00 L
1743: closepath
1744: 0 FillPath
1745: 0 StrokePath newpath
1746: newpath 105.38 33.00 M
1747: 109.38 37.00 L
1748: 109.38 33.00 L
1749: 105.38 37.00 L
1750: closepath
1751: 0 FillPath
1752: 0 StrokePath newpath
1753: newpath 109.50 32.75 M
1754: 113.50 36.75 L
1755: 113.50 32.75 L
1756: 109.50 36.75 L
1757: closepath
1758: 0 FillPath
1759: 0 StrokePath newpath
1760: newpath 114.00 34.63 M
1761: 118.00 38.63 L
1762: 118.00 34.63 L
1763: 114.00 38.63 L
1764: closepath
1765: 0 FillPath
1766: 0 StrokePath newpath
1767: newpath 117.25 33.25 M
1768: 121.25 37.25 L
1769: 121.25 33.25 L
1770: 117.25 37.25 L
1771: closepath
1772: 0 FillPath
1773: 0 StrokePath newpath
1774: newpath 121.37 34.88 M
1775: 125.38 38.88 L
1776: 125.38 34.88 L
1777: 121.37 38.88 L
1778: closepath
1779: 0 FillPath
1780: 0 StrokePath newpath
1781: newpath 129.63 34.13 M
1782: 133.63 38.13 L
1783: 133.63 34.13 L
1784: 129.63 38.13 L
1785: closepath
1786: 0 FillPath
1787: 0 StrokePath newpath
1788: newpath 137.88 36.25 M
1789: 141.88 40.25 L
1790: 141.88 36.25 L
1791: 137.88 40.25 L
1792: closepath
1793: 0 FillPath
1794: 0 StrokePath newpath
1795: newpath 146.13 33.13 M
1796: 150.13 37.13 L
1797: 150.13 33.13 L
1798: 146.13 37.13 L
1799: closepath
1800: 0 FillPath
1801: 0 StrokePath newpath
1802: newpath 162.63 34.50 M
1803: 166.63 38.50 L
1804: 166.63 34.50 L
1805: 162.63 38.50 L
1806: closepath
1807: 0 FillPath
1808: 0 StrokePath newpath
1809: newpath 178.25 31.88 M
1810: 182.25 35.88 L
1811: 182.25 31.88 L
1812: 178.25 35.88 L
1813: closepath
1814: 0 FillPath
1815: 0 StrokePath newpath
1816: newpath 194.25 30.88 M
1817: 198.25 34.88 L
1818: 198.25 30.88 L
1819: 194.25 34.88 L
1820: closepath
1821: 0 FillPath
1822: 0 StrokePath newpath
1823: newpath 210.38 27.88 M
1824: 214.38 31.88 L
1825: 214.38 27.88 L
1826: 210.38 31.88 L
1827: closepath
1828: 0 FillPath
1829: 0 StrokePath newpath
1830: 1 ps
1831: 1.00 ps
1832: newpath 85.25 112.50 M
1833: 85.87 104.00 L
1834: 86.50 97.88 L
1835: 87.12 93.00 L
1836: 87.75 89.13 L
1837: 88.50 85.75 L
1838: 89.13 82.88 L
1839: 89.75 80.25 L
1840: 90.38 77.88 L
1841: 91.00 75.88 L
1842: 91.63 73.87 L
1843: 92.25 72.13 L
1844: 92.88 70.50 L
1845: 93.62 69.00 L
1846: 94.25 67.50 L
1847: 94.87 66.12 L
1848: 95.50 64.87 L
1849: 96.12 63.75 L
1850: 96.75 62.63 L
1851: 97.37 61.50 L
1852: 98.00 60.50 L
1853: 98.75 59.50 L
1854: 99.38 58.63 L
1855: 100.00 57.75 L
1856: 100.63 56.88 L
1857: 101.25 56.13 L
1858: 101.88 55.25 L
1859: 102.50 54.63 L
1860: 103.13 53.88 L
1861: 103.87 53.13 L
1862: 104.50 52.50 L
1863: 105.13 51.88 L
1864: 105.75 51.25 L
1865: 106.38 50.63 L
1866: 107.00 50.13 L
1867: 107.63 49.50 L
1868: 108.38 49.00 L
1869: 109.00 48.50 L
1870: 109.63 48.00 L
1871: 110.25 47.50 L
1872: 110.88 47.13 L
1873: 111.50 46.63 L
1874: 112.13 46.25 L
1875: 112.75 45.75 L
1876: 113.50 45.38 L
1877: 114.12 45.00 L
1878: 114.75 44.63 L
1879: 115.38 44.25 L
1880: 116.00 43.88 L
1881: 116.63 43.63 L
1882: 117.25 43.25 L
1883: 117.88 42.88 L
1884: 118.62 42.63 L
1885: 119.25 42.38 L
1886: 119.88 42.00 L
1887: 120.50 41.75 L
1888: 121.13 41.50 L
1889: 121.75 41.25 L
1890: 122.37 41.00 L
1891: 123.00 40.75 L
1892: 123.75 40.50 L
1893: 124.38 40.25 L
1894: 125.00 40.00 L
1895: 125.63 39.88 L
1896: 126.25 39.63 L
1897: 126.88 39.50 L
1898: 127.50 39.25 L
1899: 128.13 39.13 L
1900: 128.88 38.88 L
1901: 129.50 38.75 L
1902: 130.13 38.50 L
1903: 130.75 38.38 L
1904: 131.38 38.25 L
1905: 132.00 38.13 L
1906: 132.63 38.00 L
1907: 133.25 37.88 L
1908: 134.00 37.75 L
1909: 134.63 37.63 L
1910: 135.25 37.50 L
1911: 135.88 37.38 L
1912: 136.50 37.25 L
1913: 137.13 37.13 L
1914: 137.75 37.00 L
1915: 138.38 37.00 L
1916: 139.13 36.88 L
1917: 139.75 36.75 L
1918: 140.38 36.75 L
1919: 141.00 36.63 L
1920: 141.63 36.50 L
1921: 142.25 36.50 L
1922: 142.88 36.50 L
1923: 143.50 36.38 L
1924: 144.25 36.38 L
1925: 144.88 36.25 L
1926: 145.50 36.25 L
1927: 146.13 36.25 L
1928: 146.75 36.13 L
1929: 147.37 36.13 L
1930: 148.00 36.13 L
1931: 148.62 36.13 L
1932: 149.38 36.13 L
1933: 150.00 36.00 L
1934: 150.63 36.00 L
1935: 151.25 36.00 L
1936: 151.88 36.00 L
1937: 152.50 36.00 L
1938: 153.13 36.00 L
1939: 153.88 36.00 L
1940: 154.50 36.00 L
1941: 155.13 36.00 L
1942: 155.75 36.00 L
1943: 156.38 36.00 L
1944: 157.00 36.00 L
1945: 157.62 36.00 L
1946: 158.25 36.00 L
1947: 159.00 36.00 L
1948: 159.63 36.00 L
1949: 160.25 36.00 L
1950: 160.88 36.00 L
1951: 161.50 36.00 L
1952: 162.13 36.00 L
1953: 162.75 36.00 L
1954: 163.38 36.00 L
1955: 164.13 36.00 L
1956: 164.75 36.00 L
1957: 165.38 36.00 L
1958: 166.00 36.00 L
1959: 166.63 36.00 L
1960: 167.25 36.00 L
1961: 167.88 36.00 L
1962: 168.50 36.00 L
1963: 169.25 36.00 L
1964: 169.88 36.00 L
1965: 170.50 36.00 L
1966: 171.13 36.00 L
1967: 171.75 36.00 L
1968: 172.37 36.00 L
1969: 173.00 36.00 L
1970: 173.62 36.00 L
1971: 174.38 36.00 L
1972: 175.00 36.00 L
1973: 175.62 36.00 L
1974: 176.25 36.00 L
1975: 176.87 36.00 L
1976: 177.50 36.00 L
1977: 178.12 36.00 L
1978: 178.75 36.00 L
1979: 179.50 36.00 L
1980: 180.13 36.00 L
1981: 180.75 36.00 L
1982: 181.38 36.00 L
1983: 182.00 36.00 L
1984: 182.63 36.00 L
1985: 183.25 36.00 L
1986: 183.88 36.00 L
1987: 184.63 36.00 L
1988: 185.25 36.00 L
1989: 185.88 36.00 L
1990: 186.50 36.00 L
1991: 187.13 36.00 L
1992: 187.75 36.00 L
1993: 188.38 36.00 L
1994: 189.00 36.00 L
1995: 189.75 36.00 L
1996: 190.38 36.00 L
1997: 191.00 36.00 L
1998: 191.63 36.00 L
1999: 192.25 36.00 L
2000: 192.88 36.00 L
2001: 193.50 36.00 L
2002: 194.13 36.00 L
2003: 194.88 36.00 L
2004: 195.50 36.00 L
2005: 196.12 36.00 L
2006: 196.75 36.00 L
2007: 197.37 36.00 L
2008: 198.00 36.00 L
2009: 198.62 36.00 L
2010: 199.25 36.00 L
2011: 200.00 36.00 L
2012: 200.63 36.00 L
2013: 201.25 36.00 L
2014: 201.88 36.00 L
2015: 202.50 36.00 L
2016: 203.13 36.00 L
2017: 203.75 36.00 L
2018: 204.50 36.00 L
2019: 205.13 36.00 L
2020: 205.75 36.00 L
2021: 206.38 36.00 L
2022: 207.00 36.00 L
2023: 207.63 36.00 L
2024: 208.25 36.00 L
2025: 208.88 36.00 L
2026: 209.63 36.00 L
2027: 210.25 36.00 L
2028: mstroke
2029: newpath 210.25 36.00 M
2030: 210.88 36.00 L
2031: 211.50 36.00 L
2032: 212.13 36.00 L
2033: 212.75 36.00 L
2034: mstroke
2035: [] sd
2036: 1 ps
2037: 1.00 ps
2038: newpath 84.75 57.75 M
2039: 85.38 53.38 L
2040: 86.12 50.63 L
2041: 86.75 48.63 L
2042: 87.37 47.00 L
2043: 88.00 45.75 L
2044: 88.62 44.63 L
2045: 89.25 43.63 L
2046: 89.87 42.75 L
2047: 90.63 42.00 L
2048: 91.25 41.38 L
2049: 91.88 40.75 L
2050: 92.50 40.25 L
2051: 93.13 39.75 L
2052: 93.75 39.38 L
2053: 94.38 39.00 L
2054: 95.00 38.63 L
2055: 95.75 38.25 L
2056: 96.37 38.00 L
2057: 97.00 37.75 L
2058: 97.62 37.50 L
2059: 98.25 37.25 L
2060: 98.87 37.13 L
2061: 99.50 36.88 L
2062: 100.13 36.75 L
2063: 100.88 36.63 L
2064: 101.50 36.50 L
2065: 102.13 36.38 L
2066: 102.75 36.25 L
2067: 103.38 36.25 L
2068: 104.00 36.13 L
2069: 104.63 36.13 L
2070: 105.25 36.13 L
2071: 106.00 36.00 L
2072: 106.63 36.00 L
2073: 107.25 36.00 L
2074: 107.87 36.00 L
2075: 108.50 36.00 L
2076: 109.13 36.00 L
2077: 109.75 36.00 L
2078: 110.50 36.00 L
2079: 111.12 36.00 L
2080: 111.75 36.00 L
2081: 112.37 36.00 L
2082: 113.00 36.00 L
2083: 113.63 36.00 L
2084: 114.25 36.00 L
2085: 114.88 36.00 L
2086: 115.63 36.00 L
2087: 116.25 36.00 L
2088: 116.88 36.00 L
2089: 117.50 36.00 L
2090: 118.13 36.00 L
2091: 118.75 36.00 L
2092: 119.38 36.00 L
2093: 120.00 36.00 L
2094: 120.75 36.00 L
2095: 121.37 36.00 L
2096: 122.00 36.00 L
2097: 122.63 36.00 L
2098: 123.25 36.00 L
2099: 123.88 36.00 L
2100: 124.50 36.00 L
2101: 125.13 36.00 L
2102: 125.88 36.00 L
2103: 126.50 36.00 L
2104: 127.13 36.00 L
2105: 127.75 36.00 L
2106: 128.38 36.00 L
2107: 129.00 36.00 L
2108: 129.63 36.00 L
2109: 130.38 36.00 L
2110: 131.00 36.00 L
2111: 131.63 36.00 L
2112: 132.25 36.00 L
2113: 132.88 36.00 L
2114: 133.50 36.00 L
2115: 134.13 36.00 L
2116: 134.75 36.00 L
2117: 135.50 36.00 L
2118: 136.12 36.00 L
2119: 136.75 36.00 L
2120: 137.38 36.00 L
2121: 138.00 36.00 L
2122: 138.63 36.00 L
2123: 139.25 36.00 L
2124: 139.88 36.00 L
2125: 140.63 36.00 L
2126: 141.25 36.00 L
2127: 141.88 36.00 L
2128: 142.50 36.00 L
2129: 143.13 36.00 L
2130: 143.75 36.00 L
2131: 144.38 36.00 L
2132: 145.00 36.00 L
2133: 145.75 36.00 L
2134: 146.37 36.00 L
2135: 147.00 36.00 L
2136: 147.63 36.00 L
2137: 148.25 36.00 L
2138: 148.88 36.00 L
2139: 149.50 36.00 L
2140: 150.25 36.00 L
2141: 150.88 36.00 L
2142: 151.50 36.00 L
2143: 152.13 36.00 L
2144: 152.75 36.00 L
2145: 153.38 36.00 L
2146: 154.00 36.00 L
2147: 154.63 36.00 L
2148: 155.38 36.00 L
2149: 156.00 36.00 L
2150: 156.63 36.00 L
2151: 157.25 36.00 L
2152: 157.88 36.00 L
2153: 158.50 36.00 L
2154: 159.13 36.00 L
2155: 159.75 36.00 L
2156: 160.50 36.00 L
2157: 161.12 36.00 L
2158: 161.75 36.00 L
2159: 162.38 36.00 L
2160: 163.00 36.00 L
2161: 163.63 36.00 L
2162: 164.25 36.00 L
2163: 164.88 36.00 L
2164: 165.62 36.00 L
2165: 166.25 36.00 L
2166: 166.88 36.00 L
2167: 167.50 36.00 L
2168: 168.13 36.00 L
2169: 168.75 36.00 L
2170: 169.37 36.00 L
2171: 170.13 36.00 L
2172: 170.75 36.00 L
2173: 171.38 36.00 L
2174: 172.00 36.00 L
2175: 172.63 36.00 L
2176: 173.25 36.00 L
2177: 173.88 36.00 L
2178: 174.50 36.00 L
2179: 175.25 36.00 L
2180: 175.88 36.00 L
2181: 176.50 36.00 L
2182: 177.13 36.00 L
2183: 177.75 36.00 L
2184: 178.38 36.00 L
2185: 179.00 36.00 L
2186: 179.63 36.00 L
2187: 180.38 36.00 L
2188: 181.00 36.00 L
2189: 181.63 36.00 L
2190: 182.25 36.00 L
2191: 182.88 36.00 L
2192: 183.50 36.00 L
2193: 184.13 36.00 L
2194: 184.75 36.00 L
2195: 185.50 36.00 L
2196: 186.12 36.00 L
2197: 186.75 36.00 L
2198: 187.38 36.00 L
2199: 188.00 36.00 L
2200: 188.63 36.00 L
2201: 189.25 36.00 L
2202: 189.87 36.00 L
2203: 190.62 36.00 L
2204: 191.25 36.00 L
2205: 191.88 36.00 L
2206: 192.50 36.00 L
2207: 193.13 36.00 L
2208: 193.75 36.00 L
2209: 194.38 36.00 L
2210: 195.13 36.00 L
2211: 195.75 36.00 L
2212: 196.38 36.00 L
2213: 197.00 36.00 L
2214: 197.63 36.00 L
2215: 198.25 36.00 L
2216: 198.88 36.00 L
2217: 199.50 36.00 L
2218: 200.25 36.00 L
2219: 200.88 36.00 L
2220: 201.50 36.00 L
2221: 202.13 36.00 L
2222: 202.75 36.00 L
2223: 203.38 36.00 L
2224: 204.00 36.00 L
2225: 204.63 36.00 L
2226: 205.38 36.00 L
2227: 206.00 36.00 L
2228: 206.63 36.00 L
2229: 207.25 36.00 L
2230: 207.88 36.00 L
2231: 208.50 36.00 L
2232: 209.12 36.00 L
2233: 209.75 36.00 L
2234: mstroke
2235: newpath 209.75 36.00 M
2236: 210.50 36.00 L
2237: 211.12 36.00 L
2238: 211.75 36.00 L
2239: 212.38 36.00 L
2240: mstroke
2241: [] sd
2242: 1 ps
2243: AnObj restore
2244: end
2245: IgorSave restore
2246: %%DocumentFonts: Helvetica
2247: %%+Symbol
2248: