/[lmdze]/trunk/Documentation/Manuel_LMDZE.texfol/Graphiques/compare_sampl_19.eps
ViewVC logotype

Contents of /trunk/Documentation/Manuel_LMDZE.texfol/Graphiques/compare_sampl_19.eps

Parent Directory Parent Directory | Revision Log Revision Log


Revision 13 - (show annotations)
Fri Jul 25 19:59:34 2008 UTC (15 years, 9 months ago) by guez
File MIME type: application/postscript
File size: 16859 byte(s)
-- Minor change of behaviour:

"etat0" does not compute "rugsrel" nor "radpas". Deleted arguments
"radpas" and "rugsrel" of "phyredem". Deleted argument "rugsrel" of
"phyetat0". "startphy.nc" does not contain the variable "RUGSREL". In
"physiq", "rugoro" is set to 0 if not "ok_orodr". The whole program
"etat0_lim" does not use "clesphys2".

-- Minor modification of input/output:

Created subroutine "read_clesphys2". Variables of "clesphys2" are read
in "read_clesphys2" instead of "conf_gcm". "printflag" does not print
variables of "clesphys2".

-- Should not change any result at run time:

References to module "numer_rec" instead of individual modules of
"Numer_rec_Lionel".

Deleted argument "clesphy0" of "calfis", "physiq", "conf_gcm",
"leapfrog", "phyetat0". Deleted variable "clesphy0" in
"gcm". "phyetat0" does not modify variables of "clesphys2".

The program unit "gcm" does not modify "itau_phy".

Added some "intent" attributes.

"regr11_lint" does not call "polint".

