1: %!
2: %%BoundingBox: 66 85 536 467
3: %%Creator: Igor
4: %%Title: Layout0
5: %%Creation Date: Wed, Nov 05, 2003 2:30 PM
6: %%DocumentFonts: (atend)
7: %%EndComments
8: 0 552 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: 70 89 translate
528: 1.00 ps
529: gsave 1.00 ps 74.63 17.88 74.63 316.50 0 CapLine grestore
530: gsave 1.00 ps 421.50 17.88 421.50 316.50 0 CapLine grestore
531: 1 ps
532: 1.00 ps
533: gsave 1.00 ps 74.13 17.88 83.50 17.88 0 CapLine grestore
534: 1 ps
535: OurEncoding /_Helvetica /Helvetica EncodeFont
536: 16.00 (_Helvetica) 0 F
537: (2.0) 47.75 23.25 22.25 WS
538: 1.00 ps
539: gsave 1.00 ps 74.13 92.50 83.50 92.50 0 CapLine grestore
540: 1 ps
541: 16.00 (_Helvetica) 0 F
542: (1.5) 47.75 97.88 22.25 WS
543: 1.00 ps
544: gsave 1.00 ps 74.13 167.25 83.50 167.25 0 CapLine grestore
545: 1 ps
546: 16.00 (_Helvetica) 0 F
547: (1.0) 47.75 172.63 22.25 WS
548: 1.00 ps
549: gsave 1.00 ps 74.13 241.88 83.50 241.88 0 CapLine grestore
550: 1 ps
551: 16.00 (_Helvetica) 0 F
552: (0.5) 47.75 247.25 22.25 WS
553: 1.00 ps
554: gsave 1.00 ps 74.13 316.50 83.50 316.50 0 CapLine grestore
555: 1 ps
556: 16.00 (_Helvetica) 0 F
557: (0.0) 47.75 321.88 22.25 WS
558: 16.00 (_Helvetica) 0 F
559: gsave 33.38 184.13 translate -90 rotate
560: (K \(%\)) 0.00 0.00 40.13 WS
561: grestore
562: 1.00 ps
563: gsave 1.00 ps 74.63 316.50 421.50 316.50 0 CapLine grestore
564: gsave 1.00 ps 74.63 17.88 421.50 17.88 0 CapLine grestore
565: 1 ps
566: 1.00 ps
567: gsave 1.00 ps 421.50 317.00 421.50 307.63 0 CapLine grestore
568: 1 ps
569: 16.00 (_Helvetica) 0 F
570: (2.5) 410.38 336.00 22.25 WS
571: 1.00 ps
572: gsave 1.00 ps 352.13 317.00 352.13 307.63 0 CapLine grestore
573: 1 ps
574: 16.00 (_Helvetica) 0 F
575: (2.0) 341.00 336.00 22.25 WS
576: 1.00 ps
577: gsave 1.00 ps 282.75 317.00 282.75 307.63 0 CapLine grestore
578: 1 ps
579: 16.00 (_Helvetica) 0 F
580: (1.5) 271.63 336.00 22.25 WS
581: 1.00 ps
582: gsave 1.00 ps 213.38 317.00 213.38 307.63 0 CapLine grestore
583: 1 ps
584: 16.00 (_Helvetica) 0 F
585: (1.0) 202.25 336.00 22.25 WS
586: 1.00 ps
587: gsave 1.00 ps 144.00 317.00 144.00 307.63 0 CapLine grestore
588: 1 ps
589: 16.00 (_Helvetica) 0 F
590: (0.5) 132.88 336.00 22.25 WS
591: 1.00 ps
592: gsave 1.00 ps 74.63 317.00 74.63 307.63 0 CapLine grestore
593: 1 ps
594: 16.00 (_Helvetica) 0 F
595: (0.0) 63.50 336.00 22.25 WS
596: 16.00 (Symbol) 0 F
597: (c) 183.00 370.50 8.75 WS
598: OurEncoding /_Helvetica /Helvetica EncodeFont
599: 16.00 (_Helvetica) 0 F
600: ( \(x10) 191.75 370.50 35.63 WS
601: 11.25 (_Helvetica) 0 F
602: (-3) 227.38 361.00 10.00 WS
603: 16.00 (_Helvetica) 0 F
604: ( emu/mol\)) 237.38 370.50 75.75 WS
605: 1.00 ps
606: newpath 86.88 316.50 M
607: 88.62 315.38 L
608: 90.38 314.25 L
609: 92.00 313.25 L
610: 93.75 312.13 L
611: 95.50 311.00 L
612: 97.25 310.00 L
613: 99.00 308.88 L
614: 100.75 307.75 L
615: 102.50 306.63 L
616: 104.25 305.63 L
617: 106.00 304.50 L
618: 107.75 303.38 L
619: 109.50 302.25 L
620: 111.25 301.25 L
621: 113.00 300.13 L
622: 114.75 299.00 L
623: 116.50 298.00 L
624: 118.25 296.88 L
625: 120.00 295.75 L
626: 121.75 294.63 L
627: 123.38 293.63 L
628: 125.13 292.50 L
629: 126.88 291.38 L
630: 128.62 290.25 L
631: 130.38 289.25 L
632: 132.13 288.13 L
633: 133.87 287.00 L
634: 135.63 285.88 L
635: 137.38 284.88 L
636: 139.13 283.75 L
637: 140.88 282.63 L
638: 142.63 281.63 L
639: 144.38 280.50 L
640: 146.13 279.38 L
641: 147.88 278.25 L
642: 149.63 277.25 L
643: 151.37 276.13 L
644: 153.13 275.00 L
645: 154.75 273.88 L
646: 156.50 272.88 L
647: 158.25 271.75 L
648: 160.00 270.63 L
649: 161.75 269.50 L
650: 163.50 268.50 L
651: 165.25 267.37 L
652: 167.00 266.25 L
653: 168.75 265.25 L
654: 170.50 264.13 L
655: 172.25 263.00 L
656: 174.00 261.88 L
657: 175.75 260.88 L
658: 177.50 259.75 L
659: 179.25 258.63 L
660: 181.00 257.50 L
661: 182.75 256.50 L
662: 184.50 255.38 L
663: 186.12 254.25 L
664: 187.88 253.25 L
665: 189.63 252.13 L
666: 191.38 251.00 L
667: 193.13 249.88 L
668: 194.88 248.88 L
669: 196.63 247.75 L
670: 198.38 246.63 L
671: 200.13 245.50 L
672: 201.88 244.50 L
673: 203.63 243.38 L
674: 205.38 242.25 L
675: 207.13 241.13 L
676: 208.88 240.13 L
677: 210.63 239.00 L
678: 212.38 237.88 L
679: 214.13 236.88 L
680: 215.88 235.75 L
681: 217.50 234.63 L
682: 219.25 233.50 L
683: 221.00 232.50 L
684: 222.75 231.38 L
685: 224.50 230.25 L
686: 226.25 229.13 L
687: 228.00 228.13 L
688: 229.75 227.00 L
689: 231.50 225.88 L
690: 233.25 224.75 L
691: 235.00 223.75 L
692: 236.75 222.63 L
693: 238.50 221.50 L
694: 240.25 220.50 L
695: 242.00 219.38 L
696: 243.75 218.25 L
697: 245.50 217.13 L
698: 247.25 216.13 L
699: 248.88 215.00 L
700: 250.63 213.88 L
701: 252.38 212.75 L
702: 254.13 211.75 L
703: 255.88 210.63 L
704: 257.63 209.50 L
705: 259.38 208.50 L
706: 261.12 207.37 L
707: 262.88 206.25 L
708: 264.63 205.13 L
709: 266.38 204.13 L
710: 268.13 203.00 L
711: 269.88 201.88 L
712: 271.63 200.75 L
713: 273.38 199.75 L
714: 275.13 198.62 L
715: 276.88 197.50 L
716: 278.63 196.38 L
717: 280.25 195.38 L
718: 282.00 194.25 L
719: 283.75 193.13 L
720: 285.50 192.13 L
721: 287.25 191.00 L
722: 289.00 189.87 L
723: 290.75 188.75 L
724: 292.50 187.75 L
725: 294.25 186.63 L
726: 296.00 185.50 L
727: 297.75 184.37 L
728: 299.50 183.38 L
729: 301.25 182.25 L
730: 303.00 181.13 L
731: 304.75 180.00 L
732: 306.50 179.00 L
733: 308.25 177.88 L
734: 310.00 176.75 L
735: 311.63 175.75 L
736: 313.38 174.63 L
737: 315.13 173.50 L
738: 316.88 172.37 L
739: 318.63 171.38 L
740: 320.38 170.25 L
741: 322.13 169.13 L
742: 323.87 168.00 L
743: 325.63 167.00 L
744: 327.38 165.88 L
745: 329.13 164.75 L
746: 330.88 163.75 L
747: 332.62 162.63 L
748: 334.38 161.50 L
749: 336.12 160.38 L
750: 337.88 159.38 L
751: 339.63 158.25 L
752: 341.38 157.13 L
753: 343.00 156.00 L
754: 344.75 155.00 L
755: 346.50 153.88 L
756: 348.25 152.75 L
757: 350.00 151.63 L
758: 351.75 150.63 L
759: 353.50 149.50 L
760: 355.25 148.38 L
761: 357.00 147.37 L
762: 358.75 146.25 L
763: 360.50 145.12 L
764: 362.25 144.00 L
765: 364.00 143.00 L
766: 365.75 141.88 L
767: 367.50 140.75 L
768: 369.25 139.63 L
769: 371.00 138.63 L
770: 372.75 137.50 L
771: 374.38 136.38 L
772: 376.13 135.25 L
773: 377.88 134.25 L
774: 379.63 133.13 L
775: 381.38 132.00 L
776: 383.13 131.00 L
777: 384.88 129.87 L
778: 386.63 128.75 L
779: 388.38 127.62 L
780: 390.13 126.63 L
781: 391.88 125.50 L
782: 393.63 124.38 L
783: 395.38 123.25 L
784: 397.13 122.25 L
785: 398.88 121.13 L
786: 400.63 120.00 L
787: 402.38 119.00 L
788: 404.13 117.88 L
789: 405.75 116.75 L
790: 407.50 115.63 L
791: 409.25 114.63 L
792: 411.00 113.50 L
793: 412.75 112.37 L
794: 414.50 111.25 L
795: 416.25 110.25 L
796: 418.00 109.13 L
797: 419.75 108.00 L
798: 421.50 106.88 L
799: mstroke
800: [] sd
801: 1 ps
802: 0.50 ps
803: newpath 330.00 160.50 M
804: 334.00 164.50 L
805: 330.00 168.50 L
806: 326.00 164.50 L
807: closepath
808: 1 FillPath
809: 0 StrokePath newpath
810: newpath 334.75 156.75 M
811: 338.75 160.75 L
812: 334.75 164.75 L
813: 330.75 160.75 L
814: closepath
815: 1 FillPath
816: 0 StrokePath newpath
817: newpath 343.63 152.13 M
818: 347.63 156.13 L
819: 343.63 160.13 L
820: 339.63 156.13 L
821: closepath
822: 1 FillPath
823: 0 StrokePath newpath
824: newpath 350.63 146.88 M
825: 354.63 150.88 L
826: 350.63 154.87 L
827: 346.63 150.88 L
828: closepath
829: 1 FillPath
830: 0 StrokePath newpath
831: newpath 356.63 143.75 M
832: 360.63 147.75 L
833: 356.63 151.75 L
834: 352.62 147.75 L
835: closepath
836: 1 FillPath
837: 0 StrokePath newpath
838: newpath 362.63 140.00 M
839: 366.63 144.00 L
840: 362.63 148.00 L
841: 358.63 144.00 L
842: closepath
843: 1 FillPath
844: 0 StrokePath newpath
845: newpath 369.88 135.38 M
846: 373.87 139.38 L
847: 369.88 143.38 L
848: 365.88 139.38 L
849: closepath
850: 1 FillPath
851: 0 StrokePath newpath
852: newpath 377.75 130.13 M
853: 381.75 134.13 L
854: 377.75 138.13 L
855: 373.75 134.13 L
856: closepath
857: 1 FillPath
858: 0 StrokePath newpath
859: newpath 374.25 127.75 M
860: 378.25 131.75 L
861: 374.25 135.75 L
862: 370.25 131.75 L
863: closepath
864: 1 FillPath
865: 0 StrokePath newpath
866: newpath 355.88 132.38 M
867: 359.88 136.38 L
868: 355.88 140.38 L
869: 351.88 136.38 L
870: closepath
871: 1 FillPath
872: 0 StrokePath newpath
873: newpath 340.88 134.63 M
874: 344.88 138.63 L
875: 340.88 142.63 L
876: 336.88 138.63 L
877: closepath
878: 1 FillPath
879: 0 StrokePath newpath
880: newpath 332.75 137.00 M
881: 336.75 141.00 L
882: 332.75 145.00 L
883: 328.75 141.00 L
884: closepath
885: 1 FillPath
886: 0 StrokePath newpath
887: newpath 319.88 142.25 M
888: 323.87 146.25 L
889: 319.88 150.25 L
890: 315.88 146.25 L
891: closepath
892: 1 FillPath
893: 0 StrokePath newpath
894: newpath 316.00 145.25 M
895: 320.00 149.25 L
896: 316.00 153.25 L
897: 312.00 149.25 L
898: closepath
899: 1 FillPath
900: 0 StrokePath newpath
901: newpath 317.50 143.75 M
902: 321.50 147.75 L
903: 317.50 151.75 L
904: 313.50 147.75 L
905: closepath
906: 1 FillPath
907: 0 StrokePath newpath
908: 1 ps
909: AnObj restore
910: /AnObj save def
911: 1 1 1 SetBack 0 0 0 SetFore UseFore
912: 0 0 translate
913: AnObj restore
914: /AnObj save def
915: 1 1 1 SetBack 0 0 0 SetFore UseFore
916: 125 107 translate
917: 1.00 ps
918: gsave 1.00 ps 84.00 17.88 84.00 139.75 0 CapLine grestore
919: gsave 1.00 ps 218.50 17.88 218.50 139.75 0 CapLine grestore
920: 1 ps
921: 1.00 ps
922: gsave 1.00 ps 83.50 17.88 90.75 17.88 0 CapLine grestore
923: 1 ps
924: OurEncoding /_Helvetica /Helvetica EncodeFont
925: 16.00 (_Helvetica) 0 F
926: (0.20) 49.25 23.25 31.12 WS
927: 1.00 ps
928: gsave 1.00 ps 83.50 45.63 90.75 45.63 0 CapLine grestore
929: 1 ps
930: 16.00 (_Helvetica) 0 F
931: (0.15) 49.25 51.00 31.12 WS
932: 1.00 ps
933: gsave 1.00 ps 83.50 73.25 90.75 73.25 0 CapLine grestore
934: 1 ps
935: 16.00 (_Helvetica) 0 F
936: (0.10) 49.25 78.62 31.12 WS
937: 1.00 ps
938: gsave 1.00 ps 83.50 101.00 90.75 101.00 0 CapLine grestore
939: 1 ps
940: 16.00 (_Helvetica) 0 F
941: (0.05) 49.25 106.38 31.12 WS
942: 1.00 ps
943: gsave 1.00 ps 83.50 128.62 90.75 128.62 0 CapLine grestore
944: 1 ps
945: 16.00 (_Helvetica) 0 F
946: (0.00) 49.25 134.00 31.12 WS
947: 16.00 (_Helvetica) 0 F
948: gsave 38.38 94.25 translate -90 rotate
949: (K) 0.00 0.00 10.63 WS
950: grestore
951: 11.25 (_Helvetica) 0 F
952: gsave 43.25 83.62 translate -90 rotate
953: (cf) 0.00 0.00 8.88 WS
954: grestore
955: 16.00 (_Helvetica) 0 F
956: gsave 38.38 74.75 translate -90 rotate
957: ( \(%\)) 0.00 0.00 29.50 WS
958: grestore
959: 1.00 ps
960: gsave 1.00 ps 84.00 139.75 218.50 139.75 0 CapLine grestore
961: gsave 1.00 ps 84.00 17.88 218.50 17.88 0 CapLine grestore
962: 1 ps
963: 1.00 ps
964: gsave 1.00 ps 218.50 140.25 218.50 133.00 0 CapLine grestore
965: 1 ps
966: 16.00 (_Helvetica) 0 F
967: (300) 205.25 158.25 26.63 WS
968: 1.00 ps
969: gsave 1.00 ps 196.12 140.25 196.12 136.12 0 CapLine grestore
970: 1 ps
971: 1.00 ps
972: gsave 1.00 ps 173.62 140.25 173.62 133.00 0 CapLine grestore
973: 1 ps
974: 16.00 (_Helvetica) 0 F
975: (200) 160.38 158.25 26.63 WS
976: 1.00 ps
977: gsave 1.00 ps 151.25 140.25 151.25 136.12 0 CapLine grestore
978: 1 ps
979: 1.00 ps
980: gsave 1.00 ps 128.88 140.25 128.88 133.00 0 CapLine grestore
981: 1 ps
982: 16.00 (_Helvetica) 0 F
983: (100) 115.63 158.25 26.63 WS
984: 1.00 ps
985: gsave 1.00 ps 106.38 140.25 106.38 136.12 0 CapLine grestore
986: 1 ps
987: 1.00 ps
988: gsave 1.00 ps 84.00 140.25 84.00 133.00 0 CapLine grestore
989: 1 ps
990: 16.00 (_Helvetica) 0 F
991: (0) 79.63 158.25 8.88 WS
992: 16.00 (_Helvetica) 0 F
993: (T \(K\)) 133.50 187.50 35.63 WS
994: 1.00 ps
995: newpath 89.25 41.63 M
996: 89.87 41.63 L
997: 90.50 41.63 L
998: 91.12 41.63 L
999: 91.63 41.63 L
1000: 92.25 41.63 L
1001: 92.88 41.63 L
1002: 93.50 41.63 L
1003: 94.13 41.63 L
1004: 94.62 41.63 L
1005: 95.25 41.63 L
1006: 95.87 41.63 L
1007: 96.50 41.63 L
1008: 97.13 41.63 L
1009: 97.62 41.63 L
1010: 98.25 41.63 L
1011: 98.87 41.63 L
1012: 99.50 41.63 L
1013: 100.13 41.63 L
1014: 100.63 41.63 L
1015: 101.25 41.63 L
1016: 101.88 41.63 L
1017: 102.50 41.63 L
1018: 103.13 41.63 L
1019: 103.62 41.63 L
1020: 104.25 41.63 L
1021: 104.87 41.63 L
1022: 105.50 41.63 L
1023: 106.12 41.63 L
1024: 106.63 41.63 L
1025: 107.25 41.63 L
1026: 107.87 41.63 L
1027: 108.50 41.63 L
1028: 109.13 41.63 L
1029: 109.63 41.63 L
1030: 110.25 41.63 L
1031: 110.88 41.63 L
1032: 111.50 41.63 L
1033: 112.13 41.63 L
1034: 112.63 43.88 L
1035: 113.25 46.88 L
1036: 113.88 49.88 L
1037: 114.50 52.75 L
1038: 115.12 55.50 L
1039: 115.63 58.25 L
1040: 116.25 60.88 L
1041: 116.88 63.38 L
1042: 117.50 65.88 L
1043: 118.13 68.25 L
1044: 118.62 70.50 L
1045: 119.25 72.75 L
1046: 119.88 75.00 L
1047: 120.50 77.13 L
1048: 121.13 79.13 L
1049: 121.63 81.25 L
1050: 122.25 83.13 L
1051: 122.88 85.00 L
1052: 123.50 86.88 L
1053: 124.13 88.62 L
1054: 124.63 90.38 L
1055: 125.25 92.12 L
1056: 125.88 93.75 L
1057: 126.50 95.25 L
1058: 127.13 96.75 L
1059: 127.62 98.25 L
1060: 128.25 99.75 L
1061: 128.88 101.13 L
1062: 129.50 102.50 L
1063: 130.13 103.75 L
1064: 130.63 105.00 L
1065: 131.25 106.25 L
1066: 131.88 107.50 L
1067: 132.50 108.63 L
1068: 133.13 109.75 L
1069: 133.63 110.75 L
1070: 134.25 111.75 L
1071: 134.87 112.75 L
1072: 135.50 113.75 L
1073: 136.12 114.63 L
1074: 136.63 115.50 L
1075: 137.25 116.37 L
1076: 137.88 117.25 L
1077: 138.50 118.00 L
1078: 139.00 118.75 L
1079: 139.63 119.50 L
1080: 140.25 120.13 L
1081: 140.88 120.88 L
1082: 141.50 121.50 L
1083: 142.00 122.13 L
1084: 142.63 122.63 L
1085: 143.25 123.13 L
1086: 143.88 123.75 L
1087: 144.50 124.13 L
1088: 145.00 124.63 L
1089: 145.63 125.13 L
1090: 146.25 125.50 L
1091: 146.88 125.88 L
1092: 147.50 126.25 L
1093: 148.00 126.50 L
1094: 148.62 126.88 L
1095: 149.25 127.13 L
1096: 149.88 127.38 L
1097: 150.50 127.62 L
1098: 151.00 127.88 L
1099: 151.63 128.00 L
1100: 152.25 128.13 L
1101: 152.88 128.25 L
1102: 153.50 128.38 L
1103: 154.00 128.50 L
1104: 154.63 128.62 L
1105: 155.25 128.62 L
1106: 155.88 128.62 L
1107: 156.50 128.62 L
1108: 157.00 128.62 L
1109: 157.62 128.62 L
1110: 158.25 128.62 L
1111: 158.87 128.62 L
1112: 159.50 128.62 L
1113: 160.00 128.62 L
1114: 160.63 128.62 L
1115: 161.25 128.62 L
1116: 161.88 128.62 L
1117: 162.50 128.62 L
1118: 163.00 128.62 L
1119: 163.63 128.62 L
1120: 164.25 128.62 L
1121: 164.88 128.62 L
1122: 165.50 128.62 L
1123: 166.00 128.62 L
1124: 166.63 128.62 L
1125: 167.25 128.62 L
1126: 167.88 128.62 L
1127: 168.50 128.62 L
1128: 169.00 128.62 L
1129: 169.63 128.62 L
1130: 170.25 128.62 L
1131: 170.88 128.62 L
1132: 171.50 128.62 L
1133: 172.00 128.62 L
1134: 172.63 128.62 L
1135: 173.25 128.62 L
1136: 173.88 128.62 L
1137: 174.50 128.62 L
1138: 175.00 128.62 L
1139: 175.62 128.62 L
1140: 176.25 128.62 L
1141: 176.87 128.62 L
1142: 177.50 128.62 L
1143: 178.00 128.62 L
1144: 178.62 128.62 L
1145: 179.25 128.62 L
1146: 179.87 128.62 L
1147: 180.50 128.62 L
1148: 181.00 128.62 L
1149: 181.63 128.62 L
1150: 182.25 128.62 L
1151: 182.88 128.62 L
1152: 183.50 128.62 L
1153: 184.00 128.62 L
1154: 184.63 128.62 L
1155: 185.25 128.62 L
1156: 185.88 128.62 L
1157: 186.50 128.62 L
1158: 187.00 128.62 L
1159: 187.63 128.62 L
1160: 188.25 128.62 L
1161: 188.88 128.62 L
1162: 189.50 128.62 L
1163: 190.00 128.62 L
1164: 190.62 128.62 L
1165: 191.25 128.62 L
1166: 191.88 128.62 L
1167: 192.50 128.62 L
1168: 193.00 128.62 L
1169: 193.63 128.62 L
1170: 194.25 128.62 L
1171: 194.88 128.62 L
1172: 195.50 128.62 L
1173: 196.00 128.62 L
1174: 196.63 128.62 L
1175: 197.25 128.62 L
1176: 197.88 128.62 L
1177: 198.50 128.62 L
1178: 199.00 128.62 L
1179: 199.63 128.62 L
1180: 200.25 128.62 L
1181: 200.88 128.62 L
1182: 201.50 128.62 L
1183: 202.00 128.62 L
1184: 202.63 128.62 L
1185: 203.25 128.62 L
1186: 203.88 128.62 L
1187: 204.50 128.62 L
1188: 205.00 128.62 L
1189: 205.63 128.62 L
1190: 206.25 128.62 L
1191: mstroke
1192: newpath 206.25 128.62 M
1193: 206.88 128.62 L
1194: 207.50 128.62 L
1195: 208.00 128.62 L
1196: 208.63 128.62 L
1197: mstroke
1198: [] sd
1199: 1 ps
1200: 0.50 ps
1201: newpath 208.63 127.75 M
1202: 210.63 129.75 L
1203: 208.63 131.75 L
1204: 206.63 129.75 L
1205: closepath
1206: 1 FillPath
1207: 0 StrokePath newpath
1208: newpath 201.63 124.63 M
1209: 203.63 126.63 L
1210: 201.63 128.62 L
1211: 199.63 126.63 L
1212: closepath
1213: 1 FillPath
1214: 0 StrokePath newpath
1215: newpath 192.00 128.38 M
1216: 194.00 130.38 L
1217: 192.00 132.38 L
1218: 190.00 130.38 L
1219: closepath
1220: 1 FillPath
1221: 0 StrokePath newpath
1222: newpath 185.00 124.88 M
1223: 187.00 126.88 L
1224: 185.00 128.88 L
1225: 183.00 126.88 L
1226: closepath
1227: 1 FillPath
1228: 0 StrokePath newpath
1229: newpath 177.00 127.50 M
1230: 179.00 129.50 L
1231: 177.00 131.50 L
1232: 175.00 129.50 L
1233: closepath
1234: 1 FillPath
1235: 0 StrokePath newpath
1236: newpath 169.13 127.25 M
1237: 171.13 129.25 L
1238: 169.13 131.25 L
1239: 167.13 129.25 L
1240: closepath
1241: 1 FillPath
1242: 0 StrokePath newpath
1243: newpath 159.50 127.25 M
1244: 161.50 129.25 L
1245: 159.50 131.25 L
1246: 157.50 129.25 L
1247: closepath
1248: 1 FillPath
1249: 0 StrokePath newpath
1250: newpath 144.63 125.88 M
1251: 146.63 127.88 L
1252: 144.63 129.87 L
1253: 142.63 127.88 L
1254: closepath
1255: 1 FillPath
1256: 0 StrokePath newpath
1257: newpath 134.87 109.25 M
1258: 136.88 111.25 L
1259: 134.87 113.25 L
1260: 132.88 111.25 L
1261: closepath
1262: 1 FillPath
1263: 0 StrokePath newpath
1264: newpath 123.50 83.37 M
1265: 125.50 85.38 L
1266: 123.50 87.37 L
1267: 121.50 85.38 L
1268: closepath
1269: 1 FillPath
1270: 0 StrokePath newpath
1271: newpath 115.63 57.00 M
1272: 117.63 59.00 L
1273: 115.63 61.00 L
1274: 113.63 59.00 L
1275: closepath
1276: 1 FillPath
1277: 0 StrokePath newpath
1278: newpath 112.13 46.50 M
1279: 114.12 48.50 L
1280: 112.13 50.50 L
1281: 110.12 48.50 L
1282: closepath
1283: 1 FillPath
1284: 0 StrokePath newpath
1285: newpath 102.38 36.50 M
1286: 104.38 38.50 L
1287: 102.38 40.50 L
1288: 100.38 38.50 L
1289: closepath
1290: 1 FillPath
1291: 0 StrokePath newpath
1292: newpath 96.25 38.63 M
1293: 98.25 40.63 L
1294: 96.25 42.63 L
1295: 94.25 40.63 L
1296: closepath
1297: 1 FillPath
1298: 0 StrokePath newpath
1299: newpath 89.25 36.63 M
1300: 91.25 38.63 L
1301: 89.25 40.63 L
1302: 87.25 38.63 L
1303: closepath
1304: 1 FillPath
1305: 0 StrokePath newpath
1306: 1 ps
1307: AnObj restore
1308: end
1309: IgorSave restore
1310: %%DocumentFonts: Helvetica
1311: %%+Symbol
1312: