<TeXmacs|1.0.3>

<style|generic>

<\body>
  <section|Lecture 5 - Plots and lines>

  <subsection|Understanding magic>

  Let us look at the following curious thing:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      x=rnorm(100)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      y=rnorm(100,sd=0.1)+x
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      k=ks.test(x,y)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      k
    </input>

    <\output>
      \;

      \ \ \ \ \ \ \ \ Two-sample Kolmogorov-Smirnov test

      \;

      data: \ x and y\ 

      D = 0.05, p-value = 0.9996

      alternative hypothesis: two.sided\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      print(k)
    </input>

    <\output>
      \;

      \ \ \ \ \ \ \ \ Two-sample Kolmogorov-Smirnov test

      \;

      data: \ x and y\ 

      D = 0.38, p-value = 1.071e-06

      alternative hypothesis: two.sided\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  If everything in R is vectors or lists, why is the result of the KS test
  printed like this?

  Here is another example:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      s=summary(x)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      s
    </input>

    <\output>
      \ \ \ \ Min. \ 1st Qu. \ \ Median \ \ \ \ Mean \ 3rd Qu. \ \ \ \ Max.\ 

      -2.22700 -0.57190 -0.08799 \ 0.01895 \ 0.72390 \ 2.04100\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  The magic is the following:

  Even though things are always vectors or lists, they can have a ''class''.
  To see the class of an object, we can use the <verbatim|class()> function:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      class(s)
    </input>

    <\output>
      [1] "table"
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      class(k)
    </input>

    <\output>
      [1] "htest"
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  And now the trick:

  When we say <verbatim|print(k)>, the actual function that is called is
  <verbatim|print.htest()> for k, and <verbatim|print.table()> for s.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      print.htest(k)
    </input>

    <\output>
      \;

      \ \ \ \ \ \ \ \ Two-sample Kolmogorov-Smirnov test

      \;

      data: \ x and y\ 

      D = 0.38, p-value = 1.071e-06

      alternative hypothesis: two.sided\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      print.table(s)
    </input>

    <\output>
      \ \ \ \ Min. \ 1st Qu. \ \ Median \ \ \ \ Mean \ 3rd Qu. \ \ \ \ Max.\ 

      -2.22700 -0.57190 -0.08799 \ 0.01895 \ 0.72390 \ 2.04100\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      print.htest(s)
    </input>

    <\output>
      \;

      Error in strsplit(x, as.character(split), as.logical(extended)) :\ 

      \ \ \ \ \ \ \ \ non-character argument in strsplit()
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      print
    </input>

    <\output>
      function (x, ...)\ 

      UseMethod("print")

      \<less\>environment: namespace:base\<gtr\>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  All this is not very important, yet.

  It only matters if we want to understand what function is called.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      help(print.htest)
    </input>

    <\output>
      help() for print.htest \ is shown in browser netscape ...

      Use \ \ \ \ \ help( print.htest , htmlhelp=FALSE)

      or \ \ \ \ \ \ options(htmlhelp = FALSE)

      to revert.

      Warning message:\ 

      Using non-linked HTML file: style sheet and hyperlinks may be incorrect
      in: help(print.htest)\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  Another function that depends on its input is <verbatim|plot()>.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot
    </input>

    <\output>
      awk: cmd. line:1: warning: escape sequence `\\.' treated as plain `.'

      \;

      function (x, y, ...)\ 

      {

      \ \ \ \ if (is.null(attr(x, "class")) && is.function(x)) {

      \ \ \ \ \ \ \ \ nms \<less\>- names(list(...))

      \ \ \ \ \ \ \ \ if (missing(y))\ 

      \ \ \ \ \ \ \ \ \ \ \ \ y \<less\>- {

      \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ if (!"from" %in% nms)\ 

      \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 0

      \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ else if (!"to" %in% nms)\ 

      \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 1

      \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ else if (!"xlim" %in% nms)\ 

      \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ NULL

      \ \ \ \ \ \ \ \ \ \ \ \ }

      \ \ \ \ \ \ \ \ if ("ylab" %in% nms)\ 

      \ \ \ \ \ \ \ \ \ \ \ \ plot.function(x, y, ...)

      \ \ \ \ \ \ \ \ else plot.function(x, y, ylab =
      paste(deparse(substitute(x)),\ 

      \ \ \ \ \ \ \ \ \ \ \ \ "(x)"), ...)

      \ \ \ \ }

      \ \ \ \ else UseMethod("plot")

      }

      \<less\>environment: namespace:base\<gtr\>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(x,y);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n304.24 407.48 2.02 c
      p1\n355.10 452.77 2.02 c p1\n260.14 361.64 2.02 c p1\n340.66 440.66
      2.02 c p1\n256.01 355.89 2.02 c p1\n366.47 458.96 2.02 c p1\n356.93
      454.56 2.02 c p1\n270.07 373.61 2.02 c p1\n315.39 416.51 2.02 c
      p1\n340.98 439.36 2.02 c p1\n364.09 457.95 2.02 c p1\n355.66 456.56
      2.02 c p1\n364.85 466.36 2.02 c p1\n370.31 467.64 2.02 c p1\n325.35
      423.09 2.02 c p1\n277.27 378.03 2.02 c p1\n306.10 412.02 2.02 c
      p1\n390.04 481.77 2.02 c p1\n328.81 425.81 2.02 c p1\n299.37 400.10
      2.02 c p1\n323.41 412.98 2.02 c p1\n412.38 514.56 2.02 c p1\n308.53
      409.43 2.02 c p1\n311.96 412.22 2.02 c p1\n312.95 408.69 2.02 c
      p1\n249.44 357.86 2.02 c p1\n243.75 356.76 2.02 c p1\n351.03 449.27
      2.02 c p1\n305.32 407.39 2.02 c p1\n339.78 447.16 2.02 c p1\n321.32
      411.79 2.02 c p1\n392.46 491.70 2.02 c p1\n330.63 431.47 2.02 c
      p1\n268.05 366.13 2.02 c p1\n292.31 393.00 2.02 c p1\n264.02 367.27
      2.02 c p1\n297.16 396.66 2.02 c p1\n276.48 373.27 2.02 c p1\n311.33
      415.77 2.02 c p1\n391.64 492.82 2.02 c p1\n308.60 406.81 2.02 c
      p1\n278.27 382.70 2.02 c p1\n310.18 408.49 2.02 c p1\n389.66 485.43
      2.02 c p1\n352.37 447.17 2.02 c p1\n305.77 411.49 2.02 c p1\n241.15
      353.36 2.02 c p1\n327.50 426.89 2.02 c p1\n344.01 442.45 2.02 c
      p1\n252.44 352.79 2.02 c p1\n379.31 475.50 2.02 c p1\n298.30 398.36
      2.02 c p1\n375.27 476.97 2.02 c p1\n251.18 361.51 2.02 c p1\n379.22
      481.61 2.02 c p1\n267.14 376.99 2.02 c p1\n299.93 400.60 2.02 c
      p1\n304.73 407.89 2.02 c p1\n332.52 436.21 2.02 c p1\n302.23 400.29
      2.02 c p1\n265.52 366.66 2.02 c p1\n285.86 385.85 2.02 c p1\n346.45
      444.80 2.02 c p1\n220.11 323.91 2.02 c p1\n362.78 467.18 2.02 c
      p1\n384.52 480.59 2.02 c p1\n331.99 428.34 2.02 c p1\n313.14 413.35
      2.02 c p1\n292.33 394.67 2.02 c p1\n363.67 467.01 2.02 c p1\n285.51
      388.01 2.02 c p1\n367.72 463.19 2.02 c p1\n414.41 515.24 2.02 c
      p1\n273.03 373.55 2.02 c p1\n386.21 475.53 2.02 c p1\n314.10 418.08
      2.02 c p1\n306.01 404.68 2.02 c p1\n309.71 410.78 2.02 c p1\n294.58
      401.75 2.02 c p1\n318.70 414.95 2.02 c p1\n261.15 362.90 2.02 c
      p1\n384.68 481.68 2.02 c p1\n334.98 428.21 2.02 c p1\n340.56 443.08
      2.02 c p1\n359.89 456.25 2.02 c p1\n336.65 436.40 2.02 c p1\n301.28
      399.52 2.02 c p1\n278.90 384.75 2.02 c p1\n305.65 406.36 2.02 c
      p1\n294.34 388.70 2.02 c p1\n408.32 509.79 2.02 c p1\n321.20 425.57
      2.02 c p1\n354.19 466.16 2.02 c p1\n327.78 435.12 2.02 c p1\n323.33
      420.45 2.02 c p1\n419.13 519.93 2.02 c p1\n360.46 464.80 2.02 c
      p1\n417.75 519.31 2.02 c p1\n214.47 315.27 2.02 c p1\n284.96 380.26
      2.02 c p1\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75
      setlinewidth\n[] 0 setdash\nnp\n225.36 307.08 m\n191.82 0
      l\no\nnp\n225.36 307.08 m\n0 -5.40 l\no\nnp\n273.31 307.08 m\n0 -5.40
      l\no\nnp\n321.27 307.08 m\n0 -5.40 l\no\nnp\n369.22 307.08 m\n0 -5.40
      l\no\nnp\n417.18 307.08 m\n0 -5.40 l\no\n/ps 11 def R 11 s\n225.36
      287.64 (-2) .5 0 0 t\n273.31 287.64 (-1) .5 0 0 t\n321.27 287.64 (0) .5
      0 0 t\n369.22 287.64 (1) .5 0 0 t\n417.18 287.64 (2) .5 0 0
      t\nnp\n206.28 328.98 m\n0 184.87 l\no\nnp\n206.28 328.98 m\n-5.40 0
      l\no\nnp\n206.28 375.20 m\n-5.40 0 l\no\nnp\n206.28 421.41 m\n-5.40 0
      l\no\nnp\n206.28 467.63 m\n-5.40 0 l\no\nnp\n206.28 513.85 m\n-5.40 0
      l\no\n193.32 328.98 (-2) .5 0 90 t\n193.32 375.20 (-1) .5 0 90
      t\n193.32 421.41 (0) .5 0 90 t\n193.32 467.63 (1) .5 0 90 t\n193.32
      513.85 (2) .5 0 90 t\nnp\n206.28 307.08 m\n221.04 0 l\n0 221.04
      l\n-221.04 0 l\n0 -221.04 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 11
      def R 11 s\n0 0 0 rgb\n316.80 266.04 (x) .5 0 0 t\n171.72 417.60 (y) .5
      0 90 t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      z=as.factor( x\<gtr\>0 )
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(z,x);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n224.70 368.40
      m\n81.87 0 l\n0 38.46 l\n-81.87 0 l\n0 -38.46 l\no\nnp\n224.70 395.26
      m\n81.87 0 l\no\n0.75 setlinewidth\n[ 3.00 5.00] 0 setdash\nnp\n265.63
      315.27 m\n0 53.13 l\no\nnp\n265.63 422.00 m\n0 -15.14 l\no\n0.75
      setlinewidth\n[] 0 setdash\nnp\n245.17 315.27 m\n40.93 0
      l\no\nnp\n245.17 422.00 m\n40.93 0 l\no\nnp\n327.03 439.02 m\n81.87 0
      l\n0 43.70 l\n-81.87 0 l\n0 -43.70 l\no\nnp\n327.03 459.21 m\n81.87 0
      l\no\n0.75 setlinewidth\n[ 3.00 5.00] 0 setdash\nnp\n367.97 422.12 m\n0
      16.90 l\no\nnp\n367.97 519.93 m\n0 -37.21 l\no\n0.75 setlinewidth\n[] 0
      setdash\nnp\n347.50 422.12 m\n40.93 0 l\no\nnp\n347.50 519.93 m\n40.93
      0 l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75
      setlinewidth\n[] 0 setdash\nnp\n265.63 307.08 m\n102.34 0
      l\no\nnp\n265.63 307.08 m\n0 -5.40 l\no\nnp\n367.97 307.08 m\n0 -5.40
      l\no\n/ps 11 def R 11 s\n265.63 287.64 (FALSE) .5 0 0 t\n367.97 287.64
      (TRUE) .5 0 0 t\nnp\n206.28 326.16 m\n0 191.82 l\no\nnp\n206.28 326.16
      m\n-5.40 0 l\no\nnp\n206.28 374.11 m\n-5.40 0 l\no\nnp\n206.28 422.07
      m\n-5.40 0 l\no\nnp\n206.28 470.02 m\n-5.40 0 l\no\nnp\n206.28 517.98
      m\n-5.40 0 l\no\n193.32 326.16 (-2) .5 0 90 t\n193.32 374.11 (-1) .5 0
      90 t\n193.32 422.07 (0) .5 0 90 t\n193.32 470.02 (1) .5 0 90 t\n193.32
      517.98 (2) .5 0 90 t\nnp\n206.28 307.08 m\n221.04 0 l\n0 221.04
      l\n-221.04 0 l\n0 -221.04 l\no\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(sin,from=-3,to=3);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n214.47 403.16
      m\n2.04 -6.05 l\n2.05 -5.98 l\n2.05 -5.88 l\n2.04 -5.76 l\n2.05 -5.63
      l\n2.05 -5.47 l\n2.04 -5.29 l\n2.05 -5.10 l\n2.05 -4.88 l\n2.04 -4.65
      l\n2.05 -4.40 l\n2.05 -4.13 l\n2.04 -3.86 l\n2.05 -3.56 l\n2.05 -3.26
      l\n2.04 -2.94 l\n2.05 -2.61 l\n2.05 -2.27 l\n2.04 -1.93 l\n2.05 -1.57
      l\n2.05 -1.22 l\n2.04 -0.85 l\n2.05 -0.49 l\n2.05 -0.11 l\n2.04 0.25
      l\n2.05 0.61 l\n2.05 0.99 l\n2.04 1.34 l\n2.05 1.70 l\n2.05 2.06
      l\n2.04 2.39 l\n2.05 2.73 l\n2.05 3.06 l\n2.04 3.36 l\n2.05 3.67
      l\n2.05 3.96 l\n2.04 4.24 l\n2.05 4.49 l\n2.05 4.73 l\n2.04 4.96
      l\n2.05 5.17 l\n2.05 5.36 l\n2.04 5.53 l\n2.05 5.68 l\n2.05 5.81
      l\n2.04 5.91 l\n2.05 6.01 l\n2.05 6.07 l\n2.04 6.11 l\n2.05 6.14
      l\n2.05 6.14 l\n2.04 6.11 l\n2.05 6.07 l\n2.05 6.01 l\n2.04 5.91
      l\n2.05 5.81 l\n2.05 5.68 l\n2.04 5.53 l\n2.05 5.36 l\n2.05 5.17
      l\n2.04 4.96 l\n2.05 4.73 l\n2.05 4.49 l\n2.04 4.24 l\n2.05 3.96
      l\n2.05 3.67 l\n2.04 3.36 l\n2.05 3.06 l\n2.05 2.73 l\n2.04 2.39
      l\n2.05 2.06 l\n2.05 1.70 l\n2.04 1.34 l\n2.05 0.99 l\n2.05 0.61
      l\n2.04 0.25 l\n2.05 -0.11 l\n2.05 -0.49 l\n2.04 -0.85 l\n2.05 -1.22
      l\n2.05 -1.57 l\n2.04 -1.93 l\n2.05 -2.27 l\n2.05 -2.61 l\n2.04 -2.94
      l\n2.05 -3.26 l\n2.05 -3.56 l\n2.04 -3.86 l\n2.05 -4.13 l\n2.05 -4.40
      l\n2.04 -4.65 l\n2.05 -4.88 l\n2.05 -5.10 l\n2.04 -5.29 l\n2.05 -5.47
      l\n2.05 -5.63 l\n2.04 -5.76 l\n2.05 -5.88 l\n2.05 -5.98 l\n2.04 -6.05
      l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[]
      0 setdash\nnp\n214.47 307.08 m\n204.66 0 l\no\nnp\n214.47 307.08 m\n0
      -5.40 l\no\nnp\n248.58 307.08 m\n0 -5.40 l\no\nnp\n282.69 307.08 m\n0
      -5.40 l\no\nnp\n316.80 307.08 m\n0 -5.40 l\no\nnp\n350.91 307.08 m\n0
      -5.40 l\no\nnp\n385.02 307.08 m\n0 -5.40 l\no\nnp\n419.13 307.08 m\n0
      -5.40 l\no\n/ps 11 def R 11 s\n214.47 287.64 (-3) .5 0 0 t\n248.58
      287.64 (-2) .5 0 0 t\n282.69 287.64 (-1) .5 0 0 t\n316.80 287.64 (0) .5
      0 0 t\n350.91 287.64 (1) .5 0 0 t\n385.02 287.64 (2) .5 0 0 t\n419.13
      287.64 (3) .5 0 0 t\nnp\n206.28 315.26 m\n0 204.68 l\no\nnp\n206.28
      315.26 m\n-5.40 0 l\no\nnp\n206.28 366.43 m\n-5.40 0 l\no\nnp\n206.28
      417.60 m\n-5.40 0 l\no\nnp\n206.28 468.77 m\n-5.40 0 l\no\nnp\n206.28
      519.94 m\n-5.40 0 l\no\n193.32 315.26 (-1.0) .5 0 90 t\n193.32 366.43
      (-0.5) .5 0 90 t\n193.32 417.60 (0.0) .5 0 90 t\n193.32 468.77 (0.5) .5
      0 90 t\n193.32 519.94 (1.0) .5 0 90 t\nnp\n206.28 307.08 m\n221.04 0
      l\n0 221.04 l\n-221.04 0 l\n0 -221.04 l\no\n162.00 252.00 450.00 540.00
      cl\n/ps 11 def R 11 s\n0 0 0 rgb\n316.80 266.04 (x) .5 0 0 t\n171.72
      417.60 (sin \\(x\\)) .5 0 90 t\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  And now we can understand how to bring up help for these functions:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      class(sin)
    </input>

    <\output>
      [1] "function"
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      help(plot.function)
    </input>

    <\output>
      help() for plot.function \ is shown in browser netscape ...

      Use \ \ \ \ \ help( plot.function , htmlhelp=FALSE)

      or \ \ \ \ \ \ options(htmlhelp = FALSE)

      to revert.

      Warning message:\ 

      Using non-linked HTML file: style sheet and hyperlinks may be incorrect
      in: help(plot.function)\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      class(z)
    </input>

    <\output>
      awk: cmd. line:1: warning: escape sequence `\\.' treated as plain `.'

      \;

      [1] "factor"
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      help(plot.factor)
    </input>

    <\output>
      help() for plot.factor \ is shown in browser netscape ...

      Use \ \ \ \ \ help( plot.factor , htmlhelp=FALSE)

      or \ \ \ \ \ \ options(htmlhelp = FALSE)

      to revert.

      Warning message:\ 

      Using non-linked HTML file: style sheet and hyperlinks may be incorrect
      in: help(plot.factor)\ 
    </output>

    \;
  </session>>

  <subsection|Some plot commands we already encountered>

  <subsubsection|<verbatim|qqplot>>

  Last time we learned about qqplot and qqnorm. Let us see how to interpret
  them:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      x=rnorm(1000)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      qqnorm(x);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n316.06 416.11 2.02 c
      p1\n336.09 437.70 2.02 c p1\n371.80 473.91 2.02 c p1\n261.43 353.85
      2.02 c p1\n340.55 442.44 2.02 c p1\n318.24 418.38 2.02 c p1\n316.53
      416.73 2.02 c p1\n301.86 401.39 2.02 c p1\n320.20 420.94 2.02 c
      p1\n313.87 413.71 2.02 c p1\n327.00 428.51 2.02 c p1\n323.68 424.87
      2.02 c p1\n290.01 388.46 2.02 c p1\n278.41 373.27 2.02 c p1\n298.72
      397.77 2.02 c p1\n370.37 471.99 2.02 c p1\n316.92 416.95 2.02 c
      p1\n285.68 381.98 2.02 c p1\n322.48 423.00 2.02 c p1\n340.97 442.79
      2.02 c p1\n304.02 403.57 2.02 c p1\n267.24 359.04 2.02 c p1\n347.54
      451.14 2.02 c p1\n340.76 442.64 2.02 c p1\n351.61 455.31 2.02 c
      p1\n322.32 422.85 2.02 c p1\n337.63 439.61 2.02 c p1\n330.61 432.40
      2.02 c p1\n306.27 405.62 2.02 c p1\n379.14 485.64 2.02 c p1\n317.38
      417.52 2.02 c p1\n292.63 391.26 2.02 c p1\n322.17 422.78 2.02 c
      p1\n311.04 411.40 2.02 c p1\n279.23 374.68 2.02 c p1\n337.24 439.27
      2.02 c p1\n307.91 407.78 2.02 c p1\n289.09 387.57 2.02 c p1\n330.87
      432.84 2.02 c p1\n338.82 440.33 2.02 c p1\n302.56 401.92 2.02 c
      p1\n310.32 410.99 2.02 c p1\n328.07 429.90 2.02 c p1\n319.10 419.39
      2.02 c p1\n346.41 449.89 2.02 c p1\n272.57 366.50 2.02 c p1\n319.57
      420.05 2.02 c p1\n291.67 390.32 2.02 c p1\n305.78 405.19 2.02 c
      p1\n332.09 434.00 2.02 c p1\n283.55 379.90 2.02 c p1\n317.15 417.24
      2.02 c p1\n366.09 468.68 2.02 c p1\n333.33 434.90 2.02 c p1\n293.15
      391.53 2.02 c p1\n352.35 455.84 2.02 c p1\n296.26 395.13 2.02 c
      p1\n304.35 403.90 2.02 c p1\n310.16 410.91 2.02 c p1\n312.93 413.16
      2.02 c p1\n313.01 413.17 2.02 c p1\n381.67 490.56 2.02 c p1\n318.95
      419.37 2.02 c p1\n279.87 375.45 2.02 c p1\n313.48 413.42 2.02 c
      p1\n326.26 427.88 2.02 c p1\n301.69 401.29 2.02 c p1\n310.64 411.14
      2.02 c p1\n280.34 376.05 2.02 c p1\n323.28 424.23 2.02 c p1\n327.66
      429.28 2.02 c p1\n342.15 444.33 2.02 c p1\n324.80 426.42 2.02 c
      p1\n310.08 410.64 2.02 c p1\n310.24 410.95 2.02 c p1\n269.83 364.11
      2.02 c p1\n347.28 450.89 2.02 c p1\n291.01 389.48 2.02 c p1\n343.59
      446.23 2.02 c p1\n335.06 436.56 2.02 c p1\n327.33 428.76 2.02 c
      p1\n328.74 430.66 2.02 c p1\n263.58 354.96 2.02 c p1\n308.96 409.30
      2.02 c p1\n314.97 415.19 2.02 c p1\n302.90 402.28 2.02 c p1\n299.64
      399.09 2.02 c p1\n362.12 464.91 2.02 c p1\n295.38 394.58 2.02 c
      p1\n251.93 339.86 2.02 c p1\n361.68 464.54 2.02 c p1\n294.78 393.57
      2.02 c p1\n354.05 457.53 2.02 c p1\n345.21 448.42 2.02 c p1\n305.94
      405.43 2.02 c p1\n275.76 370.67 2.02 c p1\n339.83 442.22 2.02 c
      p1\n300.98 400.56 2.02 c p1\n339.22 440.85 2.02 c p1\n306.77 406.09
      2.02 c p1\n328.24 430.39 2.02 c p1\n282.57 379.14 2.02 c p1\n292.94
      391.42 2.02 c p1\n314.58 414.76 2.02 c p1\n347.79 451.25 2.02 c
      p1\n283.13 379.50 2.02 c p1\n332.18 434.04 2.02 c p1\n284.37 380.36
      2.02 c p1\n311.43 411.60 2.02 c p1\n286.82 383.83 2.02 c p1\n310.80
      411.25 2.02 c p1\n237.72 324.46 2.02 c p1\n325.69 427.31 2.02 c
      p1\n311.83 411.80 2.02 c p1\n330.18 432.18 2.02 c p1\n300.63 400.37
      2.02 c p1\n343.70 446.34 2.02 c p1\n331.13 433.02 2.02 c p1\n338.02
      439.79 2.02 c p1\n291.45 390.08 2.02 c p1\n353.58 457.48 2.02 c
      p1\n364.26 466.54 2.02 c p1\n318.71 418.90 2.02 c p1\n352.05 455.62
      2.02 c p1\n316.14 416.24 2.02 c p1\n310.88 411.29 2.02 c p1\n335.16
      436.63 2.02 c p1\n323.76 425.09 2.02 c p1\n348.44 451.62 2.02 c
      p1\n291.99 390.59 2.02 c p1\n266.39 357.77 2.02 c p1\n329.50 431.55
      2.02 c p1\n327.74 429.49 2.02 c p1\n348.97 452.10 2.02 c p1\n290.57
      388.94 2.02 c p1\n325.93 427.53 2.02 c p1\n264.88 355.90 2.02 c
      p1\n350.33 454.22 2.02 c p1\n269.34 362.60 2.02 c p1\n288.27 386.11
      2.02 c p1\n341.50 443.13 2.02 c p1\n294.48 393.21 2.02 c p1\n334.70
      436.06 2.02 c p1\n360.19 463.43 2.02 c p1\n287.80 385.10 2.02 c
      p1\n297.03 395.75 2.02 c p1\n249.72 335.00 2.02 c p1\n257.12 347.46
      2.02 c p1\n328.16 430.38 2.02 c p1\n302.99 402.38 2.02 c p1\n332.62
      434.58 2.02 c p1\n303.76 403.05 2.02 c p1\n284.50 380.48 2.02 c
      p1\n294.88 393.69 2.02 c p1\n335.81 437.49 2.02 c p1\n328.32 430.40
      2.02 c p1\n339.52 441.39 2.02 c p1\n300.54 400.34 2.02 c p1\n309.04
      409.38 2.02 c p1\n342.37 444.54 2.02 c p1\n324.40 426.03 2.02 c
      p1\n364.01 466.42 2.02 c p1\n367.21 469.40 2.02 c p1\n371.07 473.14
      2.02 c p1\n309.20 409.46 2.02 c p1\n358.79 461.89 2.02 c p1\n256.63
      346.73 2.02 c p1\n331.04 432.97 2.02 c p1\n302.73 402.03 2.02 c
      p1\n315.28 415.39 2.02 c p1\n346.78 450.18 2.02 c p1\n340.14 442.35
      2.02 c p1\n380.35 488.39 2.02 c p1\n344.04 446.70 2.02 c p1\n296.65
      395.43 2.02 c p1\n266.09 357.72 2.02 c p1\n281.25 377.24 2.02 c
      p1\n267.78 360.62 2.02 c p1\n281.70 378.38 2.02 c p1\n336.28 438.39
      2.02 c p1\n290.46 388.83 2.02 c p1\n343.14 445.40 2.02 c p1\n333.60
      435.17 2.02 c p1\n293.36 391.73 2.02 c p1\n274.03 368.40 2.02 c
      p1\n264.24 355.14 2.02 c p1\n283.96 380.07 2.02 c p1\n363.77 466.42
      2.02 c p1\n357.28 460.42 2.02 c p1\n323.60 424.81 2.02 c p1\n383.88
      492.51 2.02 c p1\n346.17 449.23 2.02 c p1\n314.89 415.13 2.02 c
      p1\n376.48 480.99 2.02 c p1\n342.70 444.81 2.02 c p1\n326.10 427.74
      2.02 c p1\n299.18 398.71 2.02 c p1\n271.02 365.24 2.02 c p1\n310.96
      411.31 2.02 c p1\n321.14 421.70 2.02 c p1\n311.75 411.78 2.02 c
      p1\n344.39 446.83 2.02 c p1\n302.12 401.61 2.02 c p1\n297.88 396.85
      2.02 c p1\n320.83 421.58 2.02 c p1\n331.74 433.54 2.02 c p1\n298.63
      397.67 2.02 c p1\n303.08 402.40 2.02 c p1\n341.08 442.85 2.02 c
      p1\n336.86 439.03 2.02 c p1\n293.46 391.73 2.02 c p1\n307.34 406.96
      2.02 c p1\n335.34 436.71 2.02 c p1\n321.22 421.79 2.02 c p1\n322.64
      423.37 2.02 c p1\n362.35 465.06 2.02 c p1\n276.86 371.48 2.02 c
      p1\n327.57 429.20 2.02 c p1\n296.17 395.06 2.02 c p1\n357.84 460.70
      2.02 c p1\n345.93 448.92 2.02 c p1\n328.49 430.41 2.02 c p1\n336.00
      437.69 2.02 c p1\n283.82 380.03 2.02 c p1\n295.48 394.65 2.02 c
      p1\n299.09 398.50 2.02 c p1\n323.92 425.29 2.02 c p1\n330.35 432.22
      2.02 c p1\n330.44 432.31 2.02 c p1\n321.06 421.69 2.02 c p1\n335.62
      437.04 2.02 c p1\n315.90 415.81 2.02 c p1\n297.98 396.85 2.02 c
      p1\n300.00 399.80 2.02 c p1\n301.42 401.19 2.02 c p1\n357.10 460.13
      2.02 c p1\n349.50 452.48 2.02 c p1\n297.51 396.41 2.02 c p1\n307.50
      407.01 2.02 c p1\n282.42 378.75 2.02 c p1\n326.83 428.34 2.02 c
      p1\n317.23 417.50 2.02 c p1\n288.15 385.93 2.02 c p1\n324.08 425.89
      2.02 c p1\n296.84 395.62 2.02 c p1\n288.63 386.65 2.02 c p1\n301.16
      400.91 2.02 c p1\n329.33 431.51 2.02 c p1\n375.06 478.53 2.02 c
      p1\n278.90 374.20 2.02 c p1\n296.94 395.72 2.02 c p1\n334.06 435.44
      2.02 c p1\n298.16 397.23 2.02 c p1\n327.41 428.83 2.02 c p1\n300.27
      399.94 2.02 c p1\n350.47 454.43 2.02 c p1\n307.99 407.87 2.02 c
      p1\n305.53 405.06 2.02 c p1\n280.80 376.53 2.02 c p1\n284.63 380.85
      2.02 c p1\n339.42 441.03 2.02 c p1\n262.53 354.18 2.02 c p1\n288.51
      386.36 2.02 c p1\n310.72 411.17 2.02 c p1\n292.20 390.73 2.02 c
      p1\n322.96 424.03 2.02 c p1\n380.99 489.71 2.02 c p1\n339.12 440.65
      2.02 c p1\n332.53 434.58 2.02 c p1\n271.92 366.37 2.02 c p1\n278.24
      373.14 2.02 c p1\n316.37 416.56 2.02 c p1\n361.24 464.28 2.02 c
      p1\n269.09 362.54 2.02 c p1\n301.95 401.42 2.02 c p1\n368.41 470.78
      2.02 c p1\n290.12 388.49 2.02 c p1\n331.21 433.03 2.02 c p1\n281.55
      377.68 2.02 c p1\n276.13 370.94 2.02 c p1\n262.17 353.97 2.02 c
      p1\n260.65 352.66 2.02 c p1\n308.64 408.72 2.02 c p1\n300.18 399.90
      2.02 c p1\n317.85 418.05 2.02 c p1\n295.58 394.69 2.02 c p1\n292.42
      390.93 2.02 c p1\n253.25 342.81 2.02 c p1\n359.57 462.40 2.02 c
      p1\n342.59 444.77 2.02 c p1\n378.02 484.07 2.02 c p1\n306.52 405.75
      2.02 c p1\n321.30 421.84 2.02 c p1\n280.49 376.38 2.02 c p1\n356.74
      459.99 2.02 c p1\n299.82 399.68 2.02 c p1\n319.96 420.66 2.02 c
      p1\n318.32 418.52 2.02 c p1\n321.53 421.95 2.02 c p1\n353.42 457.23
      2.02 c p1\n350.61 454.48 2.02 c p1\n299.27 398.71 2.02 c p1\n286.57
      383.39 2.02 c p1\n300.80 400.41 2.02 c p1\n302.04 401.45 2.02 c
      p1\n344.85 447.80 2.02 c p1\n303.42 402.77 2.02 c p1\n280.18 375.81
      2.02 c p1\n339.93 442.26 2.02 c p1\n347.16 450.76 2.02 c p1\n343.82
      446.45 2.02 c p1\n309.44 409.82 2.02 c p1\n266.67 357.86 2.02 c
      p1\n374.19 477.93 2.02 c p1\n269.59 363.21 2.02 c p1\n329.08 431.40
      2.02 c p1\n293.67 391.95 2.02 c p1\n369.04 471.22 2.02 c p1\n348.57
      451.62 2.02 c p1\n327.82 429.59 2.02 c p1\n255.03 345.73 2.02 c
      p1\n327.49 428.89 2.02 c p1\n320.75 421.51 2.02 c p1\n302.30 401.75
      2.02 c p1\n337.73 439.72 2.02 c p1\n305.86 405.28 2.02 c p1\n282.71
      379.15 2.02 c p1\n345.45 448.57 2.02 c p1\n338.62 440.21 2.02 c
      p1\n338.52 440.18 2.02 c p1\n329.42 431.54 2.02 c p1\n346.66 450.10
      2.02 c p1\n271.25 365.31 2.02 c p1\n285.94 382.16 2.02 c p1\n324.88
      426.55 2.02 c p1\n304.10 403.58 2.02 c p1\n284.23 380.23 2.02 c
      p1\n248.02 334.59 2.02 c p1\n352.50 456.20 2.02 c p1\n317.31 417.50
      2.02 c p1\n287.19 384.35 2.02 c p1\n351.76 455.57 2.02 c p1\n358.40
      461.33 2.02 c p1\n320.04 420.75 2.02 c p1\n288.04 385.54 2.02 c
      p1\n315.75 415.64 2.02 c p1\n311.12 411.43 2.02 c p1\n229.50 316.66
      2.02 c p1\n320.35 421.00 2.02 c p1\n291.88 390.50 2.02 c p1\n324.96
      426.67 2.02 c p1\n273.00 366.82 2.02 c p1\n368.72 470.89 2.02 c
      p1\n317.54 417.76 2.02 c p1\n325.61 427.28 2.02 c p1\n325.28 426.97
      2.02 c p1\n306.93 406.51 2.02 c p1\n316.99 417.00 2.02 c p1\n279.07
      374.66 2.02 c p1\n284.77 380.87 2.02 c p1\n308.56 408.59 2.02 c
      p1\n394.04 501.88 2.02 c p1\n306.11 405.55 2.02 c p1\n300.71 400.38
      2.02 c p1\n290.35 388.74 2.02 c p1\n330.01 432.06 2.02 c p1\n359.18
      461.96 2.02 c p1\n334.33 435.69 2.02 c p1\n287.92 385.10 2.02 c
      p1\n338.72 440.32 2.02 c p1\n357.65 460.54 2.02 c p1\n349.64 453.01
      2.02 c p1\n331.83 433.78 2.02 c p1\n369.69 471.61 2.02 c p1\n270.79
      365.11 2.02 c p1\n313.79 413.64 2.02 c p1\n312.07 411.87 2.02 c
      p1\n248.89 334.76 2.02 c p1\n343.36 446.13 2.02 c p1\n335.44 436.71
      2.02 c p1\n325.45 427.21 2.02 c p1\n290.90 389.41 2.02 c p1\n341.61
      443.24 2.02 c p1\n338.42 440.16 2.02 c p1\n298.07 396.89 2.02 c
      p1\n280.02 375.57 2.02 c p1\n327.16 428.70 2.02 c p1\n341.29 443.02
      2.02 c p1\n367.80 470.12 2.02 c p1\n303.33 402.73 2.02 c p1\n286.06
      382.23 2.02 c p1\n315.05 415.25 2.02 c p1\n335.53 436.76 2.02 c
      p1\n300.36 399.94 2.02 c p1\n344.62 447.40 2.02 c p1\n338.92 440.36
      2.02 c p1\n349.23 452.40 2.02 c p1\n306.60 405.88 2.02 c p1\n268.32
      360.90 2.02 c p1\n298.44 397.46 2.02 c p1\n292.73 391.28 2.02 c
      p1\n372.56 474.57 2.02 c p1\n334.88 436.20 2.02 c p1\n323.20 424.19
      2.02 c p1\n320.28 421.00 2.02 c p1\n324.56 426.23 2.02 c p1\n364.76
      467.56 2.02 c p1\n251.23 337.14 2.02 c p1\n323.52 424.68 2.02 c
      p1\n334.60 435.90 2.02 c p1\n259.84 352.06 2.02 c p1\n326.01 427.68
      2.02 c p1\n321.93 422.73 2.02 c p1\n315.59 415.57 2.02 c p1\n336.66
      438.69 2.02 c p1\n297.32 396.15 2.02 c p1\n298.35 397.39 2.02 c
      p1\n334.24 435.65 2.02 c p1\n299.91 399.75 2.02 c p1\n309.28 409.46
      2.02 c p1\n345.80 448.75 2.02 c p1\n355.19 458.89 2.02 c p1\n309.60
      409.84 2.02 c p1\n343.03 445.40 2.02 c p1\n340.03 442.31 2.02 c
      p1\n313.32 413.35 2.02 c p1\n360.60 464.02 2.02 c p1\n338.32 439.96
      2.02 c p1\n303.16 402.46 2.02 c p1\n345.68 448.66 2.02 c p1\n351.03
      455.07 2.02 c p1\n333.87 435.30 2.02 c p1\n300.09 399.86 2.02 c
      p1\n318.40 418.59 2.02 c p1\n350.89 455.03 2.02 c p1\n321.77 422.41
      2.02 c p1\n354.70 458.67 2.02 c p1\n373.35 476.85 2.02 c p1\n365.02
      467.68 2.02 c p1\n245.02 332.06 2.02 c p1\n354.37 457.86 2.02 c
      p1\n333.24 434.84 2.02 c p1\n281.84 378.46 2.02 c p1\n308.80 408.92
      2.02 c p1\n306.69 405.97 2.02 c p1\n315.51 415.48 2.02 c p1\n322.25
      422.85 2.02 c p1\n290.79 389.33 2.02 c p1\n292.31 390.73 2.02 c
      p1\n243.86 331.72 2.02 c p1\n311.67 411.75 2.02 c p1\n322.80 423.63
      2.02 c p1\n301.07 400.81 2.02 c p1\n372.95 474.94 2.02 c p1\n348.05
      451.50 2.02 c p1\n313.17 413.23 2.02 c p1\n392.45 498.78 2.02 c
      p1\n341.83 443.67 2.02 c p1\n352.96 456.73 2.02 c p1\n375.52 479.38
      2.02 c p1\n344.16 446.80 2.02 c p1\n286.32 382.61 2.02 c p1\n342.04
      444.01 2.02 c p1\n311.20 411.51 2.02 c p1\n307.26 406.77 2.02 c
      p1\n308.32 408.51 2.02 c p1\n325.85 427.52 2.02 c p1\n337.83 439.77
      2.02 c p1\n333.69 435.27 2.02 c p1\n382.37 490.70 2.02 c p1\n275.95
      370.71 2.02 c p1\n278.07 372.93 2.02 c p1\n311.59 411.71 2.02 c
      p1\n321.46 421.91 2.02 c p1\n334.51 435.79 2.02 c p1\n285.29 381.47
      2.02 c p1\n262.89 354.40 2.02 c p1\n276.32 370.96 2.02 c p1\n333.51
      435.11 2.02 c p1\n306.36 405.63 2.02 c p1\n255.58 346.25 2.02 c
      p1\n366.36 468.81 2.02 c p1\n358.21 461.01 2.02 c p1\n315.83 415.77
      2.02 c p1\n310.00 410.54 2.02 c p1\n331.91 433.88 2.02 c p1\n320.51
      421.15 2.02 c p1\n321.85 422.52 2.02 c p1\n363.05 465.70 2.02 c
      p1\n363.52 466.12 2.02 c p1\n314.50 414.72 2.02 c p1\n366.93 469.19
      2.02 c p1\n370.02 471.88 2.02 c p1\n312.77 412.90 2.02 c p1\n325.53
      427.23 2.02 c p1\n345.33 448.57 2.02 c p1\n257.61 349.19 2.02 c
      p1\n385.58 494.44 2.02 c p1\n275.58 370.54 2.02 c p1\n312.85 413.02
      2.02 c p1\n314.65 414.92 2.02 c p1\n345.56 448.58 2.02 c p1\n232.93
      319.10 2.02 c p1\n291.77 390.44 2.02 c p1\n316.61 416.79 2.02 c
      p1\n288.98 387.16 2.02 c p1\n317.46 417.62 2.02 c p1\n296.74 395.53
      2.02 c p1\n283.27 379.54 2.02 c p1\n323.04 424.04 2.02 c p1\n361.90
      464.80 2.02 c p1\n260.25 352.36 2.02 c p1\n314.34 414.52 2.02 c
      p1\n409.09 516.99 2.02 c p1\n395.88 505.48 2.02 c p1\n294.68 393.47
      2.02 c p1\n307.67 407.25 2.02 c p1\n293.26 391.65 2.02 c p1\n314.19
      414.19 2.02 c p1\n304.27 403.81 2.02 c p1\n313.72 413.62 2.02 c
      p1\n318.48 418.61 2.02 c p1\n312.38 412.70 2.02 c p1\n339.62 441.60
      2.02 c p1\n309.36 409.63 2.02 c p1\n362.58 465.58 2.02 c p1\n330.52
      432.34 2.02 c p1\n281.99 378.55 2.02 c p1\n277.03 371.75 2.02 c
      p1\n358.59 461.55 2.02 c p1\n307.59 407.13 2.02 c p1\n351.32 455.22
      2.02 c p1\n258.08 350.29 2.02 c p1\n275.20 370.26 2.02 c p1\n309.84
      410.29 2.02 c p1\n314.11 414.04 2.02 c p1\n297.13 396.05 2.02 c
      p1\n328.41 430.41 2.02 c p1\n296.55 395.40 2.02 c p1\n288.75 387.00
      2.02 c p1\n357.47 460.44 2.02 c p1\n275.01 370.14 2.02 c p1\n291.34
      390.01 2.02 c p1\n322.56 423.04 2.02 c p1\n336.57 438.60 2.02 c
      p1\n332.26 434.11 2.02 c p1\n351.18 455.10 2.02 c p1\n318.87 419.21
      2.02 c p1\n332.71 434.67 2.02 c p1\n315.36 415.39 2.02 c p1\n356.39
      459.79 2.02 c p1\n302.65 401.97 2.02 c p1\n285.42 381.68 2.02 c
      p1\n319.26 419.71 2.02 c p1\n332.35 434.35 2.02 c p1\n316.68 416.87
      2.02 c p1\n331.48 433.11 2.02 c p1\n310.40 411.00 2.02 c p1\n290.68
      389.30 2.02 c p1\n327.99 429.78 2.02 c p1\n295.18 394.11 2.02 c
      p1\n331.39 433.06 2.02 c p1\n304.69 404.12 2.02 c p1\n285.16 381.37
      2.02 c p1\n353.11 456.84 2.02 c p1\n343.25 445.52 2.02 c p1\n324.00
      425.40 2.02 c p1\n311.91 411.80 2.02 c p1\n265.19 356.50 2.02 c
      p1\n333.78 435.27 2.02 c p1\n325.04 426.73 2.02 c p1\n349.91 453.18
      2.02 c p1\n340.45 442.42 2.02 c p1\n329.84 431.98 2.02 c p1\n346.05
      449.13 2.02 c p1\n336.95 439.05 2.02 c p1\n279.39 374.81 2.02 c
      p1\n291.23 389.61 2.02 c p1\n334.97 436.24 2.02 c p1\n318.63 418.89
      2.02 c p1\n297.60 396.48 2.02 c p1\n252.61 341.04 2.02 c p1\n349.78
      453.14 2.02 c p1\n328.91 431.29 2.02 c p1\n264.56 355.34 2.02 c
      p1\n305.44 405.05 2.02 c p1\n342.81 445.19 2.02 c p1\n325.20 426.94
      2.02 c p1\n347.92 451.35 2.02 c p1\n344.51 447.32 2.02 c p1\n276.50
      371.02 2.02 c p1\n259.41 351.16 2.02 c p1\n362.81 465.68 2.02 c
      p1\n348.18 451.59 2.02 c p1\n319.88 420.40 2.02 c p1\n324.64 426.26
      2.02 c p1\n292.10 390.67 2.02 c p1\n330.10 432.08 2.02 c p1\n356.22
      459.40 2.02 c p1\n253.86 343.06 2.02 c p1\n305.28 404.95 2.02 c
      p1\n322.88 423.97 2.02 c p1\n272.14 366.46 2.02 c p1\n341.40 443.11
      2.02 c p1\n306.19 405.58 2.02 c p1\n355.03 458.87 2.02 c p1\n365.82
      468.15 2.02 c p1\n277.21 371.78 2.02 c p1\n350.75 454.86 2.02 c
      p1\n304.77 404.23 2.02 c p1\n306.85 406.41 2.02 c p1\n319.34 419.81
      2.02 c p1\n348.83 452.04 2.02 c p1\n310.56 411.12 2.02 c p1\n281.10
      376.74 2.02 c p1\n318.79 418.97 2.02 c p1\n320.43 421.03 2.02 c
      p1\n314.42 414.58 2.02 c p1\n277.56 372.33 2.02 c p1\n313.25 413.29
      2.02 c p1\n361.46 464.32 2.02 c p1\n337.53 439.54 2.02 c p1\n279.71
      375.07 2.02 c p1\n314.81 415.02 2.02 c p1\n321.61 422.35 2.02 c
      p1\n311.99 411.83 2.02 c p1\n313.95 413.82 2.02 c p1\n303.50 402.80
      2.02 c p1\n326.91 428.44 2.02 c p1\n287.06 384.13 2.02 c p1\n276.68
      371.22 2.02 c p1\n304.94 404.31 2.02 c p1\n353.73 457.50 2.02 c
      p1\n280.95 376.55 2.02 c p1\n354.86 458.79 2.02 c p1\n266.96 358.89
      2.02 c p1\n391.03 498.55 2.02 c p1\n335.91 437.54 2.02 c p1\n344.97
      447.84 2.02 c p1\n344.27 446.82 2.02 c p1\n333.15 434.83 2.02 c
      p1\n312.22 412.60 2.02 c p1\n320.59 421.19 2.02 c p1\n301.77 401.34
      2.02 c p1\n301.25 401.08 2.02 c p1\n293.57 391.83 2.02 c p1\n353.26
      457.08 2.02 c p1\n289.21 387.74 2.02 c p1\n288.39 386.35 2.02 c
      p1\n303.85 403.39 2.02 c p1\n293.77 392.11 2.02 c p1\n368.11 470.47
      2.02 c p1\n304.86 404.27 2.02 c p1\n342.26 444.39 2.02 c p1\n313.09
      413.17 2.02 c p1\n331.65 433.35 2.02 c p1\n274.62 369.83 2.02 c
      p1\n246.10 332.10 2.02 c p1\n273.21 367.05 2.02 c p1\n337.05 439.13
      2.02 c p1\n314.73 414.98 2.02 c p1\n287.55 384.67 2.02 c p1\n294.28
      392.80 2.02 c p1\n323.36 424.32 2.02 c p1\n317.62 417.84 2.02 c
      p1\n318.16 418.16 2.02 c p1\n330.78 432.77 2.02 c p1\n335.25 436.65
      2.02 c p1\n321.38 421.90 2.02 c p1\n338.12 439.86 2.02 c p1\n328.57
      430.48 2.02 c p1\n360.81 464.08 2.02 c p1\n292.52 391.03 2.02 c
      p1\n307.42 407.00 2.02 c p1\n333.06 434.81 2.02 c p1\n300.45 400.03
      2.02 c p1\n263.23 354.93 2.02 c p1\n315.44 415.44 2.02 c p1\n341.18
      443.00 2.02 c p1\n309.92 410.41 2.02 c p1\n359.78 463.04 2.02 c
      p1\n330.70 432.43 2.02 c p1\n314.26 414.21 2.02 c p1\n312.46 412.71
      2.02 c p1\n304.44 403.93 2.02 c p1\n329.93 432.06 2.02 c p1\n317.70
      417.88 2.02 c p1\n290.24 388.61 2.02 c p1\n292.84 391.29 2.02 c
      p1\n334.42 435.75 2.02 c p1\n295.77 394.89 2.02 c p1\n286.94 383.95
      2.02 c p1\n239.56 325.82 2.02 c p1\n329.25 431.45 2.02 c p1\n361.03
      464.12 2.02 c p1\n319.49 420.04 2.02 c p1\n295.87 394.92 2.02 c
      p1\n341.72 443.28 2.02 c p1\n298.81 398.11 2.02 c p1\n312.54 412.79
      2.02 c p1\n373.76 477.08 2.02 c p1\n326.42 428.04 2.02 c p1\n296.07
      395.04 2.02 c p1\n333.42 434.97 2.02 c p1\n284.90 381.04 2.02 c
      p1\n285.55 381.72 2.02 c p1\n337.43 439.52 2.02 c p1\n286.69 383.64
      2.02 c p1\n322.01 422.76 2.02 c p1\n311.51 411.66 2.02 c p1\n366.64
      469.02 2.02 c p1\n241.15 326.90 2.02 c p1\n306.03 405.46 2.02 c
      p1\n283.41 379.77 2.02 c p1\n367.51 469.49 2.02 c p1\n316.29 416.47
      2.02 c p1\n247.09 332.55 2.02 c p1\n316.84 416.91 2.02 c p1\n400.67
      508.01 2.02 c p1\n351.46 455.24 2.02 c p1\n322.40 422.92 2.02 c
      p1\n295.08 394.08 2.02 c p1\n320.90 421.59 2.02 c p1\n307.83 407.59
      2.02 c p1\n313.40 413.40 2.02 c p1\n349.10 452.18 2.02 c p1\n318.01
      418.09 2.02 c p1\n337.14 439.25 2.02 c p1\n312.70 412.87 2.02 c
      p1\n256.11 346.72 2.02 c p1\n326.75 428.33 2.02 c p1\n287.31 384.39
      2.02 c p1\n285.03 381.18 2.02 c p1\n328.99 431.33 2.02 c p1\n311.28
      411.57 2.02 c p1\n273.41 367.21 2.02 c p1\n324.16 425.90 2.02 c
      p1\n358.02 460.89 2.02 c p1\n327.91 429.76 2.02 c p1\n308.15 408.44
      2.02 c p1\n371.43 473.21 2.02 c p1\n389.74 497.99 2.02 c p1\n308.40
      408.55 2.02 c p1\n340.87 442.71 2.02 c p1\n308.72 408.92 2.02 c
      p1\n332.44 434.48 2.02 c p1\n302.21 401.66 2.02 c p1\n363.28 465.97
      2.02 c p1\n301.51 401.27 2.02 c p1\n369.36 471.45 2.02 c p1\n349.37
      452.46 2.02 c p1\n330.27 432.22 2.02 c p1\n355.87 459.30 2.02 c
      p1\n356.92 460.07 2.02 c p1\n324.72 426.42 2.02 c p1\n308.48 408.59
      2.02 c p1\n307.75 407.48 2.02 c p1\n286.19 382.31 2.02 c p1\n289.90
      388.25 2.02 c p1\n314.03 414.03 2.02 c p1\n309.52 409.82 2.02 c
      p1\n277.38 372.03 2.02 c p1\n293.98 392.52 2.02 c p1\n327.08 428.65
      2.02 c p1\n305.36 404.97 2.02 c p1\n291.56 390.26 2.02 c p1\n320.12
      420.81 2.02 c p1\n274.23 368.44 2.02 c p1\n326.67 428.32 2.02 c
      p1\n352.65 456.38 2.02 c p1\n289.67 388.10 2.02 c p1\n301.34 401.11
      2.02 c p1\n315.12 415.30 2.02 c p1\n326.59 428.22 2.02 c p1\n419.13
      519.93 2.02 c p1\n309.76 410.29 2.02 c p1\n331.56 433.25 2.02 c
      p1\n316.45 416.56 2.02 c p1\n346.91 450.36 2.02 c p1\n293.05 391.44
      2.02 c p1\n305.19 404.90 2.02 c p1\n345.09 448.22 2.02 c p1\n298.90
      398.31 2.02 c p1\n330.95 432.92 2.02 c p1\n297.22 396.14 2.02 c
      p1\n358.98 461.95 2.02 c p1\n323.84 425.19 2.02 c p1\n297.79 396.54
      2.02 c p1\n265.80 356.67 2.02 c p1\n359.37 462.13 2.02 c p1\n289.33
      387.83 2.02 c p1\n325.37 427.02 2.02 c p1\n312.62 412.81 2.02 c
      p1\n265.49 356.54 2.02 c p1\n303.59 402.80 2.02 c p1\n299.36 398.81
      2.02 c p1\n319.02 419.39 2.02 c p1\n294.58 393.42 2.02 c p1\n316.76
      416.88 2.02 c p1\n315.20 415.31 2.02 c p1\n274.81 369.94 2.02 c
      p1\n315.67 415.58 2.02 c p1\n356.04 459.34 2.02 c p1\n372.17 474.42
      2.02 c p1\n302.82 402.11 2.02 c p1\n267.51 359.74 2.02 c p1\n308.88
      409.12 2.02 c p1\n284.10 380.14 2.02 c p1\n306.44 405.71 2.02 c
      p1\n304.52 404.00 2.02 c p1\n339.32 440.95 2.02 c p1\n365.55 467.98
      2.02 c p1\n325.77 427.46 2.02 c p1\n312.14 412.30 2.02 c p1\n282.85
      379.17 2.02 c p1\n242.57 330.24 2.02 c p1\n250.49 335.71 2.02 c
      p1\n360.39 463.46 2.02 c p1\n297.69 396.51 2.02 c p1\n317.77 417.98
      2.02 c p1\n303.67 402.86 2.02 c p1\n308.07 408.38 2.02 c p1\n356.57
      459.81 2.02 c p1\n299.54 399.00 2.02 c p1\n323.44 424.62 2.02 c
      p1\n235.57 322.16 2.02 c p1\n324.48 426.23 2.02 c p1\n354.21 457.63
      2.02 c p1\n348.70 451.78 2.02 c p1\n279.55 375.04 2.02 c p1\n355.70
      459.14 2.02 c p1\n299.00 398.36 2.02 c p1\n274.42 369.68 2.02 c
      p1\n304.61 404.04 2.02 c p1\n289.56 388.09 2.02 c p1\n332.00 433.94
      2.02 c p1\n307.10 406.67 2.02 c p1\n404.10 509.18 2.02 c p1\n377.49
      483.03 2.02 c p1\n342.48 444.64 2.02 c p1\n295.68 394.74 2.02 c
      p1\n317.07 417.05 2.02 c p1\n332.89 434.76 2.02 c p1\n347.41 450.89
      2.02 c p1\n302.39 401.84 2.02 c p1\n334.79 436.18 2.02 c p1\n319.73
      420.31 2.02 c p1\n329.75 431.86 2.02 c p1\n294.98 393.84 2.02 c
      p1\n350.05 453.59 2.02 c p1\n340.66 442.59 2.02 c p1\n346.29 449.83
      2.02 c p1\n348.31 451.59 2.02 c p1\n310.48 411.06 2.02 c p1\n374.62
      478.11 2.02 c p1\n326.18 427.83 2.02 c p1\n350.19 454.18 2.02 c
      p1\n303.93 403.53 2.02 c p1\n281.40 377.46 2.02 c p1\n338.22 439.87
      2.02 c p1\n309.68 410.26 2.02 c p1\n319.18 419.56 2.02 c p1\n325.12
      426.81 2.02 c p1\n320.98 421.68 2.02 c p1\n337.34 439.34 2.02 c
      p1\n347.66 451.23 2.02 c p1\n268.58 361.68 2.02 c p1\n322.09 422.78
      2.02 c p1\n336.47 438.55 2.02 c p1\n318.55 418.85 2.02 c p1\n328.66
      430.53 2.02 c p1\n297.41 396.39 2.02 c p1\n282.99 379.44 2.02 c
      p1\n337.92 439.78 2.02 c p1\n277.73 372.42 2.02 c p1\n307.18 406.70
      2.02 c p1\n341.93 443.86 2.02 c p1\n319.81 420.40 2.02 c p1\n378.57
      484.21 2.02 c p1\n333.96 435.34 2.02 c p1\n307.01 406.62 2.02 c
      p1\n352.20 455.73 2.02 c p1\n329.67 431.66 2.02 c p1\n275.39 370.35
      2.02 c p1\n336.38 438.43 2.02 c p1\n344.74 447.52 2.02 c p1\n335.72
      437.19 2.02 c p1\n294.38 392.92 2.02 c p1\n291.12 389.53 2.02 c
      p1\n386.51 495.62 2.02 c p1\n379.74 487.58 2.02 c p1\n258.54 350.39
      2.02 c p1\n261.04 353.48 2.02 c p1\n271.48 365.37 2.02 c p1\n303.25
      402.48 2.02 c p1\n384.71 492.76 2.02 c p1\n347.03 450.39 2.02 c
      p1\n326.34 427.99 2.02 c p1\n285.81 382.03 2.02 c p1\n305.11 404.89
      2.02 c p1\n272.79 366.75 2.02 c p1\n365.28 467.76 2.02 c p1\n298.26
      397.29 2.02 c p1\n254.46 345.24 2.02 c p1\n299.73 399.53 2.02 c
      p1\n294.18 392.66 2.02 c p1\n278.74 373.71 2.02 c p1\n343.48 446.17
      2.02 c p1\n324.24 425.91 2.02 c p1\n323.12 424.16 2.02 c p1\n324.32
      426.02 2.02 c p1\n340.24 442.37 2.02 c p1\n214.47 315.27 2.02 c
      p1\n272.36 366.49 2.02 c p1\n326.50 428.08 2.02 c p1\n308.23 408.45
      2.02 c p1\n334.15 435.55 2.02 c p1\n320.67 421.24 2.02 c p1\n343.93
      446.65 2.02 c p1\n277.90 372.57 2.02 c p1\n354.53 457.93 2.02 c
      p1\n296.46 395.17 2.02 c p1\n327.24 428.71 2.02 c p1\n376.97 481.15
      2.02 c p1\n311.35 411.59 2.02 c p1\n313.56 413.44 2.02 c p1\n336.76
      438.69 2.02 c p1\n321.69 422.38 2.02 c p1\n339.73 442.18 2.02 c
      p1\n280.64 376.46 2.02 c p1\n355.36 458.97 2.02 c p1\n312.30 412.63
      2.02 c p1\n295.28 394.13 2.02 c p1\n315.98 415.95 2.02 c p1\n304.18
      403.71 2.02 c p1\n289.78 388.21 2.02 c p1\n319.65 420.10 2.02 c
      p1\n302.47 401.87 2.02 c p1\n301.60 401.29 2.02 c p1\n305.03 404.80
      2.02 c p1\n316.22 416.25 2.02 c p1\n309.12 409.42 2.02 c p1\n298.54
      397.66 2.02 c p1\n224.51 315.42 2.02 c p1\n300.89 400.45 2.02 c
      p1\n283.69 379.91 2.02 c p1\n258.98 351.11 2.02 c p1\n305.69 405.11
      2.02 c p1\n398.03 506.91 2.02 c p1\n336.19 438.37 2.02 c p1\n278.57
      373.55 2.02 c p1\n268.84 361.75 2.02 c p1\n387.50 497.54 2.02 c
      p1\n355.53 459.08 2.02 c p1\n273.62 367.45 2.02 c p1\n351.90 455.58
      2.02 c p1\n270.08 364.34 2.02 c p1\n282.28 378.63 2.02 c p1\n318.09
      418.11 2.02 c p1\n332.80 434.71 2.02 c p1\n287.67 385.05 2.02 c
      p1\n317.93 418.05 2.02 c p1\n353.89 457.51 2.02 c p1\n289.44 388.05
      2.02 c p1\n261.80 353.92 2.02 c p1\n346.54 450.02 2.02 c p1\n364.51
      467.23 2.02 c p1\n288.86 387.13 2.02 c p1\n342.92 445.36 2.02 c
      p1\n287.43 384.46 2.02 c p1\n359.98 463.26 2.02 c p1\n332.97 434.76
      2.02 c p1\n273.82 368.04 2.02 c p1\n270.32 364.74 2.02 c p1\n270.55
      364.96 2.02 c p1\n294.08 392.53 2.02 c p1\n352.80 456.49 2.02 c
      p1\n299.45 398.82 2.02 c p1\n370.71 472.91 2.02 c p1\n313.64 413.48
      2.02 c p1\n339.02 440.65 2.02 c p1\n388.58 497.89 2.02 c p1\n328.83
      431.06 2.02 c p1\n282.14 378.57 2.02 c p1\n296.36 395.15 2.02 c
      p1\n331.30 433.05 2.02 c p1\n340.34 442.42 2.02 c p1\n271.70 365.41
      2.02 c p1\n319.41 419.90 2.02 c p1\n383.11 492.27 2.02 c p1\n295.97
      394.95 2.02 c p1\n329.16 431.45 2.02 c p1\n286.44 383.00 2.02 c
      p1\n268.05 360.76 2.02 c p1\n305.61 405.08 2.02 c p1\n293.87 392.23
      2.02 c p1\n375.99 480.63 2.02 c p1\n329.58 431.59 2.02 c p1\n263.91
      355.02 2.02 c p1\n322.72 423.40 2.02 c p1\n162.00 252.00 450.00 540.00
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n223.50 307.08
      m\n186.60 0 l\no\nnp\n223.50 307.08 m\n0 -5.40 l\no\nnp\n254.60 307.08
      m\n0 -5.40 l\no\nnp\n285.70 307.08 m\n0 -5.40 l\no\nnp\n316.80 307.08
      m\n0 -5.40 l\no\nnp\n347.90 307.08 m\n0 -5.40 l\no\nnp\n379.00 307.08
      m\n0 -5.40 l\no\nnp\n410.10 307.08 m\n0 -5.40 l\no\n/ps 11 def R 11
      s\n223.50 287.64 (-3) .5 0 0 t\n254.60 287.64 (-2) .5 0 0 t\n285.70
      287.64 (-1) .5 0 0 t\n316.80 287.64 (0) .5 0 0 t\n347.90 287.64 (1) .5
      0 0 t\n379.00 287.64 (2) .5 0 0 t\n410.10 287.64 (3) .5 0 0
      t\nnp\n206.28 315.99 m\n0 201.03 l\no\nnp\n206.28 315.99 m\n-5.40 0
      l\no\nnp\n206.28 349.49 m\n-5.40 0 l\no\nnp\n206.28 383.00 m\n-5.40 0
      l\no\nnp\n206.28 416.51 m\n-5.40 0 l\no\nnp\n206.28 450.01 m\n-5.40 0
      l\no\nnp\n206.28 483.52 m\n-5.40 0 l\no\nnp\n206.28 517.02 m\n-5.40 0
      l\no\n193.32 315.99 (-3) .5 0 90 t\n193.32 349.49 (-2) .5 0 90
      t\n193.32 383.00 (-1) .5 0 90 t\n193.32 416.51 (0) .5 0 90 t\n193.32
      450.01 (1) .5 0 90 t\n193.32 483.52 (2) .5 0 90 t\n193.32 517.02 (3) .5
      0 90 t\nnp\n206.28 307.08 m\n221.04 0 l\n0 221.04 l\n-221.04 0 l\n0
      -221.04 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 13 def B 13 s\n0 0 0
      rgb\n316.80 529.39 (Normal Q-Q Plot) .5 0 0 t\n/ps 11 def R 11
      s\n316.80 266.04 (Theoretical Quantiles) .5 0 0 t\n171.72 417.60
      (Sample Quantiles) .5 0 90 t\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      abline(0,1,col="red");v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n316.06 416.11 2.02 c
      p1\n336.09 437.70 2.02 c p1\n371.80 473.91 2.02 c p1\n261.43 353.85
      2.02 c p1\n340.55 442.44 2.02 c p1\n318.24 418.38 2.02 c p1\n316.53
      416.73 2.02 c p1\n301.86 401.39 2.02 c p1\n320.20 420.94 2.02 c
      p1\n313.87 413.71 2.02 c p1\n327.00 428.51 2.02 c p1\n323.68 424.87
      2.02 c p1\n290.01 388.46 2.02 c p1\n278.41 373.27 2.02 c p1\n298.72
      397.77 2.02 c p1\n370.37 471.99 2.02 c p1\n316.92 416.95 2.02 c
      p1\n285.68 381.98 2.02 c p1\n322.48 423.00 2.02 c p1\n340.97 442.79
      2.02 c p1\n304.02 403.57 2.02 c p1\n267.24 359.04 2.02 c p1\n347.54
      451.14 2.02 c p1\n340.76 442.64 2.02 c p1\n351.61 455.31 2.02 c
      p1\n322.32 422.85 2.02 c p1\n337.63 439.61 2.02 c p1\n330.61 432.40
      2.02 c p1\n306.27 405.62 2.02 c p1\n379.14 485.64 2.02 c p1\n317.38
      417.52 2.02 c p1\n292.63 391.26 2.02 c p1\n322.17 422.78 2.02 c
      p1\n311.04 411.40 2.02 c p1\n279.23 374.68 2.02 c p1\n337.24 439.27
      2.02 c p1\n307.91 407.78 2.02 c p1\n289.09 387.57 2.02 c p1\n330.87
      432.84 2.02 c p1\n338.82 440.33 2.02 c p1\n302.56 401.92 2.02 c
      p1\n310.32 410.99 2.02 c p1\n328.07 429.90 2.02 c p1\n319.10 419.39
      2.02 c p1\n346.41 449.89 2.02 c p1\n272.57 366.50 2.02 c p1\n319.57
      420.05 2.02 c p1\n291.67 390.32 2.02 c p1\n305.78 405.19 2.02 c
      p1\n332.09 434.00 2.02 c p1\n283.55 379.90 2.02 c p1\n317.15 417.24
      2.02 c p1\n366.09 468.68 2.02 c p1\n333.33 434.90 2.02 c p1\n293.15
      391.53 2.02 c p1\n352.35 455.84 2.02 c p1\n296.26 395.13 2.02 c
      p1\n304.35 403.90 2.02 c p1\n310.16 410.91 2.02 c p1\n312.93 413.16
      2.02 c p1\n313.01 413.17 2.02 c p1\n381.67 490.56 2.02 c p1\n318.95
      419.37 2.02 c p1\n279.87 375.45 2.02 c p1\n313.48 413.42 2.02 c
      p1\n326.26 427.88 2.02 c p1\n301.69 401.29 2.02 c p1\n310.64 411.14
      2.02 c p1\n280.34 376.05 2.02 c p1\n323.28 424.23 2.02 c p1\n327.66
      429.28 2.02 c p1\n342.15 444.33 2.02 c p1\n324.80 426.42 2.02 c
      p1\n310.08 410.64 2.02 c p1\n310.24 410.95 2.02 c p1\n269.83 364.11
      2.02 c p1\n347.28 450.89 2.02 c p1\n291.01 389.48 2.02 c p1\n343.59
      446.23 2.02 c p1\n335.06 436.56 2.02 c p1\n327.33 428.76 2.02 c
      p1\n328.74 430.66 2.02 c p1\n263.58 354.96 2.02 c p1\n308.96 409.30
      2.02 c p1\n314.97 415.19 2.02 c p1\n302.90 402.28 2.02 c p1\n299.64
      399.09 2.02 c p1\n362.12 464.91 2.02 c p1\n295.38 394.58 2.02 c
      p1\n251.93 339.86 2.02 c p1\n361.68 464.54 2.02 c p1\n294.78 393.57
      2.02 c p1\n354.05 457.53 2.02 c p1\n345.21 448.42 2.02 c p1\n305.94
      405.43 2.02 c p1\n275.76 370.67 2.02 c p1\n339.83 442.22 2.02 c
      p1\n300.98 400.56 2.02 c p1\n339.22 440.85 2.02 c p1\n306.77 406.09
      2.02 c p1\n328.24 430.39 2.02 c p1\n282.57 379.14 2.02 c p1\n292.94
      391.42 2.02 c p1\n314.58 414.76 2.02 c p1\n347.79 451.25 2.02 c
      p1\n283.13 379.50 2.02 c p1\n332.18 434.04 2.02 c p1\n284.37 380.36
      2.02 c p1\n311.43 411.60 2.02 c p1\n286.82 383.83 2.02 c p1\n310.80
      411.25 2.02 c p1\n237.72 324.46 2.02 c p1\n325.69 427.31 2.02 c
      p1\n311.83 411.80 2.02 c p1\n330.18 432.18 2.02 c p1\n300.63 400.37
      2.02 c p1\n343.70 446.34 2.02 c p1\n331.13 433.02 2.02 c p1\n338.02
      439.79 2.02 c p1\n291.45 390.08 2.02 c p1\n353.58 457.48 2.02 c
      p1\n364.26 466.54 2.02 c p1\n318.71 418.90 2.02 c p1\n352.05 455.62
      2.02 c p1\n316.14 416.24 2.02 c p1\n310.88 411.29 2.02 c p1\n335.16
      436.63 2.02 c p1\n323.76 425.09 2.02 c p1\n348.44 451.62 2.02 c
      p1\n291.99 390.59 2.02 c p1\n266.39 357.77 2.02 c p1\n329.50 431.55
      2.02 c p1\n327.74 429.49 2.02 c p1\n348.97 452.10 2.02 c p1\n290.57
      388.94 2.02 c p1\n325.93 427.53 2.02 c p1\n264.88 355.90 2.02 c
      p1\n350.33 454.22 2.02 c p1\n269.34 362.60 2.02 c p1\n288.27 386.11
      2.02 c p1\n341.50 443.13 2.02 c p1\n294.48 393.21 2.02 c p1\n334.70
      436.06 2.02 c p1\n360.19 463.43 2.02 c p1\n287.80 385.10 2.02 c
      p1\n297.03 395.75 2.02 c p1\n249.72 335.00 2.02 c p1\n257.12 347.46
      2.02 c p1\n328.16 430.38 2.02 c p1\n302.99 402.38 2.02 c p1\n332.62
      434.58 2.02 c p1\n303.76 403.05 2.02 c p1\n284.50 380.48 2.02 c
      p1\n294.88 393.69 2.02 c p1\n335.81 437.49 2.02 c p1\n328.32 430.40
      2.02 c p1\n339.52 441.39 2.02 c p1\n300.54 400.34 2.02 c p1\n309.04
      409.38 2.02 c p1\n342.37 444.54 2.02 c p1\n324.40 426.03 2.02 c
      p1\n364.01 466.42 2.02 c p1\n367.21 469.40 2.02 c p1\n371.07 473.14
      2.02 c p1\n309.20 409.46 2.02 c p1\n358.79 461.89 2.02 c p1\n256.63
      346.73 2.02 c p1\n331.04 432.97 2.02 c p1\n302.73 402.03 2.02 c
      p1\n315.28 415.39 2.02 c p1\n346.78 450.18 2.02 c p1\n340.14 442.35
      2.02 c p1\n380.35 488.39 2.02 c p1\n344.04 446.70 2.02 c p1\n296.65
      395.43 2.02 c p1\n266.09 357.72 2.02 c p1\n281.25 377.24 2.02 c
      p1\n267.78 360.62 2.02 c p1\n281.70 378.38 2.02 c p1\n336.28 438.39
      2.02 c p1\n290.46 388.83 2.02 c p1\n343.14 445.40 2.02 c p1\n333.60
      435.17 2.02 c p1\n293.36 391.73 2.02 c p1\n274.03 368.40 2.02 c
      p1\n264.24 355.14 2.02 c p1\n283.96 380.07 2.02 c p1\n363.77 466.42
      2.02 c p1\n357.28 460.42 2.02 c p1\n323.60 424.81 2.02 c p1\n383.88
      492.51 2.02 c p1\n346.17 449.23 2.02 c p1\n314.89 415.13 2.02 c
      p1\n376.48 480.99 2.02 c p1\n342.70 444.81 2.02 c p1\n326.10 427.74
      2.02 c p1\n299.18 398.71 2.02 c p1\n271.02 365.24 2.02 c p1\n310.96
      411.31 2.02 c p1\n321.14 421.70 2.02 c p1\n311.75 411.78 2.02 c
      p1\n344.39 446.83 2.02 c p1\n302.12 401.61 2.02 c p1\n297.88 396.85
      2.02 c p1\n320.83 421.58 2.02 c p1\n331.74 433.54 2.02 c p1\n298.63
      397.67 2.02 c p1\n303.08 402.40 2.02 c p1\n341.08 442.85 2.02 c
      p1\n336.86 439.03 2.02 c p1\n293.46 391.73 2.02 c p1\n307.34 406.96
      2.02 c p1\n335.34 436.71 2.02 c p1\n321.22 421.79 2.02 c p1\n322.64
      423.37 2.02 c p1\n362.35 465.06 2.02 c p1\n276.86 371.48 2.02 c
      p1\n327.57 429.20 2.02 c p1\n296.17 395.06 2.02 c p1\n357.84 460.70
      2.02 c p1\n345.93 448.92 2.02 c p1\n328.49 430.41 2.02 c p1\n336.00
      437.69 2.02 c p1\n283.82 380.03 2.02 c p1\n295.48 394.65 2.02 c
      p1\n299.09 398.50 2.02 c p1\n323.92 425.29 2.02 c p1\n330.35 432.22
      2.02 c p1\n330.44 432.31 2.02 c p1\n321.06 421.69 2.02 c p1\n335.62
      437.04 2.02 c p1\n315.90 415.81 2.02 c p1\n297.98 396.85 2.02 c
      p1\n300.00 399.80 2.02 c p1\n301.42 401.19 2.02 c p1\n357.10 460.13
      2.02 c p1\n349.50 452.48 2.02 c p1\n297.51 396.41 2.02 c p1\n307.50
      407.01 2.02 c p1\n282.42 378.75 2.02 c p1\n326.83 428.34 2.02 c
      p1\n317.23 417.50 2.02 c p1\n288.15 385.93 2.02 c p1\n324.08 425.89
      2.02 c p1\n296.84 395.62 2.02 c p1\n288.63 386.65 2.02 c p1\n301.16
      400.91 2.02 c p1\n329.33 431.51 2.02 c p1\n375.06 478.53 2.02 c
      p1\n278.90 374.20 2.02 c p1\n296.94 395.72 2.02 c p1\n334.06 435.44
      2.02 c p1\n298.16 397.23 2.02 c p1\n327.41 428.83 2.02 c p1\n300.27
      399.94 2.02 c p1\n350.47 454.43 2.02 c p1\n307.99 407.87 2.02 c
      p1\n305.53 405.06 2.02 c p1\n280.80 376.53 2.02 c p1\n284.63 380.85
      2.02 c p1\n339.42 441.03 2.02 c p1\n262.53 354.18 2.02 c p1\n288.51
      386.36 2.02 c p1\n310.72 411.17 2.02 c p1\n292.20 390.73 2.02 c
      p1\n322.96 424.03 2.02 c p1\n380.99 489.71 2.02 c p1\n339.12 440.65
      2.02 c p1\n332.53 434.58 2.02 c p1\n271.92 366.37 2.02 c p1\n278.24
      373.14 2.02 c p1\n316.37 416.56 2.02 c p1\n361.24 464.28 2.02 c
      p1\n269.09 362.54 2.02 c p1\n301.95 401.42 2.02 c p1\n368.41 470.78
      2.02 c p1\n290.12 388.49 2.02 c p1\n331.21 433.03 2.02 c p1\n281.55
      377.68 2.02 c p1\n276.13 370.94 2.02 c p1\n262.17 353.97 2.02 c
      p1\n260.65 352.66 2.02 c p1\n308.64 408.72 2.02 c p1\n300.18 399.90
      2.02 c p1\n317.85 418.05 2.02 c p1\n295.58 394.69 2.02 c p1\n292.42
      390.93 2.02 c p1\n253.25 342.81 2.02 c p1\n359.57 462.40 2.02 c
      p1\n342.59 444.77 2.02 c p1\n378.02 484.07 2.02 c p1\n306.52 405.75
      2.02 c p1\n321.30 421.84 2.02 c p1\n280.49 376.38 2.02 c p1\n356.74
      459.99 2.02 c p1\n299.82 399.68 2.02 c p1\n319.96 420.66 2.02 c
      p1\n318.32 418.52 2.02 c p1\n321.53 421.95 2.02 c p1\n353.42 457.23
      2.02 c p1\n350.61 454.48 2.02 c p1\n299.27 398.71 2.02 c p1\n286.57
      383.39 2.02 c p1\n300.80 400.41 2.02 c p1\n302.04 401.45 2.02 c
      p1\n344.85 447.80 2.02 c p1\n303.42 402.77 2.02 c p1\n280.18 375.81
      2.02 c p1\n339.93 442.26 2.02 c p1\n347.16 450.76 2.02 c p1\n343.82
      446.45 2.02 c p1\n309.44 409.82 2.02 c p1\n266.67 357.86 2.02 c
      p1\n374.19 477.93 2.02 c p1\n269.59 363.21 2.02 c p1\n329.08 431.40
      2.02 c p1\n293.67 391.95 2.02 c p1\n369.04 471.22 2.02 c p1\n348.57
      451.62 2.02 c p1\n327.82 429.59 2.02 c p1\n255.03 345.73 2.02 c
      p1\n327.49 428.89 2.02 c p1\n320.75 421.51 2.02 c p1\n302.30 401.75
      2.02 c p1\n337.73 439.72 2.02 c p1\n305.86 405.28 2.02 c p1\n282.71
      379.15 2.02 c p1\n345.45 448.57 2.02 c p1\n338.62 440.21 2.02 c
      p1\n338.52 440.18 2.02 c p1\n329.42 431.54 2.02 c p1\n346.66 450.10
      2.02 c p1\n271.25 365.31 2.02 c p1\n285.94 382.16 2.02 c p1\n324.88
      426.55 2.02 c p1\n304.10 403.58 2.02 c p1\n284.23 380.23 2.02 c
      p1\n248.02 334.59 2.02 c p1\n352.50 456.20 2.02 c p1\n317.31 417.50
      2.02 c p1\n287.19 384.35 2.02 c p1\n351.76 455.57 2.02 c p1\n358.40
      461.33 2.02 c p1\n320.04 420.75 2.02 c p1\n288.04 385.54 2.02 c
      p1\n315.75 415.64 2.02 c p1\n311.12 411.43 2.02 c p1\n229.50 316.66
      2.02 c p1\n320.35 421.00 2.02 c p1\n291.88 390.50 2.02 c p1\n324.96
      426.67 2.02 c p1\n273.00 366.82 2.02 c p1\n368.72 470.89 2.02 c
      p1\n317.54 417.76 2.02 c p1\n325.61 427.28 2.02 c p1\n325.28 426.97
      2.02 c p1\n306.93 406.51 2.02 c p1\n316.99 417.00 2.02 c p1\n279.07
      374.66 2.02 c p1\n284.77 380.87 2.02 c p1\n308.56 408.59 2.02 c
      p1\n394.04 501.88 2.02 c p1\n306.11 405.55 2.02 c p1\n300.71 400.38
      2.02 c p1\n290.35 388.74 2.02 c p1\n330.01 432.06 2.02 c p1\n359.18
      461.96 2.02 c p1\n334.33 435.69 2.02 c p1\n287.92 385.10 2.02 c
      p1\n338.72 440.32 2.02 c p1\n357.65 460.54 2.02 c p1\n349.64 453.01
      2.02 c p1\n331.83 433.78 2.02 c p1\n369.69 471.61 2.02 c p1\n270.79
      365.11 2.02 c p1\n313.79 413.64 2.02 c p1\n312.07 411.87 2.02 c
      p1\n248.89 334.76 2.02 c p1\n343.36 446.13 2.02 c p1\n335.44 436.71
      2.02 c p1\n325.45 427.21 2.02 c p1\n290.90 389.41 2.02 c p1\n341.61
      443.24 2.02 c p1\n338.42 440.16 2.02 c p1\n298.07 396.89 2.02 c
      p1\n280.02 375.57 2.02 c p1\n327.16 428.70 2.02 c p1\n341.29 443.02
      2.02 c p1\n367.80 470.12 2.02 c p1\n303.33 402.73 2.02 c p1\n286.06
      382.23 2.02 c p1\n315.05 415.25 2.02 c p1\n335.53 436.76 2.02 c
      p1\n300.36 399.94 2.02 c p1\n344.62 447.40 2.02 c p1\n338.92 440.36
      2.02 c p1\n349.23 452.40 2.02 c p1\n306.60 405.88 2.02 c p1\n268.32
      360.90 2.02 c p1\n298.44 397.46 2.02 c p1\n292.73 391.28 2.02 c
      p1\n372.56 474.57 2.02 c p1\n334.88 436.20 2.02 c p1\n323.20 424.19
      2.02 c p1\n320.28 421.00 2.02 c p1\n324.56 426.23 2.02 c p1\n364.76
      467.56 2.02 c p1\n251.23 337.14 2.02 c p1\n323.52 424.68 2.02 c
      p1\n334.60 435.90 2.02 c p1\n259.84 352.06 2.02 c p1\n326.01 427.68
      2.02 c p1\n321.93 422.73 2.02 c p1\n315.59 415.57 2.02 c p1\n336.66
      438.69 2.02 c p1\n297.32 396.15 2.02 c p1\n298.35 397.39 2.02 c
      p1\n334.24 435.65 2.02 c p1\n299.91 399.75 2.02 c p1\n309.28 409.46
      2.02 c p1\n345.80 448.75 2.02 c p1\n355.19 458.89 2.02 c p1\n309.60
      409.84 2.02 c p1\n343.03 445.40 2.02 c p1\n340.03 442.31 2.02 c
      p1\n313.32 413.35 2.02 c p1\n360.60 464.02 2.02 c p1\n338.32 439.96
      2.02 c p1\n303.16 402.46 2.02 c p1\n345.68 448.66 2.02 c p1\n351.03
      455.07 2.02 c p1\n333.87 435.30 2.02 c p1\n300.09 399.86 2.02 c
      p1\n318.40 418.59 2.02 c p1\n350.89 455.03 2.02 c p1\n321.77 422.41
      2.02 c p1\n354.70 458.67 2.02 c p1\n373.35 476.85 2.02 c p1\n365.02
      467.68 2.02 c p1\n245.02 332.06 2.02 c p1\n354.37 457.86 2.02 c
      p1\n333.24 434.84 2.02 c p1\n281.84 378.46 2.02 c p1\n308.80 408.92
      2.02 c p1\n306.69 405.97 2.02 c p1\n315.51 415.48 2.02 c p1\n322.25
      422.85 2.02 c p1\n290.79 389.33 2.02 c p1\n292.31 390.73 2.02 c
      p1\n243.86 331.72 2.02 c p1\n311.67 411.75 2.02 c p1\n322.80 423.63
      2.02 c p1\n301.07 400.81 2.02 c p1\n372.95 474.94 2.02 c p1\n348.05
      451.50 2.02 c p1\n313.17 413.23 2.02 c p1\n392.45 498.78 2.02 c
      p1\n341.83 443.67 2.02 c p1\n352.96 456.73 2.02 c p1\n375.52 479.38
      2.02 c p1\n344.16 446.80 2.02 c p1\n286.32 382.61 2.02 c p1\n342.04
      444.01 2.02 c p1\n311.20 411.51 2.02 c p1\n307.26 406.77 2.02 c
      p1\n308.32 408.51 2.02 c p1\n325.85 427.52 2.02 c p1\n337.83 439.77
      2.02 c p1\n333.69 435.27 2.02 c p1\n382.37 490.70 2.02 c p1\n275.95
      370.71 2.02 c p1\n278.07 372.93 2.02 c p1\n311.59 411.71 2.02 c
      p1\n321.46 421.91 2.02 c p1\n334.51 435.79 2.02 c p1\n285.29 381.47
      2.02 c p1\n262.89 354.40 2.02 c p1\n276.32 370.96 2.02 c p1\n333.51
      435.11 2.02 c p1\n306.36 405.63 2.02 c p1\n255.58 346.25 2.02 c
      p1\n366.36 468.81 2.02 c p1\n358.21 461.01 2.02 c p1\n315.83 415.77
      2.02 c p1\n310.00 410.54 2.02 c p1\n331.91 433.88 2.02 c p1\n320.51
      421.15 2.02 c p1\n321.85 422.52 2.02 c p1\n363.05 465.70 2.02 c
      p1\n363.52 466.12 2.02 c p1\n314.50 414.72 2.02 c p1\n366.93 469.19
      2.02 c p1\n370.02 471.88 2.02 c p1\n312.77 412.90 2.02 c p1\n325.53
      427.23 2.02 c p1\n345.33 448.57 2.02 c p1\n257.61 349.19 2.02 c
      p1\n385.58 494.44 2.02 c p1\n275.58 370.54 2.02 c p1\n312.85 413.02
      2.02 c p1\n314.65 414.92 2.02 c p1\n345.56 448.58 2.02 c p1\n232.93
      319.10 2.02 c p1\n291.77 390.44 2.02 c p1\n316.61 416.79 2.02 c
      p1\n288.98 387.16 2.02 c p1\n317.46 417.62 2.02 c p1\n296.74 395.53
      2.02 c p1\n283.27 379.54 2.02 c p1\n323.04 424.04 2.02 c p1\n361.90
      464.80 2.02 c p1\n260.25 352.36 2.02 c p1\n314.34 414.52 2.02 c
      p1\n409.09 516.99 2.02 c p1\n395.88 505.48 2.02 c p1\n294.68 393.47
      2.02 c p1\n307.67 407.25 2.02 c p1\n293.26 391.65 2.02 c p1\n314.19
      414.19 2.02 c p1\n304.27 403.81 2.02 c p1\n313.72 413.62 2.02 c
      p1\n318.48 418.61 2.02 c p1\n312.38 412.70 2.02 c p1\n339.62 441.60
      2.02 c p1\n309.36 409.63 2.02 c p1\n362.58 465.58 2.02 c p1\n330.52
      432.34 2.02 c p1\n281.99 378.55 2.02 c p1\n277.03 371.75 2.02 c
      p1\n358.59 461.55 2.02 c p1\n307.59 407.13 2.02 c p1\n351.32 455.22
      2.02 c p1\n258.08 350.29 2.02 c p1\n275.20 370.26 2.02 c p1\n309.84
      410.29 2.02 c p1\n314.11 414.04 2.02 c p1\n297.13 396.05 2.02 c
      p1\n328.41 430.41 2.02 c p1\n296.55 395.40 2.02 c p1\n288.75 387.00
      2.02 c p1\n357.47 460.44 2.02 c p1\n275.01 370.14 2.02 c p1\n291.34
      390.01 2.02 c p1\n322.56 423.04 2.02 c p1\n336.57 438.60 2.02 c
      p1\n332.26 434.11 2.02 c p1\n351.18 455.10 2.02 c p1\n318.87 419.21
      2.02 c p1\n332.71 434.67 2.02 c p1\n315.36 415.39 2.02 c p1\n356.39
      459.79 2.02 c p1\n302.65 401.97 2.02 c p1\n285.42 381.68 2.02 c
      p1\n319.26 419.71 2.02 c p1\n332.35 434.35 2.02 c p1\n316.68 416.87
      2.02 c p1\n331.48 433.11 2.02 c p1\n310.40 411.00 2.02 c p1\n290.68
      389.30 2.02 c p1\n327.99 429.78 2.02 c p1\n295.18 394.11 2.02 c
      p1\n331.39 433.06 2.02 c p1\n304.69 404.12 2.02 c p1\n285.16 381.37
      2.02 c p1\n353.11 456.84 2.02 c p1\n343.25 445.52 2.02 c p1\n324.00
      425.40 2.02 c p1\n311.91 411.80 2.02 c p1\n265.19 356.50 2.02 c
      p1\n333.78 435.27 2.02 c p1\n325.04 426.73 2.02 c p1\n349.91 453.18
      2.02 c p1\n340.45 442.42 2.02 c p1\n329.84 431.98 2.02 c p1\n346.05
      449.13 2.02 c p1\n336.95 439.05 2.02 c p1\n279.39 374.81 2.02 c
      p1\n291.23 389.61 2.02 c p1\n334.97 436.24 2.02 c p1\n318.63 418.89
      2.02 c p1\n297.60 396.48 2.02 c p1\n252.61 341.04 2.02 c p1\n349.78
      453.14 2.02 c p1\n328.91 431.29 2.02 c p1\n264.56 355.34 2.02 c
      p1\n305.44 405.05 2.02 c p1\n342.81 445.19 2.02 c p1\n325.20 426.94
      2.02 c p1\n347.92 451.35 2.02 c p1\n344.51 447.32 2.02 c p1\n276.50
      371.02 2.02 c p1\n259.41 351.16 2.02 c p1\n362.81 465.68 2.02 c
      p1\n348.18 451.59 2.02 c p1\n319.88 420.40 2.02 c p1\n324.64 426.26
      2.02 c p1\n292.10 390.67 2.02 c p1\n330.10 432.08 2.02 c p1\n356.22
      459.40 2.02 c p1\n253.86 343.06 2.02 c p1\n305.28 404.95 2.02 c
      p1\n322.88 423.97 2.02 c p1\n272.14 366.46 2.02 c p1\n341.40 443.11
      2.02 c p1\n306.19 405.58 2.02 c p1\n355.03 458.87 2.02 c p1\n365.82
      468.15 2.02 c p1\n277.21 371.78 2.02 c p1\n350.75 454.86 2.02 c
      p1\n304.77 404.23 2.02 c p1\n306.85 406.41 2.02 c p1\n319.34 419.81
      2.02 c p1\n348.83 452.04 2.02 c p1\n310.56 411.12 2.02 c p1\n281.10
      376.74 2.02 c p1\n318.79 418.97 2.02 c p1\n320.43 421.03 2.02 c
      p1\n314.42 414.58 2.02 c p1\n277.56 372.33 2.02 c p1\n313.25 413.29
      2.02 c p1\n361.46 464.32 2.02 c p1\n337.53 439.54 2.02 c p1\n279.71
      375.07 2.02 c p1\n314.81 415.02 2.02 c p1\n321.61 422.35 2.02 c
      p1\n311.99 411.83 2.02 c p1\n313.95 413.82 2.02 c p1\n303.50 402.80
      2.02 c p1\n326.91 428.44 2.02 c p1\n287.06 384.13 2.02 c p1\n276.68
      371.22 2.02 c p1\n304.94 404.31 2.02 c p1\n353.73 457.50 2.02 c
      p1\n280.95 376.55 2.02 c p1\n354.86 458.79 2.02 c p1\n266.96 358.89
      2.02 c p1\n391.03 498.55 2.02 c p1\n335.91 437.54 2.02 c p1\n344.97
      447.84 2.02 c p1\n344.27 446.82 2.02 c p1\n333.15 434.83 2.02 c
      p1\n312.22 412.60 2.02 c p1\n320.59 421.19 2.02 c p1\n301.77 401.34
      2.02 c p1\n301.25 401.08 2.02 c p1\n293.57 391.83 2.02 c p1\n353.26
      457.08 2.02 c p1\n289.21 387.74 2.02 c p1\n288.39 386.35 2.02 c
      p1\n303.85 403.39 2.02 c p1\n293.77 392.11 2.02 c p1\n368.11 470.47
      2.02 c p1\n304.86 404.27 2.02 c p1\n342.26 444.39 2.02 c p1\n313.09
      413.17 2.02 c p1\n331.65 433.35 2.02 c p1\n274.62 369.83 2.02 c
      p1\n246.10 332.10 2.02 c p1\n273.21 367.05 2.02 c p1\n337.05 439.13
      2.02 c p1\n314.73 414.98 2.02 c p1\n287.55 384.67 2.02 c p1\n294.28
      392.80 2.02 c p1\n323.36 424.32 2.02 c p1\n317.62 417.84 2.02 c
      p1\n318.16 418.16 2.02 c p1\n330.78 432.77 2.02 c p1\n335.25 436.65
      2.02 c p1\n321.38 421.90 2.02 c p1\n338.12 439.86 2.02 c p1\n328.57
      430.48 2.02 c p1\n360.81 464.08 2.02 c p1\n292.52 391.03 2.02 c
      p1\n307.42 407.00 2.02 c p1\n333.06 434.81 2.02 c p1\n300.45 400.03
      2.02 c p1\n263.23 354.93 2.02 c p1\n315.44 415.44 2.02 c p1\n341.18
      443.00 2.02 c p1\n309.92 410.41 2.02 c p1\n359.78 463.04 2.02 c
      p1\n330.70 432.43 2.02 c p1\n314.26 414.21 2.02 c p1\n312.46 412.71
      2.02 c p1\n304.44 403.93 2.02 c p1\n329.93 432.06 2.02 c p1\n317.70
      417.88 2.02 c p1\n290.24 388.61 2.02 c p1\n292.84 391.29 2.02 c
      p1\n334.42 435.75 2.02 c p1\n295.77 394.89 2.02 c p1\n286.94 383.95
      2.02 c p1\n239.56 325.82 2.02 c p1\n329.25 431.45 2.02 c p1\n361.03
      464.12 2.02 c p1\n319.49 420.04 2.02 c p1\n295.87 394.92 2.02 c
      p1\n341.72 443.28 2.02 c p1\n298.81 398.11 2.02 c p1\n312.54 412.79
      2.02 c p1\n373.76 477.08 2.02 c p1\n326.42 428.04 2.02 c p1\n296.07
      395.04 2.02 c p1\n333.42 434.97 2.02 c p1\n284.90 381.04 2.02 c
      p1\n285.55 381.72 2.02 c p1\n337.43 439.52 2.02 c p1\n286.69 383.64
      2.02 c p1\n322.01 422.76 2.02 c p1\n311.51 411.66 2.02 c p1\n366.64
      469.02 2.02 c p1\n241.15 326.90 2.02 c p1\n306.03 405.46 2.02 c
      p1\n283.41 379.77 2.02 c p1\n367.51 469.49 2.02 c p1\n316.29 416.47
      2.02 c p1\n247.09 332.55 2.02 c p1\n316.84 416.91 2.02 c p1\n400.67
      508.01 2.02 c p1\n351.46 455.24 2.02 c p1\n322.40 422.92 2.02 c
      p1\n295.08 394.08 2.02 c p1\n320.90 421.59 2.02 c p1\n307.83 407.59
      2.02 c p1\n313.40 413.40 2.02 c p1\n349.10 452.18 2.02 c p1\n318.01
      418.09 2.02 c p1\n337.14 439.25 2.02 c p1\n312.70 412.87 2.02 c
      p1\n256.11 346.72 2.02 c p1\n326.75 428.33 2.02 c p1\n287.31 384.39
      2.02 c p1\n285.03 381.18 2.02 c p1\n328.99 431.33 2.02 c p1\n311.28
      411.57 2.02 c p1\n273.41 367.21 2.02 c p1\n324.16 425.90 2.02 c
      p1\n358.02 460.89 2.02 c p1\n327.91 429.76 2.02 c p1\n308.15 408.44
      2.02 c p1\n371.43 473.21 2.02 c p1\n389.74 497.99 2.02 c p1\n308.40
      408.55 2.02 c p1\n340.87 442.71 2.02 c p1\n308.72 408.92 2.02 c
      p1\n332.44 434.48 2.02 c p1\n302.21 401.66 2.02 c p1\n363.28 465.97
      2.02 c p1\n301.51 401.27 2.02 c p1\n369.36 471.45 2.02 c p1\n349.37
      452.46 2.02 c p1\n330.27 432.22 2.02 c p1\n355.87 459.30 2.02 c
      p1\n356.92 460.07 2.02 c p1\n324.72 426.42 2.02 c p1\n308.48 408.59
      2.02 c p1\n307.75 407.48 2.02 c p1\n286.19 382.31 2.02 c p1\n289.90
      388.25 2.02 c p1\n314.03 414.03 2.02 c p1\n309.52 409.82 2.02 c
      p1\n277.38 372.03 2.02 c p1\n293.98 392.52 2.02 c p1\n327.08 428.65
      2.02 c p1\n305.36 404.97 2.02 c p1\n291.56 390.26 2.02 c p1\n320.12
      420.81 2.02 c p1\n274.23 368.44 2.02 c p1\n326.67 428.32 2.02 c
      p1\n352.65 456.38 2.02 c p1\n289.67 388.10 2.02 c p1\n301.34 401.11
      2.02 c p1\n315.12 415.30 2.02 c p1\n326.59 428.22 2.02 c p1\n419.13
      519.93 2.02 c p1\n309.76 410.29 2.02 c p1\n331.56 433.25 2.02 c
      p1\n316.45 416.56 2.02 c p1\n346.91 450.36 2.02 c p1\n293.05 391.44
      2.02 c p1\n305.19 404.90 2.02 c p1\n345.09 448.22 2.02 c p1\n298.90
      398.31 2.02 c p1\n330.95 432.92 2.02 c p1\n297.22 396.14 2.02 c
      p1\n358.98 461.95 2.02 c p1\n323.84 425.19 2.02 c p1\n297.79 396.54
      2.02 c p1\n265.80 356.67 2.02 c p1\n359.37 462.13 2.02 c p1\n289.33
      387.83 2.02 c p1\n325.37 427.02 2.02 c p1\n312.62 412.81 2.02 c
      p1\n265.49 356.54 2.02 c p1\n303.59 402.80 2.02 c p1\n299.36 398.81
      2.02 c p1\n319.02 419.39 2.02 c p1\n294.58 393.42 2.02 c p1\n316.76
      416.88 2.02 c p1\n315.20 415.31 2.02 c p1\n274.81 369.94 2.02 c
      p1\n315.67 415.58 2.02 c p1\n356.04 459.34 2.02 c p1\n372.17 474.42
      2.02 c p1\n302.82 402.11 2.02 c p1\n267.51 359.74 2.02 c p1\n308.88
      409.12 2.02 c p1\n284.10 380.14 2.02 c p1\n306.44 405.71 2.02 c
      p1\n304.52 404.00 2.02 c p1\n339.32 440.95 2.02 c p1\n365.55 467.98
      2.02 c p1\n325.77 427.46 2.02 c p1\n312.14 412.30 2.02 c p1\n282.85
      379.17 2.02 c p1\n242.57 330.24 2.02 c p1\n250.49 335.71 2.02 c
      p1\n360.39 463.46 2.02 c p1\n297.69 396.51 2.02 c p1\n317.77 417.98
      2.02 c p1\n303.67 402.86 2.02 c p1\n308.07 408.38 2.02 c p1\n356.57
      459.81 2.02 c p1\n299.54 399.00 2.02 c p1\n323.44 424.62 2.02 c
      p1\n235.57 322.16 2.02 c p1\n324.48 426.23 2.02 c p1\n354.21 457.63
      2.02 c p1\n348.70 451.78 2.02 c p1\n279.55 375.04 2.02 c p1\n355.70
      459.14 2.02 c p1\n299.00 398.36 2.02 c p1\n274.42 369.68 2.02 c
      p1\n304.61 404.04 2.02 c p1\n289.56 388.09 2.02 c p1\n332.00 433.94
      2.02 c p1\n307.10 406.67 2.02 c p1\n404.10 509.18 2.02 c p1\n377.49
      483.03 2.02 c p1\n342.48 444.64 2.02 c p1\n295.68 394.74 2.02 c
      p1\n317.07 417.05 2.02 c p1\n332.89 434.76 2.02 c p1\n347.41 450.89
      2.02 c p1\n302.39 401.84 2.02 c p1\n334.79 436.18 2.02 c p1\n319.73
      420.31 2.02 c p1\n329.75 431.86 2.02 c p1\n294.98 393.84 2.02 c
      p1\n350.05 453.59 2.02 c p1\n340.66 442.59 2.02 c p1\n346.29 449.83
      2.02 c p1\n348.31 451.59 2.02 c p1\n310.48 411.06 2.02 c p1\n374.62
      478.11 2.02 c p1\n326.18 427.83 2.02 c p1\n350.19 454.18 2.02 c
      p1\n303.93 403.53 2.02 c p1\n281.40 377.46 2.02 c p1\n338.22 439.87
      2.02 c p1\n309.68 410.26 2.02 c p1\n319.18 419.56 2.02 c p1\n325.12
      426.81 2.02 c p1\n320.98 421.68 2.02 c p1\n337.34 439.34 2.02 c
      p1\n347.66 451.23 2.02 c p1\n268.58 361.68 2.02 c p1\n322.09 422.78
      2.02 c p1\n336.47 438.55 2.02 c p1\n318.55 418.85 2.02 c p1\n328.66
      430.53 2.02 c p1\n297.41 396.39 2.02 c p1\n282.99 379.44 2.02 c
      p1\n337.92 439.78 2.02 c p1\n277.73 372.42 2.02 c p1\n307.18 406.70
      2.02 c p1\n341.93 443.86 2.02 c p1\n319.81 420.40 2.02 c p1\n378.57
      484.21 2.02 c p1\n333.96 435.34 2.02 c p1\n307.01 406.62 2.02 c
      p1\n352.20 455.73 2.02 c p1\n329.67 431.66 2.02 c p1\n275.39 370.35
      2.02 c p1\n336.38 438.43 2.02 c p1\n344.74 447.52 2.02 c p1\n335.72
      437.19 2.02 c p1\n294.38 392.92 2.02 c p1\n291.12 389.53 2.02 c
      p1\n386.51 495.62 2.02 c p1\n379.74 487.58 2.02 c p1\n258.54 350.39
      2.02 c p1\n261.04 353.48 2.02 c p1\n271.48 365.37 2.02 c p1\n303.25
      402.48 2.02 c p1\n384.71 492.76 2.02 c p1\n347.03 450.39 2.02 c
      p1\n326.34 427.99 2.02 c p1\n285.81 382.03 2.02 c p1\n305.11 404.89
      2.02 c p1\n272.79 366.75 2.02 c p1\n365.28 467.76 2.02 c p1\n298.26
      397.29 2.02 c p1\n254.46 345.24 2.02 c p1\n299.73 399.53 2.02 c
      p1\n294.18 392.66 2.02 c p1\n278.74 373.71 2.02 c p1\n343.48 446.17
      2.02 c p1\n324.24 425.91 2.02 c p1\n323.12 424.16 2.02 c p1\n324.32
      426.02 2.02 c p1\n340.24 442.37 2.02 c p1\n214.47 315.27 2.02 c
      p1\n272.36 366.49 2.02 c p1\n326.50 428.08 2.02 c p1\n308.23 408.45
      2.02 c p1\n334.15 435.55 2.02 c p1\n320.67 421.24 2.02 c p1\n343.93
      446.65 2.02 c p1\n277.90 372.57 2.02 c p1\n354.53 457.93 2.02 c
      p1\n296.46 395.17 2.02 c p1\n327.24 428.71 2.02 c p1\n376.97 481.15
      2.02 c p1\n311.35 411.59 2.02 c p1\n313.56 413.44 2.02 c p1\n336.76
      438.69 2.02 c p1\n321.69 422.38 2.02 c p1\n339.73 442.18 2.02 c
      p1\n280.64 376.46 2.02 c p1\n355.36 458.97 2.02 c p1\n312.30 412.63
      2.02 c p1\n295.28 394.13 2.02 c p1\n315.98 415.95 2.02 c p1\n304.18
      403.71 2.02 c p1\n289.78 388.21 2.02 c p1\n319.65 420.10 2.02 c
      p1\n302.47 401.87 2.02 c p1\n301.60 401.29 2.02 c p1\n305.03 404.80
      2.02 c p1\n316.22 416.25 2.02 c p1\n309.12 409.42 2.02 c p1\n298.54
      397.66 2.02 c p1\n224.51 315.42 2.02 c p1\n300.89 400.45 2.02 c
      p1\n283.69 379.91 2.02 c p1\n258.98 351.11 2.02 c p1\n305.69 405.11
      2.02 c p1\n398.03 506.91 2.02 c p1\n336.19 438.37 2.02 c p1\n278.57
      373.55 2.02 c p1\n268.84 361.75 2.02 c p1\n387.50 497.54 2.02 c
      p1\n355.53 459.08 2.02 c p1\n273.62 367.45 2.02 c p1\n351.90 455.58
      2.02 c p1\n270.08 364.34 2.02 c p1\n282.28 378.63 2.02 c p1\n318.09
      418.11 2.02 c p1\n332.80 434.71 2.02 c p1\n287.67 385.05 2.02 c
      p1\n317.93 418.05 2.02 c p1\n353.89 457.51 2.02 c p1\n289.44 388.05
      2.02 c p1\n261.80 353.92 2.02 c p1\n346.54 450.02 2.02 c p1\n364.51
      467.23 2.02 c p1\n288.86 387.13 2.02 c p1\n342.92 445.36 2.02 c
      p1\n287.43 384.46 2.02 c p1\n359.98 463.26 2.02 c p1\n332.97 434.76
      2.02 c p1\n273.82 368.04 2.02 c p1\n270.32 364.74 2.02 c p1\n270.55
      364.96 2.02 c p1\n294.08 392.53 2.02 c p1\n352.80 456.49 2.02 c
      p1\n299.45 398.82 2.02 c p1\n370.71 472.91 2.02 c p1\n313.64 413.48
      2.02 c p1\n339.02 440.65 2.02 c p1\n388.58 497.89 2.02 c p1\n328.83
      431.06 2.02 c p1\n282.14 378.57 2.02 c p1\n296.36 395.15 2.02 c
      p1\n331.30 433.05 2.02 c p1\n340.34 442.42 2.02 c p1\n271.70 365.41
      2.02 c p1\n319.41 419.90 2.02 c p1\n383.11 492.27 2.02 c p1\n295.97
      394.95 2.02 c p1\n329.16 431.45 2.02 c p1\n286.44 383.00 2.02 c
      p1\n268.05 360.76 2.02 c p1\n305.61 405.08 2.02 c p1\n293.87 392.23
      2.02 c p1\n375.99 480.63 2.02 c p1\n329.58 431.59 2.02 c p1\n263.91
      355.02 2.02 c p1\n322.72 423.40 2.02 c p1\n162.00 252.00 450.00 540.00
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n223.50 307.08
      m\n186.60 0 l\no\nnp\n223.50 307.08 m\n0 -5.40 l\no\nnp\n254.60 307.08
      m\n0 -5.40 l\no\nnp\n285.70 307.08 m\n0 -5.40 l\no\nnp\n316.80 307.08
      m\n0 -5.40 l\no\nnp\n347.90 307.08 m\n0 -5.40 l\no\nnp\n379.00 307.08
      m\n0 -5.40 l\no\nnp\n410.10 307.08 m\n0 -5.40 l\no\n/ps 11 def R 11
      s\n223.50 287.64 (-3) .5 0 0 t\n254.60 287.64 (-2) .5 0 0 t\n285.70
      287.64 (-1) .5 0 0 t\n316.80 287.64 (0) .5 0 0 t\n347.90 287.64 (1) .5
      0 0 t\n379.00 287.64 (2) .5 0 0 t\n410.10 287.64 (3) .5 0 0
      t\nnp\n206.28 315.99 m\n0 201.03 l\no\nnp\n206.28 315.99 m\n-5.40 0
      l\no\nnp\n206.28 349.49 m\n-5.40 0 l\no\nnp\n206.28 383.00 m\n-5.40 0
      l\no\nnp\n206.28 416.51 m\n-5.40 0 l\no\nnp\n206.28 450.01 m\n-5.40 0
      l\no\nnp\n206.28 483.52 m\n-5.40 0 l\no\nnp\n206.28 517.02 m\n-5.40 0
      l\no\n193.32 315.99 (-3) .5 0 90 t\n193.32 349.49 (-2) .5 0 90
      t\n193.32 383.00 (-1) .5 0 90 t\n193.32 416.51 (0) .5 0 90 t\n193.32
      450.01 (1) .5 0 90 t\n193.32 483.52 (2) .5 0 90 t\n193.32 517.02 (3) .5
      0 90 t\nnp\n206.28 307.08 m\n221.04 0 l\n0 221.04 l\n-221.04 0 l\n0
      -221.04 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 13 def B 13 s\n0 0 0
      rgb\n316.80 529.39 (Normal Q-Q Plot) .5 0 0 t\n/ps 11 def R 11
      s\n316.80 266.04 (Theoretical Quantiles) .5 0 0 t\n171.72 417.60
      (Sample Quantiles) .5 0 90 t\n206.28 307.08 427.32 528.12 cl\n1 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n206.28 297.43 m\n221.04
      238.15 l\no\n0 0 0 rgb\nnp\n206.28 297.43 m\n221.04 238.15 l\no\n1 0 0
      rgb\nnp\n206.28 297.43 m\n221.04 238.15 l\no\nnp\n206.28 297.43
      m\n221.04 238.15 l\no\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>

      Warning message:\ 

      parameter "color" couldn't be set in high-level plot() function\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  abline adds a line to the plot. It has two parameters: slope and intercept.

  The <verbatim|col=> parameter to plots specifies color.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      qqnorm(x);abline(0,0,col="red");abline(1,0,col="green");abline(0,1,col="blue")

      abline(0,2,col="orange");v()
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n316.06 416.11 2.02 c
      p1\n336.09 437.70 2.02 c p1\n371.80 473.91 2.02 c p1\n261.43 353.85
      2.02 c p1\n340.55 442.44 2.02 c p1\n318.24 418.38 2.02 c p1\n316.53
      416.73 2.02 c p1\n301.86 401.39 2.02 c p1\n320.20 420.94 2.02 c
      p1\n313.87 413.71 2.02 c p1\n327.00 428.51 2.02 c p1\n323.68 424.87
      2.02 c p1\n290.01 388.46 2.02 c p1\n278.41 373.27 2.02 c p1\n298.72
      397.77 2.02 c p1\n370.37 471.99 2.02 c p1\n316.92 416.95 2.02 c
      p1\n285.68 381.98 2.02 c p1\n322.48 423.00 2.02 c p1\n340.97 442.79
      2.02 c p1\n304.02 403.57 2.02 c p1\n267.24 359.04 2.02 c p1\n347.54
      451.14 2.02 c p1\n340.76 442.64 2.02 c p1\n351.61 455.31 2.02 c
      p1\n322.32 422.85 2.02 c p1\n337.63 439.61 2.02 c p1\n330.61 432.40
      2.02 c p1\n306.27 405.62 2.02 c p1\n379.14 485.64 2.02 c p1\n317.38
      417.52 2.02 c p1\n292.63 391.26 2.02 c p1\n322.17 422.78 2.02 c
      p1\n311.04 411.40 2.02 c p1\n279.23 374.68 2.02 c p1\n337.24 439.27
      2.02 c p1\n307.91 407.78 2.02 c p1\n289.09 387.57 2.02 c p1\n330.87
      432.84 2.02 c p1\n338.82 440.33 2.02 c p1\n302.56 401.92 2.02 c
      p1\n310.32 410.99 2.02 c p1\n328.07 429.90 2.02 c p1\n319.10 419.39
      2.02 c p1\n346.41 449.89 2.02 c p1\n272.57 366.50 2.02 c p1\n319.57
      420.05 2.02 c p1\n291.67 390.32 2.02 c p1\n305.78 405.19 2.02 c
      p1\n332.09 434.00 2.02 c p1\n283.55 379.90 2.02 c p1\n317.15 417.24
      2.02 c p1\n366.09 468.68 2.02 c p1\n333.33 434.90 2.02 c p1\n293.15
      391.53 2.02 c p1\n352.35 455.84 2.02 c p1\n296.26 395.13 2.02 c
      p1\n304.35 403.90 2.02 c p1\n310.16 410.91 2.02 c p1\n312.93 413.16
      2.02 c p1\n313.01 413.17 2.02 c p1\n381.67 490.56 2.02 c p1\n318.95
      419.37 2.02 c p1\n279.87 375.45 2.02 c p1\n313.48 413.42 2.02 c
      p1\n326.26 427.88 2.02 c p1\n301.69 401.29 2.02 c p1\n310.64 411.14
      2.02 c p1\n280.34 376.05 2.02 c p1\n323.28 424.23 2.02 c p1\n327.66
      429.28 2.02 c p1\n342.15 444.33 2.02 c p1\n324.80 426.42 2.02 c
      p1\n310.08 410.64 2.02 c p1\n310.24 410.95 2.02 c p1\n269.83 364.11
      2.02 c p1\n347.28 450.89 2.02 c p1\n291.01 389.48 2.02 c p1\n343.59
      446.23 2.02 c p1\n335.06 436.56 2.02 c p1\n327.33 428.76 2.02 c
      p1\n328.74 430.66 2.02 c p1\n263.58 354.96 2.02 c p1\n308.96 409.30
      2.02 c p1\n314.97 415.19 2.02 c p1\n302.90 402.28 2.02 c p1\n299.64
      399.09 2.02 c p1\n362.12 464.91 2.02 c p1\n295.38 394.58 2.02 c
      p1\n251.93 339.86 2.02 c p1\n361.68 464.54 2.02 c p1\n294.78 393.57
      2.02 c p1\n354.05 457.53 2.02 c p1\n345.21 448.42 2.02 c p1\n305.94
      405.43 2.02 c p1\n275.76 370.67 2.02 c p1\n339.83 442.22 2.02 c
      p1\n300.98 400.56 2.02 c p1\n339.22 440.85 2.02 c p1\n306.77 406.09
      2.02 c p1\n328.24 430.39 2.02 c p1\n282.57 379.14 2.02 c p1\n292.94
      391.42 2.02 c p1\n314.58 414.76 2.02 c p1\n347.79 451.25 2.02 c
      p1\n283.13 379.50 2.02 c p1\n332.18 434.04 2.02 c p1\n284.37 380.36
      2.02 c p1\n311.43 411.60 2.02 c p1\n286.82 383.83 2.02 c p1\n310.80
      411.25 2.02 c p1\n237.72 324.46 2.02 c p1\n325.69 427.31 2.02 c
      p1\n311.83 411.80 2.02 c p1\n330.18 432.18 2.02 c p1\n300.63 400.37
      2.02 c p1\n343.70 446.34 2.02 c p1\n331.13 433.02 2.02 c p1\n338.02
      439.79 2.02 c p1\n291.45 390.08 2.02 c p1\n353.58 457.48 2.02 c
      p1\n364.26 466.54 2.02 c p1\n318.71 418.90 2.02 c p1\n352.05 455.62
      2.02 c p1\n316.14 416.24 2.02 c p1\n310.88 411.29 2.02 c p1\n335.16
      436.63 2.02 c p1\n323.76 425.09 2.02 c p1\n348.44 451.62 2.02 c
      p1\n291.99 390.59 2.02 c p1\n266.39 357.77 2.02 c p1\n329.50 431.55
      2.02 c p1\n327.74 429.49 2.02 c p1\n348.97 452.10 2.02 c p1\n290.57
      388.94 2.02 c p1\n325.93 427.53 2.02 c p1\n264.88 355.90 2.02 c
      p1\n350.33 454.22 2.02 c p1\n269.34 362.60 2.02 c p1\n288.27 386.11
      2.02 c p1\n341.50 443.13 2.02 c p1\n294.48 393.21 2.02 c p1\n334.70
      436.06 2.02 c p1\n360.19 463.43 2.02 c p1\n287.80 385.10 2.02 c
      p1\n297.03 395.75 2.02 c p1\n249.72 335.00 2.02 c p1\n257.12 347.46
      2.02 c p1\n328.16 430.38 2.02 c p1\n302.99 402.38 2.02 c p1\n332.62
      434.58 2.02 c p1\n303.76 403.05 2.02 c p1\n284.50 380.48 2.02 c
      p1\n294.88 393.69 2.02 c p1\n335.81 437.49 2.02 c p1\n328.32 430.40
      2.02 c p1\n339.52 441.39 2.02 c p1\n300.54 400.34 2.02 c p1\n309.04
      409.38 2.02 c p1\n342.37 444.54 2.02 c p1\n324.40 426.03 2.02 c
      p1\n364.01 466.42 2.02 c p1\n367.21 469.40 2.02 c p1\n371.07 473.14
      2.02 c p1\n309.20 409.46 2.02 c p1\n358.79 461.89 2.02 c p1\n256.63
      346.73 2.02 c p1\n331.04 432.97 2.02 c p1\n302.73 402.03 2.02 c
      p1\n315.28 415.39 2.02 c p1\n346.78 450.18 2.02 c p1\n340.14 442.35
      2.02 c p1\n380.35 488.39 2.02 c p1\n344.04 446.70 2.02 c p1\n296.65
      395.43 2.02 c p1\n266.09 357.72 2.02 c p1\n281.25 377.24 2.02 c
      p1\n267.78 360.62 2.02 c p1\n281.70 378.38 2.02 c p1\n336.28 438.39
      2.02 c p1\n290.46 388.83 2.02 c p1\n343.14 445.40 2.02 c p1\n333.60
      435.17 2.02 c p1\n293.36 391.73 2.02 c p1\n274.03 368.40 2.02 c
      p1\n264.24 355.14 2.02 c p1\n283.96 380.07 2.02 c p1\n363.77 466.42
      2.02 c p1\n357.28 460.42 2.02 c p1\n323.60 424.81 2.02 c p1\n383.88
      492.51 2.02 c p1\n346.17 449.23 2.02 c p1\n314.89 415.13 2.02 c
      p1\n376.48 480.99 2.02 c p1\n342.70 444.81 2.02 c p1\n326.10 427.74
      2.02 c p1\n299.18 398.71 2.02 c p1\n271.02 365.24 2.02 c p1\n310.96
      411.31 2.02 c p1\n321.14 421.70 2.02 c p1\n311.75 411.78 2.02 c
      p1\n344.39 446.83 2.02 c p1\n302.12 401.61 2.02 c p1\n297.88 396.85
      2.02 c p1\n320.83 421.58 2.02 c p1\n331.74 433.54 2.02 c p1\n298.63
      397.67 2.02 c p1\n303.08 402.40 2.02 c p1\n341.08 442.85 2.02 c
      p1\n336.86 439.03 2.02 c p1\n293.46 391.73 2.02 c p1\n307.34 406.96
      2.02 c p1\n335.34 436.71 2.02 c p1\n321.22 421.79 2.02 c p1\n322.64
      423.37 2.02 c p1\n362.35 465.06 2.02 c p1\n276.86 371.48 2.02 c
      p1\n327.57 429.20 2.02 c p1\n296.17 395.06 2.02 c p1\n357.84 460.70
      2.02 c p1\n345.93 448.92 2.02 c p1\n328.49 430.41 2.02 c p1\n336.00
      437.69 2.02 c p1\n283.82 380.03 2.02 c p1\n295.48 394.65 2.02 c
      p1\n299.09 398.50 2.02 c p1\n323.92 425.29 2.02 c p1\n330.35 432.22
      2.02 c p1\n330.44 432.31 2.02 c p1\n321.06 421.69 2.02 c p1\n335.62
      437.04 2.02 c p1\n315.90 415.81 2.02 c p1\n297.98 396.85 2.02 c
      p1\n300.00 399.80 2.02 c p1\n301.42 401.19 2.02 c p1\n357.10 460.13
      2.02 c p1\n349.50 452.48 2.02 c p1\n297.51 396.41 2.02 c p1\n307.50
      407.01 2.02 c p1\n282.42 378.75 2.02 c p1\n326.83 428.34 2.02 c
      p1\n317.23 417.50 2.02 c p1\n288.15 385.93 2.02 c p1\n324.08 425.89
      2.02 c p1\n296.84 395.62 2.02 c p1\n288.63 386.65 2.02 c p1\n301.16
      400.91 2.02 c p1\n329.33 431.51 2.02 c p1\n375.06 478.53 2.02 c
      p1\n278.90 374.20 2.02 c p1\n296.94 395.72 2.02 c p1\n334.06 435.44
      2.02 c p1\n298.16 397.23 2.02 c p1\n327.41 428.83 2.02 c p1\n300.27
      399.94 2.02 c p1\n350.47 454.43 2.02 c p1\n307.99 407.87 2.02 c
      p1\n305.53 405.06 2.02 c p1\n280.80 376.53 2.02 c p1\n284.63 380.85
      2.02 c p1\n339.42 441.03 2.02 c p1\n262.53 354.18 2.02 c p1\n288.51
      386.36 2.02 c p1\n310.72 411.17 2.02 c p1\n292.20 390.73 2.02 c
      p1\n322.96 424.03 2.02 c p1\n380.99 489.71 2.02 c p1\n339.12 440.65
      2.02 c p1\n332.53 434.58 2.02 c p1\n271.92 366.37 2.02 c p1\n278.24
      373.14 2.02 c p1\n316.37 416.56 2.02 c p1\n361.24 464.28 2.02 c
      p1\n269.09 362.54 2.02 c p1\n301.95 401.42 2.02 c p1\n368.41 470.78
      2.02 c p1\n290.12 388.49 2.02 c p1\n331.21 433.03 2.02 c p1\n281.55
      377.68 2.02 c p1\n276.13 370.94 2.02 c p1\n262.17 353.97 2.02 c
      p1\n260.65 352.66 2.02 c p1\n308.64 408.72 2.02 c p1\n300.18 399.90
      2.02 c p1\n317.85 418.05 2.02 c p1\n295.58 394.69 2.02 c p1\n292.42
      390.93 2.02 c p1\n253.25 342.81 2.02 c p1\n359.57 462.40 2.02 c
      p1\n342.59 444.77 2.02 c p1\n378.02 484.07 2.02 c p1\n306.52 405.75
      2.02 c p1\n321.30 421.84 2.02 c p1\n280.49 376.38 2.02 c p1\n356.74
      459.99 2.02 c p1\n299.82 399.68 2.02 c p1\n319.96 420.66 2.02 c
      p1\n318.32 418.52 2.02 c p1\n321.53 421.95 2.02 c p1\n353.42 457.23
      2.02 c p1\n350.61 454.48 2.02 c p1\n299.27 398.71 2.02 c p1\n286.57
      383.39 2.02 c p1\n300.80 400.41 2.02 c p1\n302.04 401.45 2.02 c
      p1\n344.85 447.80 2.02 c p1\n303.42 402.77 2.02 c p1\n280.18 375.81
      2.02 c p1\n339.93 442.26 2.02 c p1\n347.16 450.76 2.02 c p1\n343.82
      446.45 2.02 c p1\n309.44 409.82 2.02 c p1\n266.67 357.86 2.02 c
      p1\n374.19 477.93 2.02 c p1\n269.59 363.21 2.02 c p1\n329.08 431.40
      2.02 c p1\n293.67 391.95 2.02 c p1\n369.04 471.22 2.02 c p1\n348.57
      451.62 2.02 c p1\n327.82 429.59 2.02 c p1\n255.03 345.73 2.02 c
      p1\n327.49 428.89 2.02 c p1\n320.75 421.51 2.02 c p1\n302.30 401.75
      2.02 c p1\n337.73 439.72 2.02 c p1\n305.86 405.28 2.02 c p1\n282.71
      379.15 2.02 c p1\n345.45 448.57 2.02 c p1\n338.62 440.21 2.02 c
      p1\n338.52 440.18 2.02 c p1\n329.42 431.54 2.02 c p1\n346.66 450.10
      2.02 c p1\n271.25 365.31 2.02 c p1\n285.94 382.16 2.02 c p1\n324.88
      426.55 2.02 c p1\n304.10 403.58 2.02 c p1\n284.23 380.23 2.02 c
      p1\n248.02 334.59 2.02 c p1\n352.50 456.20 2.02 c p1\n317.31 417.50
      2.02 c p1\n287.19 384.35 2.02 c p1\n351.76 455.57 2.02 c p1\n358.40
      461.33 2.02 c p1\n320.04 420.75 2.02 c p1\n288.04 385.54 2.02 c
      p1\n315.75 415.64 2.02 c p1\n311.12 411.43 2.02 c p1\n229.50 316.66
      2.02 c p1\n320.35 421.00 2.02 c p1\n291.88 390.50 2.02 c p1\n324.96
      426.67 2.02 c p1\n273.00 366.82 2.02 c p1\n368.72 470.89 2.02 c
      p1\n317.54 417.76 2.02 c p1\n325.61 427.28 2.02 c p1\n325.28 426.97
      2.02 c p1\n306.93 406.51 2.02 c p1\n316.99 417.00 2.02 c p1\n279.07
      374.66 2.02 c p1\n284.77 380.87 2.02 c p1\n308.56 408.59 2.02 c
      p1\n394.04 501.88 2.02 c p1\n306.11 405.55 2.02 c p1\n300.71 400.38
      2.02 c p1\n290.35 388.74 2.02 c p1\n330.01 432.06 2.02 c p1\n359.18
      461.96 2.02 c p1\n334.33 435.69 2.02 c p1\n287.92 385.10 2.02 c
      p1\n338.72 440.32 2.02 c p1\n357.65 460.54 2.02 c p1\n349.64 453.01
      2.02 c p1\n331.83 433.78 2.02 c p1\n369.69 471.61 2.02 c p1\n270.79
      365.11 2.02 c p1\n313.79 413.64 2.02 c p1\n312.07 411.87 2.02 c
      p1\n248.89 334.76 2.02 c p1\n343.36 446.13 2.02 c p1\n335.44 436.71
      2.02 c p1\n325.45 427.21 2.02 c p1\n290.90 389.41 2.02 c p1\n341.61
      443.24 2.02 c p1\n338.42 440.16 2.02 c p1\n298.07 396.89 2.02 c
      p1\n280.02 375.57 2.02 c p1\n327.16 428.70 2.02 c p1\n341.29 443.02
      2.02 c p1\n367.80 470.12 2.02 c p1\n303.33 402.73 2.02 c p1\n286.06
      382.23 2.02 c p1\n315.05 415.25 2.02 c p1\n335.53 436.76 2.02 c
      p1\n300.36 399.94 2.02 c p1\n344.62 447.40 2.02 c p1\n338.92 440.36
      2.02 c p1\n349.23 452.40 2.02 c p1\n306.60 405.88 2.02 c p1\n268.32
      360.90 2.02 c p1\n298.44 397.46 2.02 c p1\n292.73 391.28 2.02 c
      p1\n372.56 474.57 2.02 c p1\n334.88 436.20 2.02 c p1\n323.20 424.19
      2.02 c p1\n320.28 421.00 2.02 c p1\n324.56 426.23 2.02 c p1\n364.76
      467.56 2.02 c p1\n251.23 337.14 2.02 c p1\n323.52 424.68 2.02 c
      p1\n334.60 435.90 2.02 c p1\n259.84 352.06 2.02 c p1\n326.01 427.68
      2.02 c p1\n321.93 422.73 2.02 c p1\n315.59 415.57 2.02 c p1\n336.66
      438.69 2.02 c p1\n297.32 396.15 2.02 c p1\n298.35 397.39 2.02 c
      p1\n334.24 435.65 2.02 c p1\n299.91 399.75 2.02 c p1\n309.28 409.46
      2.02 c p1\n345.80 448.75 2.02 c p1\n355.19 458.89 2.02 c p1\n309.60
      409.84 2.02 c p1\n343.03 445.40 2.02 c p1\n340.03 442.31 2.02 c
      p1\n313.32 413.35 2.02 c p1\n360.60 464.02 2.02 c p1\n338.32 439.96
      2.02 c p1\n303.16 402.46 2.02 c p1\n345.68 448.66 2.02 c p1\n351.03
      455.07 2.02 c p1\n333.87 435.30 2.02 c p1\n300.09 399.86 2.02 c
      p1\n318.40 418.59 2.02 c p1\n350.89 455.03 2.02 c p1\n321.77 422.41
      2.02 c p1\n354.70 458.67 2.02 c p1\n373.35 476.85 2.02 c p1\n365.02
      467.68 2.02 c p1\n245.02 332.06 2.02 c p1\n354.37 457.86 2.02 c
      p1\n333.24 434.84 2.02 c p1\n281.84 378.46 2.02 c p1\n308.80 408.92
      2.02 c p1\n306.69 405.97 2.02 c p1\n315.51 415.48 2.02 c p1\n322.25
      422.85 2.02 c p1\n290.79 389.33 2.02 c p1\n292.31 390.73 2.02 c
      p1\n243.86 331.72 2.02 c p1\n311.67 411.75 2.02 c p1\n322.80 423.63
      2.02 c p1\n301.07 400.81 2.02 c p1\n372.95 474.94 2.02 c p1\n348.05
      451.50 2.02 c p1\n313.17 413.23 2.02 c p1\n392.45 498.78 2.02 c
      p1\n341.83 443.67 2.02 c p1\n352.96 456.73 2.02 c p1\n375.52 479.38
      2.02 c p1\n344.16 446.80 2.02 c p1\n286.32 382.61 2.02 c p1\n342.04
      444.01 2.02 c p1\n311.20 411.51 2.02 c p1\n307.26 406.77 2.02 c
      p1\n308.32 408.51 2.02 c p1\n325.85 427.52 2.02 c p1\n337.83 439.77
      2.02 c p1\n333.69 435.27 2.02 c p1\n382.37 490.70 2.02 c p1\n275.95
      370.71 2.02 c p1\n278.07 372.93 2.02 c p1\n311.59 411.71 2.02 c
      p1\n321.46 421.91 2.02 c p1\n334.51 435.79 2.02 c p1\n285.29 381.47
      2.02 c p1\n262.89 354.40 2.02 c p1\n276.32 370.96 2.02 c p1\n333.51
      435.11 2.02 c p1\n306.36 405.63 2.02 c p1\n255.58 346.25 2.02 c
      p1\n366.36 468.81 2.02 c p1\n358.21 461.01 2.02 c p1\n315.83 415.77
      2.02 c p1\n310.00 410.54 2.02 c p1\n331.91 433.88 2.02 c p1\n320.51
      421.15 2.02 c p1\n321.85 422.52 2.02 c p1\n363.05 465.70 2.02 c
      p1\n363.52 466.12 2.02 c p1\n314.50 414.72 2.02 c p1\n366.93 469.19
      2.02 c p1\n370.02 471.88 2.02 c p1\n312.77 412.90 2.02 c p1\n325.53
      427.23 2.02 c p1\n345.33 448.57 2.02 c p1\n257.61 349.19 2.02 c
      p1\n385.58 494.44 2.02 c p1\n275.58 370.54 2.02 c p1\n312.85 413.02
      2.02 c p1\n314.65 414.92 2.02 c p1\n345.56 448.58 2.02 c p1\n232.93
      319.10 2.02 c p1\n291.77 390.44 2.02 c p1\n316.61 416.79 2.02 c
      p1\n288.98 387.16 2.02 c p1\n317.46 417.62 2.02 c p1\n296.74 395.53
      2.02 c p1\n283.27 379.54 2.02 c p1\n323.04 424.04 2.02 c p1\n361.90
      464.80 2.02 c p1\n260.25 352.36 2.02 c p1\n314.34 414.52 2.02 c
      p1\n409.09 516.99 2.02 c p1\n395.88 505.48 2.02 c p1\n294.68 393.47
      2.02 c p1\n307.67 407.25 2.02 c p1\n293.26 391.65 2.02 c p1\n314.19
      414.19 2.02 c p1\n304.27 403.81 2.02 c p1\n313.72 413.62 2.02 c
      p1\n318.48 418.61 2.02 c p1\n312.38 412.70 2.02 c p1\n339.62 441.60
      2.02 c p1\n309.36 409.63 2.02 c p1\n362.58 465.58 2.02 c p1\n330.52
      432.34 2.02 c p1\n281.99 378.55 2.02 c p1\n277.03 371.75 2.02 c
      p1\n358.59 461.55 2.02 c p1\n307.59 407.13 2.02 c p1\n351.32 455.22
      2.02 c p1\n258.08 350.29 2.02 c p1\n275.20 370.26 2.02 c p1\n309.84
      410.29 2.02 c p1\n314.11 414.04 2.02 c p1\n297.13 396.05 2.02 c
      p1\n328.41 430.41 2.02 c p1\n296.55 395.40 2.02 c p1\n288.75 387.00
      2.02 c p1\n357.47 460.44 2.02 c p1\n275.01 370.14 2.02 c p1\n291.34
      390.01 2.02 c p1\n322.56 423.04 2.02 c p1\n336.57 438.60 2.02 c
      p1\n332.26 434.11 2.02 c p1\n351.18 455.10 2.02 c p1\n318.87 419.21
      2.02 c p1\n332.71 434.67 2.02 c p1\n315.36 415.39 2.02 c p1\n356.39
      459.79 2.02 c p1\n302.65 401.97 2.02 c p1\n285.42 381.68 2.02 c
      p1\n319.26 419.71 2.02 c p1\n332.35 434.35 2.02 c p1\n316.68 416.87
      2.02 c p1\n331.48 433.11 2.02 c p1\n310.40 411.00 2.02 c p1\n290.68
      389.30 2.02 c p1\n327.99 429.78 2.02 c p1\n295.18 394.11 2.02 c
      p1\n331.39 433.06 2.02 c p1\n304.69 404.12 2.02 c p1\n285.16 381.37
      2.02 c p1\n353.11 456.84 2.02 c p1\n343.25 445.52 2.02 c p1\n324.00
      425.40 2.02 c p1\n311.91 411.80 2.02 c p1\n265.19 356.50 2.02 c
      p1\n333.78 435.27 2.02 c p1\n325.04 426.73 2.02 c p1\n349.91 453.18
      2.02 c p1\n340.45 442.42 2.02 c p1\n329.84 431.98 2.02 c p1\n346.05
      449.13 2.02 c p1\n336.95 439.05 2.02 c p1\n279.39 374.81 2.02 c
      p1\n291.23 389.61 2.02 c p1\n334.97 436.24 2.02 c p1\n318.63 418.89
      2.02 c p1\n297.60 396.48 2.02 c p1\n252.61 341.04 2.02 c p1\n349.78
      453.14 2.02 c p1\n328.91 431.29 2.02 c p1\n264.56 355.34 2.02 c
      p1\n305.44 405.05 2.02 c p1\n342.81 445.19 2.02 c p1\n325.20 426.94
      2.02 c p1\n347.92 451.35 2.02 c p1\n344.51 447.32 2.02 c p1\n276.50
      371.02 2.02 c p1\n259.41 351.16 2.02 c p1\n362.81 465.68 2.02 c
      p1\n348.18 451.59 2.02 c p1\n319.88 420.40 2.02 c p1\n324.64 426.26
      2.02 c p1\n292.10 390.67 2.02 c p1\n330.10 432.08 2.02 c p1\n356.22
      459.40 2.02 c p1\n253.86 343.06 2.02 c p1\n305.28 404.95 2.02 c
      p1\n322.88 423.97 2.02 c p1\n272.14 366.46 2.02 c p1\n341.40 443.11
      2.02 c p1\n306.19 405.58 2.02 c p1\n355.03 458.87 2.02 c p1\n365.82
      468.15 2.02 c p1\n277.21 371.78 2.02 c p1\n350.75 454.86 2.02 c
      p1\n304.77 404.23 2.02 c p1\n306.85 406.41 2.02 c p1\n319.34 419.81
      2.02 c p1\n348.83 452.04 2.02 c p1\n310.56 411.12 2.02 c p1\n281.10
      376.74 2.02 c p1\n318.79 418.97 2.02 c p1\n320.43 421.03 2.02 c
      p1\n314.42 414.58 2.02 c p1\n277.56 372.33 2.02 c p1\n313.25 413.29
      2.02 c p1\n361.46 464.32 2.02 c p1\n337.53 439.54 2.02 c p1\n279.71
      375.07 2.02 c p1\n314.81 415.02 2.02 c p1\n321.61 422.35 2.02 c
      p1\n311.99 411.83 2.02 c p1\n313.95 413.82 2.02 c p1\n303.50 402.80
      2.02 c p1\n326.91 428.44 2.02 c p1\n287.06 384.13 2.02 c p1\n276.68
      371.22 2.02 c p1\n304.94 404.31 2.02 c p1\n353.73 457.50 2.02 c
      p1\n280.95 376.55 2.02 c p1\n354.86 458.79 2.02 c p1\n266.96 358.89
      2.02 c p1\n391.03 498.55 2.02 c p1\n335.91 437.54 2.02 c p1\n344.97
      447.84 2.02 c p1\n344.27 446.82 2.02 c p1\n333.15 434.83 2.02 c
      p1\n312.22 412.60 2.02 c p1\n320.59 421.19 2.02 c p1\n301.77 401.34
      2.02 c p1\n301.25 401.08 2.02 c p1\n293.57 391.83 2.02 c p1\n353.26
      457.08 2.02 c p1\n289.21 387.74 2.02 c p1\n288.39 386.35 2.02 c
      p1\n303.85 403.39 2.02 c p1\n293.77 392.11 2.02 c p1\n368.11 470.47
      2.02 c p1\n304.86 404.27 2.02 c p1\n342.26 444.39 2.02 c p1\n313.09
      413.17 2.02 c p1\n331.65 433.35 2.02 c p1\n274.62 369.83 2.02 c
      p1\n246.10 332.10 2.02 c p1\n273.21 367.05 2.02 c p1\n337.05 439.13
      2.02 c p1\n314.73 414.98 2.02 c p1\n287.55 384.67 2.02 c p1\n294.28
      392.80 2.02 c p1\n323.36 424.32 2.02 c p1\n317.62 417.84 2.02 c
      p1\n318.16 418.16 2.02 c p1\n330.78 432.77 2.02 c p1\n335.25 436.65
      2.02 c p1\n321.38 421.90 2.02 c p1\n338.12 439.86 2.02 c p1\n328.57
      430.48 2.02 c p1\n360.81 464.08 2.02 c p1\n292.52 391.03 2.02 c
      p1\n307.42 407.00 2.02 c p1\n333.06 434.81 2.02 c p1\n300.45 400.03
      2.02 c p1\n263.23 354.93 2.02 c p1\n315.44 415.44 2.02 c p1\n341.18
      443.00 2.02 c p1\n309.92 410.41 2.02 c p1\n359.78 463.04 2.02 c
      p1\n330.70 432.43 2.02 c p1\n314.26 414.21 2.02 c p1\n312.46 412.71
      2.02 c p1\n304.44 403.93 2.02 c p1\n329.93 432.06 2.02 c p1\n317.70
      417.88 2.02 c p1\n290.24 388.61 2.02 c p1\n292.84 391.29 2.02 c
      p1\n334.42 435.75 2.02 c p1\n295.77 394.89 2.02 c p1\n286.94 383.95
      2.02 c p1\n239.56 325.82 2.02 c p1\n329.25 431.45 2.02 c p1\n361.03
      464.12 2.02 c p1\n319.49 420.04 2.02 c p1\n295.87 394.92 2.02 c
      p1\n341.72 443.28 2.02 c p1\n298.81 398.11 2.02 c p1\n312.54 412.79
      2.02 c p1\n373.76 477.08 2.02 c p1\n326.42 428.04 2.02 c p1\n296.07
      395.04 2.02 c p1\n333.42 434.97 2.02 c p1\n284.90 381.04 2.02 c
      p1\n285.55 381.72 2.02 c p1\n337.43 439.52 2.02 c p1\n286.69 383.64
      2.02 c p1\n322.01 422.76 2.02 c p1\n311.51 411.66 2.02 c p1\n366.64
      469.02 2.02 c p1\n241.15 326.90 2.02 c p1\n306.03 405.46 2.02 c
      p1\n283.41 379.77 2.02 c p1\n367.51 469.49 2.02 c p1\n316.29 416.47
      2.02 c p1\n247.09 332.55 2.02 c p1\n316.84 416.91 2.02 c p1\n400.67
      508.01 2.02 c p1\n351.46 455.24 2.02 c p1\n322.40 422.92 2.02 c
      p1\n295.08 394.08 2.02 c p1\n320.90 421.59 2.02 c p1\n307.83 407.59
      2.02 c p1\n313.40 413.40 2.02 c p1\n349.10 452.18 2.02 c p1\n318.01
      418.09 2.02 c p1\n337.14 439.25 2.02 c p1\n312.70 412.87 2.02 c
      p1\n256.11 346.72 2.02 c p1\n326.75 428.33 2.02 c p1\n287.31 384.39
      2.02 c p1\n285.03 381.18 2.02 c p1\n328.99 431.33 2.02 c p1\n311.28
      411.57 2.02 c p1\n273.41 367.21 2.02 c p1\n324.16 425.90 2.02 c
      p1\n358.02 460.89 2.02 c p1\n327.91 429.76 2.02 c p1\n308.15 408.44
      2.02 c p1\n371.43 473.21 2.02 c p1\n389.74 497.99 2.02 c p1\n308.40
      408.55 2.02 c p1\n340.87 442.71 2.02 c p1\n308.72 408.92 2.02 c
      p1\n332.44 434.48 2.02 c p1\n302.21 401.66 2.02 c p1\n363.28 465.97
      2.02 c p1\n301.51 401.27 2.02 c p1\n369.36 471.45 2.02 c p1\n349.37
      452.46 2.02 c p1\n330.27 432.22 2.02 c p1\n355.87 459.30 2.02 c
      p1\n356.92 460.07 2.02 c p1\n324.72 426.42 2.02 c p1\n308.48 408.59
      2.02 c p1\n307.75 407.48 2.02 c p1\n286.19 382.31 2.02 c p1\n289.90
      388.25 2.02 c p1\n314.03 414.03 2.02 c p1\n309.52 409.82 2.02 c
      p1\n277.38 372.03 2.02 c p1\n293.98 392.52 2.02 c p1\n327.08 428.65
      2.02 c p1\n305.36 404.97 2.02 c p1\n291.56 390.26 2.02 c p1\n320.12
      420.81 2.02 c p1\n274.23 368.44 2.02 c p1\n326.67 428.32 2.02 c
      p1\n352.65 456.38 2.02 c p1\n289.67 388.10 2.02 c p1\n301.34 401.11
      2.02 c p1\n315.12 415.30 2.02 c p1\n326.59 428.22 2.02 c p1\n419.13
      519.93 2.02 c p1\n309.76 410.29 2.02 c p1\n331.56 433.25 2.02 c
      p1\n316.45 416.56 2.02 c p1\n346.91 450.36 2.02 c p1\n293.05 391.44
      2.02 c p1\n305.19 404.90 2.02 c p1\n345.09 448.22 2.02 c p1\n298.90
      398.31 2.02 c p1\n330.95 432.92 2.02 c p1\n297.22 396.14 2.02 c
      p1\n358.98 461.95 2.02 c p1\n323.84 425.19 2.02 c p1\n297.79 396.54
      2.02 c p1\n265.80 356.67 2.02 c p1\n359.37 462.13 2.02 c p1\n289.33
      387.83 2.02 c p1\n325.37 427.02 2.02 c p1\n312.62 412.81 2.02 c
      p1\n265.49 356.54 2.02 c p1\n303.59 402.80 2.02 c p1\n299.36 398.81
      2.02 c p1\n319.02 419.39 2.02 c p1\n294.58 393.42 2.02 c p1\n316.76
      416.88 2.02 c p1\n315.20 415.31 2.02 c p1\n274.81 369.94 2.02 c
      p1\n315.67 415.58 2.02 c p1\n356.04 459.34 2.02 c p1\n372.17 474.42
      2.02 c p1\n302.82 402.11 2.02 c p1\n267.51 359.74 2.02 c p1\n308.88
      409.12 2.02 c p1\n284.10 380.14 2.02 c p1\n306.44 405.71 2.02 c
      p1\n304.52 404.00 2.02 c p1\n339.32 440.95 2.02 c p1\n365.55 467.98
      2.02 c p1\n325.77 427.46 2.02 c p1\n312.14 412.30 2.02 c p1\n282.85
      379.17 2.02 c p1\n242.57 330.24 2.02 c p1\n250.49 335.71 2.02 c
      p1\n360.39 463.46 2.02 c p1\n297.69 396.51 2.02 c p1\n317.77 417.98
      2.02 c p1\n303.67 402.86 2.02 c p1\n308.07 408.38 2.02 c p1\n356.57
      459.81 2.02 c p1\n299.54 399.00 2.02 c p1\n323.44 424.62 2.02 c
      p1\n235.57 322.16 2.02 c p1\n324.48 426.23 2.02 c p1\n354.21 457.63
      2.02 c p1\n348.70 451.78 2.02 c p1\n279.55 375.04 2.02 c p1\n355.70
      459.14 2.02 c p1\n299.00 398.36 2.02 c p1\n274.42 369.68 2.02 c
      p1\n304.61 404.04 2.02 c p1\n289.56 388.09 2.02 c p1\n332.00 433.94
      2.02 c p1\n307.10 406.67 2.02 c p1\n404.10 509.18 2.02 c p1\n377.49
      483.03 2.02 c p1\n342.48 444.64 2.02 c p1\n295.68 394.74 2.02 c
      p1\n317.07 417.05 2.02 c p1\n332.89 434.76 2.02 c p1\n347.41 450.89
      2.02 c p1\n302.39 401.84 2.02 c p1\n334.79 436.18 2.02 c p1\n319.73
      420.31 2.02 c p1\n329.75 431.86 2.02 c p1\n294.98 393.84 2.02 c
      p1\n350.05 453.59 2.02 c p1\n340.66 442.59 2.02 c p1\n346.29 449.83
      2.02 c p1\n348.31 451.59 2.02 c p1\n310.48 411.06 2.02 c p1\n374.62
      478.11 2.02 c p1\n326.18 427.83 2.02 c p1\n350.19 454.18 2.02 c
      p1\n303.93 403.53 2.02 c p1\n281.40 377.46 2.02 c p1\n338.22 439.87
      2.02 c p1\n309.68 410.26 2.02 c p1\n319.18 419.56 2.02 c p1\n325.12
      426.81 2.02 c p1\n320.98 421.68 2.02 c p1\n337.34 439.34 2.02 c
      p1\n347.66 451.23 2.02 c p1\n268.58 361.68 2.02 c p1\n322.09 422.78
      2.02 c p1\n336.47 438.55 2.02 c p1\n318.55 418.85 2.02 c p1\n328.66
      430.53 2.02 c p1\n297.41 396.39 2.02 c p1\n282.99 379.44 2.02 c
      p1\n337.92 439.78 2.02 c p1\n277.73 372.42 2.02 c p1\n307.18 406.70
      2.02 c p1\n341.93 443.86 2.02 c p1\n319.81 420.40 2.02 c p1\n378.57
      484.21 2.02 c p1\n333.96 435.34 2.02 c p1\n307.01 406.62 2.02 c
      p1\n352.20 455.73 2.02 c p1\n329.67 431.66 2.02 c p1\n275.39 370.35
      2.02 c p1\n336.38 438.43 2.02 c p1\n344.74 447.52 2.02 c p1\n335.72
      437.19 2.02 c p1\n294.38 392.92 2.02 c p1\n291.12 389.53 2.02 c
      p1\n386.51 495.62 2.02 c p1\n379.74 487.58 2.02 c p1\n258.54 350.39
      2.02 c p1\n261.04 353.48 2.02 c p1\n271.48 365.37 2.02 c p1\n303.25
      402.48 2.02 c p1\n384.71 492.76 2.02 c p1\n347.03 450.39 2.02 c
      p1\n326.34 427.99 2.02 c p1\n285.81 382.03 2.02 c p1\n305.11 404.89
      2.02 c p1\n272.79 366.75 2.02 c p1\n365.28 467.76 2.02 c p1\n298.26
      397.29 2.02 c p1\n254.46 345.24 2.02 c p1\n299.73 399.53 2.02 c
      p1\n294.18 392.66 2.02 c p1\n278.74 373.71 2.02 c p1\n343.48 446.17
      2.02 c p1\n324.24 425.91 2.02 c p1\n323.12 424.16 2.02 c p1\n324.32
      426.02 2.02 c p1\n340.24 442.37 2.02 c p1\n214.47 315.27 2.02 c
      p1\n272.36 366.49 2.02 c p1\n326.50 428.08 2.02 c p1\n308.23 408.45
      2.02 c p1\n334.15 435.55 2.02 c p1\n320.67 421.24 2.02 c p1\n343.93
      446.65 2.02 c p1\n277.90 372.57 2.02 c p1\n354.53 457.93 2.02 c
      p1\n296.46 395.17 2.02 c p1\n327.24 428.71 2.02 c p1\n376.97 481.15
      2.02 c p1\n311.35 411.59 2.02 c p1\n313.56 413.44 2.02 c p1\n336.76
      438.69 2.02 c p1\n321.69 422.38 2.02 c p1\n339.73 442.18 2.02 c
      p1\n280.64 376.46 2.02 c p1\n355.36 458.97 2.02 c p1\n312.30 412.63
      2.02 c p1\n295.28 394.13 2.02 c p1\n315.98 415.95 2.02 c p1\n304.18
      403.71 2.02 c p1\n289.78 388.21 2.02 c p1\n319.65 420.10 2.02 c
      p1\n302.47 401.87 2.02 c p1\n301.60 401.29 2.02 c p1\n305.03 404.80
      2.02 c p1\n316.22 416.25 2.02 c p1\n309.12 409.42 2.02 c p1\n298.54
      397.66 2.02 c p1\n224.51 315.42 2.02 c p1\n300.89 400.45 2.02 c
      p1\n283.69 379.91 2.02 c p1\n258.98 351.11 2.02 c p1\n305.69 405.11
      2.02 c p1\n398.03 506.91 2.02 c p1\n336.19 438.37 2.02 c p1\n278.57
      373.55 2.02 c p1\n268.84 361.75 2.02 c p1\n387.50 497.54 2.02 c
      p1\n355.53 459.08 2.02 c p1\n273.62 367.45 2.02 c p1\n351.90 455.58
      2.02 c p1\n270.08 364.34 2.02 c p1\n282.28 378.63 2.02 c p1\n318.09
      418.11 2.02 c p1\n332.80 434.71 2.02 c p1\n287.67 385.05 2.02 c
      p1\n317.93 418.05 2.02 c p1\n353.89 457.51 2.02 c p1\n289.44 388.05
      2.02 c p1\n261.80 353.92 2.02 c p1\n346.54 450.02 2.02 c p1\n364.51
      467.23 2.02 c p1\n288.86 387.13 2.02 c p1\n342.92 445.36 2.02 c
      p1\n287.43 384.46 2.02 c p1\n359.98 463.26 2.02 c p1\n332.97 434.76
      2.02 c p1\n273.82 368.04 2.02 c p1\n270.32 364.74 2.02 c p1\n270.55
      364.96 2.02 c p1\n294.08 392.53 2.02 c p1\n352.80 456.49 2.02 c
      p1\n299.45 398.82 2.02 c p1\n370.71 472.91 2.02 c p1\n313.64 413.48
      2.02 c p1\n339.02 440.65 2.02 c p1\n388.58 497.89 2.02 c p1\n328.83
      431.06 2.02 c p1\n282.14 378.57 2.02 c p1\n296.36 395.15 2.02 c
      p1\n331.30 433.05 2.02 c p1\n340.34 442.42 2.02 c p1\n271.70 365.41
      2.02 c p1\n319.41 419.90 2.02 c p1\n383.11 492.27 2.02 c p1\n295.97
      394.95 2.02 c p1\n329.16 431.45 2.02 c p1\n286.44 383.00 2.02 c
      p1\n268.05 360.76 2.02 c p1\n305.61 405.08 2.02 c p1\n293.87 392.23
      2.02 c p1\n375.99 480.63 2.02 c p1\n329.58 431.59 2.02 c p1\n263.91
      355.02 2.02 c p1\n322.72 423.40 2.02 c p1\n162.00 252.00 450.00 540.00
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n223.50 307.08
      m\n186.60 0 l\no\nnp\n223.50 307.08 m\n0 -5.40 l\no\nnp\n254.60 307.08
      m\n0 -5.40 l\no\nnp\n285.70 307.08 m\n0 -5.40 l\no\nnp\n316.80 307.08
      m\n0 -5.40 l\no\nnp\n347.90 307.08 m\n0 -5.40 l\no\nnp\n379.00 307.08
      m\n0 -5.40 l\no\nnp\n410.10 307.08 m\n0 -5.40 l\no\n/ps 11 def R 11
      s\n223.50 287.64 (-3) .5 0 0 t\n254.60 287.64 (-2) .5 0 0 t\n285.70
      287.64 (-1) .5 0 0 t\n316.80 287.64 (0) .5 0 0 t\n347.90 287.64 (1) .5
      0 0 t\n379.00 287.64 (2) .5 0 0 t\n410.10 287.64 (3) .5 0 0
      t\nnp\n206.28 315.99 m\n0 201.03 l\no\nnp\n206.28 315.99 m\n-5.40 0
      l\no\nnp\n206.28 349.49 m\n-5.40 0 l\no\nnp\n206.28 383.00 m\n-5.40 0
      l\no\nnp\n206.28 416.51 m\n-5.40 0 l\no\nnp\n206.28 450.01 m\n-5.40 0
      l\no\nnp\n206.28 483.52 m\n-5.40 0 l\no\nnp\n206.28 517.02 m\n-5.40 0
      l\no\n193.32 315.99 (-3) .5 0 90 t\n193.32 349.49 (-2) .5 0 90
      t\n193.32 383.00 (-1) .5 0 90 t\n193.32 416.51 (0) .5 0 90 t\n193.32
      450.01 (1) .5 0 90 t\n193.32 483.52 (2) .5 0 90 t\n193.32 517.02 (3) .5
      0 90 t\nnp\n206.28 307.08 m\n221.04 0 l\n0 221.04 l\n-221.04 0 l\n0
      -221.04 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 13 def B 13 s\n0 0 0
      rgb\n316.80 529.39 (Normal Q-Q Plot) .5 0 0 t\n/ps 11 def R 11
      s\n316.80 266.04 (Theoretical Quantiles) .5 0 0 t\n171.72 417.60
      (Sample Quantiles) .5 0 90 t\n206.28 307.08 427.32 528.12 cl\n1 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n206.28 416.51 m\n221.04 0
      l\no\n0 1 0 rgb\nnp\n206.28 450.01 m\n221.04 0 l\no\n0 0 1
      rgb\nnp\n206.28 297.43 m\n221.04 238.15 l\no\n1 0.6471 0
      rgb\nnp\n240.46 252.00 m\n133.65 288.00 l\no\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  Let us add points on the right to the normal:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      x=c( rnorm(1000), rnorm(100,mean=-5) )
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      hist(x,br=30);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n162.00 252.00 450.00 540.00
      cl\n/ps 13 def B 13 s\n0 0 0 rgb\n316.80 529.39 (Histogram of x) .5 0 0
      t\n/ps 11 def R 11 s\n316.80 266.04 (x) .5 0 0 t\n171.72 417.60
      (Frequency) .5 0 90 t\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75
      setlinewidth\n[] 0 setdash\nnp\n222.99 307.08 m\n170.56 0
      l\no\nnp\n222.99 307.08 m\n0 -5.40 l\no\nnp\n257.11 307.08 m\n0 -5.40
      l\no\nnp\n291.22 307.08 m\n0 -5.40 l\no\nnp\n325.33 307.08 m\n0 -5.40
      l\no\nnp\n359.44 307.08 m\n0 -5.40 l\no\nnp\n393.55 307.08 m\n0 -5.40
      l\no\n/ps 11 def R 11 s\n222.99 287.64 (-8) .5 0 0 t\n257.11 287.64
      (-6) .5 0 0 t\n291.22 287.64 (-4) .5 0 0 t\n325.33 287.64 (-2) .5 0 0
      t\n359.44 287.64 (0) .5 0 0 t\n393.55 287.64 (2) .5 0 0 t\nnp\n206.28
      315.27 m\n0 208.84 l\no\nnp\n206.28 315.27 m\n-5.40 0 l\no\nnp\n206.28
      367.48 m\n-5.40 0 l\no\nnp\n206.28 419.69 m\n-5.40 0 l\no\nnp\n206.28
      471.90 m\n-5.40 0 l\no\nnp\n206.28 524.11 m\n-5.40 0 l\no\n193.32
      315.27 (0) .5 0 90 t\n193.32 367.48 (50) .5 0 90 t\n193.32 419.69 (100)
      .5 0 90 t\n193.32 471.90 (150) .5 0 90 t\n193.32 524.11 (200) .5 0 90
      t\n206.28 307.08 427.32 528.12 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\n214.47 315.27 8.53 1.04 r p1\n222.99 315.27 8.53 0.00 r
      p1\n231.52 315.27 8.53 1.04 r p1\n240.05 315.27 8.53 4.18 r p1\n248.58
      315.27 8.53 12.53 r p1\n257.11 315.27 8.53 16.71 r p1\n265.63 315.27
      8.53 15.66 r p1\n274.16 315.27 8.53 18.80 r p1\n282.69 315.27 8.53
      17.75 r p1\n291.22 315.27 8.53 9.40 r p1\n299.74 315.27 8.53 6.27 r
      p1\n308.27 315.27 8.53 7.31 r p1\n316.80 315.27 8.53 18.80 r p1\n325.33
      315.27 8.53 46.99 r p1\n333.86 315.27 8.53 88.76 r p1\n342.38 315.27
      8.53 169.16 r p1\n350.91 315.27 8.53 202.58 r p1\n359.44 315.27 8.53
      204.67 r p1\n367.97 315.27 8.53 144.10 r p1\n376.49 315.27 8.53 106.51
      r p1\n385.02 315.27 8.53 41.77 r p1\n393.55 315.27 8.53 9.40 r
      p1\n402.08 315.27 8.53 3.13 r p1\n410.61 315.27 8.53 2.09 r
      p1\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      qqnorm(x);abline(0,1,col=2);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n310.46 453.58 2.02 c
      p1\n359.31 482.51 2.02 c p1\n319.44 459.05 2.02 c p1\n313.88 455.63
      2.02 c p1\n332.94 467.34 2.02 c p1\n329.64 465.60 2.02 c p1\n347.77
      476.73 2.02 c p1\n293.21 441.62 2.02 c p1\n349.57 477.66 2.02 c
      p1\n297.43 444.83 2.02 c p1\n339.09 471.14 2.02 c p1\n311.61 454.20
      2.02 c p1\n355.94 480.25 2.02 c p1\n303.27 449.08 2.02 c p1\n328.88
      465.15 2.02 c p1\n317.47 457.92 2.02 c p1\n312.18 454.54 2.02 c
      p1\n340.39 471.94 2.02 c p1\n279.48 424.65 2.02 c p1\n352.42 479.02
      2.02 c p1\n309.24 452.41 2.02 c p1\n332.38 467.19 2.02 c p1\n330.80
      466.28 2.02 c p1\n297.51 444.93 2.02 c p1\n296.48 444.37 2.02 c
      p1\n334.49 468.20 2.02 c p1\n322.28 460.99 2.02 c p1\n332.70 467.25
      2.02 c p1\n353.97 479.69 2.02 c p1\n290.18 438.79 2.02 c p1\n344.46
      474.50 2.02 c p1\n317.19 457.69 2.02 c p1\n326.63 463.53 2.02 c
      p1\n285.01 432.91 2.02 c p1\n300.50 447.35 2.02 c p1\n282.77 430.62
      2.02 c p1\n322.78 461.49 2.02 c p1\n375.88 491.65 2.02 c p1\n312.60
      454.82 2.02 c p1\n329.72 465.64 2.02 c p1\n335.58 468.86 2.02 c
      p1\n372.34 489.21 2.02 c p1\n383.02 494.51 2.02 c p1\n308.58 452.11
      2.02 c p1\n292.36 440.86 2.02 c p1\n321.64 460.65 2.02 c p1\n303.11
      448.84 2.02 c p1\n313.95 455.65 2.02 c p1\n294.33 442.48 2.02 c
      p1\n352.56 479.12 2.02 c p1\n317.96 458.21 2.02 c p1\n339.00 471.13
      2.02 c p1\n297.08 444.73 2.02 c p1\n318.38 458.59 2.02 c p1\n351.75
      478.85 2.02 c p1\n324.51 462.27 2.02 c p1\n290.89 439.53 2.02 c
      p1\n302.33 448.39 2.02 c p1\n297.94 445.41 2.02 c p1\n311.47 454.11
      2.02 c p1\n374.21 490.35 2.02 c p1\n291.78 440.46 2.02 c p1\n337.65
      470.22 2.02 c p1\n319.79 459.36 2.02 c p1\n307.19 451.19 2.02 c
      p1\n348.71 477.23 2.02 c p1\n364.18 484.73 2.02 c p1\n338.10 470.59
      2.02 c p1\n324.43 462.26 2.02 c p1\n347.65 476.69 2.02 c p1\n326.56
      463.50 2.02 c p1\n323.64 461.91 2.02 c p1\n365.60 486.10 2.02 c
      p1\n336.60 469.36 2.02 c p1\n378.77 492.69 2.02 c p1\n302.80 448.75
      2.02 c p1\n326.26 463.34 2.02 c p1\n362.43 484.24 2.02 c p1\n322.21
      460.94 2.02 c p1\n287.20 435.62 2.02 c p1\n308.15 451.79 2.02 c
      p1\n344.56 474.72 2.02 c p1\n316.62 457.33 2.02 c p1\n310.39 453.54
      2.02 c p1\n308.95 452.35 2.02 c p1\n352.15 478.99 2.02 c p1\n340.57
      472.00 2.02 c p1\n354.12 479.70 2.02 c p1\n286.29 434.63 2.02 c
      p1\n321.92 460.78 2.02 c p1\n298.94 446.34 2.02 c p1\n347.19 476.58
      2.02 c p1\n325.16 462.76 2.02 c p1\n316.06 456.89 2.02 c p1\n391.50
      500.84 2.02 c p1\n317.26 457.71 2.02 c p1\n368.23 486.90 2.02 c
      p1\n285.25 433.10 2.02 c p1\n332.78 467.29 2.02 c p1\n339.82 471.69
      2.02 c p1\n311.75 454.22 2.02 c p1\n329.87 465.69 2.02 c p1\n349.08
      477.40 2.02 c p1\n289.46 438.17 2.02 c p1\n296.21 444.13 2.02 c
      p1\n307.56 451.38 2.02 c p1\n277.02 417.41 2.02 c p1\n358.25 481.54
      2.02 c p1\n362.02 483.96 2.02 c p1\n316.20 457.09 2.02 c p1\n338.81
      470.97 2.02 c p1\n321.00 460.09 2.02 c p1\n324.36 462.22 2.02 c
      p1\n337.30 469.95 2.02 c p1\n361.81 483.63 2.02 c p1\n400.97 507.80
      2.02 c p1\n295.77 443.78 2.02 c p1\n292.26 440.78 2.02 c p1\n387.07
      497.38 2.02 c p1\n328.95 465.18 2.02 c p1\n329.49 465.53 2.02 c
      p1\n358.42 481.73 2.02 c p1\n315.50 456.67 2.02 c p1\n350.57 478.25
      2.02 c p1\n331.58 466.69 2.02 c p1\n333.67 467.62 2.02 c p1\n322.42
      461.02 2.02 c p1\n331.35 466.48 2.02 c p1\n327.97 464.48 2.02 c
      p1\n365.36 485.85 2.02 c p1\n328.42 464.68 2.02 c p1\n346.29 476.27
      2.02 c p1\n321.56 460.59 2.02 c p1\n277.35 420.43 2.02 c p1\n337.21
      469.84 2.02 c p1\n336.69 469.40 2.02 c p1\n313.17 455.25 2.02 c
      p1\n275.70 412.15 2.02 c p1\n277.82 421.58 2.02 c p1\n316.13 456.92
      2.02 c p1\n330.10 465.79 2.02 c p1\n315.92 456.77 2.02 c p1\n341.63
      472.61 2.02 c p1\n275.35 405.95 2.02 c p1\n342.61 473.01 2.02 c
      p1\n287.09 435.40 2.02 c p1\n352.29 479.01 2.02 c p1\n330.18 465.79
      2.02 c p1\n334.32 468.14 2.02 c p1\n319.23 458.92 2.02 c p1\n357.90
      481.32 2.02 c p1\n304.72 449.69 2.02 c p1\n329.03 465.20 2.02 c
      p1\n282.64 430.60 2.02 c p1\n353.40 479.33 2.02 c p1\n319.16 458.89
      2.02 c p1\n318.52 458.74 2.02 c p1\n329.41 465.48 2.02 c p1\n376.33
      491.73 2.02 c p1\n373.44 489.52 2.02 c p1\n283.79 431.68 2.02 c
      p1\n321.42 460.48 2.02 c p1\n340.10 471.85 2.02 c p1\n369.10 487.32
      2.02 c p1\n322.63 461.48 2.02 c p1\n357.06 481.01 2.02 c p1\n299.93
      446.90 2.02 c p1\n349.44 477.62 2.02 c p1\n299.61 446.56 2.02 c
      p1\n359.49 482.58 2.02 c p1\n327.60 464.03 2.02 c p1\n355.01 479.95
      2.02 c p1\n354.56 479.78 2.02 c p1\n314.23 455.83 2.02 c p1\n306.60
      450.90 2.02 c p1\n332.54 467.23 2.02 c p1\n309.17 452.41 2.02 c
      p1\n293.87 442.18 2.02 c p1\n326.85 463.65 2.02 c p1\n286.41 434.76
      2.02 c p1\n315.36 456.60 2.02 c p1\n356.90 481.00 2.02 c p1\n296.12
      444.11 2.02 c p1\n322.13 460.93 2.02 c p1\n277.97 421.69 2.02 c
      p1\n341.73 472.65 2.02 c p1\n356.10 480.31 2.02 c p1\n339.64 471.66
      2.02 c p1\n315.57 456.67 2.02 c p1\n285.36 433.47 2.02 c p1\n330.41
      465.84 2.02 c p1\n284.28 432.04 2.02 c p1\n383.74 494.51 2.02 c
      p1\n285.83 434.02 2.02 c p1\n286.75 434.97 2.02 c p1\n329.18 465.40
      2.02 c p1\n335.92 468.96 2.02 c p1\n314.58 456.07 2.02 c p1\n341.43
      472.39 2.02 c p1\n281.31 426.99 2.02 c p1\n326.33 463.36 2.02 c
      p1\n316.98 457.55 2.02 c p1\n335.66 468.88 2.02 c p1\n334.08 467.90
      2.02 c p1\n333.75 467.64 2.02 c p1\n307.34 451.24 2.02 c p1\n320.07
      459.44 2.02 c p1\n312.53 454.78 2.02 c p1\n352.84 479.19 2.02 c
      p1\n287.75 436.92 2.02 c p1\n302.96 448.76 2.02 c p1\n339.36 471.42
      2.02 c p1\n283.66 431.40 2.02 c p1\n294.97 442.97 2.02 c p1\n316.27
      457.10 2.02 c p1\n304.65 449.69 2.02 c p1\n277.19 418.68 2.02 c
      p1\n308.88 452.33 2.02 c p1\n293.50 441.73 2.02 c p1\n326.19 463.29
      2.02 c p1\n344.77 475.05 2.02 c p1\n322.56 461.35 2.02 c p1\n324.72
      462.45 2.02 c p1\n349.20 477.59 2.02 c p1\n318.66 458.77 2.02 c
      p1\n345.52 475.72 2.02 c p1\n297.68 445.09 2.02 c p1\n316.34 457.12
      2.02 c p1\n335.24 468.66 2.02 c p1\n344.88 475.09 2.02 c p1\n308.44
      452.06 2.02 c p1\n333.50 467.57 2.02 c p1\n320.43 459.76 2.02 c
      p1\n350.19 477.96 2.02 c p1\n324.22 462.18 2.02 c p1\n301.06 447.61
      2.02 c p1\n290.99 439.53 2.02 c p1\n330.56 466.09 2.02 c p1\n333.10
      467.39 2.02 c p1\n338.01 470.50 2.02 c p1\n306.90 451.12 2.02 c
      p1\n330.88 466.35 2.02 c p1\n353.26 479.33 2.02 c p1\n325.38 462.95
      2.02 c p1\n286.97 435.09 2.02 c p1\n300.01 446.99 2.02 c p1\n346.07
      475.93 2.02 c p1\n276.20 414.52 2.02 c p1\n316.55 457.26 2.02 c
      p1\n343.73 474.04 2.02 c p1\n317.12 457.67 2.02 c p1\n368.81 487.09
      2.02 c p1\n348.12 476.88 2.02 c p1\n325.97 463.22 2.02 c p1\n334.66
      468.37 2.02 c p1\n320.36 459.73 2.02 c p1\n313.60 455.41 2.02 c
      p1\n381.68 493.97 2.02 c p1\n331.74 466.75 2.02 c p1\n318.24 458.55
      2.02 c p1\n345.96 475.86 2.02 c p1\n290.38 438.88 2.02 c p1\n356.25
      480.45 2.02 c p1\n367.14 486.62 2.02 c p1\n313.03 455.08 2.02 c
      p1\n280.48 426.22 2.02 c p1\n332.14 467.06 2.02 c p1\n307.93 451.58
      2.02 c p1\n336.26 469.15 2.02 c p1\n312.89 454.92 2.02 c p1\n335.16
      468.66 2.02 c p1\n331.90 466.88 2.02 c p1\n312.96 454.97 2.02 c
      p1\n390.25 499.71 2.02 c p1\n314.16 455.79 2.02 c p1\n327.45 463.98
      2.02 c p1\n329.56 465.58 2.02 c p1\n315.71 456.69 2.02 c p1\n319.37
      459.04 2.02 c p1\n331.03 466.40 2.02 c p1\n325.67 463.10 2.02 c
      p1\n314.65 456.09 2.02 c p1\n316.84 457.46 2.02 c p1\n312.32 454.56
      2.02 c p1\n336.34 469.17 2.02 c p1\n317.05 457.62 2.02 c p1\n337.92
      470.38 2.02 c p1\n340.20 471.89 2.02 c p1\n315.64 456.69 2.02 c
      p1\n330.64 466.15 2.02 c p1\n328.27 464.60 2.02 c p1\n320.50 459.79
      2.02 c p1\n347.54 476.69 2.02 c p1\n337.48 470.12 2.02 c p1\n320.57
      459.94 2.02 c p1\n358.77 481.85 2.02 c p1\n304.27 449.48 2.02 c
      p1\n339.27 471.28 2.02 c p1\n330.49 465.98 2.02 c p1\n360.82 483.05
      2.02 c p1\n305.03 449.75 2.02 c p1\n309.38 452.45 2.02 c p1\n279.77
      425.39 2.02 c p1\n292.45 440.93 2.02 c p1\n307.49 451.34 2.02 c
      p1\n285.13 432.96 2.02 c p1\n365.85 486.22 2.02 c p1\n304.04 449.43
      2.02 c p1\n340.48 471.95 2.02 c p1\n302.65 448.65 2.02 c p1\n345.63
      475.76 2.02 c p1\n301.14 447.69 2.02 c p1\n359.86 482.68 2.02 c
      p1\n365.12 485.42 2.02 c p1\n315.15 456.48 2.02 c p1\n355.16 480.00
      2.02 c p1\n299.28 446.44 2.02 c p1\n321.14 460.27 2.02 c p1\n300.90
      447.56 2.02 c p1\n339.73 471.68 2.02 c p1\n360.43 482.87 2.02 c
      p1\n324.80 462.62 2.02 c p1\n302.72 448.68 2.02 c p1\n285.60 433.61
      2.02 c p1\n310.03 452.93 2.02 c p1\n314.02 455.77 2.02 c p1\n298.02
      445.43 2.02 c p1\n317.40 457.80 2.02 c p1\n278.13 421.69 2.02 c
      p1\n304.80 449.70 2.02 c p1\n285.72 433.73 2.02 c p1\n319.72 459.30
      2.02 c p1\n294.69 442.88 2.02 c p1\n316.69 457.38 2.02 c p1\n320.22
      459.60 2.02 c p1\n324.14 462.10 2.02 c p1\n313.53 455.37 2.02 c
      p1\n295.50 443.44 2.02 c p1\n338.45 470.78 2.02 c p1\n315.22 456.51
      2.02 c p1\n343.62 474.02 2.02 c p1\n310.82 453.69 2.02 c p1\n336.86
      469.56 2.02 c p1\n278.89 423.12 2.02 c p1\n363.96 484.72 2.02 c
      p1\n327.90 464.47 2.02 c p1\n381.05 493.57 2.02 c p1\n348.59 477.23
      2.02 c p1\n384.51 494.93 2.02 c p1\n280.34 425.56 2.02 c p1\n361.61
      483.62 2.02 c p1\n346.40 476.31 2.02 c p1\n336.52 469.28 2.02 c
      p1\n300.74 447.50 2.02 c p1\n309.82 452.68 2.02 c p1\n293.59 441.89
      2.02 c p1\n332.22 467.12 2.02 c p1\n318.10 458.35 2.02 c p1\n286.64
      434.87 2.02 c p1\n354.27 479.70 2.02 c p1\n288.72 437.67 2.02 c
      p1\n366.61 486.43 2.02 c p1\n324.00 462.02 2.02 c p1\n289.67 438.31
      2.02 c p1\n333.99 467.83 2.02 c p1\n349.81 477.85 2.02 c p1\n279.19
      424.37 2.02 c p1\n297.77 445.31 2.02 c p1\n334.74 468.46 2.02 c
      p1\n351.48 478.78 2.02 c p1\n320.29 459.64 2.02 c p1\n352.98 479.19
      2.02 c p1\n311.04 453.78 2.02 c p1\n375.45 491.54 2.02 c p1\n309.89
      452.87 2.02 c p1\n344.67 474.88 2.02 c p1\n292.74 441.25 2.02 c
      p1\n301.46 447.89 2.02 c p1\n340.29 471.92 2.02 c p1\n318.95 458.85
      2.02 c p1\n285.95 434.18 2.02 c p1\n301.78 448.00 2.02 c p1\n360.62
      482.95 2.02 c p1\n311.96 454.33 2.02 c p1\n368.52 486.93 2.02 c
      p1\n289.87 438.45 2.02 c p1\n301.94 448.17 2.02 c p1\n303.19 449.03
      2.02 c p1\n294.60 442.77 2.02 c p1\n286.86 434.99 2.02 c p1\n335.83
      468.93 2.02 c p1\n338.36 470.72 2.02 c p1\n305.63 450.09 2.02 c
      p1\n287.86 436.96 2.02 c p1\n388.05 497.75 2.02 c p1\n361.41 483.25
      2.02 c p1\n322.06 460.85 2.02 c p1\n318.59 458.77 2.02 c p1\n341.15
      472.21 2.02 c p1\n307.78 451.47 2.02 c p1\n291.09 439.61 2.02 c
      p1\n323.06 461.57 2.02 c p1\n298.36 445.97 2.02 c p1\n297.85 445.39
      2.02 c p1\n350.70 478.32 2.02 c p1\n354.86 479.94 2.02 c p1\n317.89
      458.17 2.02 c p1\n327.30 463.81 2.02 c p1\n342.22 472.87 2.02 c
      p1\n326.78 463.62 2.02 c p1\n304.95 449.74 2.02 c p1\n323.78 461.97
      2.02 c p1\n325.23 462.85 2.02 c p1\n353.12 479.29 2.02 c p1\n333.83
      467.68 2.02 c p1\n305.33 450.04 2.02 c p1\n357.23 481.07 2.02 c
      p1\n293.31 441.65 2.02 c p1\n382.34 494.32 2.02 c p1\n284.65 432.24
      2.02 c p1\n297.00 444.59 2.02 c p1\n334.24 468.10 2.02 c p1\n311.89
      454.32 2.02 c p1\n331.66 466.72 2.02 c p1\n295.06 442.98 2.02 c
      p1\n286.52 434.83 2.02 c p1\n336.00 468.98 2.02 c p1\n319.65 459.21
      2.02 c p1\n298.28 445.66 2.02 c p1\n306.15 450.71 2.02 c p1\n294.42
      442.60 2.02 c p1\n348.00 476.83 2.02 c p1\n312.46 454.72 2.02 c
      p1\n290.69 439.34 2.02 c p1\n367.95 486.82 2.02 c p1\n344.98 475.42
      2.02 c p1\n333.59 467.61 2.02 c p1\n290.28 438.81 2.02 c p1\n289.56
      438.24 2.02 c p1\n301.86 448.02 2.02 c p1\n301.38 447.89 2.02 c
      p1\n306.82 451.12 2.02 c p1\n305.25 449.95 2.02 c p1\n328.20 464.53
      2.02 c p1\n281.72 428.21 2.02 c p1\n345.41 475.63 2.02 c p1\n287.31
      435.71 2.02 c p1\n315.29 456.55 2.02 c p1\n327.07 463.68 2.02 c
      p1\n306.00 450.46 2.02 c p1\n340.01 471.80 2.02 c p1\n276.86 417.25
      2.02 c p1\n323.28 461.71 2.02 c p1\n319.86 459.37 2.02 c p1\n409.25
      517.05 2.02 c p1\n311.32 453.99 2.02 c p1\n314.80 456.23 2.02 c
      p1\n310.89 453.76 2.02 c p1\n314.51 455.99 2.02 c p1\n297.60 444.99
      2.02 c p1\n369.40 487.61 2.02 c p1\n305.93 450.41 2.02 c p1\n300.18
      447.05 2.02 c p1\n317.61 457.98 2.02 c p1\n313.38 455.32 2.02 c
      p1\n284.89 432.87 2.02 c p1\n309.67 452.65 2.02 c p1\n324.94 462.66
      2.02 c p1\n356.58 480.62 2.02 c p1\n305.85 450.20 2.02 c p1\n371.64
      488.36 2.02 c p1\n370.33 488.15 2.02 c p1\n297.26 444.75 2.02 c
      p1\n351.09 478.47 2.02 c p1\n317.82 458.15 2.02 c p1\n317.33 457.73
      2.02 c p1\n373.82 489.88 2.02 c p1\n319.58 459.17 2.02 c p1\n333.34
      467.48 2.02 c p1\n328.57 464.71 2.02 c p1\n333.26 467.42 2.02 c
      p1\n289.77 438.31 2.02 c p1\n317.54 457.94 2.02 c p1\n353.83 479.64
      2.02 c p1\n299.11 446.35 2.02 c p1\n316.48 457.23 2.02 c p1\n323.86
      461.98 2.02 c p1\n280.06 425.44 2.02 c p1\n356.74 480.77 2.02 c
      p1\n291.38 440.01 2.02 c p1\n327.67 464.25 2.02 c p1\n313.45 455.32
      2.02 c p1\n339.45 471.54 2.02 c p1\n307.04 451.16 2.02 c p1\n287.64
      436.30 2.02 c p1\n318.17 458.55 2.02 c p1\n323.35 461.75 2.02 c
      p1\n306.23 450.71 2.02 c p1\n288.08 437.06 2.02 c p1\n287.53 436.12
      2.02 c p1\n303.81 449.31 2.02 c p1\n278.59 422.38 2.02 c p1\n321.28
      460.44 2.02 c p1\n346.63 476.41 2.02 c p1\n299.85 446.83 2.02 c
      p1\n364.41 484.79 2.02 c p1\n350.06 477.94 2.02 c p1\n373.06 489.44
      2.02 c p1\n304.57 449.68 2.02 c p1\n355.47 480.03 2.02 c p1\n332.30
      467.16 2.02 c p1\n348.24 476.96 2.02 c p1\n304.42 449.53 2.02 c
      p1\n371.30 488.32 2.02 c p1\n274.83 400.84 2.02 c p1\n304.19 449.48
      2.02 c p1\n331.27 466.43 2.02 c p1\n325.82 463.19 2.02 c p1\n314.30
      455.86 2.02 c p1\n312.68 454.87 2.02 c p1\n346.85 476.48 2.02 c
      p1\n295.33 443.27 2.02 c p1\n297.17 444.74 2.02 c p1\n321.21 460.43
      2.02 c p1\n343.42 473.55 2.02 c p1\n311.82 454.26 2.02 c p1\n331.50
      466.68 2.02 c p1\n359.13 482.09 2.02 c p1\n345.20 475.61 2.02 c
      p1\n284.03 431.86 2.02 c p1\n349.32 477.59 2.02 c p1\n295.95 443.92
      2.02 c p1\n298.44 446.11 2.02 c p1\n335.49 468.80 2.02 c p1\n305.40
      450.05 2.02 c p1\n299.69 446.63 2.02 c p1\n312.11 454.45 2.02 c
      p1\n310.97 453.77 2.02 c p1\n314.72 456.20 2.02 c p1\n295.15 443.21
      2.02 c p1\n330.72 466.19 2.02 c p1\n306.08 450.47 2.02 c p1\n326.04
      463.25 2.02 c p1\n335.07 468.59 2.02 c p1\n309.96 452.92 2.02 c
      p1\n282.25 428.75 2.02 c p1\n329.79 465.66 2.02 c p1\n338.72 470.97
      2.02 c p1\n309.46 452.52 2.02 c p1\n308.66 452.16 2.02 c p1\n356.41
      480.60 2.02 c p1\n311.18 453.92 2.02 c p1\n327.22 463.79 2.02 c
      p1\n318.73 458.81 2.02 c p1\n341.53 472.56 2.02 c p1\n289.35 438.07
      2.02 c p1\n326.41 463.37 2.02 c p1\n351.88 478.96 2.02 c p1\n321.35
      460.45 2.02 c p1\n343.12 473.37 2.02 c p1\n308.22 451.84 2.02 c
      p1\n304.11 449.46 2.02 c p1\n328.05 464.48 2.02 c p1\n284.52 432.24
      2.02 c p1\n351.22 478.53 2.02 c p1\n320.92 460.05 2.02 c p1\n307.71
      451.43 2.02 c p1\n358.60 481.85 2.02 c p1\n347.31 476.62 2.02 c
      p1\n366.10 486.32 2.02 c p1\n342.41 472.93 2.02 c p1\n338.91 470.98
      2.02 c p1\n306.45 450.79 2.02 c p1\n348.47 477.21 2.02 c p1\n306.97
      451.15 2.02 c p1\n343.01 473.36 2.02 c p1\n342.32 472.88 2.02 c
      p1\n354.71 479.82 2.02 c p1\n327.00 463.68 2.02 c p1\n369.70 487.65
      2.02 c p1\n335.32 468.67 2.02 c p1\n332.46 467.20 2.02 c p1\n305.18
      449.84 2.02 c p1\n304.88 449.72 2.02 c p1\n320.15 459.47 2.02 c
      p1\n308.00 451.76 2.02 c p1\n371.98 489.11 2.02 c p1\n343.32 473.47
      2.02 c p1\n339.18 471.15 2.02 c p1\n295.42 443.36 2.02 c p1\n310.10
      452.96 2.02 c p1\n296.30 444.13 2.02 c p1\n305.78 450.18 2.02 c
      p1\n320.78 460.02 2.02 c p1\n298.78 446.27 2.02 c p1\n342.02 472.84
      2.02 c p1\n311.39 454.01 2.02 c p1\n279.63 425.25 2.02 c p1\n309.31
      452.42 2.02 c p1\n280.20 425.50 2.02 c p1\n351.61 478.82 2.02 c
      p1\n327.15 463.77 2.02 c p1\n283.03 430.85 2.02 c p1\n324.65 462.40
      2.02 c p1\n337.39 469.98 2.02 c p1\n321.49 460.52 2.02 c p1\n313.10
      455.09 2.02 c p1\n306.67 450.91 2.02 c p1\n334.82 468.52 2.02 c
      p1\n323.14 461.58 2.02 c p1\n336.09 469.09 2.02 c p1\n346.51 476.36
      2.02 c p1\n288.62 437.59 2.02 c p1\n358.95 482.02 2.02 c p1\n300.34
      447.23 2.02 c p1\n340.95 472.12 2.02 c p1\n299.03 446.34 2.02 c
      p1\n350.96 478.46 2.02 c p1\n361.21 483.25 2.02 c p1\n404.34 509.31
      2.02 c p1\n299.77 446.67 2.02 c p1\n308.07 451.76 2.02 c p1\n331.42
      466.52 2.02 c p1\n347.08 476.52 2.02 c p1\n370.64 488.19 2.02 c
      p1\n279.91 425.41 2.02 c p1\n316.41 457.21 2.02 c p1\n277.66 421.47
      2.02 c p1\n322.49 461.30 2.02 c p1\n316.91 457.47 2.02 c p1\n311.11
      453.85 2.02 c p1\n308.73 452.21 2.02 c p1\n332.06 467.02 2.02 c
      p1\n313.74 455.51 2.02 c p1\n300.26 447.10 2.02 c p1\n324.29 462.22
      2.02 c p1\n302.02 448.18 2.02 c p1\n375.03 491.47 2.02 c p1\n277.50
      420.66 2.02 c p1\n330.25 465.80 2.02 c p1\n385.31 495.40 2.02 c
      p1\n336.78 469.42 2.02 c p1\n308.29 451.89 2.02 c p1\n333.91 467.69
      2.02 c p1\n344.35 474.47 2.02 c p1\n303.58 449.27 2.02 c p1\n335.75
      468.88 2.02 c p1\n302.25 448.29 2.02 c p1\n291.28 439.98 2.02 c
      p1\n357.73 481.26 2.02 c p1\n301.54 447.96 2.02 c p1\n355.63 480.06
      2.02 c p1\n325.89 463.21 2.02 c p1\n310.75 453.67 2.02 c p1\n298.11
      445.44 2.02 c p1\n334.41 468.20 2.02 c p1\n337.83 470.37 2.02 c
      p1\n330.33 465.82 2.02 c p1\n290.79 439.35 2.02 c p1\n299.52 446.54
      2.02 c p1\n353.54 479.41 2.02 c p1\n419.13 519.93 2.02 c p1\n284.77
      432.64 2.02 c p1\n325.60 463.10 2.02 c p1\n336.95 469.61 2.02 c
      p1\n345.09 475.44 2.02 c p1\n367.68 486.67 2.02 c p1\n313.81 455.56
      2.02 c p1\n320.64 460.01 2.02 c p1\n316.76 457.45 2.02 c p1\n350.32
      478.03 2.02 c p1\n334.91 468.53 2.02 c p1\n303.50 449.27 2.02 c
      p1\n322.99 461.56 2.02 c p1\n342.81 473.27 2.02 c p1\n289.04 437.83
      2.02 c p1\n319.93 459.38 2.02 c p1\n288.51 437.59 2.02 c p1\n344.25
      474.40 2.02 c p1\n331.11 466.41 2.02 c p1\n302.41 448.53 2.02 c
      p1\n308.51 452.09 2.02 c p1\n386.16 495.89 2.02 c p1\n281.99 428.51
      2.02 c p1\n296.74 444.49 2.02 c p1\n281.45 428.01 2.02 c p1\n320.85
      460.04 2.02 c p1\n294.88 442.92 2.02 c p1\n289.25 438.01 2.02 c
      p1\n307.85 451.50 2.02 c p1\n344.04 474.29 2.02 c p1\n353.69 479.60
      2.02 c p1\n328.12 464.51 2.02 c p1\n294.15 442.42 2.02 c p1\n338.27
      470.65 2.02 c p1\n306.53 450.83 2.02 c p1\n302.18 448.23 2.02 c
      p1\n374.62 490.86 2.02 c p1\n326.93 463.67 2.02 c p1\n315.43 456.65
      2.02 c p1\n309.53 452.54 2.02 c p1\n292.84 441.25 2.02 c p1\n309.02
      452.37 2.02 c p1\n360.05 482.69 2.02 c p1\n298.69 446.22 2.02 c
      p1\n298.53 446.18 2.02 c p1\n370.97 488.29 2.02 c p1\n345.31 475.61
      2.02 c p1\n294.05 442.32 2.02 c p1\n325.31 462.91 2.02 c p1\n300.10
      447.03 2.02 c p1\n305.10 449.78 2.02 c p1\n317.75 458.05 2.02 c
      p1\n292.07 440.67 2.02 c p1\n344.14 474.32 2.02 c p1\n300.66 447.47
      2.02 c p1\n361.01 483.24 2.02 c p1\n308.80 452.21 2.02 c p1\n312.25
      454.54 2.02 c p1\n334.57 468.25 2.02 c p1\n295.68 443.63 2.02 c
      p1\n312.75 454.89 2.02 c p1\n343.83 474.20 2.02 c p1\n358.07 481.40
      2.02 c p1\n311.68 454.21 2.02 c p1\n306.38 450.77 2.02 c p1\n325.02
      462.69 2.02 c p1\n283.28 430.95 2.02 c p1\n394.46 503.27 2.02 c
      p1\n319.51 459.12 2.02 c p1\n303.35 449.24 2.02 c p1\n319.30 458.97
      2.02 c p1\n362.64 484.38 2.02 c p1\n317.68 457.99 2.02 c p1\n313.31
      455.27 2.02 c p1\n296.91 444.57 2.02 c p1\n314.87 456.31 2.02 c
      p1\n278.44 422.09 2.02 c p1\n376.79 492.35 2.02 c p1\n307.63 451.42
      2.02 c p1\n288.40 437.58 2.02 c p1\n337.56 470.21 2.02 c p1\n342.71
      473.08 2.02 c p1\n296.82 444.54 2.02 c p1\n326.48 463.38 2.02 c
      p1\n338.54 470.79 2.02 c p1\n320.00 459.39 2.02 c p1\n324.87 462.63
      2.02 c p1\n341.82 472.74 2.02 c p1\n314.09 455.78 2.02 c p1\n314.37
      455.89 2.02 c p1\n305.48 450.08 2.02 c p1\n289.14 437.98 2.02 c
      p1\n294.24 442.46 2.02 c p1\n348.35 477.19 2.02 c p1\n318.80 458.82
      2.02 c p1\n281.04 426.85 2.02 c p1\n288.83 437.74 2.02 c p1\n333.18
      467.39 2.02 c p1\n318.03 458.30 2.02 c p1\n297.34 444.80 2.02 c
      p1\n329.95 465.75 2.02 c p1\n290.08 438.78 2.02 c p1\n319.09 458.88
      2.02 c p1\n332.86 467.31 2.02 c p1\n303.96 449.38 2.02 c p1\n367.41
      486.65 2.02 c p1\n305.70 450.17 2.02 c p1\n392.89 501.48 2.02 c
      p1\n334.16 467.92 2.02 c p1\n293.96 442.25 2.02 c p1\n291.19 439.78
      2.02 c p1\n296.65 444.48 2.02 c p1\n333.02 467.38 2.02 c p1\n283.54
      431.09 2.02 c p1\n303.04 448.76 2.02 c p1\n336.43 469.18 2.02 c
      p1\n342.12 472.86 2.02 c p1\n287.42 435.79 2.02 c p1\n281.85 428.47
      2.02 c p1\n281.58 428.19 2.02 c p1\n370.01 487.93 2.02 c p1\n298.86
      446.32 2.02 c p1\n305.55 450.08 2.02 c p1\n345.85 475.83 2.02 c
      p1\n363.07 484.57 2.02 c p1\n346.96 476.49 2.02 c p1\n294.79 442.91
      2.02 c p1\n281.18 426.91 2.02 c p1\n286.18 434.61 2.02 c p1\n333.42
      467.51 2.02 c p1\n282.38 428.84 2.02 c p1\n348.83 477.25 2.02 c
      p1\n284.16 432.03 2.02 c p1\n341.34 472.37 2.02 c p1\n288.19 437.31
      2.02 c p1\n323.50 461.79 2.02 c p1\n315.78 456.73 2.02 c p1\n308.37
      452.04 2.02 c p1\n279.04 423.69 2.02 c p1\n293.68 442.11 2.02 c
      p1\n307.41 451.32 2.02 c p1\n343.93 474.26 2.02 c p1\n302.57 448.58
      2.02 c p1\n335.41 468.80 2.02 c p1\n303.73 449.28 2.02 c p1\n366.87
      486.59 2.02 c p1\n323.71 461.96 2.02 c p1\n313.24 455.27 2.02 c
      p1\n284.40 432.22 2.02 c p1\n338.18 470.61 2.02 c p1\n310.61 453.61
      2.02 c p1\n295.24 443.23 2.02 c p1\n357.56 481.24 2.02 c p1\n315.85
      456.76 2.02 c p1\n334.99 468.54 2.02 c p1\n328.80 465.12 2.02 c
      p1\n364.65 484.80 2.02 c p1\n276.54 415.70 2.02 c p1\n276.37 415.45
      2.02 c p1\n351.35 478.65 2.02 c p1\n321.85 460.72 2.02 c p1\n350.44
      478.21 2.02 c p1\n282.12 428.56 2.02 c p1\n342.51 472.99 2.02 c
      p1\n331.19 466.42 2.02 c p1\n363.73 484.71 2.02 c p1\n282.51 429.78
      2.02 c p1\n341.05 472.20 2.02 c p1\n328.35 464.61 2.02 c p1\n342.91
      473.35 2.02 c p1\n309.60 452.57 2.02 c p1\n289.98 438.66 2.02 c
      p1\n366.36 486.41 2.02 c p1\n355.32 480.02 2.02 c p1\n326.70 463.61
      2.02 c p1\n295.59 443.50 2.02 c p1\n323.57 461.83 2.02 c p1\n318.31
      458.59 2.02 c p1\n362.22 484.00 2.02 c p1\n285.48 433.59 2.02 c
      p1\n292.93 441.35 2.02 c p1\n301.62 447.96 2.02 c p1\n350.83 478.42
      2.02 c p1\n340.86 472.06 2.02 c p1\n287.97 437.04 2.02 c p1\n347.42
      476.63 2.02 c p1\n278.74 422.91 2.02 c p1\n288.93 437.81 2.02 c
      p1\n322.71 461.49 2.02 c p1\n377.75 492.56 2.02 c p1\n299.19 446.40
      2.02 c p1\n300.98 447.58 2.02 c p1\n318.45 458.73 2.02 c p1\n310.25
      453.43 2.02 c p1\n324.58 462.39 2.02 c p1\n345.74 475.81 2.02 c
      p1\n296.56 444.38 2.02 c p1\n322.92 461.55 2.02 c p1\n307.12 451.18
      2.02 c p1\n292.65 441.04 2.02 c p1\n314.94 456.44 2.02 c p1\n363.51
      484.68 2.02 c p1\n303.65 449.28 2.02 c p1\n343.52 473.90 2.02 c
      p1\n291.87 440.49 2.02 c p1\n311.25 453.93 2.02 c p1\n298.61 446.22
      2.02 c p1\n323.42 461.77 2.02 c p1\n302.10 448.19 2.02 c p1\n396.26
      503.88 2.02 c p1\n331.98 467.00 2.02 c p1\n301.70 447.97 2.02 c
      p1\n325.45 463.00 2.02 c p1\n372.70 489.24 2.02 c p1\n283.91 431.75
      2.02 c p1\n325.75 463.16 2.02 c p1\n332.62 467.25 2.02 c p1\n309.09
      452.38 2.02 c p1\n328.65 464.74 2.02 c p1\n312.82 454.89 2.02 c
      p1\n337.04 469.64 2.02 c p1\n331.82 466.78 2.02 c p1\n341.92 472.81
      2.02 c p1\n324.07 462.06 2.02 c p1\n296.39 444.33 2.02 c p1\n310.18
      453.08 2.02 c p1\n292.55 441.00 2.02 c p1\n352.70 479.16 2.02 c
      p1\n298.19 445.53 2.02 c p1\n360.24 482.83 2.02 c p1\n322.85 461.55
      2.02 c p1\n389.10 498.50 2.02 c p1\n340.67 472.01 2.02 c p1\n349.94
      477.88 2.02 c p1\n352.02 478.97 2.02 c p1\n291.68 440.38 2.02 c
      p1\n348.95 477.26 2.02 c p1\n346.74 476.41 2.02 c p1\n313.67 455.48
      2.02 c p1\n326.11 463.27 2.02 c p1\n309.74 452.68 2.02 c p1\n280.76
      426.47 2.02 c p1\n275.53 409.43 2.02 c p1\n363.29 484.58 2.02 c
      p1\n379.87 493.29 2.02 c p1\n354.41 479.73 2.02 c p1\n337.12 469.71
      2.02 c p1\n312.04 454.37 2.02 c p1\n359.68 482.65 2.02 c p1\n315.01
      456.45 2.02 c p1\n377.26 492.56 2.02 c p1\n307.27 451.22 2.02 c
      p1\n310.54 453.60 2.02 c p1\n320.71 460.01 2.02 c p1\n299.44 446.53
      2.02 c p1\n303.42 449.25 2.02 c p1\n311.54 454.17 2.02 c p1\n301.30
      447.79 2.02 c p1\n355.78 480.25 2.02 c p1\n343.22 473.46 2.02 c
      p1\n321.07 460.18 2.02 c p1\n302.88 448.76 2.02 c p1\n341.24 472.26
      2.02 c p1\n293.12 441.61 2.02 c p1\n288.29 437.54 2.02 c p1\n323.21
      461.66 2.02 c p1\n329.10 465.27 2.02 c p1\n291.48 440.30 2.02 c
      p1\n280.62 426.23 2.02 c p1\n283.16 430.87 2.02 c p1\n362.86 484.44
      2.02 c p1\n315.99 456.88 2.02 c p1\n283.41 431.02 2.02 c p1\n294.51
      442.65 2.02 c p1\n314.44 455.95 2.02 c p1\n379.31 493.02 2.02 c
      p1\n346.18 476.07 2.02 c p1\n321.71 460.66 2.02 c p1\n327.37 463.85
      2.02 c p1\n291.97 440.63 2.02 c p1\n328.72 464.76 2.02 c p1\n302.49
      448.54 2.02 c p1\n330.95 466.37 2.02 c p1\n282.90 430.65 2.02 c
      p1\n321.99 460.83 2.02 c p1\n310.68 453.65 2.02 c p1\n349.69 477.77
      2.02 c p1\n279.33 424.41 2.02 c p1\n327.75 464.40 2.02 c p1\n295.86
      443.83 2.02 c p1\n315.08 456.45 2.02 c p1\n290.48 438.89 2.02 c
      p1\n329.26 465.41 2.02 c p1\n337.74 470.31 2.02 c p1\n301.22 447.69
      2.02 c p1\n364.88 484.90 2.02 c p1\n286.06 434.35 2.02 c p1\n336.17
      469.13 2.02 c p1\n347.88 476.82 2.02 c p1\n325.53 463.04 2.02 c
      p1\n327.52 464.00 2.02 c p1\n299.36 446.45 2.02 c p1\n340.76 472.01
      2.02 c p1\n398.38 504.61 2.02 c p1\n276.70 416.61 2.02 c p1\n300.58
      447.43 2.02 c p1\n312.39 454.58 2.02 c p1\n292.17 440.74 2.02 c
      p1\n330.02 465.77 2.02 c p1\n300.82 447.51 2.02 c p1\n293.78 442.12
      2.02 c p1\n293.40 441.67 2.02 c p1\n304.50 449.64 2.02 c p1\n306.75
      450.93 2.02 c p1\n339.55 471.64 2.02 c p1\n303.88 449.31 2.02 c
      p1\n328.50 464.70 2.02 c p1\n321.78 460.67 2.02 c p1\n339.92 471.78
      2.02 c p1\n310.32 453.46 2.02 c p1\n378.25 492.59 2.02 c p1\n325.09
      462.72 2.02 c p1\n291.58 440.33 2.02 c p1\n380.45 493.42 2.02 c
      p1\n290.59 439.12 2.02 c p1\n329.33 465.42 2.02 c p1\n304.34 449.52
      2.02 c p1\n296.04 443.95 2.02 c p1\n306.30 450.74 2.02 c p1\n300.42
      447.34 2.02 c p1\n280.90 426.55 2.02 c p1\n327.82 464.44 2.02 c
      p1\n319.02 458.86 2.02 c p1\n322.35 461.02 2.02 c p1\n318.88 458.83
      2.02 c p1\n357.40 481.11 2.02 c p1\n293.03 441.45 2.02 c p1\n323.93
      461.98 2.02 c p1\n338.63 470.82 2.02 c p1\n263.90 369.76 2.02 c
      p1\n274.11 393.92 2.02 c p1\n249.09 351.43 2.02 c p1\n266.19 373.47
      2.02 c p1\n268.72 380.03 2.02 c p1\n274.29 395.73 2.02 c p1\n269.87
      381.58 2.02 c p1\n256.81 358.88 2.02 c p1\n262.63 367.07 2.02 c
      p1\n253.73 356.52 2.02 c p1\n259.39 362.50 2.02 c p1\n276.04 414.06
      2.02 c p1\n271.38 384.88 2.02 c p1\n251.26 354.42 2.02 c p1\n240.71
      346.61 2.02 c p1\n268.24 377.68 2.02 c p1\n262.96 368.27 2.02 c
      p1\n265.92 373.43 2.02 c p1\n244.50 349.16 2.02 c p1\n260.54 363.99
      2.02 c p1\n275.87 412.86 2.02 c p1\n224.35 335.63 2.02 c p1\n247.44
      350.13 2.02 c p1\n266.46 374.51 2.02 c p1\n260.16 363.56 2.02 c
      p1\n249.86 352.35 2.02 c p1\n250.58 353.29 2.02 c p1\n235.22 343.82
      2.02 c p1\n246.53 349.42 2.02 c p1\n255.85 358.15 2.02 c p1\n258.15
      361.17 2.02 c p1\n270.31 383.40 2.02 c p1\n275.00 401.48 2.02 c
      p1\n273.92 393.12 2.02 c p1\n254.83 357.15 2.02 c p1\n265.37 372.13
      2.02 c p1\n272.19 386.06 2.02 c p1\n256.34 358.81 2.02 c p1\n269.42
      381.32 2.02 c p1\n232.63 341.28 2.02 c p1\n262.30 365.45 2.02 c
      p1\n271.17 384.87 2.02 c p1\n268.48 378.63 2.02 c p1\n243.35 348.07
      2.02 c p1\n272.78 390.49 2.02 c p1\n254.29 356.99 2.02 c p1\n267.24
      375.13 2.02 c p1\n264.20 370.87 2.02 c p1\n261.26 364.57 2.02 c
      p1\n270.74 383.96 2.02 c p1\n242.10 347.65 2.02 c p1\n261.62 365.28
      2.02 c p1\n278.28 421.90 2.02 c p1\n275.18 402.63 2.02 c p1\n271.58
      384.99 2.02 c p1\n265.65 372.81 2.02 c p1\n229.26 341.18 2.02 c
      p1\n271.79 385.53 2.02 c p1\n257.72 360.59 2.02 c p1\n258.98 362.28
      2.02 c p1\n264.50 371.55 2.02 c p1\n267.75 376.65 2.02 c p1\n252.55
      355.21 2.02 c p1\n273.17 391.59 2.02 c p1\n257.27 359.67 2.02 c
      p1\n270.09 382.62 2.02 c p1\n269.19 381.12 2.02 c p1\n270.53 383.72
      2.02 c p1\n214.47 315.27 2.02 c p1\n270.96 384.71 2.02 c p1\n260.90
      364.13 2.02 c p1\n272.39 386.51 2.02 c p1\n266.73 374.87 2.02 c
      p1\n274.65 400.67 2.02 c p1\n273.36 391.89 2.02 c p1\n266.99 375.03
      2.02 c p1\n248.29 351.01 2.02 c p1\n274.47 398.09 2.02 c p1\n245.55
      349.41 2.02 c p1\n263.27 369.41 2.02 c p1\n265.08 371.94 2.02 c
      p1\n261.96 365.36 2.02 c p1\n259.78 363.49 2.02 c p1\n258.57 361.28
      2.02 c p1\n271.99 385.78 2.02 c p1\n251.92 355.15 2.02 c p1\n239.14
      346.00 2.02 c p1\n272.98 391.42 2.02 c p1\n272.59 387.46 2.02 c
      p1\n267.50 375.99 2.02 c p1\n268.95 380.14 2.02 c p1\n268.00 377.63
      2.02 c p1\n264.79 371.71 2.02 c p1\n273.55 392.27 2.02 c p1\n237.34
      344.09 2.02 c p1\n263.59 369.54 2.02 c p1\n273.74 392.28 2.02 c
      p1\n253.15 356.30 2.02 c p1\n269.64 381.52 2.02 c p1\n255.35 357.47
      2.02 c p1\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75
      setlinewidth\n[] 0 setdash\nnp\n224.25 307.08 m\n185.10 0
      l\no\nnp\n224.25 307.08 m\n0 -5.40 l\no\nnp\n255.10 307.08 m\n0 -5.40
      l\no\nnp\n285.95 307.08 m\n0 -5.40 l\no\nnp\n316.80 307.08 m\n0 -5.40
      l\no\nnp\n347.65 307.08 m\n0 -5.40 l\no\nnp\n378.50 307.08 m\n0 -5.40
      l\no\nnp\n409.35 307.08 m\n0 -5.40 l\no\n/ps 11 def R 11 s\n224.25
      287.64 (-3) .5 0 0 t\n255.10 287.64 (-2) .5 0 0 t\n285.95 287.64 (-1)
      .5 0 0 t\n316.80 287.64 (0) .5 0 0 t\n347.65 287.64 (1) .5 0 0
      t\n378.50 287.64 (2) .5 0 0 t\n409.35 287.64 (3) .5 0 0 t\nnp\n206.28
      318.09 m\n0 177.51 l\no\nnp\n206.28 318.09 m\n-5.40 0 l\no\nnp\n206.28
      353.59 m\n-5.40 0 l\no\nnp\n206.28 389.09 m\n-5.40 0 l\no\nnp\n206.28
      424.60 m\n-5.40 0 l\no\nnp\n206.28 460.10 m\n-5.40 0 l\no\nnp\n206.28
      495.60 m\n-5.40 0 l\no\n193.32 318.09 (-8) .5 0 90 t\n193.32 353.59
      (-6) .5 0 90 t\n193.32 389.09 (-4) .5 0 90 t\n193.32 424.60 (-2) .5 0
      90 t\n193.32 460.10 (0) .5 0 90 t\n193.32 495.60 (2) .5 0 90
      t\nnp\n206.28 307.08 m\n221.04 0 l\n0 221.04 l\n-221.04 0 l\n0 -221.04
      l\no\n162.00 252.00 450.00 540.00 cl\n/ps 13 def B 13 s\n0 0 0
      rgb\n316.80 529.39 (Normal Q-Q Plot) .5 0 0 t\n/ps 11 def R 11
      s\n316.80 266.04 (Theoretical Quantiles) .5 0 0 t\n171.72 417.60
      (Sample Quantiles) .5 0 90 t\n206.28 307.08 427.32 528.12 cl\n1 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n206.28 396.50 m\n221.04
      127.19 l\no\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  If we have more points on the left than we should have, then quantiles
  occur earlier, and thus the points are low than they should be.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      x=rnorm(1000)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      x=x[ x\<gtr\>-1 ]
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      qqnorm(x); abline(0,1,col=2);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n360.26 445.47 2.02 c
      p1\n324.93 386.75 2.02 c p1\n313.59 371.79 2.02 c p1\n310.95 368.64
      2.02 c p1\n282.48 336.87 2.02 c p1\n353.58 435.11 2.02 c p1\n312.46
      370.35 2.02 c p1\n347.19 427.10 2.02 c p1\n315.08 373.83 2.02 c
      p1\n263.81 323.68 2.02 c p1\n323.03 384.75 2.02 c p1\n258.02 320.89
      2.02 c p1\n368.32 460.33 2.02 c p1\n303.94 359.18 2.02 c p1\n356.70
      438.12 2.02 c p1\n311.71 369.35 2.02 c p1\n258.54 320.92 2.02 c
      p1\n297.92 352.38 2.02 c p1\n311.90 369.74 2.02 c p1\n338.19 411.80
      2.02 c p1\n296.11 350.93 2.02 c p1\n341.22 417.78 2.02 c p1\n273.58
      330.25 2.02 c p1\n318.15 378.42 2.02 c p1\n267.61 326.99 2.02 c
      p1\n323.41 385.15 2.02 c p1\n356.29 437.56 2.02 c p1\n359.55 444.03
      2.02 c p1\n326.58 390.34 2.02 c p1\n340.23 415.09 2.02 c p1\n344.76
      423.04 2.02 c p1\n286.11 340.66 2.02 c p1\n324.45 386.04 2.02 c
      p1\n313.77 372.08 2.02 c p1\n311.52 369.26 2.02 c p1\n386.53 490.43
      2.02 c p1\n285.05 339.89 2.02 c p1\n348.40 428.16 2.02 c p1\n302.72
      357.40 2.02 c p1\n299.56 354.70 2.02 c p1\n309.91 367.41 2.02 c
      p1\n293.13 346.76 2.02 c p1\n300.31 355.58 2.02 c p1\n331.40 397.36
      2.02 c p1\n318.43 378.90 2.02 c p1\n339.86 414.70 2.02 c p1\n280.02
      334.45 2.02 c p1\n319.83 380.77 2.02 c p1\n355.49 436.18 2.02 c
      p1\n282.98 337.30 2.02 c p1\n340.84 416.69 2.02 c p1\n314.80 373.63
      2.02 c p1\n356.08 436.47 2.02 c p1\n344.08 421.20 2.02 c p1\n260.47
      322.69 2.02 c p1\n275.63 331.35 2.02 c p1\n272.85 329.74 2.02 c
      p1\n296.79 351.63 2.02 c p1\n305.44 361.10 2.02 c p1\n356.91 438.16
      2.02 c p1\n316.20 375.39 2.02 c p1\n306.73 362.85 2.02 c p1\n365.38
      455.36 2.02 c p1\n358.41 441.88 2.02 c p1\n364.19 450.15 2.02 c
      p1\n360.02 445.46 2.02 c p1\n315.73 374.79 2.02 c p1\n329.66 394.47
      2.02 c p1\n296.22 351.00 2.02 c p1\n307.80 364.32 2.02 c p1\n311.99
      369.86 2.02 c p1\n303.64 358.68 2.02 c p1\n279.08 333.78 2.02 c
      p1\n294.46 348.46 2.02 c p1\n290.85 344.67 2.02 c p1\n266.64 326.41
      2.02 c p1\n297.02 351.73 2.02 c p1\n307.99 364.42 2.02 c p1\n308.47
      364.83 2.02 c p1\n334.47 405.00 2.02 c p1\n311.05 368.88 2.02 c
      p1\n264.56 324.35 2.02 c p1\n303.33 358.42 2.02 c p1\n283.47 337.96
      2.02 c p1\n390.17 496.72 2.02 c p1\n345.60 424.03 2.02 c p1\n328.25
      392.63 2.02 c p1\n346.60 426.06 2.02 c p1\n308.38 364.75 2.02 c
      p1\n314.61 373.37 2.02 c p1\n301.48 356.24 2.02 c p1\n276.69 331.64
      2.02 c p1\n312.65 370.93 2.02 c p1\n329.56 394.36 2.02 c p1\n344.49
      422.30 2.02 c p1\n291.37 345.00 2.02 c p1\n377.84 474.43 2.02 c
      p1\n335.13 405.94 2.02 c p1\n364.48 450.62 2.02 c p1\n328.45 393.10
      2.02 c p1\n347.64 427.60 2.02 c p1\n337.38 410.68 2.02 c p1\n316.47
      375.80 2.02 c p1\n288.84 342.72 2.02 c p1\n311.24 369.08 2.02 c
      p1\n303.74 358.72 2.02 c p1\n311.80 369.62 2.02 c p1\n326.78 390.70
      2.02 c p1\n325.61 387.53 2.02 c p1\n278.51 333.43 2.02 c p1\n315.36
      374.40 2.02 c p1\n255.76 320.71 2.02 c p1\n306.14 361.86 2.02 c
      p1\n331.92 398.02 2.02 c p1\n342.36 419.30 2.02 c p1\n318.89 379.40
      2.02 c p1\n262.63 323.32 2.02 c p1\n304.65 360.56 2.02 c p1\n293.00
      346.73 2.02 c p1\n328.06 392.49 2.02 c p1\n341.98 418.55 2.02 c
      p1\n330.16 395.68 2.02 c p1\n323.60 385.26 2.02 c p1\n300.74 355.82
      2.02 c p1\n349.81 429.06 2.02 c p1\n282.64 337.12 2.02 c p1\n289.92
      343.98 2.02 c p1\n341.60 418.13 2.02 c p1\n298.25 352.82 2.02 c
      p1\n288.14 342.01 2.02 c p1\n325.90 388.27 2.02 c p1\n269.97 327.84
      2.02 c p1\n285.20 340.02 2.02 c p1\n320.20 381.28 2.02 c p1\n295.88
      350.82 2.02 c p1\n323.12 384.78 2.02 c p1\n348.70 428.39 2.02 c
      p1\n351.63 432.06 2.02 c p1\n299.13 354.20 2.02 c p1\n365.99 456.70
      2.02 c p1\n374.07 470.36 2.02 c p1\n342.62 419.60 2.02 c p1\n299.35
      354.39 2.02 c p1\n318.06 378.38 2.02 c p1\n244.75 318.09 2.02 c
      p1\n321.80 383.55 2.02 c p1\n315.54 374.51 2.02 c p1\n327.27 391.29
      2.02 c p1\n289.79 343.85 2.02 c p1\n332.86 400.43 2.02 c p1\n334.36
      404.67 2.02 c p1\n249.07 319.11 2.02 c p1\n264.92 324.63 2.02 c
      p1\n269.41 327.46 2.02 c p1\n304.55 360.21 2.02 c p1\n321.42 382.48
      2.02 c p1\n298.47 353.16 2.02 c p1\n327.86 391.81 2.02 c p1\n287.43
      341.41 2.02 c p1\n293.62 347.31 2.02 c p1\n248.11 318.98 2.02 c
      p1\n339.98 414.75 2.02 c p1\n381.20 480.13 2.02 c p1\n332.33 398.61
      2.02 c p1\n336.02 408.02 2.02 c p1\n308.57 364.89 2.02 c p1\n340.72
      416.55 2.02 c p1\n328.75 393.72 2.02 c p1\n305.54 361.27 2.02 c
      p1\n317.03 377.04 2.02 c p1\n283.30 337.72 2.02 c p1\n312.27 370.18
      2.02 c p1\n310.48 368.01 2.02 c p1\n331.19 396.78 2.02 c p1\n336.92
      409.61 2.02 c p1\n335.46 406.88 2.02 c p1\n273.34 330.04 2.02 c
      p1\n376.12 472.87 2.02 c p1\n324.55 386.09 2.02 c p1\n309.81 367.38
      2.02 c p1\n313.21 371.53 2.02 c p1\n240.30 317.02 2.02 c p1\n311.43
      369.18 2.02 c p1\n336.24 408.12 2.02 c p1\n330.98 396.43 2.02 c
      p1\n350.79 430.61 2.02 c p1\n259.53 321.27 2.02 c p1\n346.31 425.42
      2.02 c p1\n326.48 390.13 2.02 c p1\n317.59 377.69 2.02 c p1\n281.45
      336.04 2.02 c p1\n361.49 446.01 2.02 c p1\n320.39 381.42 2.02 c
      p1\n307.21 363.46 2.02 c p1\n238.41 316.53 2.02 c p1\n298.36 352.94
      2.02 c p1\n338.43 412.35 2.02 c p1\n350.13 429.36 2.02 c p1\n397.42
      508.71 2.02 c p1\n317.40 377.66 2.02 c p1\n293.50 346.88 2.02 c
      p1\n301.27 356.04 2.02 c p1\n297.47 352.10 2.02 c p1\n340.60 416.09
      2.02 c p1\n281.10 335.71 2.02 c p1\n299.45 354.68 2.02 c p1\n306.53
      362.59 2.02 c p1\n297.25 351.86 2.02 c p1\n272.11 329.01 2.02 c
      p1\n357.97 441.12 2.02 c p1\n279.65 334.23 2.02 c p1\n301.37 356.21
      2.02 c p1\n319.55 380.45 2.02 c p1\n293.98 348.05 2.02 c p1\n304.25
      359.83 2.02 c p1\n264.19 324.11 2.02 c p1\n354.90 435.94 2.02 c
      p1\n360.50 445.48 2.02 c p1\n285.51 340.18 2.02 c p1\n339.02 413.02
      2.02 c p1\n348.24 428.13 2.02 c p1\n311.61 369.28 2.02 c p1\n373.13
      469.38 2.02 c p1\n277.72 332.45 2.02 c p1\n370.57 465.95 2.02 c
      p1\n298.03 352.40 2.02 c p1\n274.96 331.16 2.02 c p1\n312.74 371.26
      2.02 c p1\n324.74 386.31 2.02 c p1\n261.37 322.84 2.02 c p1\n331.09
      396.56 2.02 c p1\n279.46 334.07 2.02 c p1\n280.56 335.06 2.02 c
      p1\n276.48 331.57 2.02 c p1\n373.59 469.63 2.02 c p1\n372.23 468.75
      2.02 c p1\n283.79 338.61 2.02 c p1\n335.02 405.85 2.02 c p1\n320.30
      381.30 2.02 c p1\n387.64 490.88 2.02 c p1\n355.29 436.11 2.02 c
      p1\n337.26 410.30 2.02 c p1\n278.31 333.17 2.02 c p1\n256.35 320.74
      2.02 c p1\n251.64 319.47 2.02 c p1\n359.09 443.77 2.02 c p1\n292.00
      345.70 2.02 c p1\n319.73 380.76 2.02 c p1\n365.07 454.52 2.02 c
      p1\n336.35 408.52 2.02 c p1\n319.92 381.15 2.02 c p1\n362.01 446.92
      2.02 c p1\n325.71 388.04 2.02 c p1\n305.94 361.81 2.02 c p1\n346.89
      426.89 2.02 c p1\n297.81 352.30 2.02 c p1\n334.25 404.45 2.02 c
      p1\n290.45 344.28 2.02 c p1\n267.29 326.74 2.02 c p1\n327.96 391.85
      2.02 c p1\n293.74 347.44 2.02 c p1\n289.52 343.75 2.02 c p1\n284.43
      338.99 2.02 c p1\n309.62 367.00 2.02 c p1\n290.19 344.12 2.02 c
      p1\n273.10 330.02 2.02 c p1\n322.74 384.32 2.02 c p1\n352.68 433.62
      2.02 c p1\n329.96 395.46 2.02 c p1\n319.45 380.40 2.02 c p1\n322.27
      384.10 2.02 c p1\n324.26 385.95 2.02 c p1\n336.58 409.34 2.02 c
      p1\n275.85 331.38 2.02 c p1\n303.84 359.15 2.02 c p1\n351.46 431.77
      2.02 c p1\n350.96 430.69 2.02 c p1\n391.64 497.03 2.02 c p1\n282.14
      336.57 2.02 c p1\n325.51 387.42 2.02 c p1\n302.00 356.68 2.02 c
      p1\n383.62 487.24 2.02 c p1\n303.03 357.67 2.02 c p1\n312.09 370.13
      2.02 c p1\n362.53 448.54 2.02 c p1\n345.46 423.97 2.02 c p1\n269.69
      327.69 2.02 c p1\n236.18 315.81 2.02 c p1\n317.68 377.84 2.02 c
      p1\n400.14 509.85 2.02 c p1\n293.25 346.82 2.02 c p1\n342.49 419.45
      2.02 c p1\n322.93 384.34 2.02 c p1\n279.83 334.35 2.02 c p1\n353.04
      433.94 2.02 c p1\n338.31 412.25 2.02 c p1\n332.97 400.52 2.02 c
      p1\n359.32 443.86 2.02 c p1\n318.99 379.46 2.02 c p1\n363.91 450.13
      2.02 c p1\n299.24 354.24 2.02 c p1\n322.65 384.30 2.02 c p1\n317.22
      377.33 2.02 c p1\n353.40 434.93 2.02 c p1\n349.17 428.48 2.02 c
      p1\n321.61 382.77 2.02 c p1\n336.13 408.03 2.02 c p1\n324.65 386.28
      2.02 c p1\n271.59 328.49 2.02 c p1\n335.79 407.48 2.02 c p1\n317.78
      377.98 2.02 c p1\n275.19 331.26 2.02 c p1\n324.84 386.34 2.02 c
      p1\n266.31 326.17 2.02 c p1\n315.45 374.49 2.02 c p1\n353.22 434.54
      2.02 c p1\n330.88 396.26 2.02 c p1\n326.97 391.00 2.02 c p1\n363.63
      449.95 2.02 c p1\n304.04 359.21 2.02 c p1\n286.26 340.74 2.02 c
      p1\n263.42 323.68 2.02 c p1\n295.41 350.25 2.02 c p1\n313.68 371.99
      2.02 c p1\n342.88 419.73 2.02 c p1\n321.33 382.48 2.02 c p1\n305.25
      360.95 2.02 c p1\n307.70 364.00 2.02 c p1\n307.51 363.78 2.02 c
      p1\n285.36 340.08 2.02 c p1\n276.06 331.43 2.02 c p1\n319.27 380.08
      2.02 c p1\n274.05 330.28 2.02 c p1\n310.67 368.14 2.02 c p1\n362.27
      447.70 2.02 c p1\n355.88 436.44 2.02 c p1\n268.82 327.39 2.02 c
      p1\n344.63 422.72 2.02 c p1\n303.23 358.25 2.02 c p1\n313.96 372.73
      2.02 c p1\n345.74 424.23 2.02 c p1\n326.19 389.17 2.02 c p1\n302.51
      357.30 2.02 c p1\n288.42 342.50 2.02 c p1\n337.72 411.43 2.02 c
      p1\n326.68 390.34 2.02 c p1\n337.61 410.83 2.02 c p1\n308.28 364.73
      2.02 c p1\n375.06 471.91 2.02 c p1\n277.31 332.08 2.02 c p1\n317.50
      377.67 2.02 c p1\n341.72 418.20 2.02 c p1\n318.52 378.97 2.02 c
      p1\n349.65 428.95 2.02 c p1\n346.46 426.06 2.02 c p1\n318.80 379.38
      2.02 c p1\n315.64 374.63 2.02 c p1\n323.88 385.45 2.02 c p1\n309.72
      367.21 2.02 c p1\n329.25 394.31 2.02 c p1\n290.58 344.45 2.02 c
      p1\n349.02 428.46 2.02 c p1\n393.30 499.49 2.02 c p1\n331.29 397.16
      2.02 c p1\n291.11 344.78 2.02 c p1\n294.58 348.58 2.02 c p1\n307.60
      363.95 2.02 c p1\n286.56 340.83 2.02 c p1\n265.97 325.68 2.02 c
      p1\n253.13 319.65 2.02 c p1\n285.96 340.42 2.02 c p1\n325.03 386.78
      2.02 c p1\n344.90 423.12 2.02 c p1\n301.79 356.42 2.02 c p1\n306.43
      362.51 2.02 c p1\n325.13 386.80 2.02 c p1\n296.57 351.35 2.02 c
      p1\n302.31 357.12 2.02 c p1\n380.47 478.70 2.02 c p1\n253.83 319.98
      2.02 c p1\n343.41 420.69 2.02 c p1\n296.34 351.23 2.02 c p1\n349.97
      429.33 2.02 c p1\n296.91 351.70 2.02 c p1\n321.14 382.17 2.02 c
      p1\n334.69 405.38 2.02 c p1\n332.23 398.56 2.02 c p1\n332.02 398.04
      2.02 c p1\n333.39 402.36 2.02 c p1\n295.17 349.86 2.02 c p1\n388.85
      496.57 2.02 c p1\n326.87 390.92 2.02 c p1\n323.69 385.28 2.02 c
      p1\n310.57 368.08 2.02 c p1\n342.75 419.73 2.02 c p1\n288.70 342.70
      2.02 c p1\n327.66 391.52 2.02 c p1\n316.29 375.44 2.02 c p1\n340.10
      414.98 2.02 c p1\n327.56 391.51 2.02 c p1\n271.07 328.45 2.02 c
      p1\n317.13 377.22 2.02 c p1\n357.54 439.56 2.02 c p1\n314.71 373.52
      2.02 c p1\n298.58 353.37 2.02 c p1\n269.12 327.40 2.02 c p1\n295.76
      350.82 2.02 c p1\n276.90 331.67 2.02 c p1\n287.72 341.71 2.02 c
      p1\n337.03 409.79 2.02 c p1\n325.42 387.31 2.02 c p1\n214.47 315.27
      2.02 c p1\n331.71 397.88 2.02 c p1\n367.63 458.92 2.02 c p1\n353.95
      435.49 2.02 c p1\n360.99 445.80 2.02 c p1\n284.58 339.02 2.02 c
      p1\n333.93 403.04 2.02 c p1\n307.31 363.49 2.02 c p1\n320.48 381.44
      2.02 c p1\n375.58 471.93 2.02 c p1\n326.29 389.35 2.02 c p1\n249.98
      319.15 2.02 c p1\n312.84 371.34 2.02 c p1\n367.29 458.50 2.02 c
      p1\n355.09 436.02 2.02 c p1\n321.99 383.74 2.02 c p1\n351.29 431.56
      2.02 c p1\n281.97 336.44 2.02 c p1\n367.97 459.89 2.02 c p1\n317.31
      377.49 2.02 c p1\n326.39 389.65 2.02 c p1\n314.52 373.37 2.02 c
      p1\n313.12 371.50 2.02 c p1\n317.96 378.19 2.02 c p1\n343.28 420.66
      2.02 c p1\n340.35 415.43 2.02 c p1\n272.36 329.01 2.02 c p1\n343.81
      421.11 2.02 c p1\n305.64 361.27 2.02 c p1\n299.78 354.91 2.02 c
      p1\n362.80 448.81 2.02 c p1\n339.38 413.92 2.02 c p1\n395.19 508.36
      2.02 c p1\n333.61 402.65 2.02 c p1\n353.77 435.24 2.02 c p1\n329.76
      395.04 2.02 c p1\n305.35 360.96 2.02 c p1\n310.86 368.51 2.02 c
      p1\n310.19 367.73 2.02 c p1\n291.24 344.92 2.02 c p1\n304.45 360.12
      2.02 c p1\n322.08 383.91 2.02 c p1\n306.92 363.18 2.02 c p1\n287.29
      341.39 2.02 c p1\n291.75 345.43 2.02 c p1\n354.14 435.65 2.02 c
      p1\n294.10 348.07 2.02 c p1\n358.64 443.36 2.02 c p1\n298.14 352.70
      2.02 c p1\n296.45 351.34 2.02 c p1\n314.99 373.83 2.02 c p1\n332.44
      398.86 2.02 c p1\n363.35 449.90 2.02 c p1\n292.38 346.14 2.02 c
      p1\n300.63 355.81 2.02 c p1\n277.92 332.48 2.02 c p1\n342.23 419.23
      2.02 c p1\n288.56 342.64 2.02 c p1\n287.86 341.82 2.02 c p1\n317.87
      377.99 2.02 c p1\n321.04 382.14 2.02 c p1\n255.14 320.60 2.02 c
      p1\n308.95 365.26 2.02 c p1\n372.68 469.03 2.02 c p1\n294.94 349.68
      2.02 c p1\n280.92 335.51 2.02 c p1\n330.47 395.91 2.02 c p1\n261.80
      322.98 2.02 c p1\n301.68 356.37 2.02 c p1\n280.20 334.46 2.02 c
      p1\n331.50 397.49 2.02 c p1\n337.15 409.92 2.02 c p1\n357.75 440.00
      2.02 c p1\n324.07 385.74 2.02 c p1\n319.08 379.66 2.02 c p1\n348.55
      428.23 2.02 c p1\n341.09 417.17 2.02 c p1\n268.53 327.21 2.02 c
      p1\n352.86 433.86 2.02 c p1\n284.27 338.88 2.02 c p1\n316.75 376.16
      2.02 c p1\n292.63 346.52 2.02 c p1\n298.80 353.81 2.02 c p1\n341.34
      417.94 2.02 c p1\n302.82 357.42 2.02 c p1\n313.40 371.60 2.02 c
      p1\n291.88 345.44 2.02 c p1\n329.05 394.00 2.02 c p1\n335.24 406.29
      2.02 c p1\n297.58 352.19 2.02 c p1\n267.92 327.01 2.02 c p1\n256.92
      320.75 2.02 c p1\n359.78 444.38 2.02 c p1\n279.27 333.86 2.02 c
      p1\n338.07 411.80 2.02 c p1\n262.22 323.29 2.02 c p1\n305.05 360.74
      2.02 c p1\n274.28 330.30 2.02 c p1\n280.38 334.82 2.02 c p1\n300.21
      355.47 2.02 c p1\n328.85 393.75 2.02 c p1\n327.07 391.06 2.02 c
      p1\n346.03 424.41 2.02 c p1\n343.02 420.19 2.02 c p1\n366.63 457.46
      2.02 c p1\n419.13 519.93 2.02 c p1\n289.25 343.52 2.02 c p1\n297.70
      352.27 2.02 c p1\n354.33 435.76 2.02 c p1\n295.06 349.74 2.02 c
      p1\n298.69 353.65 2.02 c p1\n312.56 370.78 2.02 c p1\n352.33 433.53
      2.02 c p1\n316.10 375.22 2.02 c p1\n297.36 351.87 2.02 c p1\n336.47
      409.08 2.02 c p1\n302.41 357.14 2.02 c p1\n309.05 365.41 2.02 c
      p1\n299.99 355.11 2.02 c p1\n329.35 394.31 2.02 c p1\n314.33 373.10
      2.02 c p1\n287.00 341.26 2.02 c p1\n282.81 337.26 2.02 c p1\n310.38
      367.93 2.02 c p1\n323.50 385.25 2.02 c p1\n330.78 396.20 2.02 c
      p1\n299.67 354.75 2.02 c p1\n347.34 427.20 2.02 c p1\n312.18 370.15
      2.02 c p1\n263.03 323.60 2.02 c p1\n294.70 348.65 2.02 c p1\n331.81
      397.95 2.02 c p1\n328.55 393.16 2.02 c p1\n301.58 356.33 2.02 c
      p1\n333.07 400.96 2.02 c p1\n351.81 432.78 2.02 c p1\n292.88 346.64
      2.02 c p1\n341.85 418.22 2.02 c p1\n325.32 387.30 2.02 c p1\n337.84
      411.51 2.02 c p1\n321.70 383.07 2.02 c p1\n336.81 409.51 2.02 c
      p1\n305.15 360.84 2.02 c p1\n316.85 376.41 2.02 c p1\n320.01 381.20
      2.02 c p1\n272.61 329.02 2.02 c p1\n332.12 398.47 2.02 c p1\n291.49
      345.14 2.02 c p1\n271.85 328.74 2.02 c p1\n316.94 376.59 2.02 c
      p1\n320.95 382.13 2.02 c p1\n371.38 467.12 2.02 c p1\n327.76 391.74
      2.02 c p1\n343.15 420.34 2.02 c p1\n302.62 357.39 2.02 c p1\n312.37
      370.23 2.02 c p1\n318.24 378.59 2.02 c p1\n290.72 344.50 2.02 c
      p1\n275.41 331.32 2.02 c p1\n284.74 339.58 2.02 c p1\n379.10 476.66
      2.02 c p1\n328.95 393.95 2.02 c p1\n350.46 429.70 2.02 c p1\n323.31
      385.14 2.02 c p1\n299.89 355.08 2.02 c p1\n331.60 397.81 2.02 c
      p1\n379.77 476.82 2.02 c p1\n346.75 426.41 2.02 c p1\n352.15 433.13
      2.02 c p1\n277.11 331.94 2.02 c p1\n333.82 402.98 2.02 c p1\n290.32
      344.18 2.02 c p1\n303.54 358.51 2.02 c p1\n339.14 413.24 2.02 c
      p1\n351.98 433.06 2.02 c p1\n348.09 428.07 2.02 c p1\n288.00 341.97
      2.02 c p1\n341.47 418.03 2.02 c p1\n307.89 364.36 2.02 c p1\n361.75
      446.83 2.02 c p1\n358.19 441.16 2.02 c p1\n322.55 384.23 2.02 c
      p1\n332.54 399.39 2.02 c p1\n314.24 373.08 2.02 c p1\n328.35 392.74
      2.02 c p1\n281.79 336.33 2.02 c p1\n320.76 381.79 2.02 c p1\n304.75
      360.57 2.02 c p1\n268.22 327.09 2.02 c p1\n310.29 367.92 2.02 c
      p1\n357.33 438.76 2.02 c p1\n283.14 337.45 2.02 c p1\n281.62 336.06
      2.02 c p1\n334.04 404.06 2.02 c p1\n330.37 395.84 2.02 c p1\n339.50
      413.97 2.02 c p1\n280.74 335.32 2.02 c p1\n301.89 356.68 2.02 c
      p1\n343.54 420.81 2.02 c p1\n354.71 435.85 2.02 c p1\n327.37 391.29
      2.02 c p1\n319.36 380.14 2.02 c p1\n315.82 374.80 2.02 c p1\n366.96
      457.66 2.02 c p1\n308.09 364.45 2.02 c p1\n408.82 516.68 2.02 c
      p1\n334.58 405.36 2.02 c p1\n308.18 364.53 2.02 c p1\n294.82 348.97
      2.02 c p1\n316.01 374.85 2.02 c p1\n332.76 400.16 2.02 c p1\n360.75
      445.77 2.02 c p1\n305.84 361.80 2.02 c p1\n292.51 346.17 2.02 c
      p1\n281.27 336.00 2.02 c p1\n306.04 361.81 2.02 c p1\n278.11 332.93
      2.02 c p1\n334.80 405.58 2.02 c p1\n312.93 371.36 2.02 c p1\n270.80
      328.34 2.02 c p1\n338.90 412.80 2.02 c p1\n322.84 384.34 2.02 c
      p1\n347.79 427.67 2.02 c p1\n304.95 360.72 2.02 c p1\n284.90 339.71
      2.02 c p1\n322.36 384.14 2.02 c p1\n325.80 388.25 2.02 c p1\n283.63
      338.00 2.02 c p1\n306.33 362.51 2.02 c p1\n327.17 391.22 2.02 c
      p1\n365.68 455.99 2.02 c p1\n307.02 363.19 2.02 c p1\n304.14 359.34
      2.02 c p1\n282.31 336.80 2.02 c p1\n294.22 348.24 2.02 c p1\n340.97
      416.89 2.02 c p1\n300.95 355.93 2.02 c p1\n276.27 331.55 2.02 c
      p1\n278.70 333.64 2.02 c p1\n224.78 315.49 2.02 c p1\n328.16 392.62
      2.02 c p1\n333.71 402.74 2.02 c p1\n369.04 461.14 2.02 c p1\n345.88
      424.36 2.02 c p1\n343.68 421.08 2.02 c p1\n315.26 374.18 2.02 c
      p1\n374.56 471.67 2.02 c p1\n303.44 358.47 2.02 c p1\n274.74 330.54
      2.02 c p1\n283.95 338.65 2.02 c p1\n289.11 343.10 2.02 c p1\n376.68
      473.25 2.02 c p1\n304.35 360.04 2.02 c p1\n310.00 367.61 2.02 c
      p1\n370.18 463.68 2.02 c p1\n321.23 382.26 2.02 c p1\n370.97 466.16
      2.02 c p1\n330.27 395.71 2.02 c p1\n321.89 383.69 2.02 c p1\n323.22
      385.05 2.02 c p1\n381.96 483.26 2.02 c p1\n265.28 324.73 2.02 c
      p1\n252.40 319.57 2.02 c p1\n329.46 394.34 2.02 c p1\n320.11 381.26
      2.02 c p1\n273.82 330.26 2.02 c p1\n321.51 382.54 2.02 c p1\n295.64
      350.79 2.02 c p1\n335.35 406.51 2.02 c p1\n286.71 340.88 2.02 c
      p1\n316.66 376.10 2.02 c p1\n345.04 423.26 2.02 c p1\n313.49 371.78
      2.02 c p1\n299.02 354.10 2.02 c p1\n309.24 366.13 2.02 c p1\n371.80
      468.68 2.02 c p1\n344.22 421.27 2.02 c p1\n308.76 365.06 2.02 c
      p1\n378.46 474.57 2.02 c p1\n270.25 328.04 2.02 c p1\n307.41 363.63
      2.02 c p1\n330.68 396.11 2.02 c p1\n334.91 405.67 2.02 c p1\n328.65
      393.28 2.02 c p1\n324.17 385.76 2.02 c p1\n335.57 406.95 2.02 c
      p1\n344.35 421.81 2.02 c p1\n345.32 423.52 2.02 c p1\n324.36 385.99
      2.02 c p1\n292.76 346.55 2.02 c p1\n288.28 342.19 2.02 c p1\n348.86
      428.40 2.02 c p1\n384.53 487.83 2.02 c p1\n306.23 362.23 2.02 c
      p1\n292.13 345.72 2.02 c p1\n318.71 379.18 2.02 c p1\n314.15 373.00
      2.02 c p1\n369.41 461.81 2.02 c p1\n333.18 401.93 2.02 c p1\n297.13
      351.86 2.02 c p1\n364.78 454.45 2.02 c p1\n303.13 357.96 2.02 c
      p1\n347.04 426.98 2.02 c p1\n326.09 388.92 2.02 c p1\n403.67 515.03
      2.02 c p1\n346.17 424.80 2.02 c p1\n260.92 322.70 2.02 c p1\n377.25
      474.13 2.02 c p1\n325.22 386.89 2.02 c p1\n358.86 443.43 2.02 c
      p1\n288.97 342.83 2.02 c p1\n270.53 328.15 2.02 c p1\n363.07 449.57
      2.02 c p1\n330.57 395.93 2.02 c p1\n301.06 355.96 2.02 c p1\n310.10
      367.64 2.02 c p1\n311.33 369.17 2.02 c p1\n289.38 343.55 2.02 c
      p1\n309.53 366.57 2.02 c p1\n285.81 340.34 2.02 c p1\n318.34 378.81
      2.02 c p1\n293.86 347.91 2.02 c p1\n292.26 345.88 2.02 c p1\n339.26
      413.54 2.02 c p1\n356.49 437.89 2.02 c p1\n229.93 315.75 2.02 c
      p1\n286.85 340.96 2.02 c p1\n302.92 357.63 2.02 c p1\n339.74 414.49
      2.02 c p1\n350.62 430.24 2.02 c p1\n260.01 321.94 2.02 c p1\n354.52
      435.81 2.02 c p1\n314.43 373.35 2.02 c p1\n271.33 328.49 2.02 c
      p1\n336.69 409.38 2.02 c p1\n343.95 421.18 2.02 c p1\n349.49 428.83
      2.02 c p1\n291.62 345.35 2.02 c p1\n266.97 326.69 2.02 c p1\n338.66
      412.55 2.02 c p1\n243.43 317.46 2.02 c p1\n295.53 350.49 2.02 c
      p1\n300.84 355.91 2.02 c p1\n333.29 402.30 2.02 c p1\n366.31 456.73
      2.02 c p1\n352.50 433.54 2.02 c p1\n323.79 385.35 2.02 c p1\n339.62
      414.32 2.02 c p1\n322.46 384.16 2.02 c p1\n320.58 381.76 2.02 c
      p1\n302.20 356.99 2.02 c p1\n349.33 428.67 2.02 c p1\n287.57 341.67
      2.02 c p1\n318.61 379.03 2.02 c p1\n278.89 333.70 2.02 c p1\n287.14
      341.32 2.02 c p1\n295.29 349.90 2.02 c p1\n290.98 344.68 2.02 c
      p1\n308.67 364.91 2.02 c p1\n259.04 321.13 2.02 c p1\n351.12 431.39
      2.02 c p1\n257.48 320.87 2.02 c p1\n320.67 381.77 2.02 c p1\n300.10
      355.29 2.02 c p1\n296.68 351.48 2.02 c p1\n295.99 350.85 2.02 c
      p1\n330.06 395.53 2.02 c p1\n298.91 353.89 2.02 c p1\n319.17 380.05
      2.02 c p1\n345.18 423.50 2.02 c p1\n300.42 355.58 2.02 c p1\n309.43
      366.43 2.02 c p1\n313.30 371.54 2.02 c p1\n357.12 438.71 2.02 c
      p1\n311.14 368.97 2.02 c p1\n289.65 343.76 2.02 c p1\n277.52 332.13
      2.02 c p1\n308.86 365.07 2.02 c p1\n337.49 410.76 2.02 c p1\n385.49
      490.22 2.02 c p1\n307.12 363.45 2.02 c p1\n338.54 412.39 2.02 c
      p1\n320.86 381.95 2.02 c p1\n274.51 330.47 2.02 c p1\n338.78 412.63
      2.02 c p1\n334.15 404.22 2.02 c p1\n313.87 372.51 2.02 c p1\n329.15
      394.20 2.02 c p1\n309.15 365.61 2.02 c p1\n284.11 338.84 2.02 c
      p1\n314.05 372.99 2.02 c p1\n293.37 346.85 2.02 c p1\n361.24 445.84
      2.02 c p1\n314.89 373.80 2.02 c p1\n347.94 427.79 2.02 c p1\n316.57
      375.81 2.02 c p1\n241.96 317.14 2.02 c p1\n350.30 429.59 2.02 c
      p1\n306.82 363.02 2.02 c p1\n369.79 463.05 2.02 c p1\n337.96 411.63
      2.02 c p1\n368.68 460.80 2.02 c p1\n382.77 484.12 2.02 c p1\n310.76
      368.46 2.02 c p1\n332.65 400.00 2.02 c p1\n309.34 366.13 2.02 c
      p1\n316.38 375.57 2.02 c p1\n300.53 355.71 2.02 c p1\n313.02 371.40
      2.02 c p1\n302.10 356.79 2.02 c p1\n233.46 315.75 2.02 c p1\n285.66
      340.27 2.02 c p1\n355.68 436.24 2.02 c p1\n340.47 415.80 2.02 c
      p1\n301.16 356.01 2.02 c p1\n335.68 407.29 2.02 c p1\n304.85 360.59
      2.02 c p1\n333.50 402.57 2.02 c p1\n305.74 361.76 2.02 c p1\n306.63
      362.77 2.02 c p1\n294.34 348.44 2.02 c p1\n265.63 325.66 2.02 c
      p1\n322.17 384.02 2.02 c p1\n286.41 340.74 2.02 c p1\n247.07 318.72
      2.02 c p1\n323.98 385.73 2.02 c p1\n335.90 407.81 2.02 c p1\n347.49
      427.55 2.02 c p1\n326.00 388.54 2.02 c p1\n245.96 318.13 2.02 c
      p1\n327.46 391.31 2.02 c p1\n315.17 374.15 2.02 c p1\n254.50 320.30
      2.02 c p1\n342.11 418.94 2.02 c p1\n250.83 319.19 2.02 c p1\n290.06
      344.05 2.02 c p1\n329.86 395.45 2.02 c p1\n315.92 374.81 2.02 c
      p1\n319.64 380.59 2.02 c p1\n162.00 252.00 450.00 540.00 cl\n0 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n222.18 307.08 m\n189.24 0
      l\no\nnp\n222.18 307.08 m\n0 -5.40 l\no\nnp\n253.72 307.08 m\n0 -5.40
      l\no\nnp\n285.26 307.08 m\n0 -5.40 l\no\nnp\n316.80 307.08 m\n0 -5.40
      l\no\nnp\n348.34 307.08 m\n0 -5.40 l\no\nnp\n379.88 307.08 m\n0 -5.40
      l\no\nnp\n411.42 307.08 m\n0 -5.40 l\no\n/ps 11 def R 11 s\n222.18
      287.64 (-3) .5 0 0 t\n253.72 287.64 (-2) .5 0 0 t\n285.26 287.64 (-1)
      .5 0 0 t\n316.80 287.64 (0) .5 0 0 t\n348.34 287.64 (1) .5 0 0
      t\n379.88 287.64 (2) .5 0 0 t\n411.42 287.64 (3) .5 0 0 t\nnp\n206.28
      315.21 m\n0 211.01 l\no\nnp\n206.28 315.21 m\n-5.40 0 l\no\nnp\n206.28
      367.96 m\n-5.40 0 l\no\nnp\n206.28 420.71 m\n-5.40 0 l\no\nnp\n206.28
      473.46 m\n-5.40 0 l\no\nnp\n206.28 526.22 m\n-5.40 0 l\no\n193.32
      315.21 (-1) .5 0 90 t\n193.32 367.96 (0) .5 0 90 t\n193.32 420.71 (1)
      .5 0 90 t\n193.32 473.46 (2) .5 0 90 t\n193.32 526.22 (3) .5 0 90
      t\nnp\n206.28 307.08 m\n221.04 0 l\n0 221.04 l\n-221.04 0 l\n0 -221.04
      l\no\n162.00 252.00 450.00 540.00 cl\n/ps 13 def B 13 s\n0 0 0
      rgb\n316.80 529.39 (Normal Q-Q Plot) .5 0 0 t\n/ps 11 def R 11
      s\n316.80 266.04 (Theoretical Quantiles) .5 0 0 t\n171.72 417.60
      (Sample Quantiles) .5 0 90 t\n206.28 307.08 427.32 528.12 cl\n1 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n247.47 252.00 m\n172.19
      288.00 l\no\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  If we don't have enough points on the left, quantiles happen later, and the
  points move up.

  Now let us add points on the right:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      x=c( rnorm(1000), rnorm(100,mean=3) )
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      qqnorm(x);abline(0,1,col=2);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n206.28 307.08 427.32 528.12 cl\n206.28 307.08 427.32 528.12
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n281.04 362.04 2.02 c
      p1\n303.27 379.48 2.02 c p1\n350.32 425.22 2.02 c p1\n320.15 394.18
      2.02 c p1\n285.13 364.63 2.02 c p1\n314.44 389.76 2.02 c p1\n348.00
      423.12 2.02 c p1\n323.14 396.34 2.02 c p1\n289.04 367.80 2.02 c
      p1\n324.22 397.16 2.02 c p1\n232.63 318.65 2.02 c p1\n314.94 390.06
      2.02 c p1\n358.25 437.77 2.02 c p1\n316.34 391.52 2.02 c p1\n320.50
      394.58 2.02 c p1\n317.54 392.53 2.02 c p1\n311.47 387.01 2.02 c
      p1\n305.93 382.22 2.02 c p1\n345.31 419.70 2.02 c p1\n331.98 403.79
      2.02 c p1\n354.27 431.73 2.02 c p1\n271.58 354.29 2.02 c p1\n318.80
      393.30 2.02 c p1\n301.94 378.46 2.02 c p1\n319.65 393.79 2.02 c
      p1\n344.35 418.87 2.02 c p1\n322.92 396.22 2.02 c p1\n320.85 394.92
      2.02 c p1\n331.35 403.34 2.02 c p1\n279.48 360.77 2.02 c p1\n272.78
      355.18 2.02 c p1\n308.51 384.30 2.02 c p1\n284.40 364.08 2.02 c
      p1\n349.57 424.63 2.02 c p1\n344.77 419.29 2.02 c p1\n317.96 392.67
      2.02 c p1\n327.22 399.89 2.02 c p1\n318.52 393.11 2.02 c p1\n306.90
      382.87 2.02 c p1\n301.62 378.28 2.02 c p1\n255.85 342.82 2.02 c
      p1\n298.86 376.03 2.02 c p1\n286.29 365.49 2.02 c p1\n264.20 348.83
      2.02 c p1\n328.35 400.76 2.02 c p1\n347.31 421.77 2.02 c p1\n256.34
      344.18 2.02 c p1\n341.24 414.88 2.02 c p1\n316.41 391.53 2.02 c
      p1\n332.94 404.58 2.02 c p1\n304.65 380.97 2.02 c p1\n267.50 350.90
      2.02 c p1\n341.05 414.51 2.02 c p1\n311.75 387.12 2.02 c p1\n351.48
      427.99 2.02 c p1\n322.13 395.70 2.02 c p1\n304.04 380.20 2.02 c
      p1\n326.26 398.98 2.02 c p1\n359.31 440.27 2.02 c p1\n340.67 414.29
      2.02 c p1\n350.83 426.33 2.02 c p1\n312.68 387.88 2.02 c p1\n349.81
      424.99 2.02 c p1\n313.03 388.07 2.02 c p1\n279.33 360.59 2.02 c
      p1\n340.86 414.49 2.02 c p1\n331.27 403.10 2.02 c p1\n299.85 377.15
      2.02 c p1\n287.31 366.19 2.02 c p1\n331.50 403.55 2.02 c p1\n302.65
      378.99 2.02 c p1\n327.37 400.16 2.02 c p1\n256.81 344.22 2.02 c
      p1\n371.98 464.37 2.02 c p1\n345.41 419.75 2.02 c p1\n330.18 402.30
      2.02 c p1\n336.17 408.33 2.02 c p1\n353.12 429.80 2.02 c p1\n284.52
      364.12 2.02 c p1\n332.70 404.46 2.02 c p1\n281.85 362.63 2.02 c
      p1\n305.03 381.21 2.02 c p1\n336.09 408.19 2.02 c p1\n348.12 423.19
      2.02 c p1\n338.10 410.38 2.02 c p1\n296.12 374.10 2.02 c p1\n319.72
      393.83 2.02 c p1\n315.85 391.34 2.02 c p1\n240.71 327.13 2.02 c
      p1\n309.82 385.49 2.02 c p1\n291.09 369.96 2.02 c p1\n277.19 358.72
      2.02 c p1\n325.38 398.27 2.02 c p1\n284.77 364.37 2.02 c p1\n319.23
      393.68 2.02 c p1\n235.22 321.31 2.02 c p1\n328.80 401.29 2.02 c
      p1\n319.30 393.69 2.02 c p1\n331.66 403.58 2.02 c p1\n348.47 423.41
      2.02 c p1\n315.15 390.36 2.02 c p1\n327.15 399.78 2.02 c p1\n299.52
      376.87 2.02 c p1\n343.42 417.73 2.02 c p1\n327.97 400.52 2.02 c
      p1\n277.82 359.49 2.02 c p1\n262.63 347.93 2.02 c p1\n276.54 358.07
      2.02 c p1\n317.61 392.56 2.02 c p1\n311.18 386.80 2.02 c p1\n303.73
      380.04 2.02 c p1\n298.61 375.91 2.02 c p1\n320.00 394.15 2.02 c
      p1\n324.51 397.38 2.02 c p1\n333.26 405.15 2.02 c p1\n334.99 406.90
      2.02 c p1\n306.23 382.31 2.02 c p1\n322.21 395.70 2.02 c p1\n263.27
      348.34 2.02 c p1\n333.18 405.08 2.02 c p1\n343.52 417.74 2.02 c
      p1\n309.67 385.43 2.02 c p1\n357.56 436.48 2.02 c p1\n312.46 387.75
      2.02 c p1\n338.54 410.87 2.02 c p1\n314.87 390.05 2.02 c p1\n330.49
      402.52 2.02 c p1\n337.04 409.06 2.02 c p1\n342.91 417.05 2.02 c
      p1\n335.24 407.16 2.02 c p1\n297.77 375.44 2.02 c p1\n290.08 368.92
      2.02 c p1\n295.42 373.40 2.02 c p1\n276.70 358.09 2.02 c p1\n265.37
      349.84 2.02 c p1\n314.51 389.81 2.02 c p1\n314.37 389.74 2.02 c
      p1\n321.99 395.64 2.02 c p1\n341.82 416.21 2.02 c p1\n291.28 370.05
      2.02 c p1\n309.24 384.87 2.02 c p1\n331.90 403.77 2.02 c p1\n271.79
      354.39 2.02 c p1\n307.71 383.75 2.02 c p1\n318.17 392.91 2.02 c
      p1\n292.84 371.26 2.02 c p1\n320.43 394.52 2.02 c p1\n355.47 433.43
      2.02 c p1\n347.08 421.00 2.02 c p1\n286.52 365.72 2.02 c p1\n320.07
      394.15 2.02 c p1\n352.42 428.83 2.02 c p1\n305.10 381.26 2.02 c
      p1\n331.82 403.74 2.02 c p1\n321.78 395.56 2.02 c p1\n315.64 391.19
      2.02 c p1\n304.34 380.86 2.02 c p1\n281.45 362.48 2.02 c p1\n262.30
      347.68 2.02 c p1\n305.33 381.34 2.02 c p1\n289.77 368.29 2.02 c
      p1\n312.82 387.94 2.02 c p1\n346.18 420.51 2.02 c p1\n338.63 411.06
      2.02 c p1\n327.45 400.19 2.02 c p1\n325.67 398.55 2.02 c p1\n333.10
      405.06 2.02 c p1\n344.25 418.82 2.02 c p1\n294.88 373.01 2.02 c
      p1\n332.30 404.14 2.02 c p1\n332.46 404.31 2.02 c p1\n325.82 398.62
      2.02 c p1\n341.53 415.75 2.02 c p1\n286.86 366.04 2.02 c p1\n279.77
      360.88 2.02 c p1\n300.10 377.25 2.02 c p1\n295.77 373.82 2.02 c
      p1\n294.42 372.74 2.02 c p1\n348.35 423.34 2.02 c p1\n347.19 421.47
      2.02 c p1\n304.27 380.60 2.02 c p1\n311.25 386.87 2.02 c p1\n307.85
      383.86 2.02 c p1\n362.86 449.48 2.02 c p1\n272.98 355.20 2.02 c
      p1\n314.72 390.04 2.02 c p1\n317.47 392.38 2.02 c p1\n269.64 353.20
      2.02 c p1\n296.48 374.64 2.02 c p1\n288.83 367.47 2.02 c p1\n264.79
      349.45 2.02 c p1\n324.14 397.07 2.02 c p1\n355.01 432.74 2.02 c
      p1\n257.27 344.36 2.02 c p1\n304.11 380.32 2.02 c p1\n273.17 355.30
      2.02 c p1\n361.61 446.60 2.02 c p1\n326.78 399.40 2.02 c p1\n296.82
      374.88 2.02 c p1\n289.35 368.03 2.02 c p1\n305.55 381.49 2.02 c
      p1\n354.71 432.48 2.02 c p1\n322.99 396.27 2.02 c p1\n343.93 418.62
      2.02 c p1\n362.64 448.57 2.02 c p1\n268.24 351.39 2.02 c p1\n332.86
      404.55 2.02 c p1\n307.04 383.00 2.02 c p1\n273.55 355.81 2.02 c
      p1\n295.33 373.38 2.02 c p1\n291.97 370.59 2.02 c p1\n301.46 378.15
      2.02 c p1\n336.60 408.67 2.02 c p1\n297.94 375.50 2.02 c p1\n266.73
      350.24 2.02 c p1\n312.11 387.43 2.02 c p1\n347.65 422.00 2.02 c
      p1\n320.64 394.60 2.02 c p1\n279.63 360.81 2.02 c p1\n269.19 352.20
      2.02 c p1\n330.41 402.51 2.02 c p1\n302.25 378.71 2.02 c p1\n332.62
      404.43 2.02 c p1\n321.28 395.21 2.02 c p1\n329.95 402.20 2.02 c
      p1\n313.81 388.88 2.02 c p1\n299.44 376.76 2.02 c p1\n347.77 422.29
      2.02 c p1\n246.53 335.09 2.02 c p1\n333.91 405.87 2.02 c p1\n319.86
      393.94 2.02 c p1\n289.25 367.84 2.02 c p1\n289.46 368.09 2.02 c
      p1\n318.59 393.24 2.02 c p1\n244.50 333.53 2.02 c p1\n309.46 385.18
      2.02 c p1\n313.60 388.65 2.02 c p1\n301.38 378.03 2.02 c p1\n336.78
      408.99 2.02 c p1\n324.65 397.44 2.02 c p1\n327.90 400.47 2.02 c
      p1\n323.21 396.38 2.02 c p1\n336.86 409.01 2.02 c p1\n338.45 410.85
      2.02 c p1\n242.10 330.55 2.02 c p1\n282.12 362.72 2.02 c p1\n296.04
      374.01 2.02 c p1\n339.73 412.34 2.02 c p1\n319.93 394.06 2.02 c
      p1\n349.08 423.75 2.02 c p1\n269.87 353.25 2.02 c p1\n352.15 428.65
      2.02 c p1\n265.65 349.91 2.02 c p1\n335.66 407.72 2.02 c p1\n310.82
      386.62 2.02 c p1\n335.83 407.82 2.02 c p1\n250.58 338.49 2.02 c
      p1\n318.24 392.95 2.02 c p1\n294.97 373.12 2.02 c p1\n354.41 431.78
      2.02 c p1\n278.28 359.80 2.02 c p1\n334.16 406.02 2.02 c p1\n268.48
      351.64 2.02 c p1\n291.78 370.50 2.02 c p1\n333.75 405.54 2.02 c
      p1\n320.36 394.51 2.02 c p1\n327.30 400.14 2.02 c p1\n321.14 395.03
      2.02 c p1\n337.83 410.08 2.02 c p1\n347.42 421.86 2.02 c p1\n304.57
      380.92 2.02 c p1\n287.42 366.26 2.02 c p1\n310.10 385.76 2.02 c
      p1\n298.53 375.88 2.02 c p1\n306.67 382.59 2.02 c p1\n324.80 397.56
      2.02 c p1\n333.59 405.50 2.02 c p1\n287.53 366.31 2.02 c p1\n296.91
      374.96 2.02 c p1\n347.88 422.35 2.02 c p1\n316.69 391.62 2.02 c
      p1\n304.72 381.01 2.02 c p1\n325.75 398.55 2.02 c p1\n278.89 360.31
      2.02 c p1\n275.35 357.62 2.02 c p1\n315.78 391.30 2.02 c p1\n349.20
      423.96 2.02 c p1\n338.72 411.11 2.02 c p1\n298.19 375.76 2.02 c
      p1\n325.45 398.40 2.02 c p1\n270.53 353.70 2.02 c p1\n356.41 435.25
      2.02 c p1\n283.03 363.23 2.02 c p1\n292.07 370.74 2.02 c p1\n330.56
      402.56 2.02 c p1\n339.36 411.80 2.02 c p1\n274.65 356.44 2.02 c
      p1\n307.41 383.56 2.02 c p1\n317.05 392.08 2.02 c p1\n342.12 416.63
      2.02 c p1\n316.55 391.59 2.02 c p1\n283.54 363.69 2.02 c p1\n351.35
      427.83 2.02 c p1\n276.86 358.27 2.02 c p1\n291.58 370.25 2.02 c
      p1\n306.60 382.45 2.02 c p1\n314.80 390.04 2.02 c p1\n336.43 408.60
      2.02 c p1\n297.34 375.20 2.02 c p1\n282.77 362.91 2.02 c p1\n309.89
      385.50 2.02 c p1\n316.84 391.76 2.02 c p1\n245.55 334.72 2.02 c
      p1\n279.91 360.97 2.02 c p1\n334.32 406.12 2.02 c p1\n273.74 355.82
      2.02 c p1\n308.80 384.54 2.02 c p1\n270.09 353.46 2.02 c p1\n310.46
      386.10 2.02 c p1\n323.57 396.55 2.02 c p1\n254.29 341.11 2.02 c
      p1\n328.20 400.67 2.02 c p1\n331.03 402.99 2.02 c p1\n263.59 348.59
      2.02 c p1\n348.59 423.44 2.02 c p1\n293.96 372.24 2.02 c p1\n323.93
      396.86 2.02 c p1\n295.86 373.98 2.02 c p1\n344.98 419.53 2.02 c
      p1\n292.74 371.22 2.02 c p1\n290.48 369.09 2.02 c p1\n291.68 370.33
      2.02 c p1\n315.01 390.07 2.02 c p1\n259.39 346.26 2.02 c p1\n319.37
      393.70 2.02 c p1\n313.38 388.47 2.02 c p1\n284.16 363.95 2.02 c
      p1\n290.38 369.09 2.02 c p1\n308.58 384.32 2.02 c p1\n301.22 377.93
      2.02 c p1\n255.35 342.35 2.02 c p1\n339.27 411.77 2.02 c p1\n291.87
      370.57 2.02 c p1\n286.18 365.48 2.02 c p1\n314.16 389.58 2.02 c
      p1\n307.56 383.65 2.02 c p1\n297.85 375.50 2.02 c p1\n298.28 375.81
      2.02 c p1\n277.02 358.36 2.02 c p1\n334.74 406.44 2.02 c p1\n330.25
      402.47 2.02 c p1\n331.42 403.52 2.02 c p1\n287.75 366.56 2.02 c
      p1\n353.40 430.49 2.02 c p1\n325.60 398.49 2.02 c p1\n330.95 402.91
      2.02 c p1\n355.63 433.67 2.02 c p1\n279.04 360.40 2.02 c p1\n292.65
      371.19 2.02 c p1\n308.22 384.21 2.02 c p1\n280.34 361.23 2.02 c
      p1\n314.02 389.38 2.02 c p1\n309.96 385.60 2.02 c p1\n275.00 356.69
      2.02 c p1\n329.10 401.76 2.02 c p1\n339.09 411.38 2.02 c p1\n330.64
      402.60 2.02 c p1\n303.42 379.76 2.02 c p1\n313.24 388.17 2.02 c
      p1\n282.51 362.85 2.02 c p1\n288.51 367.09 2.02 c p1\n329.49 402.02
      2.02 c p1\n343.32 417.63 2.02 c p1\n344.14 418.77 2.02 c p1\n307.34
      383.49 2.02 c p1\n326.48 399.16 2.02 c p1\n302.57 378.98 2.02 c
      p1\n286.06 365.46 2.02 c p1\n298.94 376.04 2.02 c p1\n305.63 381.56
      2.02 c p1\n324.36 397.27 2.02 c p1\n355.16 432.84 2.02 c p1\n312.32
      387.60 2.02 c p1\n249.86 337.97 2.02 c p1\n329.56 402.04 2.02 c
      p1\n326.85 399.43 2.02 c p1\n294.79 372.97 2.02 c p1\n299.19 376.35
      2.02 c p1\n349.44 424.60 2.02 c p1\n294.60 372.77 2.02 c p1\n356.25
      434.29 2.02 c p1\n323.64 396.66 2.02 c p1\n326.93 399.59 2.02 c
      p1\n366.61 455.51 2.02 c p1\n307.12 383.10 2.02 c p1\n333.83 405.82
      2.02 c p1\n285.60 364.88 2.02 c p1\n339.45 411.97 2.02 c p1\n317.26
      392.25 2.02 c p1\n346.07 420.49 2.02 c p1\n340.39 413.53 2.02 c
      p1\n316.48 391.53 2.02 c p1\n296.65 374.71 2.02 c p1\n331.11 402.99
      2.02 c p1\n310.39 385.84 2.02 c p1\n295.15 373.18 2.02 c p1\n312.60
      387.87 2.02 c p1\n310.97 386.63 2.02 c p1\n301.06 377.91 2.02 c
      p1\n243.35 333.36 2.02 c p1\n344.04 418.75 2.02 c p1\n319.79 393.87
      2.02 c p1\n350.19 425.09 2.02 c p1\n322.06 395.67 2.02 c p1\n291.38
      370.09 2.02 c p1\n334.57 406.38 2.02 c p1\n344.67 419.25 2.02 c
      p1\n312.25 387.54 2.02 c p1\n275.18 357.38 2.02 c p1\n344.56 419.09
      2.02 c p1\n332.38 404.18 2.02 c p1\n323.28 396.40 2.02 c p1\n287.64
      366.37 2.02 c p1\n367.14 456.41 2.02 c p1\n311.96 387.34 2.02 c
      p1\n330.72 402.70 2.02 c p1\n301.14 377.92 2.02 c p1\n281.18 362.07
      2.02 c p1\n273.36 355.52 2.02 c p1\n322.56 395.98 2.02 c p1\n273.92
      355.85 2.02 c p1\n295.06 373.13 2.02 c p1\n311.04 386.65 2.02 c
      p1\n317.82 392.61 2.02 c p1\n340.57 414.19 2.02 c p1\n274.83 356.65
      2.02 c p1\n310.32 385.82 2.02 c p1\n298.69 376.02 2.02 c p1\n297.17
      375.04 2.02 c p1\n363.96 451.10 2.02 c p1\n302.88 379.31 2.02 c
      p1\n292.93 371.52 2.02 c p1\n313.53 388.59 2.02 c p1\n313.17 388.15
      2.02 c p1\n338.91 411.16 2.02 c p1\n314.58 389.95 2.02 c p1\n335.07
      407.12 2.02 c p1\n353.69 430.96 2.02 c p1\n350.96 426.38 2.02 c
      p1\n323.78 396.74 2.02 c p1\n302.10 378.59 2.02 c p1\n316.27 391.50
      2.02 c p1\n329.33 401.85 2.02 c p1\n319.09 393.52 2.02 c p1\n327.00
      399.77 2.02 c p1\n289.56 368.23 2.02 c p1\n341.15 414.60 2.02 c
      p1\n280.20 361.12 2.02 c p1\n260.16 346.46 2.02 c p1\n300.58 377.42
      2.02 c p1\n346.51 420.60 2.02 c p1\n325.53 398.45 2.02 c p1\n353.97
      431.71 2.02 c p1\n321.92 395.60 2.02 c p1\n356.90 435.69 2.02 c
      p1\n278.59 360.04 2.02 c p1\n321.85 395.59 2.02 c p1\n353.83 431.40
      2.02 c p1\n310.68 386.42 2.02 c p1\n318.31 392.98 2.02 c p1\n283.91
      363.82 2.02 c p1\n343.83 418.38 2.02 c p1\n318.10 392.88 2.02 c
      p1\n290.28 368.99 2.02 c p1\n283.79 363.81 2.02 c p1\n342.32 416.75
      2.02 c p1\n299.03 376.05 2.02 c p1\n288.08 366.79 2.02 c p1\n289.67
      368.25 2.02 c p1\n294.33 372.71 2.02 c p1\n328.95 401.37 2.02 c
      p1\n303.65 380.04 2.02 c p1\n288.29 366.93 2.02 c p1\n300.82 377.78
      2.02 c p1\n345.20 419.67 2.02 c p1\n275.87 357.96 2.02 c p1\n306.75
      382.71 2.02 c p1\n368.23 459.20 2.02 c p1\n290.59 369.31 2.02 c
      p1\n300.34 377.33 2.02 c p1\n337.39 409.68 2.02 c p1\n229.26 316.45
      2.02 c p1\n312.75 387.90 2.02 c p1\n343.73 418.07 2.02 c p1\n359.86
      441.55 2.02 c p1\n307.78 383.84 2.02 c p1\n284.89 364.39 2.02 c
      p1\n295.95 374.00 2.02 c p1\n301.86 378.45 2.02 c p1\n346.74 420.70
      2.02 c p1\n340.20 413.32 2.02 c p1\n310.61 386.35 2.02 c p1\n266.46
      350.23 2.02 c p1\n302.72 379.00 2.02 c p1\n303.50 379.94 2.02 c
      p1\n288.93 367.53 2.02 c p1\n261.62 347.52 2.02 c p1\n309.17 384.86
      2.02 c p1\n336.00 408.13 2.02 c p1\n304.88 381.20 2.02 c p1\n293.78
      372.23 2.02 c p1\n328.27 400.73 2.02 c p1\n305.18 381.30 2.02 c
      p1\n350.06 425.08 2.02 c p1\n315.29 390.64 2.02 c p1\n301.54 378.19
      2.02 c p1\n340.48 413.54 2.02 c p1\n302.41 378.92 2.02 c p1\n287.20
      366.17 2.02 c p1\n339.00 411.30 2.02 c p1\n322.28 395.72 2.02 c
      p1\n275.53 357.65 2.02 c p1\n358.95 440.15 2.02 c p1\n294.69 372.80
      2.02 c p1\n298.36 375.81 2.02 c p1\n300.90 377.86 2.02 c p1\n352.98
      429.67 2.02 c p1\n320.78 394.91 2.02 c p1\n284.28 364.00 2.02 c
      p1\n315.36 390.71 2.02 c p1\n281.72 362.60 2.02 c p1\n353.54 430.85
      2.02 c p1\n257.72 344.45 2.02 c p1\n311.82 387.28 2.02 c p1\n312.04
      387.36 2.02 c p1\n311.61 387.02 2.02 c p1\n324.29 397.18 2.02 c
      p1\n333.02 404.88 2.02 c p1\n317.68 392.57 2.02 c p1\n311.68 387.11
      2.02 c p1\n333.67 405.50 2.02 c p1\n260.54 347.08 2.02 c p1\n341.43
      415.64 2.02 c p1\n318.03 392.78 2.02 c p1\n284.03 363.92 2.02 c
      p1\n347.54 421.97 2.02 c p1\n272.59 354.83 2.02 c p1\n342.51 416.81
      2.02 c p1\n311.39 386.90 2.02 c p1\n350.44 425.44 2.02 c p1\n284.65
      364.18 2.02 c p1\n317.33 392.32 2.02 c p1\n309.60 385.42 2.02 c
      p1\n300.42 377.40 2.02 c p1\n277.66 359.46 2.02 c p1\n337.56 409.85
      2.02 c p1\n338.18 410.42 2.02 c p1\n330.88 402.80 2.02 c p1\n292.17
      370.75 2.02 c p1\n321.42 395.35 2.02 c p1\n285.72 364.92 2.02 c
      p1\n315.22 390.44 2.02 c p1\n322.85 396.21 2.02 c p1\n295.50 373.41
      2.02 c p1\n315.43 390.99 2.02 c p1\n302.96 379.33 2.02 c p1\n321.35
      395.35 2.02 c p1\n298.78 376.02 2.02 c p1\n303.04 379.33 2.02 c
      p1\n340.29 413.52 2.02 c p1\n315.57 391.09 2.02 c p1\n298.44 375.83
      2.02 c p1\n329.18 401.80 2.02 c p1\n285.95 365.12 2.02 c p1\n297.60
      375.27 2.02 c p1\n261.26 347.34 2.02 c p1\n315.50 391.03 2.02 c
      p1\n342.71 416.97 2.02 c p1\n266.19 350.02 2.02 c p1\n324.87 397.64
      2.02 c p1\n362.22 447.03 2.02 c p1\n328.88 401.29 2.02 c p1\n341.63
      415.76 2.02 c p1\n300.26 377.32 2.02 c p1\n328.57 401.21 2.02 c
      p1\n325.02 397.74 2.02 c p1\n325.09 397.91 2.02 c p1\n278.74 360.20
      2.02 c p1\n324.43 397.35 2.02 c p1\n285.01 364.54 2.02 c p1\n298.02
      375.68 2.02 c p1\n357.23 436.08 2.02 c p1\n318.45 393.09 2.02 c
      p1\n320.29 394.46 2.02 c p1\n293.68 372.20 2.02 c p1\n357.90 437.72
      2.02 c p1\n264.50 349.12 2.02 c p1\n317.40 392.37 2.02 c p1\n296.21
      374.44 2.02 c p1\n322.35 395.81 2.02 c p1\n331.74 403.65 2.02 c
      p1\n339.92 412.90 2.02 c p1\n337.74 410.00 2.02 c p1\n303.35 379.72
      2.02 c p1\n355.78 433.76 2.02 c p1\n318.95 393.36 2.02 c p1\n266.99
      350.66 2.02 c p1\n328.42 400.81 2.02 c p1\n339.18 411.57 2.02 c
      p1\n281.58 362.57 2.02 c p1\n304.19 380.54 2.02 c p1\n326.33 399.14
      2.02 c p1\n321.56 395.39 2.02 c p1\n330.02 402.27 2.02 c p1\n341.34
      415.33 2.02 c p1\n333.42 405.18 2.02 c p1\n306.97 382.93 2.02 c
      p1\n289.98 368.68 2.02 c p1\n303.81 380.11 2.02 c p1\n335.75 407.82
      2.02 c p1\n294.24 372.44 2.02 c p1\n333.99 405.92 2.02 c p1\n343.01
      417.17 2.02 c p1\n278.44 359.94 2.02 c p1\n275.70 357.69 2.02 c
      p1\n337.30 409.62 2.02 c p1\n326.19 398.92 2.02 c p1\n299.77 377.07
      2.02 c p1\n309.38 385.13 2.02 c p1\n343.62 417.89 2.02 c p1\n279.19
      360.56 2.02 c p1\n354.12 431.72 2.02 c p1\n358.42 438.17 2.02 c
      p1\n282.64 362.86 2.02 c p1\n269.42 353.16 2.02 c p1\n290.79 369.57
      2.02 c p1\n326.41 399.14 2.02 c p1\n313.88 389.15 2.02 c p1\n293.50
      372.10 2.02 c p1\n304.95 381.20 2.02 c p1\n282.25 362.76 2.02 c
      p1\n268.95 352.03 2.02 c p1\n274.29 356.19 2.02 c p1\n339.82 412.80
      2.02 c p1\n332.06 403.82 2.02 c p1\n265.92 349.99 2.02 c p1\n326.04
      398.81 2.02 c p1\n321.21 395.09 2.02 c p1\n335.49 407.46 2.02 c
      p1\n322.63 396.07 2.02 c p1\n294.05 372.31 2.02 c p1\n324.72 397.54
      2.02 c p1\n318.66 393.29 2.02 c p1\n280.76 361.47 2.02 c p1\n253.15
      340.79 2.02 c p1\n315.71 391.22 2.02 c p1\n351.22 427.38 2.02 c
      p1\n365.60 453.83 2.02 c p1\n322.42 395.81 2.02 c p1\n288.40 366.94
      2.02 c p1\n335.58 407.62 2.02 c p1\n303.19 379.43 2.02 c p1\n300.18
      377.25 2.02 c p1\n286.64 365.76 2.02 c p1\n306.53 382.44 2.02 c
      p1\n332.54 404.34 2.02 c p1\n317.89 392.63 2.02 c p1\n308.29 384.26
      2.02 c p1\n305.40 381.38 2.02 c p1\n299.36 376.55 2.02 c p1\n324.58
      397.38 2.02 c p1\n258.98 345.94 2.02 c p1\n325.89 398.72 2.02 c
      p1\n297.00 374.99 2.02 c p1\n329.72 402.13 2.02 c p1\n309.31 384.88
      2.02 c p1\n329.87 402.18 2.02 c p1\n305.48 381.41 2.02 c p1\n294.51
      372.76 2.02 c p1\n344.88 419.53 2.02 c p1\n303.96 380.20 2.02 c
      p1\n325.23 398.15 2.02 c p1\n331.58 403.56 2.02 c p1\n310.18 385.78
      2.02 c p1\n352.56 428.91 2.02 c p1\n310.25 385.80 2.02 c p1\n270.31
      353.55 2.02 c p1\n287.97 366.66 2.02 c p1\n272.39 354.78 2.02 c
      p1\n305.85 382.08 2.02 c p1\n364.88 453.40 2.02 c p1\n316.91 391.82
      2.02 c p1\n268.72 351.75 2.02 c p1\n342.61 416.87 2.02 c p1\n290.18
      368.97 2.02 c p1\n316.20 391.47 2.02 c p1\n326.63 399.28 2.02 c
      p1\n248.29 336.43 2.02 c p1\n319.02 393.44 2.02 c p1\n295.24 373.27
      2.02 c p1\n326.56 399.17 2.02 c p1\n306.38 382.36 2.02 c p1\n303.88
      380.18 2.02 c p1\n348.71 423.59 2.02 c p1\n291.48 370.12 2.02 c
      p1\n356.58 435.29 2.02 c p1\n293.40 372.09 2.02 c p1\n278.13 359.73
      2.02 c p1\n360.24 443.65 2.02 c p1\n292.26 370.80 2.02 c p1\n311.89
      387.34 2.02 c p1\n296.39 374.55 2.02 c p1\n258.15 345.04 2.02 c
      p1\n308.00 383.88 2.02 c p1\n304.42 380.87 2.02 c p1\n262.96 348.18
      2.02 c p1\n285.48 364.86 2.02 c p1\n292.36 370.80 2.02 c p1\n332.14
      403.85 2.02 c p1\n306.45 382.36 2.02 c p1\n277.97 359.51 2.02 c
      p1\n297.51 375.26 2.02 c p1\n345.52 419.80 2.02 c p1\n300.50 377.41
      2.02 c p1\n312.39 387.69 2.02 c p1\n360.62 444.42 2.02 c p1\n321.00
      394.98 2.02 c p1\n316.06 391.45 2.02 c p1\n340.01 413.26 2.02 c
      p1\n332.78 404.50 2.02 c p1\n306.15 382.28 2.02 c p1\n295.68 373.51
      2.02 c p1\n295.59 373.46 2.02 c p1\n283.41 363.65 2.02 c p1\n323.06
      396.33 2.02 c p1\n239.14 325.58 2.02 c p1\n349.32 423.98 2.02 c
      p1\n325.97 398.76 2.02 c p1\n309.09 384.79 2.02 c p1\n330.80 402.76
      2.02 c p1\n259.78 346.27 2.02 c p1\n294.15 372.37 2.02 c p1\n293.03
      371.78 2.02 c p1\n312.96 387.99 2.02 c p1\n296.30 374.49 2.02 c
      p1\n309.53 385.21 2.02 c p1\n334.24 406.09 2.02 c p1\n297.68 375.41
      2.02 c p1\n282.38 362.80 2.02 c p1\n307.63 383.74 2.02 c p1\n310.03
      385.63 2.02 c p1\n289.14 367.84 2.02 c p1\n318.38 393.03 2.02 c
      p1\n326.70 399.29 2.02 c p1\n299.69 377.03 2.02 c p1\n308.44 384.30
      2.02 c p1\n323.71 396.69 2.02 c p1\n334.08 405.95 2.02 c p1\n224.35
      315.41 2.02 c p1\n314.30 389.72 2.02 c p1\n327.52 400.21 2.02 c
      p1\n316.13 391.47 2.02 c p1\n302.33 378.88 2.02 c p1\n335.92 407.97
      2.02 c p1\n297.26 375.04 2.02 c p1\n305.25 381.33 2.02 c p1\n339.55
      411.99 2.02 c p1\n309.74 385.43 2.02 c p1\n293.12 371.81 2.02 c
      p1\n337.12 409.14 2.02 c p1\n325.16 398.08 2.02 c p1\n345.63 420.03
      2.02 c p1\n345.09 419.65 2.02 c p1\n322.71 396.11 2.02 c p1\n348.24
      423.28 2.02 c p1\n276.04 357.96 2.02 c p1\n322.49 395.88 2.02 c
      p1\n327.07 399.78 2.02 c p1\n289.87 368.36 2.02 c p1\n308.73 384.41
      2.02 c p1\n298.11 375.68 2.02 c p1\n328.12 400.59 2.02 c p1\n251.26
      338.54 2.02 c p1\n319.58 393.77 2.02 c p1\n329.03 401.74 2.02 c
      p1\n306.08 382.27 2.02 c p1\n276.37 358.02 2.02 c p1\n324.07 396.96
      2.02 c p1\n288.72 367.37 2.02 c p1\n335.16 407.13 2.02 c p1\n261.96
      347.56 2.02 c p1\n330.10 402.29 2.02 c p1\n357.06 436.08 2.02 c
      p1\n346.63 420.65 2.02 c p1\n285.83 364.99 2.02 c p1\n293.87 372.23
      2.02 c p1\n340.95 414.49 2.02 c p1\n274.47 356.22 2.02 c p1\n299.11
      376.13 2.02 c p1\n323.50 396.51 2.02 c p1\n274.11 356.13 2.02 c
      p1\n301.78 378.34 2.02 c p1\n307.19 383.25 2.02 c p1\n324.00 396.92
      2.02 c p1\n272.19 354.73 2.02 c p1\n317.75 392.59 2.02 c p1\n312.53
      387.80 2.02 c p1\n249.09 336.44 2.02 c p1\n290.89 369.73 2.02 c
      p1\n308.07 384.20 2.02 c p1\n366.36 455.49 2.02 c p1\n316.76 391.72
      2.02 c p1\n308.95 384.71 2.02 c p1\n321.07 395.01 2.02 c p1\n280.90
      361.68 2.02 c p1\n307.93 383.87 2.02 c p1\n346.40 420.55 2.02 c
      p1\n334.49 406.33 2.02 c p1\n254.83 341.18 2.02 c p1\n320.71 394.69
      2.02 c p1\n340.10 413.29 2.02 c p1\n313.10 388.14 2.02 c p1\n316.98
      392.00 2.02 c p1\n267.24 350.84 2.02 c p1\n315.99 391.41 2.02 c
      p1\n276.20 357.97 2.02 c p1\n343.12 417.32 2.02 c p1\n301.30 378.00
      2.02 c p1\n319.51 393.77 2.02 c p1\n299.28 376.49 2.02 c p1\n305.78
      381.95 2.02 c p1\n303.11 379.41 2.02 c p1\n308.66 384.37 2.02 c
      p1\n318.88 393.31 2.02 c p1\n308.88 384.64 2.02 c p1\n351.09 427.26
      2.02 c p1\n285.36 364.86 2.02 c p1\n355.94 434.04 2.02 c p1\n309.02
      384.78 2.02 c p1\n283.66 363.76 2.02 c p1\n310.75 386.60 2.02 c
      p1\n285.25 364.68 2.02 c p1\n311.32 386.88 2.02 c p1\n330.33 402.49
      2.02 c p1\n280.62 361.45 2.02 c p1\n271.17 353.88 2.02 c p1\n271.99
      354.55 2.02 c p1\n343.22 417.45 2.02 c p1\n319.44 393.71 2.02 c
      p1\n352.84 429.29 2.02 c p1\n320.92 394.97 2.02 c p1\n305.70 381.83
      2.02 c p1\n321.64 395.44 2.02 c p1\n293.31 371.88 2.02 c p1\n322.78
      396.21 2.02 c p1\n301.70 378.30 2.02 c p1\n331.19 403.02 2.02 c
      p1\n263.90 348.68 2.02 c p1\n313.31 388.40 2.02 c p1\n316.62 391.59
      2.02 c p1\n328.05 400.56 2.02 c p1\n326.11 398.83 2.02 c p1\n307.49
      383.61 2.02 c p1\n300.66 377.51 2.02 c p1\n334.66 406.42 2.02 c
      p1\n310.89 386.62 2.02 c p1\n321.71 395.51 2.02 c p1\n318.73 393.29
      2.02 c p1\n290.69 369.44 2.02 c p1\n311.11 386.75 2.02 c p1\n317.12
      392.12 2.02 c p1\n345.96 420.33 2.02 c p1\n308.15 384.21 2.02 c
      p1\n307.27 383.25 2.02 c p1\n304.50 380.90 2.02 c p1\n333.34 405.15
      2.02 c p1\n267.75 351.25 2.02 c p1\n338.36 410.85 2.02 c p1\n346.96
      420.95 2.02 c p1\n290.99 369.94 2.02 c p1\n329.64 402.09 2.02 c
      p1\n314.65 390.02 2.02 c p1\n346.85 420.86 2.02 c p1\n268.00 351.32
      2.02 c p1\n336.52 408.62 2.02 c p1\n328.65 401.27 2.02 c p1\n312.89
      387.98 2.02 c p1\n313.45 388.57 2.02 c p1\n270.96 353.82 2.02 c
      p1\n293.21 371.87 2.02 c p1\n338.01 410.38 2.02 c p1\n337.65 409.90
      2.02 c p1\n328.72 401.28 2.02 c p1\n350.70 426.32 2.02 c p1\n281.99
      362.71 2.02 c p1\n327.82 400.46 2.02 c p1\n271.38 353.95 2.02 c
      p1\n280.48 361.43 2.02 c p1\n323.42 396.47 2.02 c p1\n302.49 378.96
      2.02 c p1\n265.08 349.67 2.02 c p1\n251.92 338.90 2.02 c p1\n336.95
      409.05 2.02 c p1\n320.22 394.19 2.02 c p1\n300.01 377.23 2.02 c
      p1\n280.06 361.05 2.02 c p1\n338.81 411.12 2.02 c p1\n253.73 340.79
      2.02 c p1\n354.56 431.99 2.02 c p1\n315.08 390.16 2.02 c p1\n287.09
      366.14 2.02 c p1\n281.31 362.24 2.02 c p1\n300.74 377.65 2.02 c
      p1\n283.28 363.32 2.02 c p1\n260.90 347.24 2.02 c p1\n299.61 376.95
      2.02 c p1\n291.19 369.98 2.02 c p1\n342.22 416.71 2.02 c p1\n321.49
      395.37 2.02 c p1\n306.82 382.72 2.02 c p1\n306.30 382.35 2.02 c
      p1\n286.75 365.77 2.02 c p1\n319.16 393.53 2.02 c p1\n303.58 379.98
      2.02 c p1\n323.35 396.41 2.02 c p1\n313.74 388.76 2.02 c p1\n334.91
      406.82 2.02 c p1\n334.41 406.22 2.02 c p1\n336.26 408.41 2.02 c
      p1\n306.00 382.26 2.02 c p1\n214.47 315.27 2.02 c p1\n302.18 378.62
      2.02 c p1\n302.02 378.53 2.02 c p1\n336.69 408.69 2.02 c p1\n277.50
      359.19 2.02 c p1\n338.27 410.81 2.02 c p1\n310.54 386.14 2.02 c
      p1\n311.54 387.01 2.02 c p1\n314.09 389.57 2.02 c p1\n247.44 335.94
      2.02 c p1\n327.60 400.22 2.02 c p1\n296.56 374.70 2.02 c p1\n283.16
      363.29 2.02 c p1\n332.22 404.06 2.02 c p1\n288.19 366.88 2.02 c
      p1\n299.93 377.18 2.02 c p1\n357.40 436.22 2.02 c p1\n336.34 408.43
      2.02 c p1\n252.55 339.53 2.02 c p1\n323.86 396.79 2.02 c p1\n337.21
      409.28 2.02 c p1\n327.67 400.22 2.02 c p1\n325.31 398.27 2.02 c
      p1\n329.41 401.89 2.02 c p1\n341.73 416.00 2.02 c p1\n346.29 420.52
      2.02 c p1\n335.41 407.42 2.02 c p1\n270.74 353.73 2.02 c p1\n296.74
      374.78 2.02 c p1\n333.50 405.26 2.02 c p1\n258.57 345.66 2.02 c
      p1\n348.83 423.63 2.02 c p1\n312.18 387.43 2.02 c p1\n342.41 416.79
      2.02 c p1\n300.98 377.88 2.02 c p1\n237.34 323.82 2.02 c p1\n344.46
      418.91 2.02 c p1\n292.45 371.04 2.02 c p1\n313.67 388.69 2.02 c
      p1\n313.95 389.34 2.02 c p1\n327.75 400.39 2.02 c p1\n335.32 407.25
      2.02 c p1\n334.82 406.55 2.02 c p1\n339.64 412.00 2.02 c p1\n315.92
      391.38 2.02 c p1\n286.97 366.07 2.02 c p1\n329.26 401.82 2.02 c
      p1\n329.79 402.14 2.02 c p1\n352.70 429.24 2.02 c p1\n302.80 379.24
      2.02 c p1\n286.41 365.51 2.02 c p1\n320.57 394.59 2.02 c p1\n328.50
      400.97 2.02 c p1\n324.94 397.69 2.02 c p1\n292.55 371.09 2.02 c
      p1\n288.62 367.26 2.02 c p1\n314.23 389.66 2.02 c p1\n342.81 417.02
      2.02 c p1\n317.19 392.22 2.02 c p1\n277.35 359.05 2.02 c p1\n304.80
      381.07 2.02 c p1\n337.92 410.20 2.02 c p1\n352.29 428.73 2.02 c
      p1\n297.08 375.01 2.02 c p1\n297.43 375.25 2.02 c p1\n282.90 363.11
      2.02 c p1\n345.74 420.05 2.02 c p1\n287.86 366.66 2.02 c p1\n293.59
      372.17 2.02 c p1\n308.37 384.27 2.02 c p1\n378.25 471.85 2.02 c
      p1\n363.51 450.27 2.02 c p1\n369.70 461.50 2.02 c p1\n351.75 428.14
      2.02 c p1\n386.16 483.48 2.02 c p1\n361.41 446.23 2.02 c p1\n362.43
      447.91 2.02 c p1\n377.26 471.07 2.02 c p1\n361.81 446.76 2.02 c
      p1\n394.46 502.72 2.02 c p1\n378.77 473.43 2.02 c p1\n360.82 444.60
      2.02 c p1\n340.76 414.36 2.02 c p1\n364.65 452.93 2.02 c p1\n364.18
      451.61 2.02 c p1\n379.87 474.32 2.02 c p1\n349.94 425.03 2.02 c
      p1\n404.34 508.54 2.02 c p1\n370.64 463.38 2.02 c p1\n367.68 457.77
      2.02 c p1\n360.43 443.73 2.02 c p1\n375.88 468.80 2.02 c p1\n375.45
      468.62 2.02 c p1\n359.13 440.20 2.02 c p1\n371.30 463.73 2.02 c
      p1\n375.03 468.28 2.02 c p1\n354.86 432.58 2.02 c p1\n365.85 454.50
      2.02 c p1\n352.02 428.63 2.02 c p1\n373.44 465.23 2.02 c p1\n365.36
      453.76 2.02 c p1\n362.02 446.78 2.02 c p1\n400.97 508.19 2.02 c
      p1\n390.25 498.15 2.02 c p1\n376.79 468.96 2.02 c p1\n383.74 477.92
      2.02 c p1\n364.41 452.13 2.02 c p1\n358.60 438.71 2.02 c p1\n391.50
      498.19 2.02 c p1\n356.74 435.33 2.02 c p1\n368.81 460.44 2.02 c
      p1\n392.89 499.51 2.02 c p1\n361.21 445.61 2.02 c p1\n363.07 449.67
      2.02 c p1\n409.25 517.62 2.02 c p1\n419.13 519.93 2.02 c p1\n372.34
      464.54 2.02 c p1\n355.32 432.90 2.02 c p1\n370.01 461.53 2.02 c
      p1\n348.95 423.68 2.02 c p1\n366.10 454.62 2.02 c p1\n373.06 465.08
      2.02 c p1\n380.45 474.66 2.02 c p1\n374.62 466.99 2.02 c p1\n350.57
      426.04 2.02 c p1\n383.02 477.55 2.02 c p1\n372.70 464.60 2.02 c
      p1\n374.21 466.40 2.02 c p1\n337.48 409.69 2.02 c p1\n398.38 506.18
      2.02 c p1\n368.52 460.01 2.02 c p1\n349.69 424.74 2.02 c p1\n369.10
      460.50 2.02 c p1\n351.88 428.45 2.02 c p1\n359.49 440.88 2.02 c
      p1\n387.07 485.24 2.02 c p1\n381.05 475.61 2.02 c p1\n389.10 492.58
      2.02 c p1\n396.26 504.49 2.02 c p1\n367.41 457.12 2.02 c p1\n377.75
      471.20 2.02 c p1\n384.51 478.01 2.02 c p1\n351.61 428.05 2.02 c
      p1\n385.31 480.66 2.02 c p1\n361.01 444.66 2.02 c p1\n367.95 458.99
      2.02 c p1\n366.87 455.81 2.02 c p1\n370.33 463.29 2.02 c p1\n360.05
      442.10 2.02 c p1\n382.34 476.61 2.02 c p1\n356.10 434.21 2.02 c
      p1\n342.02 416.41 2.02 c p1\n373.82 466.02 2.02 c p1\n357.73 437.20
      2.02 c p1\n365.12 453.55 2.02 c p1\n359.68 441.05 2.02 c p1\n363.73
      450.37 2.02 c p1\n353.26 429.81 2.02 c p1\n369.40 461.01 2.02 c
      p1\n358.07 437.73 2.02 c p1\n381.68 476.05 2.02 c p1\n345.85 420.06
      2.02 c p1\n358.77 438.73 2.02 c p1\n376.33 468.93 2.02 c p1\n379.31
      474.24 2.02 c p1\n363.29 450.21 2.02 c p1\n388.05 488.55 2.02 c
      p1\n341.92 416.26 2.02 c p1\n370.97 463.61 2.02 c p1\n371.64 464.16
      2.02 c p1\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75
      setlinewidth\n[] 0 setdash\nnp\n224.25 307.08 m\n185.10 0
      l\no\nnp\n224.25 307.08 m\n0 -5.40 l\no\nnp\n255.10 307.08 m\n0 -5.40
      l\no\nnp\n285.95 307.08 m\n0 -5.40 l\no\nnp\n316.80 307.08 m\n0 -5.40
      l\no\nnp\n347.65 307.08 m\n0 -5.40 l\no\nnp\n378.50 307.08 m\n0 -5.40
      l\no\nnp\n409.35 307.08 m\n0 -5.40 l\no\n/ps 11 def R 11 s\n224.25
      287.64 (-3) .5 0 0 t\n255.10 287.64 (-2) .5 0 0 t\n285.95 287.64 (-1)
      .5 0 0 t\n316.80 287.64 (0) .5 0 0 t\n347.65 287.64 (1) .5 0 0
      t\n378.50 287.64 (2) .5 0 0 t\n409.35 287.64 (3) .5 0 0 t\nnp\n206.28
      339.34 m\n0 146.68 l\no\nnp\n206.28 339.34 m\n-5.40 0 l\no\nnp\n206.28
      388.24 m\n-5.40 0 l\no\nnp\n206.28 437.13 m\n-5.40 0 l\no\nnp\n206.28
      486.02 m\n-5.40 0 l\no\n193.32 339.34 (-2) .5 0 90 t\n193.32 388.24 (0)
      .5 0 90 t\n193.32 437.13 (2) .5 0 90 t\n193.32 486.02 (4) .5 0 90
      t\nnp\n206.28 307.08 m\n221.04 0 l\n0 221.04 l\n-221.04 0 l\n0 -221.04
      l\no\n162.00 252.00 450.00 540.00 cl\n/ps 13 def B 13 s\n0 0 0
      rgb\n316.80 529.39 (Normal Q-Q Plot) .5 0 0 t\n/ps 11 def R 11
      s\n316.80 266.04 (Theoretical Quantiles) .5 0 0 t\n171.72 417.60
      (Sample Quantiles) .5 0 90 t\n206.28 307.08 427.32 528.12 cl\n1 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n206.28 300.65 m\n221.04
      175.17 l\no\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  If we have too many points on the right, then the last quantiles occur too
  late, and the points move up.

  <verbatim|plot>

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      x=-10:10 ; y= x ^ 2
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(x,y) ; v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n229.00 452.98 2.25 c p1\n238.89 425.02 2.25 c p1\n248.78 400.36
      2.25 c p1\n258.67 378.98 2.25 c p1\n268.56 360.89 2.25 c p1\n278.44
      346.09 2.25 c p1\n288.33 334.58 2.25 c p1\n298.22 326.36 2.25 c
      p1\n308.11 321.42 2.25 c p1\n318.00 319.78 2.25 c p1\n327.89 321.42
      2.25 c p1\n337.78 326.36 2.25 c p1\n347.67 334.58 2.25 c p1\n357.56
      346.09 2.25 c p1\n367.44 360.89 2.25 c p1\n377.33 378.98 2.25 c
      p1\n387.22 400.36 2.25 c p1\n397.11 425.02 2.25 c p1\n407.00 452.98
      2.25 c p1\n416.89 484.22 2.25 c p1\n162.00 252.00 450.00 540.00 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (-10) .5 0 0 t\n268.56 291.60 (-5) .5 0 0 t\n318.00 291.60 (0)
      .5 0 0 t\n367.44 291.60 (5) .5 0 0 t\n416.89 291.60 (10) .5 0 0
      t\nnp\n211.20 319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0
      l\no\nnp\n211.20 352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0
      l\no\nnp\n211.20 418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0
      l\no\nnp\n211.20 484.22 m\n-6.00 0 l\no\n196.80 319.78 (0) .5 0 90
      t\n196.80 352.67 (20) .5 0 90 t\n196.80 385.56 (40) .5 0 90 t\n196.80
      418.44 (60) .5 0 90 t\n196.80 451.33 (80) .5 0 90 t\n196.80 484.22
      (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(x,y,type="l");v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 484.22
      m\n9.89 -31.24 l\n9.89 -27.96 l\n9.89 -24.66 l\n9.89 -21.38 l\n9.89
      -18.09 l\n9.88 -14.80 l\n9.89 -11.51 l\n9.89 -8.22 l\n9.89 -4.94
      l\n9.89 -1.64 l\n9.89 1.64 l\n9.89 4.94 l\n9.89 8.22 l\n9.89 11.51
      l\n9.88 14.80 l\n9.89 18.09 l\n9.89 21.38 l\n9.89 24.66 l\n9.89 27.96
      l\n9.89 31.24 l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75
      setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (-10) .5 0 0 t\n268.56 291.60 (-5) .5 0 0 t\n318.00 291.60 (0)
      .5 0 0 t\n367.44 291.60 (5) .5 0 0 t\n416.89 291.60 (10) .5 0 0
      t\nnp\n211.20 319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0
      l\no\nnp\n211.20 352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0
      l\no\nnp\n211.20 418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0
      l\no\nnp\n211.20 484.22 m\n-6.00 0 l\no\n196.80 319.78 (0) .5 0 90
      t\n196.80 352.67 (20) .5 0 90 t\n196.80 385.56 (40) .5 0 90 t\n196.80
      418.44 (60) .5 0 90 t\n196.80 451.33 (80) .5 0 90 t\n196.80 484.22
      (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  We can also add to an existing plot

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(x,y);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n229.00 452.98 2.25 c p1\n238.89 425.02 2.25 c p1\n248.78 400.36
      2.25 c p1\n258.67 378.98 2.25 c p1\n268.56 360.89 2.25 c p1\n278.44
      346.09 2.25 c p1\n288.33 334.58 2.25 c p1\n298.22 326.36 2.25 c
      p1\n308.11 321.42 2.25 c p1\n318.00 319.78 2.25 c p1\n327.89 321.42
      2.25 c p1\n337.78 326.36 2.25 c p1\n347.67 334.58 2.25 c p1\n357.56
      346.09 2.25 c p1\n367.44 360.89 2.25 c p1\n377.33 378.98 2.25 c
      p1\n387.22 400.36 2.25 c p1\n397.11 425.02 2.25 c p1\n407.00 452.98
      2.25 c p1\n416.89 484.22 2.25 c p1\n162.00 252.00 450.00 540.00 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (-10) .5 0 0 t\n268.56 291.60 (-5) .5 0 0 t\n318.00 291.60 (0)
      .5 0 0 t\n367.44 291.60 (5) .5 0 0 t\n416.89 291.60 (10) .5 0 0
      t\nnp\n211.20 319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0
      l\no\nnp\n211.20 352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0
      l\no\nnp\n211.20 418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0
      l\no\nnp\n211.20 484.22 m\n-6.00 0 l\no\n196.80 319.78 (0) .5 0 90
      t\n196.80 352.67 (20) .5 0 90 t\n196.80 385.56 (40) .5 0 90 t\n196.80
      418.44 (60) .5 0 90 t\n196.80 451.33 (80) .5 0 90 t\n196.80 484.22
      (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      points(x,x,col=2);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n229.00 452.98 2.25 c p1\n238.89 425.02 2.25 c p1\n248.78 400.36
      2.25 c p1\n258.67 378.98 2.25 c p1\n268.56 360.89 2.25 c p1\n278.44
      346.09 2.25 c p1\n288.33 334.58 2.25 c p1\n298.22 326.36 2.25 c
      p1\n308.11 321.42 2.25 c p1\n318.00 319.78 2.25 c p1\n327.89 321.42
      2.25 c p1\n337.78 326.36 2.25 c p1\n347.67 334.58 2.25 c p1\n357.56
      346.09 2.25 c p1\n367.44 360.89 2.25 c p1\n377.33 378.98 2.25 c
      p1\n387.22 400.36 2.25 c p1\n397.11 425.02 2.25 c p1\n407.00 452.98
      2.25 c p1\n416.89 484.22 2.25 c p1\n162.00 252.00 450.00 540.00 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (-10) .5 0 0 t\n268.56 291.60 (-5) .5 0 0 t\n318.00 291.60 (0)
      .5 0 0 t\n367.44 291.60 (5) .5 0 0 t\n416.89 291.60 (10) .5 0 0
      t\nnp\n211.20 319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0
      l\no\nnp\n211.20 352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0
      l\no\nnp\n211.20 418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0
      l\no\nnp\n211.20 484.22 m\n-6.00 0 l\no\n196.80 319.78 (0) .5 0 90
      t\n196.80 352.67 (20) .5 0 90 t\n196.80 385.56 (40) .5 0 90 t\n196.80
      418.44 (60) .5 0 90 t\n196.80 451.33 (80) .5 0 90 t\n196.80 484.22
      (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\n211.20 313.20 424.80 490.80 cl\n1 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\n268.56 311.56 2.25 c p1\n278.44 313.20 2.25 c p1\n288.33
      314.84 2.25 c p1\n298.22 316.49 2.25 c p1\n308.11 318.13 2.25 c
      p1\n318.00 319.78 2.25 c p1\n327.89 321.42 2.25 c p1\n337.78 323.07
      2.25 c p1\n347.67 324.71 2.25 c p1\n357.56 326.36 2.25 c p1\n367.44
      328.00 2.25 c p1\n377.33 329.64 2.25 c p1\n387.22 331.29 2.25 c
      p1\n397.11 332.93 2.25 c p1\n407.00 334.58 2.25 c p1\n416.89 336.22
      2.25 c p1\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      abline(40,0,col="green");v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n229.00 452.98 2.25 c p1\n238.89 425.02 2.25 c p1\n248.78 400.36
      2.25 c p1\n258.67 378.98 2.25 c p1\n268.56 360.89 2.25 c p1\n278.44
      346.09 2.25 c p1\n288.33 334.58 2.25 c p1\n298.22 326.36 2.25 c
      p1\n308.11 321.42 2.25 c p1\n318.00 319.78 2.25 c p1\n327.89 321.42
      2.25 c p1\n337.78 326.36 2.25 c p1\n347.67 334.58 2.25 c p1\n357.56
      346.09 2.25 c p1\n367.44 360.89 2.25 c p1\n377.33 378.98 2.25 c
      p1\n387.22 400.36 2.25 c p1\n397.11 425.02 2.25 c p1\n407.00 452.98
      2.25 c p1\n416.89 484.22 2.25 c p1\n162.00 252.00 450.00 540.00 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (-10) .5 0 0 t\n268.56 291.60 (-5) .5 0 0 t\n318.00 291.60 (0)
      .5 0 0 t\n367.44 291.60 (5) .5 0 0 t\n416.89 291.60 (10) .5 0 0
      t\nnp\n211.20 319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0
      l\no\nnp\n211.20 352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0
      l\no\nnp\n211.20 418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0
      l\no\nnp\n211.20 484.22 m\n-6.00 0 l\no\n196.80 319.78 (0) .5 0 90
      t\n196.80 352.67 (20) .5 0 90 t\n196.80 385.56 (40) .5 0 90 t\n196.80
      418.44 (60) .5 0 90 t\n196.80 451.33 (80) .5 0 90 t\n196.80 484.22
      (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\n211.20 313.20 424.80 490.80 cl\n1 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\n268.56 311.56 2.25 c p1\n278.44 313.20 2.25 c p1\n288.33
      314.84 2.25 c p1\n298.22 316.49 2.25 c p1\n308.11 318.13 2.25 c
      p1\n318.00 319.78 2.25 c p1\n327.89 321.42 2.25 c p1\n337.78 323.07
      2.25 c p1\n347.67 324.71 2.25 c p1\n357.56 326.36 2.25 c p1\n367.44
      328.00 2.25 c p1\n377.33 329.64 2.25 c p1\n387.22 331.29 2.25 c
      p1\n397.11 332.93 2.25 c p1\n407.00 334.58 2.25 c p1\n416.89 336.22
      2.25 c p1\n0 1 0 rgb\nnp\n211.20 385.56 m\n213.60 0 l\no\nnp\n211.20
      385.56 m\n213.60 0 l\no\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      lines(x,y);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n229.00 452.98 2.25 c p1\n238.89 425.02 2.25 c p1\n248.78 400.36
      2.25 c p1\n258.67 378.98 2.25 c p1\n268.56 360.89 2.25 c p1\n278.44
      346.09 2.25 c p1\n288.33 334.58 2.25 c p1\n298.22 326.36 2.25 c
      p1\n308.11 321.42 2.25 c p1\n318.00 319.78 2.25 c p1\n327.89 321.42
      2.25 c p1\n337.78 326.36 2.25 c p1\n347.67 334.58 2.25 c p1\n357.56
      346.09 2.25 c p1\n367.44 360.89 2.25 c p1\n377.33 378.98 2.25 c
      p1\n387.22 400.36 2.25 c p1\n397.11 425.02 2.25 c p1\n407.00 452.98
      2.25 c p1\n416.89 484.22 2.25 c p1\n162.00 252.00 450.00 540.00 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (-10) .5 0 0 t\n268.56 291.60 (-5) .5 0 0 t\n318.00 291.60 (0)
      .5 0 0 t\n367.44 291.60 (5) .5 0 0 t\n416.89 291.60 (10) .5 0 0
      t\nnp\n211.20 319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0
      l\no\nnp\n211.20 352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0
      l\no\nnp\n211.20 418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0
      l\no\nnp\n211.20 484.22 m\n-6.00 0 l\no\n196.80 319.78 (0) .5 0 90
      t\n196.80 352.67 (20) .5 0 90 t\n196.80 385.56 (40) .5 0 90 t\n196.80
      418.44 (60) .5 0 90 t\n196.80 451.33 (80) .5 0 90 t\n196.80 484.22
      (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\n211.20 313.20 424.80 490.80 cl\n1 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\n268.56 311.56 2.25 c p1\n278.44 313.20 2.25 c p1\n288.33
      314.84 2.25 c p1\n298.22 316.49 2.25 c p1\n308.11 318.13 2.25 c
      p1\n318.00 319.78 2.25 c p1\n327.89 321.42 2.25 c p1\n337.78 323.07
      2.25 c p1\n347.67 324.71 2.25 c p1\n357.56 326.36 2.25 c p1\n367.44
      328.00 2.25 c p1\n377.33 329.64 2.25 c p1\n387.22 331.29 2.25 c
      p1\n397.11 332.93 2.25 c p1\n407.00 334.58 2.25 c p1\n416.89 336.22
      2.25 c p1\n0 1 0 rgb\nnp\n211.20 385.56 m\n213.60 0 l\no\nnp\n211.20
      385.56 m\n213.60 0 l\no\n0 0 0 rgb\nnp\n219.11 484.22 m\n9.89 -31.24
      l\n9.89 -27.96 l\n9.89 -24.66 l\n9.89 -21.38 l\n9.89 -18.09 l\n9.88
      -14.80 l\n9.89 -11.51 l\n9.89 -8.22 l\n9.89 -4.94 l\n9.89 -1.64 l\n9.89
      1.64 l\n9.89 4.94 l\n9.89 8.22 l\n9.89 11.51 l\n9.88 14.80 l\n9.89
      18.09 l\n9.89 21.38 l\n9.89 24.66 l\n9.89 27.96 l\n9.89 31.24
      l\no\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      title("A nice plot");v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n229.00 452.98 2.25 c p1\n238.89 425.02 2.25 c p1\n248.78 400.36
      2.25 c p1\n258.67 378.98 2.25 c p1\n268.56 360.89 2.25 c p1\n278.44
      346.09 2.25 c p1\n288.33 334.58 2.25 c p1\n298.22 326.36 2.25 c
      p1\n308.11 321.42 2.25 c p1\n318.00 319.78 2.25 c p1\n327.89 321.42
      2.25 c p1\n337.78 326.36 2.25 c p1\n347.67 334.58 2.25 c p1\n357.56
      346.09 2.25 c p1\n367.44 360.89 2.25 c p1\n377.33 378.98 2.25 c
      p1\n387.22 400.36 2.25 c p1\n397.11 425.02 2.25 c p1\n407.00 452.98
      2.25 c p1\n416.89 484.22 2.25 c p1\n162.00 252.00 450.00 540.00 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (-10) .5 0 0 t\n268.56 291.60 (-5) .5 0 0 t\n318.00 291.60 (0)
      .5 0 0 t\n367.44 291.60 (5) .5 0 0 t\n416.89 291.60 (10) .5 0 0
      t\nnp\n211.20 319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0
      l\no\nnp\n211.20 352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0
      l\no\nnp\n211.20 418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0
      l\no\nnp\n211.20 484.22 m\n-6.00 0 l\no\n196.80 319.78 (0) .5 0 90
      t\n196.80 352.67 (20) .5 0 90 t\n196.80 385.56 (40) .5 0 90 t\n196.80
      418.44 (60) .5 0 90 t\n196.80 451.33 (80) .5 0 90 t\n196.80 484.22
      (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\n211.20 313.20 424.80 490.80 cl\n1 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\n268.56 311.56 2.25 c p1\n278.44 313.20 2.25 c p1\n288.33
      314.84 2.25 c p1\n298.22 316.49 2.25 c p1\n308.11 318.13 2.25 c
      p1\n318.00 319.78 2.25 c p1\n327.89 321.42 2.25 c p1\n337.78 323.07
      2.25 c p1\n347.67 324.71 2.25 c p1\n357.56 326.36 2.25 c p1\n367.44
      328.00 2.25 c p1\n377.33 329.64 2.25 c p1\n387.22 331.29 2.25 c
      p1\n397.11 332.93 2.25 c p1\n407.00 334.58 2.25 c p1\n416.89 336.22
      2.25 c p1\n0 1 0 rgb\nnp\n211.20 385.56 m\n213.60 0 l\no\nnp\n211.20
      385.56 m\n213.60 0 l\no\n0 0 0 rgb\nnp\n219.11 484.22 m\n9.89 -31.24
      l\n9.89 -27.96 l\n9.89 -24.66 l\n9.89 -21.38 l\n9.89 -18.09 l\n9.88
      -14.80 l\n9.89 -11.51 l\n9.89 -8.22 l\n9.89 -4.94 l\n9.89 -1.64 l\n9.89
      1.64 l\n9.89 4.94 l\n9.89 8.22 l\n9.89 11.51 l\n9.88 14.80 l\n9.89
      18.09 l\n9.89 21.38 l\n9.89 24.66 l\n9.89 27.96 l\n9.89 31.24
      l\no\n162.00 252.00 450.00 540.00 cl\n/ps 14 def B 14 s\n0 0 0
      rgb\n318.00 510.37 (A nice plot) .5 0 0 t\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(x,y,pch="M",

      \ \ \ \ \ col=3, xlab="this is x", ylab= "this is y",

      \ \ \ \ \ main="A very nice plot" );v()
    </input>

    <\input|<with|color|red|+ + <with|color|black|>>>
      \;
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n/ps 12 def R 12 s\n0 0.8039 0 rgb\n219.11 479.91 (M) .5 0 0
      t\n229.00 448.67 (M) .5 0 0 t\n238.89 420.71 (M) .5 0 0 t\n248.78
      396.05 (M) .5 0 0 t\n258.67 374.67 (M) .5 0 0 t\n268.56 356.58 (M) .5 0
      0 t\n278.44 341.78 (M) .5 0 0 t\n288.33 330.27 (M) .5 0 0 t\n298.22
      322.05 (M) .5 0 0 t\n308.11 317.11 (M) .5 0 0 t\n318.00 315.47 (M) .5 0
      0 t\n327.89 317.11 (M) .5 0 0 t\n337.78 322.05 (M) .5 0 0 t\n347.67
      330.27 (M) .5 0 0 t\n357.56 341.78 (M) .5 0 0 t\n367.44 356.58 (M) .5 0
      0 t\n377.33 374.67 (M) .5 0 0 t\n387.22 396.05 (M) .5 0 0 t\n397.11
      420.71 (M) .5 0 0 t\n407.00 448.67 (M) .5 0 0 t\n416.89 479.91 (M) .5 0
      0 t\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n219.11 313.20 m\n197.78 0 l\no\nnp\n219.11 313.20 m\n0
      -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00 l\no\nnp\n318.00 313.20 m\n0
      -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00 l\no\nnp\n416.89 313.20 m\n0
      -6.00 l\no\n/ps 12 def R 12 s\n219.11 291.60 (-10) .5 0 0 t\n268.56
      291.60 (-5) .5 0 0 t\n318.00 291.60 (0) .5 0 0 t\n367.44 291.60 (5) .5
      0 0 t\n416.89 291.60 (10) .5 0 0 t\nnp\n211.20 319.78 m\n0 164.44
      l\no\nnp\n211.20 319.78 m\n-6.00 0 l\no\nnp\n211.20 352.67 m\n-6.00 0
      l\no\nnp\n211.20 385.56 m\n-6.00 0 l\no\nnp\n211.20 418.44 m\n-6.00 0
      l\no\nnp\n211.20 451.33 m\n-6.00 0 l\no\nnp\n211.20 484.22 m\n-6.00 0
      l\no\n196.80 319.78 (0) .5 0 90 t\n196.80 352.67 (20) .5 0 90 t\n196.80
      385.56 (40) .5 0 90 t\n196.80 418.44 (60) .5 0 90 t\n196.80 451.33 (80)
      .5 0 90 t\n196.80 484.22 (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0
      l\n0 177.60 l\n-213.60 0 l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00
      cl\n/ps 14 def B 14 s\n0 0 0 rgb\n318.00 510.37 (A very nice plot) .5 0
      0 t\n/ps 12 def R 12 s\n318.00 267.60 (this is x) .5 0 0 t\n172.80
      402.00 (this is y) .5 0 90 t\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    \;
  </session>>

  The most useful pch is pch=''.''

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(x,y,pch=".");v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n/bg { 0 0 0 } def\n218.61 483.72 1.00 1.00 r p2\n228.50 452.48 1.00
      1.00 r p2\n238.39 424.52 1.00 1.00 r p2\n248.28 399.86 1.00 1.00 r
      p2\n258.17 378.48 1.00 1.00 r p2\n268.06 360.39 1.00 1.00 r p2\n277.94
      345.59 1.00 1.00 r p2\n287.83 334.08 1.00 1.00 r p2\n297.72 325.86 1.00
      1.00 r p2\n307.61 320.92 1.00 1.00 r p2\n317.50 319.28 1.00 1.00 r
      p2\n327.39 320.92 1.00 1.00 r p2\n337.28 325.86 1.00 1.00 r p2\n347.17
      334.08 1.00 1.00 r p2\n357.06 345.59 1.00 1.00 r p2\n366.94 360.39 1.00
      1.00 r p2\n376.83 378.48 1.00 1.00 r p2\n386.72 399.86 1.00 1.00 r
      p2\n396.61 424.52 1.00 1.00 r p2\n406.50 452.48 1.00 1.00 r p2\n416.39
      483.72 1.00 1.00 r p2\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75
      setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (-10) .5 0 0 t\n268.56 291.60 (-5) .5 0 0 t\n318.00 291.60 (0)
      .5 0 0 t\n367.44 291.60 (5) .5 0 0 t\n416.89 291.60 (10) .5 0 0
      t\nnp\n211.20 319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0
      l\no\nnp\n211.20 352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0
      l\no\nnp\n211.20 418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0
      l\no\nnp\n211.20 484.22 m\n-6.00 0 l\no\n196.80 319.78 (0) .5 0 90
      t\n196.80 352.67 (20) .5 0 90 t\n196.80 385.56 (40) .5 0 90 t\n196.80
      418.44 (60) .5 0 90 t\n196.80 451.33 (80) .5 0 90 t\n196.80 484.22
      (100) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  <subsection|Saving a plot to a file>

  We have a couple of options for saving a plot to a file:

  One is saving as postscript. For others, look at <verbatim|help(Devices)>.

  First we specify the device, and the file:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      postscript(file="graph1.eps",width=5,height=5,horizontal=F,onefile=F)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  Then we do all the plot commands:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(sin,-3,3)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      abline(-1,0,col=2); abline(1,0,col=3)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  Finally we close the device;

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      dev.off()
    </input>

    <\output>
      X11\ 

      \ \ 2\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  <subsection|Putting several plots into one>

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      two.by.two=matrix( 1:4, 2, 2)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      two.by.two
    </input>

    <\output>
      \ \ \ \ \ [,1] [,2]

      [1,] \ \ \ 1 \ \ \ 3

      [2,] \ \ \ 2 \ \ \ 4
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      layout(two.by.two)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      layout.show(4);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n162.00 396.00 306.00 540.00 cl\n162.00 252.00 450.00 540.00
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n162.00 396.00
      m\n144.00 0 l\n0 144.00 l\n-144.00 0 l\n0 -144.00 l\no\n162.00 396.00
      306.00 540.00 cl\n/ps 10 def R 10 s\n0 0 0 rgb\n234.00 464.49 (1) .5 0
      0 t\n162.00 252.00 306.00 396.00 cl\n162.00 252.00 450.00 540.00 cl\n0
      0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n162.00 252.00 m\n144.00 0
      l\n0 144.00 l\n-144.00 0 l\n0 -144.00 l\no\n162.00 252.00 306.00 396.00
      cl\n/ps 10 def R 10 s\n0 0 0 rgb\n234.00 320.49 (2) .5 0 0 t\n306.00
      396.00 450.00 540.00 cl\n162.00 252.00 450.00 540.00 cl\n0 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n306.00 396.00 m\n144.00 0
      l\n0 144.00 l\n-144.00 0 l\n0 -144.00 l\no\n306.00 396.00 450.00 540.00
      cl\n/ps 10 def R 10 s\n0 0 0 rgb\n378.00 464.58 (3) .5 0 0 t\n306.00
      252.00 450.00 396.00 cl\n162.00 252.00 450.00 540.00 cl\n0 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n306.00 252.00 m\n144.00 0
      l\n0 144.00 l\n-144.00 0 l\n0 -144.00 l\no\n306.00 252.00 450.00 396.00
      cl\n/ps 10 def R 10 s\n0 0 0 rgb\n378.00 320.49 (4) .5 0 0
      t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(sin,-3,3)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(cos,-3,3,col=2)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(tan,-1,1)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot( function(x) x^2, -2, 2)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n202.84 446.80 285.08 499.16 cl\n202.84 446.80 285.08 499.16
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n205.88 469.56
      m\n0.76 -1.43 l\n0.77 -1.42 l\n0.76 -1.39 l\n0.76 -1.37 l\n0.76 -1.33
      l\n0.76 -1.30 l\n0.76 -1.25 l\n0.76 -1.21 l\n0.77 -1.16 l\n0.76 -1.10
      l\n0.76 -1.04 l\n0.76 -0.98 l\n0.76 -0.91 l\n0.76 -0.85 l\n0.77 -0.77
      l\n0.76 -0.70 l\n0.76 -0.61 l\n0.76 -0.54 l\n0.76 -0.46 l\n0.76 -0.37
      l\n0.76 -0.29 l\n0.77 -0.20 l\n0.76 -0.12 l\n0.76 -0.02 l\n0.76 0.05
      l\n0.76 0.15 l\n0.76 0.23 l\n0.77 0.32 l\n0.76 0.41 l\n0.76 0.48
      l\n0.76 0.57 l\n0.76 0.65 l\n0.76 0.72 l\n0.77 0.80 l\n0.76 0.87
      l\n0.76 0.94 l\n0.76 1.00 l\n0.76 1.06 l\n0.76 1.12 l\n0.76 1.18
      l\n0.77 1.22 l\n0.76 1.27 l\n0.76 1.31 l\n0.76 1.35 l\n0.76 1.37
      l\n0.76 1.41 l\n0.77 1.42 l\n0.76 1.44 l\n0.76 1.45 l\n0.76 1.45
      l\n0.76 1.45 l\n0.76 1.45 l\n0.76 1.44 l\n0.77 1.42 l\n0.76 1.41
      l\n0.76 1.37 l\n0.76 1.35 l\n0.76 1.31 l\n0.76 1.27 l\n0.77 1.22
      l\n0.76 1.18 l\n0.76 1.12 l\n0.76 1.06 l\n0.76 1.00 l\n0.76 0.94
      l\n0.76 0.87 l\n0.77 0.80 l\n0.76 0.72 l\n0.76 0.65 l\n0.76 0.57
      l\n0.76 0.48 l\n0.76 0.41 l\n0.77 0.32 l\n0.76 0.23 l\n0.76 0.15
      l\n0.76 0.05 l\n0.76 -0.02 l\n0.76 -0.12 l\n0.77 -0.20 l\n0.76 -0.29
      l\n0.76 -0.37 l\n0.76 -0.46 l\n0.76 -0.54 l\n0.76 -0.61 l\n0.76 -0.70
      l\n0.77 -0.77 l\n0.76 -0.85 l\n0.76 -0.91 l\n0.76 -0.98 l\n0.76 -1.04
      l\n0.76 -1.10 l\n0.77 -1.16 l\n0.76 -1.21 l\n0.76 -1.25 l\n0.76 -1.30
      l\n0.76 -1.33 l\n0.76 -1.37 l\n0.76 -1.39 l\n0.77 -1.42 l\n0.76 -1.43
      l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[]
      0 setdash\nnp\n205.88 446.80 m\n76.16 0 l\no\nnp\n205.88 446.80 m\n0
      -4.98 l\no\nnp\n218.57 446.80 m\n0 -4.98 l\no\nnp\n231.27 446.80 m\n0
      -4.98 l\no\nnp\n243.96 446.80 m\n0 -4.98 l\no\nnp\n256.65 446.80 m\n0
      -4.98 l\no\nnp\n269.35 446.80 m\n0 -4.98 l\no\nnp\n282.04 446.80 m\n0
      -4.98 l\no\n/ps 10 def R 10 s\n205.88 428.87 (-3) .5 0 0 t\n231.27
      428.87 (-1) .5 0 0 t\n256.65 428.87 (1) .5 0 0 t\n282.04 428.87 (3) .5
      0 0 t\nnp\n202.84 448.73 m\n0 48.50 l\no\nnp\n202.84 448.73 m\n-4.98 0
      l\no\nnp\n202.84 460.86 m\n-4.98 0 l\no\nnp\n202.84 472.98 m\n-4.98 0
      l\no\nnp\n202.84 485.10 m\n-4.98 0 l\no\nnp\n202.84 497.23 m\n-4.98 0
      l\no\n190.88 448.73 (-1.0) .5 0 90 t\n190.88 485.10 (0.5) .5 0 90
      t\nnp\n202.84 446.80 m\n82.24 0 l\n0 52.36 l\n-82.24 0 l\n0 -52.36
      l\no\n162.00 396.00 306.00 540.00 cl\n/ps 10 def R 10 s\n0 0 0
      rgb\n243.96 408.95 (x) .5 0 0 t\n170.96 472.98 (sin \\(x\\)) .5 0 90
      t\n202.84 302.80 285.08 355.16 cl\n202.84 302.80 285.08 355.16 cl\n1 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n205.88 304.74 m\n0.76 0.25
      l\n0.77 0.33 l\n0.76 0.42 l\n0.76 0.50 l\n0.76 0.59 l\n0.76 0.66
      l\n0.76 0.74 l\n0.76 0.82 l\n0.77 0.89 l\n0.76 0.95 l\n0.76 1.02
      l\n0.76 1.08 l\n0.76 1.14 l\n0.76 1.19 l\n0.77 1.24 l\n0.76 1.28
      l\n0.76 1.32 l\n0.76 1.36 l\n0.76 1.39 l\n0.76 1.41 l\n0.76 1.43
      l\n0.77 1.45 l\n0.76 1.46 l\n0.76 1.46 l\n0.76 1.46 l\n0.76 1.46
      l\n0.76 1.44 l\n0.77 1.43 l\n0.76 1.40 l\n0.76 1.38 l\n0.76 1.34
      l\n0.76 1.31 l\n0.76 1.27 l\n0.77 1.22 l\n0.76 1.17 l\n0.76 1.12
      l\n0.76 1.06 l\n0.76 1.00 l\n0.76 0.93 l\n0.76 0.86 l\n0.77 0.79
      l\n0.76 0.71 l\n0.76 0.64 l\n0.76 0.55 l\n0.76 0.48 l\n0.76 0.39
      l\n0.77 0.30 l\n0.76 0.22 l\n0.76 0.13 l\n0.76 0.04 l\n0.76 -0.04
      l\n0.76 -0.13 l\n0.76 -0.22 l\n0.77 -0.30 l\n0.76 -0.39 l\n0.76 -0.48
      l\n0.76 -0.55 l\n0.76 -0.64 l\n0.76 -0.71 l\n0.77 -0.79 l\n0.76 -0.86
      l\n0.76 -0.93 l\n0.76 -1.00 l\n0.76 -1.06 l\n0.76 -1.12 l\n0.76 -1.17
      l\n0.77 -1.22 l\n0.76 -1.27 l\n0.76 -1.31 l\n0.76 -1.34 l\n0.76 -1.38
      l\n0.76 -1.40 l\n0.77 -1.43 l\n0.76 -1.44 l\n0.76 -1.46 l\n0.76 -1.46
      l\n0.76 -1.46 l\n0.76 -1.46 l\n0.77 -1.45 l\n0.76 -1.43 l\n0.76 -1.41
      l\n0.76 -1.39 l\n0.76 -1.36 l\n0.76 -1.32 l\n0.76 -1.28 l\n0.77 -1.24
      l\n0.76 -1.19 l\n0.76 -1.14 l\n0.76 -1.08 l\n0.76 -1.02 l\n0.76 -0.95
      l\n0.77 -0.89 l\n0.76 -0.82 l\n0.76 -0.74 l\n0.76 -0.66 l\n0.76 -0.59
      l\n0.76 -0.50 l\n0.76 -0.42 l\n0.77 -0.33 l\n0.76 -0.25 l\no\n162.00
      252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n205.88 302.80 m\n76.16 0 l\no\nnp\n205.88 302.80 m\n0
      -4.98 l\no\nnp\n218.57 302.80 m\n0 -4.98 l\no\nnp\n231.27 302.80 m\n0
      -4.98 l\no\nnp\n243.96 302.80 m\n0 -4.98 l\no\nnp\n256.65 302.80 m\n0
      -4.98 l\no\nnp\n269.35 302.80 m\n0 -4.98 l\no\nnp\n282.04 302.80 m\n0
      -4.98 l\no\n/ps 10 def R 10 s\n205.88 284.87 (-3) .5 0 0 t\n231.27
      284.87 (-1) .5 0 0 t\n256.65 284.87 (1) .5 0 0 t\n282.04 284.87 (3) .5
      0 0 t\nnp\n202.84 304.49 m\n0 48.73 l\no\nnp\n202.84 304.49 m\n-4.98 0
      l\no\nnp\n202.84 316.67 m\n-4.98 0 l\no\nnp\n202.84 328.86 m\n-4.98 0
      l\no\nnp\n202.84 341.04 m\n-4.98 0 l\no\nnp\n202.84 353.22 m\n-4.98 0
      l\no\n190.88 304.49 (-1.0) .5 0 90 t\n190.88 341.04 (0.5) .5 0 90
      t\nnp\n202.84 302.80 m\n82.24 0 l\n0 52.36 l\n-82.24 0 l\n0 -52.36
      l\no\n162.00 252.00 306.00 396.00 cl\n/ps 10 def R 10 s\n0 0 0
      rgb\n243.96 264.95 (x) .5 0 0 t\n170.96 328.98 (cos \\(x\\)) .5 0 90
      t\n346.84 446.80 429.08 499.16 cl\n346.84 446.80 429.08 499.16 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n349.88 448.74 m\n0.76 1.03
      l\n0.77 0.97 l\n0.76 0.92 l\n0.76 0.88 l\n0.76 0.82 l\n0.76 0.79
      l\n0.76 0.75 l\n0.76 0.71 l\n0.77 0.69 l\n0.76 0.65 l\n0.76 0.63
      l\n0.76 0.60 l\n0.76 0.59 l\n0.76 0.56 l\n0.77 0.54 l\n0.76 0.52
      l\n0.76 0.51 l\n0.76 0.49 l\n0.76 0.48 l\n0.76 0.46 l\n0.76 0.45
      l\n0.77 0.44 l\n0.76 0.43 l\n0.76 0.42 l\n0.76 0.41 l\n0.76 0.40
      l\n0.76 0.39 l\n0.77 0.38 l\n0.76 0.38 l\n0.76 0.37 l\n0.76 0.36
      l\n0.76 0.36 l\n0.76 0.35 l\n0.77 0.35 l\n0.76 0.34 l\n0.76 0.34
      l\n0.76 0.34 l\n0.76 0.33 l\n0.76 0.33 l\n0.76 0.32 l\n0.77 0.33
      l\n0.76 0.32 l\n0.76 0.32 l\n0.76 0.31 l\n0.76 0.32 l\n0.76 0.31
      l\n0.77 0.31 l\n0.76 0.32 l\n0.76 0.31 l\n0.76 0.31 l\n0.76 0.31
      l\n0.76 0.31 l\n0.76 0.32 l\n0.77 0.31 l\n0.76 0.31 l\n0.76 0.32
      l\n0.76 0.31 l\n0.76 0.32 l\n0.76 0.32 l\n0.77 0.33 l\n0.76 0.32
      l\n0.76 0.33 l\n0.76 0.33 l\n0.76 0.34 l\n0.76 0.34 l\n0.76 0.34
      l\n0.77 0.35 l\n0.76 0.35 l\n0.76 0.36 l\n0.76 0.36 l\n0.76 0.37
      l\n0.76 0.38 l\n0.77 0.38 l\n0.76 0.39 l\n0.76 0.40 l\n0.76 0.41
      l\n0.76 0.42 l\n0.76 0.43 l\n0.77 0.44 l\n0.76 0.45 l\n0.76 0.46
      l\n0.76 0.48 l\n0.76 0.49 l\n0.76 0.51 l\n0.76 0.52 l\n0.77 0.54
      l\n0.76 0.56 l\n0.76 0.59 l\n0.76 0.60 l\n0.76 0.63 l\n0.76 0.65
      l\n0.77 0.69 l\n0.76 0.71 l\n0.76 0.75 l\n0.76 0.79 l\n0.76 0.82
      l\n0.76 0.88 l\n0.76 0.92 l\n0.77 0.97 l\n0.76 1.03 l\no\n162.00 252.00
      450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n349.88 446.80 m\n76.16 0 l\no\nnp\n349.88 446.80 m\n0
      -4.98 l\no\nnp\n368.92 446.80 m\n0 -4.98 l\no\nnp\n387.96 446.80 m\n0
      -4.98 l\no\nnp\n407.00 446.80 m\n0 -4.98 l\no\nnp\n426.04 446.80 m\n0
      -4.98 l\no\n/ps 10 def R 10 s\n349.88 428.87 (-1.0) .5 0 0 t\n387.96
      428.87 (0.0) .5 0 0 t\n426.04 428.87 (1.0) .5 0 0 t\nnp\n346.84 449.63
      m\n0 46.70 l\no\nnp\n346.84 449.63 m\n-4.98 0 l\no\nnp\n346.84 457.41
      m\n-4.98 0 l\no\nnp\n346.84 465.20 m\n-4.98 0 l\no\nnp\n346.84 472.98
      m\n-4.98 0 l\no\nnp\n346.84 480.76 m\n-4.98 0 l\no\nnp\n346.84 488.55
      m\n-4.98 0 l\no\nnp\n346.84 496.33 m\n-4.98 0 l\no\n334.88 449.63
      (-1.5) .5 0 90 t\n334.88 480.76 (0.5) .5 0 90 t\nnp\n346.84 446.80
      m\n82.24 0 l\n0 52.36 l\n-82.24 0 l\n0 -52.36 l\no\n306.00 396.00
      450.00 540.00 cl\n/ps 10 def R 10 s\n0 0 0 rgb\n387.96 408.95 (x) .5 0
      0 t\n314.96 472.98 (tan \\(x\\)) .5 0 90 t\n346.84 302.80 429.08 355.16
      cl\n346.84 302.80 429.08 355.16 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n349.88 353.22 m\n0.76 -1.92 l\n0.77 -1.88 l\n0.76 -1.84
      l\n0.76 -1.80 l\n0.76 -1.77 l\n0.76 -1.72 l\n0.76 -1.69 l\n0.76 -1.65
      l\n0.77 -1.61 l\n0.76 -1.57 l\n0.76 -1.53 l\n0.76 -1.50 l\n0.76 -1.45
      l\n0.76 -1.42 l\n0.77 -1.37 l\n0.76 -1.34 l\n0.76 -1.30 l\n0.76 -1.26
      l\n0.76 -1.23 l\n0.76 -1.18 l\n0.76 -1.14 l\n0.77 -1.11 l\n0.76 -1.07
      l\n0.76 -1.02 l\n0.76 -0.99 l\n0.76 -0.95 l\n0.76 -0.91 l\n0.77 -0.88
      l\n0.76 -0.83 l\n0.76 -0.80 l\n0.76 -0.75 l\n0.76 -0.72 l\n0.76 -0.68
      l\n0.77 -0.64 l\n0.76 -0.60 l\n0.76 -0.56 l\n0.76 -0.53 l\n0.76 -0.48
      l\n0.76 -0.45 l\n0.76 -0.40 l\n0.77 -0.37 l\n0.76 -0.33 l\n0.76 -0.29
      l\n0.76 -0.26 l\n0.76 -0.21 l\n0.76 -0.17 l\n0.77 -0.14 l\n0.76 -0.10
      l\n0.76 -0.06 l\n0.76 -0.01 l\n0.76 0.01 l\n0.76 0.06 l\n0.76 0.10
      l\n0.77 0.14 l\n0.76 0.17 l\n0.76 0.21 l\n0.76 0.26 l\n0.76 0.29
      l\n0.76 0.33 l\n0.77 0.37 l\n0.76 0.40 l\n0.76 0.45 l\n0.76 0.48
      l\n0.76 0.53 l\n0.76 0.56 l\n0.76 0.60 l\n0.77 0.64 l\n0.76 0.68
      l\n0.76 0.72 l\n0.76 0.75 l\n0.76 0.80 l\n0.76 0.83 l\n0.77 0.88
      l\n0.76 0.91 l\n0.76 0.95 l\n0.76 0.99 l\n0.76 1.02 l\n0.76 1.07
      l\n0.77 1.11 l\n0.76 1.14 l\n0.76 1.18 l\n0.76 1.23 l\n0.76 1.26
      l\n0.76 1.30 l\n0.76 1.34 l\n0.77 1.37 l\n0.76 1.42 l\n0.76 1.45
      l\n0.76 1.50 l\n0.76 1.53 l\n0.76 1.57 l\n0.77 1.61 l\n0.76 1.65
      l\n0.76 1.69 l\n0.76 1.72 l\n0.76 1.77 l\n0.76 1.80 l\n0.76 1.84
      l\n0.77 1.88 l\n0.76 1.92 l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n349.88 302.80 m\n76.16 0
      l\no\nnp\n349.88 302.80 m\n0 -4.98 l\no\nnp\n368.92 302.80 m\n0 -4.98
      l\no\nnp\n387.96 302.80 m\n0 -4.98 l\no\nnp\n407.00 302.80 m\n0 -4.98
      l\no\nnp\n426.04 302.80 m\n0 -4.98 l\no\n/ps 10 def R 10 s\n349.88
      284.87 (-2) .5 0 0 t\n387.96 284.87 (0) .5 0 0 t\n407.00 284.87 (1) .5
      0 0 t\n426.04 284.87 (2) .5 0 0 t\nnp\n346.84 304.74 m\n0 48.48
      l\no\nnp\n346.84 304.74 m\n-4.98 0 l\no\nnp\n346.84 316.86 m\n-4.98 0
      l\no\nnp\n346.84 328.98 m\n-4.98 0 l\no\nnp\n346.84 341.10 m\n-4.98 0
      l\no\nnp\n346.84 353.22 m\n-4.98 0 l\no\n334.88 304.74 (0) .5 0 90
      t\n334.88 328.98 (2) .5 0 90 t\n334.88 353.22 (4) .5 0 90 t\nnp\n346.84
      302.80 m\n82.24 0 l\n0 52.36 l\n-82.24 0 l\n0 -52.36 l\no\n306.00
      252.00 450.00 396.00 cl\n/ps 10 def R 10 s\n0 0 0 rgb\n387.96 264.95
      (x) .5 0 0 t\n314.96 328.98 (function\\(x\\) x^2 \\(x\\)) .5 0 90
      t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      layout(1)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(sin,-3,3);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 390.40
      m\n1.98 -4.86 l\n1.98 -4.81 l\n1.97 -4.72 l\n1.98 -4.63 l\n1.98 -4.52
      l\n1.98 -4.40 l\n1.98 -4.25 l\n1.97 -4.09 l\n1.98 -3.93 l\n1.98 -3.73
      l\n1.98 -3.54 l\n1.97 -3.32 l\n1.98 -3.10 l\n1.98 -2.86 l\n1.98 -2.62
      l\n1.98 -2.36 l\n1.97 -2.10 l\n1.98 -1.82 l\n1.98 -1.55 l\n1.98 -1.27
      l\n1.97 -0.97 l\n1.98 -0.69 l\n1.98 -0.39 l\n1.98 -0.09 l\n1.98 0.20
      l\n1.97 0.50 l\n1.98 0.79 l\n1.98 1.08 l\n1.98 1.36 l\n1.97 1.65
      l\n1.98 1.93 l\n1.98 2.19 l\n1.98 2.45 l\n1.98 2.71 l\n1.97 2.95
      l\n1.98 3.18 l\n1.98 3.40 l\n1.98 3.61 l\n1.97 3.81 l\n1.98 3.98
      l\n1.98 4.15 l\n1.98 4.31 l\n1.98 4.44 l\n1.97 4.56 l\n1.98 4.67
      l\n1.98 4.75 l\n1.98 4.83 l\n1.97 4.88 l\n1.98 4.91 l\n1.98 4.93
      l\n1.98 4.93 l\n1.98 4.91 l\n1.97 4.88 l\n1.98 4.83 l\n1.98 4.75
      l\n1.98 4.67 l\n1.97 4.56 l\n1.98 4.44 l\n1.98 4.31 l\n1.98 4.15
      l\n1.98 3.98 l\n1.97 3.81 l\n1.98 3.61 l\n1.98 3.40 l\n1.98 3.18
      l\n1.97 2.95 l\n1.98 2.71 l\n1.98 2.45 l\n1.98 2.19 l\n1.98 1.93
      l\n1.97 1.65 l\n1.98 1.36 l\n1.98 1.08 l\n1.98 0.79 l\n1.97 0.50
      l\n1.98 0.20 l\n1.98 -0.09 l\n1.98 -0.39 l\n1.98 -0.69 l\n1.97 -0.97
      l\n1.98 -1.27 l\n1.98 -1.55 l\n1.98 -1.82 l\n1.97 -2.10 l\n1.98 -2.36
      l\n1.98 -2.62 l\n1.98 -2.86 l\n1.98 -3.10 l\n1.97 -3.32 l\n1.98 -3.54
      l\n1.98 -3.73 l\n1.98 -3.93 l\n1.97 -4.09 l\n1.98 -4.25 l\n1.98 -4.40
      l\n1.98 -4.52 l\n1.98 -4.63 l\n1.97 -4.72 l\n1.98 -4.81 l\n1.98 -4.86
      l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[]
      0 setdash\nnp\n219.11 313.20 m\n197.78 0 l\no\nnp\n219.11 313.20 m\n0
      -6.00 l\no\nnp\n252.07 313.20 m\n0 -6.00 l\no\nnp\n285.04 313.20 m\n0
      -6.00 l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n350.96 313.20 m\n0
      -6.00 l\no\nnp\n383.93 313.20 m\n0 -6.00 l\no\nnp\n416.89 313.20 m\n0
      -6.00 l\no\n/ps 12 def R 12 s\n219.11 291.60 (-3) .5 0 0 t\n252.07
      291.60 (-2) .5 0 0 t\n285.04 291.60 (-1) .5 0 0 t\n318.00 291.60 (0) .5
      0 0 t\n350.96 291.60 (1) .5 0 0 t\n383.93 291.60 (2) .5 0 0 t\n416.89
      291.60 (3) .5 0 0 t\nnp\n211.20 319.77 m\n0 164.46 l\no\nnp\n211.20
      319.77 m\n-6.00 0 l\no\nnp\n211.20 360.89 m\n-6.00 0 l\no\nnp\n211.20
      402.00 m\n-6.00 0 l\no\nnp\n211.20 443.11 m\n-6.00 0 l\no\nnp\n211.20
      484.23 m\n-6.00 0 l\no\n196.80 319.77 (-1.0) .5 0 90 t\n196.80 360.89
      (-0.5) .5 0 90 t\n196.80 402.00 (0.0) .5 0 90 t\n196.80 443.11 (0.5) .5
      0 90 t\n196.80 484.23 (1.0) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0
      l\n0 177.60 l\n-213.60 0 l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00
      cl\n/ps 12 def R 12 s\n0 0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80
      402.00 (sin \\(x\\)) .5 0 90 t\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      l=matrix( c(1,1,2,3),2,2)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      l
    </input>

    <\output>
      \ \ \ \ \ [,1] [,2]

      [1,] \ \ \ 1 \ \ \ 2

      [2,] \ \ \ 1 \ \ \ 3
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      layout(l); layout.show(3); v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n162.00 252.00 306.00 540.00 cl\n162.00 252.00 450.00 540.00
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n162.00 252.00
      m\n144.00 0 l\n0 288.00 l\n-144.00 0 l\n0 -288.00 l\no\n162.00 252.00
      306.00 540.00 cl\n/ps 10 def R 10 s\n0 0 0 rgb\n234.00 392.49 (1) .5 0
      0 t\n306.00 396.00 450.00 540.00 cl\n162.00 252.00 450.00 540.00 cl\n0
      0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n306.00 396.00 m\n144.00 0
      l\n0 144.00 l\n-144.00 0 l\n0 -144.00 l\no\n306.00 396.00 450.00 540.00
      cl\n/ps 10 def R 10 s\n0 0 0 rgb\n378.00 464.49 (2) .5 0 0 t\n306.00
      252.00 450.00 396.00 cl\n162.00 252.00 450.00 540.00 cl\n0 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n306.00 252.00 m\n144.00 0
      l\n0 144.00 l\n-144.00 0 l\n0 -144.00 l\no\n306.00 252.00 450.00 396.00
      cl\n/ps 10 def R 10 s\n0 0 0 rgb\n378.00 320.58 (3) .5 0 0
      t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(sin,-3,3); plot(cos,-6,6,col=2); plot(tan,-1.5,1.5,col=3)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n202.84 302.80 285.08 499.16 cl\n202.84 302.80 285.08 499.16
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n205.88 388.15
      m\n0.76 -5.37 l\n0.77 -5.31 l\n0.76 -5.23 l\n0.76 -5.12 l\n0.76 -5.00
      l\n0.76 -4.85 l\n0.76 -4.71 l\n0.76 -4.52 l\n0.77 -4.34 l\n0.76 -4.13
      l\n0.76 -3.91 l\n0.76 -3.67 l\n0.76 -3.43 l\n0.76 -3.17 l\n0.77 -2.89
      l\n0.76 -2.61 l\n0.76 -2.32 l\n0.76 -2.02 l\n0.76 -1.71 l\n0.76 -1.40
      l\n0.76 -1.08 l\n0.77 -0.75 l\n0.76 -0.44 l\n0.76 -0.10 l\n0.76 0.22
      l\n0.76 0.55 l\n0.76 0.87 l\n0.77 1.20 l\n0.76 1.51 l\n0.76 1.82
      l\n0.76 2.13 l\n0.76 2.43 l\n0.76 2.71 l\n0.77 2.99 l\n0.76 3.26
      l\n0.76 3.52 l\n0.76 3.76 l\n0.76 3.99 l\n0.76 4.21 l\n0.76 4.40
      l\n0.77 4.60 l\n0.76 4.76 l\n0.76 4.91 l\n0.76 5.04 l\n0.76 5.16
      l\n0.76 5.26 l\n0.77 5.33 l\n0.76 5.40 l\n0.76 5.43 l\n0.76 5.45
      l\n0.76 5.45 l\n0.76 5.43 l\n0.76 5.40 l\n0.77 5.33 l\n0.76 5.26
      l\n0.76 5.16 l\n0.76 5.04 l\n0.76 4.91 l\n0.76 4.76 l\n0.77 4.60
      l\n0.76 4.40 l\n0.76 4.21 l\n0.76 3.99 l\n0.76 3.76 l\n0.76 3.52
      l\n0.76 3.26 l\n0.77 2.99 l\n0.76 2.71 l\n0.76 2.43 l\n0.76 2.13
      l\n0.76 1.82 l\n0.76 1.51 l\n0.77 1.20 l\n0.76 0.87 l\n0.76 0.55
      l\n0.76 0.22 l\n0.76 -0.10 l\n0.76 -0.44 l\n0.77 -0.75 l\n0.76 -1.08
      l\n0.76 -1.40 l\n0.76 -1.71 l\n0.76 -2.02 l\n0.76 -2.32 l\n0.76 -2.61
      l\n0.77 -2.89 l\n0.76 -3.17 l\n0.76 -3.43 l\n0.76 -3.67 l\n0.76 -3.91
      l\n0.76 -4.13 l\n0.77 -4.34 l\n0.76 -4.52 l\n0.76 -4.71 l\n0.76 -4.85
      l\n0.76 -5.00 l\n0.76 -5.12 l\n0.76 -5.23 l\n0.77 -5.31 l\n0.76 -5.37
      l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[]
      0 setdash\nnp\n205.88 302.80 m\n76.16 0 l\no\nnp\n205.88 302.80 m\n0
      -4.98 l\no\nnp\n218.57 302.80 m\n0 -4.98 l\no\nnp\n231.27 302.80 m\n0
      -4.98 l\no\nnp\n243.96 302.80 m\n0 -4.98 l\no\nnp\n256.65 302.80 m\n0
      -4.98 l\no\nnp\n269.35 302.80 m\n0 -4.98 l\no\nnp\n282.04 302.80 m\n0
      -4.98 l\no\n/ps 10 def R 10 s\n205.88 284.87 (-3) .5 0 0 t\n231.27
      284.87 (-1) .5 0 0 t\n256.65 284.87 (1) .5 0 0 t\n282.04 284.87 (3) .5
      0 0 t\nnp\n202.84 310.06 m\n0 181.84 l\no\nnp\n202.84 310.06 m\n-4.98 0
      l\no\nnp\n202.84 355.52 m\n-4.98 0 l\no\nnp\n202.84 400.98 m\n-4.98 0
      l\no\nnp\n202.84 446.44 m\n-4.98 0 l\no\nnp\n202.84 491.90 m\n-4.98 0
      l\no\n190.88 310.06 (-1.0) .5 0 90 t\n190.88 355.52 (-0.5) .5 0 90
      t\n190.88 400.98 (0.0) .5 0 90 t\n190.88 446.44 (0.5) .5 0 90 t\n190.88
      491.90 (1.0) .5 0 90 t\nnp\n202.84 302.80 m\n82.24 0 l\n0 196.36
      l\n-82.24 0 l\n0 -196.36 l\no\n162.00 252.00 306.00 540.00 cl\n/ps 10
      def R 10 s\n0 0 0 rgb\n243.96 264.95 (x) .5 0 0 t\n170.96 400.98 (sin
      \\(x\\)) .5 0 90 t\n346.84 446.80 429.08 499.16 cl\n346.84 446.80
      429.08 499.16 cl\n1 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n349.88 496.26 m\n0.76 -0.98 l\n0.77 -1.30 l\n0.76 -1.60
      l\n0.76 -1.88 l\n0.76 -2.13 l\n0.76 -2.36 l\n0.76 -2.54 l\n0.76 -2.69
      l\n0.77 -2.80 l\n0.76 -2.88 l\n0.76 -2.91 l\n0.76 -2.89 l\n0.76 -2.85
      l\n0.76 -2.74 l\n0.77 -2.62 l\n0.76 -2.44 l\n0.76 -2.24 l\n0.76 -2.00
      l\n0.76 -1.74 l\n0.76 -1.44 l\n0.76 -1.12 l\n0.77 -0.80 l\n0.76 -0.46
      l\n0.76 -0.11 l\n0.76 0.23 l\n0.76 0.58 l\n0.76 0.92 l\n0.77 1.25
      l\n0.76 1.55 l\n0.76 1.83 l\n0.76 2.09 l\n0.76 2.31 l\n0.76 2.51
      l\n0.77 2.67 l\n0.76 2.79 l\n0.76 2.86 l\n0.76 2.91 l\n0.76 2.90
      l\n0.76 2.85 l\n0.76 2.77 l\n0.77 2.65 l\n0.76 2.47 l\n0.76 2.28
      l\n0.76 2.05 l\n0.76 1.78 l\n0.76 1.49 l\n0.77 1.19 l\n0.76 0.86
      l\n0.76 0.52 l\n0.76 0.17 l\n0.76 -0.17 l\n0.76 -0.52 l\n0.76 -0.86
      l\n0.77 -1.19 l\n0.76 -1.49 l\n0.76 -1.78 l\n0.76 -2.05 l\n0.76 -2.28
      l\n0.76 -2.47 l\n0.77 -2.65 l\n0.76 -2.77 l\n0.76 -2.85 l\n0.76 -2.90
      l\n0.76 -2.91 l\n0.76 -2.86 l\n0.76 -2.79 l\n0.77 -2.67 l\n0.76 -2.51
      l\n0.76 -2.31 l\n0.76 -2.09 l\n0.76 -1.83 l\n0.76 -1.55 l\n0.77 -1.25
      l\n0.76 -0.92 l\n0.76 -0.58 l\n0.76 -0.23 l\n0.76 0.11 l\n0.76 0.46
      l\n0.77 0.80 l\n0.76 1.12 l\n0.76 1.44 l\n0.76 1.74 l\n0.76 2.00
      l\n0.76 2.24 l\n0.76 2.44 l\n0.77 2.62 l\n0.76 2.74 l\n0.76 2.85
      l\n0.76 2.89 l\n0.76 2.91 l\n0.76 2.88 l\n0.77 2.80 l\n0.76 2.69
      l\n0.76 2.54 l\n0.76 2.36 l\n0.76 2.13 l\n0.76 1.88 l\n0.76 1.60
      l\n0.77 1.30 l\n0.76 0.98 l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n349.88 446.80 m\n76.16 0
      l\no\nnp\n349.88 446.80 m\n0 -4.98 l\no\nnp\n362.57 446.80 m\n0 -4.98
      l\no\nnp\n375.27 446.80 m\n0 -4.98 l\no\nnp\n387.96 446.80 m\n0 -4.98
      l\no\nnp\n400.65 446.80 m\n0 -4.98 l\no\nnp\n413.35 446.80 m\n0 -4.98
      l\no\nnp\n426.04 446.80 m\n0 -4.98 l\no\n/ps 10 def R 10 s\n349.88
      428.87 (-6) .5 0 0 t\n375.27 428.87 (-2) .5 0 0 t\n400.65 428.87 (2) .5
      0 0 t\n426.04 428.87 (6) .5 0 0 t\nnp\n346.84 448.73 m\n0 48.49
      l\no\nnp\n346.84 448.73 m\n-4.98 0 l\no\nnp\n346.84 460.85 m\n-4.98 0
      l\no\nnp\n346.84 472.98 m\n-4.98 0 l\no\nnp\n346.84 485.10 m\n-4.98 0
      l\no\nnp\n346.84 497.22 m\n-4.98 0 l\no\n334.88 448.73 (-1.0) .5 0 90
      t\n334.88 485.10 (0.5) .5 0 90 t\nnp\n346.84 446.80 m\n82.24 0 l\n0
      52.36 l\n-82.24 0 l\n0 -52.36 l\no\n306.00 396.00 450.00 540.00 cl\n/ps
      10 def R 10 s\n0 0 0 rgb\n387.96 408.95 (x) .5 0 0 t\n314.96 472.98
      (cos \\(x\\)) .5 0 90 t\n346.84 302.80 429.08 355.16 cl\n346.84 302.80
      429.08 355.16 cl\n0 0.8039 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n349.88 304.74 m\n0.76 7.24 l\n0.77 3.93 l\n0.76 2.47
      l\n0.76 1.70 l\n0.76 1.24 l\n0.76 0.95 l\n0.76 0.75 l\n0.76 0.61
      l\n0.77 0.50 l\n0.76 0.43 l\n0.76 0.36 l\n0.76 0.32 l\n0.76 0.28
      l\n0.76 0.24 l\n0.77 0.22 l\n0.76 0.20 l\n0.76 0.18 l\n0.76 0.16
      l\n0.76 0.15 l\n0.76 0.14 l\n0.76 0.13 l\n0.77 0.12 l\n0.76 0.11
      l\n0.76 0.11 l\n0.76 0.10 l\n0.76 0.09 l\n0.76 0.09 l\n0.77 0.09
      l\n0.76 0.08 l\n0.76 0.07 l\n0.76 0.08 l\n0.76 0.07 l\n0.76 0.07
      l\n0.77 0.06 l\n0.76 0.07 l\n0.76 0.06 l\n0.76 0.06 l\n0.76 0.06
      l\n0.76 0.06 l\n0.76 0.06 l\n0.77 0.05 l\n0.76 0.06 l\n0.76 0.05
      l\n0.76 0.06 l\n0.76 0.05 l\n0.76 0.05 l\n0.77 0.05 l\n0.76 0.06
      l\n0.76 0.05 l\n0.76 0.05 l\n0.76 0.05 l\n0.76 0.05 l\n0.76 0.06
      l\n0.77 0.05 l\n0.76 0.05 l\n0.76 0.05 l\n0.76 0.06 l\n0.76 0.05
      l\n0.76 0.06 l\n0.77 0.05 l\n0.76 0.06 l\n0.76 0.06 l\n0.76 0.06
      l\n0.76 0.06 l\n0.76 0.06 l\n0.76 0.07 l\n0.77 0.06 l\n0.76 0.07
      l\n0.76 0.07 l\n0.76 0.08 l\n0.76 0.07 l\n0.76 0.08 l\n0.77 0.09
      l\n0.76 0.09 l\n0.76 0.09 l\n0.76 0.10 l\n0.76 0.11 l\n0.76 0.11
      l\n0.77 0.12 l\n0.76 0.13 l\n0.76 0.14 l\n0.76 0.15 l\n0.76 0.16
      l\n0.76 0.18 l\n0.76 0.20 l\n0.77 0.22 l\n0.76 0.24 l\n0.76 0.28
      l\n0.76 0.32 l\n0.76 0.36 l\n0.76 0.43 l\n0.77 0.50 l\n0.76 0.61
      l\n0.76 0.75 l\n0.76 0.95 l\n0.76 1.24 l\n0.76 1.70 l\n0.76 2.47
      l\n0.77 3.93 l\n0.76 7.24 l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n349.88 302.80 m\n76.16 0
      l\no\nnp\n349.88 302.80 m\n0 -4.98 l\no\nnp\n362.57 302.80 m\n0 -4.98
      l\no\nnp\n375.27 302.80 m\n0 -4.98 l\no\nnp\n387.96 302.80 m\n0 -4.98
      l\no\nnp\n400.65 302.80 m\n0 -4.98 l\no\nnp\n413.35 302.80 m\n0 -4.98
      l\no\nnp\n426.04 302.80 m\n0 -4.98 l\no\n/ps 10 def R 10 s\n349.88
      284.87 (-1.5) .5 0 0 t\n387.96 284.87 (0.0) .5 0 0 t\n413.35 284.87
      (1.0) .5 0 0 t\nnp\n346.84 303.19 m\n0 51.58 l\no\nnp\n346.84 303.19
      m\n-4.98 0 l\no\nnp\n346.84 311.79 m\n-4.98 0 l\no\nnp\n346.84 320.38
      m\n-4.98 0 l\no\nnp\n346.84 328.98 m\n-4.98 0 l\no\nnp\n346.84 337.58
      m\n-4.98 0 l\no\nnp\n346.84 346.17 m\n-4.98 0 l\no\nnp\n346.84 354.77
      m\n-4.98 0 l\no\n334.88 303.19 (-15) .5 0 90 t\n334.88 328.98 (0) .5 0
      90 t\n334.88 346.17 (10) .5 0 90 t\nnp\n346.84 302.80 m\n82.24 0 l\n0
      52.36 l\n-82.24 0 l\n0 -52.36 l\no\n306.00 252.00 450.00 396.00 cl\n/ps
      10 def R 10 s\n0 0 0 rgb\n387.96 264.95 (x) .5 0 0 t\n314.96 328.98
      (tan \\(x\\)) .5 0 90 t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  <subsubsection|why are the figures so small?>

  R reserves space for the title, the axes, the labels, and so on. The space
  is proportional to the character size, and that size does not change when
  we split the plot.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      par("mar")
    </input>

    <\output>
      [1] 5.1 4.1 4.1 2.1
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  above we see how much space is kept for the margin, in lines. top, bottom,
  left, right.

  So, if we want to keep figures looking the same, we should scale the text:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      par(cex=0.5)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(sin,-3,3); plot(cos,-6,6); plot(tan,-1,1); v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n186.60 282.60 293.40 515.40 cl\n186.60 282.60 293.40 515.40
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n190.56 383.79
      m\n0.98 -6.37 l\n0.99 -6.30 l\n0.99 -6.19 l\n0.99 -6.07 l\n0.99 -5.92
      l\n0.99 -5.77 l\n0.99 -5.57 l\n0.99 -5.37 l\n0.99 -5.14 l\n0.98 -4.89
      l\n0.99 -4.64 l\n0.99 -4.36 l\n0.99 -4.06 l\n0.99 -3.75 l\n0.99 -3.43
      l\n0.99 -3.10 l\n0.99 -2.75 l\n0.99 -2.39 l\n0.98 -2.03 l\n0.99 -1.66
      l\n0.99 -1.27 l\n0.99 -0.90 l\n0.99 -0.51 l\n0.99 -0.13 l\n0.99 0.27
      l\n0.99 0.65 l\n0.99 1.03 l\n0.98 1.42 l\n0.99 1.79 l\n0.99 2.16
      l\n0.99 2.52 l\n0.99 2.88 l\n0.99 3.22 l\n0.99 3.54 l\n0.99 3.87
      l\n0.99 4.17 l\n0.98 4.46 l\n0.99 4.73 l\n0.99 4.99 l\n0.99 5.22
      l\n0.99 5.44 l\n0.99 5.65 l\n0.99 5.82 l\n0.99 5.98 l\n0.99 6.12
      l\n0.98 6.23 l\n0.99 6.32 l\n0.99 6.40 l\n0.99 6.44 l\n0.99 6.46
      l\n0.99 6.46 l\n0.99 6.44 l\n0.99 6.40 l\n0.99 6.32 l\n0.98 6.23
      l\n0.99 6.12 l\n0.99 5.98 l\n0.99 5.82 l\n0.99 5.65 l\n0.99 5.44
      l\n0.99 5.22 l\n0.99 4.99 l\n0.99 4.73 l\n0.98 4.46 l\n0.99 4.17
      l\n0.99 3.87 l\n0.99 3.54 l\n0.99 3.22 l\n0.99 2.88 l\n0.99 2.52
      l\n0.99 2.16 l\n0.99 1.79 l\n0.98 1.42 l\n0.99 1.03 l\n0.99 0.65
      l\n0.99 0.27 l\n0.99 -0.13 l\n0.99 -0.51 l\n0.99 -0.90 l\n0.99 -1.27
      l\n0.99 -1.66 l\n0.98 -2.03 l\n0.99 -2.39 l\n0.99 -2.75 l\n0.99 -3.10
      l\n0.99 -3.43 l\n0.99 -3.75 l\n0.99 -4.06 l\n0.99 -4.36 l\n0.99 -4.64
      l\n0.98 -4.89 l\n0.99 -5.14 l\n0.99 -5.37 l\n0.99 -5.57 l\n0.99 -5.77
      l\n0.99 -5.92 l\n0.99 -6.07 l\n0.99 -6.19 l\n0.99 -6.30 l\n0.98 -6.37
      l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[]
      0 setdash\nnp\n190.56 282.60 m\n98.88 0 l\no\nnp\n190.56 282.60 m\n0
      -3.00 l\no\nnp\n207.04 282.60 m\n0 -3.00 l\no\nnp\n223.52 282.60 m\n0
      -3.00 l\no\nnp\n240.00 282.60 m\n0 -3.00 l\no\nnp\n256.48 282.60 m\n0
      -3.00 l\no\nnp\n272.96 282.60 m\n0 -3.00 l\no\nnp\n289.44 282.60 m\n0
      -3.00 l\no\n/ps 6 def R 6 s\n190.56 271.80 (-3) .5 0 0 t\n207.04 271.80
      (-2) .5 0 0 t\n223.52 271.80 (-1) .5 0 0 t\n240.00 271.80 (0) .5 0 0
      t\n256.48 271.80 (1) .5 0 0 t\n272.96 271.80 (2) .5 0 0 t\n289.44
      271.80 (3) .5 0 0 t\nnp\n186.60 291.22 m\n0 215.56 l\no\nnp\n186.60
      291.22 m\n-3.00 0 l\no\nnp\n186.60 345.11 m\n-3.00 0 l\no\nnp\n186.60
      399.00 m\n-3.00 0 l\no\nnp\n186.60 452.89 m\n-3.00 0 l\no\nnp\n186.60
      506.78 m\n-3.00 0 l\no\n179.40 291.22 (-1.0) .5 0 90 t\n179.40 345.11
      (-0.5) .5 0 90 t\n179.40 399.00 (0.0) .5 0 90 t\n179.40 452.89 (0.5) .5
      0 90 t\n179.40 506.78 (1.0) .5 0 90 t\nnp\n186.60 282.60 m\n106.80 0
      l\n0 232.80 l\n-106.80 0 l\n0 -232.80 l\no\n162.00 252.00 306.00 540.00
      cl\n/ps 6 def R 6 s\n0 0 0 rgb\n240.00 259.80 (x) .5 0 0 t\n167.40
      399.00 (sin \\(x\\)) .5 0 90 t\n330.60 426.60 437.40 515.40 cl\n330.60
      426.60 437.40 515.40 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n334.56 510.47 m\n0.98 -1.66 l\n0.99 -2.20 l\n0.99 -2.71
      l\n0.99 -3.19 l\n0.99 -3.62 l\n0.99 -3.99 l\n0.99 -4.31 l\n0.99 -4.56
      l\n0.99 -4.76 l\n0.98 -4.88 l\n0.99 -4.93 l\n0.99 -4.91 l\n0.99 -4.82
      l\n0.99 -4.66 l\n0.99 -4.43 l\n0.99 -4.15 l\n0.99 -3.79 l\n0.99 -3.39
      l\n0.98 -2.94 l\n0.99 -2.45 l\n0.99 -1.91 l\n0.99 -1.35 l\n0.99 -0.78
      l\n0.99 -0.19 l\n0.99 0.40 l\n0.99 0.99 l\n0.99 1.56 l\n0.98 2.10
      l\n0.99 2.63 l\n0.99 3.11 l\n0.99 3.54 l\n0.99 3.93 l\n0.99 4.25
      l\n0.99 4.53 l\n0.99 4.72 l\n0.99 4.86 l\n0.98 4.93 l\n0.99 4.92
      l\n0.99 4.84 l\n0.99 4.69 l\n0.99 4.48 l\n0.99 4.21 l\n0.99 3.86
      l\n0.99 3.47 l\n0.99 3.02 l\n0.98 2.53 l\n0.99 2.02 l\n0.99 1.45
      l\n0.99 0.89 l\n0.99 0.29 l\n0.99 -0.29 l\n0.99 -0.89 l\n0.99 -1.45
      l\n0.99 -2.02 l\n0.98 -2.53 l\n0.99 -3.02 l\n0.99 -3.47 l\n0.99 -3.86
      l\n0.99 -4.21 l\n0.99 -4.48 l\n0.99 -4.69 l\n0.99 -4.84 l\n0.99 -4.92
      l\n0.98 -4.93 l\n0.99 -4.86 l\n0.99 -4.72 l\n0.99 -4.53 l\n0.99 -4.25
      l\n0.99 -3.93 l\n0.99 -3.54 l\n0.99 -3.11 l\n0.99 -2.63 l\n0.98 -2.10
      l\n0.99 -1.56 l\n0.99 -0.99 l\n0.99 -0.40 l\n0.99 0.19 l\n0.99 0.78
      l\n0.99 1.35 l\n0.99 1.91 l\n0.99 2.45 l\n0.98 2.94 l\n0.99 3.39
      l\n0.99 3.79 l\n0.99 4.15 l\n0.99 4.43 l\n0.99 4.66 l\n0.99 4.82
      l\n0.99 4.91 l\n0.99 4.93 l\n0.98 4.88 l\n0.99 4.76 l\n0.99 4.56
      l\n0.99 4.31 l\n0.99 3.99 l\n0.99 3.62 l\n0.99 3.19 l\n0.99 2.71
      l\n0.99 2.20 l\n0.98 1.66 l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0
      rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n334.56 426.60 m\n98.88 0
      l\no\nnp\n334.56 426.60 m\n0 -3.00 l\no\nnp\n351.04 426.60 m\n0 -3.00
      l\no\nnp\n367.52 426.60 m\n0 -3.00 l\no\nnp\n384.00 426.60 m\n0 -3.00
      l\no\nnp\n400.48 426.60 m\n0 -3.00 l\no\nnp\n416.96 426.60 m\n0 -3.00
      l\no\nnp\n433.44 426.60 m\n0 -3.00 l\no\n/ps 6 def R 6 s\n334.56 415.80
      (-6) .5 0 0 t\n351.04 415.80 (-4) .5 0 0 t\n367.52 415.80 (-2) .5 0 0
      t\n384.00 415.80 (0) .5 0 0 t\n400.48 415.80 (2) .5 0 0 t\n416.96
      415.80 (4) .5 0 0 t\n433.44 415.80 (6) .5 0 0 t\nnp\n330.60 429.88 m\n0
      82.23 l\no\nnp\n330.60 429.88 m\n-3.00 0 l\no\nnp\n330.60 450.44
      m\n-3.00 0 l\no\nnp\n330.60 471.00 m\n-3.00 0 l\no\nnp\n330.60 491.55
      m\n-3.00 0 l\no\nnp\n330.60 512.11 m\n-3.00 0 l\no\n323.40 429.88
      (-1.0) .5 0 90 t\n323.40 450.44 (-0.5) .5 0 90 t\n323.40 471.00 (0.0)
      .5 0 90 t\n323.40 491.55 (0.5) .5 0 90 t\n323.40 512.11 (1.0) .5 0 90
      t\nnp\n330.60 426.60 m\n106.80 0 l\n0 88.80 l\n-106.80 0 l\n0 -88.80
      l\no\n306.00 396.00 450.00 540.00 cl\n/ps 6 def R 6 s\n0 0 0
      rgb\n384.00 403.80 (x) .5 0 0 t\n311.40 471.00 (cos \\(x\\)) .5 0 90
      t\n330.60 282.60 437.40 371.40 cl\n330.60 282.60 437.40 371.40 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n334.56 285.89 m\n0.98 1.75
      l\n0.99 1.66 l\n0.99 1.56 l\n0.99 1.47 l\n0.99 1.41 l\n0.99 1.33
      l\n0.99 1.27 l\n0.99 1.21 l\n0.99 1.16 l\n0.98 1.11 l\n0.99 1.07
      l\n0.99 1.02 l\n0.99 0.99 l\n0.99 0.95 l\n0.99 0.92 l\n0.99 0.88
      l\n0.99 0.86 l\n0.99 0.84 l\n0.98 0.80 l\n0.99 0.79 l\n0.99 0.77
      l\n0.99 0.74 l\n0.99 0.73 l\n0.99 0.71 l\n0.99 0.69 l\n0.99 0.68
      l\n0.99 0.66 l\n0.98 0.65 l\n0.99 0.64 l\n0.99 0.63 l\n0.99 0.62
      l\n0.99 0.60 l\n0.99 0.60 l\n0.99 0.59 l\n0.99 0.58 l\n0.99 0.58
      l\n0.98 0.57 l\n0.99 0.56 l\n0.99 0.56 l\n0.99 0.55 l\n0.99 0.55
      l\n0.99 0.54 l\n0.99 0.54 l\n0.99 0.54 l\n0.99 0.53 l\n0.98 0.53
      l\n0.99 0.53 l\n0.99 0.53 l\n0.99 0.53 l\n0.99 0.53 l\n0.99 0.53
      l\n0.99 0.53 l\n0.99 0.53 l\n0.99 0.53 l\n0.98 0.53 l\n0.99 0.53
      l\n0.99 0.54 l\n0.99 0.54 l\n0.99 0.54 l\n0.99 0.55 l\n0.99 0.55
      l\n0.99 0.56 l\n0.99 0.56 l\n0.98 0.57 l\n0.99 0.58 l\n0.99 0.58
      l\n0.99 0.59 l\n0.99 0.60 l\n0.99 0.60 l\n0.99 0.62 l\n0.99 0.63
      l\n0.99 0.64 l\n0.98 0.65 l\n0.99 0.66 l\n0.99 0.68 l\n0.99 0.69
      l\n0.99 0.71 l\n0.99 0.73 l\n0.99 0.74 l\n0.99 0.77 l\n0.99 0.79
      l\n0.98 0.80 l\n0.99 0.84 l\n0.99 0.86 l\n0.99 0.88 l\n0.99 0.92
      l\n0.99 0.95 l\n0.99 0.99 l\n0.99 1.02 l\n0.99 1.07 l\n0.98 1.11
      l\n0.99 1.16 l\n0.99 1.21 l\n0.99 1.27 l\n0.99 1.33 l\n0.99 1.41
      l\n0.99 1.47 l\n0.99 1.56 l\n0.99 1.66 l\n0.98 1.75 l\no\n162.00 252.00
      450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n334.56 282.60 m\n98.88 0 l\no\nnp\n334.56 282.60 m\n0
      -3.00 l\no\nnp\n359.28 282.60 m\n0 -3.00 l\no\nnp\n384.00 282.60 m\n0
      -3.00 l\no\nnp\n408.72 282.60 m\n0 -3.00 l\no\nnp\n433.44 282.60 m\n0
      -3.00 l\no\n/ps 6 def R 6 s\n334.56 271.80 (-1.0) .5 0 0 t\n359.28
      271.80 (-0.5) .5 0 0 t\n384.00 271.80 (0.0) .5 0 0 t\n408.72 271.80
      (0.5) .5 0 0 t\n433.44 271.80 (1.0) .5 0 0 t\nnp\n330.60 287.40 m\n0
      79.20 l\no\nnp\n330.60 287.40 m\n-3.00 0 l\no\nnp\n330.60 300.60
      m\n-3.00 0 l\no\nnp\n330.60 313.80 m\n-3.00 0 l\no\nnp\n330.60 327.00
      m\n-3.00 0 l\no\nnp\n330.60 340.20 m\n-3.00 0 l\no\nnp\n330.60 353.40
      m\n-3.00 0 l\no\nnp\n330.60 366.60 m\n-3.00 0 l\no\n323.40 287.40
      (-1.5) .5 0 90 t\n323.40 313.80 (-0.5) .5 0 90 t\n323.40 340.20 (0.5)
      .5 0 90 t\n323.40 366.60 (1.5) .5 0 90 t\nnp\n330.60 282.60 m\n106.80 0
      l\n0 88.80 l\n-106.80 0 l\n0 -88.80 l\no\n306.00 252.00 450.00 396.00
      cl\n/ps 6 def R 6 s\n0 0 0 rgb\n384.00 259.80 (x) .5 0 0 t\n311.40
      327.00 (tan \\(x\\)) .5 0 90 t\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      par("cex")
    </input>

    <\output>
      [1] 0.5
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      layout(1)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(sin,-3,3); v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 390.40
      m\n1.98 -4.86 l\n1.98 -4.81 l\n1.97 -4.72 l\n1.98 -4.63 l\n1.98 -4.52
      l\n1.98 -4.40 l\n1.98 -4.25 l\n1.97 -4.09 l\n1.98 -3.93 l\n1.98 -3.73
      l\n1.98 -3.54 l\n1.97 -3.32 l\n1.98 -3.10 l\n1.98 -2.86 l\n1.98 -2.62
      l\n1.98 -2.36 l\n1.97 -2.10 l\n1.98 -1.82 l\n1.98 -1.55 l\n1.98 -1.27
      l\n1.97 -0.97 l\n1.98 -0.69 l\n1.98 -0.39 l\n1.98 -0.09 l\n1.98 0.20
      l\n1.97 0.50 l\n1.98 0.79 l\n1.98 1.08 l\n1.98 1.36 l\n1.97 1.65
      l\n1.98 1.93 l\n1.98 2.19 l\n1.98 2.45 l\n1.98 2.71 l\n1.97 2.95
      l\n1.98 3.18 l\n1.98 3.40 l\n1.98 3.61 l\n1.97 3.81 l\n1.98 3.98
      l\n1.98 4.15 l\n1.98 4.31 l\n1.98 4.44 l\n1.97 4.56 l\n1.98 4.67
      l\n1.98 4.75 l\n1.98 4.83 l\n1.97 4.88 l\n1.98 4.91 l\n1.98 4.93
      l\n1.98 4.93 l\n1.98 4.91 l\n1.97 4.88 l\n1.98 4.83 l\n1.98 4.75
      l\n1.98 4.67 l\n1.97 4.56 l\n1.98 4.44 l\n1.98 4.31 l\n1.98 4.15
      l\n1.98 3.98 l\n1.97 3.81 l\n1.98 3.61 l\n1.98 3.40 l\n1.98 3.18
      l\n1.97 2.95 l\n1.98 2.71 l\n1.98 2.45 l\n1.98 2.19 l\n1.98 1.93
      l\n1.97 1.65 l\n1.98 1.36 l\n1.98 1.08 l\n1.98 0.79 l\n1.97 0.50
      l\n1.98 0.20 l\n1.98 -0.09 l\n1.98 -0.39 l\n1.98 -0.69 l\n1.97 -0.97
      l\n1.98 -1.27 l\n1.98 -1.55 l\n1.98 -1.82 l\n1.97 -2.10 l\n1.98 -2.36
      l\n1.98 -2.62 l\n1.98 -2.86 l\n1.98 -3.10 l\n1.97 -3.32 l\n1.98 -3.54
      l\n1.98 -3.73 l\n1.98 -3.93 l\n1.97 -4.09 l\n1.98 -4.25 l\n1.98 -4.40
      l\n1.98 -4.52 l\n1.98 -4.63 l\n1.97 -4.72 l\n1.98 -4.81 l\n1.98 -4.86
      l\no\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[]
      0 setdash\nnp\n219.11 313.20 m\n197.78 0 l\no\nnp\n219.11 313.20 m\n0
      -6.00 l\no\nnp\n252.07 313.20 m\n0 -6.00 l\no\nnp\n285.04 313.20 m\n0
      -6.00 l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n350.96 313.20 m\n0
      -6.00 l\no\nnp\n383.93 313.20 m\n0 -6.00 l\no\nnp\n416.89 313.20 m\n0
      -6.00 l\no\n/ps 12 def R 12 s\n219.11 291.60 (-3) .5 0 0 t\n252.07
      291.60 (-2) .5 0 0 t\n285.04 291.60 (-1) .5 0 0 t\n318.00 291.60 (0) .5
      0 0 t\n350.96 291.60 (1) .5 0 0 t\n383.93 291.60 (2) .5 0 0 t\n416.89
      291.60 (3) .5 0 0 t\nnp\n211.20 319.77 m\n0 164.46 l\no\nnp\n211.20
      319.77 m\n-6.00 0 l\no\nnp\n211.20 360.89 m\n-6.00 0 l\no\nnp\n211.20
      402.00 m\n-6.00 0 l\no\nnp\n211.20 443.11 m\n-6.00 0 l\no\nnp\n211.20
      484.23 m\n-6.00 0 l\no\n196.80 319.77 (-1.0) .5 0 90 t\n196.80 360.89
      (-0.5) .5 0 90 t\n196.80 402.00 (0.0) .5 0 90 t\n196.80 443.11 (0.5) .5
      0 90 t\n196.80 484.23 (1.0) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0
      l\n0 177.60 l\n-213.60 0 l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00
      cl\n/ps 12 def R 12 s\n0 0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80
      402.00 (sin \\(x\\)) .5 0 90 t\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      par("cex")
    </input>

    <\output>
      [1] 1
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  The function <verbatim|layout()> changes the character size!

  <subsection|Linear regression>

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      a=read.table("data/regression.txt",sep="\\t",head=T)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      a
    </input>

    <\output>
      \ \ growth tannin

      1 \ \ \ \ 12 \ \ \ \ \ 0

      2 \ \ \ \ 10 \ \ \ \ \ 1

      3 \ \ \ \ \ 8 \ \ \ \ \ 2

      4 \ \ \ \ 11 \ \ \ \ \ 3

      5 \ \ \ \ \ 6 \ \ \ \ \ 4

      6 \ \ \ \ \ 7 \ \ \ \ \ 5

      7 \ \ \ \ \ 2 \ \ \ \ \ 6

      8 \ \ \ \ \ 3 \ \ \ \ \ 7

      9 \ \ \ \ \ 3 \ \ \ \ \ 8
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(a$tannin,a$growth,pch=16);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n/bg { 0 0 0 } def\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\n219.11 484.22 2.25 c p3\n243.83 451.33 2.25 c p3\n268.56
      418.44 2.25 c p3\n293.28 467.78 2.25 c p3\n318.00 385.56 2.25 c
      p3\n342.72 402.00 2.25 c p3\n367.44 319.78 2.25 c p3\n392.17 336.22
      2.25 c p3\n416.89 336.22 2.25 c p3\n162.00 252.00 450.00 540.00 cl\n0 0
      0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n219.11 313.20 m\n197.78 0
      l\no\nnp\n219.11 313.20 m\n0 -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00
      l\no\nnp\n318.00 313.20 m\n0 -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00
      l\no\nnp\n416.89 313.20 m\n0 -6.00 l\no\n/ps 12 def R 12 s\n219.11
      291.60 (0) .5 0 0 t\n268.56 291.60 (2) .5 0 0 t\n318.00 291.60 (4) .5 0
      0 t\n367.44 291.60 (6) .5 0 0 t\n416.89 291.60 (8) .5 0 0 t\nnp\n211.20
      319.78 m\n0 164.44 l\no\nnp\n211.20 319.78 m\n-6.00 0 l\no\nnp\n211.20
      352.67 m\n-6.00 0 l\no\nnp\n211.20 385.56 m\n-6.00 0 l\no\nnp\n211.20
      418.44 m\n-6.00 0 l\no\nnp\n211.20 451.33 m\n-6.00 0 l\no\nnp\n211.20
      484.22 m\n-6.00 0 l\no\n196.80 319.78 (2) .5 0 90 t\n196.80 352.67 (4)
      .5 0 90 t\n196.80 385.56 (6) .5 0 90 t\n196.80 418.44 (8) .5 0 90
      t\n196.80 451.33 (10) .5 0 90 t\n196.80 484.22 (12) .5 0 90
      t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0 l\n0 -177.60
      l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0 0 0
      rgb\n318.00 267.60 (a$tannin) .5 0 0 t\n172.80 402.00 (a$growth) .5 0
      90 t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  The growth of the caterpilar seems to depend on the tannin content.

  we can try to fit a linear regression.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      regression=lm( growth ~ tannin, data = a )
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      regression
    </input>

    <\output>
      \;

      Call:

      lm(formula = growth ~ tannin, data = a)

      \;

      Coefficients:

      (Intercept) \ \ \ \ \ \ tannin \ 

      \ \ \ \ \ 11.756 \ \ \ \ \ \ -1.217 \ 
    </output>
  </session>>

  this means to do a linear model of growth, so that it depends on tannin.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot( growth ~ tannin, data=a);v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n243.83 451.33 2.25 c p1\n268.56 418.44 2.25 c p1\n293.28 467.78
      2.25 c p1\n318.00 385.56 2.25 c p1\n342.72 402.00 2.25 c p1\n367.44
      319.78 2.25 c p1\n392.17 336.22 2.25 c p1\n416.89 336.22 2.25 c
      p1\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n219.11 313.20 m\n197.78 0 l\no\nnp\n219.11 313.20 m\n0
      -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00 l\no\nnp\n318.00 313.20 m\n0
      -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00 l\no\nnp\n416.89 313.20 m\n0
      -6.00 l\no\n/ps 12 def R 12 s\n219.11 291.60 (0) .5 0 0 t\n268.56
      291.60 (2) .5 0 0 t\n318.00 291.60 (4) .5 0 0 t\n367.44 291.60 (6) .5 0
      0 t\n416.89 291.60 (8) .5 0 0 t\nnp\n211.20 319.78 m\n0 164.44
      l\no\nnp\n211.20 319.78 m\n-6.00 0 l\no\nnp\n211.20 352.67 m\n-6.00 0
      l\no\nnp\n211.20 385.56 m\n-6.00 0 l\no\nnp\n211.20 418.44 m\n-6.00 0
      l\no\nnp\n211.20 451.33 m\n-6.00 0 l\no\nnp\n211.20 484.22 m\n-6.00 0
      l\no\n196.80 319.78 (2) .5 0 90 t\n196.80 352.67 (4) .5 0 90 t\n196.80
      385.56 (6) .5 0 90 t\n196.80 418.44 (8) .5 0 90 t\n196.80 451.33 (10)
      .5 0 90 t\n196.80 484.22 (12) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0
      l\n0 177.60 l\n-213.60 0 l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00
      cl\n/ps 12 def R 12 s\n0 0 0 rgb\n318.00 267.60 (tannin) .5 0 0
      t\n172.80 402.00 (growth) .5 0 90 t\nep\n%%Trailer\n%%Pages:
      2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      abline( regression );v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n243.83 451.33 2.25 c p1\n268.56 418.44 2.25 c p1\n293.28 467.78
      2.25 c p1\n318.00 385.56 2.25 c p1\n342.72 402.00 2.25 c p1\n367.44
      319.78 2.25 c p1\n392.17 336.22 2.25 c p1\n416.89 336.22 2.25 c
      p1\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n219.11 313.20 m\n197.78 0 l\no\nnp\n219.11 313.20 m\n0
      -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00 l\no\nnp\n318.00 313.20 m\n0
      -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00 l\no\nnp\n416.89 313.20 m\n0
      -6.00 l\no\n/ps 12 def R 12 s\n219.11 291.60 (0) .5 0 0 t\n268.56
      291.60 (2) .5 0 0 t\n318.00 291.60 (4) .5 0 0 t\n367.44 291.60 (6) .5 0
      0 t\n416.89 291.60 (8) .5 0 0 t\nnp\n211.20 319.78 m\n0 164.44
      l\no\nnp\n211.20 319.78 m\n-6.00 0 l\no\nnp\n211.20 352.67 m\n-6.00 0
      l\no\nnp\n211.20 385.56 m\n-6.00 0 l\no\nnp\n211.20 418.44 m\n-6.00 0
      l\no\nnp\n211.20 451.33 m\n-6.00 0 l\no\nnp\n211.20 484.22 m\n-6.00 0
      l\no\n196.80 319.78 (2) .5 0 90 t\n196.80 352.67 (4) .5 0 90 t\n196.80
      385.56 (6) .5 0 90 t\n196.80 418.44 (8) .5 0 90 t\n196.80 451.33 (10)
      .5 0 90 t\n196.80 484.22 (12) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0
      l\n0 177.60 l\n-213.60 0 l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00
      cl\n/ps 12 def R 12 s\n0 0 0 rgb\n318.00 267.60 (tannin) .5 0 0
      t\n172.80 402.00 (growth) .5 0 90 t\n211.20 313.20 424.80 490.80 cl\n0
      0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n211.20 486.60 m\n213.60
      -172.86 l\no\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  R found a good line. The method tries to minimize the square distance to
  the line.

  Here is another line:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      reg1=lm( growth ~ 1, data=a)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      reg1
    </input>

    <\output>
      \;

      Call:

      lm(formula = growth ~ 1, data = a)

      \;

      Coefficients:

      (Intercept) \ 

      \ \ \ \ \ \ 6.889 \ 
    </output>
  </session>>

  In this case, R tries to fit a line that doesn't depend on anything, i.e.
  it is constant.

  The best constant to fit the growth is 6.889

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      abline(6.889,0,col=2); v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 484.22 2.25 c
      p1\n243.83 451.33 2.25 c p1\n268.56 418.44 2.25 c p1\n293.28 467.78
      2.25 c p1\n318.00 385.56 2.25 c p1\n342.72 402.00 2.25 c p1\n367.44
      319.78 2.25 c p1\n392.17 336.22 2.25 c p1\n416.89 336.22 2.25 c
      p1\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0
      setdash\nnp\n219.11 313.20 m\n197.78 0 l\no\nnp\n219.11 313.20 m\n0
      -6.00 l\no\nnp\n268.56 313.20 m\n0 -6.00 l\no\nnp\n318.00 313.20 m\n0
      -6.00 l\no\nnp\n367.44 313.20 m\n0 -6.00 l\no\nnp\n416.89 313.20 m\n0
      -6.00 l\no\n/ps 12 def R 12 s\n219.11 291.60 (0) .5 0 0 t\n268.56
      291.60 (2) .5 0 0 t\n318.00 291.60 (4) .5 0 0 t\n367.44 291.60 (6) .5 0
      0 t\n416.89 291.60 (8) .5 0 0 t\nnp\n211.20 319.78 m\n0 164.44
      l\no\nnp\n211.20 319.78 m\n-6.00 0 l\no\nnp\n211.20 352.67 m\n-6.00 0
      l\no\nnp\n211.20 385.56 m\n-6.00 0 l\no\nnp\n211.20 418.44 m\n-6.00 0
      l\no\nnp\n211.20 451.33 m\n-6.00 0 l\no\nnp\n211.20 484.22 m\n-6.00 0
      l\no\n196.80 319.78 (2) .5 0 90 t\n196.80 352.67 (4) .5 0 90 t\n196.80
      385.56 (6) .5 0 90 t\n196.80 418.44 (8) .5 0 90 t\n196.80 451.33 (10)
      .5 0 90 t\n196.80 484.22 (12) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0
      l\n0 177.60 l\n-213.60 0 l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00
      cl\n/ps 12 def R 12 s\n0 0 0 rgb\n318.00 267.60 (tannin) .5 0 0
      t\n172.80 402.00 (growth) .5 0 90 t\n211.20 313.20 424.80 490.80 cl\n0
      0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\nnp\n211.20 486.60 m\n213.60
      -172.86 l\no\n1 0 0 rgb\nnp\n211.20 400.17 m\n213.60 0
      l\no\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      mean(a$growth)
    </input>

    <\output>
      [1] 6.888889
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  Such a line will be a good fit if we have normal errors.

  For example:

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      x = 1:100
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      y= 3*x + 15 + rnorm(100,sd=10)
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      plot(x,y); v()
    </input>

    <\output>
      <postscript|<tuple|<raw-data|%!PS-Adobe-3.0
      EPSF-3.0\n%%DocumentNeededResources: font Helvetica\n%%+ font
      Helvetica-Bold\n%%+ font Helvetica-Oblique\n%%+ font
      Helvetica-BoldOblique\n%%+ font Symbol\n%%Title: R Graphics
      Output\n%%Creator: R Software\n%%Pages: (atend)\n%%BoundingBox: 162 252
      450 540\n%%EndComments\n%%BeginProlog\n/bp \ { gs gs } def\n% begin
      .ps.prolog\n/gs \ { gsave } def\n/gr \ { grestore } def\n/ep \ {
      showpage gr gr } def\n/m \ \ { moveto } def\n/l \ { rlineto } def\n/np
      \ { newpath } def\n/cp \ { closepath } def\n/f \ \ { fill } def\n/o
      \ \ { stroke } def\n/c \ \ { newpath 0 360 arc } def\n/r \ \ { 4 2 roll
      moveto 1 copy 3 -1 roll exch 0 exch rlineto 0 rlineto -1 mul 0 exch
      rlineto closepath } def\n/p1 \ { stroke } def\n/p2 \ { gsave bg
      setrgbcolor fill grestore newpath } def\n/p3 \ { gsave bg setrgbcolor
      fill grestore stroke } def\n/t \ \ { 6 -2 roll moveto gsave rotate\n
      \ \ \ \ \ \ ps mul neg 0 2 1 roll rmoveto\n \ \ \ \ \ \ 1 index
      stringwidth pop\n \ \ \ \ \ \ mul neg 0 rmoveto show grestore }
      def\n/cl \ { grestore gsave newpath 3 index 3 index moveto 1 index\n
      \ \ \ \ \ \ 4 -1 roll lineto \ exch 1 index lineto lineto\n
      \ \ \ \ \ \ closepath clip newpath } def\n/rgb { setrgbcolor } def\n/s
      \ \ { scalefont setfont } def\n/R \ \ { /Font1 findfont } def\n/B \ \ {
      /Font2 findfont } def\n/I \ \ { /Font3 findfont } def\n/BI \ { /Font4
      findfont } def\n/S \ \ { /Font5 findfont } def\n1 setlinecap 1
      setlinejoin\n% end \ \ .ps.prolog\n%%IncludeResource: font
      Helvetica\n/Helvetica findfont\ndup length dict begin\n \ {1 index /FID
      ne {def} {pop pop} ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n
      \ currentdict\n \ end\n/Font1 exch definefont pop\n%%IncludeResource:
      font Helvetica-Bold\n/Helvetica-Bold findfont\ndup length dict begin\n
      \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font2 exch definefont
      pop\n%%IncludeResource: font Helvetica-Oblique\n/Helvetica-Oblique
      findfont\ndup length dict begin\n \ {1 index /FID ne {def} {pop pop}
      ifelse} forall\n \ /Encoding ISOLatin1Encoding def\n \ currentdict\n
      \ end\n/Font3 exch definefont pop\n%%IncludeResource: font
      Helvetica-BoldOblique\n/Helvetica-BoldOblique findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n \ /Encoding
      ISOLatin1Encoding def\n \ currentdict\n \ end\n/Font4 exch definefont
      pop\n%%IncludeResource: font Symbol\n/Symbol findfont\ndup length dict
      begin\n \ {1 index /FID ne {def} {pop pop} ifelse} forall\n
      \ currentdict\n \ end\n/Font5 exch definefont pop\n%%EndProlog\n%%Page:
      2 2\nbp\n211.20 313.20 424.80 490.80 cl\n211.20 313.20 424.80 490.80
      cl\n0 0 0 rgb\n0.75 setlinewidth\n[] 0 setdash\n219.11 325.00 2.25 c
      p1\n221.11 325.69 2.25 c p1\n223.11 326.12 2.25 c p1\n225.10 327.71
      2.25 c p1\n227.10 330.87 2.25 c p1\n229.10 340.35 2.25 c p1\n231.10
      319.78 2.25 c p1\n233.10 332.50 2.25 c p1\n235.09 336.13 2.25 c
      p1\n237.09 338.11 2.25 c p1\n239.09 357.41 2.25 c p1\n241.09 345.81
      2.25 c p1\n243.08 342.90 2.25 c p1\n245.08 342.70 2.25 c p1\n247.08
      344.57 2.25 c p1\n249.08 350.64 2.25 c p1\n251.08 354.22 2.25 c
      p1\n253.07 350.00 2.25 c p1\n255.07 358.55 2.25 c p1\n257.07 357.59
      2.25 c p1\n259.07 362.54 2.25 c p1\n261.06 364.94 2.25 c p1\n263.06
      352.78 2.25 c p1\n265.06 359.20 2.25 c p1\n267.06 367.21 2.25 c
      p1\n269.05 374.75 2.25 c p1\n271.05 359.52 2.25 c p1\n273.05 366.39
      2.25 c p1\n275.05 356.44 2.25 c p1\n277.05 376.03 2.25 c p1\n279.04
      370.34 2.25 c p1\n281.04 381.23 2.25 c p1\n283.04 375.99 2.25 c
      p1\n285.04 372.71 2.25 c p1\n287.03 379.44 2.25 c p1\n289.03 383.19
      2.25 c p1\n291.03 381.20 2.25 c p1\n293.03 391.94 2.25 c p1\n295.03
      381.08 2.25 c p1\n297.02 384.29 2.25 c p1\n299.02 391.00 2.25 c
      p1\n301.02 386.39 2.25 c p1\n303.02 384.96 2.25 c p1\n305.01 390.99
      2.25 c p1\n307.01 397.72 2.25 c p1\n309.01 400.04 2.25 c p1\n311.01
      401.71 2.25 c p1\n313.01 403.94 2.25 c p1\n315.00 397.11 2.25 c
      p1\n317.00 409.69 2.25 c p1\n319.00 401.31 2.25 c p1\n321.00 397.93
      2.25 c p1\n322.99 405.82 2.25 c p1\n324.99 414.53 2.25 c p1\n326.99
      411.83 2.25 c p1\n328.99 412.47 2.25 c p1\n330.99 404.86 2.25 c
      p1\n332.98 413.79 2.25 c p1\n334.98 409.49 2.25 c p1\n336.98 422.08
      2.25 c p1\n338.98 426.61 2.25 c p1\n340.97 419.55 2.25 c p1\n342.97
      421.04 2.25 c p1\n344.97 426.38 2.25 c p1\n346.97 419.47 2.25 c
      p1\n348.97 412.30 2.25 c p1\n350.96 428.08 2.25 c p1\n352.96 436.03
      2.25 c p1\n354.96 435.47 2.25 c p1\n356.96 439.37 2.25 c p1\n358.95
      440.34 2.25 c p1\n360.95 439.35 2.25 c p1\n362.95 434.05 2.25 c
      p1\n364.95 443.31 2.25 c p1\n366.95 448.89 2.25 c p1\n368.94 439.95
      2.25 c p1\n370.94 455.53 2.25 c p1\n372.94 448.42 2.25 c p1\n374.94
      452.60 2.25 c p1\n376.93 454.02 2.25 c p1\n378.93 460.41 2.25 c
      p1\n380.93 465.88 2.25 c p1\n382.93 463.80 2.25 c p1\n384.92 458.47
      2.25 c p1\n386.92 452.29 2.25 c p1\n388.92 471.23 2.25 c p1\n390.92
      461.17 2.25 c p1\n392.92 471.76 2.25 c p1\n394.91 466.16 2.25 c
      p1\n396.91 471.08 2.25 c p1\n398.91 478.20 2.25 c p1\n400.91 459.45
      2.25 c p1\n402.90 467.73 2.25 c p1\n404.90 477.07 2.25 c p1\n406.90
      473.24 2.25 c p1\n408.90 471.36 2.25 c p1\n410.90 478.91 2.25 c
      p1\n412.89 476.50 2.25 c p1\n414.89 483.51 2.25 c p1\n416.89 484.22
      2.25 c p1\n162.00 252.00 450.00 540.00 cl\n0 0 0 rgb\n0.75
      setlinewidth\n[] 0 setdash\nnp\n217.11 313.20 m\n199.78 0
      l\no\nnp\n217.11 313.20 m\n0 -6.00 l\no\nnp\n257.07 313.20 m\n0 -6.00
      l\no\nnp\n297.02 313.20 m\n0 -6.00 l\no\nnp\n336.98 313.20 m\n0 -6.00
      l\no\nnp\n376.93 313.20 m\n0 -6.00 l\no\nnp\n416.89 313.20 m\n0 -6.00
      l\no\n/ps 12 def R 12 s\n217.11 291.60 (0) .5 0 0 t\n257.07 291.60 (20)
      .5 0 0 t\n297.02 291.60 (40) .5 0 0 t\n336.98 291.60 (60) .5 0 0
      t\n376.93 291.60 (80) .5 0 0 t\n416.89 291.60 (100) .5 0 0
      t\nnp\n211.20 313.88 m\n0 162.30 l\no\nnp\n211.20 313.88 m\n-6.00 0
      l\no\nnp\n211.20 340.93 m\n-6.00 0 l\no\nnp\n211.20 367.98 m\n-6.00 0
      l\no\nnp\n211.20 395.03 m\n-6.00 0 l\no\nnp\n211.20 422.08 m\n-6.00 0
      l\no\nnp\n211.20 449.13 m\n-6.00 0 l\no\nnp\n211.20 476.18 m\n-6.00 0
      l\no\n196.80 313.88 (0) .5 0 90 t\n196.80 340.93 (50) .5 0 90 t\n196.80
      367.98 (100) .5 0 90 t\n196.80 422.08 (200) .5 0 90 t\n196.80 476.18
      (300) .5 0 90 t\nnp\n211.20 313.20 m\n213.60 0 l\n0 177.60 l\n-213.60 0
      l\n0 -177.60 l\no\n162.00 252.00 450.00 540.00 cl\n/ps 12 def R 12 s\n0
      0 0 rgb\n318.00 267.60 (x) .5 0 0 t\n172.80 402.00 (y) .5 0 90
      t\nep\n%%Trailer\n%%Pages: 2\n%%EOF\n>|ps>||||||>
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      reg=lm( y ~ x )
    </input>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      reg
    </input>

    <\output>
      \;

      Call:

      lm(formula = y ~ x)

      \;

      Coefficients:

      (Intercept) \ \ \ \ \ \ \ \ \ \ \ x \ 

      \ \ \ \ \ 16.567 \ \ \ \ \ \ \ 2.977 \ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  We can see that the right values, 3 and 15 were almost found.

  <with|prog-language|r|prog-session|default|<\session>
    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      summary(reg)
    </input>

    <\output>
      \;

      Call:

      lm(formula = y ~ x)

      \;

      Residuals:

      \ \ \ \ \ \ Min \ \ \ \ \ \ \ 1Q \ \ \ Median \ \ \ \ \ \ \ 3Q
      \ \ \ \ \ \ Max\ 

      -31.14652 \ -5.59417 \ -0.03833 \ \ 6.73383 \ 31.15194\ 

      \;

      Coefficients:

      \ \ \ \ \ \ \ \ \ \ \ \ Estimate Std. Error t value Pr(\<gtr\>\|t\|)
      \ \ \ 

      (Intercept) 16.56712 \ \ \ 2.12266 \ \ 7.805 \ 6.6e-12 ***

      x \ \ \ \ \ \ \ \ \ \ \ 2.97744 \ \ \ 0.03649 \ 81.592 \ \<less\> 2e-16
      ***

      ---

      Signif. codes: \ 0 `***' 0.001 `**' 0.01 `*' 0.05 `.' 0.1 ` ' 1\ 

      \;

      Residual standard error: 10.53 on 98 degrees of freedom

      Multiple R-Squared: 0.9855, \ \ \ \ Adjusted R-squared: 0.9853\ 

      F-statistic: \ 6657 on 1 and 98 DF, \ p-value: \<less\> 2.2e-16\ 
    </output>

    <\input|<with|color|red|\<gtr\> <with|color|black|>>>
      \;
    </input>
  </session>>

  Summary tells us that the standard error on the intercept is 2.1, and on
  the slope 0.03

  That means that the estimate of the slope is better than that of the
  intercept.

  \;
</body>

<\initial>
  <\collection>
    <associate|page-even|1in>
    <associate|page-reduce-bot|0.3in>
    <associate|page-reduce-right|0.7in>
    <associate|page-reduce-left|0.7in>
    <associate|sfactor|7>
    <associate|page-type|letter>
    <associate|page-top|1in>
    <associate|page-right|1in>
    <associate|par-width|6.5in>
    <associate|page-odd|1in>
    <associate|page-bot|1in>
    <associate|language|english>
    <associate|page-reduce-top|0.3in>
  </collection>
</initial>

<\references>
  <\collection>
    <associate|toc-5|<tuple|<uninit>|?>>
    <associate|toc-6|<tuple|<uninit>|?>>
    <associate|toc-7|<tuple|<uninit>|?>>
    <associate|toc-8|<tuple|<uninit>|?>>
    <associate|toc-1|<tuple|<uninit>|?>>
    <associate|toc-2|<tuple|<uninit>|?>>
    <associate|toc-3|<tuple|<uninit>|?>>
    <associate|toc-4|<tuple|<uninit>|?>>
  </collection>
</references>