1 %%!PS-Adobe-3.0 EPSF-3.0
2 %%Title: (compare_sampl_19.eps)
3 %%Creator: gnuplot 4.0 patchlevel 0
4 %%CreationDate: Mon Sep 17 15:18:07 2007
5 %%BoundingBox: 72 72 432 288
6 %%EndComments
7 /Gpdict 100 dict def
8 Gpdict begin
9 /Color true def
10 /Dashed true def
11 /Gplinewidth 20.000 def
12 /hpt_ 100.000 def
13 /vpt_ 100.000 def
14 /hpt hpt_ def
15 /vpt vpt_ def
16 /Gppointsize_ 1 def
17 /Gplinewidth_ 1 def
18
19 /ArrowDict 25 dict def
20
21 /M /moveto load def
22 /L /lineto load def
23 /R /rmoveto load def
24 /V /rlineto load def
25 /N {newpath moveto} bind def
26 /f {rlineto fill} bind def
27 /ED { exch def} bind def
28
29 /Atan {/atan load stopped {pop pop 0} if } def
30 /Div {dup 0 eq { pop } { div } ifelse } def
31 /Pyth {dup mul exch dup mul add sqrt} def
32
33 %Sizes
34 /Gpsetlinewidth
35 {
36 dup
37 % /Gplinewidth_ ED %save
38 Gplinewidth mul setlinewidth
39 } def
40
41 /Gpsetpointsize
42 {
43 dup
44 /Gppointsize_ ED %save
45 dup
46 vpt_ mul /vpt ED
47 hpt_ mul /hpt ED
48 } def
49
50 %Color
51 /SetHsbColor { Color {sethsbcolor} {pop pop pop} ifelse } def
52 /SetCmykColor { Color {setcmykcolor} {pop pop pop pop} ifelse } def
53 /SimpleSetColor {6 div 1 1 SetHsbColor} def
54 /Black {0 0 0 0 SetCmykColor} def
55 /Red {0 SimpleSetColor} def
56 /Blue {1 1 0 0 SetCmykColor} def
57 /Cyan {1 0 0 0 SetCmykColor} def
58 /Magenta {0 1 0 0 SetCmykColor} def
59
60 %Stroking
61 /PathLength@ % z = z + sqrt{(x-xlast)^2 + (y-ylast)^2}
62 {
63 /z
64 z
65 y ylast sub
66 x xlast sub
67 Pyth
68 add
69 def
70 /ylast y def
71 /xlast x def
72 } def
73
74 /PathLength
75 {
76 flattenpath
77 /z 0 def
78 { %move
79 /ystart ED
80 /xstart ED
81 /xlast xstart def
82 /ylast ystart def
83 }
84 { %line
85 /y ED
86 /x ED
87 PathLength@
88 }
89 { %curve
90 }
91 { %close
92 /x xstart def
93 /y ystart def
94 PathLength@
95 }
96 /pathforall load
97 stopped {pop pop pop pop} if
98 z
99 } def
100
101 %dotsep DotLine
102 /DotLine
103 {
104 PathLength /b ED
105 /z ED
106 /y currentlinewidth def
107 /z y z add def
108 [ 0 b b z Div round Div dup 0 le { pop 1 } if] 0 setdash
109 1 setlinecap
110 } def
111
112 /DashLine
113 {
114 PathLength /b ED
115 /x ED
116 /y ED
117 /z y x add def
118 b y sub z Div round z mul y add b exch Div
119 dup
120 y mul /y ED
121 x mul /x ED
122 x 0 gt y 0 gt and
123 { [ y x ] 0 }
124 { [ 1 0 ] 0 }
125 ifelse
126 setdash
127 } def
128
129 /DashLineTwo
130 {
131 PathLength /b ED
132 /u ED
133 /v ED
134 /x ED
135 /y ED
136 /z y x add u add v add def
137 b y sub z Div round z mul y add b exch Div
138 dup
139 y mul /y ED
140 x mul /x ED
141 x 0 gt y 0 gt and
142 { [ y x v u] 0 }
143 { [ 1 0 ] 0 }
144 ifelse
145 setdash
146 } def
147
148
149 /DotLineStroke
150 {
151 gsave
152 Dashed {currentlinewidth 2 mul DotLine} if
153 stroke
154 grestore
155 } def
156
157 /SolidLineStroke
158 {
159 gsave
160 [] 0 setdash
161 stroke
162 grestore
163 } def
164
165 /DashLineStroke
166 {
167 gsave
168 Dashed {Gplinewidth 8 mul Gplinewidth 5 mul DashLine} if
169 stroke
170 grestore
171 } def
172
173 /DashDotLineStroke
174 {
175 gsave
176 Dashed {Gplinewidth 8 mul Gplinewidth 5 mul 0 Gplinewidth 5 mul DashLineTwo} if
177 stroke
178 grestore
179 } def
180
181 /DashShortLineStroke
182 {
183 gsave
184 Dashed {Gplinewidth 4 mul dup DashLine} if
185 stroke
186 grestore
187 } def
188
189 /ArrowHead
190 {
191 currentlinewidth mul add dup 2 div /w ED
192 mul dup /h ED
193 mul /a ED
194 w neg h moveto
195 0 0 L
196 w h L
197 w neg a neg rlineto
198 gsave fill grestore
199 } def
200
201 %/DrawArrowHead {1 dup scale 0.2 1.4 50 3 ArrowHead} def
202 %%%%%
203 %inset length dim num
204 %arrowwidth = dim + num*linewidth
205 %arrowlength = length*arrowwidth
206 %arrowinset = width * inset
207
208 /DrawArrowHead {0.2 1.4 Gplinewidth 3 mul 4 ArrowHead} def
209
210 /Arrow
211 {
212 currentpoint
213 4 2 roll
214 ArrowDict
215 begin
216 /@mtrx matrix currentmatrix def
217 gsave
218 2 copy translate
219 2 index sub neg exch
220 3 index sub exch Atan
221 rotate
222 newpath
223 DrawArrowHead
224 @mtrx setmatrix
225 currentpoint
226 grestore
227 end %ArrowDicht
228 lineto
229 Gpstroke
230 } def
231
232 %axis
233 /LTa
234 {
235 Gpstroke
236 newpath
237 0 setgray
238 /Gpstroke {DotLineStroke newpath} def
239 } def
240
241 %border
242 /LTb
243 {
244 Gpstroke
245 newpath
246 0 setgray
247 /Gpstroke {SolidLineStroke newpath} def
248 } def
249
250 /LT0
251 {
252 Gpstroke
253 newpath
254 Red
255 /Gpstroke {SolidLineStroke newpath} def
256 } def
257
258 /LT1
259 {
260 Gpstroke
261 newpath
262 Blue
263 /Gpstroke {DashLineStroke newpath} def
264 } def
265
266 /LT2
267 {
268 Gpstroke
269 newpath
270 Cyan
271 /Gpstroke {DashShortLineStroke newpath} def
272 } def
273
274 /LT3
275 {
276 Gpstroke
277 newpath
278 Magenta
279 /Gpstroke {DashDotLineStroke newpath} def
280 } def
281
282 /Pnt
283 {
284 gsave
285 [] 0 setdash
286 1 setlinecap
287 Gplinewidth Gppointsize_ mul setlinewidth
288 M
289 0 0 V
290 stroke
291 grestore
292 } def
293
294 /DiaPath
295 {
296 [] 0 setdash
297 Gplinewidth setlinewidth
298 2 copy
299 newpath
300 vpt add moveto
301 hpt neg vpt neg rlineto
302 hpt vpt neg rlineto
303 hpt vpt rlineto
304 hpt neg vpt rlineto
305 closepath
306 } def
307
308 /Dia
309 {
310 gsave
311 DiaPath
312 stroke
313 grestore
314 } def
315
316 /DaF
317 {
318 gsave
319 DiaPath
320 fill
321 grestore
322 } def
323
324 /Crc
325 {
326 gsave
327 [] 0 setdash
328 Gplinewidth setlinewidth
329 newpath
330 vpt 0.85 mul 0 360 arc
331 closepath
332 stroke
333 grestore
334 } def
335
336
337 /Crs
338 {
339 gsave
340 [] 0 setdash
341 Gplinewidth setlinewidth
342 0 setlinecap
343 newpath
344 vpt sub
345 moveto
346 0 vpt 2 mul rlineto
347 hpt vpt neg rmoveto
348 hpt 2 mul neg 0 rlineto
349 stroke
350 grestore
351 } def
352
353 /CrX
354 {
355 gsave
356 translate
357 45 rotate
358 0 0 Crs
359 grestore
360 } def
361
362 /CcF
363 {
364 gsave
365 [] 0 setdash
366 Gplinewidth setlinewidth
367 newpath
368 vpt 0.85 mul 0 360 arc
369 closepath
370 fill
371 grestore
372 } def
373
374 /Box
375 {
376 gsave
377 translate
378 45 rotate
379 0 0 DiaPath
380 stroke
381 grestore
382 } def
383
384 /BxF
385 {
386 gsave
387 translate
388 45 rotate
389 0 0 DiaPath
390 fill
391 grestore
392 } def
393
394 /Gpstroke {stroke} def
395 1 setlinecap
396 1 setlinejoin
397 %
398 % PostScript level 2 pattern fill definitions
399 % Ethan A Merritt April 2003
400 %
401 % Level-1 compatible emulation for rectfill
402 /RF { gsave newpath 4 -2 roll moveto dup 0 exch rlineto
403 exch 0 rlineto neg 0 exch rlineto closepath fill grestore
404 } bind def
405 /BoxFill { gsave RF fill grestore } def
406 /Blank { 0 0 M 0 8 L 8 8 L 8 0 L 0 0 L
407 1.0 setgray fill 0.0 setgray 0.5 setlinewidth } bind def
408 /Tile8x8 { /PaintType 1 def /PatternType 1 def /TilingType 1 def
409 /BBox [0 0 8 8] def /XStep 8 def /YStep 8 def
410 } bind def
411 /P1D 12 dict def P1D begin
412 Tile8x8 /PaintProc { Blank 0 0 M 8 8 L 0 8 M 8 0 L stroke } def
413 end P1D matrix makepattern
414 /Pattern1 exch def
415 /P2D 12 dict def P2D begin
416 Tile8x8 /PaintProc { Blank 0 0 M 8 8 L 0 8 M 8 0 L stroke
417 0 4 M 4 8 L 8 4 L 4 0 L 0 4 L stroke } def
418 end P2D matrix makepattern
419 /Pattern2 exch def
420 /P3D 12 dict def P3D begin
421 Tile8x8 /PaintProc { Blank 0 0 M 0 8 L
422 8 8 L 8 0 L 0 0 L fill } def
423 end P3D matrix makepattern
424 /Pattern3 exch def
425 /P4D 12 dict def P4D begin
426 Tile8x8 /PaintProc { Blank -4 8 M 8 -4 L
427 0 12 M 12 0 L stroke } def
428 end P4D matrix makepattern
429 /Pattern4 exch def
430 /P5D 12 dict def P5D begin
431 Tile8x8 /PaintProc { Blank -4 0 M 8 12 L
432 0 -4 M 12 8 L stroke } def
433 end P5D matrix makepattern
434 /Pattern5 exch def
435 /P6D 12 dict def P6D begin
436 Tile8x8 /PaintProc { Blank -2 8 M 4 -4 L
437 0 12 M 8 -4 L 4 12 M 10 0 L stroke } def
438 end P6D matrix makepattern
439 /Pattern6 exch def
440 /P7D 12 dict def P7D begin
441 Tile8x8 /PaintProc { Blank -2 0 M 4 12 L
442 0 -4 M 8 12 L 4 -4 M 10 8 L stroke } def
443 end P7D matrix makepattern
444 /Pattern7 exch def
445 /P8D 12 dict def P8D begin
446 Tile8x8 /PaintProc { Blank 8 -2 M -4 4 L
447 12 0 M -4 8 L 12 4 M 0 10 L stroke } def
448 end P8D matrix makepattern
449 /Pattern8 exch def
450 /P9D 12 dict def P9D begin
451 Tile8x8 /PaintProc { Blank 0 -2 M 12 4 L
452 -4 0 M 12 8 L -4 4 M 8 10 L stroke } def
453 end P9D matrix makepattern
454 /Pattern9 exch def
455
456 end
457 %%%%EndProlog
458 Gpdict begin
459 gsave
460 72 72 translate
461 0.0200 0.0200 scale
462 0 setgray
463 newpath
464 2.000 Gpsetpointsize
465 1.000 Gpsetlinewidth
466 1.000 Gpsetlinewidth
467 LTb
468 1.000 Gpsetlinewidth
469 LTa
470 3300 10250 M
471 13875 0 V
472 Gpstroke
473 1.000 Gpsetlinewidth
474 LTb
475 3300 10250 M
476 300 0 V
477 Gpstroke
478 17175 10250 M
479 -300 0 V
480 Gpstroke
481 1.000 Gpsetlinewidth
482 LTb
483 3300 10250 M
484 150 0 V
485 Gpstroke
486 17175 10250 M
487 -150 0 V
488 Gpstroke
489 1.000 Gpsetlinewidth
490 LTa
491 3300 8530 M
492 275 0 V
493 Gpstroke
494 7750 8530 M
495 9425 0 V
496 Gpstroke
497 1.000 Gpsetlinewidth
498 LTb
499 3300 8530 M
500 300 0 V
501 Gpstroke
502 17175 8530 M
503 -300 0 V
504 Gpstroke
505 1.000 Gpsetlinewidth
506 LTb
507 3300 10250 M
508 150 0 V
509 Gpstroke
510 17175 10250 M
511 -150 0 V
512 Gpstroke
513 3300 9732 M
514 150 0 V
515 Gpstroke
516 17175 9732 M
517 -150 0 V
518 Gpstroke
519 3300 9429 M
520 150 0 V
521 Gpstroke
522 17175 9429 M
523 -150 0 V
524 Gpstroke
525 3300 9214 M
526 150 0 V
527 Gpstroke
528 17175 9214 M
529 -150 0 V
530 Gpstroke
531 3300 9048 M
532 150 0 V
533 Gpstroke
534 17175 9048 M
535 -150 0 V
536 Gpstroke
537 3300 8912 M
538 150 0 V
539 Gpstroke
540 17175 8912 M
541 -150 0 V
542 Gpstroke
543 3300 8796 M
544 150 0 V
545 Gpstroke
546 17175 8796 M
547 -150 0 V
548 Gpstroke
549 3300 8697 M
550 150 0 V
551 Gpstroke
552 17175 8697 M
553 -150 0 V
554 Gpstroke
555 3300 8609 M
556 150 0 V
557 Gpstroke
558 17175 8609 M
559 -150 0 V
560 Gpstroke
561 3300 8530 M
562 150 0 V
563 Gpstroke
564 17175 8530 M
565 -150 0 V
566 Gpstroke
567 1.000 Gpsetlinewidth
568 LTa
569 3300 6810 M
570 13875 0 V
571 Gpstroke
572 1.000 Gpsetlinewidth
573 LTb
574 3300 6810 M
575 300 0 V
576 Gpstroke
577 17175 6810 M
578 -300 0 V
579 Gpstroke
580 1.000 Gpsetlinewidth
581 LTb
582 3300 8530 M
583 150 0 V
584 Gpstroke
585 17175 8530 M
586 -150 0 V
587 Gpstroke
588 3300 8012 M
589 150 0 V
590 Gpstroke
591 17175 8012 M
592 -150 0 V
593 Gpstroke
594 3300 7709 M
595 150 0 V
596 Gpstroke
597 17175 7709 M
598 -150 0 V
599 Gpstroke
600 3300 7494 M
601 150 0 V
602 Gpstroke
603 17175 7494 M
604 -150 0 V
605 Gpstroke
606 3300 7328 M
607 150 0 V
608 Gpstroke
609 17175 7328 M
610 -150 0 V
611 Gpstroke
612 3300 7192 M
613 150 0 V
614 Gpstroke
615 17175 7192 M
616 -150 0 V
617 Gpstroke
618 3300 7076 M
619 150 0 V
620 Gpstroke
621 17175 7076 M
622 -150 0 V
623 Gpstroke
624 3300 6977 M
625 150 0 V
626 Gpstroke
627 17175 6977 M
628 -150 0 V
629 Gpstroke
630 3300 6889 M
631 150 0 V
632 Gpstroke
633 17175 6889 M
634 -150 0 V
635 Gpstroke
636 3300 6810 M
637 150 0 V
638 Gpstroke
639 17175 6810 M
640 -150 0 V
641 Gpstroke
642 1.000 Gpsetlinewidth
643 LTa
644 3300 5090 M
645 13875 0 V
646 Gpstroke
647 1.000 Gpsetlinewidth
648 LTb
649 3300 5090 M
650 300 0 V
651 Gpstroke
652 17175 5090 M
653 -300 0 V
654 Gpstroke
655 1.000 Gpsetlinewidth
656 LTb
657 3300 6810 M
658 150 0 V
659 Gpstroke
660 17175 6810 M
661 -150 0 V
662 Gpstroke
663 3300 6292 M
664 150 0 V
665 Gpstroke
666 17175 6292 M
667 -150 0 V
668 Gpstroke
669 3300 5989 M
670 150 0 V
671 Gpstroke
672 17175 5989 M
673 -150 0 V
674 Gpstroke
675 3300 5774 M
676 150 0 V
677 Gpstroke
678 17175 5774 M
679 -150 0 V
680 Gpstroke
681 3300 5608 M
682 150 0 V
683 Gpstroke
684 17175 5608 M
685 -150 0 V
686 Gpstroke
687 3300 5472 M
688 150 0 V
689 Gpstroke
690 17175 5472 M
691 -150 0 V
692 Gpstroke
693 3300 5356 M
694 150 0 V
695 Gpstroke
696 17175 5356 M
697 -150 0 V
698 Gpstroke
699 3300 5257 M
700 150 0 V
701 Gpstroke
702 17175 5257 M
703 -150 0 V
704 Gpstroke
705 3300 5169 M
706 150 0 V
707 Gpstroke
708 17175 5169 M
709 -150 0 V
710 Gpstroke
711 3300 5090 M
712 150 0 V
713 Gpstroke
714 17175 5090 M
715 -150 0 V
716 Gpstroke
717 1.000 Gpsetlinewidth
718 LTa
719 3300 3370 M
720 13875 0 V
721 Gpstroke
722 1.000 Gpsetlinewidth
723 LTb
724 3300 3370 M
725 300 0 V
726 Gpstroke
727 17175 3370 M
728 -300 0 V
729 Gpstroke
730 1.000 Gpsetlinewidth
731 LTb
732 3300 5090 M
733 150 0 V
734 Gpstroke
735 17175 5090 M
736 -150 0 V
737 Gpstroke
738 3300 4572 M
739 150 0 V
740 Gpstroke
741 17175 4572 M
742 -150 0 V
743 Gpstroke
744 3300 4269 M
745 150 0 V
746 Gpstroke
747 17175 4269 M
748 -150 0 V
749 Gpstroke
750 3300 4054 M
751 150 0 V
752 Gpstroke
753 17175 4054 M
754 -150 0 V
755 Gpstroke
756 3300 3888 M
757 150 0 V
758 Gpstroke
759 17175 3888 M
760 -150 0 V
761 Gpstroke
762 3300 3752 M
763 150 0 V
764 Gpstroke
765 17175 3752 M
766 -150 0 V
767 Gpstroke
768 3300 3636 M
769 150 0 V
770 Gpstroke
771 17175 3636 M
772 -150 0 V
773 Gpstroke
774 3300 3537 M
775 150 0 V
776 Gpstroke
777 17175 3537 M
778 -150 0 V
779 Gpstroke
780 3300 3449 M
781 150 0 V
782 Gpstroke
783 17175 3449 M
784 -150 0 V
785 Gpstroke
786 3300 3370 M
787 150 0 V
788 Gpstroke
789 17175 3370 M
790 -150 0 V
791 Gpstroke
792 1.000 Gpsetlinewidth
793 LTa
794 3300 1650 M
795 13875 0 V
796 Gpstroke
797 1.000 Gpsetlinewidth
798 LTb
799 3300 1650 M
800 300 0 V
801 Gpstroke
802 17175 1650 M
803 -300 0 V
804 Gpstroke
805 1.000 Gpsetlinewidth
806 LTb
807 3300 3370 M
808 150 0 V
809 Gpstroke
810 17175 3370 M
811 -150 0 V
812 Gpstroke
813 3300 2852 M
814 150 0 V
815 Gpstroke
816 17175 2852 M
817 -150 0 V
818 Gpstroke
819 3300 2549 M
820 150 0 V
821 Gpstroke
822 17175 2549 M
823 -150 0 V
824 Gpstroke
825 3300 2334 M
826 150 0 V
827 Gpstroke
828 17175 2334 M
829 -150 0 V
830 Gpstroke
831 3300 2168 M
832 150 0 V
833 Gpstroke
834 17175 2168 M
835 -150 0 V
836 Gpstroke
837 3300 2032 M
838 150 0 V
839 Gpstroke
840 17175 2032 M
841 -150 0 V
842 Gpstroke
843 3300 1916 M
844 150 0 V
845 Gpstroke
846 17175 1916 M
847 -150 0 V
848 Gpstroke
849 3300 1817 M
850 150 0 V
851 Gpstroke
852 17175 1817 M
853 -150 0 V
854 Gpstroke
855 3300 1729 M
856 150 0 V
857 Gpstroke
858 17175 1729 M
859 -150 0 V
860 Gpstroke
861 3300 1650 M
862 150 0 V
863 Gpstroke
864 17175 1650 M
865 -150 0 V
866 Gpstroke
867 3300 1650 M
868 0 300 V
869 Gpstroke
870 3300 10250 M
871 0 -300 V
872 Gpstroke
873 1.000 Gpsetlinewidth
874 LTb
875 4688 1650 M
876 0 300 V
877 Gpstroke
878 4688 10250 M
879 0 -300 V
880 Gpstroke
881 1.000 Gpsetlinewidth
882 LTb
883 6075 1650 M
884 0 300 V
885 Gpstroke
886 6075 10250 M
887 0 -300 V
888 Gpstroke
889 1.000 Gpsetlinewidth
890 LTb
891 7463 1650 M
892 0 300 V
893 Gpstroke
894 7463 10250 M
895 0 -300 V
896 Gpstroke
897 1.000 Gpsetlinewidth
898 LTb
899 8850 1650 M
900 0 300 V
901 Gpstroke
902 8850 10250 M
903 0 -300 V
904 Gpstroke
905 1.000 Gpsetlinewidth
906 LTb
907 10238 1650 M
908 0 300 V
909 Gpstroke
910 10238 10250 M
911 0 -300 V
912 Gpstroke
913 1.000 Gpsetlinewidth
914 LTb
915 11625 1650 M
916 0 300 V
917 Gpstroke
918 11625 10250 M
919 0 -300 V
920 Gpstroke
921 1.000 Gpsetlinewidth
922 LTb
923 13013 1650 M
924 0 300 V
925 Gpstroke
926 13013 10250 M
927 0 -300 V
928 Gpstroke
929 1.000 Gpsetlinewidth
930 LTb
931 14400 1650 M
932 0 300 V
933 Gpstroke
934 14400 10250 M
935 0 -300 V
936 Gpstroke
937 1.000 Gpsetlinewidth
938 LTb
939 15788 1650 M
940 0 300 V
941 Gpstroke
942 15788 10250 M
943 0 -300 V
944 Gpstroke
945 1.000 Gpsetlinewidth
946 LTb
947 17175 1650 M
948 0 300 V
949 Gpstroke
950 17175 10250 M
951 0 -300 V
952 Gpstroke
953 1.000 Gpsetlinewidth
954 LTb
955 1.000 Gpsetlinewidth
956 LTb
957 3300 1650 M
958 13875 0 V
959 0 8600 V
960 -13875 0 V
961 0 -8600 V
962 Gpstroke
963 LTb
964 LTb
965 2.000 Gpsetpointsize
966 2.000 Gpsetpointsize
967 1.000 Gpsetlinewidth
968 LT0
969 LTb
970 LT0
971 5775 9575 M
972 1700 0 V
973 Gpstroke
974 3994 3360 M
975 694 14 V
976 693 18 V
977 694 28 V
978 694 42 V
979 694 64 V
980 693 91 V
981 694 126 V
982 694 169 V
983 694 209 V
984 693 226 V
985 694 205 V
986 694 189 V
987 694 211 V
988 693 250 V
989 694 298 V
990 694 363 V
991 694 462 V
992 693 674 V
993 Gpstroke
994 3994 3360 Dia
995 4688 3374 Dia
996 5381 3392 Dia
997 6075 3420 Dia
998 6769 3462 Dia
999 7463 3526 Dia
1000 8156 3617 Dia
1001 8850 3743 Dia
1002 9544 3912 Dia
1003 10238 4121 Dia
1004 10931 4347 Dia
1005 11625 4552 Dia
1006 12319 4741 Dia
1007 13013 4952 Dia
1008 13706 5202 Dia
1009 14400 5500 Dia
1010 15094 5863 Dia
1011 15788 6325 Dia
1012 16481 6999 Dia
1013 6625 9575 Dia
1014 2.000 Gpsetpointsize
1015 1.000 Gpsetlinewidth
1016 LT1
1017 LTb
1018 LT1
1019 5775 8825 M
1020 1700 0 V
1021 Gpstroke
1022 3994 3360 M
1023 694 15 V
1024 693 23 V
1025 694 37 V
1026 694 54 V
1027 694 73 V
1028 693 94 V
1029 694 117 V
1030 694 143 V
1031 694 162 V
1032 693 173 V
1033 694 164 V
1034 694 145 V
1035 694 134 V
1036 693 141 V
1037 694 158 V
1038 694 177 V
1039 694 203 V
1040 693 233 V
1041 Gpstroke
1042 3994 3360 Crc
1043 4688 3375 Crc
1044 5381 3398 Crc
1045 6075 3435 Crc
1046 6769 3489 Crc
1047 7463 3562 Crc
1048 8156 3656 Crc
1049 8850 3773 Crc
1050 9544 3916 Crc
1051 10238 4078 Crc
1052 10931 4251 Crc
1053 11625 4415 Crc
1054 12319 4560 Crc
1055 13013 4694 Crc
1056 13706 4835 Crc
1057 14400 4993 Crc
1058 15094 5170 Crc
1059 15788 5373 Crc
1060 16481 5606 Crc
1061 6625 8825 Crc
1062 2.000 Gpsetpointsize
1063 1.000 Gpsetlinewidth
1064 LT2
1065 LTb
1066 LT2
1067 5775 8075 M
1068 1700 0 V
1069 Gpstroke
1070 3994 3360 M
1071 694 19 V
1072 693 23 V
1073 694 27 V
1074 694 35 V
1075 694 45 V
1076 693 60 V
1077 694 81 V
1078 694 112 V
1079 694 152 V
1080 693 198 V
1081 694 225 V
1082 694 212 V
1083 694 197 V
1084 693 224 V
1085 694 268 V
1086 694 325 V
1087 694 420 V
1088 693 638 V
1089 Gpstroke
1090 3994 3360 Crs
1091 4688 3379 Crs
1092 5381 3402 Crs
1093 6075 3429 Crs
1094 6769 3464 Crs
1095 7463 3509 Crs
1096 8156 3569 Crs
1097 8850 3650 Crs
1098 9544 3762 Crs
1099 10238 3914 Crs
1100 10931 4112 Crs
1101 11625 4337 Crs
1102 12319 4549 Crs
1103 13013 4746 Crs
1104 13706 4970 Crs
1105 14400 5238 Crs
1106 15094 5563 Crs
1107 15788 5983 Crs
1108 16481 6621 Crs
1109 6625 8075 Crs
1110 2.000 Gpsetpointsize
1111 1.000 Gpsetlinewidth
1112 LT3
1113 LTb
1114 LT3
1115 5775 7325 M
1116 1700 0 V
1117 Gpstroke
1118 3994 3360 M
1119 694 36 V
1120 693 49 V
1121 694 74 V
1122 694 113 V
1123 694 167 V
1124 693 229 V
1125 694 269 V
1126 694 247 V
1127 694 218 V
1128 693 242 V
1129 694 280 V
1130 694 321 V
1131 694 366 V
1132 693 415 V
1133 694 471 V
1134 694 538 V
1135 694 632 V
1136 693 831 V
1137 Gpstroke
1138 3994 3360 CrX
1139 4688 3396 CrX
1140 5381 3445 CrX
1141 6075 3519 CrX
1142 6769 3632 CrX
1143 7463 3799 CrX
1144 8156 4028 CrX
1145 8850 4297 CrX
1146 9544 4544 CrX
1147 10238 4762 CrX
1148 10931 5004 CrX
1149 11625 5284 CrX
1150 12319 5605 CrX
1151 13013 5971 CrX
1152 13706 6386 CrX
1153 14400 6857 CrX
1154 15094 7395 CrX
1155 15788 8027 CrX
1156 16481 8858 CrX
1157 6625 7325 CrX
1158 1.000 Gpsetlinewidth
1159 LTb
1160 3300 1650 M
1161 13875 0 V
1162 0 8600 V
1163 -13875 0 V
1164 0 -8600 V
1165 2.000 Gpsetpointsize
1166 Gpstroke
1167 grestore
1168 end
1169 showpage
1170 %%%%EOF

  ViewVC Help
Powered by ViewVC 1.1.21