diff --git a/prog/python/qqgg/analytical_xs.org b/prog/python/qqgg/analytical_xs.org index 431671c..c44d7b2 100644 --- a/prog/python/qqgg/analytical_xs.org +++ b/prog/python/qqgg/analytical_xs.org @@ -1,9 +1,9 @@ -#+PROPERTY: header-args :exports both :output-dir results +#+PROPERTY: header-args :exports both :output-dir results :session xs :kernel python3 * Init ** Required Modules #+NAME: e988e3f2-ad1f-49a3-ad60-bedba3863283 -#+begin_src ipython :session :exports both :tangle tangled/xs.py +#+begin_src jupyter-python :exports both :tangle tangled/xs.py import numpy as np import matplotlib.pyplot as plt import monte_carlo @@ -11,9 +11,10 @@ #+RESULTS: e988e3f2-ad1f-49a3-ad60-bedba3863283 + ** Utilities #+NAME: 53548778-a4c1-461a-9b1f-0f401df12b08 -#+BEGIN_SRC ipython :session :exports both +#+BEGIN_SRC jupyter-python :exports both %run ../utility.py %load_ext autoreload %aimport monte_carlo @@ -24,7 +25,7 @@ * Implementation #+NAME: 777a013b-6c20-44bd-b58b-6a7690c21c0e -#+BEGIN_SRC ipython :session :exports both :results raw drawer :exports code :tangle tangled/xs.py +#+BEGIN_SRC jupyter-python :exports both :results raw drawer :exports code :tangle tangled/xs.py """ Implementation of the analytical cross section for q q_bar -> gamma gamma @@ -131,21 +132,19 @@ #+END_SRC #+RESULTS: 777a013b-6c20-44bd-b58b-6a7690c21c0e -:RESULTS: -:END: * Calculations ** XS qq -> gamma gamma First, set up the input parameters. #+NAME: 7e62918a-2935-41ac-94e0-f0e7c3af8e0d -#+BEGIN_SRC ipython :session :exports both :results raw drawer +#+BEGIN_SRC jupyter-python :exports both :results raw drawer η = 2.5 charge = 1/3 esp = 200 # GeV #+END_SRC Set up the integration and plot intervals. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer interval_η = [-η, η] interval = η_to_θ([-η, η]) interval_cosθ = np.cos(interval) @@ -154,45 +153,37 @@ plot_interval = [0.1, np.pi-.1] #+end_src #+RESULTS: -:RESULTS: -:END: #+RESULTS: 7e62918a-2935-41ac-94e0-f0e7c3af8e0d -:RESULTS: -:END: *** Analytical Integratin And now calculate the cross section in picobarn. #+NAME: cf853fb6-d338-482e-bc55-bd9f8e796495 -#+BEGIN_SRC ipython :session :exports both :results drawer output file :file xs.tex +#+BEGIN_SRC jupyter-python :exports both :results drawer output file :file xs.tex xs_gev = total_xs_eta(η, charge, esp) xs_pb = gev_to_pb(xs_gev) print(tex_value(xs_pb, unit=r'\pico\barn', prefix=r'\sigma = ', prec=5)) #+END_SRC #+RESULTS: cf853fb6-d338-482e-bc55-bd9f8e796495 -:RESULTS: -[[file:results/xs.tex]] -:END: +: \(\sigma = \SI{0.05379}{\pico\barn}\) Compared to sherpa, it's pretty close. #+NAME: 81b5ed93-0312-45dc-beec-e2ba92e22626 -#+BEGIN_SRC ipython :session :exports both :results raw drawer +#+BEGIN_SRC jupyter-python :exports both :results raw drawer sherpa = 0.0538009 xs_pb/sherpa #+END_SRC #+RESULTS: 81b5ed93-0312-45dc-beec-e2ba92e22626 -:RESULTS: -0.9998585425137037 -:END: +: 0.9998585425137037 I had to set the runcard option ~EW_SCHEME: alpha0~ to use the pure QED coupling constant. *** Numerical Integration Plot our nice distribution: -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer plot_points = np.linspace(*plot_interval, 1000) fig, ax = set_up_plot() @@ -206,22 +197,18 @@ save_fig(fig, 'diff_xs', 'xs', size=[4, 4]) #+end_src #+RESULTS: -:RESULTS: -[[file:./obipy-resources/DHBTl1.png]] -:END: +[[file:./.ob-jupyter/d30ededeaa03958fae5b649f50f3c5c3e6ae4677.png]] Define the integrand. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer def xs_pb_int(θ): return gev_to_pb(np.sin(θ)*diff_xs(θ, charge=charge, esp=esp)) #+end_src #+RESULTS: -:RESULTS: -:END: Plot the integrand. # TODO: remove duplication -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer fig, ax = set_up_plot() ax.plot(plot_points, xs_pb_int(plot_points)) ax.set_xlabel(r'$\theta$') @@ -233,59 +220,49 @@ save_fig(fig, 'xs_integrand', 'xs', size=[4, 4]) #+end_src #+RESULTS: -:RESULTS: -[[file:./obipy-resources/4mne94.png]] -:END: +[[file:./.ob-jupyter/78974a2e2315c72bd7ae8e4ac009b3d79cfe7001.png]] Intergrate σ with the mc method. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer xs_pb_mc, xs_pb_mc_err = monte_carlo.integrate(xs_pb_int, interval, 10000) xs_pb_mc = xs_pb_mc*np.pi*2 xs_pb_mc, xs_pb_mc_err #+end_src #+RESULTS: -:RESULTS: -(0.05360809379599215, 4.22681790215136e-05) -:END: +| 0.05365000636562272 | 4.2342293364016736e-05 | We gonna export that as tex. -#+begin_src ipython :session :exports both :results raw drawer output :file xs_mc.tex +#+begin_src jupyter-python :exports both :results raw drawer output :file xs_mc.tex print(tex_value(xs_pb_mc, unit=r'\pico\barn', prefix=r'\sigma = ', prec=5)) #+end_src #+RESULTS: -:RESULTS: -[[file:results/xs_mc.tex]] -:END: +: \(\sigma = \SI{0.05365}{\pico\barn}\) *** Sampling and Analysis Define the sample number. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer sample_num = 1000 #+end_src #+RESULTS: -:RESULTS: -:END: Now we monte-carlo sample our distribution. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer cosθ_sample = monte_carlo.sample_unweighted_array(sample_num, lambda x: diff_xs_cosθ(x, charge, esp), interval_cosθ) #+end_src #+RESULTS: -:RESULTS: -:END: Nice! And now draw some histograms. We define an auxilliary method for convenience. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer def draw_histo(points, xlabel, bins=20): fig, ax = set_up_plot() ax.hist(points, bins, histtype='step') @@ -295,22 +272,18 @@ We define an auxilliary method for convenience. #+end_src #+RESULTS: -:RESULTS: -:END: The histogram for cosθ. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer fig, _ = draw_histo(cosθ_sample, r'$\cos\theta$') save_fig(fig, 'histo_cos_theta', 'xs', size=(4,3)) #+end_src #+RESULTS: -:RESULTS: -[[file:./obipy-resources/ZSJaBQ.png]] -:END: +[[file:./.ob-jupyter/ddc5e5b2a628d9f9add43555d7386acf4d92c6ee.png]] Now we define some utilities to draw real 4-impulse samples. -#+begin_src ipython :session :exports both :tangle tangled/xs.py +#+begin_src jupyter-python :exports both :tangle tangled/xs.py def sample_impulses(sample_num, interval, charge, esp, seed=None): """Samples `sample_num` unweighted photon 4-impulses from the cross-section. @@ -342,8 +315,10 @@ Now we define some utilities to draw real 4-impulse samples. #+RESULTS: -To generate histograms of other obeservables, we have to define them as functions on 4-impuleses. -#+begin_src ipython :session :exports both :results raw drawer :tangle tangled/observables.py +To generate histograms of other obeservables, we have to define them +as functions on 4-impuleses. Using those to transform samples is +analogous to transforming the distribution itself. +#+begin_src jupyter-python :exports both :results raw drawer :tangle tangled/observables.py """This module defines some observables on arrays of 4-pulses.""" import numpy as np @@ -365,56 +340,44 @@ To generate histograms of other obeservables, we have to define them as function #+end_src #+RESULTS: -:RESULTS: -:END: Lets try it out. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer impulse_sample = sample_impulses(2000, interval_cosθ, charge, esp) impulse_sample #+end_src #+RESULTS: -:RESULTS: -#+BEGIN_EXAMPLE - array([[100. , 48.55787717, 64.05713855, 59.48794471], - [100. , 42.68070092, 33.17436113, -84.12977792], - [100. , 18.42611283, 27.20055109, -94.44897239], - ..., - [100. , 21.40152914, 14.7440014 , 96.56391134], - [100. , 35.84656512, 5.33864248, -93.20151643], - [100. , 38.37094512, 8.92583559, 91.9130025 ]]) -#+END_EXAMPLE -:END: +: array([[100. , 60.93780026, 38.29391655, 69.42737539], +: [100. , 16.62473755, 5.08308744, -98.47730867], +: [100. , 62.52584971, 41.05712399, 66.3688985 ], +: ..., +: [100. , 36.93115123, 10.77808502, -92.30342871], +: [100. , 34.39831699, 43.0134429 , 83.46615792], +: [100. , 69.87424822, 3.87926805, 71.43207063]]) Now let's make a histogram of the η distribution. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer η_sample = η(impulse_sample) draw_histo(η_sample, r'$\eta$') #+end_src #+RESULTS: :RESULTS: -#+BEGIN_EXAMPLE - (
, - ) -#+END_EXAMPLE -[[file:./obipy-resources/S2OvbR.png]] +|
| | +[[file:./.ob-jupyter/347b6d473f38cf692e5614a095c9bc1a0e89c763.png]] :END: And the same for the p_t (transverse impulse) distribution. -#+begin_src ipython :session :exports both :results raw drawer +#+begin_src jupyter-python :exports both :results raw drawer p_t_sample = p_t(impulse_sample) draw_histo(p_t_sample, r'$p_T$') #+end_src #+RESULTS: :RESULTS: -#+BEGIN_EXAMPLE - (
, - ) -#+END_EXAMPLE -[[file:./obipy-resources/nW1TKv.png]] +|
| | +[[file:./.ob-jupyter/880ac31d31bd9a537c0faacd56dc38f9eb668c7d.png]] :END: diff --git a/prog/python/qqgg/figs/xs/diff_xs.pdf b/prog/python/qqgg/figs/xs/diff_xs.pdf index c52ce95..09dad9b 100644 Binary files a/prog/python/qqgg/figs/xs/diff_xs.pdf and b/prog/python/qqgg/figs/xs/diff_xs.pdf differ diff --git a/prog/python/qqgg/figs/xs/histo_cos_theta.pdf b/prog/python/qqgg/figs/xs/histo_cos_theta.pdf index 089630d..292de92 100644 Binary files a/prog/python/qqgg/figs/xs/histo_cos_theta.pdf and b/prog/python/qqgg/figs/xs/histo_cos_theta.pdf differ diff --git a/prog/python/qqgg/figs/xs/histo_cos_theta.pgf b/prog/python/qqgg/figs/xs/histo_cos_theta.pgf index a1c8798..843db22 100644 --- a/prog/python/qqgg/figs/xs/histo_cos_theta.pgf +++ b/prog/python/qqgg/figs/xs/histo_cos_theta.pgf @@ -71,46 +71,46 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetdash{}{0pt}% \pgfpathmoveto{\pgfqpoint{0.512847in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.512847in}{2.342221in}}% -\pgfpathlineto{\pgfqpoint{0.677274in}{2.342221in}}% -\pgfpathlineto{\pgfqpoint{0.677274in}{1.189592in}}% -\pgfpathlineto{\pgfqpoint{0.841701in}{1.189592in}}% -\pgfpathlineto{\pgfqpoint{0.841701in}{0.880718in}}% -\pgfpathlineto{\pgfqpoint{1.006128in}{0.880718in}}% -\pgfpathlineto{\pgfqpoint{1.006128in}{0.782782in}}% -\pgfpathlineto{\pgfqpoint{1.170556in}{0.782782in}}% -\pgfpathlineto{\pgfqpoint{1.170556in}{0.835517in}}% -\pgfpathlineto{\pgfqpoint{1.334983in}{0.835517in}}% -\pgfpathlineto{\pgfqpoint{1.334983in}{0.752648in}}% -\pgfpathlineto{\pgfqpoint{1.499410in}{0.752648in}}% -\pgfpathlineto{\pgfqpoint{1.499410in}{0.714981in}}% -\pgfpathlineto{\pgfqpoint{1.663837in}{0.714981in}}% -\pgfpathlineto{\pgfqpoint{1.663837in}{0.677313in}}% -\pgfpathlineto{\pgfqpoint{1.828264in}{0.677313in}}% -\pgfpathlineto{\pgfqpoint{1.828264in}{0.684847in}}% -\pgfpathlineto{\pgfqpoint{1.992691in}{0.684847in}}% -\pgfpathlineto{\pgfqpoint{1.992691in}{0.669780in}}% -\pgfpathlineto{\pgfqpoint{2.157118in}{0.669780in}}% -\pgfpathlineto{\pgfqpoint{2.157118in}{0.669780in}}% -\pgfpathlineto{\pgfqpoint{2.321545in}{0.669780in}}% -\pgfpathlineto{\pgfqpoint{2.321545in}{0.684847in}}% -\pgfpathlineto{\pgfqpoint{2.485972in}{0.684847in}}% -\pgfpathlineto{\pgfqpoint{2.485972in}{0.699914in}}% -\pgfpathlineto{\pgfqpoint{2.650399in}{0.699914in}}% -\pgfpathlineto{\pgfqpoint{2.650399in}{0.767715in}}% -\pgfpathlineto{\pgfqpoint{2.814826in}{0.767715in}}% -\pgfpathlineto{\pgfqpoint{2.814826in}{0.707447in}}% -\pgfpathlineto{\pgfqpoint{2.979253in}{0.707447in}}% -\pgfpathlineto{\pgfqpoint{2.979253in}{0.812917in}}% -\pgfpathlineto{\pgfqpoint{3.143681in}{0.812917in}}% -\pgfpathlineto{\pgfqpoint{3.143681in}{0.760182in}}% -\pgfpathlineto{\pgfqpoint{3.308108in}{0.760182in}}% -\pgfpathlineto{\pgfqpoint{3.308108in}{0.895785in}}% -\pgfpathlineto{\pgfqpoint{3.472535in}{0.895785in}}% -\pgfpathlineto{\pgfqpoint{3.472535in}{1.197126in}}% -\pgfpathlineto{\pgfqpoint{3.636962in}{1.197126in}}% -\pgfpathlineto{\pgfqpoint{3.636962in}{2.696296in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.696296in}}% +\pgfpathlineto{\pgfqpoint{0.512847in}{2.696296in}}% +\pgfpathlineto{\pgfqpoint{0.677274in}{2.696296in}}% +\pgfpathlineto{\pgfqpoint{0.677274in}{1.332499in}}% +\pgfpathlineto{\pgfqpoint{0.841701in}{1.332499in}}% +\pgfpathlineto{\pgfqpoint{0.841701in}{0.835115in}}% +\pgfpathlineto{\pgfqpoint{1.006128in}{0.835115in}}% +\pgfpathlineto{\pgfqpoint{1.006128in}{0.762913in}}% +\pgfpathlineto{\pgfqpoint{1.170556in}{0.762913in}}% +\pgfpathlineto{\pgfqpoint{1.170556in}{0.835115in}}% +\pgfpathlineto{\pgfqpoint{1.334983in}{0.835115in}}% +\pgfpathlineto{\pgfqpoint{1.334983in}{0.795003in}}% +\pgfpathlineto{\pgfqpoint{1.499410in}{0.795003in}}% +\pgfpathlineto{\pgfqpoint{1.499410in}{0.754891in}}% +\pgfpathlineto{\pgfqpoint{1.663837in}{0.754891in}}% +\pgfpathlineto{\pgfqpoint{1.663837in}{0.682690in}}% +\pgfpathlineto{\pgfqpoint{1.828264in}{0.682690in}}% +\pgfpathlineto{\pgfqpoint{1.828264in}{0.674668in}}% +\pgfpathlineto{\pgfqpoint{1.992691in}{0.674668in}}% +\pgfpathlineto{\pgfqpoint{1.992691in}{0.658623in}}% +\pgfpathlineto{\pgfqpoint{2.157118in}{0.658623in}}% +\pgfpathlineto{\pgfqpoint{2.157118in}{0.690712in}}% +\pgfpathlineto{\pgfqpoint{2.321545in}{0.690712in}}% +\pgfpathlineto{\pgfqpoint{2.321545in}{0.666645in}}% +\pgfpathlineto{\pgfqpoint{2.485972in}{0.666645in}}% +\pgfpathlineto{\pgfqpoint{2.485972in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.650399in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.650399in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.814826in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.814826in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.979253in}{0.698735in}}% +\pgfpathlineto{\pgfqpoint{2.979253in}{0.795003in}}% +\pgfpathlineto{\pgfqpoint{3.143681in}{0.795003in}}% +\pgfpathlineto{\pgfqpoint{3.143681in}{0.827092in}}% +\pgfpathlineto{\pgfqpoint{3.308108in}{0.827092in}}% +\pgfpathlineto{\pgfqpoint{3.308108in}{0.995561in}}% +\pgfpathlineto{\pgfqpoint{3.472535in}{0.995561in}}% +\pgfpathlineto{\pgfqpoint{3.472535in}{1.147986in}}% +\pgfpathlineto{\pgfqpoint{3.636962in}{1.147986in}}% +\pgfpathlineto{\pgfqpoint{3.636962in}{2.664207in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.664207in}}% \pgfpathlineto{\pgfqpoint{3.801389in}{0.594444in}}% \pgfusepath{stroke}% \end{pgfscope}% @@ -124,8 +124,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.323808in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.323808in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.323337in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.323337in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -143,7 +143,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.323808in}{0.594444in}% +\pgfsys@transformshift{1.323337in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -162,7 +162,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.323808in}{2.801389in}% +\pgfsys@transformshift{1.323337in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -170,7 +170,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=1.323808in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont −0.5}% +\pgftext[x=1.323337in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont −0.5}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -182,8 +182,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.157106in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.157106in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.156814in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.156814in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -201,7 +201,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.157106in}{0.594444in}% +\pgfsys@transformshift{2.156814in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -220,7 +220,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.157106in}{2.801389in}% +\pgfsys@transformshift{2.156814in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -228,7 +228,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=2.157106in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% +\pgftext[x=2.156814in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 0.0}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -240,8 +240,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.990404in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.990404in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.990290in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.990290in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -259,7 +259,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.990404in}{0.594444in}% +\pgfsys@transformshift{2.990290in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -278,7 +278,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.990404in}{2.801389in}% +\pgfsys@transformshift{2.990290in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -286,7 +286,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=2.990404in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 0.5}% +\pgftext[x=2.990290in,y=0.497222in,,top]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 0.5}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -298,8 +298,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.573839in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.573839in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.573209in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.573209in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -317,7 +317,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.573839in}{0.594444in}% +\pgfsys@transformshift{0.573209in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -336,7 +336,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.573839in}{2.801389in}% +\pgfsys@transformshift{0.573209in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -350,8 +350,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.657169in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.657169in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.656556in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.656556in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -369,7 +369,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.657169in}{0.594444in}% +\pgfsys@transformshift{0.656556in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -388,7 +388,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.657169in}{2.801389in}% +\pgfsys@transformshift{0.656556in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -402,8 +402,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.740499in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.740499in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.739904in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.739904in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -421,7 +421,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.740499in}{0.594444in}% +\pgfsys@transformshift{0.739904in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -440,7 +440,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.740499in}{2.801389in}% +\pgfsys@transformshift{0.739904in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -454,8 +454,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.823829in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.823829in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.823252in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.823252in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -473,7 +473,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.823829in}{0.594444in}% +\pgfsys@transformshift{0.823252in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -492,7 +492,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.823829in}{2.801389in}% +\pgfsys@transformshift{0.823252in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -506,8 +506,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.907158in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.907158in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.906599in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.906599in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -525,7 +525,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.907158in}{0.594444in}% +\pgfsys@transformshift{0.906599in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -544,7 +544,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.907158in}{2.801389in}% +\pgfsys@transformshift{0.906599in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -558,8 +558,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.990488in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{0.990488in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{0.989947in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{0.989947in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -577,7 +577,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.990488in}{0.594444in}% +\pgfsys@transformshift{0.989947in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -596,7 +596,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.990488in}{2.801389in}% +\pgfsys@transformshift{0.989947in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -610,8 +610,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.073818in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.073818in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.073295in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.073295in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -629,7 +629,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.073818in}{0.594444in}% +\pgfsys@transformshift{1.073295in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -648,7 +648,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.073818in}{2.801389in}% +\pgfsys@transformshift{1.073295in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -662,8 +662,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.157148in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.157148in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.156642in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.156642in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -681,7 +681,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.157148in}{0.594444in}% +\pgfsys@transformshift{1.156642in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -700,7 +700,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.157148in}{2.801389in}% +\pgfsys@transformshift{1.156642in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -714,8 +714,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.240478in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.240478in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.239990in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.239990in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -733,7 +733,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.240478in}{0.594444in}% +\pgfsys@transformshift{1.239990in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -752,7 +752,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.240478in}{2.801389in}% +\pgfsys@transformshift{1.239990in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -766,8 +766,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.407137in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.407137in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.406685in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.406685in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -785,7 +785,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.407137in}{0.594444in}% +\pgfsys@transformshift{1.406685in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -804,7 +804,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.407137in}{2.801389in}% +\pgfsys@transformshift{1.406685in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -818,8 +818,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.490467in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.490467in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.490033in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.490033in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -837,7 +837,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.490467in}{0.594444in}% +\pgfsys@transformshift{1.490033in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -856,7 +856,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.490467in}{2.801389in}% +\pgfsys@transformshift{1.490033in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -870,8 +870,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.573797in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.573797in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.573380in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.573380in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -889,7 +889,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.573797in}{0.594444in}% +\pgfsys@transformshift{1.573380in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -908,7 +908,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.573797in}{2.801389in}% +\pgfsys@transformshift{1.573380in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -922,8 +922,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.657127in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.657127in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.656728in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.656728in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -941,7 +941,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.657127in}{0.594444in}% +\pgfsys@transformshift{1.656728in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -960,7 +960,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.657127in}{2.801389in}% +\pgfsys@transformshift{1.656728in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -974,8 +974,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.740457in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.740457in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.740075in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.740075in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -993,7 +993,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.740457in}{0.594444in}% +\pgfsys@transformshift{1.740075in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1012,7 +1012,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.740457in}{2.801389in}% +\pgfsys@transformshift{1.740075in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1026,8 +1026,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.823786in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.823786in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.823423in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.823423in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1045,7 +1045,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.823786in}{0.594444in}% +\pgfsys@transformshift{1.823423in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1064,7 +1064,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.823786in}{2.801389in}% +\pgfsys@transformshift{1.823423in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1078,8 +1078,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.907116in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.907116in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.906771in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.906771in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1097,7 +1097,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.907116in}{0.594444in}% +\pgfsys@transformshift{1.906771in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1116,7 +1116,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.907116in}{2.801389in}% +\pgfsys@transformshift{1.906771in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1130,8 +1130,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{1.990446in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{1.990446in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{1.990118in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{1.990118in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1149,7 +1149,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.990446in}{0.594444in}% +\pgfsys@transformshift{1.990118in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1168,7 +1168,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{1.990446in}{2.801389in}% +\pgfsys@transformshift{1.990118in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1182,8 +1182,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.073776in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.073776in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.073466in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.073466in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1201,7 +1201,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.073776in}{0.594444in}% +\pgfsys@transformshift{2.073466in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1220,7 +1220,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.073776in}{2.801389in}% +\pgfsys@transformshift{2.073466in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1234,8 +1234,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.240436in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.240436in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.240161in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.240161in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1253,7 +1253,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.240436in}{0.594444in}% +\pgfsys@transformshift{2.240161in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1272,7 +1272,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.240436in}{2.801389in}% +\pgfsys@transformshift{2.240161in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1286,8 +1286,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.323765in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.323765in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.323509in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.323509in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1305,7 +1305,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.323765in}{0.594444in}% +\pgfsys@transformshift{2.323509in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1324,7 +1324,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.323765in}{2.801389in}% +\pgfsys@transformshift{2.323509in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1338,8 +1338,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.407095in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.407095in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.406856in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.406856in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1357,7 +1357,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.407095in}{0.594444in}% +\pgfsys@transformshift{2.406856in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1376,7 +1376,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.407095in}{2.801389in}% +\pgfsys@transformshift{2.406856in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1390,8 +1390,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.490425in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.490425in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.490204in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.490204in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1409,7 +1409,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.490425in}{0.594444in}% +\pgfsys@transformshift{2.490204in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1428,7 +1428,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.490425in}{2.801389in}% +\pgfsys@transformshift{2.490204in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1442,8 +1442,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.573755in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.573755in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.573552in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.573552in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1461,7 +1461,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.573755in}{0.594444in}% +\pgfsys@transformshift{2.573552in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1480,7 +1480,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.573755in}{2.801389in}% +\pgfsys@transformshift{2.573552in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1494,8 +1494,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.657085in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.657085in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.656899in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.656899in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1513,7 +1513,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.657085in}{0.594444in}% +\pgfsys@transformshift{2.656899in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1532,7 +1532,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.657085in}{2.801389in}% +\pgfsys@transformshift{2.656899in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1546,8 +1546,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.740415in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.740415in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.740247in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.740247in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1565,7 +1565,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.740415in}{0.594444in}% +\pgfsys@transformshift{2.740247in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1584,7 +1584,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.740415in}{2.801389in}% +\pgfsys@transformshift{2.740247in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1598,8 +1598,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.823744in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.823744in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.823594in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.823594in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1617,7 +1617,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.823744in}{0.594444in}% +\pgfsys@transformshift{2.823594in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1636,7 +1636,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.823744in}{2.801389in}% +\pgfsys@transformshift{2.823594in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1650,8 +1650,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{2.907074in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{2.907074in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{2.906942in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{2.906942in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1669,7 +1669,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.907074in}{0.594444in}% +\pgfsys@transformshift{2.906942in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1688,7 +1688,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{2.907074in}{2.801389in}% +\pgfsys@transformshift{2.906942in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1702,8 +1702,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.073734in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.073734in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.073637in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.073637in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1721,7 +1721,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.073734in}{0.594444in}% +\pgfsys@transformshift{3.073637in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1740,7 +1740,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.073734in}{2.801389in}% +\pgfsys@transformshift{3.073637in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1754,8 +1754,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.157064in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.157064in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.156985in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.156985in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1773,7 +1773,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.157064in}{0.594444in}% +\pgfsys@transformshift{3.156985in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1792,7 +1792,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.157064in}{2.801389in}% +\pgfsys@transformshift{3.156985in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1806,8 +1806,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.240394in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.240394in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.240333in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.240333in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1825,7 +1825,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.240394in}{0.594444in}% +\pgfsys@transformshift{3.240333in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1844,7 +1844,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.240394in}{2.801389in}% +\pgfsys@transformshift{3.240333in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1858,8 +1858,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.323723in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.323723in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.323680in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.323680in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1877,7 +1877,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.323723in}{0.594444in}% +\pgfsys@transformshift{3.323680in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1896,7 +1896,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.323723in}{2.801389in}% +\pgfsys@transformshift{3.323680in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1910,8 +1910,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.407053in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.407053in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.407028in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.407028in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1929,7 +1929,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.407053in}{0.594444in}% +\pgfsys@transformshift{3.407028in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1948,7 +1948,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.407053in}{2.801389in}% +\pgfsys@transformshift{3.407028in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -1962,8 +1962,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.490383in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.490383in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.490375in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.490375in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -1981,7 +1981,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.490383in}{0.594444in}% +\pgfsys@transformshift{3.490375in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2000,7 +2000,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.490383in}{2.801389in}% +\pgfsys@transformshift{3.490375in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2014,8 +2014,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.573713in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.573713in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.573723in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.573723in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2033,7 +2033,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.573713in}{0.594444in}% +\pgfsys@transformshift{3.573723in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2052,7 +2052,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.573713in}{2.801389in}% +\pgfsys@transformshift{3.573723in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2066,8 +2066,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.657043in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.657043in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.657071in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.657071in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2085,7 +2085,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.657043in}{0.594444in}% +\pgfsys@transformshift{3.657071in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2104,7 +2104,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.657043in}{2.801389in}% +\pgfsys@transformshift{3.657071in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2118,8 +2118,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{3.740373in}{0.594444in}}% -\pgfpathlineto{\pgfqpoint{3.740373in}{2.801389in}}% +\pgfpathmoveto{\pgfqpoint{3.740418in}{0.594444in}}% +\pgfpathlineto{\pgfqpoint{3.740418in}{2.801389in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2137,7 +2137,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.740373in}{0.594444in}% +\pgfsys@transformshift{3.740418in}{0.594444in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2156,7 +2156,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.740373in}{2.801389in}% +\pgfsys@transformshift{3.740418in}{2.801389in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2234,8 +2234,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.197126in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.197126in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.236231in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.236231in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2253,7 +2253,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.197126in}% +\pgfsys@transformshift{0.512847in}{1.236231in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2272,7 +2272,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.197126in}% +\pgfsys@transformshift{3.801389in}{1.236231in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2280,7 +2280,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=0.276736in, y=1.148932in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 80}% +\pgftext[x=0.276736in, y=1.188037in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 80}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -2292,8 +2292,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.799808in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.799808in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.878018in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.878018in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2311,7 +2311,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.799808in}% +\pgfsys@transformshift{0.512847in}{1.878018in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2330,7 +2330,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.799808in}% +\pgfsys@transformshift{3.801389in}{1.878018in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2338,7 +2338,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=0.207292in, y=1.751613in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 160}% +\pgftext[x=0.207292in, y=1.829824in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 160}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -2350,8 +2350,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.500000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.402489in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.402489in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.519805in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.519805in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2369,7 +2369,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.402489in}% +\pgfsys@transformshift{0.512847in}{2.519805in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2388,7 +2388,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.402489in}% +\pgfsys@transformshift{3.801389in}{2.519805in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2396,7 +2396,7 @@ \definecolor{textcolor}{rgb}{0.000000,0.000000,0.000000}% \pgfsetstrokecolor{textcolor}% \pgfsetfillcolor{textcolor}% -\pgftext[x=0.207292in, y=2.354295in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 240}% +\pgftext[x=0.207292in, y=2.471610in, left, base]{\color{textcolor}\rmfamily\fontsize{10.000000}{12.000000}\selectfont 240}% \end{pgfscope}% \begin{pgfscope}% \pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% @@ -2408,8 +2408,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.654713in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.654713in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.658623in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.658623in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2427,7 +2427,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.654713in}% +\pgfsys@transformshift{0.512847in}{0.658623in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2446,7 +2446,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.654713in}% +\pgfsys@transformshift{3.801389in}{0.658623in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2460,8 +2460,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.714981in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.714981in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.722802in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.722802in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2479,7 +2479,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.714981in}% +\pgfsys@transformshift{0.512847in}{0.722802in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2498,7 +2498,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.714981in}% +\pgfsys@transformshift{3.801389in}{0.722802in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2512,8 +2512,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.775249in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.775249in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.786980in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.786980in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2531,7 +2531,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.775249in}% +\pgfsys@transformshift{0.512847in}{0.786980in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2550,7 +2550,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.775249in}% +\pgfsys@transformshift{3.801389in}{0.786980in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2564,8 +2564,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.835517in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.835517in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.851159in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.851159in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2583,7 +2583,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.835517in}% +\pgfsys@transformshift{0.512847in}{0.851159in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2602,7 +2602,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.835517in}% +\pgfsys@transformshift{3.801389in}{0.851159in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2616,8 +2616,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.895785in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.895785in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.915338in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.915338in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2635,7 +2635,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.895785in}% +\pgfsys@transformshift{0.512847in}{0.915338in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2654,7 +2654,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.895785in}% +\pgfsys@transformshift{3.801389in}{0.915338in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2668,8 +2668,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{0.956053in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{0.956053in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{0.979517in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{0.979517in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2687,7 +2687,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{0.956053in}% +\pgfsys@transformshift{0.512847in}{0.979517in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2706,7 +2706,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{0.956053in}% +\pgfsys@transformshift{3.801389in}{0.979517in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2720,8 +2720,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.016322in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.016322in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.043695in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.043695in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2739,7 +2739,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.016322in}% +\pgfsys@transformshift{0.512847in}{1.043695in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2758,7 +2758,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.016322in}% +\pgfsys@transformshift{3.801389in}{1.043695in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2772,8 +2772,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.076590in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.076590in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.107874in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.107874in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2791,7 +2791,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.076590in}% +\pgfsys@transformshift{0.512847in}{1.107874in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2810,7 +2810,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.076590in}% +\pgfsys@transformshift{3.801389in}{1.107874in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2824,8 +2824,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.136858in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.136858in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.172053in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.172053in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2843,7 +2843,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.136858in}% +\pgfsys@transformshift{0.512847in}{1.172053in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2862,7 +2862,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.136858in}% +\pgfsys@transformshift{3.801389in}{1.172053in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2876,8 +2876,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.257394in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.257394in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.300410in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.300410in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2895,7 +2895,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.257394in}% +\pgfsys@transformshift{0.512847in}{1.300410in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2914,7 +2914,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.257394in}% +\pgfsys@transformshift{3.801389in}{1.300410in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2928,8 +2928,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.317662in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.317662in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.364589in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.364589in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2947,7 +2947,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.317662in}% +\pgfsys@transformshift{0.512847in}{1.364589in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2966,7 +2966,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.317662in}% +\pgfsys@transformshift{3.801389in}{1.364589in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -2980,8 +2980,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.377930in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.377930in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.428767in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.428767in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -2999,7 +2999,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.377930in}% +\pgfsys@transformshift{0.512847in}{1.428767in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3018,7 +3018,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.377930in}% +\pgfsys@transformshift{3.801389in}{1.428767in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3032,8 +3032,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.438199in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.438199in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.492946in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.492946in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3051,7 +3051,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.438199in}% +\pgfsys@transformshift{0.512847in}{1.492946in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3070,7 +3070,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.438199in}% +\pgfsys@transformshift{3.801389in}{1.492946in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3084,8 +3084,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.498467in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.498467in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.557125in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.557125in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3103,7 +3103,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.498467in}% +\pgfsys@transformshift{0.512847in}{1.557125in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3122,7 +3122,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.498467in}% +\pgfsys@transformshift{3.801389in}{1.557125in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3136,8 +3136,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.558735in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.558735in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.621303in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.621303in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3155,7 +3155,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.558735in}% +\pgfsys@transformshift{0.512847in}{1.621303in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3174,7 +3174,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.558735in}% +\pgfsys@transformshift{3.801389in}{1.621303in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3188,8 +3188,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.619003in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.619003in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.685482in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.685482in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3207,7 +3207,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.619003in}% +\pgfsys@transformshift{0.512847in}{1.685482in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3226,7 +3226,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.619003in}% +\pgfsys@transformshift{3.801389in}{1.685482in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3240,8 +3240,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.679271in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.679271in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.749661in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.749661in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3259,7 +3259,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.679271in}% +\pgfsys@transformshift{0.512847in}{1.749661in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3278,7 +3278,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.679271in}% +\pgfsys@transformshift{3.801389in}{1.749661in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3292,8 +3292,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.739539in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.739539in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.813839in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.813839in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3311,7 +3311,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.739539in}% +\pgfsys@transformshift{0.512847in}{1.813839in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3330,7 +3330,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.739539in}% +\pgfsys@transformshift{3.801389in}{1.813839in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3344,8 +3344,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.860076in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.860076in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{1.942197in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{1.942197in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3363,7 +3363,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.860076in}% +\pgfsys@transformshift{0.512847in}{1.942197in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3382,7 +3382,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.860076in}% +\pgfsys@transformshift{3.801389in}{1.942197in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3396,8 +3396,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.920344in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.920344in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.006375in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.006375in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3415,7 +3415,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.920344in}% +\pgfsys@transformshift{0.512847in}{2.006375in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3434,7 +3434,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.920344in}% +\pgfsys@transformshift{3.801389in}{2.006375in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3448,8 +3448,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{1.980612in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{1.980612in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.070554in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.070554in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3467,7 +3467,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{1.980612in}% +\pgfsys@transformshift{0.512847in}{2.070554in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3486,7 +3486,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{1.980612in}% +\pgfsys@transformshift{3.801389in}{2.070554in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3500,8 +3500,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.040880in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.040880in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.134733in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.134733in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3519,7 +3519,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.040880in}% +\pgfsys@transformshift{0.512847in}{2.134733in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3538,7 +3538,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.040880in}% +\pgfsys@transformshift{3.801389in}{2.134733in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3552,8 +3552,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.101148in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.101148in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.198912in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.198912in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3571,7 +3571,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.101148in}% +\pgfsys@transformshift{0.512847in}{2.198912in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3590,7 +3590,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.101148in}% +\pgfsys@transformshift{3.801389in}{2.198912in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3604,8 +3604,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.161416in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.161416in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.263090in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.263090in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3623,7 +3623,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.161416in}% +\pgfsys@transformshift{0.512847in}{2.263090in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3642,7 +3642,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.161416in}% +\pgfsys@transformshift{3.801389in}{2.263090in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3656,8 +3656,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.221685in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.221685in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.327269in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.327269in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3675,7 +3675,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.221685in}% +\pgfsys@transformshift{0.512847in}{2.327269in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3694,7 +3694,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.221685in}% +\pgfsys@transformshift{3.801389in}{2.327269in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3708,8 +3708,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.281953in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.281953in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.391448in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.391448in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3727,7 +3727,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.281953in}% +\pgfsys@transformshift{0.512847in}{2.391448in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3746,7 +3746,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.281953in}% +\pgfsys@transformshift{3.801389in}{2.391448in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3760,8 +3760,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.342221in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.342221in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.455626in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.455626in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3779,7 +3779,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.342221in}% +\pgfsys@transformshift{0.512847in}{2.455626in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3798,7 +3798,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.342221in}% +\pgfsys@transformshift{3.801389in}{2.455626in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3812,8 +3812,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.462757in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.462757in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.583984in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.583984in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3831,7 +3831,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.462757in}% +\pgfsys@transformshift{0.512847in}{2.583984in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3850,7 +3850,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.462757in}% +\pgfsys@transformshift{3.801389in}{2.583984in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3864,8 +3864,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.523025in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.523025in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.648162in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.648162in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3883,7 +3883,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.523025in}% +\pgfsys@transformshift{0.512847in}{2.648162in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3902,7 +3902,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.523025in}% +\pgfsys@transformshift{3.801389in}{2.648162in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3916,8 +3916,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.583294in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.583294in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.712341in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.712341in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3935,7 +3935,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.583294in}% +\pgfsys@transformshift{0.512847in}{2.712341in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3954,7 +3954,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.583294in}% +\pgfsys@transformshift{3.801389in}{2.712341in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -3968,8 +3968,8 @@ \pgfsetstrokecolor{currentstroke}% \pgfsetstrokeopacity{0.300000}% \pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.643562in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.643562in}}% +\pgfpathmoveto{\pgfqpoint{0.512847in}{2.776520in}}% +\pgfpathlineto{\pgfqpoint{3.801389in}{2.776520in}}% \pgfusepath{stroke}% \end{pgfscope}% \begin{pgfscope}% @@ -3987,7 +3987,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.643562in}% +\pgfsys@transformshift{0.512847in}{2.776520in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% @@ -4006,111 +4006,7 @@ \pgfusepath{stroke,fill}% }% \begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.643562in}% -\pgfsys@useobject{currentmarker}{}% -\end{pgfscope}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% -\pgfusepath{clip}% -\pgfsetrectcap% -\pgfsetroundjoin% -\pgfsetlinewidth{0.803000pt}% -\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetstrokeopacity{0.300000}% -\pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.703830in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.703830in}}% -\pgfusepath{stroke}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfsetbuttcap% -\pgfsetroundjoin% -\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetfillcolor{currentfill}% -\pgfsetlinewidth{0.602250pt}% -\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetdash{}{0pt}% -\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% -\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% -\pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}% -\pgfusepath{stroke,fill}% -}% -\begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.703830in}% -\pgfsys@useobject{currentmarker}{}% -\end{pgfscope}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfsetbuttcap% -\pgfsetroundjoin% -\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetfillcolor{currentfill}% -\pgfsetlinewidth{0.602250pt}% -\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetdash{}{0pt}% -\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{0.000000in}}{\pgfqpoint{0.027778in}{0.000000in}}{% -\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% -\pgfpathlineto{\pgfqpoint{0.027778in}{0.000000in}}% -\pgfusepath{stroke,fill}% -}% -\begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.703830in}% -\pgfsys@useobject{currentmarker}{}% -\end{pgfscope}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfpathrectangle{\pgfqpoint{0.512847in}{0.594444in}}{\pgfqpoint{3.288542in}{2.206944in}}% -\pgfusepath{clip}% -\pgfsetrectcap% -\pgfsetroundjoin% -\pgfsetlinewidth{0.803000pt}% -\definecolor{currentstroke}{rgb}{0.690196,0.690196,0.690196}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetstrokeopacity{0.300000}% -\pgfsetdash{}{0pt}% -\pgfpathmoveto{\pgfqpoint{0.512847in}{2.764098in}}% -\pgfpathlineto{\pgfqpoint{3.801389in}{2.764098in}}% -\pgfusepath{stroke}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfsetbuttcap% -\pgfsetroundjoin% -\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetfillcolor{currentfill}% -\pgfsetlinewidth{0.602250pt}% -\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetdash{}{0pt}% -\pgfsys@defobject{currentmarker}{\pgfqpoint{-0.027778in}{0.000000in}}{\pgfqpoint{0.000000in}{0.000000in}}{% -\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% -\pgfpathlineto{\pgfqpoint{-0.027778in}{0.000000in}}% -\pgfusepath{stroke,fill}% -}% -\begin{pgfscope}% -\pgfsys@transformshift{0.512847in}{2.764098in}% -\pgfsys@useobject{currentmarker}{}% -\end{pgfscope}% -\end{pgfscope}% -\begin{pgfscope}% -\pgfsetbuttcap% -\pgfsetroundjoin% -\definecolor{currentfill}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetfillcolor{currentfill}% -\pgfsetlinewidth{0.602250pt}% -\definecolor{currentstroke}{rgb}{0.000000,0.000000,0.000000}% -\pgfsetstrokecolor{currentstroke}% -\pgfsetdash{}{0pt}% -\pgfsys@defobject{currentmarker}{\pgfqpoint{0.000000in}{0.000000in}}{\pgfqpoint{0.027778in}{0.000000in}}{% -\pgfpathmoveto{\pgfqpoint{0.000000in}{0.000000in}}% -\pgfpathlineto{\pgfqpoint{0.027778in}{0.000000in}}% -\pgfusepath{stroke,fill}% -}% -\begin{pgfscope}% -\pgfsys@transformshift{3.801389in}{2.764098in}% +\pgfsys@transformshift{3.801389in}{2.776520in}% \pgfsys@useobject{currentmarker}{}% \end{pgfscope}% \end{pgfscope}% diff --git a/prog/python/qqgg/figs/xs/xs_integrand.pdf b/prog/python/qqgg/figs/xs/xs_integrand.pdf index 0e9e6c6..6ea1183 100644 Binary files a/prog/python/qqgg/figs/xs/xs_integrand.pdf and b/prog/python/qqgg/figs/xs/xs_integrand.pdf differ